
    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_d36d55aa3370d47676c5e9b5.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2f320c096faf5d9042a5dda0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_06f29b928936400064970e37.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_4b7b98156b89b356b0c2138a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.050293;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_994997f72f549984672cf5d9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_cfdb2a776422bd44a3d07f54.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_2a57cf976df25c3545000085.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.401855;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_9f01207664610fb9578e94f6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_92a8b5bed0ceedfe286e6cf9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_22734360eb3c1613471858fb.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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);}
.v1{vertical-align:-84.240000px;}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.ls4{letter-spacing:-1.008000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.008640px;}
.lsb{letter-spacing:0.017280px;}
.ls7{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.149760px;}
.ls3{letter-spacing:0.256200px;}
.ls1{letter-spacing:0.360000px;}
.ls9{letter-spacing:52.668000px;}
.ls8{letter-spacing:63.468000px;}
.lsa{letter-spacing:68.508000px;}
.ls5{letter-spacing:68.652000px;}
.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;}
}
.ws5{word-spacing:-54.000000px;}
.ws7{word-spacing:-19.457280px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.940000px;}
.ws6{word-spacing:-13.860000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._7{margin-left:-3.189600px;}
._0{margin-left:-1.134000px;}
._1{width:1.002000px;}
._b{width:2.916000px;}
._c{width:4.722000px;}
._d{width:5.760000px;}
._9{width:6.894000px;}
._8{width:7.902000px;}
._1c{width:9.096000px;}
._16{width:10.254000px;}
._11{width:11.340000px;}
._12{width:12.420000px;}
._15{width:13.900320px;}
._1d{width:16.326000px;}
._a{width:17.496000px;}
._14{width:19.780560px;}
._13{width:21.095280px;}
._10{width:23.004000px;}
._1b{width:24.894000px;}
._17{width:30.132000px;}
._e{width:34.290000px;}
._f{width:35.364000px;}
._1a{width:36.774000px;}
._3{width:59.652000px;}
._4{width:76.500000px;}
._19{width:110.862000px;}
._18{width:111.960000px;}
._5{width:202.500000px;}
._2{width:1037.280000px;}
._6{width:1224.300000px;}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:30.240000px;}
.fs5{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs9{font-size:77.904000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:90.000000px;}
.fs2{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:2.880000px;}
.y40{bottom:3.060000px;}
.y4{bottom:15.480000px;}
.y41{bottom:15.660000px;}
.y2{bottom:18.720000px;}
.y3f{bottom:18.900000px;}
.y5{bottom:36.720000px;}
.y42{bottom:39.780000px;}
.y3c{bottom:44.670000px;}
.y1{bottom:57.600000px;}
.y3e{bottom:60.660000px;}
.y3b{bottom:64.470000px;}
.y30{bottom:99.720000px;}
.y33{bottom:108.720000px;}
.y76{bottom:109.980000px;}
.y38{bottom:113.070000px;}
.y2f{bottom:117.720000px;}
.y32{bottom:126.540000px;}
.y75{bottom:128.340000px;}
.ya5{bottom:128.520000px;}
.y37{bottom:133.050000px;}
.y2e{bottom:135.540000px;}
.y31{bottom:144.360000px;}
.y36{bottom:152.850000px;}
.y2d{bottom:153.360000px;}
.y74{bottom:155.520000px;}
.y2c{bottom:171.180000px;}
.y73{bottom:173.340000px;}
.ya4{bottom:177.300000px;}
.y35{bottom:183.135000px;}
.y2b{bottom:189.000000px;}
.y72{bottom:193.140000px;}
.y2a{bottom:209.010000px;}
.y71{bottom:226.110000px;}
.y29{bottom:243.030000px;}
.y70{bottom:243.930000px;}
.y34{bottom:266.220000px;}
.y6f{bottom:271.650000px;}
.y28{bottom:273.810000px;}
.ya3{bottom:274.890000px;}
.y6e{bottom:289.650000px;}
.y3d{bottom:290.910000px;}
.y27{bottom:300.090000px;}
.y6d{bottom:316.470000px;}
.ya2{bottom:323.850000px;}
.y26{bottom:326.370000px;}
.y3a{bottom:330.690000px;}
.y6c{bottom:335.010000px;}
.y25{bottom:352.830000px;}
.y6b{bottom:354.090000px;}
.y39{bottom:359.490000px;}
.ya1{bottom:371.370000px;}
.y6a{bottom:372.990000px;}
.y24{bottom:379.110000px;}
.ya0{bottom:389.190000px;}
.y69{bottom:391.710000px;}
.y23{bottom:405.390000px;}
.y9f{bottom:407.010000px;}
.y68{bottom:410.610000px;}
.y9e{bottom:424.830000px;}
.y67{bottom:428.970000px;}
.y22{bottom:431.670000px;}
.y9d{bottom:442.875000px;}
.y66{bottom:457.275000px;}
.y21{bottom:458.175000px;}
.y9c{bottom:460.695000px;}
.y9b{bottom:478.515000px;}
.y65{bottom:484.095000px;}
.y20{bottom:484.455000px;}
.y9a{bottom:496.335000px;}
.y64{bottom:501.915000px;}
.y1f{bottom:510.735000px;}
.y99{bottom:514.155000px;}
.y63{bottom:519.735000px;}
.y98{bottom:531.975000px;}
.y1e{bottom:537.015000px;}
.y62{bottom:539.535000px;}
.y97{bottom:549.975000px;}
.y1d{bottom:567.795000px;}
.y61{bottom:572.475000px;}
.y96{bottom:585.615000px;}
.y1c{bottom:589.755000px;}
.y60{bottom:590.295000px;}
.y95{bottom:603.435000px;}
.y5f{bottom:608.115000px;}
.y94{bottom:623.235000px;}
.y1b{bottom:623.595000px;}
.y5e{bottom:625.935000px;}
.y5d{bottom:643.755000px;}
.y1a{bottom:654.375000px;}
.y93{bottom:656.175000px;}
.y5c{bottom:670.755000px;}
.y92{bottom:673.995000px;}
.y19{bottom:685.185000px;}
.y5b{bottom:689.505000px;}
.y91{bottom:691.845000px;}
.y18{bottom:699.585000px;}
.y5a{bottom:708.405000px;}
.y90{bottom:709.665000px;}
.y17{bottom:721.005000px;}
.y59{bottom:727.305000px;}
.y8f{bottom:727.485000px;}
.y58{bottom:746.025000px;}
.y8e{bottom:754.305000px;}
.y16{bottom:771.585000px;}
.y8d{bottom:772.305000px;}
.y57{bottom:773.745000px;}
.y8c{bottom:792.105000px;}
.y15{bottom:799.305000px;}
.y56{bottom:800.745000px;}
.y55{bottom:818.565000px;}
.y8b{bottom:824.865000px;}
.y54{bottom:836.385000px;}
.y8a{bottom:842.685000px;}
.y14{bottom:845.565000px;}
.y53{bottom:854.205000px;}
.y89{bottom:869.685000px;}
.y13{bottom:870.765000px;}
.y52{bottom:874.005000px;}
.y88{bottom:888.405000px;}
.y12{bottom:890.565000px;}
.y51{bottom:906.765000px;}
.y87{bottom:907.305000px;}
.y11{bottom:911.130000px;}
.y50{bottom:924.810000px;}
.y86{bottom:926.250000px;}
.y10{bottom:931.830000px;}
.y4f{bottom:942.630000px;}
.y85{bottom:944.610000px;}
.yf{bottom:952.170000px;}
.y84{bottom:962.790000px;}
.y4e{bottom:969.450000px;}
.y83{bottom:980.610000px;}
.y4d{bottom:988.350000px;}
.ye{bottom:993.930000px;}
.y82{bottom:999.510000px;}
.y4c{bottom:1007.250000px;}
.yd{bottom:1007.790000px;}
.y81{bottom:1018.410000px;}
.yc{bottom:1021.650000px;}
.y4b{bottom:1025.970000px;}
.yb{bottom:1035.510000px;}
.y80{bottom:1037.130000px;}
.y4a{bottom:1044.870000px;}
.ya{bottom:1054.050000px;}
.y7f{bottom:1056.030000px;}
.y49{bottom:1072.590000px;}
.y7e{bottom:1074.390000px;}
.y9{bottom:1083.210000px;}
.y7d{bottom:1090.050000px;}
.y48{bottom:1099.410000px;}
.y7c{bottom:1102.470000px;}
.y8{bottom:1110.930000px;}
.y47{bottom:1117.230000px;}
.y7b{bottom:1120.470000px;}
.y46{bottom:1135.050000px;}
.y7{bottom:1138.830000px;}
.y7a{bottom:1139.190000px;}
.y45{bottom:1153.080000px;}
.y79{bottom:1158.120000px;}
.y6{bottom:1170.540000px;}
.y44{bottom:1170.900000px;}
.y78{bottom:1176.840000px;}
.y43{bottom:1190.700000px;}
.y77{bottom:1195.740000px;}
.h16{height:29.678906px;}
.h2{height:30.955500px;}
.h13{height:31.135500px;}
.h8{height:40.985156px;}
.h3{height:52.998047px;}
.h14{height:55.503491px;}
.h15{height:56.214844px;}
.h12{height:58.621992px;}
.h9{height:58.651172px;}
.ha{height:60.226875px;}
.hb{height:65.010937px;}
.h4{height:65.884219px;}
.he{height:66.757500px;}
.hd{height:72.326250px;}
.hf{height:78.367500px;}
.h11{height:78.512625px;}
.hc{height:82.676953px;}
.h6{height:84.898125px;}
.h7{height:90.703125px;}
.h5{height:126.984375px;}
.h10{height:210.420000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:80.310000px;}
.w2{width:722.115000px;}
.w4{width:811.620000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.635500px;}
.x13{left:10.800000px;}
.x12{left:40.140000px;}
.x1{left:45.364500px;}
.x14{left:50.940000px;}
.x5{left:54.000000px;}
.xc{left:56.160000px;}
.x15{left:80.856000px;}
.x16{left:108.036000px;}
.xd{left:213.150000px;}
.x2{left:222.370500px;}
.x7{left:270.615000px;}
.x9{left:272.595000px;}
.xa{left:287.715000px;}
.x10{left:324.075000px;}
.xe{left:360.075000px;}
.x8{left:364.395000px;}
.xf{left:368.715000px;}
.xb{left:378.795000px;}
.x6{left:446.505000px;}
.x11{left:473.505000px;}
.x17{left:500.505000px;}
.x18{left:527.505000px;}
.x4{left:767.490000px;}
@media print{
.v1{vertical-align:-74.880000pt;}
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.ls4{letter-spacing:-0.896000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.007680pt;}
.lsb{letter-spacing:0.015360pt;}
.ls7{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls3{letter-spacing:0.227733pt;}
.ls1{letter-spacing:0.320000pt;}
.ls9{letter-spacing:46.816000pt;}
.ls8{letter-spacing:56.416000pt;}
.lsa{letter-spacing:60.896000pt;}
.ls5{letter-spacing:61.024000pt;}
.ws5{word-spacing:-48.000000pt;}
.ws7{word-spacing:-17.295360pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.320000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._7{margin-left:-2.835200pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.890667pt;}
._b{width:2.592000pt;}
._c{width:4.197333pt;}
._d{width:5.120000pt;}
._9{width:6.128000pt;}
._8{width:7.024000pt;}
._1c{width:8.085333pt;}
._16{width:9.114667pt;}
._11{width:10.080000pt;}
._12{width:11.040000pt;}
._15{width:12.355840pt;}
._1d{width:14.512000pt;}
._a{width:15.552000pt;}
._14{width:17.582720pt;}
._13{width:18.751360pt;}
._10{width:20.448000pt;}
._1b{width:22.128000pt;}
._17{width:26.784000pt;}
._e{width:30.480000pt;}
._f{width:31.434667pt;}
._1a{width:32.688000pt;}
._3{width:53.024000pt;}
._4{width:68.000000pt;}
._19{width:98.544000pt;}
._18{width:99.520000pt;}
._5{width:180.000000pt;}
._2{width:922.026667pt;}
._6{width:1088.266667pt;}
.fsa{font-size:26.880000pt;}
.fs5{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs9{font-size:69.248000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:80.000000pt;}
.fs2{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.560000pt;}
.y40{bottom:2.720000pt;}
.y4{bottom:13.760000pt;}
.y41{bottom:13.920000pt;}
.y2{bottom:16.640000pt;}
.y3f{bottom:16.800000pt;}
.y5{bottom:32.640000pt;}
.y42{bottom:35.360000pt;}
.y3c{bottom:39.706667pt;}
.y1{bottom:51.200000pt;}
.y3e{bottom:53.920000pt;}
.y3b{bottom:57.306667pt;}
.y30{bottom:88.640000pt;}
.y33{bottom:96.640000pt;}
.y76{bottom:97.760000pt;}
.y38{bottom:100.506667pt;}
.y2f{bottom:104.640000pt;}
.y32{bottom:112.480000pt;}
.y75{bottom:114.080000pt;}
.ya5{bottom:114.240000pt;}
.y37{bottom:118.266667pt;}
.y2e{bottom:120.480000pt;}
.y31{bottom:128.320000pt;}
.y36{bottom:135.866667pt;}
.y2d{bottom:136.320000pt;}
.y74{bottom:138.240000pt;}
.y2c{bottom:152.160000pt;}
.y73{bottom:154.080000pt;}
.ya4{bottom:157.600000pt;}
.y35{bottom:162.786667pt;}
.y2b{bottom:168.000000pt;}
.y72{bottom:171.680000pt;}
.y2a{bottom:185.786667pt;}
.y71{bottom:200.986667pt;}
.y29{bottom:216.026667pt;}
.y70{bottom:216.826667pt;}
.y34{bottom:236.640000pt;}
.y6f{bottom:241.466667pt;}
.y28{bottom:243.386667pt;}
.ya3{bottom:244.346667pt;}
.y6e{bottom:257.466667pt;}
.y3d{bottom:258.586667pt;}
.y27{bottom:266.746667pt;}
.y6d{bottom:281.306667pt;}
.ya2{bottom:287.866667pt;}
.y26{bottom:290.106667pt;}
.y3a{bottom:293.946667pt;}
.y6c{bottom:297.786667pt;}
.y25{bottom:313.626667pt;}
.y6b{bottom:314.746667pt;}
.y39{bottom:319.546667pt;}
.ya1{bottom:330.106667pt;}
.y6a{bottom:331.546667pt;}
.y24{bottom:336.986667pt;}
.ya0{bottom:345.946667pt;}
.y69{bottom:348.186667pt;}
.y23{bottom:360.346667pt;}
.y9f{bottom:361.786667pt;}
.y68{bottom:364.986667pt;}
.y9e{bottom:377.626667pt;}
.y67{bottom:381.306667pt;}
.y22{bottom:383.706667pt;}
.y9d{bottom:393.666667pt;}
.y66{bottom:406.466667pt;}
.y21{bottom:407.266667pt;}
.y9c{bottom:409.506667pt;}
.y9b{bottom:425.346667pt;}
.y65{bottom:430.306667pt;}
.y20{bottom:430.626667pt;}
.y9a{bottom:441.186667pt;}
.y64{bottom:446.146667pt;}
.y1f{bottom:453.986667pt;}
.y99{bottom:457.026667pt;}
.y63{bottom:461.986667pt;}
.y98{bottom:472.866667pt;}
.y1e{bottom:477.346667pt;}
.y62{bottom:479.586667pt;}
.y97{bottom:488.866667pt;}
.y1d{bottom:504.706667pt;}
.y61{bottom:508.866667pt;}
.y96{bottom:520.546667pt;}
.y1c{bottom:524.226667pt;}
.y60{bottom:524.706667pt;}
.y95{bottom:536.386667pt;}
.y5f{bottom:540.546667pt;}
.y94{bottom:553.986667pt;}
.y1b{bottom:554.306667pt;}
.y5e{bottom:556.386667pt;}
.y5d{bottom:572.226667pt;}
.y1a{bottom:581.666667pt;}
.y93{bottom:583.266667pt;}
.y5c{bottom:596.226667pt;}
.y92{bottom:599.106667pt;}
.y19{bottom:609.053333pt;}
.y5b{bottom:612.893333pt;}
.y91{bottom:614.973333pt;}
.y18{bottom:621.853333pt;}
.y5a{bottom:629.693333pt;}
.y90{bottom:630.813333pt;}
.y17{bottom:640.893333pt;}
.y59{bottom:646.493333pt;}
.y8f{bottom:646.653333pt;}
.y58{bottom:663.133333pt;}
.y8e{bottom:670.493333pt;}
.y16{bottom:685.853333pt;}
.y8d{bottom:686.493333pt;}
.y57{bottom:687.773333pt;}
.y8c{bottom:704.093333pt;}
.y15{bottom:710.493333pt;}
.y56{bottom:711.773333pt;}
.y55{bottom:727.613333pt;}
.y8b{bottom:733.213333pt;}
.y54{bottom:743.453333pt;}
.y8a{bottom:749.053333pt;}
.y14{bottom:751.613333pt;}
.y53{bottom:759.293333pt;}
.y89{bottom:773.053333pt;}
.y13{bottom:774.013333pt;}
.y52{bottom:776.893333pt;}
.y88{bottom:789.693333pt;}
.y12{bottom:791.613333pt;}
.y51{bottom:806.013333pt;}
.y87{bottom:806.493333pt;}
.y11{bottom:809.893333pt;}
.y50{bottom:822.053333pt;}
.y86{bottom:823.333333pt;}
.y10{bottom:828.293333pt;}
.y4f{bottom:837.893333pt;}
.y85{bottom:839.653333pt;}
.yf{bottom:846.373333pt;}
.y84{bottom:855.813333pt;}
.y4e{bottom:861.733333pt;}
.y83{bottom:871.653333pt;}
.y4d{bottom:878.533333pt;}
.ye{bottom:883.493333pt;}
.y82{bottom:888.453333pt;}
.y4c{bottom:895.333333pt;}
.yd{bottom:895.813333pt;}
.y81{bottom:905.253333pt;}
.yc{bottom:908.133333pt;}
.y4b{bottom:911.973333pt;}
.yb{bottom:920.453333pt;}
.y80{bottom:921.893333pt;}
.y4a{bottom:928.773333pt;}
.ya{bottom:936.933333pt;}
.y7f{bottom:938.693333pt;}
.y49{bottom:953.413333pt;}
.y7e{bottom:955.013333pt;}
.y9{bottom:962.853333pt;}
.y7d{bottom:968.933333pt;}
.y48{bottom:977.253333pt;}
.y7c{bottom:979.973333pt;}
.y8{bottom:987.493333pt;}
.y47{bottom:993.093333pt;}
.y7b{bottom:995.973333pt;}
.y46{bottom:1008.933333pt;}
.y7{bottom:1012.293333pt;}
.y7a{bottom:1012.613333pt;}
.y45{bottom:1024.960000pt;}
.y79{bottom:1029.440000pt;}
.y6{bottom:1040.480000pt;}
.y44{bottom:1040.800000pt;}
.y78{bottom:1046.080000pt;}
.y43{bottom:1058.400000pt;}
.y77{bottom:1062.880000pt;}
.h16{height:26.381250pt;}
.h2{height:27.516000pt;}
.h13{height:27.676000pt;}
.h8{height:36.431250pt;}
.h3{height:47.109375pt;}
.h14{height:49.336436pt;}
.h15{height:49.968750pt;}
.h12{height:52.108438pt;}
.h9{height:52.134375pt;}
.ha{height:53.535000pt;}
.hb{height:57.787500pt;}
.h4{height:58.563750pt;}
.he{height:59.340000pt;}
.hd{height:64.290000pt;}
.hf{height:69.660000pt;}
.h11{height:69.789000pt;}
.hc{height:73.490625pt;}
.h6{height:75.465000pt;}
.h7{height:80.625000pt;}
.h5{height:112.875000pt;}
.h10{height:187.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:71.386667pt;}
.w2{width:641.880000pt;}
.w4{width:721.440000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.676000pt;}
.x13{left:9.600000pt;}
.x12{left:35.680000pt;}
.x1{left:40.324000pt;}
.x14{left:45.280000pt;}
.x5{left:48.000000pt;}
.xc{left:49.920000pt;}
.x15{left:71.872000pt;}
.x16{left:96.032000pt;}
.xd{left:189.466667pt;}
.x2{left:197.662667pt;}
.x7{left:240.546667pt;}
.x9{left:242.306667pt;}
.xa{left:255.746667pt;}
.x10{left:288.066667pt;}
.xe{left:320.066667pt;}
.x8{left:323.906667pt;}
.xf{left:327.746667pt;}
.xb{left:336.706667pt;}
.x6{left:396.893333pt;}
.x11{left:420.893333pt;}
.x17{left:444.893333pt;}
.x18{left:468.893333pt;}
.x4{left:682.213333pt;}
}




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