
    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_ba9431e6bc16afef2c281ddf.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_f5428af084439efa4c732b93.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.854004;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_970358191e6be10e13e6387f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8b88ed35b12b7b8b107bc383.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_0c90c6fd97d3bbe30e70156d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d92be28d87bd7527549b71a1.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6d7022c46eeebe58d3745787.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls9{letter-spacing:-5.040000px;}
.ls6{letter-spacing:-0.262200px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.720000px;}
.ls1{letter-spacing:7.200000px;}
.ls3{letter-spacing:15.840000px;}
.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;}
}
.ws1{word-spacing:-23.940000px;}
.ws5{word-spacing:-21.420000px;}
.ws6{word-spacing:-21.060000px;}
.ws7{word-spacing:-18.216000px;}
.ws2{word-spacing:-18.000000px;}
.ws9{word-spacing:-16.865400px;}
.ws0{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.297800px;}
.wsa{word-spacing:-12.960000px;}
.ws3{word-spacing:-12.420000px;}
.ws4{word-spacing:0.000000px;}
._33{margin-left:-9.036720px;}
._1{margin-left:-7.948800px;}
._4{margin-left:-6.703200px;}
._5{margin-left:-5.075280px;}
._3{margin-left:-3.828960px;}
._11{margin-left:-2.585520px;}
._0{margin-left:-1.457280px;}
._2{width:1.171680px;}
._14{width:2.735040px;}
._19{width:3.888960px;}
._1d{width:4.960560px;}
._1f{width:6.288720px;}
._15{width:7.968000px;}
._1e{width:9.445920px;}
._1a{width:10.799520px;}
._13{width:12.096480px;}
._1c{width:13.680000px;}
._20{width:14.760000px;}
._1b{width:15.768000px;}
._16{width:16.776000px;}
._18{width:19.026720px;}
._12{width:20.108160px;}
._21{width:21.360000px;}
._22{width:22.536000px;}
._23{width:24.408000px;}
._26{width:25.697280px;}
._25{width:26.832000px;}
._2c{width:27.868320px;}
._2b{width:29.256000px;}
._24{width:30.744000px;}
._32{width:36.432000px;}
._27{width:37.881600px;}
._17{width:38.952000px;}
._28{width:40.137120px;}
._31{width:41.958480px;}
._30{width:45.360000px;}
._34{width:52.164720px;}
._35{width:54.127200px;}
._29{width:63.936000px;}
._2a{width:65.136000px;}
._7{width:68.828880px;}
._9{width:73.830960px;}
._8{width:74.884800px;}
._2e{width:95.587920px;}
._2d{width:96.659280px;}
._2f{width:119.160000px;}
._10{width:126.232560px;}
._e{width:127.817040px;}
._f{width:131.816640px;}
._a{width:135.979200px;}
._b{width:144.597600px;}
._6{width:158.865840px;}
._36{width:163.800000px;}
._37{width:165.063360px;}
._c{width:241.867200px;}
._d{width:274.065120px;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4{bottom:57.960000px;}
.y3{bottom:78.696000px;}
.y2{bottom:97.596000px;}
.y1{bottom:116.496000px;}
.y2d{bottom:137.556000px;}
.y54{bottom:141.336000px;}
.ya6{bottom:142.056000px;}
.yc4{bottom:148.536000px;}
.y81{bottom:157.530000px;}
.y2c{bottom:158.250000px;}
.y87{bottom:164.370000px;}
.yc3{bottom:169.230000px;}
.y53{bottom:172.290000px;}
.y6d{bottom:177.330000px;}
.ya5{bottom:178.230000px;}
.y2b{bottom:178.950000px;}
.y80{bottom:188.490000px;}
.yc2{bottom:189.930000px;}
.y2a{bottom:199.650000px;}
.y86{bottom:201.270000px;}
.y52{bottom:203.430000px;}
.y6c{bottom:208.290000px;}
.ya4{bottom:212.070000px;}
.y29{bottom:220.350000px;}
.yc1{bottom:222.690000px;}
.y7f{bottom:233.850000px;}
.y51{bottom:234.390000px;}
.y6b{bottom:239.430000px;}
.y28{bottom:241.050000px;}
.ya3{bottom:243.210000px;}
.yc0{bottom:243.390000px;}
.y27{bottom:261.750000px;}
.ybf{bottom:264.090000px;}
.y50{bottom:265.350000px;}
.y7e{bottom:267.870000px;}
.y6a{bottom:270.390000px;}
.ya2{bottom:274.170000px;}
.y26{bottom:282.450000px;}
.y4f{bottom:296.490000px;}
.ybe{bottom:296.670000px;}
.y7d{bottom:298.830000px;}
.y69{bottom:301.350000px;}
.y25{bottom:303.150000px;}
.ya1{bottom:305.310000px;}
.ybd{bottom:317.370000px;}
.y24{bottom:323.850000px;}
.y4e{bottom:327.450000px;}
.y7c{bottom:329.970000px;}
.y68{bottom:332.490000px;}
.ya0{bottom:336.270000px;}
.ybc{bottom:338.115000px;}
.y23{bottom:344.595000px;}
.y4d{bottom:358.635000px;}
.ybb{bottom:358.815000px;}
.y7b{bottom:360.975000px;}
.y67{bottom:363.495000px;}
.y22{bottom:365.295000px;}
.y9f{bottom:367.455000px;}
.yba{bottom:379.515000px;}
.y21{bottom:385.995000px;}
.y4c{bottom:389.595000px;}
.y7a{bottom:392.115000px;}
.y66{bottom:394.635000px;}
.y9e{bottom:398.415000px;}
.y20{bottom:406.695000px;}
.yb9{bottom:412.275000px;}
.y4b{bottom:420.735000px;}
.y79{bottom:423.075000px;}
.y65{bottom:425.595000px;}
.y1f{bottom:427.395000px;}
.y9d{bottom:429.555000px;}
.yb8{bottom:432.975000px;}
.y1e{bottom:448.095000px;}
.y4a{bottom:451.695000px;}
.y92{bottom:452.955000px;}
.yb7{bottom:453.675000px;}
.y78{bottom:454.215000px;}
.y64{bottom:456.735000px;}
.y9c{bottom:460.515000px;}
.y1d{bottom:468.795000px;}
.y91{bottom:481.575000px;}
.y49{bottom:482.835000px;}
.y77{bottom:485.175000px;}
.yb6{bottom:486.255000px;}
.y63{bottom:487.695000px;}
.y1c{bottom:489.495000px;}
.y9b{bottom:491.655000px;}
.yb5{bottom:506.955000px;}
.y90{bottom:510.015000px;}
.y48{bottom:513.795000px;}
.y76{bottom:516.315000px;}
.y62{bottom:518.835000px;}
.y9a{bottom:522.615000px;}
.y1b{bottom:524.595000px;}
.yb4{bottom:527.655000px;}
.ydc{bottom:529.275000px;}
.y8f{bottom:538.455000px;}
.y1a{bottom:544.035000px;}
.y47{bottom:544.935000px;}
.y75{bottom:547.275000px;}
.yb3{bottom:548.355000px;}
.y61{bottom:549.795000px;}
.y99{bottom:553.755000px;}
.y19{bottom:564.735000px;}
.y8e{bottom:568.875000px;}
.ydb{bottom:571.035000px;}
.y46{bottom:575.895000px;}
.y74{bottom:578.235000px;}
.y60{bottom:580.935000px;}
.yb2{bottom:581.115000px;}
.y98{bottom:584.715000px;}
.y18{bottom:592.275000px;}
.yb1{bottom:601.815000px;}
.yda{bottom:603.645000px;}
.y17{bottom:606.165000px;}
.y45{bottom:609.405000px;}
.y5f{bottom:611.925000px;}
.y97{bottom:615.885000px;}
.yb0{bottom:622.545000px;}
.yd9{bottom:624.345000px;}
.y16{bottom:633.705000px;}
.y73{bottom:640.365000px;}
.y5e{bottom:643.065000px;}
.yaf{bottom:643.245000px;}
.yd8{bottom:645.045000px;}
.y96{bottom:646.845000px;}
.y15{bottom:647.565000px;}
.y85{bottom:652.065000px;}
.y44{bottom:657.465000px;}
.yd7{bottom:665.745000px;}
.y72{bottom:671.505000px;}
.y5d{bottom:674.025000px;}
.y14{bottom:675.105000px;}
.yae{bottom:676.005000px;}
.y95{bottom:677.985000px;}
.y84{bottom:680.505000px;}
.yd6{bottom:686.445000px;}
.y43{bottom:693.105000px;}
.yad{bottom:696.705000px;}
.y71{bottom:702.465000px;}
.y5c{bottom:705.165000px;}
.yd5{bottom:707.145000px;}
.y83{bottom:708.945000px;}
.y13{bottom:711.105000px;}
.y42{bottom:713.805000px;}
.yac{bottom:717.405000px;}
.y70{bottom:733.605000px;}
.y5b{bottom:736.125000px;}
.y82{bottom:737.385000px;}
.yab{bottom:738.105000px;}
.yd4{bottom:739.905000px;}
.y94{bottom:740.085000px;}
.y12{bottom:740.265000px;}
.y41{bottom:746.565000px;}
.yd3{bottom:760.605000px;}
.y11{bottom:764.205000px;}
.y6f{bottom:766.905000px;}
.y40{bottom:767.265000px;}
.yaa{bottom:770.685000px;}
.y93{bottom:771.765000px;}
.yd2{bottom:781.305000px;}
.y3f{bottom:787.965000px;}
.y10{bottom:788.145000px;}
.ya9{bottom:791.385000px;}
.y5a{bottom:798.225000px;}
.y6e{bottom:799.485000px;}
.yd1{bottom:802.005000px;}
.y3e{bottom:808.665000px;}
.ya8{bottom:812.085000px;}
.yf{bottom:822.165000px;}
.y3d{bottom:829.365000px;}
.yd0{bottom:834.765000px;}
.y3c{bottom:850.065000px;}
.ycf{bottom:855.465000px;}
.ya7{bottom:857.445000px;}
.y59{bottom:860.325000px;}
.ye{bottom:861.765000px;}
.y3b{bottom:870.810000px;}
.yce{bottom:876.210000px;}
.yd{bottom:889.530000px;}
.y3a{bottom:891.510000px;}
.ycd{bottom:896.910000px;}
.y39{bottom:912.210000px;}
.yc{bottom:917.070000px;}
.y58{bottom:922.470000px;}
.ycc{bottom:929.490000px;}
.y38{bottom:932.910000px;}
.yb{bottom:944.610000px;}
.ycb{bottom:950.190000px;}
.y37{bottom:953.610000px;}
.yca{bottom:970.890000px;}
.y36{bottom:974.310000px;}
.y8d{bottom:974.850000px;}
.ya{bottom:984.210000px;}
.y57{bottom:984.570000px;}
.yc9{bottom:991.590000px;}
.y35{bottom:995.010000px;}
.y8c{bottom:1003.290000px;}
.yc8{bottom:1012.290000px;}
.y34{bottom:1015.710000px;}
.y9{bottom:1023.810000px;}
.y8b{bottom:1031.730000px;}
.y33{bottom:1036.410000px;}
.yc7{bottom:1045.050000px;}
.y56{bottom:1046.670000px;}
.y8{bottom:1051.530000px;}
.y32{bottom:1057.110000px;}
.y8a{bottom:1060.170000px;}
.yc6{bottom:1065.750000px;}
.y31{bottom:1077.810000px;}
.y7{bottom:1079.070000px;}
.yc5{bottom:1086.450000px;}
.y30{bottom:1098.510000px;}
.y89{bottom:1100.670000px;}
.y6{bottom:1106.610000px;}
.y55{bottom:1108.770000px;}
.y2f{bottom:1119.210000px;}
.y5{bottom:1134.330000px;}
.y2e{bottom:1139.940000px;}
.y88{bottom:1141.200000px;}
.h7{height:43.246406px;}
.hc{height:58.833281px;}
.h9{height:59.343750px;}
.h2{height:59.383125px;}
.h3{height:60.855469px;}
.hd{height:63.949219px;}
.h8{height:64.546875px;}
.h6{height:70.606406px;}
.hb{height:74.820586px;}
.ha{height:75.519844px;}
.h4{height:85.052461px;}
.h5{height:85.847344px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.655987px;}
.x2{left:138.275987px;}
.x4{left:140.615987px;}
.x12{left:142.595987px;}
.xd{left:146.195987px;}
.x11{left:148.355987px;}
.x3{left:154.469987px;}
.xc{left:156.629987px;}
.x15{left:158.609987px;}
.x8{left:163.469987px;}
.x6{left:172.649987px;}
.xb{left:180.749987px;}
.x9{left:281.774987px;}
.xa{left:305.534987px;}
.x5{left:308.234987px;}
.x7{left:315.254987px;}
.xe{left:347.294987px;}
.x16{left:349.274987px;}
.x13{left:376.274987px;}
.x10{left:446.654987px;}
.x17{left:705.389987px;}
.x14{left:714.389987px;}
.xf{left:749.489987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls9{letter-spacing:-4.480000pt;}
.ls6{letter-spacing:-0.233067pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls1{letter-spacing:6.400000pt;}
.ls3{letter-spacing:14.080000pt;}
.ws1{word-spacing:-21.280000pt;}
.ws5{word-spacing:-19.040000pt;}
.ws6{word-spacing:-18.720000pt;}
.ws7{word-spacing:-16.192000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.991467pt;}
.ws0{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.486933pt;}
.wsa{word-spacing:-11.520000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws4{word-spacing:0.000000pt;}
._33{margin-left:-8.032640pt;}
._1{margin-left:-7.065600pt;}
._4{margin-left:-5.958400pt;}
._5{margin-left:-4.511360pt;}
._3{margin-left:-3.403520pt;}
._11{margin-left:-2.298240pt;}
._0{margin-left:-1.295360pt;}
._2{width:1.041493pt;}
._14{width:2.431147pt;}
._19{width:3.456853pt;}
._1d{width:4.409387pt;}
._1f{width:5.589973pt;}
._15{width:7.082667pt;}
._1e{width:8.396373pt;}
._1a{width:9.599573pt;}
._13{width:10.752427pt;}
._1c{width:12.160000pt;}
._20{width:13.120000pt;}
._1b{width:14.016000pt;}
._16{width:14.912000pt;}
._18{width:16.912640pt;}
._12{width:17.873920pt;}
._21{width:18.986667pt;}
._22{width:20.032000pt;}
._23{width:21.696000pt;}
._26{width:22.842027pt;}
._25{width:23.850667pt;}
._2c{width:24.771840pt;}
._2b{width:26.005333pt;}
._24{width:27.328000pt;}
._32{width:32.384000pt;}
._27{width:33.672533pt;}
._17{width:34.624000pt;}
._28{width:35.677440pt;}
._31{width:37.296427pt;}
._30{width:40.320000pt;}
._34{width:46.368640pt;}
._35{width:48.113067pt;}
._29{width:56.832000pt;}
._2a{width:57.898667pt;}
._7{width:61.181227pt;}
._9{width:65.627520pt;}
._8{width:66.564267pt;}
._2e{width:84.967040pt;}
._2d{width:85.919360pt;}
._2f{width:105.920000pt;}
._10{width:112.206720pt;}
._e{width:113.615147pt;}
._f{width:117.170347pt;}
._a{width:120.870400pt;}
._b{width:128.531200pt;}
._6{width:141.214080pt;}
._36{width:145.600000pt;}
._37{width:146.722987pt;}
._c{width:214.993067pt;}
._d{width:243.613440pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:51.520000pt;}
.y3{bottom:69.952000pt;}
.y2{bottom:86.752000pt;}
.y1{bottom:103.552000pt;}
.y2d{bottom:122.272000pt;}
.y54{bottom:125.632000pt;}
.ya6{bottom:126.272000pt;}
.yc4{bottom:132.032000pt;}
.y81{bottom:140.026667pt;}
.y2c{bottom:140.666667pt;}
.y87{bottom:146.106667pt;}
.yc3{bottom:150.426667pt;}
.y53{bottom:153.146667pt;}
.y6d{bottom:157.626667pt;}
.ya5{bottom:158.426667pt;}
.y2b{bottom:159.066667pt;}
.y80{bottom:167.546667pt;}
.yc2{bottom:168.826667pt;}
.y2a{bottom:177.466667pt;}
.y86{bottom:178.906667pt;}
.y52{bottom:180.826667pt;}
.y6c{bottom:185.146667pt;}
.ya4{bottom:188.506667pt;}
.y29{bottom:195.866667pt;}
.yc1{bottom:197.946667pt;}
.y7f{bottom:207.866667pt;}
.y51{bottom:208.346667pt;}
.y6b{bottom:212.826667pt;}
.y28{bottom:214.266667pt;}
.ya3{bottom:216.186667pt;}
.yc0{bottom:216.346667pt;}
.y27{bottom:232.666667pt;}
.ybf{bottom:234.746667pt;}
.y50{bottom:235.866667pt;}
.y7e{bottom:238.106667pt;}
.y6a{bottom:240.346667pt;}
.ya2{bottom:243.706667pt;}
.y26{bottom:251.066667pt;}
.y4f{bottom:263.546667pt;}
.ybe{bottom:263.706667pt;}
.y7d{bottom:265.626667pt;}
.y69{bottom:267.866667pt;}
.y25{bottom:269.466667pt;}
.ya1{bottom:271.386667pt;}
.ybd{bottom:282.106667pt;}
.y24{bottom:287.866667pt;}
.y4e{bottom:291.066667pt;}
.y7c{bottom:293.306667pt;}
.y68{bottom:295.546667pt;}
.ya0{bottom:298.906667pt;}
.ybc{bottom:300.546667pt;}
.y23{bottom:306.306667pt;}
.y4d{bottom:318.786667pt;}
.ybb{bottom:318.946667pt;}
.y7b{bottom:320.866667pt;}
.y67{bottom:323.106667pt;}
.y22{bottom:324.706667pt;}
.y9f{bottom:326.626667pt;}
.yba{bottom:337.346667pt;}
.y21{bottom:343.106667pt;}
.y4c{bottom:346.306667pt;}
.y7a{bottom:348.546667pt;}
.y66{bottom:350.786667pt;}
.y9e{bottom:354.146667pt;}
.y20{bottom:361.506667pt;}
.yb9{bottom:366.466667pt;}
.y4b{bottom:373.986667pt;}
.y79{bottom:376.066667pt;}
.y65{bottom:378.306667pt;}
.y1f{bottom:379.906667pt;}
.y9d{bottom:381.826667pt;}
.yb8{bottom:384.866667pt;}
.y1e{bottom:398.306667pt;}
.y4a{bottom:401.506667pt;}
.y92{bottom:402.626667pt;}
.yb7{bottom:403.266667pt;}
.y78{bottom:403.746667pt;}
.y64{bottom:405.986667pt;}
.y9c{bottom:409.346667pt;}
.y1d{bottom:416.706667pt;}
.y91{bottom:428.066667pt;}
.y49{bottom:429.186667pt;}
.y77{bottom:431.266667pt;}
.yb6{bottom:432.226667pt;}
.y63{bottom:433.506667pt;}
.y1c{bottom:435.106667pt;}
.y9b{bottom:437.026667pt;}
.yb5{bottom:450.626667pt;}
.y90{bottom:453.346667pt;}
.y48{bottom:456.706667pt;}
.y76{bottom:458.946667pt;}
.y62{bottom:461.186667pt;}
.y9a{bottom:464.546667pt;}
.y1b{bottom:466.306667pt;}
.yb4{bottom:469.026667pt;}
.ydc{bottom:470.466667pt;}
.y8f{bottom:478.626667pt;}
.y1a{bottom:483.586667pt;}
.y47{bottom:484.386667pt;}
.y75{bottom:486.466667pt;}
.yb3{bottom:487.426667pt;}
.y61{bottom:488.706667pt;}
.y99{bottom:492.226667pt;}
.y19{bottom:501.986667pt;}
.y8e{bottom:505.666667pt;}
.ydb{bottom:507.586667pt;}
.y46{bottom:511.906667pt;}
.y74{bottom:513.986667pt;}
.y60{bottom:516.386667pt;}
.yb2{bottom:516.546667pt;}
.y98{bottom:519.746667pt;}
.y18{bottom:526.466667pt;}
.yb1{bottom:534.946667pt;}
.yda{bottom:536.573333pt;}
.y17{bottom:538.813333pt;}
.y45{bottom:541.693333pt;}
.y5f{bottom:543.933333pt;}
.y97{bottom:547.453333pt;}
.yb0{bottom:553.373333pt;}
.yd9{bottom:554.973333pt;}
.y16{bottom:563.293333pt;}
.y73{bottom:569.213333pt;}
.y5e{bottom:571.613333pt;}
.yaf{bottom:571.773333pt;}
.yd8{bottom:573.373333pt;}
.y96{bottom:574.973333pt;}
.y15{bottom:575.613333pt;}
.y85{bottom:579.613333pt;}
.y44{bottom:584.413333pt;}
.yd7{bottom:591.773333pt;}
.y72{bottom:596.893333pt;}
.y5d{bottom:599.133333pt;}
.y14{bottom:600.093333pt;}
.yae{bottom:600.893333pt;}
.y95{bottom:602.653333pt;}
.y84{bottom:604.893333pt;}
.yd6{bottom:610.173333pt;}
.y43{bottom:616.093333pt;}
.yad{bottom:619.293333pt;}
.y71{bottom:624.413333pt;}
.y5c{bottom:626.813333pt;}
.yd5{bottom:628.573333pt;}
.y83{bottom:630.173333pt;}
.y13{bottom:632.093333pt;}
.y42{bottom:634.493333pt;}
.yac{bottom:637.693333pt;}
.y70{bottom:652.093333pt;}
.y5b{bottom:654.333333pt;}
.y82{bottom:655.453333pt;}
.yab{bottom:656.093333pt;}
.yd4{bottom:657.693333pt;}
.y94{bottom:657.853333pt;}
.y12{bottom:658.013333pt;}
.y41{bottom:663.613333pt;}
.yd3{bottom:676.093333pt;}
.y11{bottom:679.293333pt;}
.y6f{bottom:681.693333pt;}
.y40{bottom:682.013333pt;}
.yaa{bottom:685.053333pt;}
.y93{bottom:686.013333pt;}
.yd2{bottom:694.493333pt;}
.y3f{bottom:700.413333pt;}
.y10{bottom:700.573333pt;}
.ya9{bottom:703.453333pt;}
.y5a{bottom:709.533333pt;}
.y6e{bottom:710.653333pt;}
.yd1{bottom:712.893333pt;}
.y3e{bottom:718.813333pt;}
.ya8{bottom:721.853333pt;}
.yf{bottom:730.813333pt;}
.y3d{bottom:737.213333pt;}
.yd0{bottom:742.013333pt;}
.y3c{bottom:755.613333pt;}
.ycf{bottom:760.413333pt;}
.ya7{bottom:762.173333pt;}
.y59{bottom:764.733333pt;}
.ye{bottom:766.013333pt;}
.y3b{bottom:774.053333pt;}
.yce{bottom:778.853333pt;}
.yd{bottom:790.693333pt;}
.y3a{bottom:792.453333pt;}
.ycd{bottom:797.253333pt;}
.y39{bottom:810.853333pt;}
.yc{bottom:815.173333pt;}
.y58{bottom:819.973333pt;}
.ycc{bottom:826.213333pt;}
.y38{bottom:829.253333pt;}
.yb{bottom:839.653333pt;}
.ycb{bottom:844.613333pt;}
.y37{bottom:847.653333pt;}
.yca{bottom:863.013333pt;}
.y36{bottom:866.053333pt;}
.y8d{bottom:866.533333pt;}
.ya{bottom:874.853333pt;}
.y57{bottom:875.173333pt;}
.yc9{bottom:881.413333pt;}
.y35{bottom:884.453333pt;}
.y8c{bottom:891.813333pt;}
.yc8{bottom:899.813333pt;}
.y34{bottom:902.853333pt;}
.y9{bottom:910.053333pt;}
.y8b{bottom:917.093333pt;}
.y33{bottom:921.253333pt;}
.yc7{bottom:928.933333pt;}
.y56{bottom:930.373333pt;}
.y8{bottom:934.693333pt;}
.y32{bottom:939.653333pt;}
.y8a{bottom:942.373333pt;}
.yc6{bottom:947.333333pt;}
.y31{bottom:958.053333pt;}
.y7{bottom:959.173333pt;}
.yc5{bottom:965.733333pt;}
.y30{bottom:976.453333pt;}
.y89{bottom:978.373333pt;}
.y6{bottom:983.653333pt;}
.y55{bottom:985.573333pt;}
.y2f{bottom:994.853333pt;}
.y5{bottom:1008.293333pt;}
.y2e{bottom:1013.280000pt;}
.y88{bottom:1014.400000pt;}
.h7{height:38.441250pt;}
.hc{height:52.296250pt;}
.h9{height:52.750000pt;}
.h2{height:52.785000pt;}
.h3{height:54.093750pt;}
.hd{height:56.843750pt;}
.h8{height:57.375000pt;}
.h6{height:62.761250pt;}
.hb{height:66.507188pt;}
.ha{height:67.128750pt;}
.h4{height:75.602187pt;}
.h5{height:76.308750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.471988pt;}
.x2{left:122.911988pt;}
.x4{left:124.991988pt;}
.x12{left:126.751988pt;}
.xd{left:129.951988pt;}
.x11{left:131.871988pt;}
.x3{left:137.306655pt;}
.xc{left:139.226655pt;}
.x15{left:140.986655pt;}
.x8{left:145.306655pt;}
.x6{left:153.466655pt;}
.xb{left:160.666655pt;}
.x9{left:250.466655pt;}
.xa{left:271.586655pt;}
.x5{left:273.986655pt;}
.x7{left:280.226655pt;}
.xe{left:308.706655pt;}
.x16{left:310.466655pt;}
.x13{left:334.466655pt;}
.x10{left:397.026655pt;}
.x17{left:627.013322pt;}
.x14{left:635.013322pt;}
.xf{left:666.213322pt;}
}




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