
    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_dd9381f6b64ad9a64af79dab.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a0803182d3f6f476fcd73dc5.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_93d2953777498b0c8bb1f543.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a3e3215a3c87bbf753ca9dc2.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_33e57a7928f52de2dcbc0c8f.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_fb637832762de20eadaf7ac9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.123047;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_bc989a994df18731dcbffd97.woff')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_d7ef9cd60a431b8c436dd084.woff')format("woff");}.ff8{font-family:ff8;line-height:1.110840;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);}
.v1{vertical-align:-70.020000px;}
.v2{vertical-align:-67.680000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.612000px;}
.lse{letter-spacing:-0.567600px;}
.ls8{letter-spacing:-0.305400px;}
.lsb{letter-spacing:-0.051840px;}
.ls6{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.109200px;}
.lsf{letter-spacing:0.109440px;}
.ls0{letter-spacing:0.360000px;}
.ls11{letter-spacing:6.865920px;}
.ls12{letter-spacing:8.305920px;}
.ls4{letter-spacing:13.140000px;}
.ls9{letter-spacing:17.585280px;}
.ls1{letter-spacing:20.545920px;}
.lsa{letter-spacing:21.185280px;}
.ls10{letter-spacing:37.825920px;}
.ls3{letter-spacing:39.240000px;}
.ls2{letter-spacing:56.496000px;}
.ls5{letter-spacing:119.136000px;}
.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;}
}
.ws5{word-spacing:-16.669200px;}
.ws2{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.254600px;}
.ws6{word-spacing:-15.992400px;}
.ws4{word-spacing:-15.948000px;}
.ws1{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.120000px;}
.ws0{word-spacing:-13.860000px;}
.ws3{word-spacing:0.000000px;}
._10{margin-left:-4.933440px;}
._5{margin-left:-3.864960px;}
._d{margin-left:-2.848320px;}
._1{margin-left:-1.837440px;}
._4{width:1.216320px;}
._a{width:2.784000px;}
._7{width:3.864960px;}
._6{width:5.385600px;}
._b{width:7.286400px;}
._c{width:8.478720px;}
._0{width:9.504000px;}
._2{width:10.517760px;}
._8{width:11.873280px;}
._9{width:12.903360px;}
._3{width:14.256000px;}
._11{width:15.336000px;}
._19{width:16.842720px;}
._12{width:17.918400px;}
._f{width:19.342080px;}
._e{width:21.261600px;}
._14{width:22.455360px;}
._13{width:23.515200px;}
._15{width:24.641280px;}
._16{width:28.946880px;}
._17{width:30.784320px;}
._18{width:162.410400px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:12.240000px;}
.fs6{font-size:18.000000px;}
.fs4{font-size:36.000000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y35{bottom:3.420000px;}
.y8a{bottom:3.600000px;}
.y93{bottom:4.680000px;}
.y33{bottom:12.420000px;}
.y3b{bottom:12.600000px;}
.y88{bottom:13.140000px;}
.y90{bottom:14.220000px;}
.y37{bottom:21.420000px;}
.y34{bottom:21.600000px;}
.y89{bottom:22.680000px;}
.y91{bottom:23.760000px;}
.y3a{bottom:30.600000px;}
.y8c{bottom:32.085000px;}
.y8f{bottom:33.120000px;}
.y3c{bottom:39.780000px;}
.y8d{bottom:41.625000px;}
.y92{bottom:42.660000px;}
.y1{bottom:200.647500px;}
.y31{bottom:208.650000px;}
.y30{bottom:229.807500px;}
.y62{bottom:230.970000px;}
.y97{bottom:236.910000px;}
.ybf{bottom:244.110000px;}
.ye2{bottom:246.990000px;}
.y2f{bottom:248.707500px;}
.y61{bottom:250.050000px;}
.y96{bottom:255.810000px;}
.ybe{bottom:263.010000px;}
.ye1{bottom:265.170000px;}
.y2e{bottom:267.787500px;}
.y60{bottom:268.950000px;}
.y95{bottom:272.010000px;}
.y94{bottom:280.110000px;}
.ybd{bottom:282.090000px;}
.ye0{bottom:283.170000px;}
.y2d{bottom:286.687500px;}
.y5f{bottom:288.030000px;}
.y8e{bottom:299.370000px;}
.ybc{bottom:300.990000px;}
.ydf{bottom:301.350000px;}
.y2c{bottom:305.587500px;}
.y5e{bottom:306.930000px;}
.yde{bottom:319.530000px;}
.ybb{bottom:320.070000px;}
.y2b{bottom:324.667500px;}
.y5d{bottom:325.830000px;}
.ydd{bottom:337.530000px;}
.yba{bottom:338.970000px;}
.y2a{bottom:343.567500px;}
.y5c{bottom:344.910000px;}
.ydc{bottom:355.710000px;}
.yb9{bottom:357.870000px;}
.y29{bottom:362.647500px;}
.y8b{bottom:363.630000px;}
.y5b{bottom:363.810000px;}
.ydb{bottom:373.710000px;}
.yb8{bottom:376.950000px;}
.y28{bottom:381.592500px;}
.y5a{bottom:382.890000px;}
.yda{bottom:391.935000px;}
.yb7{bottom:395.895000px;}
.y27{bottom:400.492500px;}
.y59{bottom:401.835000px;}
.yd9{bottom:410.115000px;}
.yb6{bottom:414.975000px;}
.y26{bottom:419.572500px;}
.y58{bottom:420.735000px;}
.y87{bottom:425.775000px;}
.yd8{bottom:428.115000px;}
.yb5{bottom:433.875000px;}
.y25{bottom:438.472500px;}
.y57{bottom:439.815000px;}
.yd7{bottom:446.295000px;}
.yb4{bottom:452.775000px;}
.y24{bottom:457.552500px;}
.y56{bottom:458.715000px;}
.yd6{bottom:464.295000px;}
.y86{bottom:468.615000px;}
.yb3{bottom:471.855000px;}
.y85{bottom:474.915000px;}
.y23{bottom:476.452500px;}
.y55{bottom:477.795000px;}
.yd5{bottom:482.475000px;}
.yb2{bottom:490.755000px;}
.y84{bottom:493.995000px;}
.y22{bottom:495.352500px;}
.y54{bottom:496.695000px;}
.yd4{bottom:500.655000px;}
.yb1{bottom:509.835000px;}
.y83{bottom:512.895000px;}
.y53{bottom:515.595000px;}
.yd3{bottom:518.655000px;}
.yb0{bottom:528.735000px;}
.y21{bottom:531.712500px;}
.y82{bottom:531.975000px;}
.y52{bottom:534.675000px;}
.yd2{bottom:536.835000px;}
.y20{bottom:543.772500px;}
.yaf{bottom:547.815000px;}
.y81{bottom:550.875000px;}
.y51{bottom:553.575000px;}
.yd1{bottom:555.015000px;}
.y1f{bottom:562.672500px;}
.yae{bottom:566.715000px;}
.y80{bottom:569.775000px;}
.y50{bottom:572.655000px;}
.yd0{bottom:573.015000px;}
.y1e{bottom:581.752500px;}
.yad{bottom:585.615000px;}
.y7f{bottom:588.855000px;}
.ycf{bottom:591.195000px;}
.y4f{bottom:591.555000px;}
.y1d{bottom:600.652500px;}
.yac{bottom:604.695000px;}
.y7e{bottom:607.755000px;}
.yce{bottom:609.195000px;}
.y4e{bottom:610.455000px;}
.y1c{bottom:619.552500px;}
.yab{bottom:623.595000px;}
.y7d{bottom:626.835000px;}
.ycd{bottom:627.375000px;}
.y4d{bottom:629.535000px;}
.y1b{bottom:638.662500px;}
.yaa{bottom:642.705000px;}
.ycc{bottom:645.585000px;}
.y7c{bottom:645.765000px;}
.y4c{bottom:648.465000px;}
.y1a{bottom:657.562500px;}
.ya9{bottom:661.605000px;}
.ycb{bottom:663.585000px;}
.y7b{bottom:664.665000px;}
.y4b{bottom:667.545000px;}
.y19{bottom:676.642500px;}
.ya8{bottom:680.505000px;}
.yca{bottom:681.765000px;}
.y7a{bottom:683.745000px;}
.y4a{bottom:686.445000px;}
.y18{bottom:695.542500px;}
.ya7{bottom:699.585000px;}
.yc9{bottom:699.765000px;}
.y79{bottom:702.645000px;}
.y49{bottom:705.345000px;}
.y17{bottom:714.442500px;}
.yc8{bottom:717.945000px;}
.ya6{bottom:718.485000px;}
.y78{bottom:721.725000px;}
.y48{bottom:724.425000px;}
.y16{bottom:733.522500px;}
.yc7{bottom:736.125000px;}
.ya5{bottom:737.565000px;}
.y77{bottom:740.625000px;}
.y47{bottom:743.325000px;}
.y15{bottom:752.422500px;}
.yc6{bottom:754.125000px;}
.ya4{bottom:756.465000px;}
.y76{bottom:759.705000px;}
.y46{bottom:762.405000px;}
.y14{bottom:771.502500px;}
.yc5{bottom:772.305000px;}
.ya3{bottom:775.365000px;}
.y75{bottom:778.605000px;}
.y45{bottom:781.305000px;}
.y13{bottom:788.782500px;}
.yc4{bottom:790.485000px;}
.ya2{bottom:794.445000px;}
.y74{bottom:797.505000px;}
.y44{bottom:800.385000px;}
.y12{bottom:800.482500px;}
.yc3{bottom:808.485000px;}
.ya1{bottom:813.345000px;}
.y73{bottom:816.585000px;}
.y11{bottom:818.662500px;}
.y43{bottom:819.285000px;}
.yc2{bottom:826.665000px;}
.ya0{bottom:832.425000px;}
.y72{bottom:835.485000px;}
.y42{bottom:838.185000px;}
.yc1{bottom:844.665000px;}
.yf1{bottom:848.985000px;}
.y9f{bottom:851.325000px;}
.y10{bottom:853.582500px;}
.y71{bottom:854.565000px;}
.y41{bottom:857.265000px;}
.yc0{bottom:861.585000px;}
.yf{bottom:865.462500px;}
.yf0{bottom:867.165000px;}
.y9e{bottom:870.225000px;}
.y70{bottom:873.465000px;}
.y40{bottom:876.165000px;}
.yef{bottom:885.345000px;}
.y9d{bottom:889.305000px;}
.y6f{bottom:892.365000px;}
.y3f{bottom:895.290000px;}
.ye{bottom:901.867500px;}
.yee{bottom:903.390000px;}
.y9c{bottom:905.550000px;}
.y6e{bottom:911.490000px;}
.y9b{bottom:913.470000px;}
.yd{bottom:913.747500px;}
.y3e{bottom:914.190000px;}
.yed{bottom:921.570000px;}
.y6d{bottom:930.390000px;}
.yc{bottom:932.287500px;}
.y9a{bottom:932.910000px;}
.y3d{bottom:933.090000px;}
.yec{bottom:939.570000px;}
.y6c{bottom:949.470000px;}
.yb{bottom:949.747500px;}
.y39{bottom:952.530000px;}
.yeb{bottom:957.750000px;}
.ya{bottom:967.927500px;}
.y6b{bottom:968.370000px;}
.yea{bottom:975.930000px;}
.y99{bottom:976.110000px;}
.y9{bottom:985.927500px;}
.y6a{bottom:987.270000px;}
.ye9{bottom:993.930000px;}
.y98{bottom:999.870000px;}
.y8{bottom:1004.107500px;}
.y69{bottom:1006.350000px;}
.y38{bottom:1012.110000px;}
.y7{bottom:1022.287500px;}
.y68{bottom:1025.250000px;}
.ye8{bottom:1030.290000px;}
.y6{bottom:1040.287500px;}
.y67{bottom:1044.330000px;}
.ye7{bottom:1048.290000px;}
.y36{bottom:1053.690000px;}
.y5{bottom:1058.467500px;}
.y66{bottom:1063.230000px;}
.ye6{bottom:1066.470000px;}
.y4{bottom:1076.467500px;}
.y65{bottom:1082.130000px;}
.ye5{bottom:1084.470000px;}
.y3{bottom:1094.647500px;}
.y32{bottom:1095.090000px;}
.y64{bottom:1101.210000px;}
.ye4{bottom:1102.650000px;}
.y2{bottom:1112.827500px;}
.y63{bottom:1120.110000px;}
.ye3{bottom:1120.830000px;}
.h16{height:12.012891px;}
.h1a{height:17.666016px;}
.h1b{height:18.900000px;}
.h9{height:35.314453px;}
.hc{height:35.332031px;}
.hf{height:36.180000px;}
.h7{height:36.281250px;}
.h12{height:36.360000px;}
.h17{height:37.980000px;}
.h2{height:52.998047px;}
.h13{height:54.360000px;}
.h11{height:56.801250px;}
.h18{height:56.916000px;}
.h5{height:58.651172px;}
.h19{height:59.040000px;}
.h15{height:59.383125px;}
.h8{height:62.153438px;}
.h4{height:62.184375px;}
.h10{height:63.855000px;}
.ha{height:64.978594px;}
.hb{height:65.010937px;}
.h3{height:65.124096px;}
.h14{height:66.078281px;}
.h6{height:66.757500px;}
.h1{height:944.250000px;}
.h0{height:944.293500px;}
.he{height:1263.000000px;}
.hd{height:1263.060000px;}
.w9{width:79.740000px;}
.wd{width:79.920000px;}
.w5{width:80.640000px;}
.we{width:82.116000px;}
.w6{width:91.836000px;}
.wf{width:103.356000px;}
.wa{width:119.376000px;}
.wb{width:130.536000px;}
.w7{width:135.216000px;}
.wc{width:267.195000px;}
.w8{width:288.975000px;}
.w10{width:331.455000px;}
.w0{width:887.640000px;}
.w1{width:888.000000px;}
.w4{width:892.979987px;}
.w2{width:892.980000px;}
.w3{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:1.440000px;}
.x10{left:2.520000px;}
.x33{left:3.780000px;}
.x1e{left:6.300000px;}
.xd{left:9.354000px;}
.x17{left:10.620000px;}
.x35{left:12.060000px;}
.x2a{left:13.140000px;}
.x25{left:16.014000px;}
.x1d{left:17.280000px;}
.x34{left:18.894000px;}
.x16{left:20.154000px;}
.x1a{left:21.414000px;}
.xf{left:22.725000px;}
.x13{left:24.300000px;}
.x1f{left:25.554000px;}
.x19{left:28.260000px;}
.x1c{left:30.960000px;}
.x12{left:34.200000px;}
.x26{left:35.685000px;}
.x30{left:41.040000px;}
.x2b{left:42.300000px;}
.x18{left:44.820000px;}
.x2c{left:46.620000px;}
.x2d{left:48.240000px;}
.x29{left:102.285000px;}
.x20{left:107.820000px;}
.x15{left:114.660000px;}
.x32{left:134.460000px;}
.x5{left:139.101000px;}
.x23{left:140.435987px;}
.xc{left:143.676000px;}
.x36{left:146.735987px;}
.x2{left:149.715000px;}
.x24{left:151.049987px;}
.x4{left:166.095000px;}
.x3{left:171.135000px;}
.x22{left:172.469987px;}
.x2e{left:193.529987px;}
.xe{left:227.370000px;}
.x2f{left:311.655000px;}
.x11{left:322.275000px;}
.x27{left:348.915000px;}
.x6{left:387.540000px;}
.x31{left:418.065000px;}
.x21{left:426.884987px;}
.x1{left:435.090000px;}
.xb{left:436.424987px;}
.x7{left:445.350000px;}
.x14{left:460.545000px;}
.x28{left:482.325000px;}
.x8{left:534.630000px;}
.x9{left:578.775000px;}
.xa{left:751.605000px;}
@media print{
.v1{vertical-align:-62.240000pt;}
.v2{vertical-align:-60.160000pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.544000pt;}
.lse{letter-spacing:-0.504533pt;}
.ls8{letter-spacing:-0.271467pt;}
.lsb{letter-spacing:-0.046080pt;}
.ls6{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.097067pt;}
.lsf{letter-spacing:0.097280pt;}
.ls0{letter-spacing:0.320000pt;}
.ls11{letter-spacing:6.103040pt;}
.ls12{letter-spacing:7.383040pt;}
.ls4{letter-spacing:11.680000pt;}
.ls9{letter-spacing:15.631360pt;}
.ls1{letter-spacing:18.263040pt;}
.lsa{letter-spacing:18.831360pt;}
.ls10{letter-spacing:33.623040pt;}
.ls3{letter-spacing:34.880000pt;}
.ls2{letter-spacing:50.218667pt;}
.ls5{letter-spacing:105.898667pt;}
.ws5{word-spacing:-14.817067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.448533pt;}
.ws6{word-spacing:-14.215467pt;}
.ws4{word-spacing:-14.176000pt;}
.ws1{word-spacing:-14.080000pt;}
.ws8{word-spacing:-13.440000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws3{word-spacing:0.000000pt;}
._10{margin-left:-4.385280pt;}
._5{margin-left:-3.435520pt;}
._d{margin-left:-2.531840pt;}
._1{margin-left:-1.633280pt;}
._4{width:1.081173pt;}
._a{width:2.474667pt;}
._7{width:3.435520pt;}
._6{width:4.787200pt;}
._b{width:6.476800pt;}
._c{width:7.536640pt;}
._0{width:8.448000pt;}
._2{width:9.349120pt;}
._8{width:10.554027pt;}
._9{width:11.469653pt;}
._3{width:12.672000pt;}
._11{width:13.632000pt;}
._19{width:14.971307pt;}
._12{width:15.927467pt;}
._f{width:17.192960pt;}
._e{width:18.899200pt;}
._14{width:19.960320pt;}
._13{width:20.902400pt;}
._15{width:21.903360pt;}
._16{width:25.730560pt;}
._17{width:27.363840pt;}
._18{width:144.364800pt;}
.fs5{font-size:10.880000pt;}
.fs6{font-size:16.000000pt;}
.fs4{font-size:32.000000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:3.040000pt;}
.y8a{bottom:3.200000pt;}
.y93{bottom:4.160000pt;}
.y33{bottom:11.040000pt;}
.y3b{bottom:11.200000pt;}
.y88{bottom:11.680000pt;}
.y90{bottom:12.640000pt;}
.y37{bottom:19.040000pt;}
.y34{bottom:19.200000pt;}
.y89{bottom:20.160000pt;}
.y91{bottom:21.120000pt;}
.y3a{bottom:27.200000pt;}
.y8c{bottom:28.520000pt;}
.y8f{bottom:29.440000pt;}
.y3c{bottom:35.360000pt;}
.y8d{bottom:37.000000pt;}
.y92{bottom:37.920000pt;}
.y1{bottom:178.353333pt;}
.y31{bottom:185.466667pt;}
.y30{bottom:204.273333pt;}
.y62{bottom:205.306667pt;}
.y97{bottom:210.586667pt;}
.ybf{bottom:216.986667pt;}
.ye2{bottom:219.546667pt;}
.y2f{bottom:221.073333pt;}
.y61{bottom:222.266667pt;}
.y96{bottom:227.386667pt;}
.ybe{bottom:233.786667pt;}
.ye1{bottom:235.706667pt;}
.y2e{bottom:238.033333pt;}
.y60{bottom:239.066667pt;}
.y95{bottom:241.786667pt;}
.y94{bottom:248.986667pt;}
.ybd{bottom:250.746667pt;}
.ye0{bottom:251.706667pt;}
.y2d{bottom:254.833333pt;}
.y5f{bottom:256.026667pt;}
.y8e{bottom:266.106667pt;}
.ybc{bottom:267.546667pt;}
.ydf{bottom:267.866667pt;}
.y2c{bottom:271.633333pt;}
.y5e{bottom:272.826667pt;}
.yde{bottom:284.026667pt;}
.ybb{bottom:284.506667pt;}
.y2b{bottom:288.593333pt;}
.y5d{bottom:289.626667pt;}
.ydd{bottom:300.026667pt;}
.yba{bottom:301.306667pt;}
.y2a{bottom:305.393333pt;}
.y5c{bottom:306.586667pt;}
.ydc{bottom:316.186667pt;}
.yb9{bottom:318.106667pt;}
.y29{bottom:322.353333pt;}
.y8b{bottom:323.226667pt;}
.y5b{bottom:323.386667pt;}
.ydb{bottom:332.186667pt;}
.yb8{bottom:335.066667pt;}
.y28{bottom:339.193333pt;}
.y5a{bottom:340.346667pt;}
.yda{bottom:348.386667pt;}
.yb7{bottom:351.906667pt;}
.y27{bottom:355.993333pt;}
.y59{bottom:357.186667pt;}
.yd9{bottom:364.546667pt;}
.yb6{bottom:368.866667pt;}
.y26{bottom:372.953333pt;}
.y58{bottom:373.986667pt;}
.y87{bottom:378.466667pt;}
.yd8{bottom:380.546667pt;}
.yb5{bottom:385.666667pt;}
.y25{bottom:389.753333pt;}
.y57{bottom:390.946667pt;}
.yd7{bottom:396.706667pt;}
.yb4{bottom:402.466667pt;}
.y24{bottom:406.713333pt;}
.y56{bottom:407.746667pt;}
.yd6{bottom:412.706667pt;}
.y86{bottom:416.546667pt;}
.yb3{bottom:419.426667pt;}
.y85{bottom:422.146667pt;}
.y23{bottom:423.513333pt;}
.y55{bottom:424.706667pt;}
.yd5{bottom:428.866667pt;}
.yb2{bottom:436.226667pt;}
.y84{bottom:439.106667pt;}
.y22{bottom:440.313333pt;}
.y54{bottom:441.506667pt;}
.yd4{bottom:445.026667pt;}
.yb1{bottom:453.186667pt;}
.y83{bottom:455.906667pt;}
.y53{bottom:458.306667pt;}
.yd3{bottom:461.026667pt;}
.yb0{bottom:469.986667pt;}
.y21{bottom:472.633333pt;}
.y82{bottom:472.866667pt;}
.y52{bottom:475.266667pt;}
.yd2{bottom:477.186667pt;}
.y20{bottom:483.353333pt;}
.yaf{bottom:486.946667pt;}
.y81{bottom:489.666667pt;}
.y51{bottom:492.066667pt;}
.yd1{bottom:493.346667pt;}
.y1f{bottom:500.153333pt;}
.yae{bottom:503.746667pt;}
.y80{bottom:506.466667pt;}
.y50{bottom:509.026667pt;}
.yd0{bottom:509.346667pt;}
.y1e{bottom:517.113333pt;}
.yad{bottom:520.546667pt;}
.y7f{bottom:523.426667pt;}
.ycf{bottom:525.506667pt;}
.y4f{bottom:525.826667pt;}
.y1d{bottom:533.913333pt;}
.yac{bottom:537.506667pt;}
.y7e{bottom:540.226667pt;}
.yce{bottom:541.506667pt;}
.y4e{bottom:542.626667pt;}
.y1c{bottom:550.713333pt;}
.yab{bottom:554.306667pt;}
.y7d{bottom:557.186667pt;}
.ycd{bottom:557.666667pt;}
.y4d{bottom:559.586667pt;}
.y1b{bottom:567.700000pt;}
.yaa{bottom:571.293333pt;}
.ycc{bottom:573.853333pt;}
.y7c{bottom:574.013333pt;}
.y4c{bottom:576.413333pt;}
.y1a{bottom:584.500000pt;}
.ya9{bottom:588.093333pt;}
.ycb{bottom:589.853333pt;}
.y7b{bottom:590.813333pt;}
.y4b{bottom:593.373333pt;}
.y19{bottom:601.460000pt;}
.ya8{bottom:604.893333pt;}
.yca{bottom:606.013333pt;}
.y7a{bottom:607.773333pt;}
.y4a{bottom:610.173333pt;}
.y18{bottom:618.260000pt;}
.ya7{bottom:621.853333pt;}
.yc9{bottom:622.013333pt;}
.y79{bottom:624.573333pt;}
.y49{bottom:626.973333pt;}
.y17{bottom:635.060000pt;}
.yc8{bottom:638.173333pt;}
.ya6{bottom:638.653333pt;}
.y78{bottom:641.533333pt;}
.y48{bottom:643.933333pt;}
.y16{bottom:652.020000pt;}
.yc7{bottom:654.333333pt;}
.ya5{bottom:655.613333pt;}
.y77{bottom:658.333333pt;}
.y47{bottom:660.733333pt;}
.y15{bottom:668.820000pt;}
.yc6{bottom:670.333333pt;}
.ya4{bottom:672.413333pt;}
.y76{bottom:675.293333pt;}
.y46{bottom:677.693333pt;}
.y14{bottom:685.780000pt;}
.yc5{bottom:686.493333pt;}
.ya3{bottom:689.213333pt;}
.y75{bottom:692.093333pt;}
.y45{bottom:694.493333pt;}
.y13{bottom:701.140000pt;}
.yc4{bottom:702.653333pt;}
.ya2{bottom:706.173333pt;}
.y74{bottom:708.893333pt;}
.y44{bottom:711.453333pt;}
.y12{bottom:711.540000pt;}
.yc3{bottom:718.653333pt;}
.ya1{bottom:722.973333pt;}
.y73{bottom:725.853333pt;}
.y11{bottom:727.700000pt;}
.y43{bottom:728.253333pt;}
.yc2{bottom:734.813333pt;}
.ya0{bottom:739.933333pt;}
.y72{bottom:742.653333pt;}
.y42{bottom:745.053333pt;}
.yc1{bottom:750.813333pt;}
.yf1{bottom:754.653333pt;}
.y9f{bottom:756.733333pt;}
.y10{bottom:758.740000pt;}
.y71{bottom:759.613333pt;}
.y41{bottom:762.013333pt;}
.yc0{bottom:765.853333pt;}
.yf{bottom:769.300000pt;}
.yf0{bottom:770.813333pt;}
.y9e{bottom:773.533333pt;}
.y70{bottom:776.413333pt;}
.y40{bottom:778.813333pt;}
.yef{bottom:786.973333pt;}
.y9d{bottom:790.493333pt;}
.y6f{bottom:793.213333pt;}
.y3f{bottom:795.813333pt;}
.ye{bottom:801.660000pt;}
.yee{bottom:803.013333pt;}
.y9c{bottom:804.933333pt;}
.y6e{bottom:810.213333pt;}
.y9b{bottom:811.973333pt;}
.yd{bottom:812.220000pt;}
.y3e{bottom:812.613333pt;}
.yed{bottom:819.173333pt;}
.y6d{bottom:827.013333pt;}
.yc{bottom:828.700000pt;}
.y9a{bottom:829.253333pt;}
.y3d{bottom:829.413333pt;}
.yec{bottom:835.173333pt;}
.y6c{bottom:843.973333pt;}
.yb{bottom:844.220000pt;}
.y39{bottom:846.693333pt;}
.yeb{bottom:851.333333pt;}
.ya{bottom:860.380000pt;}
.y6b{bottom:860.773333pt;}
.yea{bottom:867.493333pt;}
.y99{bottom:867.653333pt;}
.y9{bottom:876.380000pt;}
.y6a{bottom:877.573333pt;}
.ye9{bottom:883.493333pt;}
.y98{bottom:888.773333pt;}
.y8{bottom:892.540000pt;}
.y69{bottom:894.533333pt;}
.y38{bottom:899.653333pt;}
.y7{bottom:908.700000pt;}
.y68{bottom:911.333333pt;}
.ye8{bottom:915.813333pt;}
.y6{bottom:924.700000pt;}
.y67{bottom:928.293333pt;}
.ye7{bottom:931.813333pt;}
.y36{bottom:936.613333pt;}
.y5{bottom:940.860000pt;}
.y66{bottom:945.093333pt;}
.ye6{bottom:947.973333pt;}
.y4{bottom:956.860000pt;}
.y65{bottom:961.893333pt;}
.ye5{bottom:963.973333pt;}
.y3{bottom:973.020000pt;}
.y32{bottom:973.413333pt;}
.y64{bottom:978.853333pt;}
.ye4{bottom:980.133333pt;}
.y2{bottom:989.180000pt;}
.y63{bottom:995.653333pt;}
.ye3{bottom:996.293333pt;}
.h16{height:10.678125pt;}
.h1a{height:15.703125pt;}
.h1b{height:16.800000pt;}
.h9{height:31.390625pt;}
.hc{height:31.406250pt;}
.hf{height:32.160000pt;}
.h7{height:32.250000pt;}
.h12{height:32.320000pt;}
.h17{height:33.760000pt;}
.h2{height:47.109375pt;}
.h13{height:48.320000pt;}
.h11{height:50.490000pt;}
.h18{height:50.592000pt;}
.h5{height:52.134375pt;}
.h19{height:52.480000pt;}
.h15{height:52.785000pt;}
.h8{height:55.247500pt;}
.h4{height:55.275000pt;}
.h10{height:56.760000pt;}
.ha{height:57.758750pt;}
.hb{height:57.787500pt;}
.h3{height:57.888085pt;}
.h14{height:58.736250pt;}
.h6{height:59.340000pt;}
.h1{height:839.333333pt;}
.h0{height:839.372000pt;}
.he{height:1122.666667pt;}
.hd{height:1122.720000pt;}
.w9{width:70.880000pt;}
.wd{width:71.040000pt;}
.w5{width:71.680000pt;}
.we{width:72.992000pt;}
.w6{width:81.632000pt;}
.wf{width:91.872000pt;}
.wa{width:106.112000pt;}
.wb{width:116.032000pt;}
.w7{width:120.192000pt;}
.wc{width:237.506667pt;}
.w8{width:256.866667pt;}
.w10{width:294.626667pt;}
.w0{width:789.013333pt;}
.w1{width:789.333333pt;}
.w4{width:793.759988pt;}
.w2{width:793.760000pt;}
.w3{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:1.280000pt;}
.x10{left:2.240000pt;}
.x33{left:3.360000pt;}
.x1e{left:5.600000pt;}
.xd{left:8.314667pt;}
.x17{left:9.440000pt;}
.x35{left:10.720000pt;}
.x2a{left:11.680000pt;}
.x25{left:14.234667pt;}
.x1d{left:15.360000pt;}
.x34{left:16.794667pt;}
.x16{left:17.914667pt;}
.x1a{left:19.034667pt;}
.xf{left:20.200000pt;}
.x13{left:21.600000pt;}
.x1f{left:22.714667pt;}
.x19{left:25.120000pt;}
.x1c{left:27.520000pt;}
.x12{left:30.400000pt;}
.x26{left:31.720000pt;}
.x30{left:36.480000pt;}
.x2b{left:37.600000pt;}
.x18{left:39.840000pt;}
.x2c{left:41.440000pt;}
.x2d{left:42.880000pt;}
.x29{left:90.920000pt;}
.x20{left:95.840000pt;}
.x15{left:101.920000pt;}
.x32{left:119.520000pt;}
.x5{left:123.645333pt;}
.x23{left:124.831988pt;}
.xc{left:127.712000pt;}
.x36{left:130.431988pt;}
.x2{left:133.080000pt;}
.x24{left:134.266655pt;}
.x4{left:147.640000pt;}
.x3{left:152.120000pt;}
.x22{left:153.306655pt;}
.x2e{left:172.026655pt;}
.xe{left:202.106667pt;}
.x2f{left:277.026667pt;}
.x11{left:286.466667pt;}
.x27{left:310.146667pt;}
.x6{left:344.480000pt;}
.x31{left:371.613333pt;}
.x21{left:379.453322pt;}
.x1{left:386.746667pt;}
.xb{left:387.933322pt;}
.x7{left:395.866667pt;}
.x14{left:409.373333pt;}
.x28{left:428.733333pt;}
.x8{left:475.226667pt;}
.x9{left:514.466667pt;}
.xa{left:668.093333pt;}
}




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