
    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_80bc658a054a16174fcd2217.woff2')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_1f4623b3ca9cc3a92298bfd7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_fa827fea7e227836203a1457.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_838f33515f4a1188506a6995.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.760254;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_f0127c6d2878e24f3448e981.woff2')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_4b1606753dafd295aae0991c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_57baef2238460ffc0ed767e7.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls20{letter-spacing:-0.014400px;}
.ls11{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.014400px;}
.ls7{letter-spacing:0.060000px;}
.lse{letter-spacing:0.120000px;}
.ls16{letter-spacing:0.123552px;}
.ls0{letter-spacing:0.159840px;}
.ls4{letter-spacing:0.160440px;}
.ls2{letter-spacing:0.161040px;}
.ls3{letter-spacing:0.203184px;}
.ls14{letter-spacing:0.204336px;}
.lsd{letter-spacing:0.223344px;}
.ls5{letter-spacing:0.240000px;}
.ls6{letter-spacing:0.240600px;}
.ls1d{letter-spacing:0.242064px;}
.lsf{letter-spacing:0.242352px;}
.ls2e{letter-spacing:0.253872px;}
.ls17{letter-spacing:0.286848px;}
.ls13{letter-spacing:0.318384px;}
.ls1e{letter-spacing:0.318816px;}
.ls2b{letter-spacing:0.319680px;}
.ls28{letter-spacing:0.320280px;}
.ls37{letter-spacing:0.320880px;}
.ls18{letter-spacing:0.322704px;}
.ls21{letter-spacing:0.322800px;}
.ls12{letter-spacing:0.351648px;}
.ls1f{letter-spacing:0.356400px;}
.ls15{letter-spacing:0.365904px;}
.ls31{letter-spacing:0.383760px;}
.ls1b{letter-spacing:0.419184px;}
.ls1c{letter-spacing:0.478224px;}
.ls34{letter-spacing:0.479400px;}
.ls29{letter-spacing:0.480000px;}
.ls2a{letter-spacing:0.480600px;}
.ls38{letter-spacing:0.495936px;}
.ls25{letter-spacing:0.542760px;}
.ls1{letter-spacing:0.543168px;}
.ls8{letter-spacing:0.543360px;}
.ls36{letter-spacing:0.554976px;}
.lsb{letter-spacing:0.576960px;}
.ls1a{letter-spacing:0.578592px;}
.ls2f{letter-spacing:0.637632px;}
.lsa{letter-spacing:0.639720px;}
.ls33{letter-spacing:0.639840px;}
.ls19{letter-spacing:0.702576px;}
.ls9{letter-spacing:0.702720px;}
.ls32{letter-spacing:0.861984px;}
.ls30{letter-spacing:0.897408px;}
.ls35{letter-spacing:5.118000px;}
.ls2c{letter-spacing:8.191200px;}
.ls2d{letter-spacing:16.586880px;}
.ls27{letter-spacing:46.586880px;}
.ls24{letter-spacing:54.866820px;}
.ls23{letter-spacing:93.925440px;}
.ls26{letter-spacing:97.968360px;}
.ls22{letter-spacing:121.944960px;}
.ls10{letter-spacing:149.964480px;}
.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;}
}
.ws8{word-spacing:-18.014400px;}
.ws9{word-spacing:-17.985600px;}
.ws1{word-spacing:-16.956288px;}
.wsd{word-spacing:-15.462576px;}
.ws2{word-spacing:-15.338592px;}
.wsb{word-spacing:-15.238224px;}
.wsc{word-spacing:-15.179184px;}
.ws3{word-spacing:-15.078816px;}
.ws6{word-spacing:-12.236400px;}
.ws0{word-spacing:-12.122352px;}
.ws7{word-spacing:-12.003552px;}
.ws5{word-spacing:-0.086400px;}
.ws4{word-spacing:-0.072000px;}
.wsa{word-spacing:0.000000px;}
._b{margin-left:-4.755000px;}
._a{margin-left:-3.597000px;}
._7{margin-left:-2.310600px;}
._1{margin-left:-1.188000px;}
._6{width:1.045440px;}
._3{width:2.994792px;}
._0{width:4.134240px;}
._10{width:5.469120px;}
._2{width:6.747840px;}
._4{width:8.791200px;}
._5{width:10.052904px;}
._18{width:11.460696px;}
._19{width:13.177200px;}
._11{width:14.637600px;}
._d{width:15.850800px;}
._12{width:16.909200px;}
._1e{width:18.331248px;}
._13{width:19.699200px;}
._1b{width:20.797800px;}
._c{width:22.229400px;}
._1a{width:24.169560px;}
._17{width:25.344000px;}
._8{width:26.474400px;}
._f{width:28.317600px;}
._e{width:30.765600px;}
._1f{width:36.604800px;}
._9{width:38.440800px;}
._1d{width:45.224640px;}
._21{width:46.599840px;}
._20{width:47.645280px;}
._1c{width:70.434720px;}
._14{width:956.208240px;}
._16{width:1335.899400px;}
._15{width:1554.890040px;}
.fc4{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc5{color:rgb(34,34,34);}
.fc3{color:rgb(67,67,67);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:47.520000px;}
.fs2{font-size:59.040000px;}
.fs0{font-size:64.800000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:83.520000px;}
.fs5{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.ya{bottom:2.520000px;}
.yd{bottom:5.760000px;}
.yf{bottom:7.560000px;}
.y9{bottom:16.200000px;}
.y1{bottom:17.985900px;}
.y8{bottom:30.240000px;}
.y4{bottom:34.920000px;}
.y3a{bottom:37.782885px;}
.yb{bottom:40.302885px;}
.y7{bottom:43.920000px;}
.y39{bottom:56.502885px;}
.y6{bottom:57.600000px;}
.y5{bottom:71.640000px;}
.y3{bottom:73.408785px;}
.y62{bottom:112.662885px;}
.y8b{bottom:116.982885px;}
.y94{bottom:118.422885px;}
.y7a{bottom:122.022885px;}
.y61{bottom:136.422900px;}
.yb7{bottom:140.022900px;}
.y8a{bottom:142.182900px;}
.y37{bottom:151.902900px;}
.y6f{bottom:159.822900px;}
.y60{bottom:160.182900px;}
.y79{bottom:163.062900px;}
.y93{bottom:165.942900px;}
.y89{bottom:167.382900px;}
.y36{bottom:176.022900px;}
.yb6{bottom:179.982900px;}
.y5f{bottom:183.942900px;}
.y88{bottom:192.582900px;}
.y35{bottom:199.782900px;}
.y6e{bottom:200.862900px;}
.y5e{bottom:208.062900px;}
.y92{bottom:210.582900px;}
.y87{bottom:217.422900px;}
.yb5{bottom:219.582900px;}
.y34{bottom:223.542900px;}
.y5d{bottom:231.822900px;}
.yb4{bottom:239.382900px;}
.y86{bottom:242.622900px;}
.y33{bottom:247.302900px;}
.y5c{bottom:255.582900px;}
.yb3{bottom:259.182900px;}
.y85{bottom:267.822900px;}
.y32{bottom:271.062900px;}
.yb2{bottom:278.982900px;}
.y5b{bottom:279.342900px;}
.y84{bottom:292.662900px;}
.y31{bottom:294.822900px;}
.y91{bottom:296.262900px;}
.yb1{bottom:298.782900px;}
.y5a{bottom:303.102900px;}
.y30{bottom:318.582900px;}
.y59{bottom:326.862900px;}
.yb0{bottom:338.382900px;}
.y83{bottom:338.742900px;}
.y2f{bottom:342.342900px;}
.y58{bottom:350.622900px;}
.yaf{bottom:358.542900px;}
.y2e{bottom:366.462900px;}
.y57{bottom:374.382900px;}
.yae{bottom:378.342900px;}
.y82{bottom:383.382900px;}
.yad{bottom:398.142900px;}
.y81{bottom:407.142900px;}
.y2d{bottom:411.102900px;}
.yac{bottom:417.942900px;}
.y56{bottom:419.382900px;}
.y80{bottom:431.262900px;}
.yab{bottom:437.742900px;}
.y55{bottom:443.142900px;}
.y7f{bottom:455.022900px;}
.yaa{bottom:457.542900px;}
.y2c{bottom:458.982900px;}
.y54{bottom:466.902900px;}
.ya9{bottom:477.342900px;}
.y7e{bottom:478.782900px;}
.y2b{bottom:482.742900px;}
.y78{bottom:487.782900px;}
.y53{bottom:490.662900px;}
.ya8{bottom:497.142900px;}
.y2a{bottom:506.502900px;}
.y77{bottom:511.902900px;}
.y52{bottom:514.422900px;}
.ya7{bottom:516.942900px;}
.y7d{bottom:523.422900px;}
.y6d{bottom:535.662900px;}
.ya6{bottom:536.742900px;}
.y51{bottom:538.182900px;}
.y29{bottom:546.822900px;}
.ya5{bottom:556.902900px;}
.y6c{bottom:559.422900px;}
.y50{bottom:562.302900px;}
.y7c{bottom:568.422900px;}
.y28{bottom:570.582900px;}
.ya4{bottom:576.702900px;}
.y6b{bottom:583.182900px;}
.y4f{bottom:586.062900px;}
.y27{bottom:594.342900px;}
.ya3{bottom:596.502900px;}
.y6a{bottom:606.942900px;}
.y7b{bottom:609.102900px;}
.y4e{bottom:609.822900px;}
.ya2{bottom:616.302900px;}
.y26{bottom:618.102900px;}
.y69{bottom:630.702900px;}
.y4d{bottom:633.582900px;}
.ya1{bottom:636.102900px;}
.y25{bottom:641.862900px;}
.y68{bottom:654.462900px;}
.ya0{bottom:655.902900px;}
.y4c{bottom:657.342900px;}
.y24{bottom:665.622900px;}
.ycd{bottom:670.302900px;}
.y9f{bottom:675.702900px;}
.y67{bottom:678.222900px;}
.y23{bottom:689.382900px;}
.ycc{bottom:690.102900px;}
.y9e{bottom:695.502900px;}
.y4b{bottom:702.342900px;}
.ycb{bottom:709.902900px;}
.y22{bottom:713.142900px;}
.y9d{bottom:715.302900px;}
.y4a{bottom:726.102900px;}
.yca{bottom:729.702900px;}
.y90{bottom:730.422900px;}
.y9c{bottom:735.102900px;}
.y21{bottom:737.262900px;}
.yc9{bottom:749.502900px;}
.y49{bottom:749.862900px;}
.y9b{bottom:755.262900px;}
.y20{bottom:761.022900px;}
.yc8{bottom:769.302900px;}
.y8f{bottom:771.102900px;}
.y48{bottom:773.622900px;}
.y9a{bottom:775.062900px;}
.y1f{bottom:784.782900px;}
.yc7{bottom:789.102900px;}
.y76{bottom:794.502900px;}
.y99{bottom:794.862900px;}
.y47{bottom:797.382900px;}
.y1e{bottom:803.862900px;}
.yc6{bottom:808.902900px;}
.y98{bottom:814.662900px;}
.y75{bottom:818.262900px;}
.y1d{bottom:819.702900px;}
.y46{bottom:821.142900px;}
.yc5{bottom:828.702900px;}
.y97{bottom:834.462900px;}
.y1c{bottom:835.542900px;}
.y74{bottom:842.022900px;}
.y45{bottom:844.902900px;}
.yc4{bottom:848.502900px;}
.y1b{bottom:853.902900px;}
.y96{bottom:854.262900px;}
.y73{bottom:866.142900px;}
.y44{bottom:868.662900px;}
.y95{bottom:874.062900px;}
.y1a{bottom:875.862900px;}
.yc3{bottom:888.462900px;}
.y72{bottom:889.902900px;}
.y43{bottom:892.422900px;}
.y19{bottom:896.022900px;}
.yc2{bottom:908.262900px;}
.y71{bottom:913.662900px;}
.y42{bottom:916.542900px;}
.y18{bottom:920.142900px;}
.yc1{bottom:928.062900px;}
.y17{bottom:930.582900px;}
.y70{bottom:937.422900px;}
.y41{bottom:940.302900px;}
.yc0{bottom:947.862900px;}
.y16{bottom:954.342900px;}
.y66{bottom:961.182900px;}
.y40{bottom:964.062900px;}
.y15{bottom:964.782900px;}
.ybf{bottom:967.662900px;}
.y14{bottom:982.782900px;}
.y65{bottom:984.942900px;}
.ybe{bottom:987.462900px;}
.y3f{bottom:987.822900px;}
.y13{bottom:1003.302900px;}
.ybd{bottom:1007.262900px;}
.y64{bottom:1008.702900px;}
.y3e{bottom:1011.582900px;}
.y12{bottom:1026.702900px;}
.ybc{bottom:1027.062900px;}
.y63{bottom:1032.462900px;}
.ybb{bottom:1046.862900px;}
.y8e{bottom:1052.262900px;}
.y3d{bottom:1056.582900px;}
.y11{bottom:1061.262900px;}
.yba{bottom:1067.022900px;}
.y8d{bottom:1077.822900px;}
.y3c{bottom:1080.342900px;}
.yb9{bottom:1086.822900px;}
.y10{bottom:1092.942900px;}
.y8c{bottom:1103.022900px;}
.y3b{bottom:1104.102900px;}
.yb8{bottom:1106.622900px;}
.y38{bottom:1124.982900px;}
.ye{bottom:1127.488800px;}
.y2{bottom:1136.862900px;}
.yc{bottom:1188.328800px;}
.h7{height:19.800000px;}
.h9{height:24.120000px;}
.hf{height:27.014766px;}
.h12{height:27.945000px;}
.h6{height:33.018047px;}
.h5{height:34.155000px;}
.he{height:41.022422px;}
.h8{height:42.435000px;}
.h3{height:46.575000px;}
.hb{height:48.796875px;}
.ha{height:50.027344px;}
.h13{height:51.750000px;}
.h10{height:53.402344px;}
.h11{height:58.031719px;}
.hd{height:65.325937px;}
.h4{height:82.800000px;}
.hc{height:83.045391px;}
.h2{height:1226.862900px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w5{width:24.840000px;}
.w3{width:171.360000px;}
.w7{width:364.320000px;}
.w6{width:425.520000px;}
.w4{width:573.840000px;}
.w2{width:856.941600px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.920000px;}
.x1{left:17.985900px;}
.x10{left:54.090150px;}
.x9{left:60.825900px;}
.x7{left:64.440000px;}
.x3{left:71.265900px;}
.x18{left:76.815000px;}
.xe{left:91.440000px;}
.xf{left:118.440000px;}
.x17{left:130.815000px;}
.x4{left:160.800300px;}
.xd{left:172.440000px;}
.x12{left:185.235450px;}
.x1a{left:226.440000px;}
.xb{left:236.598600px;}
.x5{left:243.345900px;}
.x14{left:313.555050px;}
.x16{left:315.308400px;}
.xc{left:429.690000px;}
.x2{left:434.669700px;}
.xa{left:486.345900px;}
.x1b{left:627.690000px;}
.x11{left:678.989850px;}
.x19{left:750.479700px;}
.x13{left:764.737500px;}
.x15{left:770.429850px;}
.x8{left:788.025900px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls20{letter-spacing:-0.012800pt;}
.ls11{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.012800pt;}
.ls7{letter-spacing:0.053333pt;}
.lse{letter-spacing:0.106667pt;}
.ls16{letter-spacing:0.109824pt;}
.ls0{letter-spacing:0.142080pt;}
.ls4{letter-spacing:0.142613pt;}
.ls2{letter-spacing:0.143147pt;}
.ls3{letter-spacing:0.180608pt;}
.ls14{letter-spacing:0.181632pt;}
.lsd{letter-spacing:0.198528pt;}
.ls5{letter-spacing:0.213333pt;}
.ls6{letter-spacing:0.213867pt;}
.ls1d{letter-spacing:0.215168pt;}
.lsf{letter-spacing:0.215424pt;}
.ls2e{letter-spacing:0.225664pt;}
.ls17{letter-spacing:0.254976pt;}
.ls13{letter-spacing:0.283008pt;}
.ls1e{letter-spacing:0.283392pt;}
.ls2b{letter-spacing:0.284160pt;}
.ls28{letter-spacing:0.284693pt;}
.ls37{letter-spacing:0.285227pt;}
.ls18{letter-spacing:0.286848pt;}
.ls21{letter-spacing:0.286933pt;}
.ls12{letter-spacing:0.312576pt;}
.ls1f{letter-spacing:0.316800pt;}
.ls15{letter-spacing:0.325248pt;}
.ls31{letter-spacing:0.341120pt;}
.ls1b{letter-spacing:0.372608pt;}
.ls1c{letter-spacing:0.425088pt;}
.ls34{letter-spacing:0.426133pt;}
.ls29{letter-spacing:0.426667pt;}
.ls2a{letter-spacing:0.427200pt;}
.ls38{letter-spacing:0.440832pt;}
.ls25{letter-spacing:0.482453pt;}
.ls1{letter-spacing:0.482816pt;}
.ls8{letter-spacing:0.482987pt;}
.ls36{letter-spacing:0.493312pt;}
.lsb{letter-spacing:0.512853pt;}
.ls1a{letter-spacing:0.514304pt;}
.ls2f{letter-spacing:0.566784pt;}
.lsa{letter-spacing:0.568640pt;}
.ls33{letter-spacing:0.568747pt;}
.ls19{letter-spacing:0.624512pt;}
.ls9{letter-spacing:0.624640pt;}
.ls32{letter-spacing:0.766208pt;}
.ls30{letter-spacing:0.797696pt;}
.ls35{letter-spacing:4.549333pt;}
.ls2c{letter-spacing:7.281067pt;}
.ls2d{letter-spacing:14.743893pt;}
.ls27{letter-spacing:41.410560pt;}
.ls24{letter-spacing:48.770507pt;}
.ls23{letter-spacing:83.489280pt;}
.ls26{letter-spacing:87.082987pt;}
.ls22{letter-spacing:108.395520pt;}
.ls10{letter-spacing:133.301760pt;}
.ws8{word-spacing:-16.012800pt;}
.ws9{word-spacing:-15.987200pt;}
.ws1{word-spacing:-15.072256pt;}
.wsd{word-spacing:-13.744512pt;}
.ws2{word-spacing:-13.634304pt;}
.wsb{word-spacing:-13.545088pt;}
.wsc{word-spacing:-13.492608pt;}
.ws3{word-spacing:-13.403392pt;}
.ws6{word-spacing:-10.876800pt;}
.ws0{word-spacing:-10.775424pt;}
.ws7{word-spacing:-10.669824pt;}
.ws5{word-spacing:-0.076800pt;}
.ws4{word-spacing:-0.064000pt;}
.wsa{word-spacing:0.000000pt;}
._b{margin-left:-4.226667pt;}
._a{margin-left:-3.197333pt;}
._7{margin-left:-2.053867pt;}
._1{margin-left:-1.056000pt;}
._6{width:0.929280pt;}
._3{width:2.662037pt;}
._0{width:3.674880pt;}
._10{width:4.861440pt;}
._2{width:5.998080pt;}
._4{width:7.814400pt;}
._5{width:8.935915pt;}
._18{width:10.187285pt;}
._19{width:11.713067pt;}
._11{width:13.011200pt;}
._d{width:14.089600pt;}
._12{width:15.030400pt;}
._1e{width:16.294443pt;}
._13{width:17.510400pt;}
._1b{width:18.486933pt;}
._c{width:19.759467pt;}
._1a{width:21.484053pt;}
._17{width:22.528000pt;}
._8{width:23.532800pt;}
._f{width:25.171200pt;}
._e{width:27.347200pt;}
._1f{width:32.537600pt;}
._9{width:34.169600pt;}
._1d{width:40.199680pt;}
._21{width:41.422080pt;}
._20{width:42.351360pt;}
._1c{width:62.608640pt;}
._14{width:849.962880pt;}
._16{width:1187.466133pt;}
._15{width:1382.124480pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:42.240000pt;}
.fs2{font-size:52.480000pt;}
.fs0{font-size:57.600000pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:74.240000pt;}
.fs5{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:2.240000pt;}
.yd{bottom:5.120000pt;}
.yf{bottom:6.720000pt;}
.y9{bottom:14.400000pt;}
.y1{bottom:15.987467pt;}
.y8{bottom:26.880000pt;}
.y4{bottom:31.040000pt;}
.y3a{bottom:33.584787pt;}
.yb{bottom:35.824787pt;}
.y7{bottom:39.040000pt;}
.y39{bottom:50.224787pt;}
.y6{bottom:51.200000pt;}
.y5{bottom:63.680000pt;}
.y3{bottom:65.252253pt;}
.y62{bottom:100.144787pt;}
.y8b{bottom:103.984787pt;}
.y94{bottom:105.264787pt;}
.y7a{bottom:108.464787pt;}
.y61{bottom:121.264800pt;}
.yb7{bottom:124.464800pt;}
.y8a{bottom:126.384800pt;}
.y37{bottom:135.024800pt;}
.y6f{bottom:142.064800pt;}
.y60{bottom:142.384800pt;}
.y79{bottom:144.944800pt;}
.y93{bottom:147.504800pt;}
.y89{bottom:148.784800pt;}
.y36{bottom:156.464800pt;}
.yb6{bottom:159.984800pt;}
.y5f{bottom:163.504800pt;}
.y88{bottom:171.184800pt;}
.y35{bottom:177.584800pt;}
.y6e{bottom:178.544800pt;}
.y5e{bottom:184.944800pt;}
.y92{bottom:187.184800pt;}
.y87{bottom:193.264800pt;}
.yb5{bottom:195.184800pt;}
.y34{bottom:198.704800pt;}
.y5d{bottom:206.064800pt;}
.yb4{bottom:212.784800pt;}
.y86{bottom:215.664800pt;}
.y33{bottom:219.824800pt;}
.y5c{bottom:227.184800pt;}
.yb3{bottom:230.384800pt;}
.y85{bottom:238.064800pt;}
.y32{bottom:240.944800pt;}
.yb2{bottom:247.984800pt;}
.y5b{bottom:248.304800pt;}
.y84{bottom:260.144800pt;}
.y31{bottom:262.064800pt;}
.y91{bottom:263.344800pt;}
.yb1{bottom:265.584800pt;}
.y5a{bottom:269.424800pt;}
.y30{bottom:283.184800pt;}
.y59{bottom:290.544800pt;}
.yb0{bottom:300.784800pt;}
.y83{bottom:301.104800pt;}
.y2f{bottom:304.304800pt;}
.y58{bottom:311.664800pt;}
.yaf{bottom:318.704800pt;}
.y2e{bottom:325.744800pt;}
.y57{bottom:332.784800pt;}
.yae{bottom:336.304800pt;}
.y82{bottom:340.784800pt;}
.yad{bottom:353.904800pt;}
.y81{bottom:361.904800pt;}
.y2d{bottom:365.424800pt;}
.yac{bottom:371.504800pt;}
.y56{bottom:372.784800pt;}
.y80{bottom:383.344800pt;}
.yab{bottom:389.104800pt;}
.y55{bottom:393.904800pt;}
.y7f{bottom:404.464800pt;}
.yaa{bottom:406.704800pt;}
.y2c{bottom:407.984800pt;}
.y54{bottom:415.024800pt;}
.ya9{bottom:424.304800pt;}
.y7e{bottom:425.584800pt;}
.y2b{bottom:429.104800pt;}
.y78{bottom:433.584800pt;}
.y53{bottom:436.144800pt;}
.ya8{bottom:441.904800pt;}
.y2a{bottom:450.224800pt;}
.y77{bottom:455.024800pt;}
.y52{bottom:457.264800pt;}
.ya7{bottom:459.504800pt;}
.y7d{bottom:465.264800pt;}
.y6d{bottom:476.144800pt;}
.ya6{bottom:477.104800pt;}
.y51{bottom:478.384800pt;}
.y29{bottom:486.064800pt;}
.ya5{bottom:495.024800pt;}
.y6c{bottom:497.264800pt;}
.y50{bottom:499.824800pt;}
.y7c{bottom:505.264800pt;}
.y28{bottom:507.184800pt;}
.ya4{bottom:512.624800pt;}
.y6b{bottom:518.384800pt;}
.y4f{bottom:520.944800pt;}
.y27{bottom:528.304800pt;}
.ya3{bottom:530.224800pt;}
.y6a{bottom:539.504800pt;}
.y7b{bottom:541.424800pt;}
.y4e{bottom:542.064800pt;}
.ya2{bottom:547.824800pt;}
.y26{bottom:549.424800pt;}
.y69{bottom:560.624800pt;}
.y4d{bottom:563.184800pt;}
.ya1{bottom:565.424800pt;}
.y25{bottom:570.544800pt;}
.y68{bottom:581.744800pt;}
.ya0{bottom:583.024800pt;}
.y4c{bottom:584.304800pt;}
.y24{bottom:591.664800pt;}
.ycd{bottom:595.824800pt;}
.y9f{bottom:600.624800pt;}
.y67{bottom:602.864800pt;}
.y23{bottom:612.784800pt;}
.ycc{bottom:613.424800pt;}
.y9e{bottom:618.224800pt;}
.y4b{bottom:624.304800pt;}
.ycb{bottom:631.024800pt;}
.y22{bottom:633.904800pt;}
.y9d{bottom:635.824800pt;}
.y4a{bottom:645.424800pt;}
.yca{bottom:648.624800pt;}
.y90{bottom:649.264800pt;}
.y9c{bottom:653.424800pt;}
.y21{bottom:655.344800pt;}
.yc9{bottom:666.224800pt;}
.y49{bottom:666.544800pt;}
.y9b{bottom:671.344800pt;}
.y20{bottom:676.464800pt;}
.yc8{bottom:683.824800pt;}
.y8f{bottom:685.424800pt;}
.y48{bottom:687.664800pt;}
.y9a{bottom:688.944800pt;}
.y1f{bottom:697.584800pt;}
.yc7{bottom:701.424800pt;}
.y76{bottom:706.224800pt;}
.y99{bottom:706.544800pt;}
.y47{bottom:708.784800pt;}
.y1e{bottom:714.544800pt;}
.yc6{bottom:719.024800pt;}
.y98{bottom:724.144800pt;}
.y75{bottom:727.344800pt;}
.y1d{bottom:728.624800pt;}
.y46{bottom:729.904800pt;}
.yc5{bottom:736.624800pt;}
.y97{bottom:741.744800pt;}
.y1c{bottom:742.704800pt;}
.y74{bottom:748.464800pt;}
.y45{bottom:751.024800pt;}
.yc4{bottom:754.224800pt;}
.y1b{bottom:759.024800pt;}
.y96{bottom:759.344800pt;}
.y73{bottom:769.904800pt;}
.y44{bottom:772.144800pt;}
.y95{bottom:776.944800pt;}
.y1a{bottom:778.544800pt;}
.yc3{bottom:789.744800pt;}
.y72{bottom:791.024800pt;}
.y43{bottom:793.264800pt;}
.y19{bottom:796.464800pt;}
.yc2{bottom:807.344800pt;}
.y71{bottom:812.144800pt;}
.y42{bottom:814.704800pt;}
.y18{bottom:817.904800pt;}
.yc1{bottom:824.944800pt;}
.y17{bottom:827.184800pt;}
.y70{bottom:833.264800pt;}
.y41{bottom:835.824800pt;}
.yc0{bottom:842.544800pt;}
.y16{bottom:848.304800pt;}
.y66{bottom:854.384800pt;}
.y40{bottom:856.944800pt;}
.y15{bottom:857.584800pt;}
.ybf{bottom:860.144800pt;}
.y14{bottom:873.584800pt;}
.y65{bottom:875.504800pt;}
.ybe{bottom:877.744800pt;}
.y3f{bottom:878.064800pt;}
.y13{bottom:891.824800pt;}
.ybd{bottom:895.344800pt;}
.y64{bottom:896.624800pt;}
.y3e{bottom:899.184800pt;}
.y12{bottom:912.624800pt;}
.ybc{bottom:912.944800pt;}
.y63{bottom:917.744800pt;}
.ybb{bottom:930.544800pt;}
.y8e{bottom:935.344800pt;}
.y3d{bottom:939.184800pt;}
.y11{bottom:943.344800pt;}
.yba{bottom:948.464800pt;}
.y8d{bottom:958.064800pt;}
.y3c{bottom:960.304800pt;}
.yb9{bottom:966.064800pt;}
.y10{bottom:971.504800pt;}
.y8c{bottom:980.464800pt;}
.y3b{bottom:981.424800pt;}
.yb8{bottom:983.664800pt;}
.y38{bottom:999.984800pt;}
.ye{bottom:1002.212267pt;}
.y2{bottom:1010.544800pt;}
.yc{bottom:1056.292267pt;}
.h7{height:17.600000pt;}
.h9{height:21.440000pt;}
.hf{height:24.013125pt;}
.h12{height:24.840000pt;}
.h6{height:29.349375pt;}
.h5{height:30.360000pt;}
.he{height:36.464375pt;}
.h8{height:37.720000pt;}
.h3{height:41.400000pt;}
.hb{height:43.375000pt;}
.ha{height:44.468750pt;}
.h13{height:46.000000pt;}
.h10{height:47.468750pt;}
.h11{height:51.583750pt;}
.hd{height:58.067500pt;}
.h4{height:73.600000pt;}
.hc{height:73.818125pt;}
.h2{height:1090.544800pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w5{width:22.080000pt;}
.w3{width:152.320000pt;}
.w7{width:323.840000pt;}
.w6{width:378.240000pt;}
.w4{width:510.080000pt;}
.w2{width:761.725867pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.040000pt;}
.x1{left:15.987467pt;}
.x10{left:48.080133pt;}
.x9{left:54.067467pt;}
.x7{left:57.280000pt;}
.x3{left:63.347467pt;}
.x18{left:68.280000pt;}
.xe{left:81.280000pt;}
.xf{left:105.280000pt;}
.x17{left:116.280000pt;}
.x4{left:142.933600pt;}
.xd{left:153.280000pt;}
.x12{left:164.653733pt;}
.x1a{left:201.280000pt;}
.xb{left:210.309867pt;}
.x5{left:216.307467pt;}
.x14{left:278.715600pt;}
.x16{left:280.274133pt;}
.xc{left:381.946667pt;}
.x2{left:386.373067pt;}
.xa{left:432.307467pt;}
.x1b{left:557.946667pt;}
.x11{left:603.546533pt;}
.x19{left:667.093067pt;}
.x13{left:679.766667pt;}
.x15{left:684.826533pt;}
.x8{left:700.467467pt;}
}




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