
    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_177bb2b70e1a2787f6c63db7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916016;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_65f972331652545a396f4339.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_f8ec4b27c99b3ddec58b7fab.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_154f86824a70f1d589388cc8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.858398;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_348b8c78bb8ad793009c5cce.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.706055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:198.000000px;}
.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:-18.000000px;}
.ws1{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
._e{margin-left:-198.000000px;}
._12{margin-left:-8.327963px;}
._2{margin-left:-7.121175px;}
._f{margin-left:-5.343751px;}
._1{margin-left:-3.358173px;}
._9{margin-left:-2.220573px;}
._0{margin-left:-1.018180px;}
._4{width:4.500010px;}
._3{width:9.000000px;}
._6{width:12.549319px;}
._5{width:13.975345px;}
._a{width:22.500002px;}
._b{width:27.000002px;}
._c{width:31.500000px;}
._11{width:36.000002px;}
._d{width:40.499997px;}
._8{width:72.000015px;}
._7{width:76.500002px;}
._10{width:198.000000px;}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:83.999997px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.124988px;}
.y5a{bottom:17.016358px;}
.y28{bottom:17.016724px;}
.ybe{bottom:17.017090px;}
.ye5{bottom:37.157959px;}
.y59{bottom:37.158326px;}
.y27{bottom:37.158418px;}
.y25{bottom:70.444613px;}
.y24{bottom:104.180693px;}
.y109{bottom:115.136723px;}
.y57{bottom:115.702507px;}
.ye4{bottom:122.117433px;}
.y8c{bottom:122.429440px;}
.y23{bottom:125.916863px;}
.y108{bottom:137.473388px;}
.y56{bottom:138.039187px;}
.ye3{bottom:140.014887px;}
.y8b{bottom:143.127682px;}
.ybc{bottom:146.404539px;}
.y22{bottom:159.652958px;}
.y107{bottom:159.810052px;}
.y55{bottom:160.376227px;}
.y8a{bottom:163.825921px;}
.ybb{bottom:167.102782px;}
.y21{bottom:181.389128px;}
.y106{bottom:182.146731px;}
.y54{bottom:182.712892px;}
.y89{bottom:184.524163px;}
.yba{bottom:187.801023px;}
.y105{bottom:204.483394px;}
.y53{bottom:205.049933px;}
.y88{bottom:205.222405px;}
.y20{bottom:206.408197px;}
.yb9{bottom:208.499266px;}
.y87{bottom:225.920647px;}
.y104{bottom:226.820801px;}
.y52{bottom:227.386597px;}
.yb8{bottom:229.197508px;}
.y1f{bottom:240.745058px;}
.y86{bottom:246.618893px;}
.y103{bottom:249.157469px;}
.y51{bottom:249.723443px;}
.yb7{bottom:249.895750px;}
.y85{bottom:267.317137px;}
.yb6{bottom:270.593993px;}
.y102{bottom:271.494142px;}
.y50{bottom:272.060302px;}
.y1e{bottom:275.081813px;}
.y84{bottom:288.015382px;}
.yb5{bottom:291.292231px;}
.y101{bottom:293.831542px;}
.y4f{bottom:294.397162px;}
.y83{bottom:308.713621px;}
.y1d{bottom:309.418762px;}
.yb4{bottom:311.990473px;}
.y100{bottom:316.168211px;}
.y4e{bottom:316.734014px;}
.y82{bottom:329.411863px;}
.yb3{bottom:332.688715px;}
.yff{bottom:338.504879px;}
.y4d{bottom:339.070867px;}
.y1c{bottom:343.755623px;}
.y81{bottom:350.110105px;}
.yb2{bottom:353.386957px;}
.yfe{bottom:360.841552px;}
.y4c{bottom:361.407711px;}
.y80{bottom:370.808347px;}
.yb1{bottom:374.085208px;}
.y1b{bottom:378.092378px;}
.yfd{bottom:383.178226px;}
.y4b{bottom:383.744563px;}
.y7f{bottom:391.506598px;}
.ye2{bottom:394.783448px;}
.yb0{bottom:394.783449px;}
.yfc{bottom:405.515624px;}
.y4a{bottom:406.081417px;}
.y7e{bottom:412.204840px;}
.y1a{bottom:412.429327px;}
.ye1{bottom:415.481693px;}
.yaf{bottom:415.481701px;}
.yfb{bottom:427.852298px;}
.y49{bottom:428.418269px;}
.y7d{bottom:432.903082px;}
.ye0{bottom:436.179933px;}
.yae{bottom:436.179938px;}
.y19{bottom:446.766173px;}
.yfa{bottom:450.188959px;}
.y48{bottom:450.755122px;}
.y7c{bottom:453.601321px;}
.yad{bottom:456.878176px;}
.yf9{bottom:472.526366px;}
.y47{bottom:473.091987px;}
.y7b{bottom:474.299563px;}
.ydf{bottom:477.576418px;}
.yac{bottom:477.576788px;}
.y18{bottom:481.102943px;}
.yf8{bottom:494.863034px;}
.y7a{bottom:494.997805px;}
.y46{bottom:495.428841px;}
.yde{bottom:498.274660px;}
.yab{bottom:498.275018px;}
.y17{bottom:515.439832px;}
.y79{bottom:515.696048px;}
.yf7{bottom:517.199708px;}
.y45{bottom:517.765693px;}
.ydd{bottom:518.972902px;}
.yaa{bottom:518.973262px;}
.y78{bottom:536.394288px;}
.yf6{bottom:539.536369px;}
.ydc{bottom:539.671141px;}
.ya9{bottom:539.671507px;}
.y44{bottom:540.102547px;}
.y16{bottom:549.776738px;}
.y77{bottom:557.092531px;}
.ydb{bottom:560.369383px;}
.ya8{bottom:560.369752px;}
.yf5{bottom:561.873046px;}
.y43{bottom:562.439399px;}
.y76{bottom:577.790773px;}
.yda{bottom:581.067625px;}
.ya7{bottom:581.067993px;}
.y15{bottom:584.113492px;}
.yf4{bottom:584.210444px;}
.y42{bottom:584.776253px;}
.y75{bottom:598.489015px;}
.yd9{bottom:601.765868px;}
.ya6{bottom:601.766236px;}
.yf3{bottom:606.547118px;}
.y41{bottom:607.113102px;}
.y14{bottom:618.450389px;}
.y74{bottom:619.187257px;}
.yd8{bottom:622.464106px;}
.ya5{bottom:622.464478px;}
.yf2{bottom:627.245363px;}
.y40{bottom:629.449956px;}
.y73{bottom:639.885493px;}
.y13{bottom:640.787242px;}
.yd7{bottom:643.162348px;}
.ya4{bottom:643.162720px;}
.yf1{bottom:647.943607px;}
.y3f{bottom:651.786808px;}
.y115{bottom:660.559568px;}
.y72{bottom:660.583735px;}
.y12{bottom:663.124103px;}
.yd6{bottom:663.860590px;}
.ya3{bottom:663.860963px;}
.yf0{bottom:668.641853px;}
.y3e{bottom:674.123662px;}
.y71{bottom:681.281977px;}
.yd5{bottom:684.558833px;}
.ya2{bottom:684.559207px;}
.y11{bottom:685.460954px;}
.yef{bottom:689.340093px;}
.y114{bottom:693.257086px;}
.y3d{bottom:696.460514px;}
.y70{bottom:701.980231px;}
.yd4{bottom:705.257077px;}
.ya1{bottom:705.257448px;}
.y10{bottom:707.797811px;}
.yee{bottom:710.038336px;}
.y113{bottom:713.955328px;}
.y3c{bottom:718.797368px;}
.y6f{bottom:722.678473px;}
.yd3{bottom:725.955322px;}
.ya0{bottom:725.955691px;}
.yf{bottom:730.134665px;}
.yed{bottom:730.736578px;}
.y112{bottom:734.653570px;}
.y3b{bottom:741.134210px;}
.y6e{bottom:743.376715px;}
.yd2{bottom:746.653568px;}
.y9f{bottom:746.653933px;}
.yec{bottom:751.434820px;}
.ye{bottom:752.471517px;}
.y111{bottom:755.351813px;}
.y3a{bottom:763.471062px;}
.y6d{bottom:764.074958px;}
.yd1{bottom:767.351806px;}
.y9e{bottom:767.352175px;}
.yeb{bottom:772.133063px;}
.yd{bottom:774.808371px;}
.y6c{bottom:784.773196px;}
.y39{bottom:785.807916px;}
.yd0{bottom:788.050048px;}
.y110{bottom:788.050049px;}
.y9d{bottom:788.050418px;}
.yea{bottom:792.831292px;}
.yc{bottom:797.145223px;}
.y6b{bottom:805.471438px;}
.y38{bottom:808.144768px;}
.ycf{bottom:808.748290px;}
.y10f{bottom:808.748294px;}
.y9c{bottom:808.748653px;}
.ye9{bottom:812.880618px;}
.yb{bottom:819.482077px;}
.y6a{bottom:826.169680px;}
.y10e{bottom:829.446528px;}
.yce{bottom:829.446532px;}
.y9b{bottom:829.446895px;}
.y37{bottom:830.481622px;}
.ye8{bottom:830.778074px;}
.ya{bottom:841.818929px;}
.y69{bottom:846.867923px;}
.ycd{bottom:850.144768px;}
.y10d{bottom:850.144773px;}
.y9a{bottom:850.145138px;}
.y36{bottom:852.818474px;}
.y9{bottom:864.155782px;}
.y68{bottom:867.566161px;}
.ycc{bottom:870.843010px;}
.y10c{bottom:870.843018px;}
.y99{bottom:870.843378px;}
.y35{bottom:875.155327px;}
.y8{bottom:886.492628px;}
.y67{bottom:888.264403px;}
.ycb{bottom:891.541252px;}
.y10b{bottom:891.541259px;}
.y98{bottom:891.541621px;}
.y34{bottom:897.492188px;}
.y7{bottom:908.829488px;}
.y66{bottom:908.962645px;}
.yca{bottom:912.239502px;}
.y97{bottom:912.239863px;}
.y33{bottom:919.829041px;}
.y65{bottom:929.660887px;}
.y6{bottom:931.166332px;}
.yc9{bottom:932.937745px;}
.y96{bottom:932.938105px;}
.y32{bottom:942.165894px;}
.y64{bottom:950.359132px;}
.yc8{bottom:953.635986px;}
.y95{bottom:953.636348px;}
.y31{bottom:964.502747px;}
.y5{bottom:966.425193px;}
.y63{bottom:971.057373px;}
.yc7{bottom:974.334229px;}
.y94{bottom:974.334594px;}
.y30{bottom:986.839600px;}
.y62{bottom:991.755616px;}
.y4{bottom:992.484879px;}
.yc6{bottom:995.032471px;}
.y93{bottom:995.032837px;}
.y2f{bottom:1009.176453px;}
.y61{bottom:1012.453858px;}
.yc5{bottom:1015.730713px;}
.y92{bottom:1015.731079px;}
.y3{bottom:1018.544540px;}
.y2e{bottom:1031.513305px;}
.y60{bottom:1033.152100px;}
.yc4{bottom:1036.428956px;}
.y91{bottom:1036.429321px;}
.y1{bottom:1038.150009px;}
.y2d{bottom:1053.850159px;}
.y5f{bottom:1053.850342px;}
.yc3{bottom:1057.127196px;}
.y10a{bottom:1057.127197px;}
.y90{bottom:1057.127563px;}
.y5e{bottom:1074.548585px;}
.y2c{bottom:1076.187011px;}
.yc2{bottom:1077.825439px;}
.y8f{bottom:1077.825805px;}
.y5d{bottom:1095.246826px;}
.yc1{bottom:1098.523681px;}
.y2b{bottom:1098.523864px;}
.y8e{bottom:1098.524047px;}
.y5c{bottom:1117.583496px;}
.yc0{bottom:1119.221923px;}
.y2a{bottom:1119.222106px;}
.y8d{bottom:1119.222289px;}
.ye7{bottom:1122.671631px;}
.ybf{bottom:1139.920165px;}
.y29{bottom:1139.920349px;}
.y5b{bottom:1139.920531px;}
.ye6{bottom:1142.720946px;}
.ybd{bottom:1156.724853px;}
.y26{bottom:1156.725036px;}
.y58{bottom:1156.725219px;}
.h2{height:48.694337px;}
.ha{height:53.789061px;}
.h4{height:63.949219px;}
.h5{height:64.546875px;}
.h3{height:74.607419px;}
.hb{height:75.304685px;}
.h8{height:106.274781px;}
.h7{height:106.274964px;}
.h9{height:106.275147px;}
.h6{height:197.405730px;}
.h1{height:224.849991px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x5{left:127.575005px;}
.x3{left:137.095405px;}
.x2{left:149.664159px;}
.x8{left:180.450005px;}
.xd{left:181.575005px;}
.x6{left:234.218417px;}
.x9{left:278.616365px;}
.xb{left:329.254553px;}
.xe{left:381.944975px;}
.x4{left:428.665847px;}
.x7{left:446.456716px;}
.xa{left:567.956716px;}
.xc{left:609.581716px;}
.x1{left:636.019216px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:176.000000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
._e{margin-left:-176.000000pt;}
._12{margin-left:-7.402634pt;}
._2{margin-left:-6.329933pt;}
._f{margin-left:-4.750000pt;}
._1{margin-left:-2.985043pt;}
._9{margin-left:-1.973842pt;}
._0{margin-left:-0.905049pt;}
._4{width:4.000009pt;}
._3{width:8.000000pt;}
._6{width:11.154951pt;}
._5{width:12.422529pt;}
._a{width:20.000002pt;}
._b{width:24.000002pt;}
._c{width:28.000000pt;}
._11{width:32.000002pt;}
._d{width:35.999998pt;}
._8{width:64.000013pt;}
._7{width:68.000002pt;}
._10{width:176.000000pt;}
.fs3{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666664pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.666656pt;}
.y5a{bottom:15.125651pt;}
.y28{bottom:15.125977pt;}
.ybe{bottom:15.126302pt;}
.ye5{bottom:33.029297pt;}
.y59{bottom:33.029623pt;}
.y27{bottom:33.029705pt;}
.y25{bottom:62.617434pt;}
.y24{bottom:92.605060pt;}
.y109{bottom:102.343753pt;}
.y57{bottom:102.846673pt;}
.ye4{bottom:108.548830pt;}
.y8c{bottom:108.826169pt;}
.y23{bottom:111.926101pt;}
.y108{bottom:122.198567pt;}
.y56{bottom:122.701500pt;}
.ye3{bottom:124.457677pt;}
.y8b{bottom:127.224607pt;}
.ybc{bottom:130.137368pt;}
.y22{bottom:141.913741pt;}
.y107{bottom:142.053380pt;}
.y55{bottom:142.556647pt;}
.y8a{bottom:145.623041pt;}
.ybb{bottom:148.535806pt;}
.y21{bottom:161.234780pt;}
.y106{bottom:161.908205pt;}
.y54{bottom:162.411460pt;}
.y89{bottom:164.021478pt;}
.yba{bottom:166.934243pt;}
.y105{bottom:181.763017pt;}
.y53{bottom:182.266607pt;}
.y88{bottom:182.419916pt;}
.y20{bottom:183.473953pt;}
.yb9{bottom:185.332681pt;}
.y87{bottom:200.818353pt;}
.y104{bottom:201.618490pt;}
.y52{bottom:202.121420pt;}
.yb8{bottom:203.731118pt;}
.y1f{bottom:213.995607pt;}
.y86{bottom:219.216793pt;}
.y103{bottom:221.473306pt;}
.y51{bottom:221.976393pt;}
.yb7{bottom:222.129556pt;}
.y85{bottom:237.615233pt;}
.yb6{bottom:240.527993pt;}
.y102{bottom:241.328127pt;}
.y50{bottom:241.831380pt;}
.y1e{bottom:244.517167pt;}
.y84{bottom:256.013673pt;}
.yb5{bottom:258.926427pt;}
.y101{bottom:261.183593pt;}
.y4f{bottom:261.686366pt;}
.y83{bottom:274.412107pt;}
.y1d{bottom:275.038900pt;}
.yb4{bottom:277.324864pt;}
.y100{bottom:281.038410pt;}
.y4e{bottom:281.541346pt;}
.y82{bottom:292.810544pt;}
.yb3{bottom:295.723302pt;}
.yff{bottom:300.893226pt;}
.y4d{bottom:301.396327pt;}
.y1c{bottom:305.560553pt;}
.y81{bottom:311.208982pt;}
.yb2{bottom:314.121740pt;}
.yfe{bottom:320.748047pt;}
.y4c{bottom:321.251298pt;}
.y80{bottom:329.607420pt;}
.yb1{bottom:332.520185pt;}
.y1b{bottom:336.082113pt;}
.yfd{bottom:340.602868pt;}
.y4b{bottom:341.106278pt;}
.y7f{bottom:348.005864pt;}
.ye2{bottom:350.918620pt;}
.yb0{bottom:350.918622pt;}
.yfc{bottom:360.458333pt;}
.y4a{bottom:360.961259pt;}
.y7e{bottom:366.404302pt;}
.y1a{bottom:366.603847pt;}
.ye1{bottom:369.317060pt;}
.yaf{bottom:369.317068pt;}
.yfb{bottom:380.313153pt;}
.y49{bottom:380.816239pt;}
.y7d{bottom:384.802740pt;}
.ye0{bottom:387.715496pt;}
.yae{bottom:387.715501pt;}
.y19{bottom:397.125487pt;}
.yfa{bottom:400.167964pt;}
.y48{bottom:400.671220pt;}
.y7c{bottom:403.201174pt;}
.yad{bottom:406.113935pt;}
.yf9{bottom:420.023437pt;}
.y47{bottom:420.526211pt;}
.y7b{bottom:421.599611pt;}
.ydf{bottom:424.512371pt;}
.yac{bottom:424.512700pt;}
.y18{bottom:427.647060pt;}
.yf8{bottom:439.878253pt;}
.y7a{bottom:439.998049pt;}
.y46{bottom:440.381192pt;}
.yde{bottom:442.910809pt;}
.yab{bottom:442.911127pt;}
.y17{bottom:458.168740pt;}
.y79{bottom:458.396487pt;}
.yf7{bottom:459.733073pt;}
.y45{bottom:460.236172pt;}
.ydd{bottom:461.309247pt;}
.yaa{bottom:461.309567pt;}
.y78{bottom:476.794923pt;}
.yf6{bottom:479.587884pt;}
.ydc{bottom:479.707681pt;}
.ya9{bottom:479.708007pt;}
.y44{bottom:480.091153pt;}
.y16{bottom:488.690433pt;}
.y77{bottom:495.193361pt;}
.ydb{bottom:498.106118pt;}
.ya8{bottom:498.106446pt;}
.yf5{bottom:499.442708pt;}
.y43{bottom:499.946133pt;}
.y76{bottom:513.591798pt;}
.yda{bottom:516.504556pt;}
.ya7{bottom:516.504883pt;}
.y15{bottom:519.211993pt;}
.yf4{bottom:519.298173pt;}
.y42{bottom:519.801113pt;}
.y75{bottom:531.990236pt;}
.yd9{bottom:534.902993pt;}
.ya6{bottom:534.903321pt;}
.yf3{bottom:539.152993pt;}
.y41{bottom:539.656091pt;}
.y14{bottom:549.733679pt;}
.y74{bottom:550.388673pt;}
.yd8{bottom:553.301428pt;}
.ya5{bottom:553.301758pt;}
.yf2{bottom:557.551433pt;}
.y40{bottom:559.511072pt;}
.y73{bottom:568.787104pt;}
.y13{bottom:569.588660pt;}
.yd7{bottom:571.699865pt;}
.ya4{bottom:571.700196pt;}
.yf1{bottom:575.949873pt;}
.y3f{bottom:579.366052pt;}
.y115{bottom:587.164060pt;}
.y72{bottom:587.185542pt;}
.y12{bottom:589.443647pt;}
.yd6{bottom:590.098303pt;}
.ya3{bottom:590.098633pt;}
.yf0{bottom:594.348313pt;}
.y3e{bottom:599.221033pt;}
.y71{bottom:605.583980pt;}
.yd5{bottom:608.496740pt;}
.ya2{bottom:608.497073pt;}
.y11{bottom:609.298626pt;}
.yef{bottom:612.746749pt;}
.y114{bottom:616.228521pt;}
.y3d{bottom:619.076013pt;}
.y70{bottom:623.982428pt;}
.yd4{bottom:626.895180pt;}
.ya1{bottom:626.895510pt;}
.y10{bottom:629.153610pt;}
.yee{bottom:631.145188pt;}
.y113{bottom:634.626958pt;}
.y3c{bottom:638.930993pt;}
.y6f{bottom:642.380865pt;}
.yd3{bottom:645.293620pt;}
.ya0{bottom:645.293948pt;}
.yf{bottom:649.008591pt;}
.yed{bottom:649.543625pt;}
.y112{bottom:653.025396pt;}
.y3b{bottom:658.785964pt;}
.y6e{bottom:660.779303pt;}
.yd2{bottom:663.692060pt;}
.y9f{bottom:663.692385pt;}
.yec{bottom:667.942063pt;}
.ye{bottom:668.863571pt;}
.y111{bottom:671.423833pt;}
.y3a{bottom:678.640944pt;}
.y6d{bottom:679.177740pt;}
.yd1{bottom:682.090494pt;}
.y9e{bottom:682.090823pt;}
.yeb{bottom:686.340500pt;}
.yd{bottom:688.718552pt;}
.y6c{bottom:697.576174pt;}
.y39{bottom:698.495925pt;}
.yd0{bottom:700.488931pt;}
.y110{bottom:700.488932pt;}
.y9d{bottom:700.489260pt;}
.yea{bottom:704.738927pt;}
.yc{bottom:708.573532pt;}
.y6b{bottom:715.974611pt;}
.y38{bottom:718.350905pt;}
.ycf{bottom:718.887369pt;}
.y10f{bottom:718.887372pt;}
.y9c{bottom:718.887691pt;}
.ye9{bottom:722.560550pt;}
.yb{bottom:728.428513pt;}
.y6a{bottom:734.373049pt;}
.y10e{bottom:737.285802pt;}
.yce{bottom:737.285807pt;}
.y9b{bottom:737.286129pt;}
.y37{bottom:738.205886pt;}
.ye8{bottom:738.469399pt;}
.ya{bottom:748.283493pt;}
.y69{bottom:752.771487pt;}
.ycd{bottom:755.684238pt;}
.y10d{bottom:755.684242pt;}
.y9a{bottom:755.684567pt;}
.y36{bottom:758.060866pt;}
.y9{bottom:768.138473pt;}
.y68{bottom:771.169921pt;}
.ycc{bottom:774.082676pt;}
.y10c{bottom:774.082682pt;}
.y99{bottom:774.083003pt;}
.y35{bottom:777.915847pt;}
.y8{bottom:787.993447pt;}
.y67{bottom:789.568358pt;}
.ycb{bottom:792.481113pt;}
.y10b{bottom:792.481119pt;}
.y98{bottom:792.481441pt;}
.y34{bottom:797.770833pt;}
.y7{bottom:807.848433pt;}
.y66{bottom:807.966796pt;}
.yca{bottom:810.879557pt;}
.y97{bottom:810.879878pt;}
.y33{bottom:817.625815pt;}
.y65{bottom:826.365233pt;}
.y6{bottom:827.703407pt;}
.yc9{bottom:829.277995pt;}
.y96{bottom:829.278316pt;}
.y32{bottom:837.480795pt;}
.y64{bottom:844.763672pt;}
.yc8{bottom:847.676432pt;}
.y95{bottom:847.676753pt;}
.y31{bottom:857.335775pt;}
.y5{bottom:859.044616pt;}
.y63{bottom:863.162109pt;}
.yc7{bottom:866.074870pt;}
.y94{bottom:866.075195pt;}
.y30{bottom:877.190755pt;}
.y62{bottom:881.560547pt;}
.y4{bottom:882.208781pt;}
.yc6{bottom:884.473307pt;}
.y93{bottom:884.473633pt;}
.y2f{bottom:897.045736pt;}
.y61{bottom:899.958984pt;}
.yc5{bottom:902.871745pt;}
.y92{bottom:902.872070pt;}
.y3{bottom:905.372924pt;}
.y2e{bottom:916.900716pt;}
.y60{bottom:918.357422pt;}
.yc4{bottom:921.270183pt;}
.y91{bottom:921.270508pt;}
.y1{bottom:922.800008pt;}
.y2d{bottom:936.755697pt;}
.y5f{bottom:936.755860pt;}
.yc3{bottom:939.668619pt;}
.y10a{bottom:939.668620pt;}
.y90{bottom:939.668945pt;}
.y5e{bottom:955.154297pt;}
.y2c{bottom:956.610677pt;}
.yc2{bottom:958.067057pt;}
.y8f{bottom:958.067382pt;}
.y5d{bottom:973.552735pt;}
.yc1{bottom:976.465494pt;}
.y2b{bottom:976.465657pt;}
.y8e{bottom:976.465819pt;}
.y5c{bottom:993.407552pt;}
.yc0{bottom:994.863932pt;}
.y2a{bottom:994.864095pt;}
.y8d{bottom:994.864257pt;}
.ye7{bottom:997.930339pt;}
.ybf{bottom:1013.262369pt;}
.y29{bottom:1013.262532pt;}
.y5b{bottom:1013.262695pt;}
.ye6{bottom:1015.751952pt;}
.ybd{bottom:1028.199869pt;}
.y26{bottom:1028.200032pt;}
.y58{bottom:1028.200195pt;}
.h2{height:43.283855pt;}
.ha{height:47.812499pt;}
.h4{height:56.843750pt;}
.h5{height:57.375000pt;}
.h3{height:66.317706pt;}
.hb{height:66.937498pt;}
.h8{height:94.466472pt;}
.h7{height:94.466635pt;}
.h9{height:94.466797pt;}
.h6{height:175.471760pt;}
.h1{height:199.866659pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x5{left:113.400004pt;}
.x3{left:121.862582pt;}
.x2{left:133.034808pt;}
.x8{left:160.400004pt;}
.xd{left:161.400004pt;}
.x6{left:208.194148pt;}
.x9{left:247.658991pt;}
.xb{left:292.670714pt;}
.xe{left:339.506644pt;}
.x4{left:381.036308pt;}
.x7{left:396.850414pt;}
.xa{left:504.850414pt;}
.xc{left:541.850414pt;}
.x1{left:565.350414pt;}
}




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