
    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_eb7f69ba0897dfdf5e7f5d28.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e55bd2f155d68e59a4afe23b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e4f6b54149bdd94fbdd929cf.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b331987ce81e0898ba08af3c.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6be2ccedb4de175ab657a200.woff')format("woff");}.ff5{font-family:ff5;line-height:0.738770;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_8908b2dd0180e541e6cb8809.woff')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7677062ecea41e11d486fb73.woff')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lse{letter-spacing:-1.080000px;}
.lsf{letter-spacing:-0.924000px;}
.lsb{letter-spacing:-0.774000px;}
.ls6{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.460200px;}
.ls5{letter-spacing:-0.457800px;}
.lsc{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.305400px;}
.lsa{letter-spacing:-0.106800px;}
.lsd{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.206400px;}
.ls8{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.513600px;}
.ls12{letter-spacing:11.466720px;}
.ls13{letter-spacing:41.706720px;}
.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:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws1{word-spacing:-16.102200px;}
.ws9{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.146400px;}
.ws6{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.833200px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._1{margin-left:-2541.138480px;}
._3{margin-left:-1459.111680px;}
._6{margin-left:-1452.651480px;}
._5{margin-left:-938.816640px;}
._7{margin-left:-585.889920px;}
._4{margin-left:-8.213760px;}
._e{margin-left:-5.061600px;}
._d{margin-left:-3.638880px;}
._13{margin-left:-2.316960px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._f{width:2.405280px;}
._12{width:3.750480px;}
._15{width:5.089680px;}
._1d{width:6.105600px;}
._19{width:7.111440px;}
._10{width:8.201520px;}
._11{width:9.777600px;}
._16{width:11.304720px;}
._1a{width:12.748560px;}
._17{width:13.784880px;}
._18{width:16.742880px;}
._c{width:17.811360px;}
._14{width:19.073520px;}
._b{width:20.588400px;}
._1c{width:24.670080px;}
._1b{width:25.782480px;}
._a{width:34.200000px;}
._9{width:39.658320px;}
._8{width:41.464080px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yf8{bottom:10.620000px;}
.yf7{bottom:30.600000px;}
.yf4{bottom:34.740000px;}
.yf6{bottom:50.400000px;}
.y6{bottom:60.120000px;}
.yf5{bottom:70.200000px;}
.ycc{bottom:94.680000px;}
.y9a{bottom:102.420000px;}
.yea{bottom:106.020000px;}
.y67{bottom:107.460000px;}
.ycb{bottom:114.660000px;}
.y99{bottom:122.220000px;}
.y66{bottom:127.260000px;}
.y31{bottom:127.800000px;}
.yca{bottom:134.460000px;}
.y98{bottom:142.380000px;}
.y65{bottom:147.240000px;}
.y30{bottom:147.600000px;}
.ye9{bottom:149.580000px;}
.yc9{bottom:154.260000px;}
.y97{bottom:162.180000px;}
.y64{bottom:167.040000px;}
.y2f{bottom:167.580000px;}
.ye8{bottom:171.360000px;}
.yc8{bottom:174.060000px;}
.y96{bottom:181.980000px;}
.y63{bottom:186.840000px;}
.y2e{bottom:187.380000px;}
.ye7{bottom:191.160000px;}
.yc7{bottom:194.220000px;}
.y95{bottom:201.960000px;}
.y62{bottom:206.820000px;}
.y2d{bottom:207.360000px;}
.ye6{bottom:210.990000px;}
.yc6{bottom:214.050000px;}
.y94{bottom:221.790000px;}
.y61{bottom:226.830000px;}
.y2c{bottom:227.190000px;}
.ye5{bottom:230.970000px;}
.yc5{bottom:233.850000px;}
.y93{bottom:241.770000px;}
.y60{bottom:246.630000px;}
.y2b{bottom:247.170000px;}
.ye4{bottom:250.950000px;}
.yc4{bottom:253.650000px;}
.y92{bottom:261.570000px;}
.y5f{bottom:266.430000px;}
.y2a{bottom:266.970000px;}
.ye3{bottom:270.750000px;}
.yc3{bottom:273.450000px;}
.y91{bottom:281.550000px;}
.y5e{bottom:286.230000px;}
.y29{bottom:286.770000px;}
.ye2{bottom:290.550000px;}
.y90{bottom:301.350000px;}
.yc2{bottom:302.430000px;}
.y28{bottom:306.570000px;}
.y5d{bottom:309.270000px;}
.ye1{bottom:310.530000px;}
.y8f{bottom:321.150000px;}
.yc1{bottom:322.230000px;}
.y27{bottom:326.370000px;}
.y5c{bottom:330.510000px;}
.y8e{bottom:340.950000px;}
.yc0{bottom:342.030000px;}
.y26{bottom:346.530000px;}
.ye0{bottom:350.310000px;}
.y5b{bottom:350.670000px;}
.y8d{bottom:361.110000px;}
.ybf{bottom:361.830000px;}
.y25{bottom:366.330000px;}
.ydf{bottom:370.110000px;}
.y5a{bottom:370.470000px;}
.y8c{bottom:380.910000px;}
.ybe{bottom:381.630000px;}
.y24{bottom:386.130000px;}
.yde{bottom:390.090000px;}
.y59{bottom:390.270000px;}
.y8b{bottom:400.710000px;}
.ybd{bottom:401.610000px;}
.y23{bottom:406.110000px;}
.y58{bottom:410.070000px;}
.y8a{bottom:420.510000px;}
.ybc{bottom:421.590000px;}
.y22{bottom:425.910000px;}
.y57{bottom:429.870000px;}
.y89{bottom:440.310000px;}
.ybb{bottom:441.390000px;}
.y21{bottom:445.755000px;}
.y56{bottom:449.715000px;}
.y88{bottom:460.335000px;}
.yba{bottom:461.235000px;}
.y20{bottom:468.075000px;}
.y55{bottom:469.695000px;}
.ydd{bottom:469.875000px;}
.y87{bottom:480.135000px;}
.yb9{bottom:481.215000px;}
.y1f{bottom:486.255000px;}
.y54{bottom:489.675000px;}
.y86{bottom:499.935000px;}
.yb8{bottom:501.015000px;}
.y1e{bottom:508.215000px;}
.y53{bottom:509.475000px;}
.y85{bottom:519.735000px;}
.yb7{bottom:520.815000px;}
.y52{bottom:529.455000px;}
.ydc{bottom:529.635000px;}
.y1d{bottom:537.015000px;}
.yb6{bottom:540.615000px;}
.y84{bottom:548.535000px;}
.y51{bottom:549.255000px;}
.ydb{bottom:549.435000px;}
.y1c{bottom:556.995000px;}
.yb5{bottom:560.775000px;}
.y83{bottom:568.515000px;}
.y50{bottom:569.055000px;}
.yda{bottom:569.235000px;}
.y1b{bottom:576.795000px;}
.yb4{bottom:580.575000px;}
.y82{bottom:588.315000px;}
.y4f{bottom:588.855000px;}
.yd9{bottom:589.035000px;}
.y1a{bottom:596.595000px;}
.yb3{bottom:600.375000px;}
.y81{bottom:608.115000px;}
.y4e{bottom:608.655000px;}
.yd8{bottom:609.015000px;}
.y19{bottom:616.395000px;}
.yb2{bottom:620.175000px;}
.y80{bottom:627.915000px;}
.y4d{bottom:628.815000px;}
.yd7{bottom:628.995000px;}
.y18{bottom:636.195000px;}
.yb1{bottom:639.975000px;}
.y7f{bottom:647.715000px;}
.y4c{bottom:648.615000px;}
.yd6{bottom:648.795000px;}
.y17{bottom:656.175000px;}
.yb0{bottom:659.955000px;}
.y7e{bottom:667.875000px;}
.y4b{bottom:668.415000px;}
.yd5{bottom:668.595000px;}
.y16{bottom:675.975000px;}
.yaf{bottom:679.935000px;}
.y7d{bottom:687.705000px;}
.y4a{bottom:688.245000px;}
.yd4{bottom:688.605000px;}
.y15{bottom:695.805000px;}
.yae{bottom:699.765000px;}
.y7c{bottom:707.505000px;}
.y49{bottom:708.225000px;}
.yd3{bottom:708.405000px;}
.y14{bottom:715.605000px;}
.yad{bottom:719.745000px;}
.y7b{bottom:727.305000px;}
.y48{bottom:728.025000px;}
.yd2{bottom:728.205000px;}
.y13{bottom:735.405000px;}
.yac{bottom:739.545000px;}
.y7a{bottom:747.285000px;}
.y47{bottom:747.825000px;}
.yd1{bottom:748.005000px;}
.y12{bottom:755.385000px;}
.yab{bottom:759.345000px;}
.y79{bottom:767.085000px;}
.y46{bottom:767.805000px;}
.yd0{bottom:768.165000px;}
.y11{bottom:775.185000px;}
.yaa{bottom:779.145000px;}
.y78{bottom:786.885000px;}
.y45{bottom:787.965000px;}
.y10{bottom:794.985000px;}
.ya9{bottom:799.305000px;}
.y77{bottom:806.685000px;}
.y44{bottom:807.765000px;}
.yf{bottom:814.785000px;}
.ya8{bottom:819.105000px;}
.y76{bottom:826.845000px;}
.y43{bottom:827.565000px;}
.ye{bottom:836.925000px;}
.ya7{bottom:838.905000px;}
.y75{bottom:846.645000px;}
.y42{bottom:847.365000px;}
.ya6{bottom:858.705000px;}
.yd{bottom:864.645000px;}
.y74{bottom:866.445000px;}
.y41{bottom:867.345000px;}
.ya5{bottom:878.505000px;}
.y73{bottom:886.245000px;}
.yc{bottom:887.145000px;}
.ya4{bottom:898.485000px;}
.yb{bottom:904.605000px;}
.y72{bottom:906.045000px;}
.y40{bottom:906.945000px;}
.ycf{bottom:907.125000px;}
.ya3{bottom:918.330000px;}
.ya{bottom:926.070000px;}
.y3f{bottom:926.790000px;}
.yce{bottom:927.150000px;}
.ya2{bottom:938.130000px;}
.y71{bottom:945.870000px;}
.y3e{bottom:946.590000px;}
.ycd{bottom:946.950000px;}
.y9{bottom:949.470000px;}
.yf3{bottom:960.270000px;}
.y70{bottom:965.670000px;}
.y3d{bottom:966.750000px;}
.ya1{bottom:966.930000px;}
.yf2{bottom:980.070000px;}
.y8{bottom:981.150000px;}
.y6f{bottom:985.830000px;}
.y3c{bottom:986.550000px;}
.ya0{bottom:986.730000px;}
.yf1{bottom:1002.030000px;}
.y6e{bottom:1005.630000px;}
.y3b{bottom:1006.350000px;}
.y9f{bottom:1006.710000px;}
.y7{bottom:1013.010000px;}
.yf0{bottom:1021.830000px;}
.y6d{bottom:1025.430000px;}
.y3a{bottom:1026.330000px;}
.y9e{bottom:1026.510000px;}
.yef{bottom:1041.630000px;}
.y6c{bottom:1045.230000px;}
.y39{bottom:1046.130000px;}
.y9d{bottom:1046.310000px;}
.y5{bottom:1051.350000px;}
.yee{bottom:1061.430000px;}
.y6b{bottom:1065.030000px;}
.y38{bottom:1066.110000px;}
.y4{bottom:1082.130000px;}
.yed{bottom:1082.310000px;}
.y6a{bottom:1085.010000px;}
.y37{bottom:1085.910000px;}
.y9c{bottom:1086.270000px;}
.yec{bottom:1102.290000px;}
.y69{bottom:1104.810000px;}
.y36{bottom:1105.890000px;}
.y9b{bottom:1106.070000px;}
.y3{bottom:1112.910000px;}
.yeb{bottom:1124.070000px;}
.y68{bottom:1124.610000px;}
.y35{bottom:1125.870000px;}
.y2{bottom:1143.870000px;}
.y34{bottom:1145.670000px;}
.y33{bottom:1173.240000px;}
.y1{bottom:1177.740000px;}
.y32{bottom:1193.400000px;}
.he{height:2.010938px;}
.h8{height:27.147656px;}
.h9{height:41.726953px;}
.h6{height:42.164648px;}
.hb{height:43.506914px;}
.hc{height:43.681992px;}
.h5{height:46.251562px;}
.h7{height:53.224453px;}
.h4{height:58.819922px;}
.h3{height:59.436914px;}
.h2{height:67.565039px;}
.ha{height:67.824844px;}
.hd{height:84.240000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:210.855000px;}
.w4{width:580.965000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.740000px;}
.x1{left:54.179987px;}
.x5{left:72.359987px;}
.x3{left:74.519987px;}
.x4{left:75.599987px;}
.x2{left:80.315987px;}
.x6{left:108.035987px;}
.x7{left:191.370000px;}
.x8{left:264.855000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lse{letter-spacing:-0.960000pt;}
.lsf{letter-spacing:-0.821333pt;}
.lsb{letter-spacing:-0.688000pt;}
.ls6{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.409067pt;}
.ls5{letter-spacing:-0.406933pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.271467pt;}
.lsa{letter-spacing:-0.094933pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.183467pt;}
.ls8{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.456533pt;}
.ls12{letter-spacing:10.192640pt;}
.ls13{letter-spacing:37.072640pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws1{word-spacing:-14.313067pt;}
.ws9{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.463467pt;}
.ws6{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.185067pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._1{margin-left:-2258.789760pt;}
._3{margin-left:-1296.988160pt;}
._6{margin-left:-1291.245760pt;}
._5{margin-left:-834.503680pt;}
._7{margin-left:-520.791040pt;}
._4{margin-left:-7.301120pt;}
._e{margin-left:-4.499200pt;}
._d{margin-left:-3.234560pt;}
._13{margin-left:-2.059520pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._f{width:2.138027pt;}
._12{width:3.333760pt;}
._15{width:4.524160pt;}
._1d{width:5.427200pt;}
._19{width:6.321280pt;}
._10{width:7.290240pt;}
._11{width:8.691200pt;}
._16{width:10.048640pt;}
._1a{width:11.332053pt;}
._17{width:12.253227pt;}
._18{width:14.882560pt;}
._c{width:15.832320pt;}
._14{width:16.954240pt;}
._b{width:18.300800pt;}
._1c{width:21.928960pt;}
._1b{width:22.917760pt;}
._a{width:30.400000pt;}
._9{width:35.251840pt;}
._8{width:36.856960pt;}
.fs7{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yf8{bottom:9.440000pt;}
.yf7{bottom:27.200000pt;}
.yf4{bottom:30.880000pt;}
.yf6{bottom:44.800000pt;}
.y6{bottom:53.440000pt;}
.yf5{bottom:62.400000pt;}
.ycc{bottom:84.160000pt;}
.y9a{bottom:91.040000pt;}
.yea{bottom:94.240000pt;}
.y67{bottom:95.520000pt;}
.ycb{bottom:101.920000pt;}
.y99{bottom:108.640000pt;}
.y66{bottom:113.120000pt;}
.y31{bottom:113.600000pt;}
.yca{bottom:119.520000pt;}
.y98{bottom:126.560000pt;}
.y65{bottom:130.880000pt;}
.y30{bottom:131.200000pt;}
.ye9{bottom:132.960000pt;}
.yc9{bottom:137.120000pt;}
.y97{bottom:144.160000pt;}
.y64{bottom:148.480000pt;}
.y2f{bottom:148.960000pt;}
.ye8{bottom:152.320000pt;}
.yc8{bottom:154.720000pt;}
.y96{bottom:161.760000pt;}
.y63{bottom:166.080000pt;}
.y2e{bottom:166.560000pt;}
.ye7{bottom:169.920000pt;}
.yc7{bottom:172.640000pt;}
.y95{bottom:179.520000pt;}
.y62{bottom:183.840000pt;}
.y2d{bottom:184.320000pt;}
.ye6{bottom:187.546667pt;}
.yc6{bottom:190.266667pt;}
.y94{bottom:197.146667pt;}
.y61{bottom:201.626667pt;}
.y2c{bottom:201.946667pt;}
.ye5{bottom:205.306667pt;}
.yc5{bottom:207.866667pt;}
.y93{bottom:214.906667pt;}
.y60{bottom:219.226667pt;}
.y2b{bottom:219.706667pt;}
.ye4{bottom:223.066667pt;}
.yc4{bottom:225.466667pt;}
.y92{bottom:232.506667pt;}
.y5f{bottom:236.826667pt;}
.y2a{bottom:237.306667pt;}
.ye3{bottom:240.666667pt;}
.yc3{bottom:243.066667pt;}
.y91{bottom:250.266667pt;}
.y5e{bottom:254.426667pt;}
.y29{bottom:254.906667pt;}
.ye2{bottom:258.266667pt;}
.y90{bottom:267.866667pt;}
.yc2{bottom:268.826667pt;}
.y28{bottom:272.506667pt;}
.y5d{bottom:274.906667pt;}
.ye1{bottom:276.026667pt;}
.y8f{bottom:285.466667pt;}
.yc1{bottom:286.426667pt;}
.y27{bottom:290.106667pt;}
.y5c{bottom:293.786667pt;}
.y8e{bottom:303.066667pt;}
.yc0{bottom:304.026667pt;}
.y26{bottom:308.026667pt;}
.ye0{bottom:311.386667pt;}
.y5b{bottom:311.706667pt;}
.y8d{bottom:320.986667pt;}
.ybf{bottom:321.626667pt;}
.y25{bottom:325.626667pt;}
.ydf{bottom:328.986667pt;}
.y5a{bottom:329.306667pt;}
.y8c{bottom:338.586667pt;}
.ybe{bottom:339.226667pt;}
.y24{bottom:343.226667pt;}
.yde{bottom:346.746667pt;}
.y59{bottom:346.906667pt;}
.y8b{bottom:356.186667pt;}
.ybd{bottom:356.986667pt;}
.y23{bottom:360.986667pt;}
.y58{bottom:364.506667pt;}
.y8a{bottom:373.786667pt;}
.ybc{bottom:374.746667pt;}
.y22{bottom:378.586667pt;}
.y57{bottom:382.106667pt;}
.y89{bottom:391.386667pt;}
.ybb{bottom:392.346667pt;}
.y21{bottom:396.226667pt;}
.y56{bottom:399.746667pt;}
.y88{bottom:409.186667pt;}
.yba{bottom:409.986667pt;}
.y20{bottom:416.066667pt;}
.y55{bottom:417.506667pt;}
.ydd{bottom:417.666667pt;}
.y87{bottom:426.786667pt;}
.yb9{bottom:427.746667pt;}
.y1f{bottom:432.226667pt;}
.y54{bottom:435.266667pt;}
.y86{bottom:444.386667pt;}
.yb8{bottom:445.346667pt;}
.y1e{bottom:451.746667pt;}
.y53{bottom:452.866667pt;}
.y85{bottom:461.986667pt;}
.yb7{bottom:462.946667pt;}
.y52{bottom:470.626667pt;}
.ydc{bottom:470.786667pt;}
.y1d{bottom:477.346667pt;}
.yb6{bottom:480.546667pt;}
.y84{bottom:487.586667pt;}
.y51{bottom:488.226667pt;}
.ydb{bottom:488.386667pt;}
.y1c{bottom:495.106667pt;}
.yb5{bottom:498.466667pt;}
.y83{bottom:505.346667pt;}
.y50{bottom:505.826667pt;}
.yda{bottom:505.986667pt;}
.y1b{bottom:512.706667pt;}
.yb4{bottom:516.066667pt;}
.y82{bottom:522.946667pt;}
.y4f{bottom:523.426667pt;}
.yd9{bottom:523.586667pt;}
.y1a{bottom:530.306667pt;}
.yb3{bottom:533.666667pt;}
.y81{bottom:540.546667pt;}
.y4e{bottom:541.026667pt;}
.yd8{bottom:541.346667pt;}
.y19{bottom:547.906667pt;}
.yb2{bottom:551.266667pt;}
.y80{bottom:558.146667pt;}
.y4d{bottom:558.946667pt;}
.yd7{bottom:559.106667pt;}
.y18{bottom:565.506667pt;}
.yb1{bottom:568.866667pt;}
.y7f{bottom:575.746667pt;}
.y4c{bottom:576.546667pt;}
.yd6{bottom:576.706667pt;}
.y17{bottom:583.266667pt;}
.yb0{bottom:586.626667pt;}
.y7e{bottom:593.666667pt;}
.y4b{bottom:594.146667pt;}
.yd5{bottom:594.306667pt;}
.y16{bottom:600.866667pt;}
.yaf{bottom:604.386667pt;}
.y7d{bottom:611.293333pt;}
.y4a{bottom:611.773333pt;}
.yd4{bottom:612.093333pt;}
.y15{bottom:618.493333pt;}
.yae{bottom:622.013333pt;}
.y7c{bottom:628.893333pt;}
.y49{bottom:629.533333pt;}
.yd3{bottom:629.693333pt;}
.y14{bottom:636.093333pt;}
.yad{bottom:639.773333pt;}
.y7b{bottom:646.493333pt;}
.y48{bottom:647.133333pt;}
.yd2{bottom:647.293333pt;}
.y13{bottom:653.693333pt;}
.yac{bottom:657.373333pt;}
.y7a{bottom:664.253333pt;}
.y47{bottom:664.733333pt;}
.yd1{bottom:664.893333pt;}
.y12{bottom:671.453333pt;}
.yab{bottom:674.973333pt;}
.y79{bottom:681.853333pt;}
.y46{bottom:682.493333pt;}
.yd0{bottom:682.813333pt;}
.y11{bottom:689.053333pt;}
.yaa{bottom:692.573333pt;}
.y78{bottom:699.453333pt;}
.y45{bottom:700.413333pt;}
.y10{bottom:706.653333pt;}
.ya9{bottom:710.493333pt;}
.y77{bottom:717.053333pt;}
.y44{bottom:718.013333pt;}
.yf{bottom:724.253333pt;}
.ya8{bottom:728.093333pt;}
.y76{bottom:734.973333pt;}
.y43{bottom:735.613333pt;}
.ye{bottom:743.933333pt;}
.ya7{bottom:745.693333pt;}
.y75{bottom:752.573333pt;}
.y42{bottom:753.213333pt;}
.ya6{bottom:763.293333pt;}
.yd{bottom:768.573333pt;}
.y74{bottom:770.173333pt;}
.y41{bottom:770.973333pt;}
.ya5{bottom:780.893333pt;}
.y73{bottom:787.773333pt;}
.yc{bottom:788.573333pt;}
.ya4{bottom:798.653333pt;}
.yb{bottom:804.093333pt;}
.y72{bottom:805.373333pt;}
.y40{bottom:806.173333pt;}
.ycf{bottom:806.333333pt;}
.ya3{bottom:816.293333pt;}
.ya{bottom:823.173333pt;}
.y3f{bottom:823.813333pt;}
.yce{bottom:824.133333pt;}
.ya2{bottom:833.893333pt;}
.y71{bottom:840.773333pt;}
.y3e{bottom:841.413333pt;}
.ycd{bottom:841.733333pt;}
.y9{bottom:843.973333pt;}
.yf3{bottom:853.573333pt;}
.y70{bottom:858.373333pt;}
.y3d{bottom:859.333333pt;}
.ya1{bottom:859.493333pt;}
.yf2{bottom:871.173333pt;}
.y8{bottom:872.133333pt;}
.y6f{bottom:876.293333pt;}
.y3c{bottom:876.933333pt;}
.ya0{bottom:877.093333pt;}
.yf1{bottom:890.693333pt;}
.y6e{bottom:893.893333pt;}
.y3b{bottom:894.533333pt;}
.y9f{bottom:894.853333pt;}
.y7{bottom:900.453333pt;}
.yf0{bottom:908.293333pt;}
.y6d{bottom:911.493333pt;}
.y3a{bottom:912.293333pt;}
.y9e{bottom:912.453333pt;}
.yef{bottom:925.893333pt;}
.y6c{bottom:929.093333pt;}
.y39{bottom:929.893333pt;}
.y9d{bottom:930.053333pt;}
.y5{bottom:934.533333pt;}
.yee{bottom:943.493333pt;}
.y6b{bottom:946.693333pt;}
.y38{bottom:947.653333pt;}
.y4{bottom:961.893333pt;}
.yed{bottom:962.053333pt;}
.y6a{bottom:964.453333pt;}
.y37{bottom:965.253333pt;}
.y9c{bottom:965.573333pt;}
.yec{bottom:979.813333pt;}
.y69{bottom:982.053333pt;}
.y36{bottom:983.013333pt;}
.y9b{bottom:983.173333pt;}
.y3{bottom:989.253333pt;}
.yeb{bottom:999.173333pt;}
.y68{bottom:999.653333pt;}
.y35{bottom:1000.773333pt;}
.y2{bottom:1016.773333pt;}
.y34{bottom:1018.373333pt;}
.y33{bottom:1042.880000pt;}
.y1{bottom:1046.880000pt;}
.y32{bottom:1060.800000pt;}
.he{height:1.787500pt;}
.h8{height:24.131250pt;}
.h9{height:37.090625pt;}
.h6{height:37.479688pt;}
.hb{height:38.672812pt;}
.hc{height:38.828437pt;}
.h5{height:41.112500pt;}
.h7{height:47.310625pt;}
.h4{height:52.284375pt;}
.h3{height:52.832812pt;}
.h2{height:60.057813pt;}
.ha{height:60.288750pt;}
.hd{height:74.880000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:187.426667pt;}
.w4{width:516.413333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.880000pt;}
.x1{left:48.159988pt;}
.x5{left:64.319988pt;}
.x3{left:66.239988pt;}
.x4{left:67.199988pt;}
.x2{left:71.391988pt;}
.x6{left:96.031988pt;}
.x7{left:170.106667pt;}
.x8{left:235.426667pt;}
}




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