
    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_cc0928996dbb5718a2b721f4.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_c10c712e96fa787419f6059f.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_9f6e58d72b8940c3aff18562.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_579a54418a76ec5200663949.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914551;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_8786dcf80a55d740ab0d5c82.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_6832a968a8ccc2dba17d7e02.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_9ed9e49bea84988fe713ab8c.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6b57f9e0431f9591ade76e0f.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls9{letter-spacing:-1.008000px;}
.lse{letter-spacing:-0.846000px;}
.ls6{letter-spacing:-0.792000px;}
.lsa{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.720000px;}
.ls3{letter-spacing:1.049760px;}
.ls11{letter-spacing:25.308000px;}
.lsc{letter-spacing:28.062720px;}
.ls10{letter-spacing:52.668000px;}
.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:-21.060000px;}
.ws8{word-spacing:-19.457280px;}
.wsa{word-spacing:-19.440000px;}
.wsb{word-spacing:-19.431360px;}
.ws1{word-spacing:-17.208000px;}
.ws6{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.840000px;}
.ws2{word-spacing:-14.940000px;}
.wsd{word-spacing:-13.860000px;}
.ws0{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.284000px;}
.ws5{word-spacing:-11.160000px;}
.ws4{word-spacing:-10.440000px;}
.ws9{word-spacing:0.000000px;}
._2{margin-left:-2.160000px;}
._0{margin-left:-1.026000px;}
._1{width:1.146000px;}
._8{width:2.183760px;}
._a{width:3.465600px;}
._3{width:4.504320px;}
._5{width:5.557680px;}
._6{width:6.628560px;}
._4{width:7.698240px;}
._18{width:9.288000px;}
._f{width:11.016000px;}
._7{width:12.370320px;}
._9{width:13.484640px;}
._19{width:14.760000px;}
._d{width:15.858000px;}
._10{width:17.550000px;}
._e{width:19.278000px;}
._16{width:20.952000px;}
._b{width:21.991680px;}
._c{width:23.007600px;}
._1d{width:24.300000px;}
._11{width:25.542000px;}
._12{width:26.676000px;}
._15{width:28.458000px;}
._13{width:30.024000px;}
._14{width:31.320000px;}
._17{width:32.580000px;}
._1a{width:34.110000px;}
._1b{width:40.662000px;}
._1c{width:42.012000px;}
._20{width:49.950000px;}
._1e{width:57.780000px;}
._1f{width:59.022000px;}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc7{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs7{font-size:87.120000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y3f{bottom:10.620000px;}
.y4{bottom:15.660000px;}
.y2{bottom:18.900000px;}
.y3e{bottom:30.600000px;}
.y5{bottom:39.780000px;}
.y1{bottom:60.660000px;}
.y3b{bottom:79.200000px;}
.y3a{bottom:99.210000px;}
.y2d{bottom:105.660000px;}
.y2e{bottom:114.120000px;}
.yaf{bottom:117.180000px;}
.ybe{bottom:118.080000px;}
.y39{bottom:119.010000px;}
.y2c{bottom:132.480000px;}
.yae{bottom:135.000000px;}
.y78{bottom:136.080000px;}
.y38{bottom:138.810000px;}
.y3d{bottom:144.720000px;}
.yad{bottom:153.000000px;}
.y77{bottom:153.900000px;}
.y37{bottom:158.610000px;}
.y2b{bottom:159.480000px;}
.yac{bottom:170.820000px;}
.y76{bottom:171.720000px;}
.y3c{bottom:173.520000px;}
.y36{bottom:178.410000px;}
.y2a{bottom:186.300000px;}
.yab{bottom:188.640000px;}
.y75{bottom:189.540000px;}
.y35{bottom:198.390000px;}
.yaa{bottom:206.490000px;}
.y74{bottom:207.390000px;}
.y29{bottom:213.150000px;}
.y34{bottom:218.190000px;}
.ya9{bottom:224.310000px;}
.y73{bottom:225.210000px;}
.y33{bottom:237.990000px;}
.y28{bottom:239.970000px;}
.ya8{bottom:242.310000px;}
.y72{bottom:243.210000px;}
.y32{bottom:257.790000px;}
.ya7{bottom:260.130000px;}
.y71{bottom:261.030000px;}
.y27{bottom:266.790000px;}
.ye2{bottom:269.130000px;}
.y31{bottom:277.590000px;}
.ya6{bottom:277.950000px;}
.y70{bottom:278.850000px;}
.ye1{bottom:286.950000px;}
.y26{bottom:293.610000px;}
.ya5{bottom:295.770000px;}
.y6f{bottom:296.670000px;}
.y30{bottom:297.570000px;}
.ye0{bottom:304.770000px;}
.ya4{bottom:313.590000px;}
.y6e{bottom:314.490000px;}
.ybd{bottom:316.470000px;}
.y2f{bottom:318.810000px;}
.ydf{bottom:322.590000px;}
.y25{bottom:329.430000px;}
.ya3{bottom:331.410000px;}
.y6d{bottom:332.490000px;}
.yde{bottom:340.410000px;}
.y24{bottom:347.250000px;}
.ya2{bottom:349.410000px;}
.y6c{bottom:350.310000px;}
.ydd{bottom:358.410000px;}
.y23{bottom:366.870000px;}
.ya1{bottom:367.230000px;}
.y6b{bottom:368.130000px;}
.ydc{bottom:376.230000px;}
.ya0{bottom:385.050000px;}
.y6a{bottom:385.950000px;}
.y22{bottom:390.630000px;}
.ydb{bottom:394.050000px;}
.y9f{bottom:402.870000px;}
.y69{bottom:405.930000px;}
.yda{bottom:411.870000px;}
.y21{bottom:414.570000px;}
.y9e{bottom:420.690000px;}
.yd9{bottom:429.690000px;}
.y20{bottom:438.330000px;}
.y9d{bottom:438.690000px;}
.y68{bottom:438.870000px;}
.yd8{bottom:447.735000px;}
.y67{bottom:456.555000px;}
.y1f{bottom:462.135000px;}
.yd7{bottom:465.555000px;}
.y66{bottom:474.375000px;}
.yd6{bottom:483.375000px;}
.y1e{bottom:485.715000px;}
.y65{bottom:492.195000px;}
.yd5{bottom:501.195000px;}
.y1d{bottom:507.675000px;}
.y64{bottom:510.015000px;}
.yd4{bottom:519.015000px;}
.y63{bottom:527.835000px;}
.y9c{bottom:529.995000px;}
.y1c{bottom:533.955000px;}
.yd3{bottom:536.835000px;}
.y62{bottom:545.835000px;}
.yd2{bottom:554.835000px;}
.y9b{bottom:562.755000px;}
.y61{bottom:563.655000px;}
.y1b{bottom:564.735000px;}
.yd1{bottom:572.655000px;}
.y9a{bottom:580.575000px;}
.y60{bottom:581.475000px;}
.yd0{bottom:590.475000px;}
.y99{bottom:598.395000px;}
.y5f{bottom:599.295000px;}
.y1a{bottom:604.515000px;}
.ycf{bottom:608.295000px;}
.y98{bottom:616.215000px;}
.y5e{bottom:617.115000px;}
.yce{bottom:626.115000px;}
.y19{bottom:633.855000px;}
.y97{bottom:634.035000px;}
.y5d{bottom:635.115000px;}
.ycd{bottom:644.115000px;}
.y96{bottom:652.035000px;}
.y5c{bottom:652.935000px;}
.ycc{bottom:661.935000px;}
.y18{bottom:664.815000px;}
.y95{bottom:669.855000px;}
.y5b{bottom:670.755000px;}
.ycb{bottom:679.785000px;}
.y94{bottom:687.705000px;}
.y5a{bottom:688.605000px;}
.y17{bottom:695.625000px;}
.yca{bottom:697.605000px;}
.y93{bottom:705.525000px;}
.y59{bottom:706.425000px;}
.yc9{bottom:715.425000px;}
.y92{bottom:723.345000px;}
.y58{bottom:724.245000px;}
.y16{bottom:726.405000px;}
.yc8{bottom:733.245000px;}
.y91{bottom:741.165000px;}
.ybc{bottom:742.245000px;}
.y57{bottom:751.245000px;}
.y90{bottom:759.165000px;}
.y15{bottom:762.765000px;}
.y56{bottom:769.065000px;}
.y8f{bottom:776.985000px;}
.y55{bottom:786.885000px;}
.y8e{bottom:794.805000px;}
.y14{bottom:804.525000px;}
.y54{bottom:804.705000px;}
.y8d{bottom:812.625000px;}
.y53{bottom:822.525000px;}
.y8c{bottom:830.445000px;}
.y13{bottom:832.245000px;}
.y52{bottom:840.345000px;}
.y8b{bottom:848.445000px;}
.y51{bottom:858.345000px;}
.y12{bottom:860.325000px;}
.y8a{bottom:866.265000px;}
.y50{bottom:876.165000px;}
.y11{bottom:883.185000px;}
.y89{bottom:884.085000px;}
.y4f{bottom:893.985000px;}
.y88{bottom:901.905000px;}
.y10{bottom:904.965000px;}
.y4e{bottom:911.850000px;}
.y87{bottom:919.770000px;}
.yf{bottom:926.790000px;}
.y4d{bottom:929.670000px;}
.y86{bottom:937.590000px;}
.yc7{bottom:947.670000px;}
.ye{bottom:948.210000px;}
.ybb{bottom:949.650000px;}
.y85{bottom:955.590000px;}
.y4c{bottom:956.670000px;}
.yc6{bottom:965.490000px;}
.yd{bottom:970.170000px;}
.y84{bottom:973.410000px;}
.y4b{bottom:974.490000px;}
.yba{bottom:982.410000px;}
.yc5{bottom:983.310000px;}
.y83{bottom:991.230000px;}
.yc{bottom:992.310000px;}
.yb9{bottom:1000.230000px;}
.yc4{bottom:1001.130000px;}
.y82{bottom:1009.050000px;}
.y4a{bottom:1010.130000px;}
.yb8{bottom:1018.050000px;}
.yc3{bottom:1018.950000px;}
.yb{bottom:1026.510000px;}
.y81{bottom:1026.870000px;}
.y49{bottom:1027.950000px;}
.yb7{bottom:1035.870000px;}
.yc2{bottom:1036.770000px;}
.ya{bottom:1038.570000px;}
.y80{bottom:1044.870000px;}
.y48{bottom:1045.770000px;}
.y9{bottom:1050.630000px;}
.yb6{bottom:1053.870000px;}
.yc1{bottom:1054.770000px;}
.y8{bottom:1062.690000px;}
.y47{bottom:1063.770000px;}
.yb5{bottom:1071.690000px;}
.yc0{bottom:1072.590000px;}
.y7{bottom:1077.270000px;}
.y7f{bottom:1080.510000px;}
.y46{bottom:1081.590000px;}
.yb4{bottom:1089.510000px;}
.ybf{bottom:1092.390000px;}
.y7e{bottom:1098.330000px;}
.y45{bottom:1099.410000px;}
.y6{bottom:1102.830000px;}
.yb3{bottom:1107.330000px;}
.y7d{bottom:1116.150000px;}
.y44{bottom:1117.230000px;}
.yb2{bottom:1125.150000px;}
.y7c{bottom:1133.970000px;}
.y43{bottom:1135.050000px;}
.yb1{bottom:1142.970000px;}
.y7b{bottom:1152.000000px;}
.y42{bottom:1153.080000px;}
.yb0{bottom:1161.000000px;}
.y41{bottom:1170.900000px;}
.y7a{bottom:1178.820000px;}
.y40{bottom:1190.700000px;}
.y79{bottom:1196.640000px;}
.h2{height:31.135500px;}
.h17{height:37.731445px;}
.h7{height:40.985156px;}
.h3{height:52.998047px;}
.h10{height:54.421875px;}
.h16{height:55.503491px;}
.h13{height:58.621992px;}
.h9{height:58.651172px;}
.h14{height:58.763250px;}
.ha{height:60.226875px;}
.he{height:65.010937px;}
.h4{height:65.884219px;}
.hf{height:66.757500px;}
.hd{height:72.326250px;}
.h8{height:72.562500px;}
.h12{height:78.367500px;}
.h15{height:80.949375px;}
.hb{height:82.676953px;}
.h5{height:84.898125px;}
.hc{height:87.800625px;}
.h6{height:90.703125px;}
.h11{height:346.320000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:80.310000px;}
.w2{width:722.115000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.640000px;}
.x16{left:10.800000px;}
.x15{left:39.240000px;}
.x1{left:45.364500px;}
.x17{left:50.040000px;}
.x6{left:54.000000px;}
.x12{left:55.800000px;}
.xc{left:59.220000px;}
.x11{left:63.720000px;}
.x18{left:80.856000px;}
.xf{left:180.210000px;}
.xe{left:206.850000px;}
.x2{left:222.370500px;}
.x10{left:230.250000px;}
.x3{left:271.330500px;}
.x9{left:283.575000px;}
.xa{left:288.435000px;}
.x8{left:300.495000px;}
.x13{left:341.355000px;}
.x7{left:365.295000px;}
.xb{left:378.795000px;}
.xd{left:394.635000px;}
.x14{left:473.505000px;}
.x19{left:500.505000px;}
.x1a{left:527.505000px;}
.x4{left:767.490000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls9{letter-spacing:-0.896000pt;}
.lse{letter-spacing:-0.752000pt;}
.ls6{letter-spacing:-0.704000pt;}
.lsa{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.933120pt;}
.ls11{letter-spacing:22.496000pt;}
.lsc{letter-spacing:24.944640pt;}
.ls10{letter-spacing:46.816000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws8{word-spacing:-17.295360pt;}
.wsa{word-spacing:-17.280000pt;}
.wsb{word-spacing:-17.272320pt;}
.ws1{word-spacing:-15.296000pt;}
.ws6{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.280000pt;}
.wsd{word-spacing:-12.320000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.808000pt;}
.ws5{word-spacing:-9.920000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws9{word-spacing:0.000000pt;}
._2{margin-left:-1.920000pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.018667pt;}
._8{width:1.941120pt;}
._a{width:3.080533pt;}
._3{width:4.003840pt;}
._5{width:4.940160pt;}
._6{width:5.892053pt;}
._4{width:6.842880pt;}
._18{width:8.256000pt;}
._f{width:9.792000pt;}
._7{width:10.995840pt;}
._9{width:11.986347pt;}
._19{width:13.120000pt;}
._d{width:14.096000pt;}
._10{width:15.600000pt;}
._e{width:17.136000pt;}
._16{width:18.624000pt;}
._b{width:19.548160pt;}
._c{width:20.451200pt;}
._1d{width:21.600000pt;}
._11{width:22.704000pt;}
._12{width:23.712000pt;}
._15{width:25.296000pt;}
._13{width:26.688000pt;}
._14{width:27.840000pt;}
._17{width:28.960000pt;}
._1a{width:30.320000pt;}
._1b{width:36.144000pt;}
._1c{width:37.344000pt;}
._20{width:44.400000pt;}
._1e{width:51.360000pt;}
._1f{width:52.464000pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs7{font-size:77.440000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y3f{bottom:9.440000pt;}
.y4{bottom:13.920000pt;}
.y2{bottom:16.800000pt;}
.y3e{bottom:27.200000pt;}
.y5{bottom:35.360000pt;}
.y1{bottom:53.920000pt;}
.y3b{bottom:70.400000pt;}
.y3a{bottom:88.186667pt;}
.y2d{bottom:93.920000pt;}
.y2e{bottom:101.440000pt;}
.yaf{bottom:104.160000pt;}
.ybe{bottom:104.960000pt;}
.y39{bottom:105.786667pt;}
.y2c{bottom:117.760000pt;}
.yae{bottom:120.000000pt;}
.y78{bottom:120.960000pt;}
.y38{bottom:123.386667pt;}
.y3d{bottom:128.640000pt;}
.yad{bottom:136.000000pt;}
.y77{bottom:136.800000pt;}
.y37{bottom:140.986667pt;}
.y2b{bottom:141.760000pt;}
.yac{bottom:151.840000pt;}
.y76{bottom:152.640000pt;}
.y3c{bottom:154.240000pt;}
.y36{bottom:158.586667pt;}
.y2a{bottom:165.600000pt;}
.yab{bottom:167.680000pt;}
.y75{bottom:168.480000pt;}
.y35{bottom:176.346667pt;}
.yaa{bottom:183.546667pt;}
.y74{bottom:184.346667pt;}
.y29{bottom:189.466667pt;}
.y34{bottom:193.946667pt;}
.ya9{bottom:199.386667pt;}
.y73{bottom:200.186667pt;}
.y33{bottom:211.546667pt;}
.y28{bottom:213.306667pt;}
.ya8{bottom:215.386667pt;}
.y72{bottom:216.186667pt;}
.y32{bottom:229.146667pt;}
.ya7{bottom:231.226667pt;}
.y71{bottom:232.026667pt;}
.y27{bottom:237.146667pt;}
.ye2{bottom:239.226667pt;}
.y31{bottom:246.746667pt;}
.ya6{bottom:247.066667pt;}
.y70{bottom:247.866667pt;}
.ye1{bottom:255.066667pt;}
.y26{bottom:260.986667pt;}
.ya5{bottom:262.906667pt;}
.y6f{bottom:263.706667pt;}
.y30{bottom:264.506667pt;}
.ye0{bottom:270.906667pt;}
.ya4{bottom:278.746667pt;}
.y6e{bottom:279.546667pt;}
.ybd{bottom:281.306667pt;}
.y2f{bottom:283.386667pt;}
.ydf{bottom:286.746667pt;}
.y25{bottom:292.826667pt;}
.ya3{bottom:294.586667pt;}
.y6d{bottom:295.546667pt;}
.yde{bottom:302.586667pt;}
.y24{bottom:308.666667pt;}
.ya2{bottom:310.586667pt;}
.y6c{bottom:311.386667pt;}
.ydd{bottom:318.586667pt;}
.y23{bottom:326.106667pt;}
.ya1{bottom:326.426667pt;}
.y6b{bottom:327.226667pt;}
.ydc{bottom:334.426667pt;}
.ya0{bottom:342.266667pt;}
.y6a{bottom:343.066667pt;}
.y22{bottom:347.226667pt;}
.ydb{bottom:350.266667pt;}
.y9f{bottom:358.106667pt;}
.y69{bottom:360.826667pt;}
.yda{bottom:366.106667pt;}
.y21{bottom:368.506667pt;}
.y9e{bottom:373.946667pt;}
.yd9{bottom:381.946667pt;}
.y20{bottom:389.626667pt;}
.y9d{bottom:389.946667pt;}
.y68{bottom:390.106667pt;}
.yd8{bottom:397.986667pt;}
.y67{bottom:405.826667pt;}
.y1f{bottom:410.786667pt;}
.yd7{bottom:413.826667pt;}
.y66{bottom:421.666667pt;}
.yd6{bottom:429.666667pt;}
.y1e{bottom:431.746667pt;}
.y65{bottom:437.506667pt;}
.yd5{bottom:445.506667pt;}
.y1d{bottom:451.266667pt;}
.y64{bottom:453.346667pt;}
.yd4{bottom:461.346667pt;}
.y63{bottom:469.186667pt;}
.y9c{bottom:471.106667pt;}
.y1c{bottom:474.626667pt;}
.yd3{bottom:477.186667pt;}
.y62{bottom:485.186667pt;}
.yd2{bottom:493.186667pt;}
.y9b{bottom:500.226667pt;}
.y61{bottom:501.026667pt;}
.y1b{bottom:501.986667pt;}
.yd1{bottom:509.026667pt;}
.y9a{bottom:516.066667pt;}
.y60{bottom:516.866667pt;}
.yd0{bottom:524.866667pt;}
.y99{bottom:531.906667pt;}
.y5f{bottom:532.706667pt;}
.y1a{bottom:537.346667pt;}
.ycf{bottom:540.706667pt;}
.y98{bottom:547.746667pt;}
.y5e{bottom:548.546667pt;}
.yce{bottom:556.546667pt;}
.y19{bottom:563.426667pt;}
.y97{bottom:563.586667pt;}
.y5d{bottom:564.546667pt;}
.ycd{bottom:572.546667pt;}
.y96{bottom:579.586667pt;}
.y5c{bottom:580.386667pt;}
.ycc{bottom:588.386667pt;}
.y18{bottom:590.946667pt;}
.y95{bottom:595.426667pt;}
.y5b{bottom:596.226667pt;}
.ycb{bottom:604.253333pt;}
.y94{bottom:611.293333pt;}
.y5a{bottom:612.093333pt;}
.y17{bottom:618.333333pt;}
.yca{bottom:620.093333pt;}
.y93{bottom:627.133333pt;}
.y59{bottom:627.933333pt;}
.yc9{bottom:635.933333pt;}
.y92{bottom:642.973333pt;}
.y58{bottom:643.773333pt;}
.y16{bottom:645.693333pt;}
.yc8{bottom:651.773333pt;}
.y91{bottom:658.813333pt;}
.ybc{bottom:659.773333pt;}
.y57{bottom:667.773333pt;}
.y90{bottom:674.813333pt;}
.y15{bottom:678.013333pt;}
.y56{bottom:683.613333pt;}
.y8f{bottom:690.653333pt;}
.y55{bottom:699.453333pt;}
.y8e{bottom:706.493333pt;}
.y14{bottom:715.133333pt;}
.y54{bottom:715.293333pt;}
.y8d{bottom:722.333333pt;}
.y53{bottom:731.133333pt;}
.y8c{bottom:738.173333pt;}
.y13{bottom:739.773333pt;}
.y52{bottom:746.973333pt;}
.y8b{bottom:754.173333pt;}
.y51{bottom:762.973333pt;}
.y12{bottom:764.733333pt;}
.y8a{bottom:770.013333pt;}
.y50{bottom:778.813333pt;}
.y11{bottom:785.053333pt;}
.y89{bottom:785.853333pt;}
.y4f{bottom:794.653333pt;}
.y88{bottom:801.693333pt;}
.y10{bottom:804.413333pt;}
.y4e{bottom:810.533333pt;}
.y87{bottom:817.573333pt;}
.yf{bottom:823.813333pt;}
.y4d{bottom:826.373333pt;}
.y86{bottom:833.413333pt;}
.yc7{bottom:842.373333pt;}
.ye{bottom:842.853333pt;}
.ybb{bottom:844.133333pt;}
.y85{bottom:849.413333pt;}
.y4c{bottom:850.373333pt;}
.yc6{bottom:858.213333pt;}
.yd{bottom:862.373333pt;}
.y84{bottom:865.253333pt;}
.y4b{bottom:866.213333pt;}
.yba{bottom:873.253333pt;}
.yc5{bottom:874.053333pt;}
.y83{bottom:881.093333pt;}
.yc{bottom:882.053333pt;}
.yb9{bottom:889.093333pt;}
.yc4{bottom:889.893333pt;}
.y82{bottom:896.933333pt;}
.y4a{bottom:897.893333pt;}
.yb8{bottom:904.933333pt;}
.yc3{bottom:905.733333pt;}
.yb{bottom:912.453333pt;}
.y81{bottom:912.773333pt;}
.y49{bottom:913.733333pt;}
.yb7{bottom:920.773333pt;}
.yc2{bottom:921.573333pt;}
.ya{bottom:923.173333pt;}
.y80{bottom:928.773333pt;}
.y48{bottom:929.573333pt;}
.y9{bottom:933.893333pt;}
.yb6{bottom:936.773333pt;}
.yc1{bottom:937.573333pt;}
.y8{bottom:944.613333pt;}
.y47{bottom:945.573333pt;}
.yb5{bottom:952.613333pt;}
.yc0{bottom:953.413333pt;}
.y7{bottom:957.573333pt;}
.y7f{bottom:960.453333pt;}
.y46{bottom:961.413333pt;}
.yb4{bottom:968.453333pt;}
.ybf{bottom:971.013333pt;}
.y7e{bottom:976.293333pt;}
.y45{bottom:977.253333pt;}
.y6{bottom:980.293333pt;}
.yb3{bottom:984.293333pt;}
.y7d{bottom:992.133333pt;}
.y44{bottom:993.093333pt;}
.yb2{bottom:1000.133333pt;}
.y7c{bottom:1007.973333pt;}
.y43{bottom:1008.933333pt;}
.yb1{bottom:1015.973333pt;}
.y7b{bottom:1024.000000pt;}
.y42{bottom:1024.960000pt;}
.yb0{bottom:1032.000000pt;}
.y41{bottom:1040.800000pt;}
.y7a{bottom:1047.840000pt;}
.y40{bottom:1058.400000pt;}
.y79{bottom:1063.680000pt;}
.h2{height:27.676000pt;}
.h17{height:33.539062pt;}
.h7{height:36.431250pt;}
.h3{height:47.109375pt;}
.h10{height:48.375000pt;}
.h16{height:49.336436pt;}
.h13{height:52.108438pt;}
.h9{height:52.134375pt;}
.h14{height:52.234000pt;}
.ha{height:53.535000pt;}
.he{height:57.787500pt;}
.h4{height:58.563750pt;}
.hf{height:59.340000pt;}
.hd{height:64.290000pt;}
.h8{height:64.500000pt;}
.h12{height:69.660000pt;}
.h15{height:71.955000pt;}
.hb{height:73.490625pt;}
.h5{height:75.465000pt;}
.hc{height:78.045000pt;}
.h6{height:80.625000pt;}
.h11{height:307.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:71.386667pt;}
.w2{width:641.880000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.680000pt;}
.x16{left:9.600000pt;}
.x15{left:34.880000pt;}
.x1{left:40.324000pt;}
.x17{left:44.480000pt;}
.x6{left:48.000000pt;}
.x12{left:49.600000pt;}
.xc{left:52.640000pt;}
.x11{left:56.640000pt;}
.x18{left:71.872000pt;}
.xf{left:160.186667pt;}
.xe{left:183.866667pt;}
.x2{left:197.662667pt;}
.x10{left:204.666667pt;}
.x3{left:241.182667pt;}
.x9{left:252.066667pt;}
.xa{left:256.386667pt;}
.x8{left:267.106667pt;}
.x13{left:303.426667pt;}
.x7{left:324.706667pt;}
.xb{left:336.706667pt;}
.xd{left:350.786667pt;}
.x14{left:420.893333pt;}
.x19{left:444.893333pt;}
.x1a{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; }
  