
    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_51e8f4bd69fdcaffc1c7d5cb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0fa8a43b3a0ae8c2fea1a86e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914551;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_795b8be888149a6c65d22ff3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914551;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_1ecf4b637520dd6237da934b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976562;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_4c46e027619790c67417851a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_71112a022cc8a4712e99efec.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.063477;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_14aecb56d2c605ef2722815e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.850586;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8334bc8e7047d3982a2c76cd.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172363;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:ffb;src:url('chunks/assets/font_e87fb596c1b685cd0fe91a38.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172363;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:ffc;src:url('chunks/assets/font_ade8cfd181249a038c24ead8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893555;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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls2{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.094800px;}
.ls8{letter-spacing:-0.043200px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.198600px;}
.lsb{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.256200px;}
.ls4{letter-spacing:0.258240px;}
.lsc{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.720000px;}
.ls5{letter-spacing:12.787200px;}
.lsa{letter-spacing:33.984000px;}
.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:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.784000px;}
.ws6{word-spacing:-16.488000px;}
.ws5{word-spacing:-14.572800px;}
.ws4{word-spacing:-9.187200px;}
.ws1{word-spacing:0.000000px;}
._1f{margin-left:-8.736000px;}
._1{margin-left:-7.692480px;}
._2{margin-left:-6.343920px;}
._1a{margin-left:-5.210640px;}
._3{margin-left:-3.841920px;}
._5{margin-left:-2.766960px;}
._0{margin-left:-1.263600px;}
._4{width:1.318800px;}
._9{width:2.520000px;}
._a{width:3.528000px;}
._e{width:4.608000px;}
._f{width:5.821200px;}
._1e{width:6.840000px;}
._8{width:7.848000px;}
._11{width:9.102960px;}
._12{width:10.407600px;}
._13{width:11.443200px;}
._7{width:12.736800px;}
._6{width:13.752000px;}
._10{width:15.264000px;}
._19{width:16.542000px;}
._1b{width:17.815440px;}
._18{width:19.008000px;}
._16{width:20.016000px;}
._17{width:21.384000px;}
._14{width:22.392000px;}
._24{width:24.025200px;}
._25{width:25.416000px;}
._21{width:26.856000px;}
._15{width:27.864000px;}
._b{width:29.664000px;}
._20{width:31.359600px;}
._c{width:32.616000px;}
._d{width:34.477200px;}
._1d{width:35.737200px;}
._1c{width:37.047600px;}
._23{width:38.680800px;}
._22{width:41.112000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yda{bottom:119.196000px;}
.y66{bottom:119.376000px;}
.ybb{bottom:125.676000px;}
.y43{bottom:134.856000px;}
.yee{bottom:135.396000px;}
.yd9{bottom:142.236000px;}
.y65{bottom:142.596000px;}
.y1f{bottom:144.936000px;}
.yba{bottom:148.896000px;}
.y7a{bottom:150.510000px;}
.y42{bottom:158.070000px;}
.yd8{bottom:165.450000px;}
.y64{bottom:165.810000px;}
.y1e{bottom:168.510000px;}
.yed{bottom:171.390000px;}
.yb9{bottom:172.110000px;}
.y79{bottom:173.550000px;}
.y41{bottom:181.290000px;}
.y8a{bottom:181.650000px;}
.yd7{bottom:188.670000px;}
.ydf{bottom:189.030000px;}
.y78{bottom:196.770000px;}
.y63{bottom:204.510000px;}
.y89{bottom:205.410000px;}
.y1d{bottom:207.030000px;}
.yec{bottom:207.390000px;}
.y108{bottom:210.270000px;}
.yb8{bottom:210.810000px;}
.y40{bottom:219.990000px;}
.yd6{bottom:227.370000px;}
.y62{bottom:227.730000px;}
.y88{bottom:228.990000px;}
.yb7{bottom:234.030000px;}
.y3f{bottom:243.210000px;}
.yeb{bottom:243.390000px;}
.y1c{bottom:245.910000px;}
.y107{bottom:246.270000px;}
.yd5{bottom:250.590000px;}
.y61{bottom:250.950000px;}
.y87{bottom:252.750000px;}
.yb6{bottom:257.250000px;}
.y3e{bottom:266.430000px;}
.y77{bottom:267.330000px;}
.yd4{bottom:273.810000px;}
.y60{bottom:274.170000px;}
.yea{bottom:279.390000px;}
.yb5{bottom:280.470000px;}
.y106{bottom:282.270000px;}
.y86{bottom:283.530000px;}
.y1b{bottom:284.610000px;}
.y3d{bottom:289.650000px;}
.y76{bottom:294.510000px;}
.yd3{bottom:297.030000px;}
.y5f{bottom:297.390000px;}
.yb4{bottom:303.690000px;}
.y1a{bottom:307.830000px;}
.y3c{bottom:312.915000px;}
.ye9{bottom:315.435000px;}
.y105{bottom:319.395000px;}
.yd2{bottom:320.295000px;}
.y5e{bottom:320.655000px;}
.yb3{bottom:326.955000px;}
.y19{bottom:330.915000px;}
.y3b{bottom:336.135000px;}
.yd1{bottom:343.515000px;}
.yde{bottom:343.695000px;}
.yb2{bottom:349.995000px;}
.ye8{bottom:351.255000px;}
.y18{bottom:354.135000px;}
.y104{bottom:355.755000px;}
.y3a{bottom:359.175000px;}
.y75{bottom:359.355000px;}
.y17{bottom:377.355000px;}
.y103{bottom:379.695000px;}
.ya4{bottom:381.495000px;}
.yd0{bottom:382.035000px;}
.y39{bottom:382.395000px;}
.y74{bottom:382.575000px;}
.ye7{bottom:387.255000px;}
.yb1{bottom:388.695000px;}
.y5d{bottom:397.875000px;}
.y16{bottom:400.575000px;}
.ya3{bottom:404.535000px;}
.y38{bottom:405.615000px;}
.y73{bottom:405.795000px;}
.yb0{bottom:411.015000px;}
.y102{bottom:415.695000px;}
.ycf{bottom:420.915000px;}
.ye6{bottom:423.255000px;}
.y15{bottom:423.795000px;}
.ya2{bottom:427.755000px;}
.y37{bottom:428.835000px;}
.y5c{bottom:436.575000px;}
.y14{bottom:447.015000px;}
.ye5{bottom:447.195000px;}
.yaf{bottom:449.715000px;}
.ya1{bottom:450.975000px;}
.y101{bottom:451.695000px;}
.y36{bottom:452.055000px;}
.y5b{bottom:459.795000px;}
.y13{bottom:470.235000px;}
.yae{bottom:472.935000px;}
.ya0{bottom:474.195000px;}
.y72{bottom:475.275000px;}
.y100{bottom:475.635000px;}
.yce{bottom:482.835000px;}
.y5a{bottom:483.015000px;}
.ye4{bottom:483.195000px;}
.y35{bottom:490.755000px;}
.y12{bottom:493.455000px;}
.yad{bottom:496.155000px;}
.y9f{bottom:497.415000px;}
.y71{bottom:498.495000px;}
.yff{bottom:499.575000px;}
.ycd{bottom:506.055000px;}
.y59{bottom:506.235000px;}
.ye3{bottom:507.135000px;}
.y34{bottom:513.975000px;}
.y11{bottom:516.495000px;}
.yac{bottom:519.195000px;}
.y9e{bottom:520.635000px;}
.y70{bottom:521.715000px;}
.ycc{bottom:529.275000px;}
.y58{bottom:529.455000px;}
.yfe{bottom:535.575000px;}
.y33{bottom:537.195000px;}
.y10{bottom:539.715000px;}
.yab{bottom:542.415000px;}
.y9d{bottom:543.855000px;}
.y6f{bottom:544.935000px;}
.ye2{bottom:545.835000px;}
.ycb{bottom:552.495000px;}
.y57{bottom:552.675000px;}
.yfd{bottom:559.515000px;}
.y32{bottom:560.445000px;}
.yf{bottom:562.965000px;}
.yaa{bottom:565.665000px;}
.y9c{bottom:567.105000px;}
.y6e{bottom:568.185000px;}
.y56{bottom:575.745000px;}
.y31{bottom:583.665000px;}
.y9b{bottom:590.325000px;}
.y6d{bottom:591.405000px;}
.yfc{bottom:595.545000px;}
.y55{bottom:598.965000px;}
.ye{bottom:601.665000px;}
.ya9{bottom:604.185000px;}
.y30{bottom:606.885000px;}
.y6c{bottom:614.625000px;}
.yca{bottom:622.185000px;}
.ya8{bottom:627.945000px;}
.y9a{bottom:628.845000px;}
.y2f{bottom:629.925000px;}
.ydd{bottom:630.105000px;}
.yfb{bottom:631.545000px;}
.y54{bottom:637.665000px;}
.yd{bottom:640.185000px;}
.yc9{bottom:645.405000px;}
.ya7{bottom:651.525000px;}
.y2e{bottom:653.145000px;}
.ydc{bottom:653.325000px;}
.y53{bottom:660.885000px;}
.yfa{bottom:667.545000px;}
.y99{bottom:667.725000px;}
.yc8{bottom:668.625000px;}
.ya6{bottom:675.105000px;}
.y2d{bottom:676.365000px;}
.yc{bottom:677.805000px;}
.y52{bottom:684.105000px;}
.yc7{bottom:691.665000px;}
.yb{bottom:698.325000px;}
.y2c{bottom:699.585000px;}
.yf9{bottom:703.365000px;}
.ya5{bottom:705.705000px;}
.y98{bottom:706.425000px;}
.y51{bottom:707.325000px;}
.yc6{bottom:714.885000px;}
.y2b{bottom:722.805000px;}
.y97{bottom:729.645000px;}
.y50{bottom:730.545000px;}
.ya{bottom:734.325000px;}
.yc5{bottom:738.105000px;}
.yf8{bottom:739.365000px;}
.y6b{bottom:746.025000px;}
.y96{bottom:752.865000px;}
.y85{bottom:753.585000px;}
.y4f{bottom:753.765000px;}
.yc4{bottom:761.325000px;}
.y2a{bottom:761.505000px;}
.ye1{bottom:769.245000px;}
.y9{bottom:771.945000px;}
.yf7{bottom:775.365000px;}
.y95{bottom:776.085000px;}
.y84{bottom:776.805000px;}
.y4e{bottom:776.985000px;}
.yc3{bottom:784.545000px;}
.y29{bottom:784.725000px;}
.ye0{bottom:792.465000px;}
.y94{bottom:799.305000px;}
.y83{bottom:800.025000px;}
.yc2{bottom:807.765000px;}
.y8{bottom:807.945000px;}
.yf6{bottom:811.410000px;}
.y4d{bottom:815.730000px;}
.y93{bottom:822.570000px;}
.y82{bottom:823.290000px;}
.ydb{bottom:823.470000px;}
.yc1{bottom:831.030000px;}
.y28{bottom:831.210000px;}
.y4c{bottom:838.950000px;}
.y7{bottom:845.610000px;}
.y81{bottom:846.510000px;}
.yf5{bottom:847.410000px;}
.yc0{bottom:854.250000px;}
.y27{bottom:854.430000px;}
.y92{bottom:861.270000px;}
.y4b{bottom:862.170000px;}
.y80{bottom:869.730000px;}
.ybf{bottom:877.470000px;}
.y26{bottom:877.650000px;}
.y6{bottom:882.690000px;}
.yf4{bottom:883.410000px;}
.y91{bottom:884.490000px;}
.y4a{bottom:885.390000px;}
.y7f{bottom:892.950000px;}
.ybe{bottom:900.510000px;}
.y25{bottom:900.690000px;}
.y6a{bottom:900.870000px;}
.yf3{bottom:907.350000px;}
.y90{bottom:907.710000px;}
.y49{bottom:908.430000px;}
.y7e{bottom:916.170000px;}
.y5{bottom:920.310000px;}
.y24{bottom:923.910000px;}
.y69{bottom:924.090000px;}
.y8f{bottom:930.930000px;}
.y48{bottom:931.650000px;}
.ybd{bottom:939.030000px;}
.y7d{bottom:939.390000px;}
.yf2{bottom:943.350000px;}
.y23{bottom:947.130000px;}
.y68{bottom:947.310000px;}
.y8e{bottom:954.150000px;}
.y47{bottom:954.870000px;}
.y4{bottom:957.570000px;}
.y7c{bottom:962.430000px;}
.y67{bottom:970.350000px;}
.y8d{bottom:977.190000px;}
.ybc{bottom:978.090000px;}
.yf1{bottom:979.350000px;}
.y22{bottom:985.650000px;}
.y46{bottom:993.570000px;}
.y3{bottom:996.090000px;}
.yf0{bottom:1003.290000px;}
.y8c{bottom:1015.890000px;}
.y45{bottom:1016.790000px;}
.y7b{bottom:1024.170000px;}
.y21{bottom:1024.710000px;}
.y2{bottom:1032.450000px;}
.yef{bottom:1039.290000px;}
.y8b{bottom:1039.650000px;}
.y44{bottom:1040.010000px;}
.y1{bottom:1060.350000px;}
.y20{bottom:1063.260000px;}
.h2{height:50.308594px;}
.h3{height:50.391562px;}
.h4{height:50.800781px;}
.h6{height:52.417969px;}
.h5{height:54.773438px;}
.h7{height:55.825312px;}
.h8{height:58.861055px;}
.h1{height:59.436914px;}
.h9{height:71.613281px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:133.955986px;}
.x3{left:135.035986px;}
.x17{left:137.195986px;}
.x13{left:141.515986px;}
.x12{left:144.035986px;}
.x16{left:145.835986px;}
.x18{left:147.455986px;}
.x11{left:151.949986px;}
.xa{left:159.509986px;}
.x1a{left:162.029986px;}
.x10{left:169.589986px;}
.x1{left:182.909986px;}
.xe{left:189.029986px;}
.x19{left:236.369986px;}
.x5{left:263.189986px;}
.x8{left:295.274986px;}
.x7{left:308.054986px;}
.x14{left:323.174986px;}
.x2{left:339.734986px;}
.x4{left:340.994986px;}
.xb{left:383.654986px;}
.x6{left:393.554986px;}
.x9{left:408.314986px;}
.xc{left:425.594986px;}
.xf{left:771.989986px;}
.x15{left:780.989986px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.084267pt;}
.ls8{letter-spacing:-0.038400pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.176533pt;}
.lsb{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.227733pt;}
.ls4{letter-spacing:0.229547pt;}
.lsc{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls5{letter-spacing:11.366400pt;}
.lsa{letter-spacing:30.208000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.808000pt;}
.ws6{word-spacing:-14.656000pt;}
.ws5{word-spacing:-12.953600pt;}
.ws4{word-spacing:-8.166400pt;}
.ws1{word-spacing:0.000000pt;}
._1f{margin-left:-7.765333pt;}
._1{margin-left:-6.837760pt;}
._2{margin-left:-5.639040pt;}
._1a{margin-left:-4.631680pt;}
._3{margin-left:-3.415040pt;}
._5{margin-left:-2.459520pt;}
._0{margin-left:-1.123200pt;}
._4{width:1.172267pt;}
._9{width:2.240000pt;}
._a{width:3.136000pt;}
._e{width:4.096000pt;}
._f{width:5.174400pt;}
._1e{width:6.080000pt;}
._8{width:6.976000pt;}
._11{width:8.091520pt;}
._12{width:9.251200pt;}
._13{width:10.171733pt;}
._7{width:11.321600pt;}
._6{width:12.224000pt;}
._10{width:13.568000pt;}
._19{width:14.704000pt;}
._1b{width:15.835947pt;}
._18{width:16.896000pt;}
._16{width:17.792000pt;}
._17{width:19.008000pt;}
._14{width:19.904000pt;}
._24{width:21.355733pt;}
._25{width:22.592000pt;}
._21{width:23.872000pt;}
._15{width:24.768000pt;}
._b{width:26.368000pt;}
._20{width:27.875200pt;}
._c{width:28.992000pt;}
._d{width:30.646400pt;}
._1d{width:31.766400pt;}
._1c{width:32.931200pt;}
._23{width:34.382933pt;}
._22{width:36.544000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yda{bottom:105.952000pt;}
.y66{bottom:106.112000pt;}
.ybb{bottom:111.712000pt;}
.y43{bottom:119.872000pt;}
.yee{bottom:120.352000pt;}
.yd9{bottom:126.432000pt;}
.y65{bottom:126.752000pt;}
.y1f{bottom:128.832000pt;}
.yba{bottom:132.352000pt;}
.y7a{bottom:133.786667pt;}
.y42{bottom:140.506667pt;}
.yd8{bottom:147.066667pt;}
.y64{bottom:147.386667pt;}
.y1e{bottom:149.786667pt;}
.yed{bottom:152.346667pt;}
.yb9{bottom:152.986667pt;}
.y79{bottom:154.266667pt;}
.y41{bottom:161.146667pt;}
.y8a{bottom:161.466667pt;}
.yd7{bottom:167.706667pt;}
.ydf{bottom:168.026667pt;}
.y78{bottom:174.906667pt;}
.y63{bottom:181.786667pt;}
.y89{bottom:182.586667pt;}
.y1d{bottom:184.026667pt;}
.yec{bottom:184.346667pt;}
.y108{bottom:186.906667pt;}
.yb8{bottom:187.386667pt;}
.y40{bottom:195.546667pt;}
.yd6{bottom:202.106667pt;}
.y62{bottom:202.426667pt;}
.y88{bottom:203.546667pt;}
.yb7{bottom:208.026667pt;}
.y3f{bottom:216.186667pt;}
.yeb{bottom:216.346667pt;}
.y1c{bottom:218.586667pt;}
.y107{bottom:218.906667pt;}
.yd5{bottom:222.746667pt;}
.y61{bottom:223.066667pt;}
.y87{bottom:224.666667pt;}
.yb6{bottom:228.666667pt;}
.y3e{bottom:236.826667pt;}
.y77{bottom:237.626667pt;}
.yd4{bottom:243.386667pt;}
.y60{bottom:243.706667pt;}
.yea{bottom:248.346667pt;}
.yb5{bottom:249.306667pt;}
.y106{bottom:250.906667pt;}
.y86{bottom:252.026667pt;}
.y1b{bottom:252.986667pt;}
.y3d{bottom:257.466667pt;}
.y76{bottom:261.786667pt;}
.yd3{bottom:264.026667pt;}
.y5f{bottom:264.346667pt;}
.yb4{bottom:269.946667pt;}
.y1a{bottom:273.626667pt;}
.y3c{bottom:278.146667pt;}
.ye9{bottom:280.386667pt;}
.y105{bottom:283.906667pt;}
.yd2{bottom:284.706667pt;}
.y5e{bottom:285.026667pt;}
.yb3{bottom:290.626667pt;}
.y19{bottom:294.146667pt;}
.y3b{bottom:298.786667pt;}
.yd1{bottom:305.346667pt;}
.yde{bottom:305.506667pt;}
.yb2{bottom:311.106667pt;}
.ye8{bottom:312.226667pt;}
.y18{bottom:314.786667pt;}
.y104{bottom:316.226667pt;}
.y3a{bottom:319.266667pt;}
.y75{bottom:319.426667pt;}
.y17{bottom:335.426667pt;}
.y103{bottom:337.506667pt;}
.ya4{bottom:339.106667pt;}
.yd0{bottom:339.586667pt;}
.y39{bottom:339.906667pt;}
.y74{bottom:340.066667pt;}
.ye7{bottom:344.226667pt;}
.yb1{bottom:345.506667pt;}
.y5d{bottom:353.666667pt;}
.y16{bottom:356.066667pt;}
.ya3{bottom:359.586667pt;}
.y38{bottom:360.546667pt;}
.y73{bottom:360.706667pt;}
.yb0{bottom:365.346667pt;}
.y102{bottom:369.506667pt;}
.ycf{bottom:374.146667pt;}
.ye6{bottom:376.226667pt;}
.y15{bottom:376.706667pt;}
.ya2{bottom:380.226667pt;}
.y37{bottom:381.186667pt;}
.y5c{bottom:388.066667pt;}
.y14{bottom:397.346667pt;}
.ye5{bottom:397.506667pt;}
.yaf{bottom:399.746667pt;}
.ya1{bottom:400.866667pt;}
.y101{bottom:401.506667pt;}
.y36{bottom:401.826667pt;}
.y5b{bottom:408.706667pt;}
.y13{bottom:417.986667pt;}
.yae{bottom:420.386667pt;}
.ya0{bottom:421.506667pt;}
.y72{bottom:422.466667pt;}
.y100{bottom:422.786667pt;}
.yce{bottom:429.186667pt;}
.y5a{bottom:429.346667pt;}
.ye4{bottom:429.506667pt;}
.y35{bottom:436.226667pt;}
.y12{bottom:438.626667pt;}
.yad{bottom:441.026667pt;}
.y9f{bottom:442.146667pt;}
.y71{bottom:443.106667pt;}
.yff{bottom:444.066667pt;}
.ycd{bottom:449.826667pt;}
.y59{bottom:449.986667pt;}
.ye3{bottom:450.786667pt;}
.y34{bottom:456.866667pt;}
.y11{bottom:459.106667pt;}
.yac{bottom:461.506667pt;}
.y9e{bottom:462.786667pt;}
.y70{bottom:463.746667pt;}
.ycc{bottom:470.466667pt;}
.y58{bottom:470.626667pt;}
.yfe{bottom:476.066667pt;}
.y33{bottom:477.506667pt;}
.y10{bottom:479.746667pt;}
.yab{bottom:482.146667pt;}
.y9d{bottom:483.426667pt;}
.y6f{bottom:484.386667pt;}
.ye2{bottom:485.186667pt;}
.ycb{bottom:491.106667pt;}
.y57{bottom:491.266667pt;}
.yfd{bottom:497.346667pt;}
.y32{bottom:498.173333pt;}
.yf{bottom:500.413333pt;}
.yaa{bottom:502.813333pt;}
.y9c{bottom:504.093333pt;}
.y6e{bottom:505.053333pt;}
.y56{bottom:511.773333pt;}
.y31{bottom:518.813333pt;}
.y9b{bottom:524.733333pt;}
.y6d{bottom:525.693333pt;}
.yfc{bottom:529.373333pt;}
.y55{bottom:532.413333pt;}
.ye{bottom:534.813333pt;}
.ya9{bottom:537.053333pt;}
.y30{bottom:539.453333pt;}
.y6c{bottom:546.333333pt;}
.yca{bottom:553.053333pt;}
.ya8{bottom:558.173333pt;}
.y9a{bottom:558.973333pt;}
.y2f{bottom:559.933333pt;}
.ydd{bottom:560.093333pt;}
.yfb{bottom:561.373333pt;}
.y54{bottom:566.813333pt;}
.yd{bottom:569.053333pt;}
.yc9{bottom:573.693333pt;}
.ya7{bottom:579.133333pt;}
.y2e{bottom:580.573333pt;}
.ydc{bottom:580.733333pt;}
.y53{bottom:587.453333pt;}
.yfa{bottom:593.373333pt;}
.y99{bottom:593.533333pt;}
.yc8{bottom:594.333333pt;}
.ya6{bottom:600.093333pt;}
.y2d{bottom:601.213333pt;}
.yc{bottom:602.493333pt;}
.y52{bottom:608.093333pt;}
.yc7{bottom:614.813333pt;}
.yb{bottom:620.733333pt;}
.y2c{bottom:621.853333pt;}
.yf9{bottom:625.213333pt;}
.ya5{bottom:627.293333pt;}
.y98{bottom:627.933333pt;}
.y51{bottom:628.733333pt;}
.yc6{bottom:635.453333pt;}
.y2b{bottom:642.493333pt;}
.y97{bottom:648.573333pt;}
.y50{bottom:649.373333pt;}
.ya{bottom:652.733333pt;}
.yc5{bottom:656.093333pt;}
.yf8{bottom:657.213333pt;}
.y6b{bottom:663.133333pt;}
.y96{bottom:669.213333pt;}
.y85{bottom:669.853333pt;}
.y4f{bottom:670.013333pt;}
.yc4{bottom:676.733333pt;}
.y2a{bottom:676.893333pt;}
.ye1{bottom:683.773333pt;}
.y9{bottom:686.173333pt;}
.yf7{bottom:689.213333pt;}
.y95{bottom:689.853333pt;}
.y84{bottom:690.493333pt;}
.y4e{bottom:690.653333pt;}
.yc3{bottom:697.373333pt;}
.y29{bottom:697.533333pt;}
.ye0{bottom:704.413333pt;}
.y94{bottom:710.493333pt;}
.y83{bottom:711.133333pt;}
.yc2{bottom:718.013333pt;}
.y8{bottom:718.173333pt;}
.yf6{bottom:721.253333pt;}
.y4d{bottom:725.093333pt;}
.y93{bottom:731.173333pt;}
.y82{bottom:731.813333pt;}
.ydb{bottom:731.973333pt;}
.yc1{bottom:738.693333pt;}
.y28{bottom:738.853333pt;}
.y4c{bottom:745.733333pt;}
.y7{bottom:751.653333pt;}
.y81{bottom:752.453333pt;}
.yf5{bottom:753.253333pt;}
.yc0{bottom:759.333333pt;}
.y27{bottom:759.493333pt;}
.y92{bottom:765.573333pt;}
.y4b{bottom:766.373333pt;}
.y80{bottom:773.093333pt;}
.ybf{bottom:779.973333pt;}
.y26{bottom:780.133333pt;}
.y6{bottom:784.613333pt;}
.yf4{bottom:785.253333pt;}
.y91{bottom:786.213333pt;}
.y4a{bottom:787.013333pt;}
.y7f{bottom:793.733333pt;}
.ybe{bottom:800.453333pt;}
.y25{bottom:800.613333pt;}
.y6a{bottom:800.773333pt;}
.yf3{bottom:806.533333pt;}
.y90{bottom:806.853333pt;}
.y49{bottom:807.493333pt;}
.y7e{bottom:814.373333pt;}
.y5{bottom:818.053333pt;}
.y24{bottom:821.253333pt;}
.y69{bottom:821.413333pt;}
.y8f{bottom:827.493333pt;}
.y48{bottom:828.133333pt;}
.ybd{bottom:834.693333pt;}
.y7d{bottom:835.013333pt;}
.yf2{bottom:838.533333pt;}
.y23{bottom:841.893333pt;}
.y68{bottom:842.053333pt;}
.y8e{bottom:848.133333pt;}
.y47{bottom:848.773333pt;}
.y4{bottom:851.173333pt;}
.y7c{bottom:855.493333pt;}
.y67{bottom:862.533333pt;}
.y8d{bottom:868.613333pt;}
.ybc{bottom:869.413333pt;}
.yf1{bottom:870.533333pt;}
.y22{bottom:876.133333pt;}
.y46{bottom:883.173333pt;}
.y3{bottom:885.413333pt;}
.yf0{bottom:891.813333pt;}
.y8c{bottom:903.013333pt;}
.y45{bottom:903.813333pt;}
.y7b{bottom:910.373333pt;}
.y21{bottom:910.853333pt;}
.y2{bottom:917.733333pt;}
.yef{bottom:923.813333pt;}
.y8b{bottom:924.133333pt;}
.y44{bottom:924.453333pt;}
.y1{bottom:942.533333pt;}
.y20{bottom:945.120000pt;}
.h2{height:44.718750pt;}
.h3{height:44.792500pt;}
.h4{height:45.156250pt;}
.h6{height:46.593750pt;}
.h5{height:48.687500pt;}
.h7{height:49.622500pt;}
.h8{height:52.320937pt;}
.h1{height:52.832812pt;}
.h9{height:63.656250pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:119.071988pt;}
.x3{left:120.031988pt;}
.x17{left:121.951988pt;}
.x13{left:125.791988pt;}
.x12{left:128.031988pt;}
.x16{left:129.631988pt;}
.x18{left:131.071988pt;}
.x11{left:135.066655pt;}
.xa{left:141.786655pt;}
.x1a{left:144.026655pt;}
.x10{left:150.746655pt;}
.x1{left:162.586655pt;}
.xe{left:168.026655pt;}
.x19{left:210.106655pt;}
.x5{left:233.946655pt;}
.x8{left:262.466655pt;}
.x7{left:273.826655pt;}
.x14{left:287.266655pt;}
.x2{left:301.986655pt;}
.x4{left:303.106655pt;}
.xb{left:341.026655pt;}
.x6{left:349.826655pt;}
.x9{left:362.946655pt;}
.xc{left:378.306655pt;}
.xf{left:686.213321pt;}
.x15{left:694.213321pt;}
}




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