
    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_e37f0dcc8f930f927abf2c4e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.777000;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_bcd527bc4ea16b4730f94afa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_dadcd292320c582ce6896ee5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.635000;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_2e46e2aece6565ff2453ccc7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.451000;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_313b114358804c710f8f57b6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_4192fa3a5be3c78357b9b208.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_38b48f5daaaf304cbcca42d1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_144557516ab83b2fb07f2036.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.389000;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_080f2d34d7504b35d9e13c4e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.727000;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_b1283cbec53678c11e2aec1a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.710000;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_d58da17ef6c5e5d79be33426.woff2')format("woff");}.ffb{font-family:ffb;line-height:2.399000;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_9c82ee378c15a2ae10b7d20f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.687000;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_0684ba859c37551f356d2da7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.046000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5d5453a57abcfddd6d672ff8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_c329cf861ea79ee7f1aff585.woff2')format("woff");}.fff{font-family:fff;line-height:0.921000;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);}
.v2{vertical-align:-23.754000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:27.024000px;}
.v1{vertical-align:31.236000px;}
.v4{vertical-align:44.280000px;}
.v3{vertical-align:92.286000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:2.094547px;}
.lsa{letter-spacing:2.981971px;}
.ls0{letter-spacing:2.986053px;}
.ls9{letter-spacing:2.988591px;}
.ls7{letter-spacing:7.172700px;}
.ls6{letter-spacing:7.175412px;}
.lsb{letter-spacing:10.909062px;}
.ls8{letter-spacing:14.530921px;}
.ls5{letter-spacing:18.130924px;}
.ls4{letter-spacing:18.196379px;}
.lsf{letter-spacing:19.905275px;}
.ls10{letter-spacing:19.965050px;}
.lsd{letter-spacing:21.076381px;}
.lse{letter-spacing:21.796382px;}
.ls2{letter-spacing:32.727300px;}
.lsc{letter-spacing:513.164064px;}
.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;}
}
.ws10{word-spacing:-22.416000px;}
.ws1e{word-spacing:-20.906199px;}
.ws1c{word-spacing:-18.183288px;}
.wsc{word-spacing:-2.474184px;}
.ws2a{word-spacing:-1.754183px;}
.ws2{word-spacing:-0.148723px;}
.ws1d{word-spacing:-0.065455px;}
.ws1a{word-spacing:-0.052364px;}
.wsf{word-spacing:0.000000px;}
.ws31{word-spacing:0.812948px;}
.ws32{word-spacing:0.872724px;}
.ws18{word-spacing:1.060365px;}
.wsa{word-spacing:1.256728px;}
.ws15{word-spacing:1.387638px;}
.ws21{word-spacing:1.976729px;}
.ws13{word-spacing:2.002911px;}
.wsb{word-spacing:2.107638px;}
.ws27{word-spacing:2.631275px;}
.ws1f{word-spacing:2.827639px;}
.ws2e{word-spacing:3.299613px;}
.ws28{word-spacing:3.547639px;}
.ws5{word-spacing:3.613094px;}
.ws20{word-spacing:3.678549px;}
.ws16{word-spacing:3.744003px;}
.ws11{word-spacing:4.162913px;}
.ws2d{word-spacing:4.202185px;}
.ws12{word-spacing:4.228367px;}
.ws14{word-spacing:4.483200px;}
.ws30{word-spacing:4.626631px;}
.ws33{word-spacing:4.686407px;}
.ws2c{word-spacing:5.053095px;}
.ws22{word-spacing:5.511277px;}
.ws17{word-spacing:5.707641px;}
.ws23{word-spacing:6.100369px;}
.ws2f{word-spacing:6.121021px;}
.ws19{word-spacing:7.278552px;}
.ws24{word-spacing:8.456734px;}
.wsd{word-spacing:8.587644px;}
.ws26{word-spacing:8.914917px;}
.wse{word-spacing:9.634917px;}
.ws29{word-spacing:10.485827px;}
.ws6{word-spacing:10.878555px;}
.ws9{word-spacing:11.664010px;}
.ws1b{word-spacing:12.842193px;}
.ws8{word-spacing:13.562193px;}
.ws25{word-spacing:13.889466px;}
.ws3{word-spacing:26.253619px;}
.ws0{word-spacing:31.322414px;}
.ws4{word-spacing:31.504255px;}
.ws1{word-spacing:54.283749px;}
.ws2b{word-spacing:58.281600px;}
.ws7{word-spacing:90.582890px;}
._1c{margin-left:-6.052191px;}
._1{margin-left:-4.610401px;}
._6{margin-left:-3.598214px;}
._2{margin-left:-2.223667px;}
._7{margin-left:-1.179972px;}
._18{width:1.075852px;}
._3{width:2.223667px;}
._0{width:4.610401px;}
._1e{width:20.119927px;}
._20{width:21.554542px;}
._1a{width:22.815077px;}
._17{width:25.069112px;}
._1f{width:27.564231px;}
._8{width:28.732780px;}
._a{width:30.924939px;}
._1d{width:32.697253px;}
._4{width:33.907272px;}
._5{width:35.177699px;}
._19{width:40.514608px;}
._9{width:44.903645px;}
._1b{width:58.971016px;}
._b{width:60.545505px;}
._16{width:80.697600px;}
._12{width:1307.519300px;}
._13{width:1383.775699px;}
._11{width:1560.825024px;}
._e{width:1584.592201px;}
._14{width:1770.085169px;}
._d{width:1780.954211px;}
._10{width:1803.863321px;}
._f{width:1826.144675px;}
._c{width:1829.353739px;}
._15{width:2134.278142px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y2e{bottom:93.813000px;}
.y2d{bottom:176.005500px;}
.y4d{bottom:176.538000px;}
.y2c{bottom:196.329000px;}
.y4c{bottom:210.312000px;}
.y2b{bottom:226.756500px;}
.y4b{bottom:244.084500px;}
.y2a{bottom:259.192500px;}
.y4a{bottom:277.858500px;}
.y29{bottom:291.627000px;}
.y49{bottom:311.631000px;}
.y28{bottom:324.063000px;}
.y48{bottom:348.160500px;}
.y27{bottom:354.490500px;}
.y26{bottom:389.757000px;}
.y47{bottom:393.741000px;}
.y67{bottom:426.052500px;}
.yf{bottom:427.375500px;}
.y46{bottom:427.513500px;}
.y25{bottom:433.129500px;}
.y66{bottom:443.985000px;}
.ye{bottom:447.699000px;}
.y24{bottom:453.453000px;}
.y45{bottom:461.287500px;}
.yd{bottom:468.024000px;}
.y65{bottom:469.389000px;}
.y23{bottom:473.776500px;}
.y64{bottom:487.321500px;}
.yc{bottom:488.347500px;}
.y22{bottom:494.101500px;}
.y44{bottom:495.060000px;}
.yb{bottom:508.671000px;}
.y63{bottom:512.727000px;}
.y21{bottom:514.425000px;}
.y43{bottom:528.834000px;}
.ya{bottom:528.994500px;}
.y62{bottom:530.659500px;}
.y20{bottom:534.748500px;}
.y9{bottom:549.318000px;}
.y1f{bottom:555.072000px;}
.y61{bottom:556.065000px;}
.y42{bottom:562.606500px;}
.y8{bottom:569.643000px;}
.y60{bottom:573.997500px;}
.y1e{bottom:575.395500px;}
.y41{bottom:582.931500px;}
.y1d{bottom:595.720500px;}
.y5f{bottom:599.401500px;}
.y7{bottom:609.393000px;}
.y5e{bottom:617.334000px;}
.y40{bottom:619.459500px;}
.y1c{bottom:630.987000px;}
.y5d{bottom:635.268000px;}
.y6{bottom:646.116000px;}
.y3f{bottom:665.040000px;}
.y5c{bottom:669.405000px;}
.y1b{bottom:674.359500px;}
.y5{bottom:674.848500px;}
.y3e{bottom:685.363500px;}
.y3d{bottom:705.687000px;}
.y5b{bottom:714.985500px;}
.y1a{bottom:717.339000px;}
.y3c{bottom:726.010500px;}
.y5a{bottom:735.309000px;}
.y19{bottom:754.027500px;}
.y59{bottom:755.632500px;}
.y3b{bottom:762.540000px;}
.y58{bottom:775.956000px;}
.y18{bottom:790.714500px;}
.y57{bottom:796.281000px;}
.y4{bottom:803.694000px;}
.y3a{bottom:808.120500px;}
.y17{bottom:827.401500px;}
.y39{bottom:828.444000px;}
.y56{bottom:832.809000px;}
.y3{bottom:840.975000px;}
.y38{bottom:848.767500px;}
.y16{bottom:864.090000px;}
.y37{bottom:869.091000px;}
.y55{bottom:878.389500px;}
.y2{bottom:885.807000px;}
.y54{bottom:898.713000px;}
.y15{bottom:900.777000px;}
.y36{bottom:905.619000px;}
.y53{bottom:919.036500px;}
.y14{bottom:937.464000px;}
.y52{bottom:939.360000px;}
.y35{bottom:951.199500px;}
.y34{bottom:971.524500px;}
.y13{bottom:974.152500px;}
.y51{bottom:975.889500px;}
.y33{bottom:991.848000px;}
.y12{bottom:1010.839500px;}
.y50{bottom:1021.470000px;}
.y32{bottom:1026.373500px;}
.y31{bottom:1037.599500px;}
.y4f{bottom:1041.793500px;}
.y11{bottom:1047.526500px;}
.y4e{bottom:1062.117000px;}
.y30{bottom:1082.440500px;}
.y10{bottom:1084.215000px;}
.y1{bottom:1087.587000px;}
.y2f{bottom:1118.968500px;}
.h6{height:25.336950px;}
.h2{height:41.484266px;}
.hc{height:44.831700px;}
.h9{height:45.818220px;}
.h7{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:51.359539px;}
.h5{height:61.631275px;}
.ha{height:94.904184px;}
.h3{height:106.485382px;}
.hb{height:139.814184px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.426500px;}
.x3{left:131.838000px;}
.xa{left:137.107500px;}
.x4{left:139.332000px;}
.x6{left:152.019000px;}
.xb{left:161.064000px;}
.x5{left:164.010000px;}
.x1{left:286.581000px;}
.x8{left:289.362000px;}
.x9{left:393.067500px;}
.x7{left:438.466500px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:24.021333pt;}
.v1{vertical-align:27.765333pt;}
.v4{vertical-align:39.360000pt;}
.v3{vertical-align:82.032000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:1.861820pt;}
.lsa{letter-spacing:2.650641pt;}
.ls0{letter-spacing:2.654270pt;}
.ls9{letter-spacing:2.656525pt;}
.ls7{letter-spacing:6.375733pt;}
.ls6{letter-spacing:6.378144pt;}
.lsb{letter-spacing:9.696944pt;}
.ls8{letter-spacing:12.916374pt;}
.ls5{letter-spacing:16.116377pt;}
.ls4{letter-spacing:16.174559pt;}
.lsf{letter-spacing:17.693578pt;}
.ls10{letter-spacing:17.746711pt;}
.lsd{letter-spacing:18.734561pt;}
.lse{letter-spacing:19.374562pt;}
.ls2{letter-spacing:29.090933pt;}
.lsc{letter-spacing:456.145835pt;}
.ws10{word-spacing:-19.925333pt;}
.ws1e{word-spacing:-18.583288pt;}
.ws1c{word-spacing:-16.162923pt;}
.wsc{word-spacing:-2.199275pt;}
.ws2a{word-spacing:-1.559274pt;}
.ws2{word-spacing:-0.132198pt;}
.ws1d{word-spacing:-0.058182pt;}
.ws1a{word-spacing:-0.046545pt;}
.wsf{word-spacing:0.000000pt;}
.ws31{word-spacing:0.722621pt;}
.ws32{word-spacing:0.775754pt;}
.ws18{word-spacing:0.942546pt;}
.wsa{word-spacing:1.117092pt;}
.ws15{word-spacing:1.233456pt;}
.ws21{word-spacing:1.757092pt;}
.ws13{word-spacing:1.780365pt;}
.wsb{word-spacing:1.873456pt;}
.ws27{word-spacing:2.338911pt;}
.ws1f{word-spacing:2.513457pt;}
.ws2e{word-spacing:2.932989pt;}
.ws28{word-spacing:3.153457pt;}
.ws5{word-spacing:3.211639pt;}
.ws20{word-spacing:3.269821pt;}
.ws16{word-spacing:3.328003pt;}
.ws11{word-spacing:3.700367pt;}
.ws2d{word-spacing:3.735276pt;}
.ws12{word-spacing:3.758549pt;}
.ws14{word-spacing:3.985067pt;}
.ws30{word-spacing:4.112561pt;}
.ws33{word-spacing:4.165695pt;}
.ws2c{word-spacing:4.491640pt;}
.ws22{word-spacing:4.898913pt;}
.ws17{word-spacing:5.073459pt;}
.ws23{word-spacing:5.422550pt;}
.ws2f{word-spacing:5.440908pt;}
.ws19{word-spacing:6.469824pt;}
.ws24{word-spacing:7.517097pt;}
.wsd{word-spacing:7.633461pt;}
.ws26{word-spacing:7.924370pt;}
.wse{word-spacing:8.564371pt;}
.ws29{word-spacing:9.320735pt;}
.ws6{word-spacing:9.669826pt;}
.ws9{word-spacing:10.368009pt;}
.ws1b{word-spacing:11.415282pt;}
.ws8{word-spacing:12.055283pt;}
.ws25{word-spacing:12.346192pt;}
.ws3{word-spacing:23.336550pt;}
.ws0{word-spacing:27.842146pt;}
.ws4{word-spacing:28.003782pt;}
.ws1{word-spacing:48.252221pt;}
.ws2b{word-spacing:51.805867pt;}
.ws7{word-spacing:80.518124pt;}
._1c{margin-left:-5.379725pt;}
._1{margin-left:-4.098134pt;}
._6{margin-left:-3.198412pt;}
._2{margin-left:-1.976593pt;}
._7{margin-left:-1.048864pt;}
._18{width:0.956313pt;}
._3{width:1.976593pt;}
._0{width:4.098134pt;}
._1e{width:17.884380pt;}
._20{width:19.159593pt;}
._1a{width:20.280068pt;}
._17{width:22.283655pt;}
._1f{width:24.501539pt;}
._8{width:25.540249pt;}
._a{width:27.488835pt;}
._1d{width:29.064225pt;}
._4{width:30.139797pt;}
._5{width:31.269066pt;}
._19{width:36.012985pt;}
._9{width:39.914351pt;}
._1b{width:52.418681pt;}
._b{width:53.818227pt;}
._16{width:71.731200pt;}
._12{width:1162.239378pt;}
._13{width:1230.022843pt;}
._11{width:1387.400021pt;}
._e{width:1408.526401pt;}
._14{width:1573.409039pt;}
._d{width:1583.070410pt;}
._10{width:1603.434063pt;}
._f{width:1623.239711pt;}
._c{width:1626.092213pt;}
._15{width:1897.136126pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:83.389333pt;}
.y2d{bottom:156.449333pt;}
.y4d{bottom:156.922667pt;}
.y2c{bottom:174.514667pt;}
.y4c{bottom:186.944000pt;}
.y2b{bottom:201.561333pt;}
.y4b{bottom:216.964000pt;}
.y2a{bottom:230.393333pt;}
.y4a{bottom:246.985333pt;}
.y29{bottom:259.224000pt;}
.y49{bottom:277.005333pt;}
.y28{bottom:288.056000pt;}
.y48{bottom:309.476000pt;}
.y27{bottom:315.102667pt;}
.y26{bottom:346.450667pt;}
.y47{bottom:349.992000pt;}
.y67{bottom:378.713333pt;}
.yf{bottom:379.889333pt;}
.y46{bottom:380.012000pt;}
.y25{bottom:385.004000pt;}
.y66{bottom:394.653333pt;}
.ye{bottom:397.954667pt;}
.y24{bottom:403.069333pt;}
.y45{bottom:410.033333pt;}
.yd{bottom:416.021333pt;}
.y65{bottom:417.234667pt;}
.y23{bottom:421.134667pt;}
.y64{bottom:433.174667pt;}
.yc{bottom:434.086667pt;}
.y22{bottom:439.201333pt;}
.y44{bottom:440.053333pt;}
.yb{bottom:452.152000pt;}
.y63{bottom:455.757333pt;}
.y21{bottom:457.266667pt;}
.y43{bottom:470.074667pt;}
.ya{bottom:470.217333pt;}
.y62{bottom:471.697333pt;}
.y20{bottom:475.332000pt;}
.y9{bottom:488.282667pt;}
.y1f{bottom:493.397333pt;}
.y61{bottom:494.280000pt;}
.y42{bottom:500.094667pt;}
.y8{bottom:506.349333pt;}
.y60{bottom:510.220000pt;}
.y1e{bottom:511.462667pt;}
.y41{bottom:518.161333pt;}
.y1d{bottom:529.529333pt;}
.y5f{bottom:532.801333pt;}
.y7{bottom:541.682667pt;}
.y5e{bottom:548.741333pt;}
.y40{bottom:550.630667pt;}
.y1c{bottom:560.877333pt;}
.y5d{bottom:564.682667pt;}
.y6{bottom:574.325333pt;}
.y3f{bottom:591.146667pt;}
.y5c{bottom:595.026667pt;}
.y1b{bottom:599.430667pt;}
.y5{bottom:599.865333pt;}
.y3e{bottom:609.212000pt;}
.y3d{bottom:627.277333pt;}
.y5b{bottom:635.542667pt;}
.y1a{bottom:637.634667pt;}
.y3c{bottom:645.342667pt;}
.y5a{bottom:653.608000pt;}
.y19{bottom:670.246667pt;}
.y59{bottom:671.673333pt;}
.y3b{bottom:677.813333pt;}
.y58{bottom:689.738667pt;}
.y18{bottom:702.857333pt;}
.y57{bottom:707.805333pt;}
.y4{bottom:714.394667pt;}
.y3a{bottom:718.329333pt;}
.y17{bottom:735.468000pt;}
.y39{bottom:736.394667pt;}
.y56{bottom:740.274667pt;}
.y3{bottom:747.533333pt;}
.y38{bottom:754.460000pt;}
.y16{bottom:768.080000pt;}
.y37{bottom:772.525333pt;}
.y55{bottom:780.790667pt;}
.y2{bottom:787.384000pt;}
.y54{bottom:798.856000pt;}
.y15{bottom:800.690667pt;}
.y36{bottom:804.994667pt;}
.y53{bottom:816.921333pt;}
.y14{bottom:833.301333pt;}
.y52{bottom:834.986667pt;}
.y35{bottom:845.510667pt;}
.y34{bottom:863.577333pt;}
.y13{bottom:865.913333pt;}
.y51{bottom:867.457333pt;}
.y33{bottom:881.642667pt;}
.y12{bottom:898.524000pt;}
.y50{bottom:907.973333pt;}
.y32{bottom:912.332000pt;}
.y31{bottom:922.310667pt;}
.y4f{bottom:926.038667pt;}
.y11{bottom:931.134667pt;}
.y4e{bottom:944.104000pt;}
.y30{bottom:962.169333pt;}
.y10{bottom:963.746667pt;}
.y1{bottom:966.744000pt;}
.y2f{bottom:994.638667pt;}
.h6{height:22.521733pt;}
.h2{height:36.874903pt;}
.hc{height:39.850400pt;}
.h9{height:40.727307pt;}
.h7{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:45.652924pt;}
.h5{height:54.783356pt;}
.ha{height:84.359275pt;}
.h3{height:94.653673pt;}
.hb{height:124.279275pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.268000pt;}
.x3{left:117.189333pt;}
.xa{left:121.873333pt;}
.x4{left:123.850667pt;}
.x6{left:135.128000pt;}
.xb{left:143.168000pt;}
.x5{left:145.786667pt;}
.x1{left:254.738667pt;}
.x8{left:257.210667pt;}
.x9{left:349.393333pt;}
.x7{left:389.748000pt;}
}




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