
    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_59b407d2d5df340e3500786a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.144043;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_717b7cd5a712578eba9bdce5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.953613;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_89f156f539d15937e44f7937.woff')format("woff");}.ff3{font-family:ff3;line-height:0.958008;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);}
.v1{vertical-align:-13.498999px;}
.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:-35.442564px;}
.ws1{word-spacing:-32.216118px;}
.ws0{word-spacing:-29.287380px;}
.ws3{word-spacing:0.000000px;}
._5{margin-left:-23.442625px;}
._1f{margin-left:-18.455777px;}
._23{margin-left:-15.501861px;}
._19{margin-left:-14.166552px;}
._25{margin-left:-12.847667px;}
._21{margin-left:-11.251918px;}
._4{margin-left:-9.602897px;}
._6{margin-left:-7.034268px;}
._24{margin-left:-6.025249px;}
._7{margin-left:-4.990189px;}
._2{margin-left:-3.851104px;}
._3{margin-left:-2.157250px;}
._14{margin-left:-1.002167px;}
._8{width:1.424552px;}
._0{width:2.737405px;}
._1{width:4.543349px;}
._10{width:7.658446px;}
._18{width:8.993980px;}
._13{width:10.052710px;}
._22{width:11.308067px;}
._f{width:12.358273px;}
._d{width:13.599095px;}
._1b{width:15.000264px;}
._9{width:16.028352px;}
._15{width:17.779223px;}
._11{width:18.787694px;}
._12{width:20.083135px;}
._a{width:21.556713px;}
._1e{width:23.152858px;}
._16{width:24.609712px;}
._1a{width:28.091340px;}
._17{width:30.310756px;}
._1c{width:31.883504px;}
._c{width:32.953146px;}
._20{width:39.303174px;}
._e{width:48.273482px;}
._1d{width:52.497037px;}
._b{width:56.048846px;}
.fc4{color:rgb(239,58,72);}
.fc1{color:rgb(255,87,87);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:106.597103px;}
.fs7{font-size:107.991995px;}
.fs2{font-size:119.961108px;}
.fs1{font-size:131.975217px;}
.fs5{font-size:143.944330px;}
.fs4{font-size:143.989326px;}
.fs0{font-size:191.955771px;}
.fs3{font-size:275.964553px;}
.y0{bottom:0.000000px;}
.y4{bottom:11.648627px;}
.y3{bottom:93.368065px;}
.y45{bottom:123.871356px;}
.y2{bottom:159.738145px;}
.y44{bottom:173.367687px;}
.y6c{bottom:192.141088px;}
.y6b{bottom:240.512502px;}
.y43{bottom:272.360349px;}
.y6a{bottom:290.008833px;}
.y42{bottom:325.231430px;}
.y69{bottom:339.505164px;}
.y41{bottom:374.727761px;}
.y68{bottom:393.501162px;}
.y40{bottom:427.598841px;}
.y3f{bottom:477.095172px;}
.y3e{bottom:529.966253px;}
.y1d{bottom:569.381203px;}
.y3d{bottom:579.462584px;}
.y1c{bottom:614.377867px;}
.y3c{bottom:632.333665px;}
.y3b{bottom:681.829996px;}
.y1b{bottom:697.621697px;}
.y3a{bottom:734.701077px;}
.y1a{bottom:739.243612px;}
.y19{bottom:825.862191px;}
.y39{bottom:833.693739px;}
.y18{bottom:867.484105px;}
.y38{bottom:885.439903px;}
.y17{bottom:912.480770px;}
.y37{bottom:991.182065px;}
.y16{bottom:999.099349px;}
.y36{bottom:1040.678396px;}
.y15{bottom:1044.096014px;}
.y14{bottom:1090.217595px;}
.y35{bottom:1139.671058px;}
.y34{bottom:1539.016455px;}
.y65{bottom:1572.051592px;}
.y33{bottom:1588.512786px;}
.y64{bottom:1626.047589px;}
.y32{bottom:1641.383867px;}
.y31{bottom:1740.376529px;}
.y30{bottom:1789.872860px;}
.y2f{bottom:1841.619024px;}
.y2e{bottom:1947.361186px;}
.y63{bottom:1950.023574px;}
.y62{bottom:2004.019571px;}
.y2d{bottom:2046.353848px;}
.y61{bottom:2058.015569px;}
.y2c{bottom:2095.850179px;}
.y60{bottom:2112.011566px;}
.y2b{bottom:2145.346510px;}
.y6f{bottom:2261.357563px;}
.y6e{bottom:2310.853894px;}
.y6d{bottom:2360.350225px;}
.y67{bottom:2387.027759px;}
.y66{bottom:2444.398506px;}
.y10{bottom:2547.482258px;}
.y2a{bottom:2590.813488px;}
.yf{bottom:2596.978589px;}
.y29{bottom:2643.684569px;}
.ye{bottom:2648.724753px;}
.y28{bottom:2696.555650px;}
.y27{bottom:2749.426731px;}
.y26{bottom:2801.172895px;}
.yd{bottom:2808.462912px;}
.yc{bottom:2857.959243px;}
.y25{bottom:2906.915057px;}
.yb{bottom:2907.455574px;}
.y24{bottom:2959.786138px;}
.ya{bottom:3006.448236px;}
.y23{bottom:3009.282469px;}
.y9{bottom:3059.319317px;}
.y8{bottom:3108.815648px;}
.y7{bottom:3161.686728px;}
.y22{bottom:3207.267792px;}
.y6{bottom:3211.183059px;}
.y21{bottom:3256.764123px;}
.y5{bottom:3262.929224px;}
.y20{bottom:3306.260454px;}
.y1f{bottom:3355.756785px;}
.y1e{bottom:3407.502950px;}
.y5f{bottom:3443.757816px;}
.y46{bottom:3483.941616px;}
.y5e{bottom:3492.129230px;}
.y5d{bottom:3540.500645px;}
.y52{bottom:3577.039621px;}
.y5c{bottom:3588.872059px;}
.y51{bottom:3631.035618px;}
.y5b{bottom:3637.243473px;}
.y50{bottom:3739.027613px;}
.y5a{bottom:3742.753304px;}
.y4f{bottom:3793.023611px;}
.y59{bottom:3796.749301px;}
.y4e{bottom:3847.019608px;}
.y4d{bottom:3901.015606px;}
.y58{bottom:3904.741296px;}
.y4c{bottom:3955.011603px;}
.y57{bottom:3962.112043px;}
.y56{bottom:4019.482791px;}
.y4b{bottom:4063.003598px;}
.y4a{bottom:4116.999595px;}
.y55{bottom:4127.474786px;}
.y49{bottom:4170.995593px;}
.y54{bottom:4181.470783px;}
.y48{bottom:4224.991590px;}
.y53{bottom:4237.716614px;}
.y13{bottom:4301.764796px;}
.y47{bottom:4302.115753px;}
.y1{bottom:4414.588631px;}
.y12{bottom:4765.088132px;}
.y11{bottom:4868.580460px;}
.hd{height:79.623004px;}
.hb{height:88.389312px;}
.h5{height:97.241505px;}
.ha{height:98.477402px;}
.hc{height:99.766042px;}
.h9{height:106.060544px;}
.h8{height:106.093698px;}
.h6{height:110.823445px;}
.h3{height:177.334140px;}
.h7{height:203.335210px;}
.h2{height:285.728806px;}
.h4{height:5081.624788px;}
.h0{height:5105.648415px;}
.h1{height:5106.000000px;}
.w2{width:3125.018174px;}
.w3{width:3602.249850px;}
.w0{width:3627.398400px;}
.w1{width:3627.750000px;}
.x0{left:0.000000px;}
.x4{left:13.499999px;}
.x9{left:129.539734px;}
.xb{left:138.420862px;}
.xd{left:161.411345px;}
.xe{left:167.407992px;}
.xc{left:189.411223px;}
.x2{left:192.624399px;}
.x1{left:302.099006px;}
.x7{left:788.109259px;}
.x19{left:956.956662px;}
.x18{left:959.768954px;}
.x8{left:969.853605px;}
.x3{left:1060.321798px;}
.x1a{left:1066.003266px;}
.xa{left:1876.476198px;}
.x5{left:1898.900417px;}
.xf{left:1923.517360px;}
.x6{left:1949.890778px;}
.x10{left:1974.507721px;}
.x16{left:2076.003559px;}
.x14{left:2089.608020px;}
.x15{left:2096.498134px;}
.x17{left:2200.359576px;}
.x13{left:2501.186885px;}
.x11{left:2667.289168px;}
.x12{left:2735.680583px;}
@media print{
.v1{vertical-align:-11.999111pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-31.504501pt;}
.ws1{word-spacing:-28.636549pt;}
.ws0{word-spacing:-26.033227pt;}
.ws3{word-spacing:0.000000pt;}
._5{margin-left:-20.837889pt;}
._1f{margin-left:-16.405135pt;}
._23{margin-left:-13.779432pt;}
._19{margin-left:-12.592490pt;}
._25{margin-left:-11.420149pt;}
._21{margin-left:-10.001705pt;}
._4{margin-left:-8.535909pt;}
._6{margin-left:-6.252683pt;}
._24{margin-left:-5.355777pt;}
._7{margin-left:-4.435724pt;}
._2{margin-left:-3.423204pt;}
._3{margin-left:-1.917556pt;}
._14{margin-left:-0.890815pt;}
._8{width:1.266269pt;}
._0{width:2.433249pt;}
._1{width:4.038533pt;}
._10{width:6.807507pt;}
._18{width:7.994649pt;}
._13{width:8.935742pt;}
._22{width:10.051615pt;}
._f{width:10.985131pt;}
._d{width:12.088085pt;}
._1b{width:13.333568pt;}
._9{width:14.247424pt;}
._15{width:15.803753pt;}
._11{width:16.700172pt;}
._12{width:17.851676pt;}
._a{width:19.161523pt;}
._1e{width:20.580318pt;}
._16{width:21.875300pt;}
._1a{width:24.970080pt;}
._17{width:26.942894pt;}
._1c{width:28.340893pt;}
._c{width:29.291685pt;}
._20{width:34.936155pt;}
._e{width:42.909761pt;}
._1d{width:46.664033pt;}
._b{width:49.821196pt;}
.fs6{font-size:94.752980pt;}
.fs7{font-size:95.992884pt;}
.fs2{font-size:106.632096pt;}
.fs1{font-size:117.311304pt;}
.fs5{font-size:127.950515pt;}
.fs4{font-size:127.990512pt;}
.fs0{font-size:170.627352pt;}
.fs3{font-size:245.301824pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.354335pt;}
.y3{bottom:82.993835pt;}
.y45{bottom:110.107872pt;}
.y2{bottom:141.989462pt;}
.y44{bottom:154.104611pt;}
.y6c{bottom:170.792078pt;}
.y6b{bottom:213.788891pt;}
.y43{bottom:242.098088pt;}
.y6a{bottom:257.785630pt;}
.y42{bottom:289.094604pt;}
.y69{bottom:301.782368pt;}
.y41{bottom:333.091343pt;}
.y68{bottom:349.778811pt;}
.y40{bottom:380.087859pt;}
.y3f{bottom:424.084598pt;}
.y3e{bottom:471.081114pt;}
.y1d{bottom:506.116625pt;}
.y3d{bottom:515.077853pt;}
.y1c{bottom:546.113660pt;}
.y3c{bottom:562.074369pt;}
.y3b{bottom:606.071108pt;}
.y1b{bottom:620.108175pt;}
.y3a{bottom:653.067624pt;}
.y1a{bottom:657.105432pt;}
.y19{bottom:734.099725pt;}
.y39{bottom:741.061101pt;}
.y18{bottom:771.096983pt;}
.y38{bottom:787.057692pt;}
.y17{bottom:811.094018pt;}
.y37{bottom:881.050724pt;}
.y16{bottom:888.088310pt;}
.y36{bottom:925.047463pt;}
.y15{bottom:928.085345pt;}
.y14{bottom:969.082307pt;}
.y35{bottom:1013.040940pt;}
.y34{bottom:1368.014627pt;}
.y65{bottom:1397.379193pt;}
.y33{bottom:1412.011365pt;}
.y64{bottom:1445.375635pt;}
.y32{bottom:1459.007882pt;}
.y31{bottom:1547.001359pt;}
.y30{bottom:1590.998098pt;}
.y2f{bottom:1636.994688pt;}
.y2e{bottom:1730.987721pt;}
.y63{bottom:1733.354288pt;}
.y62{bottom:1781.350730pt;}
.y2d{bottom:1818.981198pt;}
.y61{bottom:1829.347172pt;}
.y2c{bottom:1862.977937pt;}
.y60{bottom:1877.343614pt;}
.y2b{bottom:1906.974675pt;}
.y6f{bottom:2010.095612pt;}
.y6e{bottom:2054.092350pt;}
.y6d{bottom:2098.089089pt;}
.y67{bottom:2121.802453pt;}
.y66{bottom:2172.798672pt;}
.y10{bottom:2264.428673pt;}
.y2a{bottom:2302.945323pt;}
.yf{bottom:2308.425412pt;}
.y29{bottom:2349.941839pt;}
.ye{bottom:2354.422003pt;}
.y28{bottom:2396.938356pt;}
.y27{bottom:2443.934872pt;}
.y26{bottom:2489.931462pt;}
.yd{bottom:2496.411477pt;}
.yc{bottom:2540.408216pt;}
.y25{bottom:2583.924495pt;}
.yb{bottom:2584.404955pt;}
.y24{bottom:2630.921011pt;}
.ya{bottom:2672.398432pt;}
.y23{bottom:2674.917750pt;}
.y9{bottom:2719.394948pt;}
.y8{bottom:2763.391687pt;}
.y7{bottom:2810.388203pt;}
.y22{bottom:2850.904704pt;}
.y6{bottom:2854.384942pt;}
.y21{bottom:2894.901443pt;}
.y5{bottom:2900.381532pt;}
.y20{bottom:2938.898182pt;}
.y1f{bottom:2982.894920pt;}
.y1e{bottom:3028.891511pt;}
.y5f{bottom:3061.118059pt;}
.y46{bottom:3096.836992pt;}
.y5e{bottom:3104.114871pt;}
.y5d{bottom:3147.111684pt;}
.y52{bottom:3179.590774pt;}
.y5c{bottom:3190.108497pt;}
.y51{bottom:3227.587216pt;}
.y5b{bottom:3233.105310pt;}
.y50{bottom:3323.580101pt;}
.y5a{bottom:3326.891826pt;}
.y4f{bottom:3371.576543pt;}
.y59{bottom:3374.888268pt;}
.y4e{bottom:3419.572985pt;}
.y4d{bottom:3467.569427pt;}
.y58{bottom:3470.881152pt;}
.y4c{bottom:3515.565869pt;}
.y57{bottom:3521.877372pt;}
.y56{bottom:3572.873592pt;}
.y4b{bottom:3611.558754pt;}
.y4a{bottom:3659.555196pt;}
.y55{bottom:3668.866476pt;}
.y49{bottom:3707.551638pt;}
.y54{bottom:3716.862918pt;}
.y48{bottom:3755.548080pt;}
.y53{bottom:3766.859212pt;}
.y13{bottom:3823.790930pt;}
.y47{bottom:3824.102892pt;}
.y1{bottom:3924.078783pt;}
.y12{bottom:4235.633895pt;}
.y11{bottom:4327.627076pt;}
.hd{height:70.776004pt;}
.hb{height:78.568278pt;}
.h5{height:86.436893pt;}
.ha{height:87.535468pt;}
.hc{height:88.680926pt;}
.h9{height:94.276039pt;}
.h8{height:94.305509pt;}
.h6{height:98.509729pt;}
.h3{height:157.630347pt;}
.h7{height:180.742409pt;}
.h2{height:253.981161pt;}
.h4{height:4516.999812pt;}
.h0{height:4538.354147pt;}
.h1{height:4538.666667pt;}
.w2{width:2777.793932pt;}
.w3{width:3201.999867pt;}
.w0{width:3224.354133pt;}
.w1{width:3224.666667pt;}
.x0{left:0.000000pt;}
.x4{left:12.000000pt;}
.x9{left:115.146430pt;}
.xb{left:123.040766pt;}
.xd{left:143.476751pt;}
.xe{left:148.807104pt;}
.xc{left:168.365531pt;}
.x2{left:171.221688pt;}
.x1{left:268.532450pt;}
.x7{left:700.541564pt;}
.x19{left:850.628144pt;}
.x18{left:853.127959pt;}
.x8{left:862.092093pt;}
.x3{left:942.508265pt;}
.x1a{left:947.558459pt;}
.xa{left:1667.978843pt;}
.x5{left:1687.911482pt;}
.xf{left:1709.793209pt;}
.x6{left:1733.236247pt;}
.x10{left:1755.117974pt;}
.x16{left:1845.336497pt;}
.x14{left:1857.429351pt;}
.x15{left:1863.553897pt;}
.x17{left:1955.875178pt;}
.x13{left:2223.277231pt;}
.x11{left:2370.923705pt;}
.x12{left:2431.716074pt;}
}




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