
    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_0be394c88021a4aef9a19dd0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.171875;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_d3621fa363c4cbe04ac6c959.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3384101e82e4a61c219125da.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_187cf135d0bee09e54c79950.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8b7ea89efa2e444c905586b4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.933594;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_0a8920ebe758c3b426d22e10.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_30180ca0505d9672379c1e8b.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.504000px;}
.lsa{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.072000px;}
.ls4{letter-spacing:-0.058320px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.lse{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.252000px;}
.ls9{letter-spacing:0.288000px;}
.ls2{letter-spacing:1.440000px;}
.ls0{letter-spacing:2.334240px;}
.lsd{letter-spacing:103.104000px;}
.ls7{letter-spacing:139.104000px;}
.ls8{letter-spacing:169.122720px;}
.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;}
}
.ws3{word-spacing:-59.760000px;}
.ws7{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.496000px;}
.ws0{word-spacing:-13.447440px;}
.ws2{word-spacing:0.000000px;}
._8{margin-left:-4.680000px;}
._b{margin-left:-3.605280px;}
._2{margin-left:-2.377920px;}
._1{margin-left:-1.333440px;}
._0{width:1.484640px;}
._9{width:2.574720px;}
._1b{width:3.596160px;}
._e{width:4.683840px;}
._d{width:5.841120px;}
._c{width:6.877440px;}
._13{width:8.677440px;}
._16{width:10.200000px;}
._17{width:11.416800px;}
._11{width:13.248000px;}
._12{width:14.358720px;}
._7{width:15.906720px;}
._1f{width:16.934880px;}
._15{width:19.080000px;}
._14{width:20.360640px;}
._1d{width:21.724320px;}
._1c{width:23.184000px;}
._20{width:24.675840px;}
._5{width:26.064000px;}
._6{width:27.452160px;}
._3{width:29.232000px;}
._4{width:30.843360px;}
._1e{width:33.624000px;}
._1a{width:35.598240px;}
._2c{width:36.796800px;}
._a{width:38.232000px;}
._f{width:39.744000px;}
._21{width:40.828800px;}
._10{width:41.952000px;}
._19{width:43.882560px;}
._18{width:45.469440px;}
._2f{width:46.701120px;}
._31{width:56.424000px;}
._32{width:57.432000px;}
._2e{width:60.432000px;}
._2d{width:61.536000px;}
._30{width:74.352000px;}
._29{width:75.391680px;}
._25{width:76.752000px;}
._24{width:77.880000px;}
._26{width:79.776000px;}
._22{width:92.496000px;}
._23{width:94.059360px;}
._2a{width:107.040000px;}
._2b{width:108.555360px;}
._28{width:163.884000px;}
._27{width:164.928000px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y39{bottom:7.380000px;}
.y40{bottom:7.560000px;}
.y38{bottom:31.140000px;}
.y65{bottom:31.170000px;}
.y7b{bottom:31.185000px;}
.y3b{bottom:31.320000px;}
.y81{bottom:31.350000px;}
.y6c{bottom:31.365000px;}
.y67{bottom:54.900000px;}
.y64{bottom:54.930000px;}
.y37{bottom:55.080000px;}
.y7{bottom:57.600000px;}
.y63{bottom:78.870000px;}
.y33{bottom:94.860000px;}
.y35{bottom:95.220000px;}
.y83{bottom:102.600000px;}
.y76{bottom:110.700000px;}
.y60{bottom:111.420000px;}
.y32{bottom:118.980000px;}
.y82{bottom:127.080000px;}
.y75{bottom:134.460000px;}
.y5f{bottom:135.180000px;}
.y31{bottom:142.740000px;}
.y80{bottom:151.560000px;}
.y74{bottom:158.220000px;}
.y5e{bottom:159.120000px;}
.y30{bottom:166.500000px;}
.y73{bottom:182.190000px;}
.y5d{bottom:182.910000px;}
.y2f{bottom:190.470000px;}
.y7f{bottom:200.010000px;}
.y72{bottom:205.950000px;}
.y5c{bottom:206.670000px;}
.y2e{bottom:214.230000px;}
.y71{bottom:229.350000px;}
.y5b{bottom:230.430000px;}
.y2d{bottom:237.990000px;}
.y70{bottom:246.810000px;}
.y7e{bottom:248.430000px;}
.y5a{bottom:254.370000px;}
.y2c{bottom:261.750000px;}
.y6f{bottom:271.470000px;}
.y59{bottom:278.130000px;}
.y2b{bottom:285.510000px;}
.y6e{bottom:295.950000px;}
.y7d{bottom:297.390000px;}
.y58{bottom:301.890000px;}
.ya5{bottom:307.830000px;}
.y2a{bottom:309.450000px;}
.y57{bottom:325.650000px;}
.ya4{bottom:331.770000px;}
.y29{bottom:333.210000px;}
.y6d{bottom:344.370000px;}
.y7c{bottom:345.810000px;}
.y56{bottom:349.590000px;}
.ya3{bottom:355.530000px;}
.y28{bottom:356.970000px;}
.y55{bottom:373.350000px;}
.ya2{bottom:379.290000px;}
.y27{bottom:380.730000px;}
.y6b{bottom:392.610000px;}
.y7a{bottom:394.230000px;}
.y54{bottom:397.110000px;}
.ya1{bottom:403.050000px;}
.y26{bottom:404.670000px;}
.y53{bottom:420.915000px;}
.ya0{bottom:427.035000px;}
.y25{bottom:428.475000px;}
.y6a{bottom:441.075000px;}
.y79{bottom:442.515000px;}
.y52{bottom:444.675000px;}
.y9f{bottom:450.795000px;}
.y24{bottom:452.235000px;}
.y69{bottom:465.555000px;}
.y51{bottom:468.615000px;}
.y9e{bottom:474.555000px;}
.y23{bottom:475.995000px;}
.y78{bottom:490.935000px;}
.y50{bottom:492.375000px;}
.y9d{bottom:498.315000px;}
.y22{bottom:499.935000px;}
.y68{bottom:513.975000px;}
.y4f{bottom:516.135000px;}
.y9c{bottom:522.255000px;}
.y21{bottom:523.695000px;}
.y77{bottom:539.355000px;}
.y4e{bottom:539.895000px;}
.y9b{bottom:546.015000px;}
.y20{bottom:547.455000px;}
.y66{bottom:562.395000px;}
.y4d{bottom:563.835000px;}
.y9a{bottom:569.775000px;}
.y1f{bottom:571.215000px;}
.y4c{bottom:587.595000px;}
.y99{bottom:593.535000px;}
.y1e{bottom:595.155000px;}
.y4b{bottom:611.355000px;}
.y98{bottom:617.295000px;}
.y1d{bottom:618.915000px;}
.y62{bottom:634.575000px;}
.y4a{bottom:635.115000px;}
.y97{bottom:641.235000px;}
.y1c{bottom:642.675000px;}
.y49{bottom:659.085000px;}
.y96{bottom:665.025000px;}
.y1b{bottom:666.465000px;}
.y48{bottom:682.845000px;}
.y95{bottom:688.785000px;}
.y1a{bottom:690.405000px;}
.y47{bottom:706.605000px;}
.y94{bottom:712.545000px;}
.y19{bottom:714.165000px;}
.y46{bottom:730.365000px;}
.y93{bottom:736.485000px;}
.y18{bottom:737.925000px;}
.y45{bottom:754.305000px;}
.y92{bottom:760.245000px;}
.y17{bottom:761.685000px;}
.y44{bottom:777.705000px;}
.y91{bottom:784.005000px;}
.y16{bottom:785.445000px;}
.y43{bottom:795.165000px;}
.y90{bottom:807.765000px;}
.y15{bottom:809.385000px;}
.y8f{bottom:831.705000px;}
.y14{bottom:833.145000px;}
.y42{bottom:843.585000px;}
.y8e{bottom:855.465000px;}
.y13{bottom:856.905000px;}
.y41{bottom:868.065000px;}
.y8d{bottom:879.225000px;}
.y12{bottom:880.665000px;}
.y3f{bottom:892.545000px;}
.y8c{bottom:902.670000px;}
.y11{bottom:904.650000px;}
.y3e{bottom:917.250000px;}
.y8b{bottom:926.970000px;}
.y10{bottom:928.410000px;}
.y3d{bottom:941.730000px;}
.y8a{bottom:950.730000px;}
.yf{bottom:951.810000px;}
.y34{bottom:952.170000px;}
.y3c{bottom:966.390000px;}
.y89{bottom:974.490000px;}
.ye{bottom:975.930000px;}
.y3a{bottom:990.870000px;}
.y88{bottom:998.250000px;}
.yd{bottom:999.870000px;}
.y87{bottom:1022.190000px;}
.yc{bottom:1023.630000px;}
.y86{bottom:1045.950000px;}
.yb{bottom:1047.390000px;}
.y36{bottom:1063.050000px;}
.y85{bottom:1069.350000px;}
.ya{bottom:1071.150000px;}
.y84{bottom:1086.810000px;}
.y9{bottom:1095.090000px;}
.y8{bottom:1118.490000px;}
.y61{bottom:1118.850000px;}
.y6{bottom:1144.080000px;}
.y5{bottom:1164.780000px;}
.y4{bottom:1183.140000px;}
.y3{bottom:1201.320000px;}
.y2{bottom:1219.680000px;}
.y1{bottom:1238.040000px;}
.h8{height:23.760000px;}
.h10{height:23.940000px;}
.h9{height:23.976000px;}
.ha{height:47.520000px;}
.h11{height:47.556000px;}
.he{height:47.700000px;}
.hf{height:47.736000px;}
.h2{height:61.189805px;}
.h4{height:65.884219px;}
.h6{height:70.664062px;}
.hd{height:71.280000px;}
.h7{height:71.460000px;}
.h5{height:72.562500px;}
.hb{height:74.004654px;}
.h3{height:84.898125px;}
.hc{height:95.256000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:58.500000px;}
.wc{width:59.760000px;}
.wb{width:62.640000px;}
.w10{width:65.160000px;}
.w11{width:65.556000px;}
.wa{width:69.876000px;}
.w6{width:115.740000px;}
.w13{width:117.360000px;}
.w4{width:119.340000px;}
.w8{width:125.676000px;}
.wd{width:128.016000px;}
.w15{width:129.420000px;}
.w5{width:130.716000px;}
.w17{width:137.376000px;}
.w7{width:138.456000px;}
.w12{width:176.070000px;}
.w16{width:191.910000px;}
.we{width:212.250000px;}
.w3{width:214.275000px;}
.w14{width:260.535000px;}
.wf{width:294.195000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x38{left:8.640000px;}
.x1c{left:10.080000px;}
.x37{left:11.880000px;}
.xd{left:13.716000px;}
.x35{left:15.660000px;}
.xe{left:16.956000px;}
.x36{left:18.180000px;}
.x43{left:19.260000px;}
.x39{left:20.730000px;}
.x3c{left:21.996000px;}
.x1e{left:23.400000px;}
.x19{left:25.740000px;}
.x20{left:27.765000px;}
.x2d{left:29.160000px;}
.x1f{left:30.420000px;}
.x1b{left:32.220000px;}
.x1a{left:34.200000px;}
.x4e{left:36.180000px;}
.x1d{left:37.260000px;}
.x22{left:38.700000px;}
.x3a{left:40.530000px;}
.x21{left:41.805000px;}
.x26{left:43.200000px;}
.x23{left:44.280000px;}
.x27{left:45.900000px;}
.x24{left:48.285000px;}
.x4c{left:49.680000px;}
.x28{left:52.785000px;}
.x25{left:53.856000px;}
.x4d{left:55.305000px;}
.x15{left:57.780000px;}
.x11{left:59.580000px;}
.x18{left:62.496000px;}
.x32{left:63.930000px;}
.x13{left:65.370000px;}
.x17{left:69.165000px;}
.x29{left:70.230000px;}
.x4f{left:71.310000px;}
.x41{left:72.360000px;}
.x51{left:73.470000px;}
.x2a{left:75.270000px;}
.xf{left:78.690000px;}
.xc{left:84.959987px;}
.x3f{left:87.840000px;}
.x2b{left:91.470000px;}
.x3b{left:92.565000px;}
.x49{left:95.970000px;}
.x46{left:102.810000px;}
.x34{left:106.065000px;}
.x4b{left:107.310000px;}
.x45{left:108.570000px;}
.x50{left:111.630000px;}
.x44{left:116.130000px;}
.x42{left:123.690000px;}
.xb{left:138.095987px;}
.x8{left:170.309987px;}
.x2c{left:212.430000px;}
.x7{left:223.589987px;}
.xa{left:232.409987px;}
.x5{left:250.229987px;}
.x2e{left:271.830000px;}
.x9{left:291.674987px;}
.x10{left:300.855000px;}
.x2f{left:342.435000px;}
.x47{left:347.115000px;}
.x3{left:350.534987px;}
.x3d{left:380.775000px;}
.x30{left:405.795000px;}
.x52{left:412.454987px;}
.x12{left:420.915000px;}
.x4{left:433.874987px;}
.x6{left:446.474987px;}
.x2{left:457.094987px;}
.x31{left:466.275000px;}
.x48{left:477.255000px;}
.x1{left:510.404987px;}
.x3e{left:513.105000px;}
.x14{left:552.345000px;}
.x33{left:595.005000px;}
.x16{left:668.805000px;}
.x4a{left:669.885000px;}
.x40{left:689.910000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.448000pt;}
.lsa{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:-0.051840pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.224000pt;}
.ls9{letter-spacing:0.256000pt;}
.ls2{letter-spacing:1.280000pt;}
.ls0{letter-spacing:2.074880pt;}
.lsd{letter-spacing:91.648000pt;}
.ls7{letter-spacing:123.648000pt;}
.ls8{letter-spacing:150.331307pt;}
.ws3{word-spacing:-53.120000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.552000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws2{word-spacing:0.000000pt;}
._8{margin-left:-4.160000pt;}
._b{margin-left:-3.204693pt;}
._2{margin-left:-2.113707pt;}
._1{margin-left:-1.185280pt;}
._0{width:1.319680pt;}
._9{width:2.288640pt;}
._1b{width:3.196587pt;}
._e{width:4.163413pt;}
._d{width:5.192107pt;}
._c{width:6.113280pt;}
._13{width:7.713280pt;}
._16{width:9.066667pt;}
._17{width:10.148267pt;}
._11{width:11.776000pt;}
._12{width:12.763307pt;}
._7{width:14.139307pt;}
._1f{width:15.053227pt;}
._15{width:16.960000pt;}
._14{width:18.098347pt;}
._1d{width:19.310507pt;}
._1c{width:20.608000pt;}
._20{width:21.934080pt;}
._5{width:23.168000pt;}
._6{width:24.401920pt;}
._3{width:25.984000pt;}
._4{width:27.416320pt;}
._1e{width:29.888000pt;}
._1a{width:31.642880pt;}
._2c{width:32.708267pt;}
._a{width:33.984000pt;}
._f{width:35.328000pt;}
._21{width:36.292267pt;}
._10{width:37.290667pt;}
._19{width:39.006720pt;}
._18{width:40.417280pt;}
._2f{width:41.512107pt;}
._31{width:50.154667pt;}
._32{width:51.050667pt;}
._2e{width:53.717333pt;}
._2d{width:54.698667pt;}
._30{width:66.090667pt;}
._29{width:67.014827pt;}
._25{width:68.224000pt;}
._24{width:69.226667pt;}
._26{width:70.912000pt;}
._22{width:82.218667pt;}
._23{width:83.608320pt;}
._2a{width:95.146667pt;}
._2b{width:96.493653pt;}
._28{width:145.674667pt;}
._27{width:146.602667pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:6.560000pt;}
.y40{bottom:6.720000pt;}
.y38{bottom:27.680000pt;}
.y65{bottom:27.706667pt;}
.y7b{bottom:27.720000pt;}
.y3b{bottom:27.840000pt;}
.y81{bottom:27.866667pt;}
.y6c{bottom:27.880000pt;}
.y67{bottom:48.800000pt;}
.y64{bottom:48.826667pt;}
.y37{bottom:48.960000pt;}
.y7{bottom:51.200000pt;}
.y63{bottom:70.106667pt;}
.y33{bottom:84.320000pt;}
.y35{bottom:84.640000pt;}
.y83{bottom:91.200000pt;}
.y76{bottom:98.400000pt;}
.y60{bottom:99.040000pt;}
.y32{bottom:105.760000pt;}
.y82{bottom:112.960000pt;}
.y75{bottom:119.520000pt;}
.y5f{bottom:120.160000pt;}
.y31{bottom:126.880000pt;}
.y80{bottom:134.720000pt;}
.y74{bottom:140.640000pt;}
.y5e{bottom:141.440000pt;}
.y30{bottom:148.000000pt;}
.y73{bottom:161.946667pt;}
.y5d{bottom:162.586667pt;}
.y2f{bottom:169.306667pt;}
.y7f{bottom:177.786667pt;}
.y72{bottom:183.066667pt;}
.y5c{bottom:183.706667pt;}
.y2e{bottom:190.426667pt;}
.y71{bottom:203.866667pt;}
.y5b{bottom:204.826667pt;}
.y2d{bottom:211.546667pt;}
.y70{bottom:219.386667pt;}
.y7e{bottom:220.826667pt;}
.y5a{bottom:226.106667pt;}
.y2c{bottom:232.666667pt;}
.y6f{bottom:241.306667pt;}
.y59{bottom:247.226667pt;}
.y2b{bottom:253.786667pt;}
.y6e{bottom:263.066667pt;}
.y7d{bottom:264.346667pt;}
.y58{bottom:268.346667pt;}
.ya5{bottom:273.626667pt;}
.y2a{bottom:275.066667pt;}
.y57{bottom:289.466667pt;}
.ya4{bottom:294.906667pt;}
.y29{bottom:296.186667pt;}
.y6d{bottom:306.106667pt;}
.y7c{bottom:307.386667pt;}
.y56{bottom:310.746667pt;}
.ya3{bottom:316.026667pt;}
.y28{bottom:317.306667pt;}
.y55{bottom:331.866667pt;}
.ya2{bottom:337.146667pt;}
.y27{bottom:338.426667pt;}
.y6b{bottom:348.986667pt;}
.y7a{bottom:350.426667pt;}
.y54{bottom:352.986667pt;}
.ya1{bottom:358.266667pt;}
.y26{bottom:359.706667pt;}
.y53{bottom:374.146667pt;}
.ya0{bottom:379.586667pt;}
.y25{bottom:380.866667pt;}
.y6a{bottom:392.066667pt;}
.y79{bottom:393.346667pt;}
.y52{bottom:395.266667pt;}
.y9f{bottom:400.706667pt;}
.y24{bottom:401.986667pt;}
.y69{bottom:413.826667pt;}
.y51{bottom:416.546667pt;}
.y9e{bottom:421.826667pt;}
.y23{bottom:423.106667pt;}
.y78{bottom:436.386667pt;}
.y50{bottom:437.666667pt;}
.y9d{bottom:442.946667pt;}
.y22{bottom:444.386667pt;}
.y68{bottom:456.866667pt;}
.y4f{bottom:458.786667pt;}
.y9c{bottom:464.226667pt;}
.y21{bottom:465.506667pt;}
.y77{bottom:479.426667pt;}
.y4e{bottom:479.906667pt;}
.y9b{bottom:485.346667pt;}
.y20{bottom:486.626667pt;}
.y66{bottom:499.906667pt;}
.y4d{bottom:501.186667pt;}
.y9a{bottom:506.466667pt;}
.y1f{bottom:507.746667pt;}
.y4c{bottom:522.306667pt;}
.y99{bottom:527.586667pt;}
.y1e{bottom:529.026667pt;}
.y4b{bottom:543.426667pt;}
.y98{bottom:548.706667pt;}
.y1d{bottom:550.146667pt;}
.y62{bottom:564.066667pt;}
.y4a{bottom:564.546667pt;}
.y97{bottom:569.986667pt;}
.y1c{bottom:571.266667pt;}
.y49{bottom:585.853333pt;}
.y96{bottom:591.133333pt;}
.y1b{bottom:592.413333pt;}
.y48{bottom:606.973333pt;}
.y95{bottom:612.253333pt;}
.y1a{bottom:613.693333pt;}
.y47{bottom:628.093333pt;}
.y94{bottom:633.373333pt;}
.y19{bottom:634.813333pt;}
.y46{bottom:649.213333pt;}
.y93{bottom:654.653333pt;}
.y18{bottom:655.933333pt;}
.y45{bottom:670.493333pt;}
.y92{bottom:675.773333pt;}
.y17{bottom:677.053333pt;}
.y44{bottom:691.293333pt;}
.y91{bottom:696.893333pt;}
.y16{bottom:698.173333pt;}
.y43{bottom:706.813333pt;}
.y90{bottom:718.013333pt;}
.y15{bottom:719.453333pt;}
.y8f{bottom:739.293333pt;}
.y14{bottom:740.573333pt;}
.y42{bottom:749.853333pt;}
.y8e{bottom:760.413333pt;}
.y13{bottom:761.693333pt;}
.y41{bottom:771.613333pt;}
.y8d{bottom:781.533333pt;}
.y12{bottom:782.813333pt;}
.y3f{bottom:793.373333pt;}
.y8c{bottom:802.373333pt;}
.y11{bottom:804.133333pt;}
.y3e{bottom:815.333333pt;}
.y8b{bottom:823.973333pt;}
.y10{bottom:825.253333pt;}
.y3d{bottom:837.093333pt;}
.y8a{bottom:845.093333pt;}
.yf{bottom:846.053333pt;}
.y34{bottom:846.373333pt;}
.y3c{bottom:859.013333pt;}
.y89{bottom:866.213333pt;}
.ye{bottom:867.493333pt;}
.y3a{bottom:880.773333pt;}
.y88{bottom:887.333333pt;}
.yd{bottom:888.773333pt;}
.y87{bottom:908.613333pt;}
.yc{bottom:909.893333pt;}
.y86{bottom:929.733333pt;}
.yb{bottom:931.013333pt;}
.y36{bottom:944.933333pt;}
.y85{bottom:950.533333pt;}
.ya{bottom:952.133333pt;}
.y84{bottom:966.053333pt;}
.y9{bottom:973.413333pt;}
.y8{bottom:994.213333pt;}
.y61{bottom:994.533333pt;}
.y6{bottom:1016.960000pt;}
.y5{bottom:1035.360000pt;}
.y4{bottom:1051.680000pt;}
.y3{bottom:1067.840000pt;}
.y2{bottom:1084.160000pt;}
.y1{bottom:1100.480000pt;}
.h8{height:21.120000pt;}
.h10{height:21.280000pt;}
.h9{height:21.312000pt;}
.ha{height:42.240000pt;}
.h11{height:42.272000pt;}
.he{height:42.400000pt;}
.hf{height:42.432000pt;}
.h2{height:54.390938pt;}
.h4{height:58.563750pt;}
.h6{height:62.812500pt;}
.hd{height:63.360000pt;}
.h7{height:63.520000pt;}
.h5{height:64.500000pt;}
.hb{height:65.781915pt;}
.h3{height:75.465000pt;}
.hc{height:84.672000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:52.000000pt;}
.wc{width:53.120000pt;}
.wb{width:55.680000pt;}
.w10{width:57.920000pt;}
.w11{width:58.272000pt;}
.wa{width:62.112000pt;}
.w6{width:102.880000pt;}
.w13{width:104.320000pt;}
.w4{width:106.080000pt;}
.w8{width:111.712000pt;}
.wd{width:113.792000pt;}
.w15{width:115.040000pt;}
.w5{width:116.192000pt;}
.w17{width:122.112000pt;}
.w7{width:123.072000pt;}
.w12{width:156.506667pt;}
.w16{width:170.586667pt;}
.we{width:188.666667pt;}
.w3{width:190.466667pt;}
.w14{width:231.586667pt;}
.wf{width:261.506667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x38{left:7.680000pt;}
.x1c{left:8.960000pt;}
.x37{left:10.560000pt;}
.xd{left:12.192000pt;}
.x35{left:13.920000pt;}
.xe{left:15.072000pt;}
.x36{left:16.160000pt;}
.x43{left:17.120000pt;}
.x39{left:18.426667pt;}
.x3c{left:19.552000pt;}
.x1e{left:20.800000pt;}
.x19{left:22.880000pt;}
.x20{left:24.680000pt;}
.x2d{left:25.920000pt;}
.x1f{left:27.040000pt;}
.x1b{left:28.640000pt;}
.x1a{left:30.400000pt;}
.x4e{left:32.160000pt;}
.x1d{left:33.120000pt;}
.x22{left:34.400000pt;}
.x3a{left:36.026667pt;}
.x21{left:37.160000pt;}
.x26{left:38.400000pt;}
.x23{left:39.360000pt;}
.x27{left:40.800000pt;}
.x24{left:42.920000pt;}
.x4c{left:44.160000pt;}
.x28{left:46.920000pt;}
.x25{left:47.872000pt;}
.x4d{left:49.160000pt;}
.x15{left:51.360000pt;}
.x11{left:52.960000pt;}
.x18{left:55.552000pt;}
.x32{left:56.826667pt;}
.x13{left:58.106667pt;}
.x17{left:61.480000pt;}
.x29{left:62.426667pt;}
.x4f{left:63.386667pt;}
.x41{left:64.320000pt;}
.x51{left:65.306667pt;}
.x2a{left:66.906667pt;}
.xf{left:69.946667pt;}
.xc{left:75.519988pt;}
.x3f{left:78.080000pt;}
.x2b{left:81.306667pt;}
.x3b{left:82.280000pt;}
.x49{left:85.306667pt;}
.x46{left:91.386667pt;}
.x34{left:94.280000pt;}
.x4b{left:95.386667pt;}
.x45{left:96.506667pt;}
.x50{left:99.226667pt;}
.x44{left:103.226667pt;}
.x42{left:109.946667pt;}
.xb{left:122.751988pt;}
.x8{left:151.386655pt;}
.x2c{left:188.826667pt;}
.x7{left:198.746655pt;}
.xa{left:206.586655pt;}
.x5{left:222.426655pt;}
.x2e{left:241.626667pt;}
.x9{left:259.266655pt;}
.x10{left:267.426667pt;}
.x2f{left:304.386667pt;}
.x47{left:308.546667pt;}
.x3{left:311.586655pt;}
.x3d{left:338.466667pt;}
.x30{left:360.706667pt;}
.x52{left:366.626655pt;}
.x12{left:374.146667pt;}
.x4{left:385.666655pt;}
.x6{left:396.866655pt;}
.x2{left:406.306655pt;}
.x31{left:414.466667pt;}
.x48{left:424.226667pt;}
.x1{left:453.693322pt;}
.x3e{left:456.093333pt;}
.x14{left:490.973333pt;}
.x33{left:528.893333pt;}
.x16{left:594.493333pt;}
.x4a{left:595.453333pt;}
.x40{left:613.253333pt;}
}




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