
    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_a4c82feb59a64b4f4d2373ac.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921000;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_0dfb24dd9f9db50a3a0b0c09.woff')format("woff");}.ff2{font-family:ff2;line-height:0.924000;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_b84adc77d55000c87eb19f81.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921000;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_87a7f0fbb994dd104dd5cba4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.701000;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);}
.v2{vertical-align:-18.562200px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.562200px;}
.ls9{letter-spacing:-1.080000px;}
.lsc{letter-spacing:-0.014400px;}
.ls1{letter-spacing:-0.013200px;}
.ls4{letter-spacing:-0.011635px;}
.ls5{letter-spacing:-0.008400px;}
.ls3{letter-spacing:-0.007200px;}
.ls8{letter-spacing:-0.006000px;}
.lsa{letter-spacing:-0.005400px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.005400px;}
.ls0{letter-spacing:0.007200px;}
.lsb{letter-spacing:0.189000px;}
.ls6{letter-spacing:0.780000px;}
.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:-50.040000px;}
.ws17{word-spacing:-17.460000px;}
.ws15{word-spacing:-16.680000px;}
.ws18{word-spacing:-7.506000px;}
.ws1d{word-spacing:-7.320000px;}
.ws16{word-spacing:-4.332000px;}
.ws1a{word-spacing:-1.729200px;}
.ws24{word-spacing:-1.591200px;}
.ws26{word-spacing:-1.281600px;}
.ws25{word-spacing:-1.101600px;}
.wsf{word-spacing:0.000000px;}
.ws11{word-spacing:0.302400px;}
.ws1f{word-spacing:1.495800px;}
.ws1e{word-spacing:1.501200px;}
.ws21{word-spacing:1.548000px;}
.ws1c{word-spacing:1.668000px;}
.ws9{word-spacing:1.834800px;}
.wse{word-spacing:2.001600px;}
.ws14{word-spacing:2.335200px;}
.ws1b{word-spacing:2.818200px;}
.wsd{word-spacing:3.290400px;}
.ws13{word-spacing:3.851053px;}
.ws23{word-spacing:4.017600px;}
.ws22{word-spacing:4.024800px;}
.ws2{word-spacing:4.481400px;}
.wsb{word-spacing:5.004000px;}
.ws12{word-spacing:5.162400px;}
.ws20{word-spacing:5.824800px;}
.wsa{word-spacing:6.004800px;}
.ws7{word-spacing:6.481200px;}
.ws4{word-spacing:9.583200px;}
.ws10{word-spacing:12.621600px;}
.ws5{word-spacing:12.922800px;}
.wsc{word-spacing:13.183200px;}
.ws3{word-spacing:13.490400px;}
.ws19{word-spacing:14.269200px;}
.ws6{word-spacing:14.652000px;}
.ws1{word-spacing:16.420800px;}
.ws8{word-spacing:22.347600px;}
._e{margin-left:-26.982000px;}
._1a{margin-left:-12.300000px;}
._c{margin-left:-10.818000px;}
._b{margin-left:-8.640000px;}
._18{margin-left:-7.585800px;}
._1{margin-left:-6.573600px;}
._4{margin-left:-5.273400px;}
._16{margin-left:-3.668400px;}
._0{margin-left:-2.613600px;}
._2{margin-left:-1.577400px;}
._3{width:1.372800px;}
._f{width:2.416800px;}
._d{width:3.600000px;}
._14{width:5.656200px;}
._11{width:7.128600px;}
._19{width:10.797000px;}
._17{width:11.910600px;}
._12{width:13.390200px;}
._7{width:14.711400px;}
._5{width:16.242600px;}
._a{width:17.562600px;}
._9{width:18.691200px;}
._8{width:25.007400px;}
._6{width:26.235000px;}
._10{width:59.551200px;}
._15{width:61.677000px;}
._13{width:102.324428px;}
.fc2{color:rgb(248,152,40);}
.fc1{color:rgb(158,28,32);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:27.000000px;}
.fs4{font-size:36.000000px;}
.fs9{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs5{font-size:116.346000px;}
.fs2{font-size:180.000000px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.082500px;}
.y29{bottom:26.067750px;}
.yc{bottom:30.184950px;}
.y48{bottom:108.293850px;}
.y47{bottom:124.493850px;}
.y27{bottom:142.980600px;}
.y46{bottom:145.334400px;}
.y26{bottom:164.580600px;}
.y45{bottom:179.256900px;}
.y25{bottom:190.156800px;}
.y44{bottom:197.256900px;}
.y24{bottom:211.756800px;}
.y43{bottom:223.070400px;}
.y23{bottom:233.356800px;}
.y42{bottom:248.883900px;}
.y41{bottom:266.883900px;}
.y22{bottom:276.556800px;}
.y40{bottom:292.697400px;}
.y21{bottom:302.133000px;}
.y3f{bottom:318.510900px;}
.y20{bottom:323.733000px;}
.y3e{bottom:336.510900px;}
.y1f{bottom:349.309200px;}
.y3d{bottom:362.324400px;}
.y1e{bottom:374.885400px;}
.y3c{bottom:380.324400px;}
.y3b{bottom:398.324400px;}
.y1d{bottom:400.461600px;}
.y3a{bottom:416.324400px;}
.y1c{bottom:422.061600px;}
.y39{bottom:450.537300px;}
.y1b{bottom:465.261450px;}
.y1a{bottom:490.837650px;}
.y19{bottom:512.437650px;}
.y38{bottom:522.535800px;}
.y18{bottom:538.013850px;}
.y37{bottom:542.335800px;}
.y36{bottom:562.135800px;}
.y17{bottom:563.590050px;}
.y35{bottom:581.935800px;}
.y16{bottom:585.190050px;}
.y34{bottom:601.735800px;}
.y15{bottom:610.766250px;}
.y33{bottom:621.535800px;}
.y14{bottom:632.366250px;}
.y32{bottom:641.335800px;}
.y13{bottom:657.942450px;}
.y31{bottom:661.135800px;}
.y12{bottom:679.542450px;}
.y30{bottom:680.935800px;}
.y2f{bottom:700.735800px;}
.y11{bottom:705.118650px;}
.y2e{bottom:723.431550px;}
.y10{bottom:727.694250px;}
.y2d{bottom:743.231550px;}
.yf{bottom:749.294250px;}
.y2c{bottom:763.031550px;}
.ye{bottom:770.894250px;}
.y2b{bottom:782.831550px;}
.yd{bottom:809.971950px;}
.y2a{bottom:815.682750px;}
.ya{bottom:880.339200px;}
.y53{bottom:894.248100px;}
.y9{bottom:899.838900px;}
.y52{bottom:916.010100px;}
.y8{bottom:919.338600px;}
.y51{bottom:937.448100px;}
.y7{bottom:938.838300px;}
.y6{bottom:958.338000px;}
.y50{bottom:959.048100px;}
.y5{bottom:977.837700px;}
.y4f{bottom:980.810100px;}
.y4{bottom:997.337400px;}
.y4e{bottom:1013.723100px;}
.y3{bottom:1016.837100px;}
.y4d{bottom:1035.323100px;}
.y2{bottom:1036.336800px;}
.y4c{bottom:1056.923100px;}
.y4b{bottom:1078.685100px;}
.yb{bottom:1090.959750px;}
.y4a{bottom:1100.285100px;}
.y49{bottom:1136.408100px;}
.y28{bottom:1210.098300px;}
.h9{height:18.913800px;}
.ha{height:37.476000px;}
.h8{height:41.640000px;}
.h2{height:45.606000px;}
.h7{height:45.804000px;}
.hb{height:49.752000px;}
.h5{height:49.968000px;}
.h6{height:80.511432px;}
.h4{height:124.920000px;}
.h3{height:149.904000px;}
.h1{height:1262.835000px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w2{width:892.707000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:42.313050px;}
.x3{left:63.572850px;}
.x4{left:546.412800px;}
.x2{left:579.110400px;}
@media print{
.v2{vertical-align:-16.499733pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.833067pt;}
.ls9{letter-spacing:-0.960000pt;}
.lsc{letter-spacing:-0.012800pt;}
.ls1{letter-spacing:-0.011733pt;}
.ls4{letter-spacing:-0.010342pt;}
.ls5{letter-spacing:-0.007467pt;}
.ls3{letter-spacing:-0.006400pt;}
.ls8{letter-spacing:-0.005333pt;}
.lsa{letter-spacing:-0.004800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.004800pt;}
.ls0{letter-spacing:0.006400pt;}
.lsb{letter-spacing:0.168000pt;}
.ls6{letter-spacing:0.693333pt;}
.ws0{word-spacing:-44.480000pt;}
.ws17{word-spacing:-15.520000pt;}
.ws15{word-spacing:-14.826667pt;}
.ws18{word-spacing:-6.672000pt;}
.ws1d{word-spacing:-6.506667pt;}
.ws16{word-spacing:-3.850667pt;}
.ws1a{word-spacing:-1.537067pt;}
.ws24{word-spacing:-1.414400pt;}
.ws26{word-spacing:-1.139200pt;}
.ws25{word-spacing:-0.979200pt;}
.wsf{word-spacing:0.000000pt;}
.ws11{word-spacing:0.268800pt;}
.ws1f{word-spacing:1.329600pt;}
.ws1e{word-spacing:1.334400pt;}
.ws21{word-spacing:1.376000pt;}
.ws1c{word-spacing:1.482667pt;}
.ws9{word-spacing:1.630933pt;}
.wse{word-spacing:1.779200pt;}
.ws14{word-spacing:2.075733pt;}
.ws1b{word-spacing:2.505067pt;}
.wsd{word-spacing:2.924800pt;}
.ws13{word-spacing:3.423158pt;}
.ws23{word-spacing:3.571200pt;}
.ws22{word-spacing:3.577600pt;}
.ws2{word-spacing:3.983467pt;}
.wsb{word-spacing:4.448000pt;}
.ws12{word-spacing:4.588800pt;}
.ws20{word-spacing:5.177600pt;}
.wsa{word-spacing:5.337600pt;}
.ws7{word-spacing:5.761067pt;}
.ws4{word-spacing:8.518400pt;}
.ws10{word-spacing:11.219200pt;}
.ws5{word-spacing:11.486933pt;}
.wsc{word-spacing:11.718400pt;}
.ws3{word-spacing:11.991467pt;}
.ws19{word-spacing:12.683733pt;}
.ws6{word-spacing:13.024000pt;}
.ws1{word-spacing:14.596267pt;}
.ws8{word-spacing:19.864533pt;}
._e{margin-left:-23.984000pt;}
._1a{margin-left:-10.933333pt;}
._c{margin-left:-9.616000pt;}
._b{margin-left:-7.680000pt;}
._18{margin-left:-6.742933pt;}
._1{margin-left:-5.843200pt;}
._4{margin-left:-4.687467pt;}
._16{margin-left:-3.260800pt;}
._0{margin-left:-2.323200pt;}
._2{margin-left:-1.402133pt;}
._3{width:1.220267pt;}
._f{width:2.148267pt;}
._d{width:3.200000pt;}
._14{width:5.027733pt;}
._11{width:6.336533pt;}
._19{width:9.597333pt;}
._17{width:10.587200pt;}
._12{width:11.902400pt;}
._7{width:13.076800pt;}
._5{width:14.437867pt;}
._a{width:15.611200pt;}
._9{width:16.614400pt;}
._8{width:22.228800pt;}
._6{width:23.320000pt;}
._10{width:52.934400pt;}
._15{width:54.824000pt;}
._13{width:90.955047pt;}
.fs8{font-size:24.000000pt;}
.fs4{font-size:32.000000pt;}
.fs9{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs5{font-size:103.418667pt;}
.fs2{font-size:160.000000pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.073333pt;}
.y29{bottom:23.171333pt;}
.yc{bottom:26.831067pt;}
.y48{bottom:96.261200pt;}
.y47{bottom:110.661200pt;}
.y27{bottom:127.093867pt;}
.y46{bottom:129.186133pt;}
.y26{bottom:146.293867pt;}
.y45{bottom:159.339467pt;}
.y25{bottom:169.028267pt;}
.y44{bottom:175.339467pt;}
.y24{bottom:188.228267pt;}
.y43{bottom:198.284800pt;}
.y23{bottom:207.428267pt;}
.y42{bottom:221.230133pt;}
.y41{bottom:237.230133pt;}
.y22{bottom:245.828267pt;}
.y40{bottom:260.175467pt;}
.y21{bottom:268.562667pt;}
.y3f{bottom:283.120800pt;}
.y20{bottom:287.762667pt;}
.y3e{bottom:299.120800pt;}
.y1f{bottom:310.497067pt;}
.y3d{bottom:322.066133pt;}
.y1e{bottom:333.231467pt;}
.y3c{bottom:338.066133pt;}
.y3b{bottom:354.066133pt;}
.y1d{bottom:355.965867pt;}
.y3a{bottom:370.066133pt;}
.y1c{bottom:375.165867pt;}
.y39{bottom:400.477600pt;}
.y1b{bottom:413.565733pt;}
.y1a{bottom:436.300133pt;}
.y19{bottom:455.500133pt;}
.y38{bottom:464.476267pt;}
.y18{bottom:478.234533pt;}
.y37{bottom:482.076267pt;}
.y36{bottom:499.676267pt;}
.y17{bottom:500.968933pt;}
.y35{bottom:517.276267pt;}
.y16{bottom:520.168933pt;}
.y34{bottom:534.876267pt;}
.y15{bottom:542.903333pt;}
.y33{bottom:552.476267pt;}
.y14{bottom:562.103333pt;}
.y32{bottom:570.076267pt;}
.y13{bottom:584.837733pt;}
.y31{bottom:587.676267pt;}
.y12{bottom:604.037733pt;}
.y30{bottom:605.276267pt;}
.y2f{bottom:622.876267pt;}
.y11{bottom:626.772133pt;}
.y2e{bottom:643.050267pt;}
.y10{bottom:646.839333pt;}
.y2d{bottom:660.650267pt;}
.yf{bottom:666.039333pt;}
.y2c{bottom:678.250267pt;}
.ye{bottom:685.239333pt;}
.y2b{bottom:695.850267pt;}
.yd{bottom:719.975067pt;}
.y2a{bottom:725.051333pt;}
.ya{bottom:782.523733pt;}
.y53{bottom:794.887200pt;}
.y9{bottom:799.856800pt;}
.y52{bottom:814.231200pt;}
.y8{bottom:817.189867pt;}
.y51{bottom:833.287200pt;}
.y7{bottom:834.522933pt;}
.y6{bottom:851.856000pt;}
.y50{bottom:852.487200pt;}
.y5{bottom:869.189067pt;}
.y4f{bottom:871.831200pt;}
.y4{bottom:886.522133pt;}
.y4e{bottom:901.087200pt;}
.y3{bottom:903.855200pt;}
.y4d{bottom:920.287200pt;}
.y2{bottom:921.188267pt;}
.y4c{bottom:939.487200pt;}
.y4b{bottom:958.831200pt;}
.yb{bottom:969.742000pt;}
.y4a{bottom:978.031200pt;}
.y49{bottom:1010.140533pt;}
.y28{bottom:1075.642933pt;}
.h9{height:16.812267pt;}
.ha{height:33.312000pt;}
.h8{height:37.013333pt;}
.h2{height:40.538667pt;}
.h7{height:40.714667pt;}
.hb{height:44.224000pt;}
.h5{height:44.416000pt;}
.h6{height:71.565717pt;}
.h4{height:111.040000pt;}
.h3{height:133.248000pt;}
.h1{height:1122.520000pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w2{width:793.517333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:37.611600pt;}
.x3{left:56.509200pt;}
.x4{left:485.700267pt;}
.x2{left:514.764800pt;}
}




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