
    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_d0d99ff8ad4e8a58bedb88a8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;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_3343367c34d9ea5272d46512.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;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_4cd11fd869e2095e2aca0bb9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.734000;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_faade90f99e87e2496d9cb46.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.009000;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_3e59540c101520b842f4fd4d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;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_089478c5e2f01d57cf5bd80f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.388000;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.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m11{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls11{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.000002px;}
.ls2{letter-spacing:0.000049px;}
.lsa{letter-spacing:0.001176px;}
.ls19{letter-spacing:0.001298px;}
.ls3{letter-spacing:0.001831px;}
.lsc{letter-spacing:0.001952px;}
.ls18{letter-spacing:0.002522px;}
.ls15{letter-spacing:0.002782px;}
.ls13{letter-spacing:0.003226px;}
.ls17{letter-spacing:0.003313px;}
.lsd{letter-spacing:0.003488px;}
.ls14{letter-spacing:0.003699px;}
.lse{letter-spacing:0.004005px;}
.ls6{letter-spacing:0.004200px;}
.ls1{letter-spacing:0.004792px;}
.ls0{letter-spacing:0.005131px;}
.ls8{letter-spacing:2.989200px;}
.ls4{letter-spacing:10.461300px;}
.ls10{letter-spacing:11.954850px;}
.ls7{letter-spacing:14.939108px;}
.ls9{letter-spacing:17.929200px;}
.ls5{letter-spacing:57.415200px;}
.lsb{letter-spacing:62.761200px;}
.lsf{letter-spacing:64.321654px;}
.ls12{letter-spacing:94.292700px;}
.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;}
}
.wsc{word-spacing:-14.943900px;}
.ws10{word-spacing:-11.955150px;}
.wsf{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws1e{word-spacing:-1.016185px;}
.ws24{word-spacing:-0.896634px;}
.ws28{word-spacing:-0.836858px;}
.ws1b{word-spacing:-0.478205px;}
.ws26{word-spacing:-0.358654px;}
.ws17{word-spacing:-0.298878px;}
.ws1d{word-spacing:-0.239102px;}
.ws1a{word-spacing:-0.119551px;}
.wsb{word-spacing:-0.059776px;}
.ws11{word-spacing:-0.047821px;}
.wse{word-spacing:-0.003841px;}
.ws2{word-spacing:0.000000px;}
.wsd{word-spacing:0.003608px;}
.ws1{word-spacing:0.041843px;}
.ws18{word-spacing:0.119551px;}
.ws12{word-spacing:0.143462px;}
.ws1c{word-spacing:0.179327px;}
.ws13{word-spacing:0.191282px;}
.ws16{word-spacing:0.239102px;}
.ws2c{word-spacing:0.268992px;}
.ws22{word-spacing:0.298878px;}
.ws19{word-spacing:0.717307px;}
.ws20{word-spacing:0.836858px;}
.ws21{word-spacing:1.255288px;}
.wsa{word-spacing:1.380812px;}
.ws1f{word-spacing:1.853044px;}
.ws23{word-spacing:2.032370px;}
.ws3{word-spacing:2.510568px;}
.ws0{word-spacing:2.677460px;}
.ws14{word-spacing:2.869236px;}
.ws2a{word-spacing:3.224822px;}
.ws2b{word-spacing:3.496896px;}
.ws15{word-spacing:3.586536px;}
.ws8{word-spacing:5.481407px;}
.ws25{word-spacing:7.292623px;}
.ws27{word-spacing:8.428360px;}
.ws29{word-spacing:8.966340px;}
.ws6{word-spacing:9.833058px;}
.ws7{word-spacing:11.841512px;}
.ws9{word-spacing:16.067635px;}
.ws5{word-spacing:22.339429px;}
._7{margin-left:-11.943245px;}
._9{margin-left:-6.635092px;}
._0{margin-left:-5.397721px;}
._1{margin-left:-3.849538px;}
._c{margin-left:-2.540498px;}
._2{margin-left:-1.506341px;}
._a{width:3.005738px;}
._3{width:10.460700px;}
._e{width:11.955150px;}
._4{width:12.971268px;}
._b{width:14.364063px;}
._14{width:15.604986px;}
._d{width:17.526202px;}
._8{width:18.533254px;}
._11{width:24.274913px;}
._5{width:25.314894px;}
._13{width:26.480591px;}
._6{width:31.256572px;}
._12{width:40.886510px;}
._f{width:795.858625px;}
._10{width:2374.125362px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fs5{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs6{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y40{bottom:31.890000px;}
.y11{bottom:104.646000px;}
.y10{bottom:122.535000px;}
.y6d{bottom:129.012000px;}
.yf{bottom:140.422500px;}
.y6c{bottom:147.841500px;}
.ye{bottom:158.310000px;}
.y6b{bottom:166.671000px;}
.yd{bottom:176.199000px;}
.y6a{bottom:192.972000px;}
.yc{bottom:194.086500px;}
.y3f{bottom:201.385500px;}
.yb{bottom:211.974000px;}
.y69{bottom:219.273000px;}
.y3e{bottom:220.215000px;}
.ya{bottom:229.863000px;}
.y68{bottom:238.102500px;}
.y3d{bottom:239.044500px;}
.y3c{bottom:257.874000px;}
.y67{bottom:264.403500px;}
.y3b{bottom:276.703500px;}
.y66{bottom:287.716500px;}
.y3a{bottom:295.533000px;}
.y9{bottom:296.896500px;}
.y39{bottom:314.362500px;}
.y65{bottom:321.340500px;}
.y8{bottom:323.751000px;}
.y38{bottom:333.192000px;}
.y64{bottom:340.170000px;}
.y7{bottom:341.638500px;}
.y37{bottom:352.021500px;}
.y63{bottom:358.999500px;}
.y6{bottom:359.527500px;}
.y36{bottom:370.851000px;}
.y5{bottom:377.415000px;}
.y62{bottom:385.300500px;}
.y35{bottom:389.680500px;}
.y4{bottom:395.302500px;}
.y34{bottom:408.510000px;}
.y61{bottom:411.603000px;}
.y3{bottom:413.191500px;}
.y33{bottom:427.339500px;}
.y60{bottom:430.432500px;}
.y2{bottom:431.079000px;}
.y32{bottom:446.169000px;}
.y1{bottom:448.966500px;}
.y5f{bottom:456.733500px;}
.y31{bottom:464.998500px;}
.y5e{bottom:483.034500px;}
.y30{bottom:483.828000px;}
.y5d{bottom:501.864000px;}
.y2f{bottom:502.657500px;}
.y2e{bottom:521.487000px;}
.y5c{bottom:528.165000px;}
.y2d{bottom:540.315000px;}
.y5b{bottom:554.467500px;}
.y2c{bottom:559.144500px;}
.y5a{bottom:573.297000px;}
.y2b{bottom:577.974000px;}
.y2a{bottom:596.803500px;}
.y59{bottom:599.598000px;}
.y29{bottom:615.633000px;}
.y58{bottom:625.899000px;}
.y28{bottom:638.946000px;}
.y57{bottom:644.728500px;}
.y56{bottom:671.031000px;}
.y55{bottom:697.332000px;}
.y27{bottom:714.870000px;}
.y54{bottom:723.633000px;}
.y26{bottom:731.010000px;}
.y53{bottom:749.934000px;}
.y25{bottom:751.489500px;}
.y24{bottom:763.288500px;}
.y52{bottom:768.763500px;}
.y23{bottom:779.428500px;}
.y22{bottom:783.768000px;}
.y51{bottom:795.066000px;}
.y21{bottom:795.568500px;}
.y20{bottom:816.048000px;}
.y50{bottom:818.377500px;}
.y1f{bottom:827.847000px;}
.y4f{bottom:838.552500px;}
.y1e{bottom:848.326500px;}
.y1d{bottom:860.127000px;}
.y4e{bottom:872.176500px;}
.y1c{bottom:880.605000px;}
.y4d{bottom:891.006000px;}
.y1b{bottom:892.405500px;}
.y4c{bottom:909.835500px;}
.y1a{bottom:912.885000px;}
.y19{bottom:924.684000px;}
.y4b{bottom:928.665000px;}
.y18{bottom:940.824000px;}
.y4a{bottom:947.494500px;}
.y17{bottom:956.964000px;}
.y16{bottom:961.303500px;}
.y49{bottom:966.324000px;}
.y48{bottom:992.625000px;}
.y15{bottom:1005.979500px;}
.y47{bottom:1011.454500px;}
.y71{bottom:1017.417000px;}
.y14{bottom:1024.809000px;}
.y46{bottom:1030.284000px;}
.y70{bottom:1034.677500px;}
.y45{bottom:1049.113500px;}
.y6f{bottom:1051.938000px;}
.y13{bottom:1064.728500px;}
.y44{bottom:1075.414500px;}
.y6e{bottom:1091.016000px;}
.y12{bottom:1092.972000px;}
.y43{bottom:1094.244000px;}
.y42{bottom:1117.557000px;}
.y41{bottom:1177.662000px;}
.h7{height:26.110157px;}
.hc{height:27.655250px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h8{height:34.813397px;}
.hb{height:35.052500px;}
.hd{height:39.165235px;}
.h9{height:43.038432px;}
.ha{height:43.516637px;}
.h4{height:43.815515px;}
.h6{height:54.411312px;}
.h5{height:77.469696px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x3{left:269.764500px;}
.x5{left:281.479500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls11{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.000002pt;}
.ls2{letter-spacing:0.000044pt;}
.lsa{letter-spacing:0.001045pt;}
.ls19{letter-spacing:0.001154pt;}
.ls3{letter-spacing:0.001628pt;}
.lsc{letter-spacing:0.001735pt;}
.ls18{letter-spacing:0.002242pt;}
.ls15{letter-spacing:0.002473pt;}
.ls13{letter-spacing:0.002868pt;}
.ls17{letter-spacing:0.002945pt;}
.lsd{letter-spacing:0.003100pt;}
.ls14{letter-spacing:0.003288pt;}
.lse{letter-spacing:0.003560pt;}
.ls6{letter-spacing:0.003733pt;}
.ls1{letter-spacing:0.004259pt;}
.ls0{letter-spacing:0.004561pt;}
.ls8{letter-spacing:2.657067pt;}
.ls4{letter-spacing:9.298933pt;}
.ls10{letter-spacing:10.626533pt;}
.ls7{letter-spacing:13.279207pt;}
.ls9{letter-spacing:15.937067pt;}
.ls5{letter-spacing:51.035733pt;}
.lsb{letter-spacing:55.787733pt;}
.lsf{letter-spacing:57.174803pt;}
.ls12{letter-spacing:83.815733pt;}
.wsc{word-spacing:-13.283467pt;}
.ws10{word-spacing:-10.626800pt;}
.wsf{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws1e{word-spacing:-0.903276pt;}
.ws24{word-spacing:-0.797008pt;}
.ws28{word-spacing:-0.743874pt;}
.ws1b{word-spacing:-0.425071pt;}
.ws26{word-spacing:-0.318803pt;}
.ws17{word-spacing:-0.265669pt;}
.ws1d{word-spacing:-0.212535pt;}
.ws1a{word-spacing:-0.106268pt;}
.wsb{word-spacing:-0.053134pt;}
.ws11{word-spacing:-0.042507pt;}
.wse{word-spacing:-0.003414pt;}
.ws2{word-spacing:0.000000pt;}
.wsd{word-spacing:0.003207pt;}
.ws1{word-spacing:0.037194pt;}
.ws18{word-spacing:0.106268pt;}
.ws12{word-spacing:0.127522pt;}
.ws1c{word-spacing:0.159402pt;}
.ws13{word-spacing:0.170029pt;}
.ws16{word-spacing:0.212535pt;}
.ws2c{word-spacing:0.239104pt;}
.ws22{word-spacing:0.265669pt;}
.ws19{word-spacing:0.637606pt;}
.ws20{word-spacing:0.743874pt;}
.ws21{word-spacing:1.115811pt;}
.wsa{word-spacing:1.227389pt;}
.ws1f{word-spacing:1.647150pt;}
.ws23{word-spacing:1.806551pt;}
.ws3{word-spacing:2.231616pt;}
.ws0{word-spacing:2.379964pt;}
.ws14{word-spacing:2.550432pt;}
.ws2a{word-spacing:2.866509pt;}
.ws2b{word-spacing:3.108352pt;}
.ws15{word-spacing:3.188032pt;}
.ws8{word-spacing:4.872362pt;}
.ws25{word-spacing:6.482332pt;}
.ws27{word-spacing:7.491875pt;}
.ws29{word-spacing:7.970080pt;}
.ws6{word-spacing:8.740496pt;}
.ws7{word-spacing:10.525789pt;}
.ws9{word-spacing:14.282342pt;}
.ws5{word-spacing:19.857270pt;}
._7{margin-left:-10.616218pt;}
._9{margin-left:-5.897859pt;}
._0{margin-left:-4.797974pt;}
._1{margin-left:-3.421811pt;}
._c{margin-left:-2.258221pt;}
._2{margin-left:-1.338970pt;}
._a{width:2.671767pt;}
._3{width:9.298400pt;}
._e{width:10.626800pt;}
._4{width:11.530016pt;}
._b{width:12.768056pt;}
._14{width:13.871098pt;}
._d{width:15.578846pt;}
._8{width:16.474003pt;}
._11{width:21.577700pt;}
._5{width:22.502128pt;}
._13{width:23.538303pt;}
._6{width:27.783619pt;}
._12{width:36.343565pt;}
._f{width:707.429889pt;}
._10{width:2110.333655pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fs5{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs6{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:28.346667pt;}
.y11{bottom:93.018667pt;}
.y10{bottom:108.920000pt;}
.y6d{bottom:114.677333pt;}
.yf{bottom:124.820000pt;}
.y6c{bottom:131.414667pt;}
.ye{bottom:140.720000pt;}
.y6b{bottom:148.152000pt;}
.yd{bottom:156.621333pt;}
.y6a{bottom:171.530667pt;}
.yc{bottom:172.521333pt;}
.y3f{bottom:179.009333pt;}
.yb{bottom:188.421333pt;}
.y69{bottom:194.909333pt;}
.y3e{bottom:195.746667pt;}
.ya{bottom:204.322667pt;}
.y68{bottom:211.646667pt;}
.y3d{bottom:212.484000pt;}
.y3c{bottom:229.221333pt;}
.y67{bottom:235.025333pt;}
.y3b{bottom:245.958667pt;}
.y66{bottom:255.748000pt;}
.y3a{bottom:262.696000pt;}
.y9{bottom:263.908000pt;}
.y39{bottom:279.433333pt;}
.y65{bottom:285.636000pt;}
.y8{bottom:287.778667pt;}
.y38{bottom:296.170667pt;}
.y64{bottom:302.373333pt;}
.y7{bottom:303.678667pt;}
.y37{bottom:312.908000pt;}
.y63{bottom:319.110667pt;}
.y6{bottom:319.580000pt;}
.y36{bottom:329.645333pt;}
.y5{bottom:335.480000pt;}
.y62{bottom:342.489333pt;}
.y35{bottom:346.382667pt;}
.y4{bottom:351.380000pt;}
.y34{bottom:363.120000pt;}
.y61{bottom:365.869333pt;}
.y3{bottom:367.281333pt;}
.y33{bottom:379.857333pt;}
.y60{bottom:382.606667pt;}
.y2{bottom:383.181333pt;}
.y32{bottom:396.594667pt;}
.y1{bottom:399.081333pt;}
.y5f{bottom:405.985333pt;}
.y31{bottom:413.332000pt;}
.y5e{bottom:429.364000pt;}
.y30{bottom:430.069333pt;}
.y5d{bottom:446.101333pt;}
.y2f{bottom:446.806667pt;}
.y2e{bottom:463.544000pt;}
.y5c{bottom:469.480000pt;}
.y2d{bottom:480.280000pt;}
.y5b{bottom:492.860000pt;}
.y2c{bottom:497.017333pt;}
.y5a{bottom:509.597333pt;}
.y2b{bottom:513.754667pt;}
.y2a{bottom:530.492000pt;}
.y59{bottom:532.976000pt;}
.y29{bottom:547.229333pt;}
.y58{bottom:556.354667pt;}
.y28{bottom:567.952000pt;}
.y57{bottom:573.092000pt;}
.y56{bottom:596.472000pt;}
.y55{bottom:619.850667pt;}
.y27{bottom:635.440000pt;}
.y54{bottom:643.229333pt;}
.y26{bottom:649.786667pt;}
.y53{bottom:666.608000pt;}
.y25{bottom:667.990667pt;}
.y24{bottom:678.478667pt;}
.y52{bottom:683.345333pt;}
.y23{bottom:692.825333pt;}
.y22{bottom:696.682667pt;}
.y51{bottom:706.725333pt;}
.y21{bottom:707.172000pt;}
.y20{bottom:725.376000pt;}
.y50{bottom:727.446667pt;}
.y1f{bottom:735.864000pt;}
.y4f{bottom:745.380000pt;}
.y1e{bottom:754.068000pt;}
.y1d{bottom:764.557333pt;}
.y4e{bottom:775.268000pt;}
.y1c{bottom:782.760000pt;}
.y4d{bottom:792.005333pt;}
.y1b{bottom:793.249333pt;}
.y4c{bottom:808.742667pt;}
.y1a{bottom:811.453333pt;}
.y19{bottom:821.941333pt;}
.y4b{bottom:825.480000pt;}
.y18{bottom:836.288000pt;}
.y4a{bottom:842.217333pt;}
.y17{bottom:850.634667pt;}
.y16{bottom:854.492000pt;}
.y49{bottom:858.954667pt;}
.y48{bottom:882.333333pt;}
.y15{bottom:894.204000pt;}
.y47{bottom:899.070667pt;}
.y71{bottom:904.370667pt;}
.y14{bottom:910.941333pt;}
.y46{bottom:915.808000pt;}
.y70{bottom:919.713333pt;}
.y45{bottom:932.545333pt;}
.y6f{bottom:935.056000pt;}
.y13{bottom:946.425333pt;}
.y44{bottom:955.924000pt;}
.y6e{bottom:969.792000pt;}
.y12{bottom:971.530667pt;}
.y43{bottom:972.661333pt;}
.y42{bottom:993.384000pt;}
.y41{bottom:1046.810667pt;}
.h7{height:23.209028pt;}
.hc{height:24.582445pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h8{height:30.945242pt;}
.hb{height:31.157778pt;}
.hd{height:34.813542pt;}
.h9{height:38.256384pt;}
.ha{height:38.681455pt;}
.h4{height:38.947124pt;}
.h6{height:48.365611pt;}
.h5{height:68.861952pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x3{left:239.790667pt;}
.x5{left:250.204000pt;}
}




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