
    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_a445ec057438155e03c045fb.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_dc16e3196997d351c55a0b48.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c1ca365d65fb5760701faad5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5e3559f2cc6fedbc5f1123d6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_cfe2c3c8d7babe442d60fd1a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7c0ca51bc79dea369beb1746.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d6c3e0362e5ee3d3f4f6fffe.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_65c922311a224a327b75b02e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.944824;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_1818bdcce89810c570c8be55.woff')format("woff");}.ff9{font-family:ff9;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-99.600000px;}
.v1{vertical-align:-97.200000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-1.200000px;}
.ls6{letter-spacing:-0.552000px;}
.ls3{letter-spacing:-0.096000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.600000px;}
.ls0{letter-spacing:773.730000px;}
.ls4{letter-spacing:957.330000px;}
.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;}
}
.ws0{word-spacing:-21.000000px;}
.ws2{word-spacing:-20.904000px;}
.ws6{word-spacing:-20.448000px;}
.ws5{word-spacing:-19.800000px;}
.ws3{word-spacing:-16.500000px;}
.ws4{word-spacing:-15.000000px;}
.ws1{word-spacing:0.000000px;}
._26{margin-left:-9.828000px;}
._27{margin-left:-8.736000px;}
._25{margin-left:-7.392000px;}
._28{margin-left:-5.712000px;}
._24{margin-left:-3.696000px;}
._10{margin-left:-2.430000px;}
._1{margin-left:-1.260000px;}
._0{width:1.008000px;}
._2{width:2.352000px;}
._16{width:3.726000px;}
._18{width:4.800000px;}
._17{width:6.804000px;}
._4{width:8.316000px;}
._3{width:9.492000px;}
._f{width:11.418000px;}
._5{width:12.516000px;}
._e{width:14.112000px;}
._d{width:15.204000px;}
._1e{width:16.212000px;}
._6{width:17.304000px;}
._7{width:18.648000px;}
._29{width:19.824000px;}
._12{width:22.674000px;}
._13{width:23.778000px;}
._11{width:25.452000px;}
._15{width:27.468000px;}
._a{width:28.476000px;}
._8{width:29.484000px;}
._9{width:30.576000px;}
._14{width:32.406000px;}
._21{width:33.504000px;}
._19{width:35.364000px;}
._1a{width:37.290000px;}
._b{width:38.724000px;}
._c{width:40.236000px;}
._1b{width:41.394000px;}
._1d{width:44.694000px;}
._1c{width:45.858000px;}
._20{width:46.956000px;}
._1f{width:47.964000px;}
._2a{width:51.744000px;}
._22{width:53.424000px;}
._23{width:54.684000px;}
._2b{width:201.348000px;}
._2c{width:202.440000px;}
._2e{width:447.210000px;}
._2d{width:448.398000px;}
._2f{width:843.222000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:60.000000px;}
.fs4{font-size:60.150000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y61{bottom:4.485000px;}
.y73{bottom:4.815000px;}
.y6f{bottom:5.070000px;}
.y67{bottom:5.082000px;}
.y75{bottom:5.085000px;}
.y6d{bottom:5.370000px;}
.y6a{bottom:5.382000px;}
.y64{bottom:5.385000px;}
.y50{bottom:13.470000px;}
.y5d{bottom:16.425000px;}
.y72{bottom:28.815000px;}
.y4f{bottom:29.055000px;}
.y6c{bottom:29.370000px;}
.y69{bottom:29.382000px;}
.y63{bottom:29.385000px;}
.y66{bottom:29.419500px;}
.y5c{bottom:32.025000px;}
.y41{bottom:37.305000px;}
.y4e{bottom:44.355000px;}
.y5b{bottom:47.325000px;}
.y2{bottom:53.137500px;}
.y1{bottom:59.137500px;}
.y4d{bottom:59.970000px;}
.y5a{bottom:62.925000px;}
.y68{bottom:87.655500px;}
.y2e{bottom:96.037500px;}
.y4c{bottom:101.145000px;}
.y3c{bottom:109.537500px;}
.y59{bottom:111.930000px;}
.y4b{bottom:116.730000px;}
.y2d{bottom:120.037500px;}
.y58{bottom:127.530000px;}
.y4a{bottom:132.345000px;}
.y40{bottom:132.825000px;}
.y3b{bottom:133.537500px;}
.y65{bottom:136.855500px;}
.y93{bottom:137.437500px;}
.y57{bottom:142.845000px;}
.y2c{bottom:144.337500px;}
.y49{bottom:147.645000px;}
.y3a{bottom:157.830000px;}
.y56{bottom:158.430000px;}
.y92{bottom:161.745000px;}
.y48{bottom:163.230000px;}
.y2b{bottom:168.375000px;}
.y39{bottom:181.875000px;}
.y91{bottom:185.775000px;}
.y62{bottom:185.790000px;}
.y2a{bottom:192.675000px;}
.y47{bottom:196.605000px;}
.y55{bottom:204.525000px;}
.y38{bottom:206.175000px;}
.y90{bottom:210.075000px;}
.y46{bottom:212.220000px;}
.y29{bottom:216.675000px;}
.y54{bottom:221.625000px;}
.y45{bottom:227.850000px;}
.y3f{bottom:228.345000px;}
.y37{bottom:230.175000px;}
.y8f{bottom:234.075000px;}
.y60{bottom:234.990000px;}
.y53{bottom:238.725000px;}
.y28{bottom:240.975000px;}
.y44{bottom:243.150000px;}
.y36{bottom:254.475000px;}
.y52{bottom:255.825000px;}
.y8e{bottom:258.375000px;}
.y43{bottom:258.750000px;}
.y5f{bottom:264.375000px;}
.y27{bottom:264.975000px;}
.y35{bottom:273.375000px;}
.y3d{bottom:273.600000px;}
.y8d{bottom:282.375000px;}
.y26{bottom:289.275000px;}
.y8c{bottom:306.675000px;}
.y3e{bottom:308.250000px;}
.y42{bottom:309.300000px;}
.y51{bottom:310.950000px;}
.y25{bottom:313.275000px;}
.y8b{bottom:330.675000px;}
.y24{bottom:337.620000px;}
.y8a{bottom:355.005000px;}
.y23{bottom:361.620000px;}
.y89{bottom:379.005000px;}
.y22{bottom:385.905000px;}
.y88{bottom:403.320000px;}
.y21{bottom:409.905000px;}
.y87{bottom:427.320000px;}
.y20{bottom:434.205000px;}
.y86{bottom:451.620000px;}
.y1f{bottom:458.205000px;}
.y1e{bottom:482.505000px;}
.y85{bottom:499.905000px;}
.y1d{bottom:506.550000px;}
.y84{bottom:523.950000px;}
.y1c{bottom:530.850000px;}
.y83{bottom:548.250000px;}
.y1b{bottom:554.850000px;}
.y82{bottom:572.250000px;}
.y1a{bottom:579.150000px;}
.y81{bottom:596.550000px;}
.y19{bottom:603.150000px;}
.y80{bottom:620.550000px;}
.y18{bottom:626.850000px;}
.y5e{bottom:627.450000px;}
.y7f{bottom:644.850000px;}
.y34{bottom:650.850000px;}
.y17{bottom:651.450000px;}
.y7e{bottom:668.850000px;}
.y16{bottom:675.780000px;}
.y7d{bottom:693.195000px;}
.y15{bottom:699.780000px;}
.y7c{bottom:717.195000px;}
.y14{bottom:724.080000px;}
.y7b{bottom:741.480000px;}
.y13{bottom:748.080000px;}
.y7a{bottom:765.480000px;}
.y12{bottom:772.380000px;}
.y79{bottom:789.795000px;}
.y11{bottom:796.380000px;}
.y78{bottom:809.310000px;}
.y10{bottom:820.695000px;}
.yf{bottom:844.725000px;}
.y77{bottom:858.540000px;}
.ye{bottom:869.025000px;}
.yd{bottom:893.025000px;}
.y76{bottom:907.440000px;}
.yc{bottom:917.325000px;}
.yb{bottom:941.325000px;}
.y74{bottom:956.640000px;}
.ya{bottom:965.625000px;}
.y9{bottom:989.025000px;}
.y33{bottom:989.625000px;}
.y71{bottom:1005.540000px;}
.y8{bottom:1013.955000px;}
.y7{bottom:1037.955000px;}
.y70{bottom:1059.255000px;}
.y6{bottom:1062.255000px;}
.y6e{bottom:1079.685000px;}
.y32{bottom:1086.255000px;}
.y5{bottom:1109.955000px;}
.y31{bottom:1110.570000px;}
.y6b{bottom:1128.585000px;}
.y4{bottom:1133.955000px;}
.y30{bottom:1134.570000px;}
.y3{bottom:1158.255000px;}
.y2f{bottom:1158.870000px;}
.hf{height:23.985000px;}
.he{height:41.894531px;}
.hd{height:46.083984px;}
.h13{height:48.270000px;}
.h12{height:48.282000px;}
.h10{height:48.285000px;}
.h11{height:48.319500px;}
.h14{height:48.322500px;}
.h6{height:58.652344px;}
.ha{height:58.886719px;}
.hb{height:59.033936px;}
.h15{height:60.867188px;}
.h3{height:61.670545px;}
.hc{height:64.775391px;}
.h9{height:70.628906px;}
.h5{height:82.400391px;}
.h2{height:82.441406px;}
.h4{height:84.656250px;}
.h16{height:86.338763px;}
.h17{height:87.445312px;}
.h8{height:96.750000px;}
.h7{height:348.600000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w6{width:153.327000px;}
.w3{width:156.627000px;}
.w7{width:287.460000px;}
.w5{width:288.705000px;}
.w4{width:291.360000px;}
.w8{width:296.205000px;}
.w2{width:892.800000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x47{left:7.800000px;}
.x44{left:9.600000px;}
.x2a{left:12.000000px;}
.x32{left:14.700000px;}
.x33{left:19.500000px;}
.x38{left:22.500000px;}
.x2b{left:27.300000px;}
.x46{left:28.500000px;}
.x3b{left:30.300000px;}
.x3a{left:33.300000px;}
.x2e{left:34.500000px;}
.x35{left:36.030000px;}
.x42{left:37.200000px;}
.x3c{left:39.600000px;}
.x2c{left:42.030000px;}
.x39{left:43.845000px;}
.x30{left:47.130000px;}
.x25{left:49.500000px;}
.x37{left:51.300000px;}
.x3f{left:55.800000px;}
.x29{left:57.345000px;}
.x27{left:60.000000px;}
.x43{left:65.700000px;}
.x45{left:68.745000px;}
.x24{left:77.437500px;}
.x2d{left:81.630000px;}
.x2{left:84.937500px;}
.x40{left:93.030000px;}
.x3d{left:101.430000px;}
.x31{left:104.745000px;}
.x36{left:112.245000px;}
.x2f{left:114.045000px;}
.x34{left:118.245000px;}
.x3{left:119.737500px;}
.x5{left:127.537500px;}
.x3e{left:231.375000px;}
.x26{left:234.975000px;}
.x9{left:246.600000px;}
.xb{left:249.945000px;}
.x6{left:258.375000px;}
.x4{left:260.475000px;}
.xa{left:266.475000px;}
.x7{left:377.520000px;}
.xc{left:419.070000px;}
.x1{left:430.650000px;}
.x16{left:438.405000px;}
.x10{left:441.120000px;}
.x13{left:443.250000px;}
.x17{left:447.450000px;}
.xf{left:455.250000px;}
.x18{left:456.450000px;}
.xe{left:458.550000px;}
.x14{left:460.650000px;}
.x12{left:461.850000px;}
.xd{left:466.950000px;}
.x15{left:482.850000px;}
.x11{left:485.250000px;}
.x19{left:491.850000px;}
.x41{left:519.750000px;}
.x28{left:527.250000px;}
.x1a{left:627.375000px;}
.x21{left:631.245000px;}
.x1e{left:632.745000px;}
.x1b{left:637.755000px;}
.x22{left:647.745000px;}
.x1d{left:653.070000px;}
.x1f{left:655.530000px;}
.x1c{left:657.870000px;}
.x23{left:661.245000px;}
.x20{left:663.945000px;}
.x8{left:832.455000px;}
@media print{
.v2{vertical-align:-88.533333pt;}
.v1{vertical-align:-86.400000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-1.066667pt;}
.ls6{letter-spacing:-0.490667pt;}
.ls3{letter-spacing:-0.085333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.533333pt;}
.ls0{letter-spacing:687.760000pt;}
.ls4{letter-spacing:850.960000pt;}
.ws0{word-spacing:-18.666667pt;}
.ws2{word-spacing:-18.581333pt;}
.ws6{word-spacing:-18.176000pt;}
.ws5{word-spacing:-17.600000pt;}
.ws3{word-spacing:-14.666667pt;}
.ws4{word-spacing:-13.333333pt;}
.ws1{word-spacing:0.000000pt;}
._26{margin-left:-8.736000pt;}
._27{margin-left:-7.765333pt;}
._25{margin-left:-6.570667pt;}
._28{margin-left:-5.077333pt;}
._24{margin-left:-3.285333pt;}
._10{margin-left:-2.160000pt;}
._1{margin-left:-1.120000pt;}
._0{width:0.896000pt;}
._2{width:2.090667pt;}
._16{width:3.312000pt;}
._18{width:4.266667pt;}
._17{width:6.048000pt;}
._4{width:7.392000pt;}
._3{width:8.437333pt;}
._f{width:10.149333pt;}
._5{width:11.125333pt;}
._e{width:12.544000pt;}
._d{width:13.514667pt;}
._1e{width:14.410667pt;}
._6{width:15.381333pt;}
._7{width:16.576000pt;}
._29{width:17.621333pt;}
._12{width:20.154667pt;}
._13{width:21.136000pt;}
._11{width:22.624000pt;}
._15{width:24.416000pt;}
._a{width:25.312000pt;}
._8{width:26.208000pt;}
._9{width:27.178667pt;}
._14{width:28.805333pt;}
._21{width:29.781333pt;}
._19{width:31.434667pt;}
._1a{width:33.146667pt;}
._b{width:34.421333pt;}
._c{width:35.765333pt;}
._1b{width:36.794667pt;}
._1d{width:39.728000pt;}
._1c{width:40.762667pt;}
._20{width:41.738667pt;}
._1f{width:42.634667pt;}
._2a{width:45.994667pt;}
._22{width:47.488000pt;}
._23{width:48.608000pt;}
._2b{width:178.976000pt;}
._2c{width:179.946667pt;}
._2e{width:397.520000pt;}
._2d{width:398.576000pt;}
._2f{width:749.530667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:53.466667pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:3.986667pt;}
.y73{bottom:4.280000pt;}
.y6f{bottom:4.506667pt;}
.y67{bottom:4.517333pt;}
.y75{bottom:4.520000pt;}
.y6d{bottom:4.773333pt;}
.y6a{bottom:4.784000pt;}
.y64{bottom:4.786667pt;}
.y50{bottom:11.973333pt;}
.y5d{bottom:14.600000pt;}
.y72{bottom:25.613333pt;}
.y4f{bottom:25.826667pt;}
.y6c{bottom:26.106667pt;}
.y69{bottom:26.117333pt;}
.y63{bottom:26.120000pt;}
.y66{bottom:26.150667pt;}
.y5c{bottom:28.466667pt;}
.y41{bottom:33.160000pt;}
.y4e{bottom:39.426667pt;}
.y5b{bottom:42.066667pt;}
.y2{bottom:47.233333pt;}
.y1{bottom:52.566667pt;}
.y4d{bottom:53.306667pt;}
.y5a{bottom:55.933333pt;}
.y68{bottom:77.916000pt;}
.y2e{bottom:85.366667pt;}
.y4c{bottom:89.906667pt;}
.y3c{bottom:97.366667pt;}
.y59{bottom:99.493333pt;}
.y4b{bottom:103.760000pt;}
.y2d{bottom:106.700000pt;}
.y58{bottom:113.360000pt;}
.y4a{bottom:117.640000pt;}
.y40{bottom:118.066667pt;}
.y3b{bottom:118.700000pt;}
.y65{bottom:121.649333pt;}
.y93{bottom:122.166667pt;}
.y57{bottom:126.973333pt;}
.y2c{bottom:128.300000pt;}
.y49{bottom:131.240000pt;}
.y3a{bottom:140.293333pt;}
.y56{bottom:140.826667pt;}
.y92{bottom:143.773333pt;}
.y48{bottom:145.093333pt;}
.y2b{bottom:149.666667pt;}
.y39{bottom:161.666667pt;}
.y91{bottom:165.133333pt;}
.y62{bottom:165.146667pt;}
.y2a{bottom:171.266667pt;}
.y47{bottom:174.760000pt;}
.y55{bottom:181.800000pt;}
.y38{bottom:183.266667pt;}
.y90{bottom:186.733333pt;}
.y46{bottom:188.640000pt;}
.y29{bottom:192.600000pt;}
.y54{bottom:197.000000pt;}
.y45{bottom:202.533333pt;}
.y3f{bottom:202.973333pt;}
.y37{bottom:204.600000pt;}
.y8f{bottom:208.066667pt;}
.y60{bottom:208.880000pt;}
.y53{bottom:212.200000pt;}
.y28{bottom:214.200000pt;}
.y44{bottom:216.133333pt;}
.y36{bottom:226.200000pt;}
.y52{bottom:227.400000pt;}
.y8e{bottom:229.666667pt;}
.y43{bottom:230.000000pt;}
.y5f{bottom:235.000000pt;}
.y27{bottom:235.533333pt;}
.y35{bottom:243.000000pt;}
.y3d{bottom:243.200000pt;}
.y8d{bottom:251.000000pt;}
.y26{bottom:257.133333pt;}
.y8c{bottom:272.600000pt;}
.y3e{bottom:274.000000pt;}
.y42{bottom:274.933333pt;}
.y51{bottom:276.400000pt;}
.y25{bottom:278.466667pt;}
.y8b{bottom:293.933333pt;}
.y24{bottom:300.106667pt;}
.y8a{bottom:315.560000pt;}
.y23{bottom:321.440000pt;}
.y89{bottom:336.893333pt;}
.y22{bottom:343.026667pt;}
.y88{bottom:358.506667pt;}
.y21{bottom:364.360000pt;}
.y87{bottom:379.840000pt;}
.y20{bottom:385.960000pt;}
.y86{bottom:401.440000pt;}
.y1f{bottom:407.293333pt;}
.y1e{bottom:428.893333pt;}
.y85{bottom:444.360000pt;}
.y1d{bottom:450.266667pt;}
.y84{bottom:465.733333pt;}
.y1c{bottom:471.866667pt;}
.y83{bottom:487.333333pt;}
.y1b{bottom:493.200000pt;}
.y82{bottom:508.666667pt;}
.y1a{bottom:514.800000pt;}
.y81{bottom:530.266667pt;}
.y19{bottom:536.133333pt;}
.y80{bottom:551.600000pt;}
.y18{bottom:557.200000pt;}
.y5e{bottom:557.733333pt;}
.y7f{bottom:573.200000pt;}
.y34{bottom:578.533333pt;}
.y17{bottom:579.066667pt;}
.y7e{bottom:594.533333pt;}
.y16{bottom:600.693333pt;}
.y7d{bottom:616.173333pt;}
.y15{bottom:622.026667pt;}
.y7c{bottom:637.506667pt;}
.y14{bottom:643.626667pt;}
.y7b{bottom:659.093333pt;}
.y13{bottom:664.960000pt;}
.y7a{bottom:680.426667pt;}
.y12{bottom:686.560000pt;}
.y79{bottom:702.040000pt;}
.y11{bottom:707.893333pt;}
.y78{bottom:719.386667pt;}
.y10{bottom:729.506667pt;}
.yf{bottom:750.866667pt;}
.y77{bottom:763.146667pt;}
.ye{bottom:772.466667pt;}
.yd{bottom:793.800000pt;}
.y76{bottom:806.613333pt;}
.yc{bottom:815.400000pt;}
.yb{bottom:836.733333pt;}
.y74{bottom:850.346667pt;}
.ya{bottom:858.333333pt;}
.y9{bottom:879.133333pt;}
.y33{bottom:879.666667pt;}
.y71{bottom:893.813333pt;}
.y8{bottom:901.293333pt;}
.y7{bottom:922.626667pt;}
.y70{bottom:941.560000pt;}
.y6{bottom:944.226667pt;}
.y6e{bottom:959.720000pt;}
.y32{bottom:965.560000pt;}
.y5{bottom:986.626667pt;}
.y31{bottom:987.173333pt;}
.y6b{bottom:1003.186667pt;}
.y4{bottom:1007.960000pt;}
.y30{bottom:1008.506667pt;}
.y3{bottom:1029.560000pt;}
.y2f{bottom:1030.106667pt;}
.hf{height:21.320000pt;}
.he{height:37.239583pt;}
.hd{height:40.963542pt;}
.h13{height:42.906667pt;}
.h12{height:42.917333pt;}
.h10{height:42.920000pt;}
.h11{height:42.950667pt;}
.h14{height:42.953333pt;}
.h6{height:52.135417pt;}
.ha{height:52.343750pt;}
.hb{height:52.474609pt;}
.h15{height:54.104167pt;}
.h3{height:54.818262pt;}
.hc{height:57.578125pt;}
.h9{height:62.781250pt;}
.h5{height:73.244792pt;}
.h2{height:73.281250pt;}
.h4{height:75.250000pt;}
.h16{height:76.745567pt;}
.h17{height:77.729167pt;}
.h8{height:86.000000pt;}
.h7{height:309.866667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w6{width:136.290667pt;}
.w3{width:139.224000pt;}
.w7{width:255.520000pt;}
.w5{width:256.626667pt;}
.w4{width:258.986667pt;}
.w8{width:263.293333pt;}
.w2{width:793.600000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x47{left:6.933333pt;}
.x44{left:8.533333pt;}
.x2a{left:10.666667pt;}
.x32{left:13.066667pt;}
.x33{left:17.333333pt;}
.x38{left:20.000000pt;}
.x2b{left:24.266667pt;}
.x46{left:25.333333pt;}
.x3b{left:26.933333pt;}
.x3a{left:29.600000pt;}
.x2e{left:30.666667pt;}
.x35{left:32.026667pt;}
.x42{left:33.066667pt;}
.x3c{left:35.200000pt;}
.x2c{left:37.360000pt;}
.x39{left:38.973333pt;}
.x30{left:41.893333pt;}
.x25{left:44.000000pt;}
.x37{left:45.600000pt;}
.x3f{left:49.600000pt;}
.x29{left:50.973333pt;}
.x27{left:53.333333pt;}
.x43{left:58.400000pt;}
.x45{left:61.106667pt;}
.x24{left:68.833333pt;}
.x2d{left:72.560000pt;}
.x2{left:75.500000pt;}
.x40{left:82.693333pt;}
.x3d{left:90.160000pt;}
.x31{left:93.106667pt;}
.x36{left:99.773333pt;}
.x2f{left:101.373333pt;}
.x34{left:105.106667pt;}
.x3{left:106.433333pt;}
.x5{left:113.366667pt;}
.x3e{left:205.666667pt;}
.x26{left:208.866667pt;}
.x9{left:219.200000pt;}
.xb{left:222.173333pt;}
.x6{left:229.666667pt;}
.x4{left:231.533333pt;}
.xa{left:236.866667pt;}
.x7{left:335.573333pt;}
.xc{left:372.506667pt;}
.x1{left:382.800000pt;}
.x16{left:389.693333pt;}
.x10{left:392.106667pt;}
.x13{left:394.000000pt;}
.x17{left:397.733333pt;}
.xf{left:404.666667pt;}
.x18{left:405.733333pt;}
.xe{left:407.600000pt;}
.x14{left:409.466667pt;}
.x12{left:410.533333pt;}
.xd{left:415.066667pt;}
.x15{left:429.200000pt;}
.x11{left:431.333333pt;}
.x19{left:437.200000pt;}
.x41{left:462.000000pt;}
.x28{left:468.666667pt;}
.x1a{left:557.666667pt;}
.x21{left:561.106667pt;}
.x1e{left:562.440000pt;}
.x1b{left:566.893333pt;}
.x22{left:575.773333pt;}
.x1d{left:580.506667pt;}
.x1f{left:582.693333pt;}
.x1c{left:584.773333pt;}
.x23{left:587.773333pt;}
.x20{left:590.173333pt;}
.x8{left:739.960000pt;}
}




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