
    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_96cc0ef3db8316aef798b14c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.958008;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_9dc1f7354b5ab80fa2e5b081.woff')format("woff");}.ff2{font-family:ff2;line-height:0.958008;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_22a5890f65aa5a44e7d8a75c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.958008;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_1e7f9c4252eed1bb2ee47497.woff')format("woff");}.ff4{font-family:ff4;line-height:0.958008;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_4c70a0f01f880645b3f647c0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.958008;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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-45.254520px;}
.lse{letter-spacing:-4.968000px;}
.ls3{letter-spacing:-4.569664px;}
.ls9{letter-spacing:-3.600000px;}
.ls5{letter-spacing:-1.440000px;}
.ls7{letter-spacing:-1.200000px;}
.ls8{letter-spacing:-1.080000px;}
.ls2{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.096000px;}
.lsa{letter-spacing:0.288000px;}
.ls0{letter-spacing:1.623494px;}
.ls4{letter-spacing:1.680000px;}
.lsd{letter-spacing:2.376000px;}
.ls1{letter-spacing:10.662548px;}
.lsb{letter-spacing:11.304000px;}
.ls10{letter-spacing:12.988800px;}
.ls11{letter-spacing:23.040000px;}
.lsf{letter-spacing:64.368000px;}
.lsc{letter-spacing:69.120000px;}
.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;}
}
.ws0{word-spacing:-70.322045px;}
.ws9{word-spacing:-26.592000px;}
.ws6{word-spacing:-24.930000px;}
.wsa{word-spacing:-19.884144px;}
.ws7{word-spacing:-18.720000px;}
.ws8{word-spacing:-18.504000px;}
.ws5{word-spacing:-16.800000px;}
.ws4{word-spacing:-16.620000px;}
.ws1{word-spacing:0.000000px;}
.ws3{word-spacing:1830.960000px;}
.ws2{word-spacing:2255.061600px;}
._13{margin-left:-71.157600px;}
._14{margin-left:-69.962400px;}
._1b{margin-left:-24.480000px;}
._19{margin-left:-14.400000px;}
._e{margin-left:-13.176000px;}
._f{margin-left:-11.880000px;}
._a{margin-left:-8.780400px;}
._8{margin-left:-6.220800px;}
._0{margin-left:-4.569641px;}
._6{margin-left:-2.814000px;}
._7{margin-left:-1.290000px;}
._1{width:1.180800px;}
._b{width:2.450400px;}
._9{width:3.828000px;}
._16{width:7.122000px;}
._c{width:8.280000px;}
._d{width:12.888000px;}
._18{width:14.616000px;}
._1a{width:24.480000px;}
._17{width:30.960000px;}
._11{width:40.032000px;}
._10{width:41.328000px;}
._1c{width:58.680000px;}
._12{width:70.560000px;}
._15{width:71.949600px;}
._3{width:1045.656000px;}
._1d{width:1239.084000px;}
._4{width:1362.816000px;}
._2{width:1907.683200px;}
._5{width:1938.528000px;}
.fc7{color:rgb(205,237,220);}
.fc5{color:rgb(3,166,82);}
.fc4{color:rgb(82,224,206);}
.fc3{color:rgb(9,58,128);}
.fc9{color:rgb(0,0,0);}
.fc8{color:rgb(10,59,128);}
.fc1{color:rgb(255,255,255);}
.fc6{color:rgb(129,210,169);}
.fc2{color:transparent;}
.fc0{color:rgb(14,87,191);}
.fs11{font-size:36.000000px;}
.fs3{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs10{font-size:71.014800px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:73.795200px;}
.fsb{font-size:78.192000px;}
.fsf{font-size:84.000000px;}
.fsc{font-size:90.000000px;}
.fse{font-size:96.000000px;}
.fs8{font-size:108.000000px;}
.fs2{font-size:124.536600px;}
.fs4{font-size:156.000000px;}
.fsd{font-size:222.798000px;}
.fs1{font-size:253.870200px;}
.fs9{font-size:452.545200px;}
.y0{bottom:0.000000px;}
.ya3{bottom:11.179680px;}
.ya4{bottom:12.678930px;}
.y83{bottom:15.709020px;}
.y15{bottom:26.888700px;}
.y6{bottom:28.387950px;}
.yc7{bottom:31.889850px;}
.y1{bottom:34.330050px;}
.yc6{bottom:42.689850px;}
.yc5{bottom:53.489850px;}
.y3{bottom:55.645815px;}
.y5b{bottom:91.335900px;}
.yc4{bottom:99.586200px;}
.y82{bottom:114.936750px;}
.y59{bottom:116.715750px;}
.y2{bottom:120.128850px;}
.y2b{bottom:126.794100px;}
.y9b{bottom:130.218780px;}
.y81{bottom:134.436750px;}
.y14{bottom:134.471850px;}
.y58{bottom:135.465750px;}
.y18{bottom:137.867700px;}
.y9a{bottom:149.718780px;}
.y13{bottom:152.471850px;}
.y80{bottom:153.936750px;}
.y57{bottom:154.215750px;}
.y2a{bottom:159.788100px;}
.y17{bottom:161.861700px;}
.y99{bottom:169.218780px;}
.y12{bottom:170.471850px;}
.y56{bottom:172.965750px;}
.y16{bottom:185.855700px;}
.y11{bottom:188.471850px;}
.y98{bottom:188.718780px;}
.yca{bottom:202.369350px;}
.y10{bottom:206.471850px;}
.y5{bottom:207.557250px;}
.y6b{bottom:213.105600px;}
.y7f{bottom:220.891800px;}
.yf{bottom:224.471850px;}
.y55{bottom:225.710400px;}
.y97{bottom:227.718780px;}
.yc9{bottom:231.440700px;}
.y6a{bottom:235.722600px;}
.y7e{bottom:240.391800px;}
.ye{bottom:242.471850px;}
.y4{bottom:243.019050px;}
.y54{bottom:244.460400px;}
.yc8{bottom:245.840700px;}
.yb8{bottom:252.800550px;}
.y7d{bottom:259.891800px;}
.y53{bottom:263.210400px;}
.yb7{bottom:276.794550px;}
.y71{bottom:312.434700px;}
.y52{bottom:316.135950px;}
.yb6{bottom:324.800550px;}
.y70{bottom:331.934700px;}
.y51{bottom:334.885950px;}
.ya2{bottom:336.360330px;}
.ya1{bottom:355.860330px;}
.yb5{bottom:372.806550px;}
.y6f{bottom:374.411250px;}
.ya0{bottom:375.360330px;}
.y6d{bottom:377.215050px;}
.y50{bottom:388.624500px;}
.y9f{bottom:394.860330px;}
.y6e{bottom:397.028250px;}
.y6c{bottom:399.832050px;}
.y37{bottom:402.817350px;}
.y4f{bottom:407.374500px;}
.y7c{bottom:411.046800px;}
.y9e{bottom:414.360330px;}
.yb4{bottom:420.812550px;}
.y7b{bottom:422.998950px;}
.y4e{bottom:426.124500px;}
.y9d{bottom:433.860330px;}
.y76{bottom:434.058150px;}
.yb3{bottom:444.806550px;}
.y9c{bottom:472.860330px;}
.y36{bottom:473.728950px;}
.y4d{bottom:479.222100px;}
.yb2{bottom:492.812550px;}
.y35{bottom:493.228950px;}
.y4c{bottom:497.972100px;}
.y7a{bottom:509.778750px;}
.yb1{bottom:516.806550px;}
.y75{bottom:521.972100px;}
.y65{bottom:532.734750px;}
.yb0{bottom:540.800550px;}
.y62{bottom:545.169600px;}
.y96{bottom:548.106480px;}
.y29{bottom:548.294700px;}
.y4b{bottom:550.219500px;}
.y64{bottom:555.351750px;}
.y34{bottom:565.197450px;}
.y95{bottom:567.606480px;}
.y61{bottom:567.786600px;}
.y28{bottom:567.794700px;}
.y4a{bottom:568.969500px;}
.y63{bottom:577.968750px;}
.y33{bottom:584.697450px;}
.y94{bottom:587.106480px;}
.y49{bottom:587.719500px;}
.yaf{bottom:588.806550px;}
.y79{bottom:597.561150px;}
.y48{bottom:606.469500px;}
.y93{bottom:606.606480px;}
.y27{bottom:606.794700px;}
.y74{bottom:609.887700px;}
.yae{bottom:612.800550px;}
.yc3{bottom:617.643000px;}
.y47{bottom:625.219500px;}
.y26{bottom:626.294700px;}
.yc2{bottom:641.637000px;}
.y92{bottom:645.606480px;}
.y25{bottom:645.794700px;}
.y32{bottom:656.916450px;}
.yad{bottom:660.806550px;}
.y91{bottom:665.106480px;}
.yc1{bottom:665.631000px;}
.y31{bottom:676.416450px;}
.y46{bottom:680.603100px;}
.y90{bottom:684.606480px;}
.y24{bottom:684.794700px;}
.yac{bottom:684.800550px;}
.y78{bottom:686.346150px;}
.y30{bottom:695.916450px;}
.y73{bottom:697.801800px;}
.y45{bottom:699.353100px;}
.y8f{bottom:704.106480px;}
.y23{bottom:704.294700px;}
.y69{bottom:706.476000px;}
.y67{bottom:709.278300px;}
.yc0{bottom:713.637000px;}
.y8e{bottom:723.606480px;}
.y22{bottom:723.794700px;}
.y68{bottom:729.093000px;}
.y66{bottom:731.895300px;}
.yab{bottom:732.806550px;}
.ybf{bottom:737.631000px;}
.yd{bottom:750.086400px;}
.y44{bottom:753.838650px;}
.yaa{bottom:756.800550px;}
.ybe{bottom:761.625000px;}
.y8d{bottom:762.606480px;}
.y21{bottom:762.794700px;}
.y2f{bottom:767.709300px;}
.y43{bottom:772.588650px;}
.y77{bottom:774.574200px;}
.y8c{bottom:782.106480px;}
.y20{bottom:782.294700px;}
.y72{bottom:785.716500px;}
.yc{bottom:787.040400px;}
.y2e{bottom:787.209300px;}
.y42{bottom:791.338650px;}
.y8b{bottom:801.606480px;}
.ya9{bottom:804.806550px;}
.y2d{bottom:806.709300px;}
.ybd{bottom:809.631000px;}
.y41{bottom:810.088650px;}
.y8a{bottom:821.106480px;}
.y1f{bottom:821.294700px;}
.yb{bottom:823.994400px;}
.ya8{bottom:828.800550px;}
.ybc{bottom:833.625000px;}
.y1e{bottom:840.794700px;}
.ya7{bottom:852.794550px;}
.y89{bottom:860.106480px;}
.y1d{bottom:860.294700px;}
.y40{bottom:862.968000px;}
.y60{bottom:863.700150px;}
.y5d{bottom:876.135750px;}
.y1c{bottom:879.794700px;}
.ybb{bottom:881.631000px;}
.y3f{bottom:881.718000px;}
.y5f{bottom:886.317150px;}
.ya{bottom:895.333800px;}
.y5c{bottom:898.752750px;}
.y1b{bottom:899.294700px;}
.ya6{bottom:900.800550px;}
.yba{bottom:905.625000px;}
.y5e{bottom:908.934150px;}
.y88{bottom:909.085680px;}
.y3e{bottom:935.420700px;}
.y87{bottom:941.125380px;}
.y3d{bottom:954.170700px;}
.y9{bottom:966.673050px;}
.y3c{bottom:972.920700px;}
.y19{bottom:988.387200px;}
.y2c{bottom:988.391100px;}
.ya5{bottom:990.719250px;}
.y5a{bottom:1009.817100px;}
.y85{bottom:1016.595030px;}
.y86{bottom:1017.388080px;}
.y3b{bottom:1029.317100px;}
.y1a{bottom:1033.097100px;}
.y8{bottom:1038.012450px;}
.y3a{bottom:1048.817100px;}
.y84{bottom:1048.995030px;}
.y39{bottom:1068.317100px;}
.yb9{bottom:1075.940850px;}
.y38{bottom:1115.253000px;}
.y7{bottom:1159.713900px;}
.h14{height:27.000000px;}
.h5{height:31.500000px;}
.h9{height:36.000000px;}
.hc{height:40.500000px;}
.h8{height:45.000000px;}
.h13{height:53.261100px;}
.h7{height:54.000000px;}
.h2{height:55.346400px;}
.hd{height:58.644000px;}
.h12{height:63.000000px;}
.he{height:67.500000px;}
.h11{height:72.000000px;}
.ha{height:81.000000px;}
.h4{height:93.402450px;}
.h6{height:117.000000px;}
.hf{height:167.098500px;}
.h3{height:190.402650px;}
.hb{height:339.408900px;}
.h10{height:1212.713130px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:892.913400px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:22.574700px;}
.x2{left:49.677300px;}
.xc{left:58.785600px;}
.x32{left:66.550800px;}
.xe{left:67.784250px;}
.x4{left:69.503850px;}
.xa{left:77.005350px;}
.x2b{left:80.276400px;}
.x2f{left:84.019050px;}
.x5{left:90.242400px;}
.xd{left:91.302300px;}
.x33{left:92.362800px;}
.xf{left:93.960900px;}
.x35{left:96.417450px;}
.x9{left:97.507350px;}
.x6{left:120.248400px;}
.x10{left:139.722600px;}
.x30{left:150.396900px;}
.xb{left:154.009350px;}
.x39{left:175.282350px;}
.x38{left:180.025350px;}
.x26{left:206.745150px;}
.x2c{left:209.276400px;}
.x3a{left:217.555350px;}
.x13{left:249.719550px;}
.x17{left:251.088900px;}
.x18{left:255.389400px;}
.x3b{left:256.867800px;}
.x11{left:262.388700px;}
.x20{left:264.571350px;}
.x12{left:274.936500px;}
.x27{left:293.633850px;}
.x31{left:297.429150px;}
.x2d{left:335.658600px;}
.x1d{left:352.335900px;}
.x37{left:359.181150px;}
.x22{left:367.587900px;}
.x23{left:370.911000px;}
.x1c{left:382.048800px;}
.x7{left:410.802300px;}
.x28{left:422.176800px;}
.x21{left:444.014100px;}
.x15{left:448.118100px;}
.x19{left:452.418450px;}
.x1b{left:454.177800px;}
.x14{left:462.388200px;}
.x1a{left:463.951800px;}
.x16{left:465.515850px;}
.x24{left:524.749500px;}
.x25{left:547.229700px;}
.x1f{left:553.281600px;}
.x1e{left:556.409250px;}
.x34{left:577.085400px;}
.x2e{left:594.438450px;}
.x29{left:639.852600px;}
.x1{left:686.336400px;}
.x2a{left:740.371650px;}
.x36{left:851.415600px;}
.x8{left:854.787600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-40.226240pt;}
.lse{letter-spacing:-4.416000pt;}
.ls3{letter-spacing:-4.061923pt;}
.ls9{letter-spacing:-3.200000pt;}
.ls5{letter-spacing:-1.280000pt;}
.ls7{letter-spacing:-1.066667pt;}
.ls8{letter-spacing:-0.960000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.085333pt;}
.lsa{letter-spacing:0.256000pt;}
.ls0{letter-spacing:1.443106pt;}
.ls4{letter-spacing:1.493333pt;}
.lsd{letter-spacing:2.112000pt;}
.ls1{letter-spacing:9.477821pt;}
.lsb{letter-spacing:10.048000pt;}
.ls10{letter-spacing:11.545600pt;}
.ls11{letter-spacing:20.480000pt;}
.lsf{letter-spacing:57.216000pt;}
.lsc{letter-spacing:61.440000pt;}
.ws0{word-spacing:-62.508485pt;}
.ws9{word-spacing:-23.637333pt;}
.ws6{word-spacing:-22.160000pt;}
.wsa{word-spacing:-17.674795pt;}
.ws7{word-spacing:-16.640000pt;}
.ws8{word-spacing:-16.448000pt;}
.ws5{word-spacing:-14.933333pt;}
.ws4{word-spacing:-14.773333pt;}
.ws1{word-spacing:0.000000pt;}
.ws3{word-spacing:1627.520000pt;}
.ws2{word-spacing:2004.499200pt;}
._13{margin-left:-63.251200pt;}
._14{margin-left:-62.188800pt;}
._1b{margin-left:-21.760000pt;}
._19{margin-left:-12.800000pt;}
._e{margin-left:-11.712000pt;}
._f{margin-left:-10.560000pt;}
._a{margin-left:-7.804800pt;}
._8{margin-left:-5.529600pt;}
._0{margin-left:-4.061903pt;}
._6{margin-left:-2.501333pt;}
._7{margin-left:-1.146667pt;}
._1{width:1.049600pt;}
._b{width:2.178133pt;}
._9{width:3.402667pt;}
._16{width:6.330667pt;}
._c{width:7.360000pt;}
._d{width:11.456000pt;}
._18{width:12.992000pt;}
._1a{width:21.760000pt;}
._17{width:27.520000pt;}
._11{width:35.584000pt;}
._10{width:36.736000pt;}
._1c{width:52.160000pt;}
._12{width:62.720000pt;}
._15{width:63.955200pt;}
._3{width:929.472000pt;}
._1d{width:1101.408000pt;}
._4{width:1211.392000pt;}
._2{width:1695.718400pt;}
._5{width:1723.136000pt;}
.fs11{font-size:32.000000pt;}
.fs3{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs10{font-size:63.124267pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:65.595733pt;}
.fsb{font-size:69.504000pt;}
.fsf{font-size:74.666667pt;}
.fsc{font-size:80.000000pt;}
.fse{font-size:85.333333pt;}
.fs8{font-size:96.000000pt;}
.fs2{font-size:110.699200pt;}
.fs4{font-size:138.666667pt;}
.fsd{font-size:198.042667pt;}
.fs1{font-size:225.662400pt;}
.fs9{font-size:402.262400pt;}
.y0{bottom:0.000000pt;}
.ya3{bottom:9.937493pt;}
.ya4{bottom:11.270160pt;}
.y83{bottom:13.963573pt;}
.y15{bottom:23.901067pt;}
.y6{bottom:25.233733pt;}
.yc7{bottom:28.346533pt;}
.y1{bottom:30.515600pt;}
.yc6{bottom:37.946533pt;}
.yc5{bottom:47.546533pt;}
.y3{bottom:49.462947pt;}
.y5b{bottom:81.187467pt;}
.yc4{bottom:88.521067pt;}
.y82{bottom:102.166000pt;}
.y59{bottom:103.747333pt;}
.y2{bottom:106.781200pt;}
.y2b{bottom:112.705867pt;}
.y9b{bottom:115.750027pt;}
.y81{bottom:119.499333pt;}
.y14{bottom:119.530533pt;}
.y58{bottom:120.414000pt;}
.y18{bottom:122.549067pt;}
.y9a{bottom:133.083360pt;}
.y13{bottom:135.530533pt;}
.y80{bottom:136.832667pt;}
.y57{bottom:137.080667pt;}
.y2a{bottom:142.033867pt;}
.y17{bottom:143.877067pt;}
.y99{bottom:150.416693pt;}
.y12{bottom:151.530533pt;}
.y56{bottom:153.747333pt;}
.y16{bottom:165.205067pt;}
.y11{bottom:167.530533pt;}
.y98{bottom:167.750027pt;}
.yca{bottom:179.883867pt;}
.y10{bottom:183.530533pt;}
.y5{bottom:184.495333pt;}
.y6b{bottom:189.427200pt;}
.y7f{bottom:196.348267pt;}
.yf{bottom:199.530533pt;}
.y55{bottom:200.631467pt;}
.y97{bottom:202.416693pt;}
.yc9{bottom:205.725067pt;}
.y6a{bottom:209.531200pt;}
.y7e{bottom:213.681600pt;}
.ye{bottom:215.530533pt;}
.y4{bottom:216.016933pt;}
.y54{bottom:217.298133pt;}
.yc8{bottom:218.525067pt;}
.yb8{bottom:224.711600pt;}
.y7d{bottom:231.014933pt;}
.y53{bottom:233.964800pt;}
.yb7{bottom:246.039600pt;}
.y71{bottom:277.719733pt;}
.y52{bottom:281.009733pt;}
.yb6{bottom:288.711600pt;}
.y70{bottom:295.053067pt;}
.y51{bottom:297.676400pt;}
.ya2{bottom:298.986960pt;}
.ya1{bottom:316.320293pt;}
.yb5{bottom:331.383600pt;}
.y6f{bottom:332.810000pt;}
.ya0{bottom:333.653627pt;}
.y6d{bottom:335.302267pt;}
.y50{bottom:345.444000pt;}
.y9f{bottom:350.986960pt;}
.y6e{bottom:352.914000pt;}
.y6c{bottom:355.406267pt;}
.y37{bottom:358.059867pt;}
.y4f{bottom:362.110667pt;}
.y7c{bottom:365.374933pt;}
.y9e{bottom:368.320293pt;}
.yb4{bottom:374.055600pt;}
.y7b{bottom:375.999067pt;}
.y4e{bottom:378.777333pt;}
.y9d{bottom:385.653627pt;}
.y76{bottom:385.829467pt;}
.yb3{bottom:395.383600pt;}
.y9c{bottom:420.320293pt;}
.y36{bottom:421.092400pt;}
.y4d{bottom:425.975200pt;}
.yb2{bottom:438.055600pt;}
.y35{bottom:438.425733pt;}
.y4c{bottom:442.641867pt;}
.y7a{bottom:453.136667pt;}
.yb1{bottom:459.383600pt;}
.y75{bottom:463.975200pt;}
.y65{bottom:473.542000pt;}
.yb0{bottom:480.711600pt;}
.y62{bottom:484.595200pt;}
.y96{bottom:487.205760pt;}
.y29{bottom:487.373067pt;}
.y4b{bottom:489.084000pt;}
.y64{bottom:493.646000pt;}
.y34{bottom:502.397733pt;}
.y95{bottom:504.539093pt;}
.y61{bottom:504.699200pt;}
.y28{bottom:504.706400pt;}
.y4a{bottom:505.750667pt;}
.y63{bottom:513.750000pt;}
.y33{bottom:519.731067pt;}
.y94{bottom:521.872427pt;}
.y49{bottom:522.417333pt;}
.yaf{bottom:523.383600pt;}
.y79{bottom:531.165467pt;}
.y48{bottom:539.084000pt;}
.y93{bottom:539.205760pt;}
.y27{bottom:539.373067pt;}
.y74{bottom:542.122400pt;}
.yae{bottom:544.711600pt;}
.yc3{bottom:549.016000pt;}
.y47{bottom:555.750667pt;}
.y26{bottom:556.706400pt;}
.yc2{bottom:570.344000pt;}
.y92{bottom:573.872427pt;}
.y25{bottom:574.039733pt;}
.y32{bottom:583.925733pt;}
.yad{bottom:587.383600pt;}
.y91{bottom:591.205760pt;}
.yc1{bottom:591.672000pt;}
.y31{bottom:601.259067pt;}
.y46{bottom:604.980533pt;}
.y90{bottom:608.539093pt;}
.y24{bottom:608.706400pt;}
.yac{bottom:608.711600pt;}
.y78{bottom:610.085467pt;}
.y30{bottom:618.592400pt;}
.y73{bottom:620.268267pt;}
.y45{bottom:621.647200pt;}
.y8f{bottom:625.872427pt;}
.y23{bottom:626.039733pt;}
.y69{bottom:627.978667pt;}
.y67{bottom:630.469600pt;}
.yc0{bottom:634.344000pt;}
.y8e{bottom:643.205760pt;}
.y22{bottom:643.373067pt;}
.y68{bottom:648.082667pt;}
.y66{bottom:650.573600pt;}
.yab{bottom:651.383600pt;}
.ybf{bottom:655.672000pt;}
.yd{bottom:666.743467pt;}
.y44{bottom:670.078800pt;}
.yaa{bottom:672.711600pt;}
.ybe{bottom:677.000000pt;}
.y8d{bottom:677.872427pt;}
.y21{bottom:678.039733pt;}
.y2f{bottom:682.408267pt;}
.y43{bottom:686.745467pt;}
.y77{bottom:688.510400pt;}
.y8c{bottom:695.205760pt;}
.y20{bottom:695.373067pt;}
.y72{bottom:698.414667pt;}
.yc{bottom:699.591467pt;}
.y2e{bottom:699.741600pt;}
.y42{bottom:703.412133pt;}
.y8b{bottom:712.539093pt;}
.ya9{bottom:715.383600pt;}
.y2d{bottom:717.074933pt;}
.ybd{bottom:719.672000pt;}
.y41{bottom:720.078800pt;}
.y8a{bottom:729.872427pt;}
.y1f{bottom:730.039733pt;}
.yb{bottom:732.439467pt;}
.ya8{bottom:736.711600pt;}
.ybc{bottom:741.000000pt;}
.y1e{bottom:747.373067pt;}
.ya7{bottom:758.039600pt;}
.y89{bottom:764.539093pt;}
.y1d{bottom:764.706400pt;}
.y40{bottom:767.082667pt;}
.y60{bottom:767.733467pt;}
.y5d{bottom:778.787333pt;}
.y1c{bottom:782.039733pt;}
.ybb{bottom:783.672000pt;}
.y3f{bottom:783.749333pt;}
.y5f{bottom:787.837467pt;}
.ya{bottom:795.852267pt;}
.y5c{bottom:798.891333pt;}
.y1b{bottom:799.373067pt;}
.ya6{bottom:800.711600pt;}
.yba{bottom:805.000000pt;}
.y5e{bottom:807.941467pt;}
.y88{bottom:808.076160pt;}
.y3e{bottom:831.485067pt;}
.y87{bottom:836.555893pt;}
.y3d{bottom:848.151733pt;}
.y9{bottom:859.264933pt;}
.y3c{bottom:864.818400pt;}
.y19{bottom:878.566400pt;}
.y2c{bottom:878.569867pt;}
.ya5{bottom:880.639333pt;}
.y5a{bottom:897.615200pt;}
.y85{bottom:903.640027pt;}
.y86{bottom:904.344960pt;}
.y3b{bottom:914.948533pt;}
.y1a{bottom:918.308533pt;}
.y8{bottom:922.677733pt;}
.y3a{bottom:932.281867pt;}
.y84{bottom:932.440027pt;}
.y39{bottom:949.615200pt;}
.yb9{bottom:956.391867pt;}
.y38{bottom:991.336000pt;}
.y7{bottom:1030.856800pt;}
.h14{height:24.000000pt;}
.h5{height:28.000000pt;}
.h9{height:32.000000pt;}
.hc{height:36.000000pt;}
.h8{height:40.000000pt;}
.h13{height:47.343200pt;}
.h7{height:48.000000pt;}
.h2{height:49.196800pt;}
.hd{height:52.128000pt;}
.h12{height:56.000000pt;}
.he{height:60.000000pt;}
.h11{height:64.000000pt;}
.ha{height:72.000000pt;}
.h4{height:83.024400pt;}
.h6{height:104.000000pt;}
.hf{height:148.532000pt;}
.h3{height:169.246800pt;}
.hb{height:301.696800pt;}
.h10{height:1077.967227pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700800pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:20.066400pt;}
.x2{left:44.157600pt;}
.xc{left:52.253867pt;}
.x32{left:59.156267pt;}
.xe{left:60.252667pt;}
.x4{left:61.781200pt;}
.xa{left:68.449200pt;}
.x2b{left:71.356800pt;}
.x2f{left:74.683600pt;}
.x5{left:80.215467pt;}
.xd{left:81.157600pt;}
.x33{left:82.100267pt;}
.xf{left:83.520800pt;}
.x35{left:85.704400pt;}
.x9{left:86.673200pt;}
.x6{left:106.887467pt;}
.x10{left:124.197867pt;}
.x30{left:133.686133pt;}
.xb{left:136.897200pt;}
.x39{left:155.806533pt;}
.x38{left:160.022533pt;}
.x26{left:183.773467pt;}
.x2c{left:186.023467pt;}
.x3a{left:193.382533pt;}
.x13{left:221.972933pt;}
.x17{left:223.190133pt;}
.x18{left:227.012800pt;}
.x3b{left:228.326933pt;}
.x11{left:233.234400pt;}
.x20{left:235.174533pt;}
.x12{left:244.388000pt;}
.x27{left:261.007867pt;}
.x31{left:264.381467pt;}
.x2d{left:298.363200pt;}
.x1d{left:313.187467pt;}
.x37{left:319.272133pt;}
.x22{left:326.744800pt;}
.x23{left:329.698667pt;}
.x1c{left:339.598933pt;}
.x7{left:365.157600pt;}
.x28{left:375.268267pt;}
.x21{left:394.679200pt;}
.x15{left:398.327200pt;}
.x19{left:402.149733pt;}
.x1b{left:403.713600pt;}
.x14{left:411.011733pt;}
.x1a{left:412.401600pt;}
.x16{left:413.791867pt;}
.x24{left:466.444000pt;}
.x25{left:486.426400pt;}
.x1f{left:491.805867pt;}
.x1e{left:494.586000pt;}
.x34{left:512.964800pt;}
.x2e{left:528.389733pt;}
.x29{left:568.757867pt;}
.x1{left:610.076800pt;}
.x2a{left:658.108133pt;}
.x36{left:756.813867pt;}
.x8{left:759.811200pt;}
}




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