
    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_99a52c22f164a1823161b36c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_381d48bee062d036f315b136.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_0c8e30df4293da013fbdf22d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_1a0b69dc8a069f073fed2e74.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_695b6dd50c9a4513dde35387.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_51f73692f87a55fbd16980f4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.860840;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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.720000px;}
.ls2{letter-spacing:1.440000px;}
.ls0{letter-spacing:11.340000px;}
.ls5{letter-spacing:21.221280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-21.420000px;}
.ws4{word-spacing:-18.216000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.712000px;}
.ws1{word-spacing:0.000000px;}
._14{margin-left:-5.788320px;}
._13{margin-left:-4.176000px;}
._16{margin-left:-2.565600px;}
._0{margin-left:-1.457280px;}
._1{width:1.125600px;}
._3{width:2.274720px;}
._c{width:3.874560px;}
._6{width:5.386080px;}
._b{width:6.778080px;}
._18{width:7.981920px;}
._9{width:9.216000px;}
._a{width:10.754400px;}
._17{width:11.925600px;}
._1b{width:13.608000px;}
._11{width:15.569280px;}
._10{width:16.920000px;}
._f{width:19.224000px;}
._1e{width:20.592000px;}
._1f{width:22.418400px;}
._19{width:23.472000px;}
._1a{width:24.497280px;}
._12{width:26.280000px;}
._15{width:27.288000px;}
._e{width:29.177280px;}
._d{width:31.032000px;}
._1d{width:35.784000px;}
._8{width:37.154880px;}
._7{width:38.687040px;}
._1c{width:49.536000px;}
._4{width:96.190080px;}
._5{width:97.436640px;}
._2{width:161.091840px;}
._20{width:242.640000px;}
._21{width:243.648000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y94{bottom:3.960000px;}
.y92{bottom:14.220000px;}
.ya8{bottom:14.400000px;}
.y93{bottom:24.660000px;}
.y5{bottom:76.176000px;}
.y4{bottom:96.516000px;}
.y3{bottom:115.596000px;}
.y2{bottom:134.496000px;}
.y31{bottom:166.350000px;}
.y86{bottom:168.330000px;}
.yc2{bottom:178.770000px;}
.y69{bottom:179.850000px;}
.ya2{bottom:186.870000px;}
.y30{bottom:187.590000px;}
.y85{bottom:199.470000px;}
.y4f{bottom:207.750000px;}
.yc1{bottom:209.730000px;}
.y68{bottom:210.810000px;}
.y2f{bottom:211.170000px;}
.ydf{bottom:214.050000px;}
.ya1{bottom:217.830000px;}
.y84{bottom:230.430000px;}
.y2e{bottom:231.870000px;}
.yde{bottom:234.750000px;}
.y4e{bottom:238.710000px;}
.yc0{bottom:240.870000px;}
.y67{bottom:241.950000px;}
.ya0{bottom:248.970000px;}
.y2d{bottom:252.570000px;}
.ydd{bottom:255.450000px;}
.y83{bottom:261.570000px;}
.y4d{bottom:269.850000px;}
.ybf{bottom:271.830000px;}
.y66{bottom:272.910000px;}
.y2c{bottom:273.270000px;}
.ydc{bottom:276.150000px;}
.y9f{bottom:279.930000px;}
.y82{bottom:292.530000px;}
.y2b{bottom:293.970000px;}
.ydb{bottom:296.850000px;}
.y4c{bottom:300.810000px;}
.ybe{bottom:302.970000px;}
.y65{bottom:304.050000px;}
.y9e{bottom:311.070000px;}
.y2a{bottom:314.670000px;}
.yda{bottom:317.550000px;}
.y81{bottom:319.350000px;}
.y4b{bottom:331.950000px;}
.ybd{bottom:333.930000px;}
.y64{bottom:335.010000px;}
.y29{bottom:335.370000px;}
.yd9{bottom:338.295000px;}
.y9d{bottom:342.075000px;}
.y80{bottom:346.035000px;}
.y28{bottom:356.115000px;}
.yd8{bottom:358.995000px;}
.y63{bottom:361.695000px;}
.y4a{bottom:362.955000px;}
.ybc{bottom:365.115000px;}
.y7f{bottom:372.675000px;}
.y9c{bottom:373.215000px;}
.y27{bottom:376.815000px;}
.yd7{bottom:379.695000px;}
.y62{bottom:388.515000px;}
.y49{bottom:394.095000px;}
.ybb{bottom:396.075000px;}
.y26{bottom:397.515000px;}
.y7e{bottom:399.495000px;}
.yd6{bottom:400.395000px;}
.y9b{bottom:404.175000px;}
.yba{bottom:413.535000px;}
.y61{bottom:415.155000px;}
.y25{bottom:418.215000px;}
.yd5{bottom:421.095000px;}
.y48{bottom:425.055000px;}
.y7d{bottom:426.135000px;}
.yb9{bottom:435.135000px;}
.y9a{bottom:435.315000px;}
.y24{bottom:438.915000px;}
.y60{bottom:441.795000px;}
.y7c{bottom:452.775000px;}
.y47{bottom:456.195000px;}
.y23{bottom:459.615000px;}
.yd4{bottom:462.495000px;}
.y99{bottom:466.275000px;}
.y5f{bottom:468.615000px;}
.yea{bottom:476.895000px;}
.yb8{bottom:477.255000px;}
.y7b{bottom:479.595000px;}
.y22{bottom:480.315000px;}
.y98{bottom:483.735000px;}
.y46{bottom:487.155000px;}
.yd3{bottom:489.675000px;}
.y5e{bottom:495.255000px;}
.ye9{bottom:497.595000px;}
.yb7{bottom:498.675000px;}
.y21{bottom:501.015000px;}
.y97{bottom:505.335000px;}
.y7a{bottom:506.235000px;}
.y45{bottom:518.295000px;}
.y20{bottom:521.715000px;}
.y5d{bottom:521.895000px;}
.yd2{bottom:532.695000px;}
.y79{bottom:532.875000px;}
.ye8{bottom:538.995000px;}
.yb6{bottom:540.795000px;}
.y1f{bottom:542.415000px;}
.y96{bottom:547.455000px;}
.y5c{bottom:548.715000px;}
.y44{bottom:549.255000px;}
.y78{bottom:559.695000px;}
.y1e{bottom:563.115000px;}
.yd1{bottom:563.655000px;}
.y95{bottom:568.875000px;}
.y5b{bottom:575.355000px;}
.y43{bottom:580.395000px;}
.y1d{bottom:583.815000px;}
.yb5{bottom:586.875000px;}
.y77{bottom:590.655000px;}
.yd0{bottom:594.615000px;}
.ye7{bottom:601.095000px;}
.y5a{bottom:601.995000px;}
.y1c{bottom:604.545000px;}
.yb4{bottom:607.605000px;}
.y91{bottom:611.025000px;}
.y42{bottom:611.385000px;}
.y76{bottom:621.645000px;}
.y1b{bottom:625.245000px;}
.ycf{bottom:625.785000px;}
.yb3{bottom:628.305000px;}
.y59{bottom:628.845000px;}
.y41{bottom:642.345000px;}
.y1a{bottom:645.945000px;}
.yb2{bottom:649.005000px;}
.y75{bottom:652.785000px;}
.y58{bottom:655.485000px;}
.yce{bottom:656.745000px;}
.y90{bottom:657.105000px;}
.ye6{bottom:663.045000px;}
.y19{bottom:666.645000px;}
.y40{bottom:673.485000px;}
.y8f{bottom:677.805000px;}
.yb1{bottom:680.145000px;}
.y57{bottom:682.125000px;}
.y74{bottom:683.745000px;}
.y18{bottom:687.345000px;}
.ycd{bottom:687.885000px;}
.y3f{bottom:704.445000px;}
.y17{bottom:708.045000px;}
.y56{bottom:708.945000px;}
.yb0{bottom:711.105000px;}
.y73{bottom:714.885000px;}
.ycc{bottom:718.845000px;}
.ye5{bottom:725.145000px;}
.y16{bottom:728.745000px;}
.y3e{bottom:735.585000px;}
.y8e{bottom:739.905000px;}
.yaf{bottom:742.245000px;}
.y72{bottom:745.845000px;}
.y15{bottom:749.445000px;}
.ycb{bottom:749.985000px;}
.y3d{bottom:766.545000px;}
.y14{bottom:770.145000px;}
.y8d{bottom:771.045000px;}
.yae{bottom:773.205000px;}
.y71{bottom:776.985000px;}
.yca{bottom:780.945000px;}
.ye4{bottom:787.245000px;}
.y13{bottom:790.845000px;}
.y3c{bottom:797.685000px;}
.y8c{bottom:802.005000px;}
.yad{bottom:804.345000px;}
.y70{bottom:807.945000px;}
.yc9{bottom:808.305000px;}
.y12{bottom:811.545000px;}
.y3b{bottom:828.645000px;}
.y11{bottom:832.245000px;}
.yc8{bottom:832.425000px;}
.y8b{bottom:833.145000px;}
.yac{bottom:835.305000px;}
.y6f{bottom:839.085000px;}
.ye3{bottom:849.345000px;}
.yc7{bottom:852.765000px;}
.y3a{bottom:859.785000px;}
.y10{bottom:863.205000px;}
.y8a{bottom:864.105000px;}
.yab{bottom:866.445000px;}
.y6e{bottom:870.045000px;}
.yf{bottom:883.950000px;}
.yc6{bottom:884.670000px;}
.y39{bottom:890.790000px;}
.y89{bottom:895.290000px;}
.yaa{bottom:897.450000px;}
.y6d{bottom:901.230000px;}
.ye{bottom:904.650000px;}
.ye2{bottom:911.490000px;}
.yc5{bottom:916.530000px;}
.y38{bottom:921.930000px;}
.yd{bottom:925.350000px;}
.y88{bottom:928.590000px;}
.y6c{bottom:932.190000px;}
.ya9{bottom:946.050000px;}
.yc{bottom:947.310000px;}
.yc4{bottom:948.210000px;}
.y37{bottom:952.890000px;}
.y55{bottom:955.230000px;}
.y6b{bottom:963.330000px;}
.y87{bottom:964.770000px;}
.ye1{bottom:973.590000px;}
.yb{bottom:975.030000px;}
.ya7{bottom:977.730000px;}
.y36{bottom:984.030000px;}
.y54{bottom:991.410000px;}
.y6a{bottom:994.290000px;}
.ya{bottom:1002.570000px;}
.yc3{bottom:1004.730000px;}
.ya6{bottom:1009.590000px;}
.y35{bottom:1014.990000px;}
.y53{bottom:1025.430000px;}
.y9{bottom:1030.110000px;}
.ye0{bottom:1035.690000px;}
.ya5{bottom:1041.450000px;}
.y34{bottom:1046.130000px;}
.y52{bottom:1056.390000px;}
.y8{bottom:1057.830000px;}
.ya4{bottom:1077.090000px;}
.y33{bottom:1079.430000px;}
.y7{bottom:1085.370000px;}
.y51{bottom:1087.530000px;}
.ya3{bottom:1097.790000px;}
.y6{bottom:1112.910000px;}
.y32{bottom:1115.610000px;}
.y50{bottom:1118.490000px;}
.y1{bottom:1233.900000px;}
.ha{height:20.700000px;}
.hb{height:30.960000px;}
.hd{height:31.140000px;}
.he{height:31.176000px;}
.h8{height:41.400000px;}
.h9{height:41.436000px;}
.h5{height:59.343750px;}
.h3{height:59.383125px;}
.hc{height:63.949219px;}
.h2{height:64.546875px;}
.h6{height:69.432187px;}
.h7{height:74.820586px;}
.h4{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:94.140000px;}
.w4{width:94.176000px;}
.w6{width:96.300000px;}
.w8{width:106.236000px;}
.wb{width:106.740000px;}
.wa{width:106.920000px;}
.w9{width:106.956000px;}
.w3{width:107.460000px;}
.w7{width:141.480000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:8.100000px;}
.x16{left:13.140000px;}
.x27{left:14.940000px;}
.x26{left:17.100000px;}
.x21{left:23.040000px;}
.x1a{left:25.200000px;}
.x31{left:26.274000px;}
.x2d{left:29.700000px;}
.x23{left:31.320000px;}
.x1e{left:34.200000px;}
.x18{left:36.540000px;}
.x22{left:38.874000px;}
.x32{left:39.960000px;}
.x25{left:42.654000px;}
.x37{left:44.145000px;}
.x24{left:45.180000px;}
.x28{left:48.060000px;}
.x2a{left:70.734000px;}
.x2{left:127.655987px;}
.x14{left:128.915987px;}
.x33{left:129.995987px;}
.x7{left:132.875987px;}
.x15{left:153.569987px;}
.xc{left:164.549987px;}
.x3{left:170.129987px;}
.x10{left:175.169987px;}
.xa{left:181.649987px;}
.x5{left:187.229987px;}
.xd{left:191.549987px;}
.x13{left:202.169987px;}
.xb{left:208.649987px;}
.x11{left:225.389987px;}
.x17{left:236.550000px;}
.x2b{left:270.570000px;}
.x35{left:287.894987px;}
.xe{left:291.314987px;}
.x6{left:321.374987px;}
.x34{left:329.654987px;}
.x19{left:331.455000px;}
.x36{left:350.714987px;}
.x8{left:364.574987px;}
.x2c{left:377.535000px;}
.xf{left:402.374987px;}
.x12{left:419.114987px;}
.x1b{left:426.315000px;}
.x29{left:467.924987px;}
.x2e{left:485.205000px;}
.x1{left:489.164987px;}
.x4{left:494.384987px;}
.x1c{left:521.205000px;}
.x2f{left:592.845000px;}
.x1d{left:616.065000px;}
.x30{left:700.530000px;}
.x1f{left:710.970000px;}
.x9{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls2{letter-spacing:1.280000pt;}
.ls0{letter-spacing:10.080000pt;}
.ls5{letter-spacing:18.863360pt;}
.ws2{word-spacing:-19.040000pt;}
.ws4{word-spacing:-16.192000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws1{word-spacing:0.000000pt;}
._14{margin-left:-5.145173pt;}
._13{margin-left:-3.712000pt;}
._16{margin-left:-2.280533pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.000533pt;}
._3{width:2.021973pt;}
._c{width:3.444053pt;}
._6{width:4.787627pt;}
._b{width:6.024960pt;}
._18{width:7.095040pt;}
._9{width:8.192000pt;}
._a{width:9.559467pt;}
._17{width:10.600533pt;}
._1b{width:12.096000pt;}
._11{width:13.839360pt;}
._10{width:15.040000pt;}
._f{width:17.088000pt;}
._1e{width:18.304000pt;}
._1f{width:19.927467pt;}
._19{width:20.864000pt;}
._1a{width:21.775360pt;}
._12{width:23.360000pt;}
._15{width:24.256000pt;}
._e{width:25.935360pt;}
._d{width:27.584000pt;}
._1d{width:31.808000pt;}
._8{width:33.026560pt;}
._7{width:34.388480pt;}
._1c{width:44.032000pt;}
._4{width:85.502293pt;}
._5{width:86.610347pt;}
._2{width:143.192747pt;}
._20{width:215.680000pt;}
._21{width:216.576000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:3.520000pt;}
.y92{bottom:12.640000pt;}
.ya8{bottom:12.800000pt;}
.y93{bottom:21.920000pt;}
.y5{bottom:67.712000pt;}
.y4{bottom:85.792000pt;}
.y3{bottom:102.752000pt;}
.y2{bottom:119.552000pt;}
.y31{bottom:147.866667pt;}
.y86{bottom:149.626667pt;}
.yc2{bottom:158.906667pt;}
.y69{bottom:159.866667pt;}
.ya2{bottom:166.106667pt;}
.y30{bottom:166.746667pt;}
.y85{bottom:177.306667pt;}
.y4f{bottom:184.666667pt;}
.yc1{bottom:186.426667pt;}
.y68{bottom:187.386667pt;}
.y2f{bottom:187.706667pt;}
.ydf{bottom:190.266667pt;}
.ya1{bottom:193.626667pt;}
.y84{bottom:204.826667pt;}
.y2e{bottom:206.106667pt;}
.yde{bottom:208.666667pt;}
.y4e{bottom:212.186667pt;}
.yc0{bottom:214.106667pt;}
.y67{bottom:215.066667pt;}
.ya0{bottom:221.306667pt;}
.y2d{bottom:224.506667pt;}
.ydd{bottom:227.066667pt;}
.y83{bottom:232.506667pt;}
.y4d{bottom:239.866667pt;}
.ybf{bottom:241.626667pt;}
.y66{bottom:242.586667pt;}
.y2c{bottom:242.906667pt;}
.ydc{bottom:245.466667pt;}
.y9f{bottom:248.826667pt;}
.y82{bottom:260.026667pt;}
.y2b{bottom:261.306667pt;}
.ydb{bottom:263.866667pt;}
.y4c{bottom:267.386667pt;}
.ybe{bottom:269.306667pt;}
.y65{bottom:270.266667pt;}
.y9e{bottom:276.506667pt;}
.y2a{bottom:279.706667pt;}
.yda{bottom:282.266667pt;}
.y81{bottom:283.866667pt;}
.y4b{bottom:295.066667pt;}
.ybd{bottom:296.826667pt;}
.y64{bottom:297.786667pt;}
.y29{bottom:298.106667pt;}
.yd9{bottom:300.706667pt;}
.y9d{bottom:304.066667pt;}
.y80{bottom:307.586667pt;}
.y28{bottom:316.546667pt;}
.yd8{bottom:319.106667pt;}
.y63{bottom:321.506667pt;}
.y4a{bottom:322.626667pt;}
.ybc{bottom:324.546667pt;}
.y7f{bottom:331.266667pt;}
.y9c{bottom:331.746667pt;}
.y27{bottom:334.946667pt;}
.yd7{bottom:337.506667pt;}
.y62{bottom:345.346667pt;}
.y49{bottom:350.306667pt;}
.ybb{bottom:352.066667pt;}
.y26{bottom:353.346667pt;}
.y7e{bottom:355.106667pt;}
.yd6{bottom:355.906667pt;}
.y9b{bottom:359.266667pt;}
.yba{bottom:367.586667pt;}
.y61{bottom:369.026667pt;}
.y25{bottom:371.746667pt;}
.yd5{bottom:374.306667pt;}
.y48{bottom:377.826667pt;}
.y7d{bottom:378.786667pt;}
.yb9{bottom:386.786667pt;}
.y9a{bottom:386.946667pt;}
.y24{bottom:390.146667pt;}
.y60{bottom:392.706667pt;}
.y7c{bottom:402.466667pt;}
.y47{bottom:405.506667pt;}
.y23{bottom:408.546667pt;}
.yd4{bottom:411.106667pt;}
.y99{bottom:414.466667pt;}
.y5f{bottom:416.546667pt;}
.yea{bottom:423.906667pt;}
.yb8{bottom:424.226667pt;}
.y7b{bottom:426.306667pt;}
.y22{bottom:426.946667pt;}
.y98{bottom:429.986667pt;}
.y46{bottom:433.026667pt;}
.yd3{bottom:435.266667pt;}
.y5e{bottom:440.226667pt;}
.ye9{bottom:442.306667pt;}
.yb7{bottom:443.266667pt;}
.y21{bottom:445.346667pt;}
.y97{bottom:449.186667pt;}
.y7a{bottom:449.986667pt;}
.y45{bottom:460.706667pt;}
.y20{bottom:463.746667pt;}
.y5d{bottom:463.906667pt;}
.yd2{bottom:473.506667pt;}
.y79{bottom:473.666667pt;}
.ye8{bottom:479.106667pt;}
.yb6{bottom:480.706667pt;}
.y1f{bottom:482.146667pt;}
.y96{bottom:486.626667pt;}
.y5c{bottom:487.746667pt;}
.y44{bottom:488.226667pt;}
.y78{bottom:497.506667pt;}
.y1e{bottom:500.546667pt;}
.yd1{bottom:501.026667pt;}
.y95{bottom:505.666667pt;}
.y5b{bottom:511.426667pt;}
.y43{bottom:515.906667pt;}
.y1d{bottom:518.946667pt;}
.yb5{bottom:521.666667pt;}
.y77{bottom:525.026667pt;}
.yd0{bottom:528.546667pt;}
.ye7{bottom:534.306667pt;}
.y5a{bottom:535.106667pt;}
.y1c{bottom:537.373333pt;}
.yb4{bottom:540.093333pt;}
.y91{bottom:543.133333pt;}
.y42{bottom:543.453333pt;}
.y76{bottom:552.573333pt;}
.y1b{bottom:555.773333pt;}
.ycf{bottom:556.253333pt;}
.yb3{bottom:558.493333pt;}
.y59{bottom:558.973333pt;}
.y41{bottom:570.973333pt;}
.y1a{bottom:574.173333pt;}
.yb2{bottom:576.893333pt;}
.y75{bottom:580.253333pt;}
.y58{bottom:582.653333pt;}
.yce{bottom:583.773333pt;}
.y90{bottom:584.093333pt;}
.ye6{bottom:589.373333pt;}
.y19{bottom:592.573333pt;}
.y40{bottom:598.653333pt;}
.y8f{bottom:602.493333pt;}
.yb1{bottom:604.573333pt;}
.y57{bottom:606.333333pt;}
.y74{bottom:607.773333pt;}
.y18{bottom:610.973333pt;}
.ycd{bottom:611.453333pt;}
.y3f{bottom:626.173333pt;}
.y17{bottom:629.373333pt;}
.y56{bottom:630.173333pt;}
.yb0{bottom:632.093333pt;}
.y73{bottom:635.453333pt;}
.ycc{bottom:638.973333pt;}
.ye5{bottom:644.573333pt;}
.y16{bottom:647.773333pt;}
.y3e{bottom:653.853333pt;}
.y8e{bottom:657.693333pt;}
.yaf{bottom:659.773333pt;}
.y72{bottom:662.973333pt;}
.y15{bottom:666.173333pt;}
.ycb{bottom:666.653333pt;}
.y3d{bottom:681.373333pt;}
.y14{bottom:684.573333pt;}
.y8d{bottom:685.373333pt;}
.yae{bottom:687.293333pt;}
.y71{bottom:690.653333pt;}
.yca{bottom:694.173333pt;}
.ye4{bottom:699.773333pt;}
.y13{bottom:702.973333pt;}
.y3c{bottom:709.053333pt;}
.y8c{bottom:712.893333pt;}
.yad{bottom:714.973333pt;}
.y70{bottom:718.173333pt;}
.yc9{bottom:718.493333pt;}
.y12{bottom:721.373333pt;}
.y3b{bottom:736.573333pt;}
.y11{bottom:739.773333pt;}
.yc8{bottom:739.933333pt;}
.y8b{bottom:740.573333pt;}
.yac{bottom:742.493333pt;}
.y6f{bottom:745.853333pt;}
.ye3{bottom:754.973333pt;}
.yc7{bottom:758.013333pt;}
.y3a{bottom:764.253333pt;}
.y10{bottom:767.293333pt;}
.y8a{bottom:768.093333pt;}
.yab{bottom:770.173333pt;}
.y6e{bottom:773.373333pt;}
.yf{bottom:785.733333pt;}
.yc6{bottom:786.373333pt;}
.y39{bottom:791.813333pt;}
.y89{bottom:795.813333pt;}
.yaa{bottom:797.733333pt;}
.y6d{bottom:801.093333pt;}
.ye{bottom:804.133333pt;}
.ye2{bottom:810.213333pt;}
.yc5{bottom:814.693333pt;}
.y38{bottom:819.493333pt;}
.yd{bottom:822.533333pt;}
.y88{bottom:825.413333pt;}
.y6c{bottom:828.613333pt;}
.ya9{bottom:840.933333pt;}
.yc{bottom:842.053333pt;}
.yc4{bottom:842.853333pt;}
.y37{bottom:847.013333pt;}
.y55{bottom:849.093333pt;}
.y6b{bottom:856.293333pt;}
.y87{bottom:857.573333pt;}
.ye1{bottom:865.413333pt;}
.yb{bottom:866.693333pt;}
.ya7{bottom:869.093333pt;}
.y36{bottom:874.693333pt;}
.y54{bottom:881.253333pt;}
.y6a{bottom:883.813333pt;}
.ya{bottom:891.173333pt;}
.yc3{bottom:893.093333pt;}
.ya6{bottom:897.413333pt;}
.y35{bottom:902.213333pt;}
.y53{bottom:911.493333pt;}
.y9{bottom:915.653333pt;}
.ye0{bottom:920.613333pt;}
.ya5{bottom:925.733333pt;}
.y34{bottom:929.893333pt;}
.y52{bottom:939.013333pt;}
.y8{bottom:940.293333pt;}
.ya4{bottom:957.413333pt;}
.y33{bottom:959.493333pt;}
.y7{bottom:964.773333pt;}
.y51{bottom:966.693333pt;}
.ya3{bottom:975.813333pt;}
.y6{bottom:989.253333pt;}
.y32{bottom:991.653333pt;}
.y50{bottom:994.213333pt;}
.y1{bottom:1096.800000pt;}
.ha{height:18.400000pt;}
.hb{height:27.520000pt;}
.hd{height:27.680000pt;}
.he{height:27.712000pt;}
.h8{height:36.800000pt;}
.h9{height:36.832000pt;}
.h5{height:52.750000pt;}
.h3{height:52.785000pt;}
.hc{height:56.843750pt;}
.h2{height:57.375000pt;}
.h6{height:61.717500pt;}
.h7{height:66.507188pt;}
.h4{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:83.680000pt;}
.w4{width:83.712000pt;}
.w6{width:85.600000pt;}
.w8{width:94.432000pt;}
.wb{width:94.880000pt;}
.wa{width:95.040000pt;}
.w9{width:95.072000pt;}
.w3{width:95.520000pt;}
.w7{width:125.760000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:7.200000pt;}
.x16{left:11.680000pt;}
.x27{left:13.280000pt;}
.x26{left:15.200000pt;}
.x21{left:20.480000pt;}
.x1a{left:22.400000pt;}
.x31{left:23.354667pt;}
.x2d{left:26.400000pt;}
.x23{left:27.840000pt;}
.x1e{left:30.400000pt;}
.x18{left:32.480000pt;}
.x22{left:34.554667pt;}
.x32{left:35.520000pt;}
.x25{left:37.914667pt;}
.x37{left:39.240000pt;}
.x24{left:40.160000pt;}
.x28{left:42.720000pt;}
.x2a{left:62.874667pt;}
.x2{left:113.471988pt;}
.x14{left:114.591988pt;}
.x33{left:115.551988pt;}
.x7{left:118.111988pt;}
.x15{left:136.506655pt;}
.xc{left:146.266655pt;}
.x3{left:151.226655pt;}
.x10{left:155.706655pt;}
.xa{left:161.466655pt;}
.x5{left:166.426655pt;}
.xd{left:170.266655pt;}
.x13{left:179.706655pt;}
.xb{left:185.466655pt;}
.x11{left:200.346655pt;}
.x17{left:210.266667pt;}
.x2b{left:240.506667pt;}
.x35{left:255.906655pt;}
.xe{left:258.946655pt;}
.x6{left:285.666655pt;}
.x34{left:293.026655pt;}
.x19{left:294.626667pt;}
.x36{left:311.746655pt;}
.x8{left:324.066655pt;}
.x2c{left:335.586667pt;}
.xf{left:357.666655pt;}
.x12{left:372.546655pt;}
.x1b{left:378.946667pt;}
.x29{left:415.933322pt;}
.x2e{left:431.293333pt;}
.x1{left:434.813322pt;}
.x4{left:439.453322pt;}
.x1c{left:463.293333pt;}
.x2f{left:526.973333pt;}
.x1d{left:547.613333pt;}
.x30{left:622.693333pt;}
.x1f{left:631.973333pt;}
.x9{left:718.373322pt;}
}




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