
    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_5472786098e65643c9b8ca54.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_80cd37b75d80ecc0bbd1e8a7.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_315cf2f642e3e77f93d8987e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.873535;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_7b83cc374e1b10d1285704ce.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_62591779b7cbd14de32aadb8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.917480;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_ba6ddd1c7036c2ba6c3a7f22.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_81713e27f8e7610d83e1d35f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.689453;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_84422c93380553f3f0b57f53.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.895996;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;}
.m2{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,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;}
.ls3{letter-spacing:33.328125px;}
.ls5{letter-spacing:33.855469px;}
.ls2{letter-spacing:66.404981px;}
.ls4{letter-spacing:70.347656px;}
.ls1{letter-spacing:89.825342px;}
.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;}
}
.ws1{word-spacing:-27.128906px;}
.ws3{word-spacing:-21.703126px;}
.ws2{word-spacing:-20.003906px;}
.ws4{word-spacing:-16.277344px;}
.ws5{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
._11{margin-left:-8.085723px;}
._b{margin-left:-6.855313px;}
._3{margin-left:-5.630446px;}
._2{margin-left:-3.716519px;}
._0{margin-left:-2.636691px;}
._1{margin-left:-1.582094px;}
._10{width:1.195257px;}
._6{width:2.555997px;}
._8{width:3.856778px;}
._f{width:5.409763px;}
._7{width:7.442651px;}
._a{width:9.471756px;}
._9{width:11.520867px;}
._e{width:12.601582px;}
._5{width:13.630269px;}
._4{width:14.755279px;}
._d{width:17.918606px;}
._c{width:44.507812px;}
.fc2{color:rgb(68,68,153);}
.fc3{color:rgb(17,85,204);}
.fc1{color:rgb(128,81,154);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:74.215901px;}
.fs2{font-size:78.000003px;}
.fs3{font-size:96.000003px;}
.fs6{font-size:119.999997px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:4.124824px;}
.y2d{bottom:4.124827px;}
.y40{bottom:4.124998px;}
.y1c{bottom:4.125000px;}
.y1a{bottom:4.125091px;}
.y44{bottom:4.125172px;}
.y1f{bottom:4.125183px;}
.y24{bottom:4.125187px;}
.y8e{bottom:16.145508px;}
.y6c{bottom:16.145876px;}
.y57{bottom:16.146242px;}
.y3{bottom:16.146258px;}
.y17{bottom:16.146333px;}
.y4a{bottom:16.146424px;}
.y26{bottom:24.266419px;}
.y23{bottom:24.266602px;}
.y3f{bottom:24.266788px;}
.y3b{bottom:24.266789px;}
.y3e{bottom:44.408203px;}
.y3a{bottom:44.408204px;}
.y2{bottom:57.309093px;}
.y6b{bottom:64.445805px;}
.y49{bottom:64.446165px;}
.y15{bottom:64.446255px;}
.yc3{bottom:64.446540px;}
.ye8{bottom:64.447260px;}
.y39{bottom:64.549814px;}
.y38{bottom:84.691589px;}
.y37{bottom:104.833019px;}
.y36{bottom:124.974614px;}
.y48{bottom:127.842414px;}
.y8d{bottom:127.842774px;}
.y35{bottom:145.116404px;}
.y34{bottom:165.257819px;}
.y8c{bottom:178.984126px;}
.yc2{bottom:180.024899px;}
.y33{bottom:185.399414px;}
.yaf{bottom:193.135254px;}
.y126{bottom:201.041014px;}
.y8b{bottom:203.013429px;}
.y113{bottom:204.503899px;}
.yc1{bottom:205.293454px;}
.ye7{bottom:211.117675px;}
.yae{bottom:218.403808px;}
.y8a{bottom:226.307011px;}
.y125{bottom:226.309564px;}
.ye6{bottom:236.386230px;}
.yad{bottom:243.672364px;}
.yc0{bottom:247.262697px;}
.y112{bottom:247.772458px;}
.y89{bottom:250.336677px;}
.y47{bottom:252.758599px;}
.ye5{bottom:261.654784px;}
.y124{bottom:269.578129px;}
.y111{bottom:273.041016px;}
.y88{bottom:273.629521px;}
.ye4{bottom:286.923339px;}
.yac{bottom:286.940919px;}
.ybf{bottom:287.619135px;}
.y123{bottom:294.846674px;}
.y46{bottom:296.027164px;}
.y110{bottom:298.309570px;}
.ye3{bottom:312.191894px;}
.yab{bottom:312.209474px;}
.y87{bottom:316.309204px;}
.y14{bottom:319.362124px;}
.y122{bottom:320.115229px;}
.y10f{bottom:323.578125px;}
.ye2{bottom:337.460449px;}
.yaa{bottom:337.478029px;}
.y86{bottom:341.577756px;}
.y45{bottom:348.483218px;}
.y10e{bottom:348.846679px;}
.y13{bottom:362.630674px;}
.y121{bottom:363.383794px;}
.y85{bottom:366.846310px;}
.y43{bottom:369.749822px;}
.y10d{bottom:374.115234px;}
.ye1{bottom:380.729001px;}
.ya9{bottom:380.746581px;}
.y120{bottom:388.652338px;}
.y42{bottom:389.891423px;}
.y84{bottom:392.114865px;}
.y10c{bottom:399.383788px;}
.y12{bottom:404.600012px;}
.ye0{bottom:405.997555px;}
.ya8{bottom:406.015135px;}
.y11f{bottom:413.920894px;}
.y83{bottom:417.383419px;}
.y10b{bottom:424.652344px;}
.y11{bottom:425.657043px;}
.ydf{bottom:431.266110px;}
.ya7{bottom:431.283690px;}
.y41{bottom:432.641423px;}
.y82{bottom:442.651974px;}
.y10{bottom:446.714170px;}
.y3d{bottom:453.908021px;}
.yde{bottom:456.534664px;}
.ya6{bottom:456.552244px;}
.y11e{bottom:457.189459px;}
.yf{bottom:467.771390px;}
.y81{bottom:467.920528px;}
.y10a{bottom:467.920896px;}
.ydd{bottom:481.803219px;}
.ya5{bottom:481.820799px;}
.y11d{bottom:482.458009px;}
.ye{bottom:488.828430px;}
.y80{bottom:493.189084px;}
.y109{bottom:493.189450px;}
.y3c{bottom:494.191223px;}
.ydc{bottom:507.071774px;}
.ya4{bottom:507.089353px;}
.yd{bottom:509.885604px;}
.y32{bottom:515.457819px;}
.y108{bottom:518.458005px;}
.y11c{bottom:525.726559px;}
.yd5{bottom:526.880860px;}
.yc{bottom:530.942780px;}
.ydb{bottom:532.340329px;}
.ya3{bottom:532.357909px;}
.yf8{bottom:534.149419px;}
.y7f{bottom:536.457645px;}
.y107{bottom:543.726559px;}
.y11b{bottom:550.995124px;}
.yb{bottom:551.999817px;}
.yd4{bottom:552.149415px;}
.y7e{bottom:561.726199px;}
.y6a{bottom:561.726559px;}
.y106{bottom:568.995114px;}
.yda{bottom:575.608884px;}
.ya2{bottom:575.626474px;}
.yf7{bottom:577.417965px;}
.yd3{bottom:577.417969px;}
.y7d{bottom:586.994754px;}
.ya{bottom:592.356259px;}
.y105{bottom:594.263668px;}
.y11a{bottom:594.263674px;}
.yd9{bottom:600.877439px;}
.ya1{bottom:600.895026px;}
.yf6{bottom:602.686519px;}
.yd2{bottom:602.686524px;}
.y69{bottom:604.995115px;}
.y7c{bottom:612.263308px;}
.y104{bottom:619.532224px;}
.yd8{bottom:626.145994px;}
.ya0{bottom:626.163580px;}
.yf5{bottom:627.955074px;}
.yd1{bottom:627.955078px;}
.y68{bottom:630.263670px;}
.y9{bottom:635.624824px;}
.y7b{bottom:637.531864px;}
.y119{bottom:644.800779px;}
.y9f{bottom:651.432135px;}
.yf4{bottom:653.223628px;}
.yd0{bottom:653.223634px;}
.y67{bottom:655.532224px;}
.y103{bottom:662.800774px;}
.yd7{bottom:669.178004px;}
.y118{bottom:670.069334px;}
.y9e{bottom:676.700689px;}
.yf3{bottom:678.492184px;}
.y7a{bottom:680.800420px;}
.y66{bottom:680.800779px;}
.y8{bottom:681.492051px;}
.y102{bottom:688.069329px;}
.y117{bottom:695.337889px;}
.y31{bottom:696.732233px;}
.ycf{bottom:699.090824px;}
.y9d{bottom:701.969244px;}
.ybe{bottom:704.915044px;}
.y79{bottom:706.068975px;}
.y65{bottom:706.069334px;}
.yd6{bottom:712.253905px;}
.y101{bottom:713.337884px;}
.y7{bottom:715.183454px;}
.y2f{bottom:717.998836px;}
.yf2{bottom:721.760741px;}
.y55{bottom:724.473634px;}
.y9c{bottom:727.237798px;}
.ybd{bottom:730.183596px;}
.y78{bottom:731.337529px;}
.y64{bottom:731.337889px;}
.y30{bottom:738.140438px;}
.y100{bottom:738.606439px;}
.yf1{bottom:747.029299px;}
.yce{bottom:748.183594px;}
.y9b{bottom:752.506354px;}
.ybc{bottom:755.452150px;}
.y77{bottom:756.606084px;}
.y2c{bottom:759.407221px;}
.y116{bottom:763.874994px;}
.y6{bottom:764.925838px;}
.y54{bottom:767.742184px;}
.yf0{bottom:772.297851px;}
.y63{bottom:774.606440px;}
.y2e{bottom:779.548640px;}
.ybb{bottom:780.720705px;}
.y76{bottom:781.874639px;}
.yff{bottom:781.875006px;}
.y12b{bottom:787.989259px;}
.y115{bottom:789.143548px;}
.ycd{bottom:791.452146px;}
.y9a{bottom:795.774902px;}
.yef{bottom:797.566405px;}
.y62{bottom:799.874998px;}
.y2b{bottom:800.815253px;}
.yba{bottom:805.989259px;}
.y75{bottom:807.143194px;}
.yfe{bottom:807.143560px;}
.y53{bottom:811.010749px;}
.y114{bottom:814.412104px;}
.ycc{bottom:816.720700px;}
.y99{bottom:821.043460px;}
.y2a{bottom:822.081848px;}
.yee{bottom:822.834960px;}
.y61{bottom:825.143555px;}
.y5{bottom:825.242252px;}
.y12a{bottom:831.257809px;}
.yb9{bottom:831.257814px;}
.yfd{bottom:832.412115px;}
.ycb{bottom:841.989255px;}
.y29{bottom:843.348455px;}
.y98{bottom:846.312012px;}
.yed{bottom:848.103514px;}
.y74{bottom:850.411745px;}
.y60{bottom:850.412113px;}
.y52{bottom:850.983394px;}
.yb8{bottom:856.526368px;}
.yfc{bottom:857.680669px;}
.y25{bottom:864.615230px;}
.yca{bottom:867.257809px;}
.y97{bottom:871.580566px;}
.yec{bottom:873.372069px;}
.y129{bottom:874.526374px;}
.y73{bottom:875.680297px;}
.y5f{bottom:875.680665px;}
.y51{bottom:877.456054px;}
.yb7{bottom:881.794924px;}
.yfb{bottom:882.949224px;}
.y28{bottom:884.756648px;}
.yc9{bottom:892.526364px;}
.y96{bottom:896.849121px;}
.yeb{bottom:898.640623px;}
.y128{bottom:899.794918px;}
.y72{bottom:900.948851px;}
.y5e{bottom:900.949219px;}
.y4{bottom:901.047941px;}
.y50{bottom:903.928714px;}
.y22{bottom:906.023252px;}
.yfa{bottom:908.217778px;}
.yc8{bottom:917.794918px;}
.y95{bottom:922.117675px;}
.yea{bottom:923.909179px;}
.yb5{bottom:925.063474px;}
.y21{bottom:926.164853px;}
.y71{bottom:926.217406px;}
.y5d{bottom:926.217774px;}
.yb6{bottom:927.662114px;}
.y4f{bottom:930.401374px;}
.yf9{bottom:933.486334px;}
.yc7{bottom:943.063474px;}
.y94{bottom:947.386230px;}
.y20{bottom:947.431463px;}
.y70{bottom:951.485961px;}
.y5c{bottom:951.486328px;}
.y4e{bottom:956.874019px;}
.y127{bottom:968.332024px;}
.yb4{bottom:968.332031px;}
.y1e{bottom:968.698055px;}
.ye9{bottom:969.776369px;}
.y1{bottom:971.465910px;}
.y93{bottom:972.654785px;}
.y6f{bottom:976.754516px;}
.y5b{bottom:976.754883px;}
.y4d{bottom:983.346679px;}
.yc6{bottom:986.332030px;}
.y1d{bottom:989.964653px;}
.yb3{bottom:993.600585px;}
.y92{bottom:997.923340px;}
.y6e{bottom:1002.023070px;}
.y5a{bottom:1002.023438px;}
.y4c{bottom:1009.819336px;}
.y1b{bottom:1011.231262px;}
.yc5{bottom:1011.600585px;}
.yb2{bottom:1018.869140px;}
.y6d{bottom:1027.291625px;}
.y59{bottom:1027.291993px;}
.y19{bottom:1032.497864px;}
.y4b{bottom:1036.291993px;}
.yc4{bottom:1036.869140px;}
.y91{bottom:1040.542233px;}
.yb1{bottom:1062.137694px;}
.y90{bottom:1063.834717px;}
.y18{bottom:1075.757630px;}
.y58{bottom:1075.757812px;}
.yb0{bottom:1087.406249px;}
.y8f{bottom:1087.995116px;}
.y16{bottom:1104.878723px;}
.y56{bottom:1104.878905px;}
.hd{height:20.141602px;}
.hb{height:20.141693px;}
.he{height:20.141785px;}
.h10{height:40.283021px;}
.hf{height:40.283204px;}
.h19{height:41.015624px;}
.h7{height:43.066405px;}
.hc{height:45.890626px;}
.h2{height:47.373048px;}
.h14{height:50.062500px;}
.h6{height:51.679688px;}
.h16{height:51.750000px;}
.h1a{height:53.342679px;}
.h4{height:54.234377px;}
.h12{height:60.424804px;}
.h18{height:65.625002px;}
.h5{height:66.750002px;}
.h8{height:82.031248px;}
.h9{height:120.696255px;}
.h3{height:147.656250px;}
.h15{height:158.121095px;}
.ha{height:158.121277px;}
.h13{height:161.859015px;}
.h17{height:161.859375px;}
.h11{height:201.416016px;}
.h1{height:291.534090px;}
.h0{height:1263.000000px;}
.w6{width:113.625000px;}
.w7{width:127.125000px;}
.w2{width:147.375000px;}
.w8{width:430.875000px;}
.w3{width:533.250000px;}
.w5{width:673.875000px;}
.w4{width:681.750000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.xc{left:6.750000px;}
.x11{left:16.925048px;}
.x15{left:23.204310px;}
.xf{left:25.692798px;}
.x12{left:45.542176px;}
.x2{left:108.000000px;}
.xb{left:109.125000px;}
.x4{left:111.118802px;}
.x6{left:115.090386px;}
.x18{left:135.000000px;}
.x3{left:136.800442px;}
.x1d{left:150.750000px;}
.x16{left:152.303604px;}
.x1b{left:157.038488px;}
.x19{left:162.000000px;}
.x14{left:185.609912px;}
.x10{left:223.875000px;}
.xd{left:257.625000px;}
.xa{left:263.250000px;}
.xe{left:275.824373px;}
.x8{left:282.375000px;}
.x9{left:285.750000px;}
.x7{left:294.771044px;}
.x13{left:352.125000px;}
.x5{left:446.456700px;}
.x1{left:673.706700px;}
.x1c{left:768.199703px;}
.x17{left:776.556518px;}
.x1a{left:789.750000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:29.625000pt;}
.ls5{letter-spacing:30.093750pt;}
.ls2{letter-spacing:59.026650pt;}
.ls4{letter-spacing:62.531250pt;}
.ls1{letter-spacing:79.844748pt;}
.ws1{word-spacing:-24.114583pt;}
.ws3{word-spacing:-19.291667pt;}
.ws2{word-spacing:-17.781250pt;}
.ws4{word-spacing:-14.468750pt;}
.ws5{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
._11{margin-left:-7.187310pt;}
._b{margin-left:-6.093612pt;}
._3{margin-left:-5.004841pt;}
._2{margin-left:-3.303573pt;}
._0{margin-left:-2.343726pt;}
._1{margin-left:-1.406306pt;}
._10{width:1.062450pt;}
._6{width:2.271997pt;}
._8{width:3.428247pt;}
._f{width:4.808678pt;}
._7{width:6.615690pt;}
._a{width:8.419339pt;}
._9{width:10.240771pt;}
._e{width:11.201406pt;}
._5{width:12.115795pt;}
._4{width:13.115804pt;}
._d{width:15.927650pt;}
._c{width:39.562500pt;}
.fs5{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:65.969690pt;}
.fs2{font-size:69.333336pt;}
.fs3{font-size:85.333336pt;}
.fs6{font-size:106.666664pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:3.666510pt;}
.y2d{bottom:3.666512pt;}
.y40{bottom:3.666665pt;}
.y1c{bottom:3.666666pt;}
.y1a{bottom:3.666748pt;}
.y44{bottom:3.666819pt;}
.y1f{bottom:3.666829pt;}
.y24{bottom:3.666832pt;}
.y8e{bottom:14.351563pt;}
.y6c{bottom:14.351889pt;}
.y57{bottom:14.352215pt;}
.y3{bottom:14.352230pt;}
.y17{bottom:14.352296pt;}
.y4a{bottom:14.352377pt;}
.y26{bottom:21.570150pt;}
.y23{bottom:21.570312pt;}
.y3f{bottom:21.570478pt;}
.y3b{bottom:21.570479pt;}
.y3e{bottom:39.473958pt;}
.y3a{bottom:39.473959pt;}
.y2{bottom:50.941416pt;}
.y6b{bottom:57.285160pt;}
.y49{bottom:57.285480pt;}
.y15{bottom:57.285560pt;}
.yc3{bottom:57.285813pt;}
.ye8{bottom:57.286453pt;}
.y39{bottom:57.377612pt;}
.y38{bottom:75.281412pt;}
.y37{bottom:93.184906pt;}
.y36{bottom:111.088546pt;}
.y48{bottom:113.637701pt;}
.y8d{bottom:113.638021pt;}
.y35{bottom:128.992359pt;}
.y34{bottom:146.895839pt;}
.y8c{bottom:159.097001pt;}
.yc2{bottom:160.022132pt;}
.y33{bottom:164.799479pt;}
.yaf{bottom:171.675782pt;}
.y126{bottom:178.703123pt;}
.y8b{bottom:180.456382pt;}
.y113{bottom:181.781243pt;}
.yc1{bottom:182.483070pt;}
.ye7{bottom:187.660155pt;}
.yae{bottom:194.136719pt;}
.y8a{bottom:201.161788pt;}
.y125{bottom:201.164057pt;}
.ye6{bottom:210.121093pt;}
.yad{bottom:216.597657pt;}
.yc0{bottom:219.789064pt;}
.y112{bottom:220.242185pt;}
.y89{bottom:222.521491pt;}
.y47{bottom:224.674310pt;}
.ye5{bottom:232.582030pt;}
.y124{bottom:239.625003pt;}
.y111{bottom:242.703125pt;}
.y88{bottom:243.226241pt;}
.ye4{bottom:255.042968pt;}
.yac{bottom:255.058595pt;}
.ybf{bottom:255.661453pt;}
.y123{bottom:262.085932pt;}
.y46{bottom:263.135257pt;}
.y110{bottom:265.164062pt;}
.ye3{bottom:277.503905pt;}
.yab{bottom:277.519532pt;}
.y87{bottom:281.163737pt;}
.y14{bottom:283.877443pt;}
.y122{bottom:284.546870pt;}
.y10f{bottom:287.625000pt;}
.ye2{bottom:299.964843pt;}
.yaa{bottom:299.980470pt;}
.y86{bottom:303.624672pt;}
.y45{bottom:309.762861pt;}
.y10e{bottom:310.085937pt;}
.y13{bottom:322.338377pt;}
.y121{bottom:323.007817pt;}
.y85{bottom:326.085609pt;}
.y43{bottom:328.666508pt;}
.y10d{bottom:332.546875pt;}
.ye1{bottom:338.425778pt;}
.ya9{bottom:338.441405pt;}
.y120{bottom:345.468745pt;}
.y42{bottom:346.570154pt;}
.y84{bottom:348.546547pt;}
.y10c{bottom:355.007812pt;}
.y12{bottom:359.644455pt;}
.ye0{bottom:360.886715pt;}
.ya8{bottom:360.902342pt;}
.y11f{bottom:367.929683pt;}
.y83{bottom:371.007484pt;}
.y10b{bottom:377.468750pt;}
.y11{bottom:378.361816pt;}
.ydf{bottom:383.347653pt;}
.ya7{bottom:383.363280pt;}
.y41{bottom:384.570154pt;}
.y82{bottom:393.468422pt;}
.y10{bottom:397.079262pt;}
.y3d{bottom:403.473796pt;}
.yde{bottom:405.808590pt;}
.ya6{bottom:405.824217pt;}
.y11e{bottom:406.390630pt;}
.yf{bottom:415.796791pt;}
.y81{bottom:415.929359pt;}
.y10a{bottom:415.929685pt;}
.ydd{bottom:428.269528pt;}
.ya5{bottom:428.285155pt;}
.y11d{bottom:428.851563pt;}
.ye{bottom:434.514160pt;}
.y80{bottom:438.390297pt;}
.y109{bottom:438.390622pt;}
.y3c{bottom:439.281087pt;}
.ydc{bottom:450.730465pt;}
.ya4{bottom:450.746092pt;}
.yd{bottom:453.231648pt;}
.y32{bottom:458.184728pt;}
.y108{bottom:460.851560pt;}
.y11c{bottom:467.312497pt;}
.yd5{bottom:468.338542pt;}
.yc{bottom:471.949137pt;}
.ydb{bottom:473.191403pt;}
.ya3{bottom:473.207030pt;}
.yf8{bottom:474.799483pt;}
.y7f{bottom:476.851240pt;}
.y107{bottom:483.312497pt;}
.y11b{bottom:489.773443pt;}
.yb{bottom:490.666504pt;}
.yd4{bottom:490.799480pt;}
.y7e{bottom:499.312177pt;}
.y6a{bottom:499.312497pt;}
.y106{bottom:505.773435pt;}
.yda{bottom:511.652342pt;}
.ya2{bottom:511.667977pt;}
.yf7{bottom:513.260413pt;}
.yd3{bottom:513.260417pt;}
.y7d{bottom:521.773115pt;}
.ya{bottom:526.538897pt;}
.y105{bottom:528.234372pt;}
.y11a{bottom:528.234377pt;}
.yd9{bottom:534.113279pt;}
.ya1{bottom:534.128912pt;}
.yf6{bottom:535.721350pt;}
.yd2{bottom:535.721355pt;}
.y69{bottom:537.773435pt;}
.y7c{bottom:544.234052pt;}
.y104{bottom:550.695310pt;}
.yd8{bottom:556.574217pt;}
.ya0{bottom:556.589849pt;}
.yf5{bottom:558.182288pt;}
.yd1{bottom:558.182292pt;}
.y68{bottom:560.234373pt;}
.y9{bottom:564.999843pt;}
.y7b{bottom:566.694990pt;}
.y119{bottom:573.156248pt;}
.y9f{bottom:579.050787pt;}
.yf4{bottom:580.643225pt;}
.yd0{bottom:580.643230pt;}
.y67{bottom:582.695310pt;}
.y103{bottom:589.156244pt;}
.yd7{bottom:594.824893pt;}
.y118{bottom:595.617185pt;}
.y9e{bottom:601.511724pt;}
.yf3{bottom:603.104163pt;}
.y7a{bottom:605.155929pt;}
.y66{bottom:605.156248pt;}
.y8{bottom:605.770712pt;}
.y102{bottom:611.617182pt;}
.y117{bottom:618.078123pt;}
.y31{bottom:619.317541pt;}
.ycf{bottom:621.414066pt;}
.y9d{bottom:623.972662pt;}
.ybe{bottom:626.591150pt;}
.y79{bottom:627.616867pt;}
.y65{bottom:627.617185pt;}
.yd6{bottom:633.114583pt;}
.y101{bottom:634.078119pt;}
.y7{bottom:635.718626pt;}
.y2f{bottom:638.221188pt;}
.yf2{bottom:641.565103pt;}
.y55{bottom:643.976563pt;}
.y9c{bottom:646.433599pt;}
.ybd{bottom:649.052085pt;}
.y78{bottom:650.077804pt;}
.y64{bottom:650.078123pt;}
.y30{bottom:656.124834pt;}
.y100{bottom:656.539057pt;}
.yf1{bottom:664.026043pt;}
.yce{bottom:665.052083pt;}
.y9b{bottom:668.894537pt;}
.ybc{bottom:671.513022pt;}
.y77{bottom:672.538742pt;}
.y2c{bottom:675.028641pt;}
.y116{bottom:678.999995pt;}
.y6{bottom:679.934079pt;}
.y54{bottom:682.437497pt;}
.yf0{bottom:686.486978pt;}
.y63{bottom:688.539058pt;}
.y2e{bottom:692.932125pt;}
.ybb{bottom:693.973960pt;}
.y76{bottom:694.999679pt;}
.yff{bottom:695.000005pt;}
.y12b{bottom:700.434897pt;}
.y115{bottom:701.460932pt;}
.ycd{bottom:703.513018pt;}
.y9a{bottom:707.355469pt;}
.yef{bottom:708.947915pt;}
.y62{bottom:710.999998pt;}
.y2b{bottom:711.835781pt;}
.yba{bottom:716.434897pt;}
.y75{bottom:717.460617pt;}
.yfe{bottom:717.460942pt;}
.y53{bottom:720.898443pt;}
.y114{bottom:723.921870pt;}
.ycc{bottom:725.973955pt;}
.y99{bottom:729.816409pt;}
.y2a{bottom:730.739421pt;}
.yee{bottom:731.408853pt;}
.y61{bottom:733.460938pt;}
.y5{bottom:733.548668pt;}
.y12a{bottom:738.895830pt;}
.yb9{bottom:738.895835pt;}
.yfd{bottom:739.921880pt;}
.ycb{bottom:748.434893pt;}
.y29{bottom:749.643071pt;}
.y98{bottom:752.277344pt;}
.yed{bottom:753.869790pt;}
.y74{bottom:755.921551pt;}
.y60{bottom:755.921878pt;}
.y52{bottom:756.429683pt;}
.yb8{bottom:761.356772pt;}
.yfc{bottom:762.382817pt;}
.y25{bottom:768.546871pt;}
.yca{bottom:770.895830pt;}
.y97{bottom:774.738281pt;}
.yec{bottom:776.330728pt;}
.y129{bottom:777.356777pt;}
.y73{bottom:778.382486pt;}
.y5f{bottom:778.382813pt;}
.y51{bottom:779.960937pt;}
.yb7{bottom:783.817710pt;}
.yfb{bottom:784.843755pt;}
.y28{bottom:786.450354pt;}
.yc9{bottom:793.356768pt;}
.y96{bottom:797.199219pt;}
.yeb{bottom:798.791665pt;}
.y128{bottom:799.817705pt;}
.y72{bottom:800.843423pt;}
.y5e{bottom:800.843750pt;}
.y4{bottom:800.931503pt;}
.y50{bottom:803.492190pt;}
.y22{bottom:805.354001pt;}
.yfa{bottom:807.304692pt;}
.yc8{bottom:815.817705pt;}
.y95{bottom:819.660156pt;}
.yea{bottom:821.252603pt;}
.yb5{bottom:822.278643pt;}
.y21{bottom:823.257647pt;}
.y71{bottom:823.304361pt;}
.y5d{bottom:823.304688pt;}
.yb6{bottom:824.588546pt;}
.y4f{bottom:827.023443pt;}
.yf9{bottom:829.765630pt;}
.yc7{bottom:838.278643pt;}
.y94{bottom:842.121094pt;}
.y20{bottom:842.161301pt;}
.y70{bottom:845.765298pt;}
.y5c{bottom:845.765625pt;}
.y4e{bottom:850.554683pt;}
.y127{bottom:860.739577pt;}
.yb4{bottom:860.739583pt;}
.y1e{bottom:861.064938pt;}
.ye9{bottom:862.023439pt;}
.y1{bottom:863.525253pt;}
.y93{bottom:864.582031pt;}
.y6f{bottom:868.226236pt;}
.y5b{bottom:868.226563pt;}
.y4d{bottom:874.085937pt;}
.yc6{bottom:876.739583pt;}
.y1d{bottom:879.968581pt;}
.yb3{bottom:883.200520pt;}
.y92{bottom:887.042969pt;}
.y6e{bottom:890.687173pt;}
.y5a{bottom:890.687500pt;}
.y4c{bottom:897.617187pt;}
.y1b{bottom:898.872233pt;}
.yc5{bottom:899.200520pt;}
.yb2{bottom:905.661458pt;}
.y6d{bottom:913.148111pt;}
.y59{bottom:913.148438pt;}
.y19{bottom:917.775879pt;}
.y4b{bottom:921.148438pt;}
.yc4{bottom:921.661458pt;}
.y91{bottom:924.926429pt;}
.yb1{bottom:944.122395pt;}
.y90{bottom:945.630859pt;}
.y18{bottom:956.229004pt;}
.y58{bottom:956.229167pt;}
.yb0{bottom:966.583333pt;}
.y8f{bottom:967.106770pt;}
.y16{bottom:982.114420pt;}
.y56{bottom:982.114583pt;}
.hd{height:17.903646pt;}
.hb{height:17.903727pt;}
.he{height:17.903809pt;}
.h10{height:35.807129pt;}
.hf{height:35.807292pt;}
.h19{height:36.458332pt;}
.h7{height:38.281249pt;}
.hc{height:40.791668pt;}
.h2{height:42.109376pt;}
.h14{height:44.500000pt;}
.h6{height:45.937500pt;}
.h16{height:46.000000pt;}
.h1a{height:47.415715pt;}
.h4{height:48.208335pt;}
.h12{height:53.710937pt;}
.h18{height:58.333335pt;}
.h5{height:59.333335pt;}
.h8{height:72.916665pt;}
.h9{height:107.285560pt;}
.h3{height:131.250000pt;}
.h15{height:140.552084pt;}
.ha{height:140.552247pt;}
.h13{height:143.874680pt;}
.h17{height:143.875000pt;}
.h11{height:179.036459pt;}
.h1{height:259.141413pt;}
.h0{height:1122.666667pt;}
.w6{width:101.000000pt;}
.w7{width:113.000000pt;}
.w2{width:131.000000pt;}
.w8{width:383.000000pt;}
.w3{width:474.000000pt;}
.w5{width:599.000000pt;}
.w4{width:606.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.xc{left:6.000000pt;}
.x11{left:15.044487pt;}
.x15{left:20.626053pt;}
.xf{left:22.838043pt;}
.x12{left:40.481934pt;}
.x2{left:96.000000pt;}
.xb{left:97.000000pt;}
.x4{left:98.772268pt;}
.x6{left:102.302565pt;}
.x18{left:120.000000pt;}
.x3{left:121.600393pt;}
.x1d{left:134.000000pt;}
.x16{left:135.380981pt;}
.x1b{left:139.589767pt;}
.x19{left:144.000000pt;}
.x14{left:164.986588pt;}
.x10{left:199.000000pt;}
.xd{left:229.000000pt;}
.xa{left:234.000000pt;}
.xe{left:245.177220pt;}
.x8{left:251.000000pt;}
.x9{left:254.000000pt;}
.x7{left:262.018706pt;}
.x13{left:313.000000pt;}
.x5{left:396.850400pt;}
.x1{left:598.850400pt;}
.x1c{left:682.844180pt;}
.x17{left:690.272460pt;}
.x1a{left:702.000000pt;}
}




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