
    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_400f758c94f3819698918757.woff')format("woff");}.ff1{font-family:ff1;line-height:0.800293;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_6f7c6a8b348bfa58537ba9e0.woff')format("woff");}.ff2{font-family:ff2;line-height:0.800293;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_9a810acdfbe5acac6e33aa17.woff')format("woff");}.ff3{font-family:ff3;line-height:0.851562;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_e41395afe5d502053cf45499.woff')format("woff");}.ff4{font-family:ff4;line-height:0.851562;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_3061bda10d998955846a2e66.woff')format("woff");}.ff6{font-family:ff6;line-height:0.752000;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_2a33145a0185f81c0d85c9d9.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2702af44ea8385e33e713004.woff')format("woff");}.ff8{font-family:ff8;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ad3f595f2de2ab3fe4f56c61.woff')format("woff");}.ff9{font-family:ff9;line-height:1.049805;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_588627f1287541774814fef2.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8d9220424b80085ba45451c7.woff')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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_e4f8959a7f29da9bac6d08f4.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_72d335c678f99044b89a602b.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_57a2e88689eb741eedc550e6.woff')format("woff");}.ffe{font-family:ffe;line-height:0.916016;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:fff;src:url('chunks/assets/font_94a5e65ceb46cd51a11d9f6d.woff')format("woff");}.fff{font-family:fff;line-height:1.401855;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;}
