
    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_ea93f6f5d458a5f55b90a03d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_5a5374683d92aa9f22255bba.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_7b51c448af749f3114997da2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.925781;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_608e1ee7574e9a55b4e42d14.woff')format("woff");}.ff4{font-family:ff4;line-height:0.922852;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_626bfa53ea65ef244bc077b2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.849000;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_c6396a2119b5e754c4343a8b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.902344;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_abf5379f7d9a400a1dbe96f1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.700000;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_7ba4dea1adc1f42410667aaa.woff')format("woff");}.ff8{font-family:ff8;line-height:1.082031;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_018f7b544d36907a8994582c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.833984;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:178.800000px;}
.ls17{letter-spacing:-4.680000px;}
.ls1f{letter-spacing:-1.296000px;}
.ls20{letter-spacing:-1.080000px;}
.ls1e{letter-spacing:-1.008000px;}
.ls9{letter-spacing:-0.864000px;}
.ls1d{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.648000px;}
.ls18{letter-spacing:-0.576000px;}
.lsb{letter-spacing:-0.504000px;}
.lse{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.432000px;}
.ls1a{letter-spacing:0.504000px;}
.ls11{letter-spacing:0.648000px;}
.ls1b{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.792000px;}
.lsf{letter-spacing:0.864000px;}
.ls10{letter-spacing:1.008000px;}
.ls13{letter-spacing:4.032000px;}
.ls0{letter-spacing:8.436000px;}
.ls4{letter-spacing:8.460000px;}
.ls12{letter-spacing:8.834400px;}
.ls2{letter-spacing:10.537599px;}
.ls1{letter-spacing:10.740000px;}
.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;}
}
.ws1{word-spacing:-20.232000px;}
.ws2{word-spacing:-17.352000px;}
.ws21{word-spacing:-17.208000px;}
.ws0{word-spacing:-8.496000px;}
.wsf{word-spacing:-8.460000px;}
.ws17{word-spacing:-1.008000px;}
.ws16{word-spacing:-0.864000px;}
.ws10{word-spacing:-0.792000px;}
.ws2a{word-spacing:-0.720000px;}
.ws1d{word-spacing:-0.648000px;}
.ws28{word-spacing:-0.504000px;}
.ws11{word-spacing:-0.432000px;}
.ws13{word-spacing:-0.360000px;}
.ws1c{word-spacing:-0.288000px;}
.ws9{word-spacing:-0.216000px;}
.wsa{word-spacing:-0.144000px;}
.ws29{word-spacing:-0.072000px;}
.ws7{word-spacing:0.000000px;}
.ws22{word-spacing:0.072000px;}
.ws8{word-spacing:0.144000px;}
.ws19{word-spacing:0.216000px;}
.wsd{word-spacing:0.360000px;}
.ws1e{word-spacing:0.432000px;}
.wse{word-spacing:0.504000px;}
.ws26{word-spacing:0.576000px;}
.ws27{word-spacing:0.648000px;}
.ws2c{word-spacing:0.720000px;}
.wsc{word-spacing:0.864000px;}
.ws2d{word-spacing:1.008000px;}
.ws2f{word-spacing:1.080000px;}
.ws2e{word-spacing:1.296000px;}
.ws6{word-spacing:1.800000px;}
.ws20{word-spacing:2.592000px;}
.ws2b{word-spacing:2.880000px;}
.ws1f{word-spacing:2.952000px;}
.ws1b{word-spacing:3.312000px;}
.ws3{word-spacing:4.200000px;}
.ws1a{word-spacing:4.464000px;}
.ws23{word-spacing:4.680000px;}
.wsb{word-spacing:5.040000px;}
.ws25{word-spacing:6.192000px;}
.ws12{word-spacing:6.696000px;}
.ws24{word-spacing:7.272000px;}
.ws4{word-spacing:7.440000px;}
.ws5{word-spacing:8.400000px;}
.ws18{word-spacing:8.928000px;}
.ws15{word-spacing:75.180000px;}
.ws14{word-spacing:146.196000px;}
._0{margin-left:-948.820800px;}
._12{margin-left:-32.634000px;}
._b{margin-left:-14.808000px;}
._4{margin-left:-11.928000px;}
._15{margin-left:-10.512000px;}
._14{margin-left:-8.228400px;}
._5{margin-left:-6.984000px;}
._1{margin-left:-5.964000px;}
._6{margin-left:-4.644000px;}
._8{margin-left:-2.844000px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._9{width:2.934000px;}
._10{width:4.050000px;}
._7{width:5.064000px;}
._e{width:6.199200px;}
._f{width:7.632000px;}
._a{width:8.762400px;}
._13{width:9.849600px;}
._d{width:10.864800px;}
._c{width:12.948000px;}
._11{width:29.538000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs4{font-size:419.376600px;}
.fs3{font-size:421.602600px;}
.y0{bottom:0.000000px;}
.y21{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y7d{bottom:118.542000px;}
.ya2{bottom:119.700000px;}
.y20{bottom:121.346550px;}
.y57{bottom:122.376300px;}
.y45{bottom:122.850000px;}
.ya1{bottom:138.300000px;}
.y7c{bottom:140.142000px;}
.y1f{bottom:143.702550px;}
.y56{bottom:144.570300px;}
.y44{bottom:144.900000px;}
.ya0{bottom:156.900000px;}
.y7b{bottom:161.436000px;}
.y1e{bottom:166.058550px;}
.y55{bottom:166.764300px;}
.y43{bottom:166.950000px;}
.y9f{bottom:175.500000px;}
.y7a{bottom:182.730000px;}
.y1d{bottom:188.414550px;}
.y54{bottom:188.958300px;}
.y42{bottom:189.000000px;}
.y79{bottom:204.024000px;}
.y9e{bottom:205.200000px;}
.y1c{bottom:210.770550px;}
.y41{bottom:211.050000px;}
.y53{bottom:211.152300px;}
.y78{bottom:225.318000px;}
.y1b{bottom:233.126550px;}
.y52{bottom:233.346300px;}
.y9d{bottom:242.400000px;}
.y40{bottom:243.900000px;}
.y77{bottom:246.612000px;}
.y1a{bottom:255.482550px;}
.y51{bottom:255.540300px;}
.y3f{bottom:265.950000px;}
.y76{bottom:267.906000px;}
.y9c{bottom:272.022000px;}
.y50{bottom:277.734300px;}
.y19{bottom:277.838550px;}
.y3e{bottom:288.000000px;}
.y75{bottom:289.200000px;}
.y9b{bottom:293.622000px;}
.y4f{bottom:299.928300px;}
.y18{bottom:300.194550px;}
.y3d{bottom:310.050000px;}
.y74{bottom:310.500000px;}
.y9a{bottom:315.222000px;}
.y4e{bottom:322.122300px;}
.y17{bottom:322.550550px;}
.y3c{bottom:332.100000px;}
.y99{bottom:336.822000px;}
.y4a{bottom:344.304300px;}
.y4d{bottom:344.316300px;}
.y16{bottom:344.906550px;}
.y73{bottom:353.250000px;}
.y3b{bottom:354.150000px;}
.y98{bottom:358.422000px;}
.y4c{bottom:366.510300px;}
.y15{bottom:367.262550px;}
.y72{bottom:374.544000px;}
.y3a{bottom:376.200000px;}
.y97{bottom:380.022000px;}
.y4b{bottom:388.704300px;}
.y14{bottom:389.618550px;}
.y71{bottom:395.838000px;}
.y39{bottom:398.250000px;}
.y96{bottom:401.622000px;}
.y13{bottom:411.968550px;}
.y70{bottom:417.132000px;}
.y38{bottom:420.300000px;}
.y95{bottom:423.222000px;}
.y12{bottom:434.318550px;}
.y6f{bottom:438.426000px;}
.y37{bottom:442.350000px;}
.y94{bottom:444.822000px;}
.y49{bottom:455.550000px;}
.y6e{bottom:459.720000px;}
.y36{bottom:464.400000px;}
.y93{bottom:466.422000px;}
.y11{bottom:478.958550px;}
.y6d{bottom:481.014000px;}
.y48{bottom:485.250000px;}
.y35{bottom:486.450000px;}
.y92{bottom:488.022000px;}
.y10{bottom:501.314550px;}
.y6c{bottom:502.308000px;}
.y34{bottom:508.500000px;}
.y91{bottom:509.622000px;}
.y47{bottom:514.950000px;}
.y6b{bottom:523.602000px;}
.yf{bottom:523.670550px;}
.y33{bottom:530.550000px;}
.y90{bottom:531.222000px;}
.y46{bottom:544.650000px;}
.y6a{bottom:544.896000px;}
.ye{bottom:546.026550px;}
.y32{bottom:552.600000px;}
.y8f{bottom:552.822000px;}
.y69{bottom:566.190000px;}
.yd{bottom:568.382550px;}
.y8e{bottom:574.422000px;}
.y31{bottom:574.650000px;}
.y68{bottom:587.484000px;}
.yc{bottom:590.738550px;}
.y8d{bottom:596.022000px;}
.y67{bottom:608.778000px;}
.yb{bottom:613.094550px;}
.y8c{bottom:617.478000px;}
.y30{bottom:618.750000px;}
.y66{bottom:630.072000px;}
.ya{bottom:635.450550px;}
.y8b{bottom:638.934000px;}
.y2f{bottom:640.800000px;}
.y65{bottom:651.366000px;}
.y9{bottom:657.806550px;}
.y7{bottom:657.818550px;}
.y8a{bottom:660.390000px;}
.y2e{bottom:662.850000px;}
.y64{bottom:672.660000px;}
.y8{bottom:680.162550px;}
.y89{bottom:681.846000px;}
.y2d{bottom:684.900000px;}
.y63{bottom:693.954000px;}
.y88{bottom:703.302000px;}
.y2c{bottom:706.950000px;}
.y62{bottom:715.248000px;}
.y87{bottom:724.758000px;}
.y2b{bottom:729.000000px;}
.y61{bottom:736.542000px;}
.y86{bottom:746.214000px;}
.y2a{bottom:751.050000px;}
.y60{bottom:757.836000px;}
.y85{bottom:767.670000px;}
.y6{bottom:770.604300px;}
.y29{bottom:773.100000px;}
.y5f{bottom:779.130000px;}
.y5{bottom:792.954300px;}
.y28{bottom:795.150000px;}
.y84{bottom:799.314000px;}
.y5e{bottom:800.424000px;}
.y27{bottom:817.200000px;}
.y83{bottom:820.770000px;}
.y5d{bottom:821.718000px;}
.y26{bottom:839.250000px;}
.y82{bottom:842.226000px;}
.y5c{bottom:843.012000px;}
.y4{bottom:859.950000px;}
.y25{bottom:861.300000px;}
.y81{bottom:863.682000px;}
.y5b{bottom:864.306000px;}
.y24{bottom:883.350000px;}
.y80{bottom:885.138000px;}
.y5a{bottom:885.600000px;}
.y3{bottom:889.800000px;}
.y23{bottom:905.400000px;}
.y7f{bottom:906.594000px;}
.y59{bottom:906.900000px;}
.y2{bottom:919.650000px;}
.y22{bottom:927.450000px;}
.y7e{bottom:928.050000px;}
.y58{bottom:928.200000px;}
.h1{height:41.396484px;}
.h4{height:47.988281px;}
.h8{height:49.675781px;}
.h3{height:50.580000px;}
.h7{height:50.947266px;}
.h6{height:61.136719px;}
.h2{height:82.792969px;}
.h9{height:101.894531px;}
.ha{height:293.563620px;}
.h5{height:295.121820px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x5{left:67.500000px;}
.x7{left:82.386000px;}
.x2{left:112.500000px;}
.x4{left:127.381650px;}
.x6{left:135.000000px;}
.x8{left:148.644000px;}
.x3{left:155.713650px;}
.x9{left:180.531450px;}
.x1{left:625.781250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:158.933333pt;}
.ls17{letter-spacing:-4.160000pt;}
.ls1f{letter-spacing:-1.152000pt;}
.ls20{letter-spacing:-0.960000pt;}
.ls1e{letter-spacing:-0.896000pt;}
.ls9{letter-spacing:-0.768000pt;}
.ls1d{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.576000pt;}
.ls18{letter-spacing:-0.512000pt;}
.lsb{letter-spacing:-0.448000pt;}
.lse{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.384000pt;}
.ls1a{letter-spacing:0.448000pt;}
.ls11{letter-spacing:0.576000pt;}
.ls1b{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.704000pt;}
.lsf{letter-spacing:0.768000pt;}
.ls10{letter-spacing:0.896000pt;}
.ls13{letter-spacing:3.584000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls4{letter-spacing:7.520000pt;}
.ls12{letter-spacing:7.852800pt;}
.ls2{letter-spacing:9.366755pt;}
.ls1{letter-spacing:9.546667pt;}
.ws1{word-spacing:-17.984000pt;}
.ws2{word-spacing:-15.424000pt;}
.ws21{word-spacing:-15.296000pt;}
.ws0{word-spacing:-7.552000pt;}
.wsf{word-spacing:-7.520000pt;}
.ws17{word-spacing:-0.896000pt;}
.ws16{word-spacing:-0.768000pt;}
.ws10{word-spacing:-0.704000pt;}
.ws2a{word-spacing:-0.640000pt;}
.ws1d{word-spacing:-0.576000pt;}
.ws28{word-spacing:-0.448000pt;}
.ws11{word-spacing:-0.384000pt;}
.ws13{word-spacing:-0.320000pt;}
.ws1c{word-spacing:-0.256000pt;}
.ws9{word-spacing:-0.192000pt;}
.wsa{word-spacing:-0.128000pt;}
.ws29{word-spacing:-0.064000pt;}
.ws7{word-spacing:0.000000pt;}
.ws22{word-spacing:0.064000pt;}
.ws8{word-spacing:0.128000pt;}
.ws19{word-spacing:0.192000pt;}
.wsd{word-spacing:0.320000pt;}
.ws1e{word-spacing:0.384000pt;}
.wse{word-spacing:0.448000pt;}
.ws26{word-spacing:0.512000pt;}
.ws27{word-spacing:0.576000pt;}
.ws2c{word-spacing:0.640000pt;}
.wsc{word-spacing:0.768000pt;}
.ws2d{word-spacing:0.896000pt;}
.ws2f{word-spacing:0.960000pt;}
.ws2e{word-spacing:1.152000pt;}
.ws6{word-spacing:1.600000pt;}
.ws20{word-spacing:2.304000pt;}
.ws2b{word-spacing:2.560000pt;}
.ws1f{word-spacing:2.624000pt;}
.ws1b{word-spacing:2.944000pt;}
.ws3{word-spacing:3.733333pt;}
.ws1a{word-spacing:3.968000pt;}
.ws23{word-spacing:4.160000pt;}
.wsb{word-spacing:4.480000pt;}
.ws25{word-spacing:5.504000pt;}
.ws12{word-spacing:5.952000pt;}
.ws24{word-spacing:6.464000pt;}
.ws4{word-spacing:6.613333pt;}
.ws5{word-spacing:7.466667pt;}
.ws18{word-spacing:7.936000pt;}
.ws15{word-spacing:66.826667pt;}
.ws14{word-spacing:129.952000pt;}
._0{margin-left:-843.396267pt;}
._12{margin-left:-29.008000pt;}
._b{margin-left:-13.162667pt;}
._4{margin-left:-10.602667pt;}
._15{margin-left:-9.344000pt;}
._14{margin-left:-7.314133pt;}
._5{margin-left:-6.208000pt;}
._1{margin-left:-5.301333pt;}
._6{margin-left:-4.128000pt;}
._8{margin-left:-2.528000pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._9{width:2.608000pt;}
._10{width:3.600000pt;}
._7{width:4.501333pt;}
._e{width:5.510400pt;}
._f{width:6.784000pt;}
._a{width:7.788800pt;}
._13{width:8.755200pt;}
._d{width:9.657600pt;}
._c{width:11.509333pt;}
._11{width:26.256000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs4{font-size:372.779200pt;}
.fs3{font-size:374.757867pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y7d{bottom:105.370667pt;}
.ya2{bottom:106.400000pt;}
.y20{bottom:107.863600pt;}
.y57{bottom:108.778933pt;}
.y45{bottom:109.200000pt;}
.ya1{bottom:122.933333pt;}
.y7c{bottom:124.570667pt;}
.y1f{bottom:127.735600pt;}
.y56{bottom:128.506933pt;}
.y44{bottom:128.800000pt;}
.ya0{bottom:139.466667pt;}
.y7b{bottom:143.498667pt;}
.y1e{bottom:147.607600pt;}
.y55{bottom:148.234933pt;}
.y43{bottom:148.400000pt;}
.y9f{bottom:156.000000pt;}
.y7a{bottom:162.426667pt;}
.y1d{bottom:167.479600pt;}
.y54{bottom:167.962933pt;}
.y42{bottom:168.000000pt;}
.y79{bottom:181.354667pt;}
.y9e{bottom:182.400000pt;}
.y1c{bottom:187.351600pt;}
.y41{bottom:187.600000pt;}
.y53{bottom:187.690933pt;}
.y78{bottom:200.282667pt;}
.y1b{bottom:207.223600pt;}
.y52{bottom:207.418933pt;}
.y9d{bottom:215.466667pt;}
.y40{bottom:216.800000pt;}
.y77{bottom:219.210667pt;}
.y1a{bottom:227.095600pt;}
.y51{bottom:227.146933pt;}
.y3f{bottom:236.400000pt;}
.y76{bottom:238.138667pt;}
.y9c{bottom:241.797333pt;}
.y50{bottom:246.874933pt;}
.y19{bottom:246.967600pt;}
.y3e{bottom:256.000000pt;}
.y75{bottom:257.066667pt;}
.y9b{bottom:260.997333pt;}
.y4f{bottom:266.602933pt;}
.y18{bottom:266.839600pt;}
.y3d{bottom:275.600000pt;}
.y74{bottom:276.000000pt;}
.y9a{bottom:280.197333pt;}
.y4e{bottom:286.330933pt;}
.y17{bottom:286.711600pt;}
.y3c{bottom:295.200000pt;}
.y99{bottom:299.397333pt;}
.y4a{bottom:306.048267pt;}
.y4d{bottom:306.058933pt;}
.y16{bottom:306.583600pt;}
.y73{bottom:314.000000pt;}
.y3b{bottom:314.800000pt;}
.y98{bottom:318.597333pt;}
.y4c{bottom:325.786933pt;}
.y15{bottom:326.455600pt;}
.y72{bottom:332.928000pt;}
.y3a{bottom:334.400000pt;}
.y97{bottom:337.797333pt;}
.y4b{bottom:345.514933pt;}
.y14{bottom:346.327600pt;}
.y71{bottom:351.856000pt;}
.y39{bottom:354.000000pt;}
.y96{bottom:356.997333pt;}
.y13{bottom:366.194267pt;}
.y70{bottom:370.784000pt;}
.y38{bottom:373.600000pt;}
.y95{bottom:376.197333pt;}
.y12{bottom:386.060933pt;}
.y6f{bottom:389.712000pt;}
.y37{bottom:393.200000pt;}
.y94{bottom:395.397333pt;}
.y49{bottom:404.933333pt;}
.y6e{bottom:408.640000pt;}
.y36{bottom:412.800000pt;}
.y93{bottom:414.597333pt;}
.y11{bottom:425.740933pt;}
.y6d{bottom:427.568000pt;}
.y48{bottom:431.333333pt;}
.y35{bottom:432.400000pt;}
.y92{bottom:433.797333pt;}
.y10{bottom:445.612933pt;}
.y6c{bottom:446.496000pt;}
.y34{bottom:452.000000pt;}
.y91{bottom:452.997333pt;}
.y47{bottom:457.733333pt;}
.y6b{bottom:465.424000pt;}
.yf{bottom:465.484933pt;}
.y33{bottom:471.600000pt;}
.y90{bottom:472.197333pt;}
.y46{bottom:484.133333pt;}
.y6a{bottom:484.352000pt;}
.ye{bottom:485.356933pt;}
.y32{bottom:491.200000pt;}
.y8f{bottom:491.397333pt;}
.y69{bottom:503.280000pt;}
.yd{bottom:505.228933pt;}
.y8e{bottom:510.597333pt;}
.y31{bottom:510.800000pt;}
.y68{bottom:522.208000pt;}
.yc{bottom:525.100933pt;}
.y8d{bottom:529.797333pt;}
.y67{bottom:541.136000pt;}
.yb{bottom:544.972933pt;}
.y8c{bottom:548.869333pt;}
.y30{bottom:550.000000pt;}
.y66{bottom:560.064000pt;}
.ya{bottom:564.844933pt;}
.y8b{bottom:567.941333pt;}
.y2f{bottom:569.600000pt;}
.y65{bottom:578.992000pt;}
.y9{bottom:584.716933pt;}
.y7{bottom:584.727600pt;}
.y8a{bottom:587.013333pt;}
.y2e{bottom:589.200000pt;}
.y64{bottom:597.920000pt;}
.y8{bottom:604.588933pt;}
.y89{bottom:606.085333pt;}
.y2d{bottom:608.800000pt;}
.y63{bottom:616.848000pt;}
.y88{bottom:625.157333pt;}
.y2c{bottom:628.400000pt;}
.y62{bottom:635.776000pt;}
.y87{bottom:644.229333pt;}
.y2b{bottom:648.000000pt;}
.y61{bottom:654.704000pt;}
.y86{bottom:663.301333pt;}
.y2a{bottom:667.600000pt;}
.y60{bottom:673.632000pt;}
.y85{bottom:682.373333pt;}
.y6{bottom:684.981600pt;}
.y29{bottom:687.200000pt;}
.y5f{bottom:692.560000pt;}
.y5{bottom:704.848267pt;}
.y28{bottom:706.800000pt;}
.y84{bottom:710.501333pt;}
.y5e{bottom:711.488000pt;}
.y27{bottom:726.400000pt;}
.y83{bottom:729.573333pt;}
.y5d{bottom:730.416000pt;}
.y26{bottom:746.000000pt;}
.y82{bottom:748.645333pt;}
.y5c{bottom:749.344000pt;}
.y4{bottom:764.400000pt;}
.y25{bottom:765.600000pt;}
.y81{bottom:767.717333pt;}
.y5b{bottom:768.272000pt;}
.y24{bottom:785.200000pt;}
.y80{bottom:786.789333pt;}
.y5a{bottom:787.200000pt;}
.y3{bottom:790.933333pt;}
.y23{bottom:804.800000pt;}
.y7f{bottom:805.861333pt;}
.y59{bottom:806.133333pt;}
.y2{bottom:817.466667pt;}
.y22{bottom:824.400000pt;}
.y7e{bottom:824.933333pt;}
.y58{bottom:825.066667pt;}
.h1{height:36.796875pt;}
.h4{height:42.656250pt;}
.h8{height:44.156250pt;}
.h3{height:44.960000pt;}
.h7{height:45.286458pt;}
.h6{height:54.343750pt;}
.h2{height:73.593750pt;}
.h9{height:90.572917pt;}
.ha{height:260.945440pt;}
.h5{height:262.330507pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x5{left:60.000000pt;}
.x7{left:73.232000pt;}
.x2{left:100.000000pt;}
.x4{left:113.228133pt;}
.x6{left:120.000000pt;}
.x8{left:132.128000pt;}
.x3{left:138.412133pt;}
.x9{left:160.472400pt;}
.x1{left:556.250000pt;}
}




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