
    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_b81010004beed60b188948af.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5b5f06fcfdf875a656682e82.woff')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_5403bd0faace0754b177bb65.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4a57b347747320a6f684422a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.372070;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_91ecb4b02d1cb2aeb34e7ce4.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6b63ffc0456241fd4eb77fb8.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5832bc052232843ffd4faeaf.woff')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls5{letter-spacing:-0.792000px;}
.ls10{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.720000px;}
.lsc{letter-spacing:3.744000px;}
.lsd{letter-spacing:14.544000px;}
.ls6{letter-spacing:33.984000px;}
.ls7{letter-spacing:87.984000px;}
.ls11{letter-spacing:105.960000px;}
.lse{letter-spacing:122.544000px;}
.lsb{letter-spacing:122.724000px;}
.lsa{letter-spacing:132.624000px;}
.lsf{letter-spacing:141.960000px;}
.ls9{letter-spacing:152.964000px;}
.ls8{letter-spacing:162.864000px;}
.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:-72.000000px;}
.ws4{word-spacing:-18.720000px;}
.ws1{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.208000px;}
.ws6{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
._14{margin-left:-3.312000px;}
._a{margin-left:-2.232000px;}
._0{margin-left:-1.080000px;}
._1{width:1.008000px;}
._6{width:2.088000px;}
._d{width:3.168000px;}
._2{width:4.968000px;}
._3{width:6.624000px;}
._11{width:7.956000px;}
._e{width:9.084000px;}
._8{width:10.368000px;}
._7{width:11.592000px;}
._9{width:13.320000px;}
._4{width:15.048000px;}
._5{width:16.488000px;}
._13{width:19.224000px;}
._18{width:21.024000px;}
._10{width:22.392000px;}
._1b{width:23.400000px;}
._f{width:24.480000px;}
._12{width:25.488000px;}
._b{width:27.144000px;}
._c{width:28.512000px;}
._15{width:29.808000px;}
._16{width:30.816000px;}
._17{width:32.904000px;}
._19{width:37.944000px;}
._1a{width:45.864000px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(32,32,32);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:3.780000px;}
.y6{bottom:54.180000px;}
.y80{bottom:117.936000px;}
.ya8{bottom:118.836000px;}
.yb7{bottom:119.196000px;}
.y55{bottom:120.456000px;}
.y2a{bottom:123.876000px;}
.y3e{bottom:124.056000px;}
.y3f{bottom:124.416000px;}
.y60{bottom:142.416000px;}
.y7f{bottom:148.896000px;}
.yb6{bottom:150.150000px;}
.y54{bottom:151.590000px;}
.y29{bottom:155.370000px;}
.y5f{bottom:173.370000px;}
.yba{bottom:180.030000px;}
.y7e{bottom:181.290000px;}
.y53{bottom:182.550000px;}
.y28{bottom:186.330000px;}
.y3d{bottom:186.510000px;}
.y5e{bottom:204.510000px;}
.y9b{bottom:207.570000px;}
.yd7{bottom:210.990000px;}
.y7d{bottom:212.250000px;}
.y52{bottom:213.330000px;}
.y27{bottom:217.470000px;}
.y5d{bottom:235.470000px;}
.y9a{bottom:238.530000px;}
.yd6{bottom:242.130000px;}
.y7c{bottom:243.390000px;}
.ya7{bottom:244.650000px;}
.y51{bottom:245.910000px;}
.y42{bottom:248.250000px;}
.y26{bottom:248.430000px;}
.y3c{bottom:248.610000px;}
.y5c{bottom:266.610000px;}
.y99{bottom:269.670000px;}
.yd5{bottom:273.090000px;}
.y7b{bottom:274.350000px;}
.ya6{bottom:275.790000px;}
.y50{bottom:277.050000px;}
.y25{bottom:279.570000px;}
.y5b{bottom:297.570000px;}
.y98{bottom:300.630000px;}
.yd4{bottom:304.230000px;}
.y7a{bottom:305.490000px;}
.ya5{bottom:306.750000px;}
.y4f{bottom:308.010000px;}
.y24{bottom:310.530000px;}
.y5a{bottom:328.755000px;}
.y97{bottom:331.815000px;}
.yd3{bottom:335.235000px;}
.y79{bottom:336.495000px;}
.yb9{bottom:337.755000px;}
.ya4{bottom:337.935000px;}
.y4e{bottom:339.195000px;}
.y8e{bottom:340.455000px;}
.y23{bottom:341.715000px;}
.y59{bottom:360.615000px;}
.y96{bottom:362.775000px;}
.yd2{bottom:366.375000px;}
.yb5{bottom:367.635000px;}
.y78{bottom:368.895000px;}
.y4d{bottom:370.155000px;}
.y8d{bottom:371.415000px;}
.y22{bottom:372.675000px;}
.y58{bottom:391.755000px;}
.y95{bottom:393.915000px;}
.yd1{bottom:397.335000px;}
.yb4{bottom:398.235000px;}
.y77{bottom:399.855000px;}
.ya3{bottom:400.035000px;}
.y4c{bottom:401.295000px;}
.y8c{bottom:402.555000px;}
.y21{bottom:403.635000px;}
.y3b{bottom:403.815000px;}
.y57{bottom:418.755000px;}
.y94{bottom:424.875000px;}
.yd0{bottom:428.475000px;}
.yb3{bottom:429.735000px;}
.y76{bottom:430.995000px;}
.y4b{bottom:432.255000px;}
.y8b{bottom:433.515000px;}
.y20{bottom:434.775000px;}
.y93{bottom:456.015000px;}
.ycf{bottom:459.435000px;}
.yb2{bottom:460.695000px;}
.y75{bottom:461.955000px;}
.y4a{bottom:463.395000px;}
.y8a{bottom:464.655000px;}
.y1f{bottom:465.735000px;}
.y3a{bottom:465.915000px;}
.y92{bottom:486.615000px;}
.yce{bottom:490.575000px;}
.yb1{bottom:491.835000px;}
.y74{bottom:493.095000px;}
.y49{bottom:493.995000px;}
.y89{bottom:495.615000px;}
.y1e{bottom:496.875000px;}
.y91{bottom:518.115000px;}
.ycd{bottom:521.535000px;}
.yb0{bottom:522.795000px;}
.y73{bottom:524.055000px;}
.y48{bottom:526.755000px;}
.y1d{bottom:527.835000px;}
.y39{bottom:528.015000px;}
.ycc{bottom:552.495000px;}
.yaf{bottom:553.935000px;}
.ya2{bottom:554.835000px;}
.y72{bottom:555.195000px;}
.y47{bottom:557.715000px;}
.y1c{bottom:558.975000px;}
.ycb{bottom:583.635000px;}
.yae{bottom:584.895000px;}
.y71{bottom:585.975000px;}
.ya1{bottom:586.155000px;}
.y46{bottom:588.855000px;}
.yb8{bottom:589.755000px;}
.y1b{bottom:589.935000px;}
.y38{bottom:590.115000px;}
.yca{bottom:614.625000px;}
.yad{bottom:616.065000px;}
.ya0{bottom:617.325000px;}
.y70{bottom:618.585000px;}
.y45{bottom:619.845000px;}
.y1a{bottom:621.105000px;}
.yc9{bottom:645.405000px;}
.y9f{bottom:648.285000px;}
.y6f{bottom:649.545000px;}
.y44{bottom:650.625000px;}
.y19{bottom:652.065000px;}
.y37{bottom:652.245000px;}
.yc8{bottom:676.725000px;}
.y9e{bottom:679.425000px;}
.y6e{bottom:680.685000px;}
.y88{bottom:681.945000px;}
.y43{bottom:682.845000px;}
.y18{bottom:683.205000px;}
.yc7{bottom:707.865000px;}
.y9d{bottom:710.025000px;}
.yac{bottom:710.385000px;}
.y6d{bottom:711.645000px;}
.y87{bottom:713.085000px;}
.y17{bottom:714.165000px;}
.y36{bottom:714.345000px;}
.y9c{bottom:737.205000px;}
.yc6{bottom:739.005000px;}
.yab{bottom:741.165000px;}
.y6c{bottom:742.785000px;}
.y86{bottom:744.045000px;}
.y16{bottom:745.305000px;}
.yc5{bottom:771.225000px;}
.y6b{bottom:773.745000px;}
.y85{bottom:775.185000px;}
.y15{bottom:776.265000px;}
.y35{bottom:776.445000px;}
.yc4{bottom:802.365000px;}
.y6a{bottom:804.885000px;}
.y84{bottom:806.145000px;}
.y14{bottom:807.405000px;}
.yc3{bottom:833.325000px;}
.yaa{bottom:835.845000px;}
.y69{bottom:836.025000px;}
.y83{bottom:836.925000px;}
.y56{bottom:838.185000px;}
.y13{bottom:838.365000px;}
.y34{bottom:838.545000px;}
.yc2{bottom:865.770000px;}
.ya9{bottom:867.030000px;}
.y82{bottom:867.930000px;}
.y68{bottom:868.290000px;}
.y12{bottom:869.190000px;}
.y33{bottom:869.550000px;}
.y90{bottom:884.850000px;}
.y11{bottom:890.430000px;}
.yc1{bottom:896.730000px;}
.y81{bottom:899.070000px;}
.y67{bottom:899.430000px;}
.y32{bottom:900.690000px;}
.y10{bottom:911.130000px;}
.y8f{bottom:911.670000px;}
.yc0{bottom:927.870000px;}
.y66{bottom:930.390000px;}
.y31{bottom:931.650000px;}
.yf{bottom:940.110000px;}
.ye{bottom:952.530000px;}
.ybf{bottom:960.090000px;}
.y65{bottom:961.530000px;}
.y30{bottom:962.790000px;}
.yd{bottom:981.510000px;}
.ybe{bottom:991.230000px;}
.y64{bottom:992.490000px;}
.y41{bottom:993.390000px;}
.y2f{bottom:993.750000px;}
.yc{bottom:994.470000px;}
.yb{bottom:1020.210000px;}
.ybd{bottom:1022.190000px;}
.y63{bottom:1023.450000px;}
.y40{bottom:1024.530000px;}
.y2e{bottom:1024.890000px;}
.ya{bottom:1046.130000px;}
.y62{bottom:1054.590000px;}
.y2d{bottom:1055.850000px;}
.y9{bottom:1071.510000px;}
.ybc{bottom:1085.550000px;}
.y61{bottom:1085.730000px;}
.y2c{bottom:1086.990000px;}
.y8{bottom:1095.630000px;}
.ybb{bottom:1116.690000px;}
.y2b{bottom:1117.950000px;}
.y5{bottom:1134.720000px;}
.y4{bottom:1139.400000px;}
.y3{bottom:1158.480000px;}
.y2{bottom:1179.540000px;}
.y1{bottom:1199.880000px;}
.h8{height:47.344922px;}
.hc{height:50.273438px;}
.h5{height:58.651172px;}
.h4{height:65.010937px;}
.h3{height:70.664062px;}
.h9{height:71.824219px;}
.h2{height:72.562500px;}
.hb{height:74.004654px;}
.ha{height:74.953125px;}
.h7{height:81.736875px;}
.h6{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:108.036000px;}
.x6{left:114.696000px;}
.xd{left:135.036000px;}
.x15{left:142.596000px;}
.xe{left:148.536000px;}
.xf{left:156.270000px;}
.xa{left:160.410000px;}
.x10{left:162.030000px;}
.x13{left:169.590000px;}
.x16{left:196.590000px;}
.x11{left:216.030000px;}
.x14{left:223.590000px;}
.x3{left:256.575000px;}
.x7{left:289.515000px;}
.x9{left:309.675000px;}
.xb{left:339.735000px;}
.x1{left:350.175000px;}
.x2{left:397.695000px;}
.xc{left:402.225000px;}
.x5{left:437.505000px;}
.x8{left:446.145000px;}
.x17{left:536.325000px;}
.x18{left:678.750000px;}
.x12{left:707.550000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls5{letter-spacing:-0.704000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.640000pt;}
.lsc{letter-spacing:3.328000pt;}
.lsd{letter-spacing:12.928000pt;}
.ls6{letter-spacing:30.208000pt;}
.ls7{letter-spacing:78.208000pt;}
.ls11{letter-spacing:94.186667pt;}
.lse{letter-spacing:108.928000pt;}
.lsb{letter-spacing:109.088000pt;}
.lsa{letter-spacing:117.888000pt;}
.lsf{letter-spacing:126.186667pt;}
.ls9{letter-spacing:135.968000pt;}
.ls8{letter-spacing:144.768000pt;}
.ws5{word-spacing:-64.000000pt;}
.ws4{word-spacing:-16.640000pt;}
.ws1{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.296000pt;}
.ws6{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
._14{margin-left:-2.944000pt;}
._a{margin-left:-1.984000pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.896000pt;}
._6{width:1.856000pt;}
._d{width:2.816000pt;}
._2{width:4.416000pt;}
._3{width:5.888000pt;}
._11{width:7.072000pt;}
._e{width:8.074667pt;}
._8{width:9.216000pt;}
._7{width:10.304000pt;}
._9{width:11.840000pt;}
._4{width:13.376000pt;}
._5{width:14.656000pt;}
._13{width:17.088000pt;}
._18{width:18.688000pt;}
._10{width:19.904000pt;}
._1b{width:20.800000pt;}
._f{width:21.760000pt;}
._12{width:22.656000pt;}
._b{width:24.128000pt;}
._c{width:25.344000pt;}
._15{width:26.496000pt;}
._16{width:27.392000pt;}
._17{width:29.248000pt;}
._19{width:33.728000pt;}
._1a{width:40.768000pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.360000pt;}
.y6{bottom:48.160000pt;}
.y80{bottom:104.832000pt;}
.ya8{bottom:105.632000pt;}
.yb7{bottom:105.952000pt;}
.y55{bottom:107.072000pt;}
.y2a{bottom:110.112000pt;}
.y3e{bottom:110.272000pt;}
.y3f{bottom:110.592000pt;}
.y60{bottom:126.592000pt;}
.y7f{bottom:132.352000pt;}
.yb6{bottom:133.466667pt;}
.y54{bottom:134.746667pt;}
.y29{bottom:138.106667pt;}
.y5f{bottom:154.106667pt;}
.yba{bottom:160.026667pt;}
.y7e{bottom:161.146667pt;}
.y53{bottom:162.266667pt;}
.y28{bottom:165.626667pt;}
.y3d{bottom:165.786667pt;}
.y5e{bottom:181.786667pt;}
.y9b{bottom:184.506667pt;}
.yd7{bottom:187.546667pt;}
.y7d{bottom:188.666667pt;}
.y52{bottom:189.626667pt;}
.y27{bottom:193.306667pt;}
.y5d{bottom:209.306667pt;}
.y9a{bottom:212.026667pt;}
.yd6{bottom:215.226667pt;}
.y7c{bottom:216.346667pt;}
.ya7{bottom:217.466667pt;}
.y51{bottom:218.586667pt;}
.y42{bottom:220.666667pt;}
.y26{bottom:220.826667pt;}
.y3c{bottom:220.986667pt;}
.y5c{bottom:236.986667pt;}
.y99{bottom:239.706667pt;}
.yd5{bottom:242.746667pt;}
.y7b{bottom:243.866667pt;}
.ya6{bottom:245.146667pt;}
.y50{bottom:246.266667pt;}
.y25{bottom:248.506667pt;}
.y5b{bottom:264.506667pt;}
.y98{bottom:267.226667pt;}
.yd4{bottom:270.426667pt;}
.y7a{bottom:271.546667pt;}
.ya5{bottom:272.666667pt;}
.y4f{bottom:273.786667pt;}
.y24{bottom:276.026667pt;}
.y5a{bottom:292.226667pt;}
.y97{bottom:294.946667pt;}
.yd3{bottom:297.986667pt;}
.y79{bottom:299.106667pt;}
.yb9{bottom:300.226667pt;}
.ya4{bottom:300.386667pt;}
.y4e{bottom:301.506667pt;}
.y8e{bottom:302.626667pt;}
.y23{bottom:303.746667pt;}
.y59{bottom:320.546667pt;}
.y96{bottom:322.466667pt;}
.yd2{bottom:325.666667pt;}
.yb5{bottom:326.786667pt;}
.y78{bottom:327.906667pt;}
.y4d{bottom:329.026667pt;}
.y8d{bottom:330.146667pt;}
.y22{bottom:331.266667pt;}
.y58{bottom:348.226667pt;}
.y95{bottom:350.146667pt;}
.yd1{bottom:353.186667pt;}
.yb4{bottom:353.986667pt;}
.y77{bottom:355.426667pt;}
.ya3{bottom:355.586667pt;}
.y4c{bottom:356.706667pt;}
.y8c{bottom:357.826667pt;}
.y21{bottom:358.786667pt;}
.y3b{bottom:358.946667pt;}
.y57{bottom:372.226667pt;}
.y94{bottom:377.666667pt;}
.yd0{bottom:380.866667pt;}
.yb3{bottom:381.986667pt;}
.y76{bottom:383.106667pt;}
.y4b{bottom:384.226667pt;}
.y8b{bottom:385.346667pt;}
.y20{bottom:386.466667pt;}
.y93{bottom:405.346667pt;}
.ycf{bottom:408.386667pt;}
.yb2{bottom:409.506667pt;}
.y75{bottom:410.626667pt;}
.y4a{bottom:411.906667pt;}
.y8a{bottom:413.026667pt;}
.y1f{bottom:413.986667pt;}
.y3a{bottom:414.146667pt;}
.y92{bottom:432.546667pt;}
.yce{bottom:436.066667pt;}
.yb1{bottom:437.186667pt;}
.y74{bottom:438.306667pt;}
.y49{bottom:439.106667pt;}
.y89{bottom:440.546667pt;}
.y1e{bottom:441.666667pt;}
.y91{bottom:460.546667pt;}
.ycd{bottom:463.586667pt;}
.yb0{bottom:464.706667pt;}
.y73{bottom:465.826667pt;}
.y48{bottom:468.226667pt;}
.y1d{bottom:469.186667pt;}
.y39{bottom:469.346667pt;}
.ycc{bottom:491.106667pt;}
.yaf{bottom:492.386667pt;}
.ya2{bottom:493.186667pt;}
.y72{bottom:493.506667pt;}
.y47{bottom:495.746667pt;}
.y1c{bottom:496.866667pt;}
.ycb{bottom:518.786667pt;}
.yae{bottom:519.906667pt;}
.y71{bottom:520.866667pt;}
.ya1{bottom:521.026667pt;}
.y46{bottom:523.426667pt;}
.yb8{bottom:524.226667pt;}
.y1b{bottom:524.386667pt;}
.y38{bottom:524.546667pt;}
.yca{bottom:546.333333pt;}
.yad{bottom:547.613333pt;}
.ya0{bottom:548.733333pt;}
.y70{bottom:549.853333pt;}
.y45{bottom:550.973333pt;}
.y1a{bottom:552.093333pt;}
.yc9{bottom:573.693333pt;}
.y9f{bottom:576.253333pt;}
.y6f{bottom:577.373333pt;}
.y44{bottom:578.333333pt;}
.y19{bottom:579.613333pt;}
.y37{bottom:579.773333pt;}
.yc8{bottom:601.533333pt;}
.y9e{bottom:603.933333pt;}
.y6e{bottom:605.053333pt;}
.y88{bottom:606.173333pt;}
.y43{bottom:606.973333pt;}
.y18{bottom:607.293333pt;}
.yc7{bottom:629.213333pt;}
.y9d{bottom:631.133333pt;}
.yac{bottom:631.453333pt;}
.y6d{bottom:632.573333pt;}
.y87{bottom:633.853333pt;}
.y17{bottom:634.813333pt;}
.y36{bottom:634.973333pt;}
.y9c{bottom:655.293333pt;}
.yc6{bottom:656.893333pt;}
.yab{bottom:658.813333pt;}
.y6c{bottom:660.253333pt;}
.y86{bottom:661.373333pt;}
.y16{bottom:662.493333pt;}
.yc5{bottom:685.533333pt;}
.y6b{bottom:687.773333pt;}
.y85{bottom:689.053333pt;}
.y15{bottom:690.013333pt;}
.y35{bottom:690.173333pt;}
.yc4{bottom:713.213333pt;}
.y6a{bottom:715.453333pt;}
.y84{bottom:716.573333pt;}
.y14{bottom:717.693333pt;}
.yc3{bottom:740.733333pt;}
.yaa{bottom:742.973333pt;}
.y69{bottom:743.133333pt;}
.y83{bottom:743.933333pt;}
.y56{bottom:745.053333pt;}
.y13{bottom:745.213333pt;}
.y34{bottom:745.373333pt;}
.yc2{bottom:769.573333pt;}
.ya9{bottom:770.693333pt;}
.y82{bottom:771.493333pt;}
.y68{bottom:771.813333pt;}
.y12{bottom:772.613333pt;}
.y33{bottom:772.933333pt;}
.y90{bottom:786.533333pt;}
.y11{bottom:791.493333pt;}
.yc1{bottom:797.093333pt;}
.y81{bottom:799.173333pt;}
.y67{bottom:799.493333pt;}
.y32{bottom:800.613333pt;}
.y10{bottom:809.893333pt;}
.y8f{bottom:810.373333pt;}
.yc0{bottom:824.773333pt;}
.y66{bottom:827.013333pt;}
.y31{bottom:828.133333pt;}
.yf{bottom:835.653333pt;}
.ye{bottom:846.693333pt;}
.ybf{bottom:853.413333pt;}
.y65{bottom:854.693333pt;}
.y30{bottom:855.813333pt;}
.yd{bottom:872.453333pt;}
.ybe{bottom:881.093333pt;}
.y64{bottom:882.213333pt;}
.y41{bottom:883.013333pt;}
.y2f{bottom:883.333333pt;}
.yc{bottom:883.973333pt;}
.yb{bottom:906.853333pt;}
.ybd{bottom:908.613333pt;}
.y63{bottom:909.733333pt;}
.y40{bottom:910.693333pt;}
.y2e{bottom:911.013333pt;}
.ya{bottom:929.893333pt;}
.y62{bottom:937.413333pt;}
.y2d{bottom:938.533333pt;}
.y9{bottom:952.453333pt;}
.ybc{bottom:964.933333pt;}
.y61{bottom:965.093333pt;}
.y2c{bottom:966.213333pt;}
.y8{bottom:973.893333pt;}
.ybb{bottom:992.613333pt;}
.y2b{bottom:993.733333pt;}
.y5{bottom:1008.640000pt;}
.y4{bottom:1012.800000pt;}
.y3{bottom:1029.760000pt;}
.y2{bottom:1048.480000pt;}
.y1{bottom:1066.560000pt;}
.h8{height:42.084375pt;}
.hc{height:44.687500pt;}
.h5{height:52.134375pt;}
.h4{height:57.787500pt;}
.h3{height:62.812500pt;}
.h9{height:63.843750pt;}
.h2{height:64.500000pt;}
.hb{height:65.781915pt;}
.ha{height:66.625000pt;}
.h7{height:72.655000pt;}
.h6{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:96.032000pt;}
.x6{left:101.952000pt;}
.xd{left:120.032000pt;}
.x15{left:126.752000pt;}
.xe{left:132.032000pt;}
.xf{left:138.906667pt;}
.xa{left:142.586667pt;}
.x10{left:144.026667pt;}
.x13{left:150.746667pt;}
.x16{left:174.746667pt;}
.x11{left:192.026667pt;}
.x14{left:198.746667pt;}
.x3{left:228.066667pt;}
.x7{left:257.346667pt;}
.x9{left:275.266667pt;}
.xb{left:301.986667pt;}
.x1{left:311.266667pt;}
.x2{left:353.506667pt;}
.xc{left:357.533333pt;}
.x5{left:388.893333pt;}
.x8{left:396.573333pt;}
.x17{left:476.733333pt;}
.x18{left:603.333333pt;}
.x12{left:628.933333pt;}
}




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