.ls6{letter-spacing:-0.341400px;}
.ls5{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.129600px;}
.ls2{letter-spacing:-0.073200px;}
.ls7{letter-spacing:-0.018720px;}
.ls3{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.172080px;}
.ls0{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.341400px;}
.lse{letter-spacing:0.349200px;}
.ls8{letter-spacing:0.350400px;}
.lsb{letter-spacing:0.360000px;}
.lsa{letter-spacing:14.741280px;}
.ls13{letter-spacing:19.980000px;}
.ls9{letter-spacing:50.940000px;}
.ls10{letter-spacing:163.061280px;}
.lsc{letter-spacing:184.805280px;}
.ls11{letter-spacing:2808.420000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(27,69,107),0 0.015em rgb(27,69,107),0.015em 0 rgb(27,69,107),0 -0.015em  rgb(27,69,107);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(27,69,107);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-21.420000px;}
.ws7{word-spacing:-21.410400px;}
.ws3{word-spacing:-21.060000px;}
.ws6{word-spacing:-21.041280px;}
.ws5{word-spacing:-20.718600px;}
.ws9{word-spacing:-20.075760px;}
.ws0{word-spacing:-19.596960px;}
.ws2{word-spacing:-14.904000px;}
.ws1{word-spacing:-14.832000px;}
.ws4{word-spacing:0.000000px;}
._34{margin-left:-11.563680px;}
._2c{margin-left:-10.463520px;}
._3{margin-left:-8.592480px;}
._2e{margin-left:-7.497360px;}
._5{margin-left:-6.402240px;}
._2{margin-left:-5.258400px;}
._4{margin-left:-3.298560px;}
._1c{margin-left:-2.293680px;}
._1{margin-left:-1.245840px;}
._0{width:1.347840px;}
._17{width:2.386320px;}
._e{width:3.441840px;}
._13{width:4.555680px;}
._10{width:5.644080px;}
._1b{width:7.479600px;}
._12{width:8.715120px;}
._14{width:10.452720px;}
._18{width:11.581920px;}
._c{width:13.057200px;}
._2a{width:14.087280px;}
._d{width:15.107040px;}
._f{width:16.587120px;}
._11{width:18.262320px;}
._1a{width:19.494960px;}
._7{width:22.070880px;}
._6{width:23.712240px;}
._23{width:25.187760px;}
._19{width:26.451360px;}
._24{width:27.465120px;}
._16{width:28.860000px;}
._15{width:30.073680px;}
._a{width:31.842720px;}
._b{width:33.088560px;}
._2b{width:34.573920px;}
._27{width:36.054720px;}
._2f{width:37.431840px;}
._2d{width:38.750400px;}
._1e{width:39.827760px;}
._1d{width:41.128320px;}
._25{width:43.416000px;}
._26{width:44.858880px;}
._29{width:46.040880px;}
._1f{width:47.110800px;}
._20{width:48.225120px;}
._32{width:49.612800px;}
._28{width:50.786400px;}
._33{width:54.958560px;}
._30{width:56.946240px;}
._31{width:58.192080px;}
._8{width:61.074000px;}
._9{width:62.096880px;}
._22{width:76.986960px;}
._21{width:78.258960px;}
.fc6{color:transparent;}
.fc5{color:rgb(27,69,107);}
.fc4{color:rgb(192,0,0);}
.fc2{color:rgb(0,32,96);}
.fc3{color:rgb(204,153,0);}
.fc1{color:rgb(41,41,41);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:26.496000px;}
.y5{bottom:48.276000px;}
.y56{bottom:91.476000px;}
.y81{bottom:92.016000px;}
.y78{bottom:103.536000px;}
.y97{bottom:103.896000px;}
.y2a{bottom:109.656000px;}
.y68{bottom:110.556000px;}
.y55{bottom:119.196000px;}
.y80{bottom:119.916000px;}
.y77{bottom:131.256000px;}
.y96{bottom:131.796000px;}
.y29{bottom:137.556000px;}
.y67{bottom:138.456000px;}
.y54{bottom:147.096000px;}
.y7f{bottom:147.636000px;}
.y4a{bottom:150.690000px;}
.y76{bottom:158.970000px;}
.y95{bottom:159.510000px;}
.y66{bottom:161.670000px;}
.y28{bottom:165.270000px;}
.y53{bottom:174.810000px;}
.y7e{bottom:175.350000px;}
.y49{bottom:178.590000px;}
.y82{bottom:184.170000px;}
.y75{bottom:186.690000px;}
.y94{bottom:187.230000px;}
.y27{bottom:192.990000px;}
.y52{bottom:202.530000px;}
.y7d{bottom:203.250000px;}
.y48{bottom:206.310000px;}
.y74{bottom:214.590000px;}
.y93{bottom:214.950000px;}
.y26{bottom:220.890000px;}
.y51{bottom:230.250000px;}
.y7c{bottom:230.970000px;}
.y73{bottom:242.310000px;}
.y92{bottom:242.850000px;}
.y47{bottom:246.090000px;}
.y25{bottom:248.610000px;}
.y50{bottom:258.150000px;}
.y7b{bottom:258.690000px;}
.y72{bottom:270.030000px;}
.y91{bottom:270.570000px;}
.y46{bottom:273.810000px;}
.y24{bottom:276.330000px;}
.y4f{bottom:285.915000px;}
.y7a{bottom:286.455000px;}
.y71{bottom:297.975000px;}
.y90{bottom:298.335000px;}
.y45{bottom:301.755000px;}
.y23{bottom:304.095000px;}
.y79{bottom:309.855000px;}
.y4e{bottom:313.635000px;}
.y70{bottom:325.695000px;}
.y8f{bottom:326.055000px;}
.y44{bottom:329.475000px;}
.y22{bottom:331.995000px;}
.y4d{bottom:341.355000px;}
.y6f{bottom:353.415000px;}
.y8e{bottom:353.955000px;}
.y21{bottom:359.715000px;}
.y43{bottom:369.255000px;}
.y6e{bottom:381.135000px;}
.y8d{bottom:381.675000px;}
.y20{bottom:387.435000px;}
.y42{bottom:396.975000px;}
.y6d{bottom:409.035000px;}
.y8c{bottom:409.395000px;}
.y41{bottom:424.695000px;}
.y1f{bottom:427.215000px;}
.y6c{bottom:436.755000px;}
.y8b{bottom:437.295000px;}
.y40{bottom:452.595000px;}
.y1e{bottom:454.935000px;}
.y6b{bottom:464.475000px;}
.y8a{bottom:465.015000px;}
.y3f{bottom:480.315000px;}
.y1d{bottom:482.835000px;}
.y6a{bottom:492.375000px;}
.y89{bottom:492.735000px;}
.y3e{bottom:508.035000px;}
.y1c{bottom:510.555000px;}
.y69{bottom:520.095000px;}
.y88{bottom:520.455000px;}
.y3d{bottom:535.755000px;}
.y1b{bottom:538.275000px;}
.y65{bottom:547.815000px;}
.y87{bottom:548.355000px;}
.y3c{bottom:563.655000px;}
.y1a{bottom:566.205000px;}
.y64{bottom:575.565000px;}
.y86{bottom:576.105000px;}
.y3b{bottom:591.405000px;}
.y19{bottom:593.925000px;}
.y63{bottom:603.465000px;}
.y85{bottom:603.825000px;}
.y3a{bottom:619.125000px;}
.y18{bottom:621.645000px;}
.y62{bottom:631.185000px;}
.y84{bottom:631.725000px;}
.y39{bottom:647.025000px;}
.y17{bottom:649.365000px;}
.y83{bottom:654.945000px;}
.y61{bottom:658.905000px;}
.y38{bottom:674.745000px;}
.y16{bottom:677.265000px;}
.y60{bottom:686.625000px;}
.y37{bottom:702.465000px;}
.y15{bottom:704.985000px;}
.y5f{bottom:714.525000px;}
.y36{bottom:730.185000px;}
.y14{bottom:732.705000px;}
.y5e{bottom:742.245000px;}
.y35{bottom:758.085000px;}
.y13{bottom:760.605000px;}
.y5d{bottom:769.965000px;}
.y34{bottom:785.805000px;}
.y12{bottom:788.325000px;}
.y5c{bottom:797.865000px;}
.y33{bottom:813.525000px;}
.y11{bottom:816.045000px;}
.y5b{bottom:825.585000px;}
.y32{bottom:841.245000px;}
.y10{bottom:843.765000px;}
.y5a{bottom:853.350000px;}
.y31{bottom:869.190000px;}
.yf{bottom:871.710000px;}
.y59{bottom:881.070000px;}
.y30{bottom:896.910000px;}
.ye{bottom:899.430000px;}
.y58{bottom:908.970000px;}
.y2f{bottom:924.630000px;}
.yd{bottom:927.150000px;}
.y57{bottom:936.690000px;}
.y4c{bottom:952.530000px;}
.yc{bottom:954.870000px;}
.y2e{bottom:964.410000px;}
.y4b{bottom:980.250000px;}
.yb{bottom:982.770000px;}
.y2d{bottom:992.310000px;}
.ya{bottom:1010.490000px;}
.y2c{bottom:1020.030000px;}
.y2b{bottom:1047.750000px;}
.y9{bottom:1050.270000px;}
.y8{bottom:1075.470000px;}
.y7{bottom:1103.370000px;}
.y4{bottom:1143.180000px;}
.y3{bottom:1164.420000px;}
.y2{bottom:1187.820000px;}
.y1{bottom:1210.680000px;}
.h6{height:59.436914px;}
.h3{height:62.002969px;}
.h2{height:67.169883px;}
.h9{height:70.254844px;}
.h4{height:71.613281px;}
.h5{height:76.355508px;}
.ha{height:84.034336px;}
.hb{height:84.898125px;}
.h8{height:86.585445px;}
.h7{height:87.695156px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:30.959987px;}
.x5{left:42.479987px;}
.xc{left:57.959987px;}
.x4{left:84.959987px;}
.x1{left:106.235987px;}
.x7{left:122.075987px;}
.x6{left:124.055987px;}
.x9{left:262.649987px;}
.xa{left:288.074987px;}
.x8{left:369.794987px;}
.x10{left:397.694987px;}
.xb{left:446.474987px;}
.x2{left:501.584987px;}
.x3{left:632.084987px;}
.xd{left:738.509987px;}
.xe{left:787.109987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.303467pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.115200pt;}
.ls2{letter-spacing:-0.065067pt;}
.ls7{letter-spacing:-0.016640pt;}
.ls3{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.152960pt;}
.ls0{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.303467pt;}
.lse{letter-spacing:0.310400pt;}
.ls8{letter-spacing:0.311467pt;}
.lsb{letter-spacing:0.320000pt;}
.lsa{letter-spacing:13.103360pt;}
.ls13{letter-spacing:17.760000pt;}
.ls9{letter-spacing:45.280000pt;}
.ls10{letter-spacing:144.943360pt;}
.lsc{letter-spacing:164.271360pt;}
.ls11{letter-spacing:2496.373333pt;}
.ws8{word-spacing:-19.040000pt;}
.ws7{word-spacing:-19.031467pt;}
.ws3{word-spacing:-18.720000pt;}
.ws6{word-spacing:-18.703360pt;}
.ws5{word-spacing:-18.416533pt;}
.ws9{word-spacing:-17.845120pt;}
.ws0{word-spacing:-17.419520pt;}
.ws2{word-spacing:-13.248000pt;}
.ws1{word-spacing:-13.184000pt;}
.ws4{word-spacing:0.000000pt;}
._34{margin-left:-10.278827pt;}
._2c{margin-left:-9.300907pt;}
._3{margin-left:-7.637760pt;}
._2e{margin-left:-6.664320pt;}
._5{margin-left:-5.690880pt;}
._2{margin-left:-4.674133pt;}
._4{margin-left:-2.932053pt;}
._1c{margin-left:-2.038827pt;}
._1{margin-left:-1.107413pt;}
._0{width:1.198080pt;}
._17{width:2.121173pt;}
._e{width:3.059413pt;}
._13{width:4.049493pt;}
._10{width:5.016960pt;}
._1b{width:6.648533pt;}
._12{width:7.746773pt;}
._14{width:9.291307pt;}
._18{width:10.295040pt;}
._c{width:11.606400pt;}
._2a{width:12.522027pt;}
._d{width:13.428480pt;}
._f{width:14.744107pt;}
._11{width:16.233173pt;}
._1a{width:17.328853pt;}
._7{width:19.618560pt;}
._6{width:21.077547pt;}
._23{width:22.389120pt;}
._19{width:23.512320pt;}
._24{width:24.413440pt;}
._16{width:25.653333pt;}
._15{width:26.732160pt;}
._a{width:28.304640pt;}
._b{width:29.412053pt;}
._2b{width:30.732373pt;}
._27{width:32.048640pt;}
._2f{width:33.272747pt;}
._2d{width:34.444800pt;}
._1e{width:35.402453pt;}
._1d{width:36.558507pt;}
._25{width:38.592000pt;}
._26{width:39.874560pt;}
._29{width:40.925227pt;}
._1f{width:41.876267pt;}
._20{width:42.866773pt;}
._32{width:44.100267pt;}
._28{width:45.143467pt;}
._33{width:48.852053pt;}
._30{width:50.618880pt;}
._31{width:51.726293pt;}
._8{width:54.288000pt;}
._9{width:55.197227pt;}
._22{width:68.432853pt;}
._21{width:69.563520pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:23.552000pt;}
.y5{bottom:42.912000pt;}
.y56{bottom:81.312000pt;}
.y81{bottom:81.792000pt;}
.y78{bottom:92.032000pt;}
.y97{bottom:92.352000pt;}
.y2a{bottom:97.472000pt;}
.y68{bottom:98.272000pt;}
.y55{bottom:105.952000pt;}
.y80{bottom:106.592000pt;}
.y77{bottom:116.672000pt;}
.y96{bottom:117.152000pt;}
.y29{bottom:122.272000pt;}
.y67{bottom:123.072000pt;}
.y54{bottom:130.752000pt;}
.y7f{bottom:131.232000pt;}
.y4a{bottom:133.946667pt;}
.y76{bottom:141.306667pt;}
.y95{bottom:141.786667pt;}
.y66{bottom:143.706667pt;}
.y28{bottom:146.906667pt;}
.y53{bottom:155.386667pt;}
.y7e{bottom:155.866667pt;}
.y49{bottom:158.746667pt;}
.y82{bottom:163.706667pt;}
.y75{bottom:165.946667pt;}
.y94{bottom:166.426667pt;}
.y27{bottom:171.546667pt;}
.y52{bottom:180.026667pt;}
.y7d{bottom:180.666667pt;}
.y48{bottom:183.386667pt;}
.y74{bottom:190.746667pt;}
.y93{bottom:191.066667pt;}
.y26{bottom:196.346667pt;}
.y51{bottom:204.666667pt;}
.y7c{bottom:205.306667pt;}
.y73{bottom:215.386667pt;}
.y92{bottom:215.866667pt;}
.y47{bottom:218.746667pt;}
.y25{bottom:220.986667pt;}
.y50{bottom:229.466667pt;}
.y7b{bottom:229.946667pt;}
.y72{bottom:240.026667pt;}
.y91{bottom:240.506667pt;}
.y46{bottom:243.386667pt;}
.y24{bottom:245.626667pt;}
.y4f{bottom:254.146667pt;}
.y7a{bottom:254.626667pt;}
.y71{bottom:264.866667pt;}
.y90{bottom:265.186667pt;}
.y45{bottom:268.226667pt;}
.y23{bottom:270.306667pt;}
.y79{bottom:275.426667pt;}
.y4e{bottom:278.786667pt;}
.y70{bottom:289.506667pt;}
.y8f{bottom:289.826667pt;}
.y44{bottom:292.866667pt;}
.y22{bottom:295.106667pt;}
.y4d{bottom:303.426667pt;}
.y6f{bottom:314.146667pt;}
.y8e{bottom:314.626667pt;}
.y21{bottom:319.746667pt;}
.y43{bottom:328.226667pt;}
.y6e{bottom:338.786667pt;}
.y8d{bottom:339.266667pt;}
.y20{bottom:344.386667pt;}
.y42{bottom:352.866667pt;}
.y6d{bottom:363.586667pt;}
.y8c{bottom:363.906667pt;}
.y41{bottom:377.506667pt;}
.y1f{bottom:379.746667pt;}
.y6c{bottom:388.226667pt;}
.y8b{bottom:388.706667pt;}
.y40{bottom:402.306667pt;}
.y1e{bottom:404.386667pt;}
.y6b{bottom:412.866667pt;}
.y8a{bottom:413.346667pt;}
.y3f{bottom:426.946667pt;}
.y1d{bottom:429.186667pt;}
.y6a{bottom:437.666667pt;}
.y89{bottom:437.986667pt;}
.y3e{bottom:451.586667pt;}
.y1c{bottom:453.826667pt;}
.y69{bottom:462.306667pt;}
.y88{bottom:462.626667pt;}
.y3d{bottom:476.226667pt;}
.y1b{bottom:478.466667pt;}
.y65{bottom:486.946667pt;}
.y87{bottom:487.426667pt;}
.y3c{bottom:501.026667pt;}
.y1a{bottom:503.293333pt;}
.y64{bottom:511.613333pt;}
.y86{bottom:512.093333pt;}
.y3b{bottom:525.693333pt;}
.y19{bottom:527.933333pt;}
.y63{bottom:536.413333pt;}
.y85{bottom:536.733333pt;}
.y3a{bottom:550.333333pt;}
.y18{bottom:552.573333pt;}
.y62{bottom:561.053333pt;}
.y84{bottom:561.533333pt;}
.y39{bottom:575.133333pt;}
.y17{bottom:577.213333pt;}
.y83{bottom:582.173333pt;}
.y61{bottom:585.693333pt;}
.y38{bottom:599.773333pt;}
.y16{bottom:602.013333pt;}
.y60{bottom:610.333333pt;}
.y37{bottom:624.413333pt;}
.y15{bottom:626.653333pt;}
.y5f{bottom:635.133333pt;}
.y36{bottom:649.053333pt;}
.y14{bottom:651.293333pt;}
.y5e{bottom:659.773333pt;}
.y35{bottom:673.853333pt;}
.y13{bottom:676.093333pt;}
.y5d{bottom:684.413333pt;}
.y34{bottom:698.493333pt;}
.y12{bottom:700.733333pt;}
.y5c{bottom:709.213333pt;}
.y33{bottom:723.133333pt;}
.y11{bottom:725.373333pt;}
.y5b{bottom:733.853333pt;}
.y32{bottom:747.773333pt;}
.y10{bottom:750.013333pt;}
.y5a{bottom:758.533333pt;}
.y31{bottom:772.613333pt;}
.yf{bottom:774.853333pt;}
.y59{bottom:783.173333pt;}
.y30{bottom:797.253333pt;}
.ye{bottom:799.493333pt;}
.y58{bottom:807.973333pt;}
.y2f{bottom:821.893333pt;}
.yd{bottom:824.133333pt;}
.y57{bottom:832.613333pt;}
.y4c{bottom:846.693333pt;}
.yc{bottom:848.773333pt;}
.y2e{bottom:857.253333pt;}
.y4b{bottom:871.333333pt;}
.yb{bottom:873.573333pt;}
.y2d{bottom:882.053333pt;}
.ya{bottom:898.213333pt;}
.y2c{bottom:906.693333pt;}
.y2b{bottom:931.333333pt;}
.y9{bottom:933.573333pt;}
.y8{bottom:955.973333pt;}
.y7{bottom:980.773333pt;}
.y4{bottom:1016.160000pt;}
.y3{bottom:1035.040000pt;}
.y2{bottom:1055.840000pt;}
.y1{bottom:1076.160000pt;}
.h6{height:52.832812pt;}
.h3{height:55.113750pt;}
.h2{height:59.706562pt;}
.h9{height:62.448750pt;}
.h4{height:63.656250pt;}
.h5{height:67.871563pt;}
.ha{height:74.697187pt;}
.hb{height:75.465000pt;}
.h8{height:76.964840pt;}
.h7{height:77.951250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:27.519988pt;}
.x5{left:37.759988pt;}
.xc{left:51.519988pt;}
.x4{left:75.519988pt;}
.x1{left:94.431988pt;}
.x7{left:108.511988pt;}
.x6{left:110.271988pt;}
.x9{left:233.466655pt;}
.xa{left:256.066655pt;}
.x8{left:328.706655pt;}
.x10{left:353.506655pt;}
.xb{left:396.866655pt;}
.x2{left:445.853322pt;}
.x3{left:561.853322pt;}
.xd{left:656.453322pt;}
.xe{left:699.653322pt;}
}




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