
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_c8f02cdf7afa3d0dec7b7825.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5cd576520c9e9941daa23195.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.776000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_48a72f67d4d16c95110a0602.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_26d5d7a94d78f38e340d3f7d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.784000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9d19a08764528a9b906aeff6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.662000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c22764c02b27864d967dd289.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.924000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-140.785200px;}
.v4{vertical-align:-120.000000px;}
.v2{vertical-align:-79.119600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:5.259600px;}
.ls7{letter-spacing:-22.800000px;}
.ls1{letter-spacing:-7.200000px;}
.ls5{letter-spacing:-5.702400px;}
.ls4{letter-spacing:-5.700000px;}
.ls8{letter-spacing:-5.400000px;}
.ls6{letter-spacing:-2.352000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.422400px;}
.ls2{letter-spacing:140.160000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws14{word-spacing:-82.992000px;}
.ws6{word-spacing:-59.280000px;}
.wsd{word-spacing:-56.908800px;}
.wse{word-spacing:-54.835200px;}
.ws15{word-spacing:-51.870000px;}
.wsb{word-spacing:-50.265600px;}
.ws2{word-spacing:-47.424000px;}
.wsc{word-spacing:-46.464000px;}
.ws7{word-spacing:-45.696000px;}
.ws9{word-spacing:-44.460000px;}
.ws1a{word-spacing:-41.496000px;}
.ws17{word-spacing:-40.014000px;}
.ws4{word-spacing:-0.570000px;}
.ws13{word-spacing:-0.336000px;}
.ws5{word-spacing:-0.240000px;}
.wsf{word-spacing:-0.230400px;}
.ws0{word-spacing:-0.228000px;}
.wsa{word-spacing:-0.211200px;}
.ws16{word-spacing:-0.210000px;}
.ws18{word-spacing:-0.204000px;}
.ws3{word-spacing:-0.192000px;}
.ws8{word-spacing:-0.180000px;}
.ws10{word-spacing:-0.174000px;}
.ws19{word-spacing:-0.168000px;}
.ws1{word-spacing:0.000000px;}
.ws11{word-spacing:80.880000px;}
.ws12{word-spacing:7425.811200px;}
._1f{margin-left:-40.350000px;}
._21{margin-left:-37.614000px;}
._1c{margin-left:-35.100000px;}
._13{margin-left:-30.474000px;}
._18{margin-left:-28.500000px;}
._6{margin-left:-25.350000px;}
._15{margin-left:-22.608000px;}
._8{margin-left:-21.600000px;}
._a{margin-left:-20.220000px;}
._5{margin-left:-17.550000px;}
._1b{margin-left:-16.224000px;}
._e{margin-left:-14.976000px;}
._1e{margin-left:-13.500000px;}
._4{margin-left:-11.700000px;}
._9{margin-left:-10.050000px;}
._20{margin-left:-8.886000px;}
._0{margin-left:-7.800000px;}
._1{margin-left:-5.850000px;}
._10{margin-left:-4.646400px;}
._7{margin-left:-3.600000px;}
._2{margin-left:-1.950000px;}
._3{width:1.950000px;}
._b{width:3.600000px;}
._11{width:5.702400px;}
._1a{width:8.550000px;}
._19{width:11.400000px;}
._22{width:14.250000px;}
._17{width:17.100000px;}
._f{width:123.340800px;}
._12{width:134.553600px;}
._d{width:140.160000px;}
._16{width:2764.130400px;}
._1d{width:6457.011600px;}
._14{width:6984.925200px;}
._c{width:7921.170600px;}
.fc5{color:transparent;}
.fc4{color:rgb(239,66,109);}
.fc3{color:rgb(179,74,232);}
.fc1{color:rgb(122,129,255);}
.fc6{color:rgb(111,111,111);}
.fc2{color:rgb(145,145,145);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:162.000000px;}
.fs11{font-size:168.000000px;}
.fsb{font-size:174.000000px;}
.fs8{font-size:180.000000px;}
.fs5{font-size:192.000000px;}
.fs10{font-size:204.000000px;}
.fs7{font-size:208.222440px;}
.fsd{font-size:210.000000px;}
.fs9{font-size:211.200000px;}
.fs3{font-size:228.000000px;}
.fsa{font-size:230.400000px;}
.fs4{font-size:240.000000px;}
.fs2{font-size:330.000000px;}
.fsc{font-size:336.000000px;}
.fs0{font-size:390.000000px;}
.fse{font-size:540.000000px;}
.fs6{font-size:570.000000px;}
.fs1{font-size:720.000000px;}
.y0{bottom:0.000000px;}
.y11{bottom:4.112385px;}
.y49{bottom:23.544465px;}
.y5c{bottom:26.781000px;}
.y5d{bottom:28.509105px;}
.y5f{bottom:34.118400px;}
.y4e{bottom:35.551425px;}
.y52{bottom:37.458300px;}
.y29{bottom:41.864550px;}
.y2b{bottom:41.864700px;}
.y16{bottom:43.194780px;}
.y6c{bottom:45.099000px;}
.y3d{bottom:47.040150px;}
.y27{bottom:49.055775px;}
.y9{bottom:51.478050px;}
.y3e{bottom:55.982505px;}
.y47{bottom:76.402245px;}
.y6{bottom:79.416525px;}
.y3f{bottom:103.940025px;}
.y72{bottom:109.982505px;}
.y8{bottom:114.478050px;}
.y51{bottom:116.958300px;}
.y6b{bottom:124.599000px;}
.y3c{bottom:159.540150px;}
.y2f{bottom:173.244750px;}
.y50{bottom:196.458300px;}
.y42{bottom:214.421700px;}
.y5{bottom:264.862200px;}
.y25{bottom:268.975500px;}
.y3b{bottom:272.040150px;}
.y69{bottom:298.511400px;}
.y6f{bottom:313.725150px;}
.y4{bottom:338.362200px;}
.y2e{bottom:377.467500px;}
.y1e{bottom:388.720950px;}
.y3{bottom:410.204700px;}
.y40{bottom:410.772450px;}
.y46{bottom:455.546250px;}
.y1d{bottom:463.720950px;}
.y6e{bottom:463.725150px;}
.y44{bottom:496.983450px;}
.y4f{bottom:498.177450px;}
.y1c{bottom:567.520950px;}
.y24{bottom:570.216000px;}
.y2d{bottom:581.690250px;}
.y68{bottom:604.464900px;}
.y10{bottom:609.729000px;}
.y64{bottom:613.725150px;}
.y73{bottom:617.772450px;}
.y57{bottom:630.033750px;}
.yf{bottom:630.855900px;}
.y13{bottom:631.060500px;}
.y1{bottom:640.338900px;}
.y1b{bottom:642.520950px;}
.y26{bottom:691.032450px;}
.y12{bottom:694.060500px;}
.y6a{bottom:731.750250px;}
.y67{bottom:748.395900px;}
.y5a{bottom:750.724050px;}
.ye{bottom:756.620550px;}
.y4d{bottom:756.777150px;}
.y63{bottom:763.725150px;}
.y39{bottom:769.751250px;}
.y6d{bottom:776.750250px;}
.y2c{bottom:785.913000px;}
.y41{bottom:789.560850px;}
.y4b{bottom:807.369300px;}
.y2{bottom:810.848250px;}
.yd{bottom:836.120550px;}
.y38{bottom:849.251250px;}
.y59{bottom:861.839100px;}
.y45{bottom:868.266150px;}
.y3a{bottom:903.352650px;}
.y56{bottom:903.832050px;}
.y62{bottom:913.725150px;}
.y1a{bottom:915.293400px;}
.y66{bottom:915.605550px;}
.y43{bottom:918.088650px;}
.y37{bottom:928.751250px;}
.yc{bottom:945.620550px;}
.y21{bottom:956.764950px;}
.y15{bottom:976.060500px;}
.y55{bottom:983.332050px;}
.y19{bottom:985.793400px;}
.y34{bottom:999.251250px;}
.y58{bottom:1001.837250px;}
.y2a{bottom:1002.789300px;}
.y20{bottom:1019.764950px;}
.yb{bottom:1025.120550px;}
.y14{bottom:1039.060500px;}
.y23{bottom:1049.215500px;}
.y61{bottom:1063.725150px;}
.y32{bottom:1069.751250px;}
.y36{bottom:1075.208850px;}
.y65{bottom:1077.461100px;}
.y33{bottom:1078.751250px;}
.y18{bottom:1082.693400px;}
.y54{bottom:1101.832050px;}
.y22{bottom:1112.215500px;}
.y31{bottom:1149.251250px;}
.y4a{bottom:1152.186750px;}
.y17{bottom:1153.193400px;}
.y5e{bottom:1155.517350px;}
.y35{bottom:1164.819900px;}
.y71{bottom:1183.030200px;}
.y60{bottom:1213.725150px;}
.y28{bottom:1219.665750px;}
.y53{bottom:1220.332050px;}
.y30{bottom:1228.751250px;}
.y5b{bottom:1244.437650px;}
.y4c{bottom:1257.911400px;}
.y70{bottom:1258.030200px;}
.y7{bottom:1279.835850px;}
.ya{bottom:1387.125000px;}
.y48{bottom:1395.750000px;}
.y1f{bottom:1421.456250px;}
.ha{height:34.460805px;}
.h19{height:120.068460px;}
.hb{height:121.393683px;}
.h16{height:125.712000px;}
.h18{height:130.368000px;}
.h10{height:133.920015px;}
.hf{height:135.024000px;}
.hc{height:139.680000px;}
.h7{height:148.992000px;}
.h17{height:158.304000px;}
.h13{height:162.960000px;}
.hd{height:163.891200px;}
.h4{height:176.928000px;}
.he{height:178.790400px;}
.h5{height:186.240000px;}
.h9{height:191.499600px;}
.h6{height:207.811050px;}
.h1a{height:221.049000px;}
.h3{height:256.080000px;}
.h12{height:260.736000px;}
.h15{height:285.408300px;}
.h1{height:302.640000px;}
.h11{height:392.940150px;}
.h14{height:419.040000px;}
.h8{height:442.320000px;}
.h2{height:558.720000px;}
.h0{height:1620.000000px;}
.w2{width:34.460805px;}
.w1{width:424.258200px;}
.w3{width:462.900900px;}
.w5{width:535.479750px;}
.w8{width:574.969350px;}
.w6{width:830.103150px;}
.w7{width:1112.571900px;}
.w4{width:1216.401150px;}
.w0{width:2880.000000px;}
.xa{left:-2.602800px;}
.x0{left:0.000000px;}
.x5{left:31.721100px;}
.x4{left:34.889100px;}
.x57{left:46.041750px;}
.x42{left:53.745600px;}
.x5a{left:55.402500px;}
.x21{left:58.620450px;}
.x2d{left:60.058500px;}
.x4f{left:62.611650px;}
.x6{left:64.012110px;}
.x5f{left:73.980900px;}
.x28{left:75.769590px;}
.x41{left:86.869800px;}
.x5b{left:90.895500px;}
.x24{left:98.100450px;}
.x2c{left:104.872500px;}
.x40{left:115.863600px;}
.x7{left:118.012110px;}
.x58{left:127.614600px;}
.x27{left:131.250450px;}
.x31{left:139.980900px;}
.x43{left:146.241360px;}
.x1{left:148.500000px;}
.x26{left:151.650450px;}
.x29{left:161.021700px;}
.x4d{left:163.801500px;}
.x2{left:167.650350px;}
.x22{left:169.830450px;}
.x8{left:172.012050px;}
.x23{left:176.340450px;}
.x44{left:200.241300px;}
.x50{left:202.500000px;}
.x20{left:215.365800px;}
.x25{left:217.591350px;}
.x3a{left:328.922700px;}
.x3e{left:366.843600px;}
.x4e{left:393.363750px;}
.x2e{left:428.020500px;}
.x45{left:454.021800px;}
.x9{left:472.394850px;}
.x2f{left:521.575950px;}
.x5d{left:579.009900px;}
.x5e{left:641.904900px;}
.x56{left:716.393550px;}
.x3f{left:783.857700px;}
.x3b{left:790.837500px;}
.x55{left:883.707750px;}
.x4a{left:905.956650px;}
.x53{left:975.638100px;}
.x39{left:1062.165150px;}
.x35{left:1076.619750px;}
.x49{left:1098.715800px;}
.x34{left:1113.303600px;}
.x54{left:1117.139400px;}
.x1e{left:1129.191750px;}
.x52{left:1140.213000px;}
.x3{left:1162.773150px;}
.x30{left:1391.063400px;}
.xb{left:1485.839400px;}
.xc{left:1493.375400px;}
.x18{left:1533.598500px;}
.x19{left:1540.102500px;}
.x1d{left:1570.639500px;}
.x3d{left:1576.789500px;}
.x51{left:1639.207500px;}
.x1c{left:1673.869500px;}
.x4c{left:1737.364500px;}
.x1f{left:1770.769500px;}
.x32{left:1858.311000px;}
.x5c{left:1872.630000px;}
.xe{left:1886.818500px;}
.xd{left:1889.650500px;}
.x48{left:1979.052000px;}
.x33{left:2031.403500px;}
.x47{left:2039.632500px;}
.x10{left:2069.259000px;}
.x14{left:2075.875500px;}
.x46{left:2086.992000px;}
.xf{left:2102.875500px;}
.x11{left:2116.779000px;}
.x12{left:2123.259000px;}
.x15{left:2127.715500px;}
.x16{left:2129.875500px;}
.x59{left:2135.058000px;}
.x13{left:2170.779000px;}
.x17{left:2181.715500px;}
.x2b{left:2209.051500px;}
.x4b{left:2220.702000px;}
.x1b{left:2268.600000px;}
.x1a{left:2271.528000px;}
.x2a{left:2414.875500px;}
.x3c{left:2421.156000px;}
.x37{left:2454.108000px;}
.x38{left:2459.583000px;}
.x36{left:2481.961500px;}
@media print{
.v3{vertical-align:-125.142400pt;}
.v4{vertical-align:-106.666667pt;}
.v2{vertical-align:-70.328533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.675200pt;}
.ls7{letter-spacing:-20.266667pt;}
.ls1{letter-spacing:-6.400000pt;}
.ls5{letter-spacing:-5.068800pt;}
.ls4{letter-spacing:-5.066667pt;}
.ls8{letter-spacing:-4.800000pt;}
.ls6{letter-spacing:-2.090667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.375467pt;}
.ls2{letter-spacing:124.586667pt;}
.ws14{word-spacing:-73.770667pt;}
.ws6{word-spacing:-52.693333pt;}
.wsd{word-spacing:-50.585600pt;}
.wse{word-spacing:-48.742400pt;}
.ws15{word-spacing:-46.106667pt;}
.wsb{word-spacing:-44.680533pt;}
.ws2{word-spacing:-42.154667pt;}
.wsc{word-spacing:-41.301333pt;}
.ws7{word-spacing:-40.618667pt;}
.ws9{word-spacing:-39.520000pt;}
.ws1a{word-spacing:-36.885333pt;}
.ws17{word-spacing:-35.568000pt;}
.ws4{word-spacing:-0.506667pt;}
.ws13{word-spacing:-0.298667pt;}
.ws5{word-spacing:-0.213333pt;}
.wsf{word-spacing:-0.204800pt;}
.ws0{word-spacing:-0.202667pt;}
.wsa{word-spacing:-0.187733pt;}
.ws16{word-spacing:-0.186667pt;}
.ws18{word-spacing:-0.181333pt;}
.ws3{word-spacing:-0.170667pt;}
.ws8{word-spacing:-0.160000pt;}
.ws10{word-spacing:-0.154667pt;}
.ws19{word-spacing:-0.149333pt;}
.ws1{word-spacing:0.000000pt;}
.ws11{word-spacing:71.893333pt;}
.ws12{word-spacing:6600.721067pt;}
._1f{margin-left:-35.866667pt;}
._21{margin-left:-33.434667pt;}
._1c{margin-left:-31.200000pt;}
._13{margin-left:-27.088000pt;}
._18{margin-left:-25.333333pt;}
._6{margin-left:-22.533333pt;}
._15{margin-left:-20.096000pt;}
._8{margin-left:-19.200000pt;}
._a{margin-left:-17.973333pt;}
._5{margin-left:-15.600000pt;}
._1b{margin-left:-14.421333pt;}
._e{margin-left:-13.312000pt;}
._1e{margin-left:-12.000000pt;}
._4{margin-left:-10.400000pt;}
._9{margin-left:-8.933333pt;}
._20{margin-left:-7.898667pt;}
._0{margin-left:-6.933333pt;}
._1{margin-left:-5.200000pt;}
._10{margin-left:-4.130133pt;}
._7{margin-left:-3.200000pt;}
._2{margin-left:-1.733333pt;}
._3{width:1.733333pt;}
._b{width:3.200000pt;}
._11{width:5.068800pt;}
._1a{width:7.600000pt;}
._19{width:10.133333pt;}
._22{width:12.666667pt;}
._17{width:15.200000pt;}
._f{width:109.636267pt;}
._12{width:119.603200pt;}
._d{width:124.586667pt;}
._16{width:2457.004800pt;}
._1d{width:5739.565867pt;}
._14{width:6208.822400pt;}
._c{width:7041.040533pt;}
.fsf{font-size:144.000000pt;}
.fs11{font-size:149.333333pt;}
.fsb{font-size:154.666667pt;}
.fs8{font-size:160.000000pt;}
.fs5{font-size:170.666667pt;}
.fs10{font-size:181.333333pt;}
.fs7{font-size:185.086613pt;}
.fsd{font-size:186.666667pt;}
.fs9{font-size:187.733333pt;}
.fs3{font-size:202.666667pt;}
.fsa{font-size:204.800000pt;}
.fs4{font-size:213.333333pt;}
.fs2{font-size:293.333333pt;}
.fsc{font-size:298.666667pt;}
.fs0{font-size:346.666667pt;}
.fse{font-size:480.000000pt;}
.fs6{font-size:506.666667pt;}
.fs1{font-size:640.000000pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:3.655453pt;}
.y49{bottom:20.928413pt;}
.y5c{bottom:23.805333pt;}
.y5d{bottom:25.341427pt;}
.y5f{bottom:30.327467pt;}
.y4e{bottom:31.601267pt;}
.y52{bottom:33.296267pt;}
.y29{bottom:37.212933pt;}
.y2b{bottom:37.213067pt;}
.y16{bottom:38.395360pt;}
.y6c{bottom:40.088000pt;}
.y3d{bottom:41.813467pt;}
.y27{bottom:43.605133pt;}
.y9{bottom:45.758267pt;}
.y3e{bottom:49.762227pt;}
.y47{bottom:67.913107pt;}
.y6{bottom:70.592467pt;}
.y3f{bottom:92.391133pt;}
.y72{bottom:97.762227pt;}
.y8{bottom:101.758267pt;}
.y51{bottom:103.962933pt;}
.y6b{bottom:110.754667pt;}
.y3c{bottom:141.813467pt;}
.y2f{bottom:153.995333pt;}
.y50{bottom:174.629600pt;}
.y42{bottom:190.597067pt;}
.y5{bottom:235.433067pt;}
.y25{bottom:239.089333pt;}
.y3b{bottom:241.813467pt;}
.y69{bottom:265.343467pt;}
.y6f{bottom:278.866800pt;}
.y4{bottom:300.766400pt;}
.y2e{bottom:335.526667pt;}
.y1e{bottom:345.529733pt;}
.y3{bottom:364.626400pt;}
.y40{bottom:365.131067pt;}
.y46{bottom:404.930000pt;}
.y1d{bottom:412.196400pt;}
.y6e{bottom:412.200133pt;}
.y44{bottom:441.763067pt;}
.y4f{bottom:442.824400pt;}
.y1c{bottom:504.463067pt;}
.y24{bottom:506.858667pt;}
.y2d{bottom:517.058000pt;}
.y68{bottom:537.302133pt;}
.y10{bottom:541.981333pt;}
.y64{bottom:545.533467pt;}
.y73{bottom:549.131067pt;}
.y57{bottom:560.030000pt;}
.yf{bottom:560.760800pt;}
.y13{bottom:560.942667pt;}
.y1{bottom:569.190133pt;}
.y1b{bottom:571.129733pt;}
.y26{bottom:614.251067pt;}
.y12{bottom:616.942667pt;}
.y6a{bottom:650.444667pt;}
.y67{bottom:665.240800pt;}
.y5a{bottom:667.310267pt;}
.ye{bottom:672.551600pt;}
.y4d{bottom:672.690800pt;}
.y63{bottom:678.866800pt;}
.y39{bottom:684.223333pt;}
.y6d{bottom:690.444667pt;}
.y2c{bottom:698.589333pt;}
.y41{bottom:701.831867pt;}
.y4b{bottom:717.661600pt;}
.y2{bottom:720.754000pt;}
.yd{bottom:743.218267pt;}
.y38{bottom:754.890000pt;}
.y59{bottom:766.079200pt;}
.y45{bottom:771.792133pt;}
.y3a{bottom:802.980133pt;}
.y56{bottom:803.406267pt;}
.y62{bottom:812.200133pt;}
.y1a{bottom:813.594133pt;}
.y66{bottom:813.871600pt;}
.y43{bottom:816.078800pt;}
.y37{bottom:825.556667pt;}
.yc{bottom:840.551600pt;}
.y21{bottom:850.457733pt;}
.y15{bottom:867.609333pt;}
.y55{bottom:874.072933pt;}
.y19{bottom:876.260800pt;}
.y34{bottom:888.223333pt;}
.y58{bottom:890.522000pt;}
.y2a{bottom:891.368267pt;}
.y20{bottom:906.457733pt;}
.yb{bottom:911.218267pt;}
.y14{bottom:923.609333pt;}
.y23{bottom:932.636000pt;}
.y61{bottom:945.533467pt;}
.y32{bottom:950.890000pt;}
.y36{bottom:955.741200pt;}
.y65{bottom:957.743200pt;}
.y33{bottom:958.890000pt;}
.y18{bottom:962.394133pt;}
.y54{bottom:979.406267pt;}
.y22{bottom:988.636000pt;}
.y31{bottom:1021.556667pt;}
.y4a{bottom:1024.166000pt;}
.y17{bottom:1025.060800pt;}
.y5e{bottom:1027.126533pt;}
.y35{bottom:1035.395467pt;}
.y71{bottom:1051.582400pt;}
.y60{bottom:1078.866800pt;}
.y28{bottom:1084.147333pt;}
.y53{bottom:1084.739600pt;}
.y30{bottom:1092.223333pt;}
.y5b{bottom:1106.166800pt;}
.y4c{bottom:1118.143467pt;}
.y70{bottom:1118.249067pt;}
.y7{bottom:1137.631867pt;}
.ya{bottom:1233.000000pt;}
.y48{bottom:1240.666667pt;}
.y1f{bottom:1263.516667pt;}
.ha{height:30.631827pt;}
.h19{height:106.727520pt;}
.hb{height:107.905496pt;}
.h16{height:111.744000pt;}
.h18{height:115.882667pt;}
.h10{height:119.040013pt;}
.hf{height:120.021333pt;}
.hc{height:124.160000pt;}
.h7{height:132.437333pt;}
.h17{height:140.714667pt;}
.h13{height:144.853333pt;}
.hd{height:145.681067pt;}
.h4{height:157.269333pt;}
.he{height:158.924800pt;}
.h5{height:165.546667pt;}
.h9{height:170.221867pt;}
.h6{height:184.720933pt;}
.h1a{height:196.488000pt;}
.h3{height:227.626667pt;}
.h12{height:231.765333pt;}
.h15{height:253.696267pt;}
.h1{height:269.013333pt;}
.h11{height:349.280133pt;}
.h14{height:372.480000pt;}
.h8{height:393.173333pt;}
.h2{height:496.640000pt;}
.h0{height:1440.000000pt;}
.w2{width:30.631827pt;}
.w1{width:377.118400pt;}
.w3{width:411.467467pt;}
.w5{width:475.982000pt;}
.w8{width:511.083867pt;}
.w6{width:737.869467pt;}
.w7{width:988.952800pt;}
.w4{width:1081.245467pt;}
.w0{width:2560.000000pt;}
.xa{left:-2.313600pt;}
.x0{left:0.000000pt;}
.x5{left:28.196533pt;}
.x4{left:31.012533pt;}
.x57{left:40.926000pt;}
.x42{left:47.773867pt;}
.x5a{left:49.246667pt;}
.x21{left:52.107067pt;}
.x2d{left:53.385333pt;}
.x4f{left:55.654800pt;}
.x6{left:56.899653pt;}
.x5f{left:65.760800pt;}
.x28{left:67.350747pt;}
.x41{left:77.217600pt;}
.x5b{left:80.796000pt;}
.x24{left:87.200400pt;}
.x2c{left:93.220000pt;}
.x40{left:102.989867pt;}
.x7{left:104.899653pt;}
.x58{left:113.435200pt;}
.x27{left:116.667067pt;}
.x31{left:124.427467pt;}
.x43{left:129.992320pt;}
.x1{left:132.000000pt;}
.x26{left:134.800400pt;}
.x29{left:143.130400pt;}
.x4d{left:145.601333pt;}
.x2{left:149.022533pt;}
.x22{left:150.960400pt;}
.x8{left:152.899600pt;}
.x23{left:156.747067pt;}
.x44{left:177.992267pt;}
.x50{left:180.000000pt;}
.x20{left:191.436267pt;}
.x25{left:193.414533pt;}
.x3a{left:292.375733pt;}
.x3e{left:326.083200pt;}
.x4e{left:349.656667pt;}
.x2e{left:380.462667pt;}
.x45{left:403.574933pt;}
.x9{left:419.906533pt;}
.x2f{left:463.623067pt;}
.x5d{left:514.675467pt;}
.x5e{left:570.582133pt;}
.x56{left:636.794267pt;}
.x3f{left:696.762400pt;}
.x3b{left:702.966667pt;}
.x55{left:785.518000pt;}
.x4a{left:805.294800pt;}
.x53{left:867.233867pt;}
.x39{left:944.146800pt;}
.x35{left:956.995333pt;}
.x49{left:976.636267pt;}
.x34{left:989.603200pt;}
.x54{left:993.012800pt;}
.x1e{left:1003.726000pt;}
.x52{left:1013.522667pt;}
.x3{left:1033.576133pt;}
.x30{left:1236.500800pt;}
.xb{left:1320.746133pt;}
.xc{left:1327.444800pt;}
.x18{left:1363.198667pt;}
.x19{left:1368.980000pt;}
.x1d{left:1396.124000pt;}
.x3d{left:1401.590667pt;}
.x51{left:1457.073333pt;}
.x1c{left:1487.884000pt;}
.x4c{left:1544.324000pt;}
.x1f{left:1574.017333pt;}
.x32{left:1651.832000pt;}
.x5c{left:1664.560000pt;}
.xe{left:1677.172000pt;}
.xd{left:1679.689333pt;}
.x48{left:1759.157333pt;}
.x33{left:1805.692000pt;}
.x47{left:1813.006667pt;}
.x10{left:1839.341333pt;}
.x14{left:1845.222667pt;}
.x46{left:1855.104000pt;}
.xf{left:1869.222667pt;}
.x11{left:1881.581333pt;}
.x12{left:1887.341333pt;}
.x15{left:1891.302667pt;}
.x16{left:1893.222667pt;}
.x59{left:1897.829333pt;}
.x13{left:1929.581333pt;}
.x17{left:1939.302667pt;}
.x2b{left:1963.601333pt;}
.x4b{left:1973.957333pt;}
.x1b{left:2016.533333pt;}
.x1a{left:2019.136000pt;}
.x2a{left:2146.556000pt;}
.x3c{left:2152.138667pt;}
.x37{left:2181.429333pt;}
.x38{left:2186.296000pt;}
.x36{left:2206.188000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  