
    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_76a608d45fd3c54b9b970632.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_8d5c865264dbf05f95c57b31.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8420e375156ee2184c0b58c0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1df45d22b3cbd56dbe559c6c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_65223c292466771370269cc5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b64862d5c4ea628ce55dc53f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.164000;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_d7e9339a113214f91360b965.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.156889;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_bebbaf7a7f4746cd7c7e518b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_24fe3386bea8d10c40846a4d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d67844e9f18d8f1f44af55cc.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.164000;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_d7e9339a113214f91360b965.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.156889;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_0ba4c18d8490b8ff6fc5ec79.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_67e339b95d09f9ffeeeef205.woff2')format("woff");}.fff{font-family:fff;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b9f310e2444ac7469f051f03.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1{vertical-align:213.900000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:1.799982px;}
.ls1{letter-spacing:3.299994px;}
.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;}
}
.ws2{word-spacing:-75.000000px;}
.ws1{word-spacing:-22.500000px;}
.ws6{word-spacing:-16.799994px;}
.ws5{word-spacing:-16.500000px;}
.ws8{word-spacing:-15.299982px;}
.ws7{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.200000px;}
.ws3{word-spacing:-12.000000px;}
.ws0{word-spacing:0.000000px;}
._f{margin-left:-20.700000px;}
._13{margin-left:-13.397664px;}
._14{margin-left:-10.193868px;}
._15{margin-left:-7.764840px;}
._e{margin-left:-6.054132px;}
._c{margin-left:-4.623018px;}
._b{margin-left:-2.604330px;}
._3{margin-left:-1.199958px;}
._8{width:1.145952px;}
._2{width:2.927784px;}
._1{width:4.548024px;}
._0{width:5.561964px;}
._9{width:6.900564px;}
._10{width:7.964646px;}
._6{width:9.186090px;}
._a{width:10.721526px;}
._5{width:12.347880px;}
._7{width:13.799904px;}
._d{width:15.258678px;}
._4{width:20.124000px;}
._1b{width:28.110168px;}
._17{width:29.147610px;}
._16{width:30.847584px;}
._12{width:39.317916px;}
._18{width:41.790624px;}
._1a{width:74.226264px;}
._11{width:83.772936px;}
._19{width:86.772936px;}
.fc2{color:transparent;}
.fc1{color:rgb(100,179,43);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsb{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:90.000000px;}
.fsa{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:138.000000px;}
.fs5{font-size:258.000000px;}
.fs8{font-size:300.000000px;}
.y0{bottom:0.000000px;}
.y8f{bottom:34.200066px;}
.y53{bottom:34.275066px;}
.y5{bottom:66.525004px;}
.y83{bottom:85.650066px;}
.y47{bottom:86.700066px;}
.y4{bottom:97.125005px;}
.y46{bottom:105.450066px;}
.y52{bottom:106.500066px;}
.y82{bottom:124.800066px;}
.y8e{bottom:124.875066px;}
.y45{bottom:125.925066px;}
.y22{bottom:139.264499px;}
.y81{bottom:144.300066px;}
.ya9{bottom:144.675066px;}
.y44{bottom:145.350066px;}
.y80{bottom:163.800066px;}
.y51{bottom:164.850066px;}
.y7f{bottom:183.225066px;}
.y43{bottom:184.275066px;}
.ya8{bottom:192.225066px;}
.y19{bottom:196.933500px;}
.y7e{bottom:202.650066px;}
.y42{bottom:203.700066px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.ya7{bottom:221.025066px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y7d{bottom:222.450066px;}
.y41{bottom:223.575066px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y7c{bottom:241.875066px;}
.y50{bottom:242.925066px;}
.y40{bottom:243.000066px;}
.ya6{bottom:249.450066px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y7b{bottom:261.300066px;}
.y4f{bottom:262.350066px;}
.y3f{bottom:262.425066px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.ya5{bottom:277.875066px;}
.y7a{bottom:280.800066px;}
.y3e{bottom:281.850066px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y79{bottom:300.225066px;}
.ya0{bottom:300.525066px;}
.y3d{bottom:301.275066px;}
.ya4{bottom:306.000066px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y78{bottom:319.650066px;}
.y3c{bottom:320.700066px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y77{bottom:339.450066px;}
.y4e{bottom:340.500066px;}
.y3b{bottom:340.575066px;}
.y10{bottom:348.133500px;}
.y76{bottom:358.875066px;}
.y4d{bottom:359.925066px;}
.y3a{bottom:360.000066px;}
.y75{bottom:378.300066px;}
.ya3{bottom:378.375066px;}
.y4c{bottom:379.350066px;}
.y39{bottom:379.425066px;}
.yf{bottom:386.785499px;}
.y74{bottom:397.800066px;}
.y38{bottom:398.850066px;}
.ye{bottom:408.044999px;}
.y9f{bottom:417.225066px;}
.y37{bottom:418.275066px;}
.y8d{bottom:421.875066px;}
.y9e{bottom:436.650066px;}
.y73{bottom:437.025066px;}
.y36{bottom:437.700066px;}
.y8c{bottom:450.300066px;}
.y9d{bottom:456.375066px;}
.y72{bottom:456.450066px;}
.y4b{bottom:457.500066px;}
.y35{bottom:457.575066px;}
.y71{bottom:475.875066px;}
.ya2{bottom:475.950066px;}
.y4a{bottom:476.925066px;}
.y34{bottom:477.000066px;}
.y8b{bottom:478.800066px;}
.yd{bottom:484.864502px;}
.y70{bottom:495.300066px;}
.y9c{bottom:495.375066px;}
.y49{bottom:496.350066px;}
.y33{bottom:496.425066px;}
.yc{bottom:502.864502px;}
.y8a{bottom:506.850066px;}
.y6f{bottom:514.800066px;}
.y32{bottom:515.850066px;}
.yb{bottom:520.864502px;}
.y6e{bottom:534.225066px;}
.y31{bottom:535.275066px;}
.y89{bottom:535.650066px;}
.ya{bottom:538.864499px;}
.y6d{bottom:553.650066px;}
.y30{bottom:554.700066px;}
.y9{bottom:556.864499px;}
.y2d{bottom:558.825066px;}
.y88{bottom:564.450066px;}
.y6c{bottom:573.450066px;}
.ya1{bottom:573.525066px;}
.y2f{bottom:574.500066px;}
.y9b{bottom:592.875066px;}
.y6b{bottom:592.950066px;}
.y2e{bottom:593.925066px;}
.y48{bottom:612.300066px;}
.y6a{bottom:612.375066px;}
.y69{bottom:631.800066px;}
.y8{bottom:645.510000px;}
.y2c{bottom:651.225066px;}
.y7{bottom:666.771000px;}
.y68{bottom:670.650066px;}
.ybe{bottom:681.000066px;}
.y67{bottom:690.450066px;}
.ybd{bottom:697.650066px;}
.yc3{bottom:700.425066px;}
.y9a{bottom:709.800066px;}
.y66{bottom:710.250066px;}
.ybc{bottom:716.625066px;}
.yc2{bottom:718.425066px;}
.y6{bottom:726.298500px;}
.y65{bottom:729.300066px;}
.y2b{bottom:730.050066px;}
.ybb{bottom:734.625066px;}
.yc1{bottom:736.425066px;}
.y64{bottom:748.800066px;}
.y3{bottom:752.599495px;}
.yc0{bottom:754.425066px;}
.y2a{bottom:758.475066px;}
.y63{bottom:768.225066px;}
.yba{bottom:772.425066px;}
.y29{bottom:786.900066px;}
.y62{bottom:787.650066px;}
.yb9{bottom:790.425066px;}
.y61{bottom:807.450066px;}
.ybf{bottom:807.675066px;}
.y28{bottom:815.400066px;}
.y60{bottom:826.875066px;}
.y27{bottom:844.200066px;}
.y87{bottom:846.300066px;}
.y86{bottom:865.800066px;}
.y26{bottom:872.625066px;}
.y5f{bottom:874.800066px;}
.y2{bottom:879.369000px;}
.y85{bottom:885.225066px;}
.y5e{bottom:902.850066px;}
.y84{bottom:904.650066px;}
.y99{bottom:924.525066px;}
.yb5{bottom:925.575066px;}
.y5d{bottom:932.025066px;}
.y98{bottom:943.950066px;}
.yb4{bottom:945.000066px;}
.y5c{bottom:960.450066px;}
.y97{bottom:963.375066px;}
.yb3{bottom:964.425066px;}
.y25{bottom:964.800066px;}
.y1{bottom:966.726000px;}
.y96{bottom:982.800066px;}
.yb2{bottom:983.850066px;}
.y5b{bottom:988.500066px;}
.y95{bottom:1002.225066px;}
.y24{bottom:1002.750066px;}
.yb1{bottom:1003.275066px;}
.y94{bottom:1021.650066px;}
.yb0{bottom:1022.700066px;}
.y93{bottom:1041.450066px;}
.y5a{bottom:1041.525066px;}
.yb8{bottom:1042.500066px;}
.yaf{bottom:1042.575066px;}
.y92{bottom:1060.800066px;}
.y23{bottom:1060.875066px;}
.y59{bottom:1060.950066px;}
.yb7{bottom:1061.850066px;}
.yae{bottom:1062.000066px;}
.y91{bottom:1080.300066px;}
.y58{bottom:1080.375066px;}
.yb6{bottom:1081.350066px;}
.yad{bottom:1081.425066px;}
.y57{bottom:1099.800066px;}
.yac{bottom:1100.850066px;}
.y56{bottom:1119.225066px;}
.y90{bottom:1119.525066px;}
.yab{bottom:1120.275066px;}
.y55{bottom:1138.650066px;}
.yaa{bottom:1139.700066px;}
.y54{bottom:1158.450066px;}
.h7{height:32.130000px;}
.h6{height:45.900000px;}
.h12{height:47.109375px;}
.h3{height:48.195000px;}
.hf{height:48.375000px;}
.h14{height:52.998047px;}
.h2{height:55.080000px;}
.h11{height:56.520000px;}
.hc{height:58.857422px;}
.he{height:58.886719px;}
.h13{height:64.775391px;}
.h5{height:78.030000px;}
.hb{height:88.330078px;}
.h10{height:94.218750px;}
.h4{height:119.055004px;}
.ha{height:135.439453px;}
.h9{height:253.212891px;}
.hd{height:294.433594px;}
.h0{height:1262.833500px;}
.h8{height:1262.850060px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w4{width:892.500000px;}
.w3{width:892.800000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:52.950000px;}
.x5{left:55.425000px;}
.x6{left:56.550000px;}
.x9{left:72.750000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xc{left:159.825000px;}
.x1f{left:163.800000px;}
.xf{left:192.975000px;}
.xe{left:196.950000px;}
.x4{left:203.484001px;}
.x10{left:207.375000px;}
.xd{left:211.650000px;}
.x11{left:232.200000px;}
.x7{left:285.450000px;}
.x19{left:409.650000px;}
.xa{left:411.150000px;}
.x1c{left:440.625000px;}
.x1b{left:441.750000px;}
.x1d{left:444.600000px;}
.x1a{left:452.850000px;}
.x3{left:454.959000px;}
.x1e{left:457.200000px;}
.x12{left:514.050000px;}
.x13{left:515.175000px;}
.x15{left:550.425000px;}
.x16{left:551.550000px;}
.x17{left:553.650000px;}
.x14{left:566.625000px;}
.x18{left:589.650000px;}
.xb{left:740.175000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:190.133333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:1.599984pt;}
.ls1{letter-spacing:2.933328pt;}
.ws2{word-spacing:-66.666667pt;}
.ws1{word-spacing:-20.000000pt;}
.ws6{word-spacing:-14.933328pt;}
.ws5{word-spacing:-14.666667pt;}
.ws8{word-spacing:-13.599984pt;}
.ws7{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.733333pt;}
.ws3{word-spacing:-10.666667pt;}
.ws0{word-spacing:0.000000pt;}
._f{margin-left:-18.400000pt;}
._13{margin-left:-11.909035pt;}
._14{margin-left:-9.061216pt;}
._15{margin-left:-6.902080pt;}
._e{margin-left:-5.381451pt;}
._c{margin-left:-4.109349pt;}
._b{margin-left:-2.314960pt;}
._3{margin-left:-1.066629pt;}
._8{width:1.018624pt;}
._2{width:2.602475pt;}
._1{width:4.042688pt;}
._0{width:4.943968pt;}
._9{width:6.133835pt;}
._10{width:7.079685pt;}
._6{width:8.165413pt;}
._a{width:9.530245pt;}
._5{width:10.975893pt;}
._7{width:12.266581pt;}
._d{width:13.563269pt;}
._4{width:17.888000pt;}
._1b{width:24.986816pt;}
._17{width:25.908987pt;}
._16{width:27.420075pt;}
._12{width:34.949259pt;}
._18{width:37.147221pt;}
._1a{width:65.978901pt;}
._11{width:74.464832pt;}
._19{width:77.131499pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsb{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:80.000000pt;}
.fsa{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:122.666667pt;}
.fs5{font-size:229.333333pt;}
.fs8{font-size:266.666667pt;}
.y0{bottom:0.000000pt;}
.y8f{bottom:30.400059pt;}
.y53{bottom:30.466725pt;}
.y5{bottom:59.133337pt;}
.y83{bottom:76.133392pt;}
.y47{bottom:77.066725pt;}
.y4{bottom:86.333337pt;}
.y46{bottom:93.733392pt;}
.y52{bottom:94.666725pt;}
.y82{bottom:110.933392pt;}
.y8e{bottom:111.000059pt;}
.y45{bottom:111.933392pt;}
.y22{bottom:123.790666pt;}
.y81{bottom:128.266725pt;}
.ya9{bottom:128.600059pt;}
.y44{bottom:129.200059pt;}
.y80{bottom:145.600059pt;}
.y51{bottom:146.533392pt;}
.y7f{bottom:162.866725pt;}
.y43{bottom:163.800059pt;}
.ya8{bottom:170.866725pt;}
.y19{bottom:175.052000pt;}
.y7e{bottom:180.133392pt;}
.y42{bottom:181.066725pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.ya7{bottom:196.466725pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y7d{bottom:197.733392pt;}
.y41{bottom:198.733392pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y7c{bottom:215.000059pt;}
.y50{bottom:215.933392pt;}
.y40{bottom:216.000059pt;}
.ya6{bottom:221.733392pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y7b{bottom:232.266725pt;}
.y4f{bottom:233.200059pt;}
.y3f{bottom:233.266725pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.ya5{bottom:247.000059pt;}
.y7a{bottom:249.600059pt;}
.y3e{bottom:250.533392pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y79{bottom:266.866725pt;}
.ya0{bottom:267.133392pt;}
.y3d{bottom:267.800059pt;}
.ya4{bottom:272.000059pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y78{bottom:284.133392pt;}
.y3c{bottom:285.066725pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y77{bottom:301.733392pt;}
.y4e{bottom:302.666725pt;}
.y3b{bottom:302.733392pt;}
.y10{bottom:309.452000pt;}
.y76{bottom:319.000059pt;}
.y4d{bottom:319.933392pt;}
.y3a{bottom:320.000059pt;}
.y75{bottom:336.266725pt;}
.ya3{bottom:336.333392pt;}
.y4c{bottom:337.200059pt;}
.y39{bottom:337.266725pt;}
.yf{bottom:343.809333pt;}
.y74{bottom:353.600059pt;}
.y38{bottom:354.533392pt;}
.ye{bottom:362.706666pt;}
.y9f{bottom:370.866725pt;}
.y37{bottom:371.800059pt;}
.y8d{bottom:375.000059pt;}
.y9e{bottom:388.133392pt;}
.y73{bottom:388.466725pt;}
.y36{bottom:389.066725pt;}
.y8c{bottom:400.266725pt;}
.y9d{bottom:405.666725pt;}
.y72{bottom:405.733392pt;}
.y4b{bottom:406.666725pt;}
.y35{bottom:406.733392pt;}
.y71{bottom:423.000059pt;}
.ya2{bottom:423.066725pt;}
.y4a{bottom:423.933392pt;}
.y34{bottom:424.000059pt;}
.y8b{bottom:425.600059pt;}
.yd{bottom:430.990669pt;}
.y70{bottom:440.266725pt;}
.y9c{bottom:440.333392pt;}
.y49{bottom:441.200059pt;}
.y33{bottom:441.266725pt;}
.yc{bottom:446.990669pt;}
.y8a{bottom:450.533392pt;}
.y6f{bottom:457.600059pt;}
.y32{bottom:458.533392pt;}
.yb{bottom:462.990669pt;}
.y6e{bottom:474.866725pt;}
.y31{bottom:475.800059pt;}
.y89{bottom:476.133392pt;}
.ya{bottom:478.990666pt;}
.y6d{bottom:492.133392pt;}
.y30{bottom:493.066725pt;}
.y9{bottom:494.990666pt;}
.y2d{bottom:496.733392pt;}
.y88{bottom:501.733392pt;}
.y6c{bottom:509.733392pt;}
.ya1{bottom:509.800059pt;}
.y2f{bottom:510.666725pt;}
.y9b{bottom:527.000059pt;}
.y6b{bottom:527.066725pt;}
.y2e{bottom:527.933392pt;}
.y48{bottom:544.266725pt;}
.y6a{bottom:544.333392pt;}
.y69{bottom:561.600059pt;}
.y8{bottom:573.786667pt;}
.y2c{bottom:578.866725pt;}
.y7{bottom:592.685334pt;}
.y68{bottom:596.133392pt;}
.ybe{bottom:605.333392pt;}
.y67{bottom:613.733392pt;}
.ybd{bottom:620.133392pt;}
.yc3{bottom:622.600059pt;}
.y9a{bottom:630.933392pt;}
.y66{bottom:631.333392pt;}
.ybc{bottom:637.000059pt;}
.yc2{bottom:638.600059pt;}
.y6{bottom:645.598667pt;}
.y65{bottom:648.266725pt;}
.y2b{bottom:648.933392pt;}
.ybb{bottom:653.000059pt;}
.yc1{bottom:654.600059pt;}
.y64{bottom:665.600059pt;}
.y3{bottom:668.977329pt;}
.yc0{bottom:670.600059pt;}
.y2a{bottom:674.200059pt;}
.y63{bottom:682.866725pt;}
.yba{bottom:686.600059pt;}
.y29{bottom:699.466725pt;}
.y62{bottom:700.133392pt;}
.yb9{bottom:702.600059pt;}
.y61{bottom:717.733392pt;}
.ybf{bottom:717.933392pt;}
.y28{bottom:724.800059pt;}
.y60{bottom:735.000059pt;}
.y27{bottom:750.400059pt;}
.y87{bottom:752.266725pt;}
.y86{bottom:769.600059pt;}
.y26{bottom:775.666725pt;}
.y5f{bottom:777.600059pt;}
.y2{bottom:781.661334pt;}
.y85{bottom:786.866725pt;}
.y5e{bottom:802.533392pt;}
.y84{bottom:804.133392pt;}
.y99{bottom:821.800059pt;}
.yb5{bottom:822.733392pt;}
.y5d{bottom:828.466725pt;}
.y98{bottom:839.066725pt;}
.yb4{bottom:840.000059pt;}
.y5c{bottom:853.733392pt;}
.y97{bottom:856.333392pt;}
.yb3{bottom:857.266725pt;}
.y25{bottom:857.600059pt;}
.y1{bottom:859.312000pt;}
.y96{bottom:873.600059pt;}
.yb2{bottom:874.533392pt;}
.y5b{bottom:878.666725pt;}
.y95{bottom:890.866725pt;}
.y24{bottom:891.333392pt;}
.yb1{bottom:891.800059pt;}
.y94{bottom:908.133392pt;}
.yb0{bottom:909.066725pt;}
.y93{bottom:925.733392pt;}
.y5a{bottom:925.800059pt;}
.yb8{bottom:926.666725pt;}
.yaf{bottom:926.733392pt;}
.y92{bottom:942.933392pt;}
.y23{bottom:943.000059pt;}
.y59{bottom:943.066725pt;}
.yb7{bottom:943.866725pt;}
.yae{bottom:944.000059pt;}
.y91{bottom:960.266725pt;}
.y58{bottom:960.333392pt;}
.yb6{bottom:961.200059pt;}
.yad{bottom:961.266725pt;}
.y57{bottom:977.600059pt;}
.yac{bottom:978.533392pt;}
.y56{bottom:994.866725pt;}
.y90{bottom:995.133392pt;}
.yab{bottom:995.800059pt;}
.y55{bottom:1012.133392pt;}
.yaa{bottom:1013.066725pt;}
.y54{bottom:1029.733392pt;}
.h7{height:28.560000pt;}
.h6{height:40.800000pt;}
.h12{height:41.875000pt;}
.h3{height:42.840000pt;}
.hf{height:43.000000pt;}
.h14{height:47.109375pt;}
.h2{height:48.960000pt;}
.h11{height:50.240000pt;}
.hc{height:52.317708pt;}
.he{height:52.343750pt;}
.h13{height:57.578125pt;}
.h5{height:69.360000pt;}
.hb{height:78.515625pt;}
.h10{height:83.750000pt;}
.h4{height:105.826671pt;}
.ha{height:120.390625pt;}
.h9{height:225.078125pt;}
.hd{height:261.718750pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.533387pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w4{width:793.333333pt;}
.w3{width:793.600000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:47.066667pt;}
.x5{left:49.266667pt;}
.x6{left:50.266667pt;}
.x9{left:64.666667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xc{left:142.066667pt;}
.x1f{left:145.600000pt;}
.xf{left:171.533333pt;}
.xe{left:175.066667pt;}
.x4{left:180.874667pt;}
.x10{left:184.333333pt;}
.xd{left:188.133333pt;}
.x11{left:206.400000pt;}
.x7{left:253.733333pt;}
.x19{left:364.133333pt;}
.xa{left:365.466667pt;}
.x1c{left:391.666667pt;}
.x1b{left:392.666667pt;}
.x1d{left:395.200000pt;}
.x1a{left:402.533333pt;}
.x3{left:404.408000pt;}
.x1e{left:406.400000pt;}
.x12{left:456.933333pt;}
.x13{left:457.933333pt;}
.x15{left:489.266667pt;}
.x16{left:490.266667pt;}
.x17{left:492.133333pt;}
.x14{left:503.666667pt;}
.x18{left:524.133333pt;}
.xb{left:657.933333pt;}
}




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