
    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_33d8f5a716af36c1a206724d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_e3f8efe7b61aa9ecede28490.woff')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_e06399ed78ae9b914e422a4d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.953125;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_9d5362a5e2f5e004005973bb.woff')format("woff");}.ff4{font-family:ff4;line-height:0.973633;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_ff2f28558459e6e4bcdbc771.woff')format("woff");}.ff5{font-family:ff5;line-height:0.746094;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_d9cf0d0f044edb21f6ccfea5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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:ff7;src:url('chunks/assets/font_be507a17a72c0571b65baa9a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.861816;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:ff8;src:url('chunks/assets/font_dac35dfeffb444b0c5bc8816.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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:ff9;src:url('chunks/assets/font_5a77fa72ebefd318fbc447e0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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:ffa;src:url('chunks/assets/font_e3750d9068c53a732585086a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.861816;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-12.903300px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:94.093946px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:69.097945px;}
.ls0{letter-spacing:69.117137px;}
.ls1{letter-spacing:70.662900px;}
.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;}
}
.ws3{word-spacing:-34.713603px;}
.ws7{word-spacing:-33.521267px;}
.ws6{word-spacing:-31.944512px;}
.ws1{word-spacing:-31.242242px;}
.ws4{word-spacing:-25.051286px;}
.ws5{word-spacing:-14.784469px;}
.ws2{word-spacing:-0.172800px;}
.ws8{word-spacing:0.000000px;}
.ws0{word-spacing:24.128597px;}
._19{margin-left:-19.814402px;}
._b{margin-left:-17.710080px;}
._a{margin-left:-15.490559px;}
._3{margin-left:-13.224961px;}
._4{margin-left:-11.335681px;}
._10{margin-left:-10.133761px;}
._2{margin-left:-8.816640px;}
._0{margin-left:-6.927360px;}
._6{margin-left:-5.760000px;}
._1{margin-left:-4.408320px;}
._7{margin-left:-2.968320px;}
._5{margin-left:-1.639680px;}
._8{width:1.630290px;}
._9{width:2.712294px;}
._12{width:3.889920px;}
._17{width:5.280000px;}
._1a{width:6.568847px;}
._13{width:338.517734px;}
._f{width:604.353275px;}
._16{width:685.037651px;}
._e{width:686.497382px;}
._14{width:894.318198px;}
._d{width:936.576930px;}
._11{width:999.376767px;}
._15{width:1262.647189px;}
._c{width:1570.062290px;}
._18{width:3120.008830px;}
.fc6{color:transparent;}
.fc4{color:rgb(51,54,65);}
.fc5{color:rgb(0,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(29,29,29);}
.fc1{color:rgb(74,109,124);}
.fc0{color:rgb(55,75,74);}
.fs10{font-size:65.418003px;}
.fsc{font-size:110.846398px;}
.fsf{font-size:115.200004px;}
.fs13{font-size:134.399997px;}
.fs9{font-size:138.240009px;}
.fs11{font-size:141.347399px;}
.fsd{font-size:145.920002px;}
.fs12{font-size:148.324190px;}
.fsb{font-size:153.600012px;}
.fs2{font-size:161.280005px;}
.fs14{font-size:165.120004px;}
.fse{font-size:168.959998px;}
.fsa{font-size:172.799997px;}
.fs7{font-size:184.320006px;}
.fs3{font-size:199.680005px;}
.fs15{font-size:222.720001px;}
.fs5{font-size:249.599991px;}
.fs6{font-size:268.799994px;}
.fs8{font-size:276.480018px;}
.fs1{font-size:288.000009px;}
.fs4{font-size:307.200025px;}
.fs0{font-size:629.760035px;}
.y0{bottom:0.000000px;}
.y78{bottom:77.325679px;}
.y31{bottom:94.630941px;}
.y77{bottom:117.645674px;}
.y4a{bottom:323.787250px;}
.y49{bottom:369.867262px;}
.y2d{bottom:375.246585px;}
.y46{bottom:392.423063px;}
.y48{bottom:415.947264px;}
.y75{bottom:431.992239px;}
.y2c{bottom:438.836998px;}
.y47{bottom:462.027265px;}
.y74{bottom:487.672226px;}
.y73{bottom:533.752205px;}
.y45{bottom:549.574206px;}
.y44{bottom:572.130721px;}
.y72{bottom:589.432203px;}
.y2b{bottom:609.793781px;}
.y71{bottom:635.512193px;}
.y70{bottom:681.592195px;}
.y42{bottom:683.201147px;}
.y2a{bottom:690.433779px;}
.y41{bottom:705.757663px;}
.y43{bottom:729.281149px;}
.y6f{bottom:737.272204px;}
.y6e{bottom:783.352206px;}
.y40{bottom:816.828652px;}
.y6d{bottom:839.032215px;}
.y3d{bottom:862.424813px;}
.y3f{bottom:862.908653px;}
.y3e{bottom:908.988655px;}
.y3b{bottom:996.535707px;}
.y10{bottom:1011.061708px;}
.y3a{bottom:1019.092223px;}
.y3c{bottom:1042.615709px;}
.y64{bottom:1056.139559px;}
.yf{bottom:1075.186710px;}
.y6a{bottom:1091.847229px;}
.y63{bottom:1097.611561px;}
.y39{bottom:1130.162649px;}
.y69{bottom:1134.251451px;}
.y62{bottom:1139.083573px;}
.ye{bottom:1139.311712px;}
.y38{bottom:1152.719164px;}
.y68{bottom:1176.655661px;}
.y61{bottom:1180.555575px;}
.y67{bottom:1219.059882px;}
.y60{bottom:1222.027576px;}
.y66{bottom:1261.464092px;}
.yd{bottom:1285.536523px;}
.y36{bottom:1297.880940px;}
.y5f{bottom:1304.971567px;}
.y33{bottom:1333.343895px;}
.y5e{bottom:1346.443565px;}
.y35{bottom:1350.872926px;}
.y37{bottom:1357.784919px;}
.y34{bottom:1403.864921px;}
.y65{bottom:1428.785355px;}
.y6c{bottom:1429.212398px;}
.y6b{bottom:1473.709654px;}
.y24{bottom:1473.957823px;}
.y29{bottom:1493.324136px;}
.y32{bottom:1506.600149px;}
.y23{bottom:1515.429824px;}
.y28{bottom:1534.796137px;}
.y4c{bottom:1541.937412px;}
.y22{bottom:1556.901822px;}
.y27{bottom:1576.268135px;}
.y4b{bottom:1588.017414px;}
.y20{bottom:1682.023362px;}
.ya{bottom:1690.915306px;}
.y17{bottom:1794.023483px;}
.y4e{bottom:1857.458556px;}
.y16{bottom:1858.148485px;}
.y1e{bottom:1871.386439px;}
.y7f{bottom:1877.448783px;}
.y4d{bottom:1890.712477px;}
.y59{bottom:1903.444361px;}
.y15{bottom:1922.273487px;}
.y7e{bottom:1932.744774px;}
.y1c{bottom:1943.922088px;}
.y55{bottom:1946.445688px;}
.y58{bottom:1950.694363px;}
.y1d{bottom:1967.011454px;}
.y30{bottom:1967.880775px;}
.y14{bottom:1986.398489px;}
.y7d{bottom:1988.040764px;}
.y51{bottom:1995.020939px;}
.y54{bottom:1997.070689px;}
.y57{bottom:1997.944365px;}
.y1b{bottom:2008.047090px;}
.y2f{bottom:2016.264765px;}
.y7c{bottom:2043.336772px;}
.y56{bottom:2045.194363px;}
.y50{bottom:2045.645941px;}
.y53{bottom:2047.695691px;}
.y13{bottom:2050.523491px;}
.y2e{bottom:2064.648767px;}
.y1a{bottom:2072.172092px;}
.y7b{bottom:2098.632770px;}
.y5d{bottom:2122.625259px;}
.y52{bottom:2123.327162px;}
.y4f{bottom:2123.347637px;}
.y19{bottom:2136.297094px;}
.y5c{bottom:2142.250661px;}
.y12{bottom:2196.748296px;}
.y5b{bottom:2218.771522px;}
.y5a{bottom:2260.036415px;}
.y18{bottom:2282.521905px;}
.y88{bottom:2287.340510px;}
.y11{bottom:2288.998306px;}
.y87{bottom:2364.178901px;}
.y76{bottom:2405.256031px;}
.y9{bottom:2489.455305px;}
.y8{bottom:2540.143307px;}
.y7a{bottom:2564.809270px;}
.y86{bottom:2598.399634px;}
.y79{bottom:2606.281268px;}
.y7{bottom:2638.447295px;}
.y85{bottom:2647.935602px;}
.y26{bottom:2716.317233px;}
.y6{bottom:2736.751283px;}
.y84{bottom:2747.007605px;}
.y25{bottom:2757.789230px;}
.y83{bottom:2796.543618px;}
.y5{bottom:2832.751282px;}
.y82{bottom:2846.079608px;}
.y4{bottom:2883.439284px;}
.y81{bottom:2945.151611px;}
.y3{bottom:2979.439283px;}
.y80{bottom:2994.687616px;}
.y21{bottom:3116.400602px;}
.y1f{bottom:3116.434295px;}
.yc{bottom:3329.392561px;}
.yb{bottom:3420.515745px;}
.y2{bottom:3558.231920px;}
.y1{bottom:3665.137512px;}
.h19{height:44.719338px;}
.h18{height:78.750003px;}
.h15{height:79.562600px;}
.h1a{height:96.120006px;}
.h1d{height:96.468748px;}
.h1b{height:96.624198px;}
.hb{height:99.225006px;}
.h16{height:104.737501px;}
.h11{height:105.000008px;}
.h1c{height:106.463164px;}
.h10{height:106.800009px;}
.h12{height:110.250009px;}
.h3{height:112.140004px;}
.h1f{height:114.810003px;}
.h5{height:115.762504px;}
.h17{height:117.479999px;}
.h1e{height:118.518753px;}
.he{height:126.224997px;}
.hd{height:132.300004px;}
.hf{height:134.190004px;}
.h4{height:138.840003px;}
.h9{height:140.130004px;}
.h20{height:152.250001px;}
.h7{height:179.156244px;}
.hc{height:186.899996px;}
.h14{height:199.093954px;}
.h8{height:201.599995px;}
.h13{height:204.343954px;}
.h2{height:206.718757px;}
.ha{height:210.195014px;}
.h6{height:220.500018px;}
.h1{height:437.880024px;}
.h0{height:3888.000000px;}
.w0{width:6480.000000px;}
.x0{left:0.000000px;}
.x5{left:77.200967px;}
.x1{left:112.006061px;}
.x11{left:116.238199px;}
.x24{left:131.413938px;}
.x31{left:134.570414px;}
.x30{left:138.163939px;}
.x38{left:149.798758px;}
.x37{left:155.706845px;}
.x32{left:172.723940px;}
.x39{left:190.266846px;}
.x3b{left:335.236308px;}
.x3e{left:396.646078px;}
.x3f{left:408.216163px;}
.x1f{left:1404.362632px;}
.x33{left:1443.478999px;}
.x34{left:1482.488181px;}
.x36{left:1580.827033px;}
.x35{left:1609.201019px;}
.x15{left:2316.814171px;}
.x9{left:2329.330125px;}
.x14{left:2333.553457px;}
.x1d{left:2405.992026px;}
.x1b{left:2434.852149px;}
.x1c{left:2503.397634px;}
.x16{left:2530.949177px;}
.x7{left:2888.537931px;}
.x6{left:2920.887521px;}
.x8{left:2966.217451px;}
.x17{left:2993.483830px;}
.x3c{left:3001.076392px;}
.x10{left:3071.290835px;}
.xf{left:3076.234996px;}
.x1e{left:3086.603593px;}
.x3d{left:3166.233683px;}
.x20{left:3616.028891px;}
.x19{left:3682.009481px;}
.x18{left:3718.407342px;}
.xe{left:3800.933829px;}
.xa{left:3809.267953px;}
.xb{left:3816.996044px;}
.xc{left:3848.220804px;}
.x1a{left:3904.252629px;}
.xd{left:3980.656106px;}
.x3{left:4131.723428px;}
.x4{left:4187.625659px;}
.x2{left:4222.185660px;}
.x21{left:4308.870963px;}
.x2d{left:4497.716056px;}
.x29{left:4516.235695px;}
.x28{left:4556.747418px;}
.x2e{left:4828.470363px;}
.x2f{left:4858.559368px;}
.x22{left:4888.148781px;}
.x2c{left:5068.985146px;}
.x2b{left:5107.745413px;}
.x13{left:5255.793821px;}
.x2a{left:5257.942672px;}
.x12{left:5414.314133px;}
.x23{left:5419.048223px;}
.x3a{left:5578.252746px;}
.x27{left:5699.304520px;}
.x26{left:5785.208420px;}
.x25{left:5835.722362px;}
@media print{
.v2{vertical-align:-11.469600pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:83.639063pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:61.420395pt;}
.ls0{letter-spacing:61.437456pt;}
.ls1{letter-spacing:62.811467pt;}
.ws3{word-spacing:-30.856536pt;}
.ws7{word-spacing:-29.796682pt;}
.ws6{word-spacing:-28.395122pt;}
.ws1{word-spacing:-27.770882pt;}
.ws4{word-spacing:-22.267810pt;}
.ws5{word-spacing:-13.141750pt;}
.ws2{word-spacing:-0.153600pt;}
.ws8{word-spacing:0.000000pt;}
.ws0{word-spacing:21.447642pt;}
._19{margin-left:-17.612802pt;}
._b{margin-left:-15.742294pt;}
._a{margin-left:-13.769385pt;}
._3{margin-left:-11.755521pt;}
._4{margin-left:-10.076161pt;}
._10{margin-left:-9.007788pt;}
._2{margin-left:-7.837014pt;}
._0{margin-left:-6.157654pt;}
._6{margin-left:-5.120000pt;}
._1{margin-left:-3.918507pt;}
._7{margin-left:-2.638507pt;}
._5{margin-left:-1.457493pt;}
._8{width:1.449147pt;}
._9{width:2.410928pt;}
._12{width:3.457707pt;}
._17{width:4.693333pt;}
._1a{width:5.838975pt;}
._13{width:300.904652pt;}
._f{width:537.202911pt;}
._16{width:608.922357pt;}
._e{width:610.219895pt;}
._14{width:794.949510pt;}
._d{width:832.512827pt;}
._11{width:888.334904pt;}
._15{width:1122.353057pt;}
._c{width:1395.610925pt;}
._18{width:2773.341182pt;}
.fs10{font-size:58.149336pt;}
.fsc{font-size:98.530131pt;}
.fsf{font-size:102.400003pt;}
.fs13{font-size:119.466664pt;}
.fs9{font-size:122.880008pt;}
.fs11{font-size:125.642132pt;}
.fsd{font-size:129.706668pt;}
.fs12{font-size:131.843724pt;}
.fsb{font-size:136.533344pt;}
.fs2{font-size:143.360005pt;}
.fs14{font-size:146.773337pt;}
.fse{font-size:150.186665pt;}
.fsa{font-size:153.599997pt;}
.fs7{font-size:163.840005pt;}
.fs3{font-size:177.493338pt;}
.fs15{font-size:197.973334pt;}
.fs5{font-size:221.866659pt;}
.fs6{font-size:238.933328pt;}
.fs8{font-size:245.760016pt;}
.fs1{font-size:256.000008pt;}
.fs4{font-size:273.066689pt;}
.fs0{font-size:559.786698pt;}
.y0{bottom:0.000000pt;}
.y78{bottom:68.733937pt;}
.y31{bottom:84.116392pt;}
.y77{bottom:104.573933pt;}
.y4a{bottom:287.810889pt;}
.y49{bottom:328.770900pt;}
.y2d{bottom:333.552520pt;}
.y46{bottom:348.820501pt;}
.y48{bottom:369.730901pt;}
.y75{bottom:383.993102pt;}
.y2c{bottom:390.077332pt;}
.y47{bottom:410.690903pt;}
.y74{bottom:433.486423pt;}
.y73{bottom:474.446405pt;}
.y45{bottom:488.510405pt;}
.y44{bottom:508.560641pt;}
.y72{bottom:523.939736pt;}
.y2b{bottom:542.038917pt;}
.y71{bottom:564.899727pt;}
.y70{bottom:605.859729pt;}
.y42{bottom:607.289909pt;}
.y2a{bottom:613.718915pt;}
.y41{bottom:627.340144pt;}
.y43{bottom:648.249910pt;}
.y6f{bottom:655.353070pt;}
.y6e{bottom:696.313072pt;}
.y40{bottom:726.069913pt;}
.y6d{bottom:745.806413pt;}
.y3d{bottom:766.599834pt;}
.y3f{bottom:767.029914pt;}
.y3e{bottom:807.989915pt;}
.y3b{bottom:885.809518pt;}
.y10{bottom:898.721518pt;}
.y3a{bottom:905.859753pt;}
.y3c{bottom:926.769519pt;}
.y64{bottom:938.790719pt;}
.yf{bottom:955.721520pt;}
.y6a{bottom:970.530870pt;}
.y63{bottom:975.654721pt;}
.y39{bottom:1004.589022pt;}
.y69{bottom:1008.223512pt;}
.y62{bottom:1012.518732pt;}
.ye{bottom:1012.721522pt;}
.y38{bottom:1024.639257pt;}
.y68{bottom:1045.916143pt;}
.y61{bottom:1049.382733pt;}
.y67{bottom:1083.608784pt;}
.y60{bottom:1086.246734pt;}
.y66{bottom:1121.301415pt;}
.yd{bottom:1142.699132pt;}
.y36{bottom:1153.671946pt;}
.y5f{bottom:1159.974727pt;}
.y33{bottom:1185.194573pt;}
.y5e{bottom:1196.838725pt;}
.y35{bottom:1200.775934pt;}
.y37{bottom:1206.919928pt;}
.y34{bottom:1247.879929pt;}
.y65{bottom:1270.031427pt;}
.y6c{bottom:1270.411020pt;}
.y6b{bottom:1309.964137pt;}
.y24{bottom:1310.184731pt;}
.y29{bottom:1327.399232pt;}
.y32{bottom:1339.200132pt;}
.y23{bottom:1347.048733pt;}
.y28{bottom:1364.263233pt;}
.y4c{bottom:1370.611033pt;}
.y22{bottom:1383.912731pt;}
.y27{bottom:1401.127231pt;}
.y4b{bottom:1411.571035pt;}
.y20{bottom:1495.131877pt;}
.ya{bottom:1503.035828pt;}
.y17{bottom:1594.687540pt;}
.y4e{bottom:1651.074272pt;}
.y16{bottom:1651.687542pt;}
.y1e{bottom:1663.454613pt;}
.y7f{bottom:1668.843363pt;}
.y4d{bottom:1680.633313pt;}
.y59{bottom:1691.950544pt;}
.y15{bottom:1708.687544pt;}
.y7e{bottom:1717.995354pt;}
.y1c{bottom:1727.930745pt;}
.y55{bottom:1730.173945pt;}
.y58{bottom:1733.950545pt;}
.y1d{bottom:1748.454625pt;}
.y30{bottom:1749.227355pt;}
.y14{bottom:1765.687546pt;}
.y7d{bottom:1767.147346pt;}
.y51{bottom:1773.351946pt;}
.y54{bottom:1775.173946pt;}
.y57{bottom:1775.950546pt;}
.y1b{bottom:1784.930747pt;}
.y2f{bottom:1792.235347pt;}
.y7c{bottom:1816.299353pt;}
.y56{bottom:1817.950545pt;}
.y50{bottom:1818.351948pt;}
.y53{bottom:1820.173948pt;}
.y13{bottom:1822.687548pt;}
.y2e{bottom:1835.243348pt;}
.y1a{bottom:1841.930748pt;}
.y7b{bottom:1865.451351pt;}
.y5d{bottom:1886.778008pt;}
.y52{bottom:1887.401922pt;}
.y4f{bottom:1887.420122pt;}
.y19{bottom:1898.930750pt;}
.y5c{bottom:1904.222809pt;}
.y12{bottom:1952.665152pt;}
.y5b{bottom:1972.241353pt;}
.y5a{bottom:2008.921258pt;}
.y18{bottom:2028.908360pt;}
.y88{bottom:2033.191564pt;}
.y11{bottom:2034.665161pt;}
.y87{bottom:2101.492357pt;}
.y76{bottom:2138.005361pt;}
.y9{bottom:2212.849160pt;}
.y8{bottom:2257.905162pt;}
.y7a{bottom:2279.830462pt;}
.y86{bottom:2309.688563pt;}
.y79{bottom:2316.694461pt;}
.y7{bottom:2345.286484pt;}
.y85{bottom:2353.720535pt;}
.y26{bottom:2414.504207pt;}
.y6{bottom:2432.667807pt;}
.y84{bottom:2441.784538pt;}
.y25{bottom:2451.368205pt;}
.y83{bottom:2485.816549pt;}
.y5{bottom:2518.001140pt;}
.y82{bottom:2529.848540pt;}
.y4{bottom:2563.057141pt;}
.y81{bottom:2617.912543pt;}
.y3{bottom:2648.390474pt;}
.y80{bottom:2661.944548pt;}
.y21{bottom:2770.133868pt;}
.y1f{bottom:2770.163818pt;}
.yc{bottom:2959.460054pt;}
.yb{bottom:3040.458440pt;}
.y2{bottom:3162.872818pt;}
.y1{bottom:3257.900011pt;}
.h19{height:39.750523pt;}
.h18{height:70.000002pt;}
.h15{height:70.722311pt;}
.h1a{height:85.440006pt;}
.h1d{height:85.749998pt;}
.h1b{height:85.888176pt;}
.hb{height:88.200006pt;}
.h16{height:93.100001pt;}
.h11{height:93.333341pt;}
.h1c{height:94.633923pt;}
.h10{height:94.933341pt;}
.h12{height:98.000008pt;}
.h3{height:99.680003pt;}
.h1f{height:102.053336pt;}
.h5{height:102.900003pt;}
.h17{height:104.426665pt;}
.h1e{height:105.350002pt;}
.he{height:112.199998pt;}
.hd{height:117.600004pt;}
.hf{height:119.280004pt;}
.h4{height:123.413336pt;}
.h9{height:124.560004pt;}
.h20{height:135.333334pt;}
.h7{height:159.249995pt;}
.hc{height:166.133329pt;}
.h14{height:176.972404pt;}
.h8{height:179.199996pt;}
.h13{height:181.639071pt;}
.h2{height:183.750006pt;}
.ha{height:186.840012pt;}
.h6{height:196.000016pt;}
.h1{height:389.226688pt;}
.h0{height:3456.000000pt;}
.w0{width:5760.000000pt;}
.x0{left:0.000000pt;}
.x5{left:68.623082pt;}
.x1{left:99.560943pt;}
.x11{left:103.322843pt;}
.x24{left:116.812390pt;}
.x31{left:119.618146pt;}
.x30{left:122.812390pt;}
.x38{left:133.154452pt;}
.x37{left:138.406084pt;}
.x32{left:153.532391pt;}
.x39{left:169.126085pt;}
.x3b{left:297.987830pt;}
.x3e{left:352.574291pt;}
.x3f{left:362.858812pt;}
.x1f{left:1248.322340pt;}
.x33{left:1283.092444pt;}
.x34{left:1317.767272pt;}
.x36{left:1405.179585pt;}
.x35{left:1430.400906pt;}
.x15{left:2059.390374pt;}
.x9{left:2070.515666pt;}
.x14{left:2074.269739pt;}
.x1d{left:2138.659578pt;}
.x1b{left:2164.313021pt;}
.x1c{left:2225.242341pt;}
.x16{left:2249.732602pt;}
.x7{left:2567.589272pt;}
.x6{left:2596.344463pt;}
.x8{left:2636.637734pt;}
.x17{left:2660.874515pt;}
.x3c{left:2667.623459pt;}
.x10{left:2730.036297pt;}
.xf{left:2734.431108pt;}
.x1e{left:2743.647638pt;}
.x3d{left:2814.429940pt;}
.x20{left:3214.247903pt;}
.x19{left:3272.897317pt;}
.x18{left:3305.250971pt;}
.xe{left:3378.607848pt;}
.xa{left:3386.015958pt;}
.xb{left:3392.885373pt;}
.xc{left:3420.640714pt;}
.x1a{left:3470.446781pt;}
.xd{left:3538.360983pt;}
.x3{left:3672.643048pt;}
.x4{left:3722.333919pt;}
.x2{left:3753.053920pt;}
.x21{left:3830.107523pt;}
.x2d{left:3997.969828pt;}
.x29{left:4014.431728pt;}
.x28{left:4050.442150pt;}
.x2e{left:4291.973656pt;}
.x2f{left:4318.719438pt;}
.x22{left:4345.021139pt;}
.x2c{left:4505.764574pt;}
.x2b{left:4540.218145pt;}
.x13{left:4671.816729pt;}
.x2a{left:4673.726820pt;}
.x12{left:4812.723674pt;}
.x23{left:4816.931754pt;}
.x3a{left:4958.446886pt;}
.x27{left:5066.048462pt;}
.x26{left:5142.407485pt;}
.x25{left:5187.308766pt;}
}




    .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; }
  