
    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_76c58ead918505c5d13f52e1.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0ec6bbf551d3795543c8977d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_7de76f11ecc3ded1770facf1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_e8c99720a93e4523f739583a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_b6d36276ab50407d041be2a6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.239258;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;}
.m4{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-72.719971px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:67.679973px;}
.v1{vertical-align:69.119972px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028856px;}
.ls2{letter-spacing:0.171386px;}
.ls1{letter-spacing:0.171465px;}
.ls4{letter-spacing:0.189257px;}
.ls5{letter-spacing:0.189289px;}
.ls6{letter-spacing:0.909731px;}
.ls7{letter-spacing:91.453283px;}
.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;}
}
.ws2{word-spacing:-16.642129px;}
.ws1{word-spacing:-16.613273px;}
.ws3{word-spacing:-14.939994px;}
.ws0{word-spacing:-13.505755px;}
.ws5{word-spacing:-10.808636px;}
.ws6{word-spacing:-9.719996px;}
.ws4{word-spacing:0.000000px;}
._6{margin-left:-12.954776px;}
._1{margin-left:-1.613153px;}
._0{width:1.300748px;}
._a{width:2.314634px;}
._2{width:49.118178px;}
._b{width:62.522826px;}
._c{width:63.963639px;}
._9{width:214.651234px;}
._8{width:229.055240px;}
._5{width:285.968073px;}
._3{width:343.302343px;}
._4{width:403.062319px;}
._7{width:419.675592px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.879984px;}
.fs0{font-size:59.759976px;}
.fs2{font-size:71.999971px;}
.fs1{font-size:84.239966px;}
.fs4{font-size:107.999957px;}
.y0{bottom:0.000000px;}
.y34{bottom:3.420036px;}
.y36{bottom:3.420043px;}
.y3f{bottom:3.420091px;}
.y46{bottom:3.420126px;}
.y14{bottom:3.420160px;}
.y16{bottom:3.420168px;}
.y4e{bottom:3.420175px;}
.y1d{bottom:3.420202px;}
.y54{bottom:3.420210px;}
.y25{bottom:3.420244px;}
.y3{bottom:56.400334px;}
.y67{bottom:57.000277px;}
.y2{bottom:74.040327px;}
.y66{bottom:74.640270px;}
.y1{bottom:92.220320px;}
.y65{bottom:92.820263px;}
.y31{bottom:110.220313px;}
.yb9{bottom:111.900255px;}
.y30{bottom:117.060310px;}
.y2f{bottom:127.500306px;}
.yb8{bottom:129.180248px;}
.y2e{bottom:134.340303px;}
.yb7{bottom:136.020246px;}
.y64{bottom:140.100301px;}
.y2d{bottom:144.780299px;}
.yb6{bottom:146.460241px;}
.yb5{bottom:153.299939px;}
.y63{bottom:160.800293px;}
.yb4{bottom:163.559935px;}
.yb3{bottom:170.399932px;}
.y62{bottom:177.900286px;}
.y2c{bottom:178.800285px;}
.yb2{bottom:180.839928px;}
.yb1{bottom:187.679925px;}
.y61{bottom:195.180279px;}
.y2b{bottom:195.900279px;}
.yb0{bottom:198.119921px;}
.yaf{bottom:204.959918px;}
.y60{bottom:212.460272px;}
.y2a{bottom:213.180272px;}
.yae{bottom:215.399914px;}
.yad{bottom:222.239911px;}
.y5f{bottom:229.740265px;}
.y29{bottom:230.460265px;}
.yac{bottom:232.679907px;}
.yab{bottom:239.519904px;}
.y5d{bottom:247.020258px;}
.y28{bottom:247.740258px;}
.yaa{bottom:249.959900px;}
.ya9{bottom:256.799897px;}
.y5c{bottom:264.300251px;}
.y5b{bottom:264.480251px;}
.y27{bottom:265.020251px;}
.ya8{bottom:267.059893px;}
.ya7{bottom:273.899890px;}
.y5a{bottom:278.160000px;}
.y24{bottom:278.880000px;}
.y5e{bottom:281.400244px;}
.y26{bottom:282.120244px;}
.ya6{bottom:284.339886px;}
.ya5{bottom:291.179884px;}
.y59{bottom:299.400237px;}
.y23{bottom:300.120237px;}
.ya4{bottom:301.619879px;}
.ya3{bottom:308.459877px;}
.y58{bottom:316.680230px;}
.y22{bottom:317.400230px;}
.ya2{bottom:318.899872px;}
.ya1{bottom:325.739870px;}
.y57{bottom:333.960223px;}
.y21{bottom:334.680223px;}
.ya0{bottom:336.179866px;}
.y9f{bottom:343.019863px;}
.y56{bottom:351.240217px;}
.y20{bottom:351.960216px;}
.y9e{bottom:353.459859px;}
.y9d{bottom:360.299856px;}
.y53{bottom:365.280000px;}
.y55{bottom:368.520210px;}
.y1f{bottom:369.240209px;}
.y9c{bottom:370.559852px;}
.y1c{bottom:383.280000px;}
.y1e{bottom:386.520202px;}
.y52{bottom:403.620196px;}
.y1b{bottom:404.520195px;}
.y51{bottom:420.900189px;}
.y1a{bottom:421.620188px;}
.y9a{bottom:423.659831px;}
.y9b{bottom:431.219828px;}
.y50{bottom:438.180182px;}
.y19{bottom:438.900181px;}
.y99{bottom:440.759824px;}
.y4d{bottom:452.220000px;}
.y4f{bottom:455.460175px;}
.y18{bottom:456.180175px;}
.y98{bottom:458.039817px;}
.y15{bottom:470.220000px;}
.y17{bottom:473.460168px;}
.y96{bottom:475.319810px;}
.y97{bottom:482.879807px;}
.y13{bottom:488.220000px;}
.y4c{bottom:490.740161px;}
.y12{bottom:491.460160px;}
.y95{bottom:492.599803px;}
.y4b{bottom:508.020154px;}
.y94{bottom:510.599796px;}
.y4a{bottom:525.120147px;}
.yd6{bottom:525.539790px;}
.y11{bottom:527.100146px;}
.y93{bottom:533.099787px;}
.y49{bottom:542.400140px;}
.yd5{bottom:545.519782px;}
.y10{bottom:553.020136px;}
.y48{bottom:559.680133px;}
.y91{bottom:561.539775px;}
.yd4{bottom:562.619775px;}
.y92{bottom:569.099772px;}
.y45{bottom:573.720000px;}
.y47{bottom:576.960126px;}
.yf{bottom:578.760125px;}
.y8f{bottom:578.819768px;}
.yd3{bottom:579.899768px;}
.y90{bottom:586.379765px;}
.y44{bottom:594.960119px;}
.y8d{bottom:596.099762px;}
.yd2{bottom:597.179761px;}
.y8e{bottom:603.659759px;}
.yd{bottom:605.040115px;}
.y43{bottom:612.240112px;}
.ye{bottom:612.600112px;}
.y8c{bottom:613.379755px;}
.yd1{bottom:615.359754px;}
.y42{bottom:629.340105px;}
.y8b{bottom:630.659748px;}
.yd0{bottom:632.639747px;}
.yb{bottom:639.960101px;}
.y41{bottom:646.620098px;}
.yc{bottom:647.520098px;}
.y8a{bottom:648.659741px;}
.ycf{bottom:649.919740px;}
.y3e{bottom:660.660000px;}
.y40{bottom:663.900091px;}
.ya{bottom:665.880091px;}
.yce{bottom:667.199733px;}
.y89{bottom:671.159732px;}
.y3d{bottom:681.900084px;}
.ycd{bottom:685.379726px;}
.y9{bottom:691.620080px;}
.y3c{bottom:699.180077px;}
.y87{bottom:699.599720px;}
.ycc{bottom:702.659719px;}
.y88{bottom:707.159717px;}
.y3b{bottom:716.460070px;}
.y85{bottom:716.879713px;}
.y8{bottom:717.900070px;}
.ycb{bottom:719.939712px;}
.y86{bottom:724.439710px;}
.y3a{bottom:733.740064px;}
.y84{bottom:734.159706px;}
.y7{bottom:735.900063px;}
.yca{bottom:738.119705px;}
.y39{bottom:750.840057px;}
.y83{bottom:751.259699px;}
.yc9{bottom:755.399698px;}
.y6{bottom:756.600054px;}
.y38{bottom:768.120050px;}
.y82{bottom:768.539693px;}
.yc8{bottom:772.679691px;}
.y5{bottom:777.300046px;}
.y35{bottom:782.160000px;}
.y37{bottom:785.400043px;}
.y81{bottom:786.539685px;}
.yc7{bottom:789.959684px;}
.y4{bottom:798.540038px;}
.y33{bottom:800.160000px;}
.y32{bottom:803.400036px;}
.yc6{bottom:808.139677px;}
.y80{bottom:809.219676px;}
.yc5{bottom:825.419670px;}
.y7e{bottom:837.479665px;}
.y7f{bottom:845.039662px;}
.y7c{bottom:854.759658px;}
.yc4{bottom:860.879656px;}
.y7d{bottom:862.319655px;}
.y7b{bottom:872.039651px;}
.yc3{bottom:878.159649px;}
.y79{bottom:889.319644px;}
.yc2{bottom:895.439642px;}
.y7a{bottom:896.879641px;}
.y78{bottom:906.599637px;}
.yc1{bottom:912.719635px;}
.y77{bottom:923.879630px;}
.yc0{bottom:929.999628px;}
.y76{bottom:941.879623px;}
.ybf{bottom:947.279621px;}
.y75{bottom:964.379614px;}
.ybe{bottom:990.659604px;}
.y73{bottom:992.819603px;}
.y74{bottom:1000.379600px;}
.y71{bottom:1010.099596px;}
.y72{bottom:1017.659593px;}
.ybd{bottom:1017.839593px;}
.y70{bottom:1027.379589px;}
.y6f{bottom:1044.479582px;}
.ybc{bottom:1045.199582px;}
.y6d{bottom:1061.759575px;}
.y6e{bottom:1069.319572px;}
.ybb{bottom:1072.379571px;}
.y6b{bottom:1079.039568px;}
.y6c{bottom:1086.599565px;}
.y6a{bottom:1097.039561px;}
.yba{bottom:1099.739560px;}
.y69{bottom:1117.739553px;}
.y68{bottom:1138.439545px;}
.h7{height:17.100000px;}
.h9{height:38.158578px;}
.h6{height:40.550609px;}
.h1{height:42.894123px;}
.h2{height:58.651148px;}
.h5{height:62.327788px;}
.h4{height:75.093720px;}
.h3{height:87.859652px;}
.hc{height:112.640580px;}
.ha{height:130.007760px;}
.h8{height:131.447760px;}
.h0{height:892.500000px;}
.hb{height:1263.000000px;}
.w2{width:8.280000px;}
.w8{width:34.200000px;}
.wa{width:39.240000px;}
.w4{width:41.760000px;}
.w9{width:42.480000px;}
.w5{width:43.380000px;}
.w7{width:51.660000px;}
.w6{width:53.280000px;}
.w1{width:67.500000px;}
.wb{width:74.159640px;}
.w3{width:90.900000px;}
.wc{width:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x3{left:107.982573px;}
.x14{left:112.845855px;}
.x5{left:118.605888px;}
.x33{left:134.819968px;}
.x17{left:142.185960px;}
.x18{left:147.225960px;}
.x16{left:149.745960px;}
.x12{left:151.365960px;}
.x15{left:159.645960px;}
.x13{left:161.265960px;}
.x2d{left:170.639932px;}
.x2e{left:181.439927px;}
.xa{left:203.205600px;}
.x24{left:243.899902px;}
.x25{left:249.299900px;}
.x27{left:260.639896px;}
.xb{left:270.705600px;}
.x2a{left:328.139869px;}
.x2b{left:338.939864px;}
.x6{left:360.526356px;}
.x2f{left:363.959854px;}
.x7{left:365.926354px;}
.xc{left:371.325600px;}
.x30{left:374.759850px;}
.x1a{left:428.399851px;}
.x2c{left:452.339819px;}
.xd{left:462.225600px;}
.x1f{left:476.459809px;}
.x20{left:481.859807px;}
.x4{left:484.906306px;}
.x28{left:489.959804px;}
.x29{left:500.759800px;}
.x8{left:552.406279px;}
.x9{left:557.806277px;}
.x21{left:620.819752px;}
.xe{left:626.385600px;}
.x19{left:631.079748px;}
.x31{left:634.139746px;}
.x32{left:644.939742px;}
.x1d{left:681.659727px;}
.x1e{left:687.059725px;}
.xf{left:717.285600px;}
.x2{left:775.244727px;}
.x1b{left:781.019688px;}
.x1c{left:786.419685px;}
.x26{left:791.099684px;}
.x22{left:796.499681px;}
.x23{left:801.899679px;}
.x10{left:902.865600px;}
.x11{left:944.625600px;}
.x1{left:977.926109px;}
@media print{
.v3{vertical-align:-64.639974pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:60.159976pt;}
.v1{vertical-align:61.439975pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.025650pt;}
.ls2{letter-spacing:0.152344pt;}
.ls1{letter-spacing:0.152413pt;}
.ls4{letter-spacing:0.168228pt;}
.ls5{letter-spacing:0.168257pt;}
.ls6{letter-spacing:0.808650pt;}
.ls7{letter-spacing:81.291807pt;}
.ws2{word-spacing:-14.793004pt;}
.ws1{word-spacing:-14.767354pt;}
.ws3{word-spacing:-13.279995pt;}
.ws0{word-spacing:-12.005115pt;}
.ws5{word-spacing:-9.607676pt;}
.ws6{word-spacing:-8.639997pt;}
.ws4{word-spacing:0.000000pt;}
._6{margin-left:-11.515357pt;}
._1{margin-left:-1.433914pt;}
._0{width:1.156221pt;}
._a{width:2.057452pt;}
._2{width:43.660603pt;}
._b{width:55.575846pt;}
._c{width:56.856568pt;}
._9{width:190.801097pt;}
._8{width:203.604658pt;}
._5{width:254.193843pt;}
._3{width:305.157638pt;}
._4{width:358.277617pt;}
._7{width:373.044971pt;}
.fs3{font-size:34.559986pt;}
.fs0{font-size:53.119979pt;}
.fs2{font-size:63.999974pt;}
.fs1{font-size:74.879970pt;}
.fs4{font-size:95.999962pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:3.040032pt;}
.y36{bottom:3.040038pt;}
.y3f{bottom:3.040081pt;}
.y46{bottom:3.040112pt;}
.y14{bottom:3.040143pt;}
.y16{bottom:3.040149pt;}
.y4e{bottom:3.040155pt;}
.y1d{bottom:3.040180pt;}
.y54{bottom:3.040186pt;}
.y25{bottom:3.040217pt;}
.y3{bottom:50.133631pt;}
.y67{bottom:50.666913pt;}
.y2{bottom:65.813624pt;}
.y66{bottom:66.346907pt;}
.y1{bottom:81.973618pt;}
.y65{bottom:82.506900pt;}
.y31{bottom:97.973611pt;}
.yb9{bottom:99.466894pt;}
.y30{bottom:104.053609pt;}
.y2f{bottom:113.333605pt;}
.yb8{bottom:114.826887pt;}
.y2e{bottom:119.413603pt;}
.yb7{bottom:120.906885pt;}
.y64{bottom:124.533601pt;}
.y2d{bottom:128.693599pt;}
.yb6{bottom:130.186881pt;}
.yb5{bottom:136.266612pt;}
.y63{bottom:142.933593pt;}
.yb4{bottom:145.386609pt;}
.yb3{bottom:151.466606pt;}
.y62{bottom:158.133587pt;}
.y2c{bottom:158.933587pt;}
.yb2{bottom:160.746602pt;}
.yb1{bottom:166.826600pt;}
.y61{bottom:173.493581pt;}
.y2b{bottom:174.133581pt;}
.yb0{bottom:176.106596pt;}
.yaf{bottom:182.186594pt;}
.y60{bottom:188.853575pt;}
.y2a{bottom:189.493575pt;}
.yae{bottom:191.466590pt;}
.yad{bottom:197.546588pt;}
.y5f{bottom:204.213569pt;}
.y29{bottom:204.853569pt;}
.yac{bottom:206.826584pt;}
.yab{bottom:212.906582pt;}
.y5d{bottom:219.573563pt;}
.y28{bottom:220.213563pt;}
.yaa{bottom:222.186578pt;}
.ya9{bottom:228.266575pt;}
.y5c{bottom:234.933557pt;}
.y5b{bottom:235.093557pt;}
.y27{bottom:235.573556pt;}
.ya8{bottom:237.386572pt;}
.ya7{bottom:243.466569pt;}
.y5a{bottom:247.253333pt;}
.y24{bottom:247.893333pt;}
.y5e{bottom:250.133551pt;}
.y26{bottom:250.773550pt;}
.ya6{bottom:252.746566pt;}
.ya5{bottom:258.826563pt;}
.y59{bottom:266.133544pt;}
.y23{bottom:266.773544pt;}
.ya4{bottom:268.106559pt;}
.ya3{bottom:274.186557pt;}
.y58{bottom:281.493538pt;}
.y22{bottom:282.133538pt;}
.ya2{bottom:283.466553pt;}
.ya1{bottom:289.546551pt;}
.y57{bottom:296.853532pt;}
.y21{bottom:297.493532pt;}
.ya0{bottom:298.826547pt;}
.y9f{bottom:304.906545pt;}
.y56{bottom:312.213526pt;}
.y20{bottom:312.853526pt;}
.y9e{bottom:314.186541pt;}
.y9d{bottom:320.266539pt;}
.y53{bottom:324.693333pt;}
.y55{bottom:327.573520pt;}
.y1f{bottom:328.213519pt;}
.y9c{bottom:329.386535pt;}
.y1c{bottom:340.693333pt;}
.y1e{bottom:343.573513pt;}
.y52{bottom:358.773507pt;}
.y1b{bottom:359.573507pt;}
.y51{bottom:374.133501pt;}
.y1a{bottom:374.773501pt;}
.y9a{bottom:376.586516pt;}
.y9b{bottom:383.306513pt;}
.y50{bottom:389.493495pt;}
.y19{bottom:390.133495pt;}
.y99{bottom:391.786510pt;}
.y4d{bottom:401.973333pt;}
.y4f{bottom:404.853489pt;}
.y18{bottom:405.493488pt;}
.y98{bottom:407.146504pt;}
.y15{bottom:417.973333pt;}
.y17{bottom:420.853482pt;}
.y96{bottom:422.506498pt;}
.y97{bottom:429.226495pt;}
.y13{bottom:433.973333pt;}
.y4c{bottom:436.213476pt;}
.y12{bottom:436.853476pt;}
.y95{bottom:437.866492pt;}
.y4b{bottom:451.573470pt;}
.y94{bottom:453.866485pt;}
.y4a{bottom:466.773464pt;}
.yd6{bottom:467.146480pt;}
.y11{bottom:468.533463pt;}
.y93{bottom:473.866477pt;}
.y49{bottom:482.133458pt;}
.yd5{bottom:484.906473pt;}
.y10{bottom:491.573454pt;}
.y48{bottom:497.493452pt;}
.y91{bottom:499.146467pt;}
.yd4{bottom:500.106467pt;}
.y92{bottom:505.866464pt;}
.y45{bottom:509.973333pt;}
.y47{bottom:512.853446pt;}
.yf{bottom:514.453445pt;}
.y8f{bottom:514.506461pt;}
.yd3{bottom:515.466460pt;}
.y90{bottom:521.226458pt;}
.y44{bottom:528.853439pt;}
.y8d{bottom:529.866455pt;}
.yd2{bottom:530.826454pt;}
.y8e{bottom:536.586452pt;}
.yd{bottom:537.813436pt;}
.y43{bottom:544.213433pt;}
.ye{bottom:544.533433pt;}
.y8c{bottom:545.226449pt;}
.yd1{bottom:546.986448pt;}
.y42{bottom:559.413427pt;}
.y8b{bottom:560.586442pt;}
.yd0{bottom:562.346442pt;}
.yb{bottom:568.853423pt;}
.y41{bottom:574.773421pt;}
.yc{bottom:575.573420pt;}
.y8a{bottom:576.586436pt;}
.ycf{bottom:577.706436pt;}
.y3e{bottom:587.253333pt;}
.y40{bottom:590.133415pt;}
.ya{bottom:591.893414pt;}
.yce{bottom:593.066429pt;}
.y89{bottom:596.586428pt;}
.y3d{bottom:606.133408pt;}
.ycd{bottom:609.226423pt;}
.y9{bottom:614.773405pt;}
.y3c{bottom:621.493402pt;}
.y87{bottom:621.866418pt;}
.ycc{bottom:624.586417pt;}
.y88{bottom:628.586415pt;}
.y3b{bottom:636.853396pt;}
.y85{bottom:637.226412pt;}
.y8{bottom:638.133395pt;}
.ycb{bottom:639.946411pt;}
.y86{bottom:643.946409pt;}
.y3a{bottom:652.213390pt;}
.y84{bottom:652.586406pt;}
.y7{bottom:654.133389pt;}
.yca{bottom:656.106404pt;}
.y39{bottom:667.413384pt;}
.y83{bottom:667.786400pt;}
.yc9{bottom:671.466398pt;}
.y6{bottom:672.533382pt;}
.y38{bottom:682.773378pt;}
.y82{bottom:683.146393pt;}
.yc8{bottom:686.826392pt;}
.y5{bottom:690.933374pt;}
.y35{bottom:695.253333pt;}
.y37{bottom:698.133371pt;}
.y81{bottom:699.146387pt;}
.yc7{bottom:702.186386pt;}
.y4{bottom:709.813367pt;}
.y33{bottom:711.253333pt;}
.y32{bottom:714.133365pt;}
.yc6{bottom:718.346379pt;}
.y80{bottom:719.306379pt;}
.yc5{bottom:733.706373pt;}
.y7e{bottom:744.426369pt;}
.y7f{bottom:751.146366pt;}
.y7c{bottom:759.786363pt;}
.yc4{bottom:765.226361pt;}
.y7d{bottom:766.506360pt;}
.y7b{bottom:775.146357pt;}
.yc3{bottom:780.586354pt;}
.y79{bottom:790.506350pt;}
.yc2{bottom:795.946348pt;}
.y7a{bottom:797.226348pt;}
.y78{bottom:805.866344pt;}
.yc1{bottom:811.306342pt;}
.y77{bottom:821.226338pt;}
.yc0{bottom:826.666336pt;}
.y76{bottom:837.226332pt;}
.ybf{bottom:842.026330pt;}
.y75{bottom:857.226324pt;}
.ybe{bottom:880.586314pt;}
.y73{bottom:882.506314pt;}
.y74{bottom:889.226311pt;}
.y71{bottom:897.866308pt;}
.y72{bottom:904.586305pt;}
.ybd{bottom:904.746305pt;}
.y70{bottom:913.226301pt;}
.y6f{bottom:928.426295pt;}
.ybc{bottom:929.066295pt;}
.y6d{bottom:943.786289pt;}
.y6e{bottom:950.506286pt;}
.ybb{bottom:953.226285pt;}
.y6b{bottom:959.146283pt;}
.y6c{bottom:965.866280pt;}
.y6a{bottom:975.146277pt;}
.yba{bottom:977.546276pt;}
.y69{bottom:993.546269pt;}
.y68{bottom:1011.946262pt;}
.h7{height:15.200000pt;}
.h9{height:33.918736pt;}
.h6{height:36.044986pt;}
.h1{height:38.128110pt;}
.h2{height:52.134354pt;}
.h5{height:55.402478pt;}
.h4{height:66.749973pt;}
.h3{height:78.097469pt;}
.hc{height:100.124960pt;}
.ha{height:115.562454pt;}
.h8{height:116.842453pt;}
.h0{height:793.333333pt;}
.hb{height:1122.666667pt;}
.w2{width:7.360000pt;}
.w8{width:30.400000pt;}
.wa{width:34.880000pt;}
.w4{width:37.120000pt;}
.w9{width:37.760000pt;}
.w5{width:38.560000pt;}
.w7{width:45.920000pt;}
.w6{width:47.360000pt;}
.w1{width:60.000000pt;}
.wb{width:65.919680pt;}
.w3{width:80.800000pt;}
.wc{width:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x3{left:95.984509pt;}
.x14{left:100.307427pt;}
.x5{left:105.427456pt;}
.x33{left:119.839972pt;}
.x17{left:126.387520pt;}
.x18{left:130.867520pt;}
.x16{left:133.107520pt;}
.x12{left:134.547520pt;}
.x15{left:141.907520pt;}
.x13{left:143.347520pt;}
.x2d{left:151.679939pt;}
.x2e{left:161.279935pt;}
.xa{left:180.627200pt;}
.x24{left:216.799913pt;}
.x25{left:221.599911pt;}
.x27{left:231.679907pt;}
.xb{left:240.627200pt;}
.x2a{left:291.679883pt;}
.x2b{left:301.279879pt;}
.x6{left:320.467872pt;}
.x2f{left:323.519871pt;}
.x7{left:325.267870pt;}
.xc{left:330.067200pt;}
.x30{left:333.119867pt;}
.x1a{left:380.799867pt;}
.x2c{left:402.079839pt;}
.xd{left:410.867200pt;}
.x1f{left:423.519831pt;}
.x20{left:428.319829pt;}
.x4{left:431.027828pt;}
.x28{left:435.519826pt;}
.x29{left:445.119822pt;}
.x8{left:491.027804pt;}
.x9{left:495.827802pt;}
.x21{left:551.839779pt;}
.xe{left:556.787200pt;}
.x19{left:560.959776pt;}
.x31{left:563.679775pt;}
.x32{left:573.279771pt;}
.x1d{left:605.919758pt;}
.x1e{left:610.719756pt;}
.xf{left:637.587200pt;}
.x2{left:689.106424pt;}
.x1b{left:694.239722pt;}
.x1c{left:699.039720pt;}
.x26{left:703.199719pt;}
.x22{left:707.999717pt;}
.x23{left:712.799715pt;}
.x10{left:802.547200pt;}
.x11{left:839.667200pt;}
.x1{left:869.267652pt;}
}




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