
    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_c05e8b0b5883875968a58992.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.174316;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_d3c4b13f08b38f62278935de.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.186035;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_c85bdeabeff7b76c75075f7a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005371;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_ff32c21d5b840b2b8ce95b23.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.174316;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_5c5ba05d3b2d945a7697b11f.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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;}
.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;}
}
.ws2{word-spacing:-17.160000px;}
.ws0{word-spacing:-15.600000px;}
.ws1{word-spacing:0.000000px;}
._2{width:1.032000px;}
._1{width:2.061000px;}
._3{width:3.103500px;}
._6{width:4.239000px;}
._8{width:6.444000px;}
._7{width:7.569000px;}
._5{width:10.342500px;}
._4{width:11.569500px;}
._0{width:516.436494px;}
.fc2{color:rgb(0,0,238);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.999999px;}
.fs2{font-size:66.000002px;}
.fs5{font-size:77.220000px;}
.fs4{font-size:99.000000px;}
.fs1{font-size:108.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yb{bottom:49.217651px;}
.y6f{bottom:93.031272px;}
.y8c{bottom:101.729002px;}
.yb0{bottom:119.143708px;}
.y8b{bottom:124.199339px;}
.y6e{bottom:124.501608px;}
.y4a{bottom:134.203327px;}
.y7{bottom:136.881736px;}
.yaf{bottom:141.614045px;}
.y6d{bottom:155.971945px;}
.y49{bottom:156.673664px;}
.y6{bottom:157.308616px;}
.y8a{bottom:163.169675px;}
.yae{bottom:164.084382px;}
.y6c{bottom:178.442283px;}
.y89{bottom:185.640012px;}
.yad{bottom:195.554719px;}
.y48{bottom:195.644002px;}
.y88{bottom:208.110349px;}
.y6b{bottom:209.912620px;}
.yac{bottom:218.025057px;}
.y47{bottom:218.114339px;}
.y6a{bottom:232.382957px;}
.yab{bottom:240.495393px;}
.y87{bottom:253.540178px;}
.y46{bottom:260.711452px;}
.y5{bottom:263.214319px;}
.y69{bottom:263.853294px;}
.yaa{bottom:271.965730px;}
.y68{bottom:286.323630px;}
.ya9{bottom:303.436067px;}
.y45{bottom:309.139451px;}
.y67{bottom:317.793967px;}
.ya8{bottom:325.906404px;}
.y66{bottom:340.264304px;}
.ya7{bottom:348.376741px;}
.y86{bottom:356.828142px;}
.y65{bottom:371.734641px;}
.y85{bottom:379.298479px;}
.ya6{bottom:379.847077px;}
.y64{bottom:394.204978px;}
.y84{bottom:401.768816px;}
.ya5{bottom:402.317414px;}
.y2a{bottom:407.465696px;}
.y44{bottom:412.427415px;}
.y83{bottom:424.239153px;}
.ya4{bottom:424.787751px;}
.y63{bottom:425.675315px;}
.y29{bottom:429.936033px;}
.y43{bottom:434.897752px;}
.y4{bottom:442.987966px;}
.y82{bottom:446.709490px;}
.ya3{bottom:447.258088px;}
.y62{bottom:448.145652px;}
.y28{bottom:452.406370px;}
.y42{bottom:457.368089px;}
.ya2{bottom:469.728426px;}
.y27{bottom:474.876707px;}
.y3{bottom:479.757010px;}
.y61{bottom:487.115989px;}
.y41{bottom:488.838425px;}
.y81{bottom:492.139319px;}
.y26{bottom:497.347044px;}
.y40{bottom:511.308762px;}
.ya1{bottom:515.158254px;}
.y25{bottom:519.817380px;}
.y60{bottom:529.713103px;}
.y24{bottom:542.287717px;}
.y3f{bottom:542.779099px;}
.yc2{bottom:564.006165px;}
.y23{bottom:564.758054px;}
.y3e{bottom:574.249436px;}
.y5f{bottom:574.486609px;}
.yc1{bottom:586.476501px;}
.y22{bottom:587.228391px;}
.y80{bottom:595.427282px;}
.y3d{bottom:596.719773px;}
.y5e{bottom:596.956946px;}
.y7f{bottom:617.897619px;}
.yc0{bottom:617.946838px;}
.ya0{bottom:618.446218px;}
.y3c{bottom:619.190109px;}
.y1e{bottom:635.198728px;}
.y5d{bottom:635.927282px;}
.ybf{bottom:640.417175px;}
.y9f{bottom:640.916555px;}
.y3b{bottom:650.660446px;}
.y7e{bottom:656.867957px;}
.ybe{bottom:662.887512px;}
.y1d{bottom:666.669065px;}
.y5c{bottom:667.397619px;}
.y9e{bottom:672.386892px;}
.y3a{bottom:673.130784px;}
.ybd{bottom:685.357849px;}
.y7d{bottom:688.338294px;}
.y39{bottom:695.601121px;}
.y1c{bottom:698.139402px;}
.y5b{bottom:698.867956px;}
.ybc{bottom:707.828185px;}
.y7c{bottom:710.808630px;}
.y5a{bottom:721.338294px;}
.y9d{bottom:726.327566px;}
.y38{bottom:727.071458px;}
.y1b{bottom:729.609739px;}
.y7b{bottom:733.278967px;}
.y59{bottom:743.808631px;}
.y9c{bottom:748.797903px;}
.y37{bottom:749.541795px;}
.ybb{bottom:753.258015px;}
.y1a{bottom:761.080076px;}
.y7a{bottom:764.749304px;}
.y9b{bottom:771.268239px;}
.y36{bottom:772.012131px;}
.y58{bottom:775.278967px;}
.y19{bottom:792.550412px;}
.y79{bottom:796.219641px;}
.y57{bottom:797.749304px;}
.y9a{bottom:802.738576px;}
.y35{bottom:803.482468px;}
.y78{bottom:818.689978px;}
.y18{bottom:824.020749px;}
.y99{bottom:825.208914px;}
.y34{bottom:825.952805px;}
.y56{bottom:829.219641px;}
.y98{bottom:847.679251px;}
.y33{bottom:848.423142px;}
.y77{bottom:850.160314px;}
.y55{bottom:851.689978px;}
.y17{bottom:855.491086px;}
.yba{bottom:856.545979px;}
.y97{bottom:879.149588px;}
.y32{bottom:879.893480px;}
.y16{bottom:886.961424px;}
.yb9{bottom:888.016316px;}
.y76{bottom:889.130652px;}
.y54{bottom:890.660314px;}
.y2{bottom:890.746755px;}
.y31{bottom:902.363816px;}
.y96{bottom:910.619924px;}
.y75{bottom:911.600989px;}
.y53{bottom:913.130652px;}
.y15{bottom:918.431761px;}
.y30{bottom:924.834153px;}
.y13{bottom:925.711316px;}
.yb8{bottom:932.431653px;}
.y95{bottom:933.090261px;}
.y74{bottom:934.071326px;}
.y1{bottom:939.772146px;}
.y12{bottom:948.181653px;}
.y14{bottom:949.902097px;}
.y52{bottom:952.100989px;}
.y94{bottom:955.560598px;}
.y2f{bottom:956.304490px;}
.y11{bottom:970.651989px;}
.y73{bottom:973.041663px;}
.yc4{bottom:976.685490px;}
.yb7{bottom:976.846990px;}
.y93{bottom:978.030935px;}
.y2e{bottom:978.774827px;}
.y51{bottom:983.571326px;}
.y21{bottom:992.499212px;}
.yc3{bottom:999.155827px;}
.yb6{bottom:999.317327px;}
.y92{bottom:1000.501272px;}
.y2d{bottom:1001.245164px;}
.y10{bottom:1002.122326px;}
.y72{bottom:1015.638777px;}
.y20{bottom:1018.789495px;}
.yb5{bottom:1021.787664px;}
.y91{bottom:1022.971608px;}
.yf{bottom:1024.592664px;}
.y50{bottom:1026.168440px;}
.y8d{bottom:1037.941946px;}
.y2c{bottom:1040.215500px;}
.y90{bottom:1045.441945px;}
.ye{bottom:1047.063001px;}
.yb4{bottom:1060.758000px;}
.y1f{bottom:1063.563000px;}
.y8f{bottom:1067.912283px;}
.y4f{bottom:1070.941946px;}
.ya{bottom:1076.207620px;}
.y71{bottom:1076.912283px;}
.y2b{bottom:1084.630838px;}
.yd{bottom:1086.033337px;}
.y4e{bottom:1093.412283px;}
.y70{bottom:1099.382620px;}
.yb3{bottom:1105.173338px;}
.yb1{bottom:1106.721121px;}
.y8e{bottom:1106.882620px;}
.y4d{bottom:1115.882620px;}
.y9{bottom:1119.602957px;}
.yc{bottom:1131.463167px;}
.y4c{bottom:1138.352956px;}
.yb2{bottom:1152.005667px;}
.y8{bottom:1153.098294px;}
.y4b{bottom:1160.823293px;}
.hb{height:43.989259px;}
.h5{height:45.908202px;}
.h7{height:50.499025px;}
.h8{height:56.718749px;}
.h6{height:61.649415px;}
.h4{height:62.390626px;}
.ha{height:72.129814px;}
.h9{height:92.474121px;}
.h3{height:100.880859px;}
.h2{height:134.507813px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w0{width:892.913387px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:118.875000px;}
.x9{left:123.300000px;}
.xe{left:153.385254px;}
.xd{left:163.875000px;}
.x7{left:178.785794px;}
.x1{left:191.714506px;}
.x10{left:197.225098px;}
.xf{left:208.875000px;}
.x6{left:231.105985px;}
.x4{left:288.181059px;}
.x2{left:311.720365px;}
.xa{left:340.860501px;}
.x3{left:342.754544px;}
.x8{left:356.441312px;}
.x5{left:389.477750px;}
.xb{left:431.233487px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-15.253334pt;}
.ws0{word-spacing:-13.866666pt;}
.ws1{word-spacing:0.000000pt;}
._2{width:0.917333pt;}
._1{width:1.832000pt;}
._3{width:2.758667pt;}
._6{width:3.768000pt;}
._8{width:5.728000pt;}
._7{width:6.728000pt;}
._5{width:9.193334pt;}
._4{width:10.284000pt;}
._0{width:459.054662pt;}
.fs3{font-size:53.333332pt;}
.fs2{font-size:58.666668pt;}
.fs5{font-size:68.640000pt;}
.fs4{font-size:88.000000pt;}
.fs1{font-size:96.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:43.749023pt;}
.y6f{bottom:82.694464pt;}
.y8c{bottom:90.425779pt;}
.yb0{bottom:105.905518pt;}
.y8b{bottom:110.399412pt;}
.y6e{bottom:110.668096pt;}
.y4a{bottom:119.291846pt;}
.y7{bottom:121.672654pt;}
.yaf{bottom:125.879151pt;}
.y6d{bottom:138.641729pt;}
.y49{bottom:139.265479pt;}
.y6{bottom:139.829881pt;}
.y8a{bottom:145.039711pt;}
.yae{bottom:145.852784pt;}
.y6c{bottom:158.615362pt;}
.y89{bottom:165.013344pt;}
.yad{bottom:173.826417pt;}
.y48{bottom:173.905779pt;}
.y88{bottom:184.986977pt;}
.y6b{bottom:186.588995pt;}
.yac{bottom:193.800050pt;}
.y47{bottom:193.879412pt;}
.y6a{bottom:206.562628pt;}
.yab{bottom:213.773682pt;}
.y87{bottom:225.369047pt;}
.y46{bottom:231.743513pt;}
.y5{bottom:233.968283pt;}
.y69{bottom:234.536261pt;}
.yaa{bottom:241.747315pt;}
.y68{bottom:254.509893pt;}
.ya9{bottom:269.720948pt;}
.y45{bottom:274.790623pt;}
.y67{bottom:282.483526pt;}
.ya8{bottom:289.694581pt;}
.y66{bottom:302.457159pt;}
.ya7{bottom:309.668214pt;}
.y86{bottom:317.180570pt;}
.y65{bottom:330.430792pt;}
.y85{bottom:337.154203pt;}
.ya6{bottom:337.641846pt;}
.y64{bottom:350.404425pt;}
.y84{bottom:357.127836pt;}
.ya5{bottom:357.615479pt;}
.y2a{bottom:362.191729pt;}
.y44{bottom:366.602146pt;}
.y83{bottom:377.101469pt;}
.ya4{bottom:377.589112pt;}
.y63{bottom:378.378057pt;}
.y29{bottom:382.165362pt;}
.y43{bottom:386.575779pt;}
.y4{bottom:393.767081pt;}
.y82{bottom:397.075102pt;}
.ya3{bottom:397.562745pt;}
.y62{bottom:398.351690pt;}
.y28{bottom:402.138995pt;}
.y42{bottom:406.549412pt;}
.ya2{bottom:417.536378pt;}
.y27{bottom:422.112628pt;}
.y3{bottom:426.450675pt;}
.y61{bottom:432.991990pt;}
.y41{bottom:434.523044pt;}
.y81{bottom:437.457172pt;}
.y26{bottom:442.086261pt;}
.y40{bottom:454.496677pt;}
.ya1{bottom:457.918448pt;}
.y25{bottom:462.059893pt;}
.y60{bottom:470.856091pt;}
.y24{bottom:482.033526pt;}
.y3f{bottom:482.470310pt;}
.yc2{bottom:501.338813pt;}
.y23{bottom:502.007159pt;}
.y3e{bottom:510.443943pt;}
.y5f{bottom:510.654763pt;}
.yc1{bottom:521.312445pt;}
.y22{bottom:521.980792pt;}
.y80{bottom:529.268695pt;}
.y3d{bottom:530.417576pt;}
.y5e{bottom:530.628396pt;}
.y7f{bottom:549.242328pt;}
.yc0{bottom:549.286078pt;}
.ya0{bottom:549.729971pt;}
.y3c{bottom:550.391208pt;}
.y1e{bottom:564.621091pt;}
.y5d{bottom:565.268695pt;}
.ybf{bottom:569.259711pt;}
.y9f{bottom:569.703604pt;}
.y3b{bottom:578.364841pt;}
.y7e{bottom:583.882628pt;}
.ybe{bottom:589.233344pt;}
.y1d{bottom:592.594724pt;}
.y5c{bottom:593.242328pt;}
.y9e{bottom:597.677237pt;}
.y3a{bottom:598.338474pt;}
.ybd{bottom:609.206977pt;}
.y7d{bottom:611.856261pt;}
.y39{bottom:618.312107pt;}
.y1c{bottom:620.568357pt;}
.y5b{bottom:621.215961pt;}
.ybc{bottom:629.180609pt;}
.y7c{bottom:631.829893pt;}
.y5a{bottom:641.189594pt;}
.y9d{bottom:645.624503pt;}
.y38{bottom:646.285740pt;}
.y1b{bottom:648.541990pt;}
.y7b{bottom:651.803526pt;}
.y59{bottom:661.163227pt;}
.y9c{bottom:665.598136pt;}
.y37{bottom:666.259373pt;}
.ybb{bottom:669.562680pt;}
.y1a{bottom:676.515623pt;}
.y7a{bottom:679.777159pt;}
.y9b{bottom:685.571768pt;}
.y36{bottom:686.233005pt;}
.y58{bottom:689.136859pt;}
.y19{bottom:704.489255pt;}
.y79{bottom:707.750792pt;}
.y57{bottom:709.110492pt;}
.y9a{bottom:713.545401pt;}
.y35{bottom:714.206638pt;}
.y78{bottom:727.724425pt;}
.y18{bottom:732.462888pt;}
.y99{bottom:733.519034pt;}
.y34{bottom:734.180271pt;}
.y56{bottom:737.084125pt;}
.y98{bottom:753.492667pt;}
.y33{bottom:754.153904pt;}
.y77{bottom:755.698057pt;}
.y55{bottom:757.057758pt;}
.y17{bottom:760.436521pt;}
.yba{bottom:761.374203pt;}
.y97{bottom:781.466300pt;}
.y32{bottom:782.127537pt;}
.y16{bottom:788.410154pt;}
.yb9{bottom:789.347836pt;}
.y76{bottom:790.338357pt;}
.y54{bottom:791.698057pt;}
.y2{bottom:791.774893pt;}
.y31{bottom:802.101169pt;}
.y96{bottom:809.439932pt;}
.y75{bottom:810.311990pt;}
.y53{bottom:811.671690pt;}
.y15{bottom:816.383787pt;}
.y30{bottom:822.074802pt;}
.y13{bottom:822.854503pt;}
.yb8{bottom:828.828136pt;}
.y95{bottom:829.413565pt;}
.y74{bottom:830.285623pt;}
.y1{bottom:835.353018pt;}
.y12{bottom:842.828136pt;}
.y14{bottom:844.357419pt;}
.y52{bottom:846.311990pt;}
.y94{bottom:849.387198pt;}
.y2f{bottom:850.048435pt;}
.y11{bottom:862.801768pt;}
.y73{bottom:864.925922pt;}
.yc4{bottom:868.164880pt;}
.yb7{bottom:868.308435pt;}
.y93{bottom:869.360831pt;}
.y2e{bottom:870.022068pt;}
.y51{bottom:874.285623pt;}
.y21{bottom:882.221521pt;}
.yc3{bottom:888.138513pt;}
.yb6{bottom:888.282068pt;}
.y92{bottom:889.334464pt;}
.y2d{bottom:889.995701pt;}
.y10{bottom:890.775401pt;}
.y72{bottom:902.790024pt;}
.y20{bottom:905.590662pt;}
.yb5{bottom:908.255701pt;}
.y91{bottom:909.308096pt;}
.yf{bottom:910.749034pt;}
.y50{bottom:912.149724pt;}
.y8d{bottom:922.615063pt;}
.y2c{bottom:924.636000pt;}
.y90{bottom:929.281729pt;}
.ye{bottom:930.722667pt;}
.yb4{bottom:942.896000pt;}
.y1f{bottom:945.389333pt;}
.y8f{bottom:949.255362pt;}
.y4f{bottom:951.948396pt;}
.ya{bottom:956.628995pt;}
.y71{bottom:957.255362pt;}
.y2b{bottom:964.116300pt;}
.yd{bottom:965.362966pt;}
.y4e{bottom:971.922029pt;}
.y70{bottom:977.228995pt;}
.yb3{bottom:982.376300pt;}
.yb1{bottom:983.752107pt;}
.y8e{bottom:983.895662pt;}
.y4d{bottom:991.895662pt;}
.y9{bottom:995.202628pt;}
.yc{bottom:1005.745037pt;}
.y4c{bottom:1011.869294pt;}
.yb2{bottom:1024.005037pt;}
.y8{bottom:1024.976261pt;}
.y4b{bottom:1031.842927pt;}
.hb{height:39.101563pt;}
.h5{height:40.807291pt;}
.h7{height:44.888022pt;}
.h8{height:50.416665pt;}
.h6{height:54.799480pt;}
.h4{height:55.458335pt;}
.ha{height:64.115391pt;}
.h9{height:82.199219pt;}
.h3{height:89.671875pt;}
.h2{height:119.562500pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w0{width:793.700788pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:105.666667pt;}
.x9{left:109.600000pt;}
.xe{left:136.342448pt;}
.xd{left:145.666667pt;}
.x7{left:158.920706pt;}
.x1{left:170.412894pt;}
.x10{left:175.311198pt;}
.xf{left:185.666667pt;}
.x6{left:205.427542pt;}
.x4{left:256.160941pt;}
.x2{left:277.084769pt;}
.xa{left:302.987112pt;}
.x3{left:304.670706pt;}
.x8{left:316.836722pt;}
.x5{left:346.202444pt;}
.xb{left:383.318655pt;}
}




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