
    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_83f3222bb819c69178a9d1d3.woff')format("woff");}.ff1{font-family:ff1;line-height:0.731445;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_91a17e9ea990a879ebd966f5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d7cf399838fe35c6542a0c85.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_bb210ff256d2dff624c83ca7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706055;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_74e4d208a6466d1ae5534ecb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_46d7540afbb8bd5c0b4eaeca.woff')format("woff");}.ff6{font-family:ff6;line-height:0.689941;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_336abeb11ebc1d7f66095b97.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_dc3ee4a568982ba36e5e361c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_9091661adfdab285f78660ce.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_469087871088ac0da65a92f3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_581bf17f0e97a57c3be5f611.woff')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_1b1411e39c900113ddfcf760.woff')format("woff");}.ffc{font-family:ffc;line-height:0.882324;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_ed3bd2c36d470954dca29f74.woff')format("woff");}.ffd{font-family:ffd;line-height:0.689453;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;}
.m6{transform:matrix(0.000000,-0.248873,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248873,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248873,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.250482,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250482,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250482,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.250066,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250066,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250066,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.252248,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.252248,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.252248,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.247772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247772,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249934,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249934,0.000000,0.000000,0.250000,0,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);}
.m5{transform:matrix(0.251132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251132,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-24.480000px;}
.v6{vertical-align:-17.740367px;}
.v4{vertical-align:-12.863051px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:18.846616px;}
.v1{vertical-align:24.480000px;}
.ls12{letter-spacing:-0.145728px;}
.ls11{letter-spacing:-0.119232px;}
.lsc{letter-spacing:-0.093817px;}
.lsf{letter-spacing:-0.067155px;}
.ls6{letter-spacing:-0.014400px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000432px;}
.lsa{letter-spacing:0.005544px;}
.ls2{letter-spacing:0.014400px;}
.lse{letter-spacing:0.090614px;}
.ls9{letter-spacing:0.091405px;}
.lsb{letter-spacing:0.237600px;}
.ls7{letter-spacing:0.239040px;}
.ls3{letter-spacing:0.239904px;}
.ls0{letter-spacing:0.240048px;}
.ls1{letter-spacing:0.240480px;}
.ls5{letter-spacing:0.242352px;}
.ls10{letter-spacing:0.259200px;}
.ls8{letter-spacing:843.984000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11{word-spacing:-20.030400px;}
.wse{word-spacing:-18.177467px;}
.ws0{word-spacing:-18.014400px;}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.985600px;}
.ws13{word-spacing:-16.560000px;}
.ws12{word-spacing:-16.440768px;}
.ws8{word-spacing:-15.418507px;}
.ws5{word-spacing:-14.208346px;}
.ws10{word-spacing:-14.085449px;}
.wsd{word-spacing:-12.415241px;}
.ws3{word-spacing:-12.122352px;}
.ws7{word-spacing:-12.117600px;}
.ws1{word-spacing:-11.880000px;}
.wsb{word-spacing:-0.289872px;}
.wsa{word-spacing:-0.285120px;}
.wsf{word-spacing:-0.047520px;}
.ws4{word-spacing:0.000000px;}
.wsc{word-spacing:276.265725px;}
.ws9{word-spacing:708.833549px;}
._7{margin-left:-335.541852px;}
._6{margin-left:-323.824785px;}
._9{margin-left:-321.023821px;}
._1{margin-left:-1.001952px;}
._4{width:2.376000px;}
._2{width:5.040000px;}
._3{width:16.113600px;}
._0{width:21.532608px;}
._5{width:843.984000px;}
._8{width:846.000000px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:31.272449px;}
.fs11{font-size:31.978482px;}
.fs4{font-size:32.257497px;}
.fse{font-size:44.659139px;}
.fs8{font-size:46.129865px;}
.fs10{font-size:46.884972px;}
.fs3{font-size:47.294048px;}
.fs1{font-size:47.520000px;}
.fsf{font-size:50.341132px;}
.fs2{font-size:50.780364px;}
.fs7{font-size:55.442311px;}
.fsa{font-size:60.864488px;}
.fsb{font-size:60.981738px;}
.fs5{font-size:64.803967px;}
.fs12{font-size:64.821003px;}
.fs6{font-size:65.386573px;}
.fsd{font-size:65.682715px;}
.fsc{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ycb{bottom:3.840000px;}
.ycf{bottom:3.960000px;}
.yd3{bottom:4.440000px;}
.y89{bottom:4.462030px;}
.yd7{bottom:4.560000px;}
.yb6{bottom:4.585442px;}
.y33{bottom:4.625451px;}
.y4b{bottom:9.697693px;}
.yc9{bottom:12.840000px;}
.ycd{bottom:13.320000px;}
.yd1{bottom:13.440000px;}
.yc6{bottom:13.500000px;}
.yc7{bottom:13.860000px;}
.yd5{bottom:13.920000px;}
.yc4{bottom:15.240000px;}
.yc3{bottom:15.780000px;}
.yca{bottom:22.560000px;}
.yce{bottom:23.040000px;}
.yd2{bottom:23.160000px;}
.yd6{bottom:23.640000px;}
.y3f{bottom:26.995007px;}
.ya8{bottom:27.975096px;}
.y7d{bottom:28.055760px;}
.y27{bottom:28.219182px;}
.yc1{bottom:31.440000px;}
.y40{bottom:40.192257px;}
.ya9{bottom:40.344369px;}
.y7e{bottom:40.532957px;}
.y28{bottom:40.696378px;}
.y2{bottom:57.120000px;}
.y7f{bottom:61.945652px;}
.yaa{bottom:72.158143px;}
.y88{bottom:77.799308px;}
.y1{bottom:78.000000px;}
.y29{bottom:79.215624px;}
.y41{bottom:79.388600px;}
.yb5{bottom:81.989299px;}
.y32{bottom:82.704663px;}
.y80{bottom:83.358347px;}
.y4a{bottom:93.470903px;}
.yab{bottom:103.972817px;}
.y81{bottom:104.771043px;}
.y2a{bottom:117.737594px;}
.y42{bottom:118.587715px;}
.y82{bottom:126.183738px;}
.yac{bottom:135.786591px;}
.y83{bottom:147.541960px;}
.y2b{bottom:156.205090px;}
.y43{bottom:157.729551px;}
.yb4{bottom:161.118265px;}
.yad{bottom:167.601265px;}
.y49{bottom:167.653588px;}
.y84{bottom:168.954655px;}
.y31{bottom:175.273602px;}
.yb3{bottom:175.485630px;}
.y48{bottom:183.234381px;}
.y30{bottom:189.768140px;}
.yb2{bottom:189.854796px;}
.y85{bottom:190.367350px;}
.y2c{bottom:194.725245px;}
.y44{bottom:196.928665px;}
.y47{bottom:198.813327px;}
.yae{bottom:199.415039px;}
.yb1{bottom:204.221262px;}
.y2f{bottom:204.259954px;}
.y86{bottom:211.780046px;}
.y46{bottom:214.394120px;}
.yb0{bottom:218.590428px;}
.y2e{bottom:221.478176px;}
.yaf{bottom:231.229713px;}
.y87{bottom:233.192741px;}
.y2d{bottom:233.247215px;}
.y45{bottom:236.127780px;}
.y1d{bottom:281.040000px;}
.ya6{bottom:293.280000px;}
.y1c{bottom:301.560000px;}
.ya5{bottom:314.160000px;}
.y1b{bottom:322.800000px;}
.ya4{bottom:334.680000px;}
.y60{bottom:344.040000px;}
.ya3{bottom:355.560000px;}
.y1a{bottom:363.840000px;}
.y5f{bottom:364.920000px;}
.ya2{bottom:376.080000px;}
.y5e{bottom:385.440000px;}
.ya1{bottom:396.960000px;}
.y19{bottom:405.240000px;}
.y5d{bottom:405.960000px;}
.ya0{bottom:417.480000px;}
.y5c{bottom:426.840000px;}
.y9f{bottom:438.360000px;}
.y18{bottom:446.640000px;}
.y5b{bottom:447.360000px;}
.y9e{bottom:458.880000px;}
.y5a{bottom:468.240000px;}
.y9d{bottom:479.760000px;}
.y17{bottom:488.040000px;}
.y59{bottom:488.760000px;}
.y9c{bottom:500.280000px;}
.y58{bottom:509.640000px;}
.y9b{bottom:521.160000px;}
.y16{bottom:529.440000px;}
.y57{bottom:530.160000px;}
.y9a{bottom:541.680000px;}
.y56{bottom:551.040000px;}
.y15{bottom:553.200000px;}
.y99{bottom:562.560000px;}
.y55{bottom:571.560000px;}
.y14{bottom:583.080000px;}
.y54{bottom:592.440000px;}
.y13{bottom:600.720000px;}
.y98{bottom:603.960000px;}
.y6c{bottom:607.560000px;}
.y53{bottom:612.960000px;}
.y97{bottom:624.480000px;}
.y6b{bottom:628.440000px;}
.y12{bottom:630.600000px;}
.y52{bottom:633.840000px;}
.y96{bottom:645.360000px;}
.y11{bottom:648.240000px;}
.y6a{bottom:648.960000px;}
.y51{bottom:654.360000px;}
.y95{bottom:665.880000px;}
.y69{bottom:669.840000px;}
.y50{bottom:675.240000px;}
.y10{bottom:678.120000px;}
.y94{bottom:686.760000px;}
.y68{bottom:690.360000px;}
.y4f{bottom:695.760000px;}
.yf{bottom:696.120000px;}
.y3d{bottom:700.800000px;}
.y93{bottom:707.280000px;}
.y67{bottom:711.240000px;}
.y4e{bottom:716.640000px;}
.y3c{bottom:721.680000px;}
.ye{bottom:726.000000px;}
.y92{bottom:728.160000px;}
.y66{bottom:731.760000px;}
.y4d{bottom:737.160000px;}
.y74{bottom:740.400000px;}
.y3b{bottom:742.200000px;}
.yd{bottom:743.640000px;}
.y25{bottom:747.240000px;}
.y91{bottom:748.680000px;}
.y65{bottom:752.640000px;}
.y4c{bottom:754.080000px;}
.y7b{bottom:755.160000px;}
.y73{bottom:761.280000px;}
.y3a{bottom:763.080000px;}
.y24{bottom:767.760000px;}
.y90{bottom:769.560000px;}
.y64{bottom:773.160000px;}
.yc{bottom:773.520000px;}
.y7a{bottom:776.040000px;}
.ybf{bottom:778.560000px;}
.y72{bottom:781.800000px;}
.y39{bottom:783.600000px;}
.y23{bottom:788.280000px;}
.y8f{bottom:790.080000px;}
.y63{bottom:794.040000px;}
.y79{bottom:796.560000px;}
.ybe{bottom:799.080000px;}
.ydc{bottom:800.520000px;}
.y71{bottom:803.040000px;}
.y38{bottom:804.840000px;}
.yb{bottom:808.800000px;}
.y7c{bottom:809.160000px;}
.y22{bottom:809.520000px;}
.y8e{bottom:810.960000px;}
.y62{bottom:814.200000px;}
.y78{bottom:817.800000px;}
.ybd{bottom:819.960000px;}
.ydb{bottom:821.400000px;}
.y70{bottom:823.560000px;}
.y37{bottom:825.360000px;}
.y61{bottom:829.320000px;}
.y21{bottom:830.040000px;}
.y8d{bottom:831.840000px;}
.y77{bottom:838.320000px;}
.ybc{bottom:840.480000px;}
.yda{bottom:842.280000px;}
.y6f{bottom:844.440000px;}
.y36{bottom:846.240000px;}
.ya{bottom:850.200000px;}
.y20{bottom:850.920000px;}
.y8c{bottom:852.720000px;}
.y76{bottom:859.200000px;}
.ybb{bottom:861.360000px;}
.y35{bottom:862.800000px;}
.y3e{bottom:863.087400px;}
.yd9{bottom:863.160000px;}
.y6e{bottom:864.600000px;}
.y1f{bottom:871.080000px;}
.y8b{bottom:873.240000px;}
.y75{bottom:875.760000px;}
.y6d{bottom:881.520000px;}
.yba{bottom:882.240000px;}
.yd8{bottom:883.680000px;}
.y1e{bottom:888.000000px;}
.y26{bottom:888.500550px;}
.y8a{bottom:889.800000px;}
.ya7{bottom:890.820450px;}
.y9{bottom:891.600000px;}
.yd4{bottom:900.000000px;}
.yb9{bottom:904.560000px;}
.yb8{bottom:924.720000px;}
.y8{bottom:933.000000px;}
.yd0{bottom:939.000000px;}
.yb7{bottom:941.640000px;}
.y7{bottom:974.400000px;}
.ycc{bottom:978.000000px;}
.y6{bottom:1015.800000px;}
.yc8{bottom:1017.000000px;}
.yc5{bottom:1054.500000px;}
.y5{bottom:1057.200000px;}
.yc0{bottom:1092.000000px;}
.y4{bottom:1098.600000px;}
.yc2{bottom:1123.500000px;}
.y3{bottom:1140.000000px;}
.y34{bottom:1140.360000px;}
.h5{height:32.994844px;}
.h1c{height:33.000000px;}
.h18{height:34.133542px;}
.h8{height:34.454453px;}
.h16{height:36.649721px;}
.h7{height:36.994288px;}
.h1d{height:39.000000px;}
.hc{height:40.390590px;}
.hd{height:41.629085px;}
.he{height:41.636475px;}
.hf{height:41.640171px;}
.h17{height:42.506100px;}
.h12{height:44.149219px;}
.h10{height:44.340731px;}
.h11{height:44.426149px;}
.h1e{height:44.763750px;}
.h19{height:47.179060px;}
.h1a{height:47.191463px;}
.h9{height:47.210702px;}
.ha{height:47.635140px;}
.h14{height:47.850884px;}
.h2{height:48.796875px;}
.h4{height:49.992188px;}
.h1{height:51.750000px;}
.h13{height:56.593125px;}
.h3{height:57.474844px;}
.h1b{height:64.500000px;}
.h15{height:265.904400px;}
.h6{height:268.224450px;}
.hb{height:272.939250px;}
.h0{height:1263.000000px;}
.w6{width:108.000000px;}
.w4{width:192.000000px;}
.w5{width:214.500000px;}
.w1{width:347.306850px;}
.w3{width:352.016250px;}
.w2{width:355.903500px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1d{left:8.219964px;}
.xf{left:33.807970px;}
.x9{left:36.178466px;}
.x7{left:41.794150px;}
.x6{left:48.812630px;}
.x2{left:84.959856px;}
.x1f{left:90.340080px;}
.x18{left:99.497184px;}
.xa{left:118.900253px;}
.x10{left:127.101922px;}
.x19{left:135.563397px;}
.x8{left:196.171020px;}
.x1a{left:226.678913px;}
.xe{left:237.932865px;}
.x1c{left:244.500000px;}
.xc{left:267.937650px;}
.x17{left:269.887200px;}
.x4{left:272.250000px;}
.x5{left:288.450537px;}
.xd{left:294.871148px;}
.x1e{left:435.000000px;}
.x1b{left:436.374000px;}
.x1{left:441.379440px;}
.x13{left:446.384880px;}
.x20{left:541.500000px;}
.x3{left:620.444880px;}
.x16{left:622.964880px;}
.xb{left:624.764520px;}
.x14{left:777.044880px;}
.x12{left:797.204520px;}
.x15{left:823.320000px;}
.x11{left:849.240000px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v6{vertical-align:-15.769215pt;}
.v4{vertical-align:-11.433823pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.752548pt;}
.v1{vertical-align:21.760000pt;}
.ls12{letter-spacing:-0.129536pt;}
.ls11{letter-spacing:-0.105984pt;}
.lsc{letter-spacing:-0.083393pt;}
.lsf{letter-spacing:-0.059693pt;}
.ls6{letter-spacing:-0.012800pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000384pt;}
.lsa{letter-spacing:0.004928pt;}
.ls2{letter-spacing:0.012800pt;}
.lse{letter-spacing:0.080546pt;}
.ls9{letter-spacing:0.081249pt;}
.lsb{letter-spacing:0.211200pt;}
.ls7{letter-spacing:0.212480pt;}
.ls3{letter-spacing:0.213248pt;}
.ls0{letter-spacing:0.213376pt;}
.ls1{letter-spacing:0.213760pt;}
.ls5{letter-spacing:0.215424pt;}
.ls10{letter-spacing:0.230400pt;}
.ls8{letter-spacing:750.208000pt;}
.ws11{word-spacing:-17.804800pt;}
.wse{word-spacing:-16.157749pt;}
.ws0{word-spacing:-16.012800pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.987200pt;}
.ws13{word-spacing:-14.720000pt;}
.ws12{word-spacing:-14.614016pt;}
.ws8{word-spacing:-13.705339pt;}
.ws5{word-spacing:-12.629641pt;}
.ws10{word-spacing:-12.520399pt;}
.wsd{word-spacing:-11.035770pt;}
.ws3{word-spacing:-10.775424pt;}
.ws7{word-spacing:-10.771200pt;}
.ws1{word-spacing:-10.560000pt;}
.wsb{word-spacing:-0.257664pt;}
.wsa{word-spacing:-0.253440pt;}
.wsf{word-spacing:-0.042240pt;}
.ws4{word-spacing:0.000000pt;}
.wsc{word-spacing:245.569534pt;}
.ws9{word-spacing:630.074266pt;}
._7{margin-left:-298.259424pt;}
._6{margin-left:-287.844253pt;}
._9{margin-left:-285.354508pt;}
._1{margin-left:-0.890624pt;}
._4{width:2.112000pt;}
._2{width:4.480000pt;}
._3{width:14.323200pt;}
._0{width:19.140096pt;}
._5{width:750.208000pt;}
._8{width:752.000000pt;}
.fs9{font-size:27.797733pt;}
.fs11{font-size:28.425317pt;}
.fs4{font-size:28.673331pt;}
.fse{font-size:39.697013pt;}
.fs8{font-size:41.004325pt;}
.fs10{font-size:41.675531pt;}
.fs3{font-size:42.039154pt;}
.fs1{font-size:42.240000pt;}
.fsf{font-size:44.747673pt;}
.fs2{font-size:45.138101pt;}
.fs7{font-size:49.282054pt;}
.fsa{font-size:54.101767pt;}
.fsb{font-size:54.205990pt;}
.fs5{font-size:57.603526pt;}
.fs12{font-size:57.618670pt;}
.fs6{font-size:58.121398pt;}
.fsd{font-size:58.384636pt;}
.fsc{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ycb{bottom:3.413333pt;}
.ycf{bottom:3.520000pt;}
.yd3{bottom:3.946667pt;}
.y89{bottom:3.966249pt;}
.yd7{bottom:4.053333pt;}
.yb6{bottom:4.075949pt;}
.y33{bottom:4.111512pt;}
.y4b{bottom:8.620171pt;}
.yc9{bottom:11.413333pt;}
.ycd{bottom:11.840000pt;}
.yd1{bottom:11.946667pt;}
.yc6{bottom:12.000000pt;}
.yc7{bottom:12.320000pt;}
.yd5{bottom:12.373333pt;}
.yc4{bottom:13.546667pt;}
.yc3{bottom:14.026667pt;}
.yca{bottom:20.053333pt;}
.yce{bottom:20.480000pt;}
.yd2{bottom:20.586667pt;}
.yd6{bottom:21.013333pt;}
.y3f{bottom:23.995561pt;}
.ya8{bottom:24.866752pt;}
.y7d{bottom:24.938454pt;}
.y27{bottom:25.083717pt;}
.yc1{bottom:27.946667pt;}
.y40{bottom:35.726451pt;}
.ya9{bottom:35.861662pt;}
.y7e{bottom:36.029295pt;}
.y28{bottom:36.174558pt;}
.y2{bottom:50.773333pt;}
.y7f{bottom:55.062802pt;}
.yaa{bottom:64.140572pt;}
.y88{bottom:69.154941pt;}
.y1{bottom:69.333333pt;}
.y29{bottom:70.413888pt;}
.y41{bottom:70.567645pt;}
.yb5{bottom:72.879377pt;}
.y32{bottom:73.515256pt;}
.y80{bottom:74.096309pt;}
.y4a{bottom:83.085247pt;}
.yab{bottom:92.420282pt;}
.y81{bottom:93.129816pt;}
.y2a{bottom:104.655639pt;}
.y42{bottom:105.411302pt;}
.y82{bottom:112.163323pt;}
.yac{bottom:120.699192pt;}
.y83{bottom:131.148409pt;}
.y2b{bottom:138.848969pt;}
.y43{bottom:140.204045pt;}
.yb4{bottom:143.216235pt;}
.yad{bottom:148.978902pt;}
.y49{bottom:149.025411pt;}
.y84{bottom:150.181915pt;}
.y31{bottom:155.798757pt;}
.yb3{bottom:155.987227pt;}
.y48{bottom:162.875006pt;}
.y30{bottom:168.682791pt;}
.yb2{bottom:168.759819pt;}
.y85{bottom:169.215422pt;}
.y2c{bottom:173.089106pt;}
.y44{bottom:175.047703pt;}
.y47{bottom:176.722957pt;}
.yae{bottom:177.257813pt;}
.yb1{bottom:181.530011pt;}
.y2f{bottom:181.564404pt;}
.y86{bottom:188.248929pt;}
.y46{bottom:190.572552pt;}
.yb0{bottom:194.302602pt;}
.y2e{bottom:196.869490pt;}
.yaf{bottom:205.537523pt;}
.y87{bottom:207.282436pt;}
.y2d{bottom:207.330857pt;}
.y45{bottom:209.891360pt;}
.y1d{bottom:249.813333pt;}
.ya6{bottom:260.693333pt;}
.y1c{bottom:268.053333pt;}
.ya5{bottom:279.253333pt;}
.y1b{bottom:286.933333pt;}
.ya4{bottom:297.493333pt;}
.y60{bottom:305.813333pt;}
.ya3{bottom:316.053333pt;}
.y1a{bottom:323.413333pt;}
.y5f{bottom:324.373333pt;}
.ya2{bottom:334.293333pt;}
.y5e{bottom:342.613333pt;}
.ya1{bottom:352.853333pt;}
.y19{bottom:360.213333pt;}
.y5d{bottom:360.853333pt;}
.ya0{bottom:371.093333pt;}
.y5c{bottom:379.413333pt;}
.y9f{bottom:389.653333pt;}
.y18{bottom:397.013333pt;}
.y5b{bottom:397.653333pt;}
.y9e{bottom:407.893333pt;}
.y5a{bottom:416.213333pt;}
.y9d{bottom:426.453333pt;}
.y17{bottom:433.813333pt;}
.y59{bottom:434.453333pt;}
.y9c{bottom:444.693333pt;}
.y58{bottom:453.013333pt;}
.y9b{bottom:463.253333pt;}
.y16{bottom:470.613333pt;}
.y57{bottom:471.253333pt;}
.y9a{bottom:481.493333pt;}
.y56{bottom:489.813333pt;}
.y15{bottom:491.733333pt;}
.y99{bottom:500.053333pt;}
.y55{bottom:508.053333pt;}
.y14{bottom:518.293333pt;}
.y54{bottom:526.613333pt;}
.y13{bottom:533.973333pt;}
.y98{bottom:536.853333pt;}
.y6c{bottom:540.053333pt;}
.y53{bottom:544.853333pt;}
.y97{bottom:555.093333pt;}
.y6b{bottom:558.613333pt;}
.y12{bottom:560.533333pt;}
.y52{bottom:563.413333pt;}
.y96{bottom:573.653333pt;}
.y11{bottom:576.213333pt;}
.y6a{bottom:576.853333pt;}
.y51{bottom:581.653333pt;}
.y95{bottom:591.893333pt;}
.y69{bottom:595.413333pt;}
.y50{bottom:600.213333pt;}
.y10{bottom:602.773333pt;}
.y94{bottom:610.453333pt;}
.y68{bottom:613.653333pt;}
.y4f{bottom:618.453333pt;}
.yf{bottom:618.773333pt;}
.y3d{bottom:622.933333pt;}
.y93{bottom:628.693333pt;}
.y67{bottom:632.213333pt;}
.y4e{bottom:637.013333pt;}
.y3c{bottom:641.493333pt;}
.ye{bottom:645.333333pt;}
.y92{bottom:647.253333pt;}
.y66{bottom:650.453333pt;}
.y4d{bottom:655.253333pt;}
.y74{bottom:658.133333pt;}
.y3b{bottom:659.733333pt;}
.yd{bottom:661.013333pt;}
.y25{bottom:664.213333pt;}
.y91{bottom:665.493333pt;}
.y65{bottom:669.013333pt;}
.y4c{bottom:670.293333pt;}
.y7b{bottom:671.253333pt;}
.y73{bottom:676.693333pt;}
.y3a{bottom:678.293333pt;}
.y24{bottom:682.453333pt;}
.y90{bottom:684.053333pt;}
.y64{bottom:687.253333pt;}
.yc{bottom:687.573333pt;}
.y7a{bottom:689.813333pt;}
.ybf{bottom:692.053333pt;}
.y72{bottom:694.933333pt;}
.y39{bottom:696.533333pt;}
.y23{bottom:700.693333pt;}
.y8f{bottom:702.293333pt;}
.y63{bottom:705.813333pt;}
.y79{bottom:708.053333pt;}
.ybe{bottom:710.293333pt;}
.ydc{bottom:711.573333pt;}
.y71{bottom:713.813333pt;}
.y38{bottom:715.413333pt;}
.yb{bottom:718.933333pt;}
.y7c{bottom:719.253333pt;}
.y22{bottom:719.573333pt;}
.y8e{bottom:720.853333pt;}
.y62{bottom:723.733333pt;}
.y78{bottom:726.933333pt;}
.ybd{bottom:728.853333pt;}
.ydb{bottom:730.133333pt;}
.y70{bottom:732.053333pt;}
.y37{bottom:733.653333pt;}
.y61{bottom:737.173333pt;}
.y21{bottom:737.813333pt;}
.y8d{bottom:739.413333pt;}
.y77{bottom:745.173333pt;}
.ybc{bottom:747.093333pt;}
.yda{bottom:748.693333pt;}
.y6f{bottom:750.613333pt;}
.y36{bottom:752.213333pt;}
.ya{bottom:755.733333pt;}
.y20{bottom:756.373333pt;}
.y8c{bottom:757.973333pt;}
.y76{bottom:763.733333pt;}
.ybb{bottom:765.653333pt;}
.y35{bottom:766.933333pt;}
.y3e{bottom:767.188800pt;}
.yd9{bottom:767.253333pt;}
.y6e{bottom:768.533333pt;}
.y1f{bottom:774.293333pt;}
.y8b{bottom:776.213333pt;}
.y75{bottom:778.453333pt;}
.y6d{bottom:783.573333pt;}
.yba{bottom:784.213333pt;}
.yd8{bottom:785.493333pt;}
.y1e{bottom:789.333333pt;}
.y26{bottom:789.778267pt;}
.y8a{bottom:790.933333pt;}
.ya7{bottom:791.840400pt;}
.y9{bottom:792.533333pt;}
.yd4{bottom:800.000000pt;}
.yb9{bottom:804.053333pt;}
.yb8{bottom:821.973333pt;}
.y8{bottom:829.333333pt;}
.yd0{bottom:834.666667pt;}
.yb7{bottom:837.013333pt;}
.y7{bottom:866.133333pt;}
.ycc{bottom:869.333333pt;}
.y6{bottom:902.933333pt;}
.yc8{bottom:904.000000pt;}
.yc5{bottom:937.333333pt;}
.y5{bottom:939.733333pt;}
.yc0{bottom:970.666667pt;}
.y4{bottom:976.533333pt;}
.yc2{bottom:998.666667pt;}
.y3{bottom:1013.333333pt;}
.y34{bottom:1013.653333pt;}
.h5{height:29.328750pt;}
.h1c{height:29.333333pt;}
.h18{height:30.340926pt;}
.h8{height:30.626180pt;}
.h16{height:32.577530pt;}
.h7{height:32.883812pt;}
.h1d{height:34.666667pt;}
.hc{height:35.902747pt;}
.hd{height:37.003631pt;}
.he{height:37.010200pt;}
.hf{height:37.013485pt;}
.h17{height:37.783200pt;}
.h12{height:39.243750pt;}
.h10{height:39.413983pt;}
.h11{height:39.489910pt;}
.h1e{height:39.790000pt;}
.h19{height:41.936942pt;}
.h1a{height:41.947967pt;}
.h9{height:41.965069pt;}
.ha{height:42.342347pt;}
.h14{height:42.534119pt;}
.h2{height:43.375000pt;}
.h4{height:44.437500pt;}
.h1{height:46.000000pt;}
.h13{height:50.305000pt;}
.h3{height:51.088750pt;}
.h1b{height:57.333333pt;}
.h15{height:236.359467pt;}
.h6{height:238.421733pt;}
.hb{height:242.612667pt;}
.h0{height:1122.666667pt;}
.w6{width:96.000000pt;}
.w4{width:170.666667pt;}
.w5{width:190.666667pt;}
.w1{width:308.717200pt;}
.w3{width:312.903333pt;}
.w2{width:316.358667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1d{left:7.306635pt;}
.xf{left:30.051529pt;}
.x9{left:32.158636pt;}
.x7{left:37.150355pt;}
.x6{left:43.389004pt;}
.x2{left:75.519872pt;}
.x1f{left:80.302293pt;}
.x18{left:88.441941pt;}
.xa{left:105.689113pt;}
.x10{left:112.979486pt;}
.x19{left:120.500797pt;}
.x8{left:174.374240pt;}
.x1a{left:201.492367pt;}
.xe{left:211.495880pt;}
.x1c{left:217.333333pt;}
.xc{left:238.166800pt;}
.x17{left:239.899733pt;}
.x4{left:242.000000pt;}
.x5{left:256.400477pt;}
.xd{left:262.107687pt;}
.x1e{left:386.666667pt;}
.x1b{left:387.888000pt;}
.x1{left:392.337280pt;}
.x13{left:396.786560pt;}
.x20{left:481.333333pt;}
.x3{left:551.506560pt;}
.x16{left:553.746560pt;}
.xb{left:555.346240pt;}
.x14{left:690.706560pt;}
.x12{left:708.626240pt;}
.x15{left:731.840000pt;}
.x11{left:754.880000pt;}
}




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