
    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_27f06fa9aaf679e696a0bd5e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_dead5d16cacfbffd2a1db66b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_7c961e47fe03caf94da62475.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.907000;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_6891cd21de8bae8f24de8e84.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ad2eda6ae411f2ec93162ddd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.664000;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_129fa5c21f7fde13f996a86b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_55ba6ce8757a3613c58f5562.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.106000;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_1bdfa41cbf6413e34f75798e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.919000;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_3fa728ae83eef2d0ad25f61a.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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:-21.696000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.028000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.984525px;}
.ls5{letter-spacing:9.755443px;}
.ls6{letter-spacing:21.519360px;}
.ls4{letter-spacing:23.384371px;}
.ls8{letter-spacing:23.456102px;}
.ls7{letter-spacing:30.055373px;}
.ls0{letter-spacing:33.254915px;}
.ls3{letter-spacing:35.148288px;}
.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;}
}
.ws23{word-spacing:-19.510886px;}
.ws2b{word-spacing:-17.932800px;}
.ws1f{word-spacing:-3.299635px;}
.ws54{word-spacing:-3.156173px;}
.ws3e{word-spacing:-2.367130px;}
.wsc{word-spacing:-2.151936px;}
.ws1e{word-spacing:-1.865011px;}
.ws1b{word-spacing:-0.717312px;}
.ws37{word-spacing:-0.430387px;}
.ws5{word-spacing:-0.358656px;}
.ws35{word-spacing:-0.071731px;}
.ws13{word-spacing:-0.059776px;}
.ws14{word-spacing:0.000000px;}
.ws12{word-spacing:0.286925px;}
.ws3f{word-spacing:0.430387px;}
.ws3b{word-spacing:0.502118px;}
.ws11{word-spacing:1.075968px;}
.ws29{word-spacing:1.219430px;}
.ws9{word-spacing:1.291162px;}
.ws21{word-spacing:1.362893px;}
.ws43{word-spacing:1.506355px;}
.ws15{word-spacing:1.578086px;}
.ws49{word-spacing:1.649818px;}
.ws6{word-spacing:1.793280px;}
.ws44{word-spacing:2.008474px;}
.ws1d{word-spacing:2.295398px;}
.ws58{word-spacing:3.084442px;}
.ws38{word-spacing:3.227904px;}
.ws36{word-spacing:3.658291px;}
.ws1a{word-spacing:3.730022px;}
.ws7{word-spacing:3.873485px;}
.ws22{word-spacing:3.945216px;}
.ws3a{word-spacing:4.088678px;}
.ws41{word-spacing:4.375603px;}
.ws50{word-spacing:4.447334px;}
.ws2{word-spacing:4.648169px;}
.ws1{word-spacing:4.734246px;}
.ws2a{word-spacing:4.734259px;}
.wsa{word-spacing:4.877722px;}
.ws28{word-spacing:4.949453px;}
.ws17{word-spacing:5.379825px;}
.ws4d{word-spacing:5.523302px;}
.ws40{word-spacing:5.810227px;}
.ws4a{word-spacing:6.025421px;}
.ws39{word-spacing:6.097152px;}
.ws3{word-spacing:6.455775px;}
.ws53{word-spacing:6.599270px;}
.ws4c{word-spacing:6.886195px;}
.wsb{word-spacing:6.957926px;}
.ws4{word-spacing:7.173120px;}
.ws20{word-spacing:7.495910px;}
.ws42{word-spacing:7.603507px;}
.ws4b{word-spacing:8.033894px;}
.ws26{word-spacing:8.105626px;}
.ws18{word-spacing:8.177357px;}
.ws4e{word-spacing:8.607744px;}
.ws19{word-spacing:8.787072px;}
.ws24{word-spacing:8.858803px;}
.wse{word-spacing:9.109862px;}
.ws8{word-spacing:9.683712px;}
.ws10{word-spacing:9.755443px;}
.ws25{word-spacing:9.970637px;}
.ws31{word-spacing:10.042368px;}
.ws2c{word-spacing:10.329293px;}
.ws48{word-spacing:10.544486px;}
.ws57{word-spacing:10.616218px;}
.wsd{word-spacing:10.759680px;}
.ws4f{word-spacing:10.831411px;}
.ws27{word-spacing:11.046605px;}
.ws30{word-spacing:11.548723px;}
.ws2e{word-spacing:11.620454px;}
.ws45{word-spacing:11.692186px;}
.ws47{word-spacing:12.050842px;}
.ws2d{word-spacing:12.194304px;}
.ws32{word-spacing:12.768154px;}
.ws2f{word-spacing:12.839885px;}
.ws51{word-spacing:12.983347px;}
.ws52{word-spacing:13.198541px;}
.wsf{word-spacing:13.844122px;}
.ws1c{word-spacing:14.489702px;}
.ws55{word-spacing:14.848358px;}
.ws3d{word-spacing:15.780864px;}
.ws56{word-spacing:17.215488px;}
.ws16{word-spacing:19.367325px;}
.ws34{word-spacing:23.599565px;}
.ws33{word-spacing:26.181888px;}
.ws46{word-spacing:27.473050px;}
.ws3c{word-spacing:33.139814px;}
.ws0{word-spacing:37.316475px;}
._3{margin-left:-42.177828px;}
._18{margin-left:-35.076557px;}
._22{margin-left:-31.628918px;}
._17{margin-left:-8.091257px;}
._6{margin-left:-6.486136px;}
._11{margin-left:-5.206050px;}
._0{margin-left:-3.223350px;}
._4{margin-left:-1.510896px;}
._8{width:1.936742px;}
._2{width:3.223350px;}
._10{width:4.509958px;}
._15{width:6.425414px;}
._1c{width:7.635803px;}
._1d{width:9.755443px;}
._29{width:12.189763px;}
._2b{width:18.506636px;}
._16{width:19.510873px;}
._b{width:20.688913px;}
._e{width:21.873475px;}
._c{width:24.388595px;}
._1a{width:25.638366px;}
._1b{width:27.253315px;}
._9{width:29.342602px;}
._a{width:30.700940px;}
._13{width:32.160218px;}
._f{width:34.144051px;}
._7{width:35.148288px;}
._26{width:36.367705px;}
._24{width:38.232730px;}
._25{width:39.810816px;}
._12{width:41.245427px;}
._27{width:42.446694px;}
._19{width:44.288478px;}
._1e{width:45.621043px;}
._1f{width:47.275402px;}
._d{width:48.503927px;}
._1{width:50.333850px;}
._5{width:51.646200px;}
._20{width:53.039698px;}
._2a{width:58.613472px;}
._14{width:60.828058px;}
._28{width:63.195214px;}
._21{width:84.355891px;}
._23{width:101.515265px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs2{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:61.467000px;}
.y50{bottom:106.627500px;}
.y75{bottom:116.751000px;}
.y36{bottom:124.254000px;}
.y4f{bottom:133.518000px;}
.y1b{bottom:136.951500px;}
.y74{bottom:143.641500px;}
.y35{bottom:151.146000px;}
.y1a{bottom:160.219500px;}
.y4e{bottom:160.408500px;}
.y73{bottom:170.532000px;}
.y19{bottom:187.111500px;}
.y4d{bottom:187.299000px;}
.y34{bottom:189.618000px;}
.y72{bottom:197.422500px;}
.y4c{bottom:214.191000px;}
.y71{bottom:224.313000px;}
.y18{bottom:228.946500px;}
.y4b{bottom:241.081500px;}
.y33{bottom:248.092500px;}
.y70{bottom:251.205000px;}
.y17{bottom:255.837000px;}
.y4a{bottom:267.972000px;}
.y6f{bottom:278.095500px;}
.y16{bottom:282.727500px;}
.y32{bottom:294.411000px;}
.y6e{bottom:304.986000px;}
.y49{bottom:312.621000px;}
.y15{bottom:327.376500px;}
.y6d{bottom:331.876500px;}
.y31{bottom:336.246000px;}
.y6c{bottom:358.768500px;}
.y30{bottom:363.136500px;}
.y48{bottom:380.445000px;}
.y6b{bottom:385.659000px;}
.y14{bottom:395.200500px;}
.y2f{bottom:401.608500px;}
.y6a{bottom:412.549500px;}
.y13{bottom:422.091000px;}
.y47{bottom:422.280000px;}
.y69{bottom:439.440000px;}
.y12{bottom:448.981500px;}
.y46{bottom:449.170500px;}
.y2e{bottom:460.084500px;}
.y68{bottom:466.332000px;}
.y11{bottom:475.873500px;}
.y45{bottom:491.005500px;}
.y67{bottom:493.222500px;}
.y10{bottom:502.764000px;}
.y2d{bottom:506.401500px;}
.y66{bottom:520.113000px;}
.yf{bottom:529.654500px;}
.y2c{bottom:533.293500px;}
.y44{bottom:535.654500px;}
.y65{bottom:547.003500px;}
.ye{bottom:556.545000px;}
.y64{bottom:573.895500px;}
.y2b{bottom:575.127000px;}
.yd{bottom:598.380000px;}
.y63{bottom:600.786000px;}
.y2a{bottom:602.019000px;}
.y43{bottom:603.478500px;}
.yc{bottom:625.270500px;}
.y62{bottom:627.676500px;}
.y29{bottom:640.491000px;}
.y42{bottom:645.313500px;}
.yb{bottom:652.162500px;}
.y61{bottom:654.567000px;}
.ya{bottom:679.053000px;}
.y60{bottom:681.457500px;}
.y41{bottom:687.148500px;}
.y28{bottom:698.965500px;}
.y5f{bottom:708.349500px;}
.y9{bottom:720.888000px;}
.y40{bottom:731.797500px;}
.y5e{bottom:735.240000px;}
.y27{bottom:745.284000px;}
.y8{bottom:747.778500px;}
.y5d{bottom:762.130500px;}
.y26{bottom:772.174500px;}
.y7{bottom:774.669000px;}
.y5c{bottom:789.021000px;}
.y3f{bottom:799.621500px;}
.y6{bottom:801.561000px;}
.y25{bottom:814.009500px;}
.y5b{bottom:815.913000px;}
.y3e{bottom:826.512000px;}
.y24{bottom:840.900000px;}
.y5a{bottom:842.803500px;}
.y5{bottom:846.210000px;}
.y59{bottom:869.694000px;}
.y3d{bottom:872.830500px;}
.y23{bottom:879.373500px;}
.y58{bottom:896.584500px;}
.y3c{bottom:899.721000px;}
.y57{bottom:923.476500px;}
.y22{bottom:930.513000px;}
.y4{bottom:933.460500px;}
.y3b{bottom:941.556000px;}
.y56{bottom:950.367000px;}
.y3a{bottom:968.446500px;}
.y3{bottom:975.528000px;}
.y55{bottom:977.257500px;}
.y21{bottom:998.337000px;}
.y54{bottom:1004.148000px;}
.y39{bottom:1006.918500px;}
.y20{bottom:1025.227500px;}
.y2{bottom:1028.764500px;}
.y53{bottom:1031.040000px;}
.y52{bottom:1057.930500px;}
.y38{bottom:1065.394500px;}
.y1{bottom:1066.125000px;}
.y1f{bottom:1067.062500px;}
.y51{bottom:1084.821000px;}
.y1e{bottom:1093.953000px;}
.y37{bottom:1111.711500px;}
.y1d{bottom:1138.602000px;}
.h7{height:27.783619px;}
.h5{height:53.798400px;}
.h6{height:57.828699px;}
.h8{height:60.770503px;}
.h3{height:64.557900px;}
.h4{height:72.924434px;}
.h2{height:87.650325px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:106.299000px;}
.x1{left:109.548000px;}
.x8{left:126.495000px;}
.x6{left:127.759500px;}
.xa{left:136.435500px;}
.x7{left:150.196500px;}
.x2{left:274.431000px;}
.x3{left:338.617500px;}
.x4{left:384.708000px;}
.x9{left:442.066500px;}
@media print{
.v2{vertical-align:-19.285333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.136000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.652911pt;}
.ls5{letter-spacing:8.671505pt;}
.ls6{letter-spacing:19.128320pt;}
.ls4{letter-spacing:20.786108pt;}
.ls8{letter-spacing:20.849869pt;}
.ls7{letter-spacing:26.715887pt;}
.ls0{letter-spacing:29.559925pt;}
.ls3{letter-spacing:31.242923pt;}
.ws23{word-spacing:-17.343010pt;}
.ws2b{word-spacing:-15.940267pt;}
.ws1f{word-spacing:-2.933009pt;}
.ws54{word-spacing:-2.805487pt;}
.ws3e{word-spacing:-2.104115pt;}
.wsc{word-spacing:-1.912832pt;}
.ws1e{word-spacing:-1.657788pt;}
.ws1b{word-spacing:-0.637611pt;}
.ws37{word-spacing:-0.382566pt;}
.ws5{word-spacing:-0.318805pt;}
.ws35{word-spacing:-0.063761pt;}
.ws13{word-spacing:-0.053134pt;}
.ws14{word-spacing:0.000000pt;}
.ws12{word-spacing:0.255044pt;}
.ws3f{word-spacing:0.382566pt;}
.ws3b{word-spacing:0.446327pt;}
.ws11{word-spacing:0.956416pt;}
.ws29{word-spacing:1.083938pt;}
.ws9{word-spacing:1.147699pt;}
.ws21{word-spacing:1.211460pt;}
.ws43{word-spacing:1.338982pt;}
.ws15{word-spacing:1.402743pt;}
.ws49{word-spacing:1.466505pt;}
.ws6{word-spacing:1.594027pt;}
.ws44{word-spacing:1.785310pt;}
.ws1d{word-spacing:2.040354pt;}
.ws58{word-spacing:2.741726pt;}
.ws38{word-spacing:2.869248pt;}
.ws36{word-spacing:3.251814pt;}
.ws1a{word-spacing:3.315575pt;}
.ws7{word-spacing:3.443098pt;}
.ws22{word-spacing:3.506859pt;}
.ws3a{word-spacing:3.634381pt;}
.ws41{word-spacing:3.889425pt;}
.ws50{word-spacing:3.953186pt;}
.ws2{word-spacing:4.131706pt;}
.ws1{word-spacing:4.208219pt;}
.ws2a{word-spacing:4.208230pt;}
.wsa{word-spacing:4.335753pt;}
.ws28{word-spacing:4.399514pt;}
.ws17{word-spacing:4.782067pt;}
.ws4d{word-spacing:4.909602pt;}
.ws40{word-spacing:5.164646pt;}
.ws4a{word-spacing:5.355930pt;}
.ws39{word-spacing:5.419691pt;}
.ws3{word-spacing:5.738467pt;}
.ws53{word-spacing:5.866018pt;}
.ws4c{word-spacing:6.121062pt;}
.wsb{word-spacing:6.184823pt;}
.ws4{word-spacing:6.376107pt;}
.ws20{word-spacing:6.663031pt;}
.ws42{word-spacing:6.758673pt;}
.ws4b{word-spacing:7.141239pt;}
.ws26{word-spacing:7.205001pt;}
.ws18{word-spacing:7.268762pt;}
.ws4e{word-spacing:7.651328pt;}
.ws19{word-spacing:7.810731pt;}
.ws24{word-spacing:7.874492pt;}
.wse{word-spacing:8.097655pt;}
.ws8{word-spacing:8.607744pt;}
.ws10{word-spacing:8.671505pt;}
.ws25{word-spacing:8.862788pt;}
.ws31{word-spacing:8.926549pt;}
.ws2c{word-spacing:9.181594pt;}
.ws48{word-spacing:9.372877pt;}
.ws57{word-spacing:9.436638pt;}
.wsd{word-spacing:9.564160pt;}
.ws4f{word-spacing:9.627921pt;}
.ws27{word-spacing:9.819204pt;}
.ws30{word-spacing:10.265532pt;}
.ws2e{word-spacing:10.329293pt;}
.ws45{word-spacing:10.393054pt;}
.ws47{word-spacing:10.711859pt;}
.ws2d{word-spacing:10.839381pt;}
.ws32{word-spacing:11.349470pt;}
.ws2f{word-spacing:11.413231pt;}
.ws51{word-spacing:11.540753pt;}
.ws52{word-spacing:11.732036pt;}
.wsf{word-spacing:12.305886pt;}
.ws1c{word-spacing:12.879735pt;}
.ws55{word-spacing:13.198541pt;}
.ws3d{word-spacing:14.027435pt;}
.ws56{word-spacing:15.302656pt;}
.ws16{word-spacing:17.215400pt;}
.ws34{word-spacing:20.977391pt;}
.ws33{word-spacing:23.272789pt;}
.ws46{word-spacing:24.420489pt;}
.ws3c{word-spacing:29.457613pt;}
.ws0{word-spacing:33.170200pt;}
._3{margin-left:-37.491403pt;}
._18{margin-left:-31.179162pt;}
._22{margin-left:-28.114594pt;}
._17{margin-left:-7.192228pt;}
._6{margin-left:-5.765454pt;}
._11{margin-left:-4.627600pt;}
._0{margin-left:-2.865200pt;}
._4{margin-left:-1.343019pt;}
._8{width:1.721549pt;}
._2{width:2.865200pt;}
._10{width:4.008851pt;}
._15{width:5.711479pt;}
._1c{width:6.787380pt;}
._1d{width:8.671505pt;}
._29{width:10.835345pt;}
._2b{width:16.450343pt;}
._16{width:17.342998pt;}
._b{width:18.390145pt;}
._e{width:19.443089pt;}
._c{width:21.678751pt;}
._1a{width:22.789659pt;}
._1b{width:24.225169pt;}
._9{width:26.082313pt;}
._a{width:27.289725pt;}
._13{width:28.586861pt;}
._f{width:30.350268pt;}
._7{width:31.242923pt;}
._26{width:32.326849pt;}
._24{width:33.984649pt;}
._25{width:35.387392pt;}
._12{width:36.662602pt;}
._27{width:37.730395pt;}
._19{width:39.367536pt;}
._1e{width:40.552038pt;}
._1f{width:42.022579pt;}
._d{width:43.114602pt;}
._1{width:44.741200pt;}
._5{width:45.907733pt;}
._20{width:47.146398pt;}
._2a{width:52.100864pt;}
._14{width:54.069385pt;}
._28{width:56.173523pt;}
._21{width:74.983014pt;}
._23{width:90.235791pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs2{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:54.637333pt;}
.y50{bottom:94.780000pt;}
.y75{bottom:103.778667pt;}
.y36{bottom:110.448000pt;}
.y4f{bottom:118.682667pt;}
.y1b{bottom:121.734667pt;}
.y74{bottom:127.681333pt;}
.y35{bottom:134.352000pt;}
.y1a{bottom:142.417333pt;}
.y4e{bottom:142.585333pt;}
.y73{bottom:151.584000pt;}
.y19{bottom:166.321333pt;}
.y4d{bottom:166.488000pt;}
.y34{bottom:168.549333pt;}
.y72{bottom:175.486667pt;}
.y4c{bottom:190.392000pt;}
.y71{bottom:199.389333pt;}
.y18{bottom:203.508000pt;}
.y4b{bottom:214.294667pt;}
.y33{bottom:220.526667pt;}
.y70{bottom:223.293333pt;}
.y17{bottom:227.410667pt;}
.y4a{bottom:238.197333pt;}
.y6f{bottom:247.196000pt;}
.y16{bottom:251.313333pt;}
.y32{bottom:261.698667pt;}
.y6e{bottom:271.098667pt;}
.y49{bottom:277.885333pt;}
.y15{bottom:291.001333pt;}
.y6d{bottom:295.001333pt;}
.y31{bottom:298.885333pt;}
.y6c{bottom:318.905333pt;}
.y30{bottom:322.788000pt;}
.y48{bottom:338.173333pt;}
.y6b{bottom:342.808000pt;}
.y14{bottom:351.289333pt;}
.y2f{bottom:356.985333pt;}
.y6a{bottom:366.710667pt;}
.y13{bottom:375.192000pt;}
.y47{bottom:375.360000pt;}
.y69{bottom:390.613333pt;}
.y12{bottom:399.094667pt;}
.y46{bottom:399.262667pt;}
.y2e{bottom:408.964000pt;}
.y68{bottom:414.517333pt;}
.y11{bottom:422.998667pt;}
.y45{bottom:436.449333pt;}
.y67{bottom:438.420000pt;}
.y10{bottom:446.901333pt;}
.y2d{bottom:450.134667pt;}
.y66{bottom:462.322667pt;}
.yf{bottom:470.804000pt;}
.y2c{bottom:474.038667pt;}
.y44{bottom:476.137333pt;}
.y65{bottom:486.225333pt;}
.ye{bottom:494.706667pt;}
.y64{bottom:510.129333pt;}
.y2b{bottom:511.224000pt;}
.yd{bottom:531.893333pt;}
.y63{bottom:534.032000pt;}
.y2a{bottom:535.128000pt;}
.y43{bottom:536.425333pt;}
.yc{bottom:555.796000pt;}
.y62{bottom:557.934667pt;}
.y29{bottom:569.325333pt;}
.y42{bottom:573.612000pt;}
.yb{bottom:579.700000pt;}
.y61{bottom:581.837333pt;}
.ya{bottom:603.602667pt;}
.y60{bottom:605.740000pt;}
.y41{bottom:610.798667pt;}
.y28{bottom:621.302667pt;}
.y5f{bottom:629.644000pt;}
.y9{bottom:640.789333pt;}
.y40{bottom:650.486667pt;}
.y5e{bottom:653.546667pt;}
.y27{bottom:662.474667pt;}
.y8{bottom:664.692000pt;}
.y5d{bottom:677.449333pt;}
.y26{bottom:686.377333pt;}
.y7{bottom:688.594667pt;}
.y5c{bottom:701.352000pt;}
.y3f{bottom:710.774667pt;}
.y6{bottom:712.498667pt;}
.y25{bottom:723.564000pt;}
.y5b{bottom:725.256000pt;}
.y3e{bottom:734.677333pt;}
.y24{bottom:747.466667pt;}
.y5a{bottom:749.158667pt;}
.y5{bottom:752.186667pt;}
.y59{bottom:773.061333pt;}
.y3d{bottom:775.849333pt;}
.y23{bottom:781.665333pt;}
.y58{bottom:796.964000pt;}
.y3c{bottom:799.752000pt;}
.y57{bottom:820.868000pt;}
.y22{bottom:827.122667pt;}
.y4{bottom:829.742667pt;}
.y3b{bottom:836.938667pt;}
.y56{bottom:844.770667pt;}
.y3a{bottom:860.841333pt;}
.y3{bottom:867.136000pt;}
.y55{bottom:868.673333pt;}
.y21{bottom:887.410667pt;}
.y54{bottom:892.576000pt;}
.y39{bottom:895.038667pt;}
.y20{bottom:911.313333pt;}
.y2{bottom:914.457333pt;}
.y53{bottom:916.480000pt;}
.y52{bottom:940.382667pt;}
.y38{bottom:947.017333pt;}
.y1{bottom:947.666667pt;}
.y1f{bottom:948.500000pt;}
.y51{bottom:964.285333pt;}
.y1e{bottom:972.402667pt;}
.y37{bottom:988.188000pt;}
.y1d{bottom:1012.090667pt;}
.h7{height:24.696550pt;}
.h5{height:47.820800pt;}
.h6{height:51.403288pt;}
.h8{height:54.018225pt;}
.h3{height:57.384800pt;}
.h4{height:64.821719pt;}
.h2{height:77.911400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:94.488000pt;}
.x1{left:97.376000pt;}
.x8{left:112.440000pt;}
.x6{left:113.564000pt;}
.xa{left:121.276000pt;}
.x7{left:133.508000pt;}
.x2{left:243.938667pt;}
.x3{left:300.993333pt;}
.x4{left:341.962667pt;}
.x9{left:392.948000pt;}
}




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