
    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_d68cb22cec726eb723217eab.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_7936fd8726f8b035323e5938.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_ade7c4bfec0347786f606ab7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_4fd303de6fc0b72f6c21e4f6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c19286bb0d6c2b0f94ee78b9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.861816;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_faece9cf34761f066a6c9e14.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.863770;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_1d8bfa48eb6229229b852edd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.694824;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_61ae5edbfab51a93d4c8909e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_14bc5bd979c07b4453d1f4ba.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b937ddc592d38213ad5fdaa7.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_527c87899e529857c7b1412b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.692383;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_8a09d4032f1d7c665631b59e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.709473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-1.008000px;}
.ls1e{letter-spacing:-0.936000px;}
.ls18{letter-spacing:-0.792000px;}
.ls8{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.576000px;}
.ls1d{letter-spacing:-0.432000px;}
.ls3{letter-spacing:-0.305400px;}
.lsd{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.072000px;}
.ls2{letter-spacing:-0.018720px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.119160px;}
.ls22{letter-spacing:0.119520px;}
.ls19{letter-spacing:0.142620px;}
.ls7{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.144960px;}
.ls4{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.256200px;}
.ls5{letter-spacing:0.313800px;}
.ls10{letter-spacing:0.432000px;}
.ls17{letter-spacing:0.502140px;}
.ls1a{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.504480px;}
.ls16{letter-spacing:0.551520px;}
.ls1f{letter-spacing:0.624000px;}
.ls1c{letter-spacing:0.684960px;}
.ls21{letter-spacing:0.719520px;}
.lsa{letter-spacing:0.720000px;}
.ls20{letter-spacing:0.792000px;}
.ls1b{letter-spacing:33.984000px;}
.ls11{letter-spacing:38.158620px;}
.ls0{letter-spacing:848.028000px;}
.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;}
}
.ws0{word-spacing:-74.482560px;}
.ws3{word-spacing:-65.538720px;}
.ws18{word-spacing:-56.808000px;}
.ws19{word-spacing:-56.736000px;}
.wsf{word-spacing:-56.520000px;}
.ws16{word-spacing:-56.232000px;}
.ws8{word-spacing:-56.160000px;}
.wsb{word-spacing:-56.088000px;}
.ws9{word-spacing:-56.016000px;}
.ws17{word-spacing:-55.944000px;}
.wsc{word-spacing:-55.872000px;}
.wse{word-spacing:-55.800000px;}
.wsd{word-spacing:-55.728000px;}
.ws12{word-spacing:-55.584000px;}
.ws15{word-spacing:-55.080000px;}
.ws14{word-spacing:-51.984000px;}
.ws1{word-spacing:-51.229320px;}
.ws4{word-spacing:-36.720000px;}
.ws5{word-spacing:-33.897480px;}
.ws6{word-spacing:-33.839880px;}
.ws11{word-spacing:-18.504000px;}
.wsa{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.928000px;}
.ws13{word-spacing:-17.784000px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-16.510875px;}
._7{margin-left:-13.980000px;}
._6{margin-left:-9.564600px;}
._4{margin-left:-8.376600px;}
._8{margin-left:-4.968904px;}
._2a{margin-left:-3.964152px;}
._10{margin-left:-2.953124px;}
._1{margin-left:-1.591496px;}
._0{width:1.531496px;}
._5{width:2.927460px;}
._d{width:3.969807px;}
._f{width:5.105030px;}
._11{width:6.278877px;}
._14{width:7.627550px;}
._25{width:9.005911px;}
._e{width:10.222677px;}
._a{width:11.374438px;}
._b{width:12.599823px;}
._c{width:13.766527px;}
._3{width:14.945917px;}
._1f{width:16.621100px;}
._17{width:17.784739px;}
._12{width:19.365712px;}
._13{width:20.520920px;}
._1e{width:21.886848px;}
._1a{width:23.542648px;}
._1b{width:24.556218px;}
._1c{width:26.275680px;}
._20{width:28.152240px;}
._21{width:29.171743px;}
._26{width:30.743299px;}
._27{width:31.831526px;}
._2b{width:33.662585px;}
._2d{width:35.023691px;}
._24{width:36.370046px;}
._18{width:37.487606px;}
._19{width:38.976001px;}
._1d{width:40.583902px;}
._22{width:42.334872px;}
._23{width:43.414023px;}
._2c{width:45.430848px;}
._16{width:47.231803px;}
._2e{width:48.609729px;}
._2f{width:50.471751px;}
._30{width:51.491531px;}
._31{width:53.052478px;}
._15{width:57.106656px;}
._36{width:59.219182px;}
._35{width:60.984750px;}
._28{width:62.172129px;}
._29{width:63.207660px;}
._4d{width:67.399023px;}
._3b{width:69.623408px;}
._40{width:80.547152px;}
._3f{width:81.944624px;}
._4c{width:85.583038px;}
._4b{width:86.983904px;}
._4a{width:92.880290px;}
._3c{width:96.408000px;}
._45{width:113.256006px;}
._37{width:121.079471px;}
._32{width:132.277326px;}
._33{width:133.617419px;}
._48{width:143.640244px;}
._49{width:144.801527px;}
._46{width:161.494412px;}
._47{width:162.512409px;}
._41{width:165.672000px;}
._3e{width:206.038680px;}
._3a{width:322.056720px;}
._43{width:332.400380px;}
._38{width:409.250853px;}
._39{width:434.230893px;}
._34{width:443.497214px;}
._42{width:457.562059px;}
._3d{width:665.354979px;}
._44{width:761.976000px;}
._9{width:846.151200px;}
.fc3{color:rgb(5,99,193);}
.fc1{color:transparent;}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:51.120000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:4.860300px;}
.y2{bottom:52.955850px;}
.y1{bottom:57.996150px;}
.y24{bottom:165.269850px;}
.y7a{bottom:186.504450px;}
.y9d{bottom:186.505050px;}
.y99{bottom:186.505650px;}
.y6d{bottom:186.506850px;}
.y8d{bottom:186.507450px;}
.y95{bottom:186.508050px;}
.y9a{bottom:186.508650px;}
.ya8{bottom:186.509250px;}
.y6e{bottom:186.509850px;}
.yb4{bottom:186.510000px;}
.y51{bottom:186.510450px;}
.y23{bottom:195.509550px;}
.y22{bottom:215.849850px;}
.y79{bottom:227.905050px;}
.y98{bottom:227.905650px;}
.y6c{bottom:227.906850px;}
.y8c{bottom:227.907450px;}
.y94{bottom:227.908050px;}
.y83{bottom:227.908650px;}
.ya7{bottom:227.909250px;}
.y5f{bottom:227.909850px;}
.yb8{bottom:227.910000px;}
.y50{bottom:227.910450px;}
.y21{bottom:237.629700px;}
.y20{bottom:256.709550px;}
.y9c{bottom:269.305050px;}
.y78{bottom:269.305650px;}
.y6b{bottom:269.306850px;}
.y8b{bottom:269.307450px;}
.y93{bottom:269.308050px;}
.y82{bottom:269.308650px;}
.ya6{bottom:269.309250px;}
.y5e{bottom:269.309850px;}
.yb7{bottom:269.310000px;}
.y4f{bottom:269.310450px;}
.y1f{bottom:276.015000px;}
.yca{bottom:288.792300px;}
.y1e{bottom:296.354700px;}
.y9b{bottom:310.750200px;}
.y77{bottom:310.750800px;}
.y6a{bottom:310.752000px;}
.y8a{bottom:310.752600px;}
.y92{bottom:310.753200px;}
.y81{bottom:310.753800px;}
.ya5{bottom:310.754400px;}
.y5d{bottom:310.755000px;}
.y4e{bottom:310.755600px;}
.y1d{bottom:315.434550px;}
.yc9{bottom:330.192300px;}
.y1c{bottom:334.334550px;}
.y76{bottom:352.150800px;}
.y97{bottom:352.151400px;}
.y69{bottom:352.152000px;}
.y89{bottom:352.152600px;}
.y91{bottom:352.153200px;}
.y80{bottom:352.153800px;}
.ya4{bottom:352.154400px;}
.yc5{bottom:352.154550px;}
.y5c{bottom:352.155000px;}
.ybb{bottom:352.155150px;}
.y4d{bottom:352.155600px;}
.y1b{bottom:353.594850px;}
.yc8{bottom:371.592300px;}
.y1a{bottom:373.934550px;}
.yab{bottom:393.550800px;}
.y75{bottom:393.551400px;}
.y68{bottom:393.552000px;}
.y88{bottom:393.552600px;}
.y90{bottom:393.553200px;}
.y7f{bottom:393.553800px;}
.ya3{bottom:393.554400px;}
.yc4{bottom:393.554550px;}
.y5b{bottom:393.555000px;}
.yba{bottom:393.555150px;}
.y4c{bottom:393.555600px;}
.y19{bottom:395.894850px;}
.yc7{bottom:412.992300px;}
.y18{bottom:415.154550px;}
.yc6{bottom:434.592300px;}
.yaa{bottom:434.950800px;}
.y67{bottom:434.952000px;}
.y87{bottom:434.952600px;}
.y8f{bottom:434.953200px;}
.y7e{bottom:434.953800px;}
.ya2{bottom:434.954400px;}
.yc3{bottom:434.954550px;}
.y5a{bottom:434.955000px;}
.yb9{bottom:434.955150px;}
.y4b{bottom:434.955600px;}
.y17{bottom:435.854550px;}
.y3a{bottom:449.895300px;}
.y16{bottom:456.554550px;}
.y39{bottom:470.595300px;}
.ya9{bottom:476.351400px;}
.y66{bottom:476.352000px;}
.y74{bottom:476.352600px;}
.y8e{bottom:476.353200px;}
.y7d{bottom:476.353800px;}
.ya1{bottom:476.354400px;}
.yc2{bottom:476.354550px;}
.y59{bottom:476.355000px;}
.yb6{bottom:476.355150px;}
.y4a{bottom:476.355600px;}
.y15{bottom:477.254550px;}
.y38{bottom:492.195300px;}
.y14{bottom:497.594850px;}
.y65{bottom:517.752000px;}
.y86{bottom:517.752600px;}
.y73{bottom:517.753200px;}
.y7c{bottom:517.753800px;}
.ya0{bottom:517.754400px;}
.yc1{bottom:517.754550px;}
.y58{bottom:517.755000px;}
.yb3{bottom:517.755150px;}
.y49{bottom:517.755600px;}
.y37{bottom:523.155000px;}
.y13{bottom:535.754550px;}
.y36{bottom:554.115300px;}
.y64{bottom:559.181850px;}
.y85{bottom:559.182450px;}
.y72{bottom:559.183050px;}
.y7b{bottom:559.183650px;}
.y9f{bottom:559.184250px;}
.yc0{bottom:559.184400px;}
.y57{bottom:559.184850px;}
.yb2{bottom:559.185000px;}
.y48{bottom:559.185450px;}
.y12{bottom:559.904550px;}
.y11{bottom:584.204550px;}
.y35{bottom:585.105000px;}
.y63{bottom:600.582450px;}
.y84{bottom:600.583050px;}
.y71{bottom:600.583650px;}
.y9e{bottom:600.584250px;}
.ybf{bottom:600.584400px;}
.y56{bottom:600.584850px;}
.yb1{bottom:600.585000px;}
.y47{bottom:600.585450px;}
.y10{bottom:608.324700px;}
.y34{bottom:615.705000px;}
.yf{bottom:631.904550px;}
.y62{bottom:641.983050px;}
.y70{bottom:641.983650px;}
.y96{bottom:641.984250px;}
.ybe{bottom:641.984400px;}
.y55{bottom:641.984850px;}
.yb0{bottom:641.985000px;}
.y46{bottom:641.985450px;}
.y33{bottom:645.225150px;}
.ye{bottom:653.144850px;}
.yd{bottom:675.644850px;}
.y32{bottom:675.825150px;}
.y61{bottom:683.383650px;}
.y6f{bottom:683.384250px;}
.ybd{bottom:683.384400px;}
.y54{bottom:683.384850px;}
.yaf{bottom:683.385000px;}
.y45{bottom:683.385450px;}
.yc{bottom:697.965000px;}
.y31{bottom:704.984850px;}
.yb{bottom:723.344850px;}
.y60{bottom:724.784250px;}
.ybc{bottom:724.784400px;}
.y53{bottom:724.784850px;}
.yae{bottom:724.785000px;}
.y44{bottom:724.785450px;}
.y30{bottom:734.145150px;}
.ya{bottom:747.104550px;}
.y2f{bottom:763.304850px;}
.yad{bottom:766.184400px;}
.y52{bottom:766.184850px;}
.yb5{bottom:766.185000px;}
.y43{bottom:766.185450px;}
.y9{bottom:788.324700px;}
.y2e{bottom:792.825000px;}
.yac{bottom:807.585000px;}
.y42{bottom:807.585450px;}
.y8{bottom:815.865000px;}
.y2d{bottom:823.425000px;}
.y41{bottom:849.030000px;}
.y2c{bottom:852.629850px;}
.y7{bottom:853.529700px;}
.y6{bottom:874.229700px;}
.y2b{bottom:881.790150px;}
.y40{bottom:890.430000px;}
.y5{bottom:890.970000px;}
.y2a{bottom:910.770000px;}
.y3f{bottom:931.830000px;}
.y29{bottom:940.290150px;}
.y28{bottom:971.249850px;}
.y3e{bottom:973.230000px;}
.y27{bottom:1002.390150px;}
.y3d{bottom:1014.630000px;}
.y26{bottom:1036.590150px;}
.y3c{bottom:1056.030000px;}
.y25{bottom:1097.070000px;}
.y3b{bottom:1097.430000px;}
.y4{bottom:1101.390000px;}
.h3{height:21.960300px;}
.h4{height:44.854805px;}
.hc{height:44.893125px;}
.hb{height:45.345938px;}
.h2{height:47.988281px;}
.hd{height:48.796875px;}
.he{height:49.218750px;}
.h7{height:49.289063px;}
.hf{height:49.992188px;}
.h8{height:53.232188px;}
.h9{height:57.668203px;}
.ha{height:58.121719px;}
.h5{height:63.175781px;}
.h10{height:63.176381px;}
.h11{height:63.178181px;}
.h6{height:65.554453px;}
.h1{height:1263.000000px;}
.h0{height:1263.059970px;}
.w2{width:9.179880px;}
.w3{width:18.359700px;}
.w0{width:892.440030px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x16{left:106.416000px;}
.x1{left:148.896150px;}
.x11{left:166.890270px;}
.x13{left:175.891455px;}
.x7{left:200.910300px;}
.x14{left:202.891110px;}
.xb{left:207.390600px;}
.x9{left:211.890600px;}
.xa{left:243.390600px;}
.x5{left:256.755450px;}
.xf{left:320.115900px;}
.x8{left:321.555450px;}
.x6{left:374.655300px;}
.xc{left:376.455600px;}
.x15{left:400.215000px;}
.x10{left:408.315150px;}
.x12{left:437.145000px;}
.x2{left:441.825000px;}
.x4{left:446.325450px;}
.x3{left:560.985150px;}
.xe{left:571.605900px;}
.xd{left:652.110750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.896000pt;}
.ls1e{letter-spacing:-0.832000pt;}
.ls18{letter-spacing:-0.704000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.512000pt;}
.ls1d{letter-spacing:-0.384000pt;}
.ls3{letter-spacing:-0.271467pt;}
.lsd{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:-0.016640pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.105920pt;}
.ls22{letter-spacing:0.106240pt;}
.ls19{letter-spacing:0.126773pt;}
.ls7{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.128853pt;}
.ls4{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.227733pt;}
.ls5{letter-spacing:0.278933pt;}
.ls10{letter-spacing:0.384000pt;}
.ls17{letter-spacing:0.446347pt;}
.ls1a{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.448427pt;}
.ls16{letter-spacing:0.490240pt;}
.ls1f{letter-spacing:0.554667pt;}
.ls1c{letter-spacing:0.608853pt;}
.ls21{letter-spacing:0.639573pt;}
.lsa{letter-spacing:0.640000pt;}
.ls20{letter-spacing:0.704000pt;}
.ls1b{letter-spacing:30.208000pt;}
.ls11{letter-spacing:33.918773pt;}
.ls0{letter-spacing:753.802667pt;}
.ws0{word-spacing:-66.206720pt;}
.ws3{word-spacing:-58.256640pt;}
.ws18{word-spacing:-50.496000pt;}
.ws19{word-spacing:-50.432000pt;}
.wsf{word-spacing:-50.240000pt;}
.ws16{word-spacing:-49.984000pt;}
.ws8{word-spacing:-49.920000pt;}
.wsb{word-spacing:-49.856000pt;}
.ws9{word-spacing:-49.792000pt;}
.ws17{word-spacing:-49.728000pt;}
.wsc{word-spacing:-49.664000pt;}
.wse{word-spacing:-49.600000pt;}
.wsd{word-spacing:-49.536000pt;}
.ws12{word-spacing:-49.408000pt;}
.ws15{word-spacing:-48.960000pt;}
.ws14{word-spacing:-46.208000pt;}
.ws1{word-spacing:-45.537173pt;}
.ws4{word-spacing:-32.640000pt;}
.ws5{word-spacing:-30.131093pt;}
.ws6{word-spacing:-30.079893pt;}
.ws11{word-spacing:-16.448000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.936000pt;}
.ws13{word-spacing:-15.808000pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-14.676333pt;}
._7{margin-left:-12.426667pt;}
._6{margin-left:-8.501867pt;}
._4{margin-left:-7.445867pt;}
._8{margin-left:-4.416803pt;}
._2a{margin-left:-3.523691pt;}
._10{margin-left:-2.624999pt;}
._1{margin-left:-1.414663pt;}
._0{width:1.361330pt;}
._5{width:2.602187pt;}
._d{width:3.528717pt;}
._f{width:4.537805pt;}
._11{width:5.581224pt;}
._14{width:6.780044pt;}
._25{width:8.005254pt;}
._e{width:9.086824pt;}
._a{width:10.110611pt;}
._b{width:11.199843pt;}
._c{width:12.236913pt;}
._3{width:13.285259pt;}
._1f{width:14.774311pt;}
._17{width:15.808657pt;}
._12{width:17.213966pt;}
._13{width:18.240818pt;}
._1e{width:19.454976pt;}
._1a{width:20.926798pt;}
._1b{width:21.827749pt;}
._1c{width:23.356160pt;}
._20{width:25.024213pt;}
._21{width:25.930438pt;}
._26{width:27.327377pt;}
._27{width:28.294690pt;}
._2b{width:29.922297pt;}
._2d{width:31.132170pt;}
._24{width:32.328929pt;}
._18{width:33.322317pt;}
._19{width:34.645334pt;}
._1d{width:36.074579pt;}
._22{width:37.630997pt;}
._23{width:38.590243pt;}
._2c{width:40.382976pt;}
._16{width:41.983825pt;}
._2e{width:43.208648pt;}
._2f{width:44.863779pt;}
._30{width:45.770250pt;}
._31{width:47.157758pt;}
._15{width:50.761472pt;}
._36{width:52.639273pt;}
._35{width:54.208666pt;}
._28{width:55.264115pt;}
._29{width:56.184586pt;}
._4d{width:59.910242pt;}
._3b{width:61.887474pt;}
._40{width:71.597469pt;}
._3f{width:72.839666pt;}
._4c{width:76.073811pt;}
._4b{width:77.319026pt;}
._4a{width:82.560258pt;}
._3c{width:85.696000pt;}
._45{width:100.672006pt;}
._37{width:107.626196pt;}
._32{width:117.579846pt;}
._33{width:118.771039pt;}
._48{width:127.680217pt;}
._49{width:128.712468pt;}
._46{width:143.550589pt;}
._47{width:144.455475pt;}
._41{width:147.264000pt;}
._3e{width:183.145493pt;}
._3a{width:286.272640pt;}
._43{width:295.467005pt;}
._38{width:363.778536pt;}
._39{width:385.983016pt;}
._34{width:394.219745pt;}
._42{width:406.721830pt;}
._3d{width:591.426648pt;}
._44{width:677.312000pt;}
._9{width:752.134400pt;}
.fs1{font-size:45.440000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:4.320267pt;}
.y2{bottom:47.071867pt;}
.y1{bottom:51.552133pt;}
.y24{bottom:146.906533pt;}
.y7a{bottom:165.781733pt;}
.y9d{bottom:165.782267pt;}
.y99{bottom:165.782800pt;}
.y6d{bottom:165.783867pt;}
.y8d{bottom:165.784400pt;}
.y95{bottom:165.784933pt;}
.y9a{bottom:165.785467pt;}
.ya8{bottom:165.786000pt;}
.y6e{bottom:165.786533pt;}
.yb4{bottom:165.786667pt;}
.y51{bottom:165.787067pt;}
.y23{bottom:173.786267pt;}
.y22{bottom:191.866533pt;}
.y79{bottom:202.582267pt;}
.y98{bottom:202.582800pt;}
.y6c{bottom:202.583867pt;}
.y8c{bottom:202.584400pt;}
.y94{bottom:202.584933pt;}
.y83{bottom:202.585467pt;}
.ya7{bottom:202.586000pt;}
.y5f{bottom:202.586533pt;}
.yb8{bottom:202.586667pt;}
.y50{bottom:202.587067pt;}
.y21{bottom:211.226400pt;}
.y20{bottom:228.186267pt;}
.y9c{bottom:239.382267pt;}
.y78{bottom:239.382800pt;}
.y6b{bottom:239.383867pt;}
.y8b{bottom:239.384400pt;}
.y93{bottom:239.384933pt;}
.y82{bottom:239.385467pt;}
.ya6{bottom:239.386000pt;}
.y5e{bottom:239.386533pt;}
.yb7{bottom:239.386667pt;}
.y4f{bottom:239.387067pt;}
.y1f{bottom:245.346667pt;}
.yca{bottom:256.704267pt;}
.y1e{bottom:263.426400pt;}
.y9b{bottom:276.222400pt;}
.y77{bottom:276.222933pt;}
.y6a{bottom:276.224000pt;}
.y8a{bottom:276.224533pt;}
.y92{bottom:276.225067pt;}
.y81{bottom:276.225600pt;}
.ya5{bottom:276.226133pt;}
.y5d{bottom:276.226667pt;}
.y4e{bottom:276.227200pt;}
.y1d{bottom:280.386267pt;}
.yc9{bottom:293.504267pt;}
.y1c{bottom:297.186267pt;}
.y76{bottom:313.022933pt;}
.y97{bottom:313.023467pt;}
.y69{bottom:313.024000pt;}
.y89{bottom:313.024533pt;}
.y91{bottom:313.025067pt;}
.y80{bottom:313.025600pt;}
.ya4{bottom:313.026133pt;}
.yc5{bottom:313.026267pt;}
.y5c{bottom:313.026667pt;}
.ybb{bottom:313.026800pt;}
.y4d{bottom:313.027200pt;}
.y1b{bottom:314.306533pt;}
.yc8{bottom:330.304267pt;}
.y1a{bottom:332.386267pt;}
.yab{bottom:349.822933pt;}
.y75{bottom:349.823467pt;}
.y68{bottom:349.824000pt;}
.y88{bottom:349.824533pt;}
.y90{bottom:349.825067pt;}
.y7f{bottom:349.825600pt;}
.ya3{bottom:349.826133pt;}
.yc4{bottom:349.826267pt;}
.y5b{bottom:349.826667pt;}
.yba{bottom:349.826800pt;}
.y4c{bottom:349.827200pt;}
.y19{bottom:351.906533pt;}
.yc7{bottom:367.104267pt;}
.y18{bottom:369.026267pt;}
.yc6{bottom:386.304267pt;}
.yaa{bottom:386.622933pt;}
.y67{bottom:386.624000pt;}
.y87{bottom:386.624533pt;}
.y8f{bottom:386.625067pt;}
.y7e{bottom:386.625600pt;}
.ya2{bottom:386.626133pt;}
.yc3{bottom:386.626267pt;}
.y5a{bottom:386.626667pt;}
.yb9{bottom:386.626800pt;}
.y4b{bottom:386.627200pt;}
.y17{bottom:387.426267pt;}
.y3a{bottom:399.906933pt;}
.y16{bottom:405.826267pt;}
.y39{bottom:418.306933pt;}
.ya9{bottom:423.423467pt;}
.y66{bottom:423.424000pt;}
.y74{bottom:423.424533pt;}
.y8e{bottom:423.425067pt;}
.y7d{bottom:423.425600pt;}
.ya1{bottom:423.426133pt;}
.yc2{bottom:423.426267pt;}
.y59{bottom:423.426667pt;}
.yb6{bottom:423.426800pt;}
.y4a{bottom:423.427200pt;}
.y15{bottom:424.226267pt;}
.y38{bottom:437.506933pt;}
.y14{bottom:442.306533pt;}
.y65{bottom:460.224000pt;}
.y86{bottom:460.224533pt;}
.y73{bottom:460.225067pt;}
.y7c{bottom:460.225600pt;}
.ya0{bottom:460.226133pt;}
.yc1{bottom:460.226267pt;}
.y58{bottom:460.226667pt;}
.yb3{bottom:460.226800pt;}
.y49{bottom:460.227200pt;}
.y37{bottom:465.026667pt;}
.y13{bottom:476.226267pt;}
.y36{bottom:492.546933pt;}
.y64{bottom:497.050533pt;}
.y85{bottom:497.051067pt;}
.y72{bottom:497.051600pt;}
.y7b{bottom:497.052133pt;}
.y9f{bottom:497.052667pt;}
.yc0{bottom:497.052800pt;}
.y57{bottom:497.053200pt;}
.yb2{bottom:497.053333pt;}
.y48{bottom:497.053733pt;}
.y12{bottom:497.692933pt;}
.y11{bottom:519.292933pt;}
.y35{bottom:520.093333pt;}
.y63{bottom:533.851067pt;}
.y84{bottom:533.851600pt;}
.y71{bottom:533.852133pt;}
.y9e{bottom:533.852667pt;}
.ybf{bottom:533.852800pt;}
.y56{bottom:533.853200pt;}
.yb1{bottom:533.853333pt;}
.y47{bottom:533.853733pt;}
.y10{bottom:540.733067pt;}
.y34{bottom:547.293333pt;}
.yf{bottom:561.692933pt;}
.y62{bottom:570.651600pt;}
.y70{bottom:570.652133pt;}
.y96{bottom:570.652667pt;}
.ybe{bottom:570.652800pt;}
.y55{bottom:570.653200pt;}
.yb0{bottom:570.653333pt;}
.y46{bottom:570.653733pt;}
.y33{bottom:573.533467pt;}
.ye{bottom:580.573200pt;}
.yd{bottom:600.573200pt;}
.y32{bottom:600.733467pt;}
.y61{bottom:607.452133pt;}
.y6f{bottom:607.452667pt;}
.ybd{bottom:607.452800pt;}
.y54{bottom:607.453200pt;}
.yaf{bottom:607.453333pt;}
.y45{bottom:607.453733pt;}
.yc{bottom:620.413333pt;}
.y31{bottom:626.653200pt;}
.yb{bottom:642.973200pt;}
.y60{bottom:644.252667pt;}
.ybc{bottom:644.252800pt;}
.y53{bottom:644.253200pt;}
.yae{bottom:644.253333pt;}
.y44{bottom:644.253733pt;}
.y30{bottom:652.573467pt;}
.ya{bottom:664.092933pt;}
.y2f{bottom:678.493200pt;}
.yad{bottom:681.052800pt;}
.y52{bottom:681.053200pt;}
.yb5{bottom:681.053333pt;}
.y43{bottom:681.053733pt;}
.y9{bottom:700.733067pt;}
.y2e{bottom:704.733333pt;}
.yac{bottom:717.853333pt;}
.y42{bottom:717.853733pt;}
.y8{bottom:725.213333pt;}
.y2d{bottom:731.933333pt;}
.y41{bottom:754.693333pt;}
.y2c{bottom:757.893200pt;}
.y7{bottom:758.693067pt;}
.y6{bottom:777.093067pt;}
.y2b{bottom:783.813467pt;}
.y40{bottom:791.493333pt;}
.y5{bottom:791.973333pt;}
.y2a{bottom:809.573333pt;}
.y3f{bottom:828.293333pt;}
.y29{bottom:835.813467pt;}
.y28{bottom:863.333200pt;}
.y3e{bottom:865.093333pt;}
.y27{bottom:891.013467pt;}
.y3d{bottom:901.893333pt;}
.y26{bottom:921.413467pt;}
.y3c{bottom:938.693333pt;}
.y25{bottom:975.173333pt;}
.y3b{bottom:975.493333pt;}
.y4{bottom:979.013333pt;}
.h3{height:19.520267pt;}
.h4{height:39.870938pt;}
.hc{height:39.905000pt;}
.hb{height:40.307500pt;}
.h2{height:42.656250pt;}
.hd{height:43.375000pt;}
.he{height:43.750000pt;}
.h7{height:43.812500pt;}
.hf{height:44.437500pt;}
.h8{height:47.317500pt;}
.h9{height:51.260625pt;}
.ha{height:51.663750pt;}
.h5{height:56.156250pt;}
.h10{height:56.156783pt;}
.h11{height:56.158383pt;}
.h6{height:58.270625pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.719973pt;}
.w2{width:8.159893pt;}
.w3{width:16.319733pt;}
.w0{width:793.280027pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x16{left:94.592000pt;}
.x1{left:132.352133pt;}
.x11{left:148.346907pt;}
.x13{left:156.347960pt;}
.x7{left:178.586933pt;}
.x14{left:180.347653pt;}
.xb{left:184.347200pt;}
.x9{left:188.347200pt;}
.xa{left:216.347200pt;}
.x5{left:228.227067pt;}
.xf{left:284.547467pt;}
.x8{left:285.827067pt;}
.x6{left:333.026933pt;}
.xc{left:334.627200pt;}
.x15{left:355.746667pt;}
.x10{left:362.946800pt;}
.x12{left:388.573333pt;}
.x2{left:392.733333pt;}
.x4{left:396.733733pt;}
.x3{left:498.653467pt;}
.xe{left:508.094133pt;}
.xd{left:579.654000pt;}
}




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