
    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_b2a9bed2299b06c0ee8f3b67.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.121582;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_7ce9226f944ed7970a0827f0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_38584d92c31d59097cdb03fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.885000;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_98dd379358144d4187c594d2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.931000;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_4134f4fb889e8cc7c285cc60.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.119286;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_98dd379358144d4187c594d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.931000;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_81cfc65bbfade2cf14065950.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.113770;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_72dcdd726caec4080fd00772.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.121582;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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-1.290000px;}
.ls3{letter-spacing:-0.292500px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.117000px;}
.ls0{letter-spacing:0.292500px;}
.ls7{letter-spacing:0.351000px;}
.ls4{letter-spacing:0.468000px;}
.ls5{letter-spacing:0.585000px;}
.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;}
}
.ws24{word-spacing:-14.625000px;}
.ws0{word-spacing:-10.968750px;}
.ws1{word-spacing:0.000000px;}
.ws21{word-spacing:0.058500px;}
.ws16{word-spacing:0.117000px;}
.ws30{word-spacing:0.234000px;}
.ws13{word-spacing:0.526500px;}
.ws1f{word-spacing:0.819000px;}
.ws34{word-spacing:0.936000px;}
.ws2c{word-spacing:1.053000px;}
.ws14{word-spacing:1.111500px;}
.wsb{word-spacing:1.521000px;}
.wsd{word-spacing:1.638000px;}
.ws2e{word-spacing:1.755000px;}
.ws12{word-spacing:1.930500px;}
.ws10{word-spacing:2.047500px;}
.ws11{word-spacing:2.106000px;}
.ws28{word-spacing:2.223000px;}
.ws20{word-spacing:2.281500px;}
.ws8{word-spacing:2.515500px;}
.ws5{word-spacing:2.709000px;}
.wsc{word-spacing:2.866500px;}
.wsa{word-spacing:2.925000px;}
.ws17{word-spacing:3.042000px;}
.wse{word-spacing:3.100500px;}
.ws19{word-spacing:3.393000px;}
.ws31{word-spacing:3.627000px;}
.ws7{word-spacing:3.685500px;}
.wsf{word-spacing:3.802500px;}
.ws1a{word-spacing:3.861000px;}
.ws26{word-spacing:4.095000px;}
.ws9{word-spacing:4.212000px;}
.ws1e{word-spacing:4.270500px;}
.ws33{word-spacing:4.504500px;}
.ws1b{word-spacing:4.563000px;}
.ws1c{word-spacing:4.680000px;}
.ws29{word-spacing:4.972500px;}
.ws22{word-spacing:5.265000px;}
.ws23{word-spacing:5.323500px;}
.ws18{word-spacing:5.382000px;}
.ws27{word-spacing:5.616000px;}
.ws2b{word-spacing:5.674500px;}
.ws15{word-spacing:5.908500px;}
.ws6{word-spacing:6.318000px;}
.ws1d{word-spacing:6.376500px;}
.ws2a{word-spacing:6.610500px;}
.ws32{word-spacing:6.727500px;}
.ws2f{word-spacing:6.786000px;}
.ws2d{word-spacing:7.020000px;}
.ws25{word-spacing:7.312500px;}
.ws4{word-spacing:10.656000px;}
.ws2{word-spacing:12.750000px;}
.ws3{word-spacing:13.344000px;}
._2{margin-left:-18.193500px;}
._4{margin-left:-1.023750px;}
._1{width:13.344000px;}
._0{width:867.357000px;}
._3{width:1150.098000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:43.875000px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:51.000000px;}
.fs6{font-size:57.000000px;}
.fs4{font-size:58.500000px;}
.fs3{font-size:64.500000px;}
.fs1{font-size:171.052800px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.647450px;}
.y2d{bottom:130.013925px;}
.y2c{bottom:146.320800px;}
.y2b{bottom:162.627675px;}
.y2a{bottom:178.934550px;}
.y29{bottom:195.241425px;}
.y28{bottom:211.548300px;}
.y27{bottom:227.855175px;}
.y26{bottom:244.162050px;}
.y4f{bottom:256.652325px;}
.y25{bottom:260.468925px;}
.y24{bottom:276.775800px;}
.y4e{bottom:289.266075px;}
.y23{bottom:293.082675px;}
.y4d{bottom:305.572950px;}
.y22{bottom:309.389550px;}
.y4c{bottom:321.879825px;}
.y21{bottom:325.696425px;}
.y4b{bottom:338.186700px;}
.y20{bottom:342.003300px;}
.y4a{bottom:354.493575px;}
.y1f{bottom:358.310175px;}
.y49{bottom:370.800450px;}
.y1e{bottom:374.617050px;}
.y48{bottom:387.107325px;}
.y1d{bottom:390.923925px;}
.y47{bottom:403.414200px;}
.y1c{bottom:407.230800px;}
.y46{bottom:419.721075px;}
.y1b{bottom:423.537675px;}
.y45{bottom:436.027950px;}
.y1a{bottom:439.844550px;}
.y44{bottom:452.334825px;}
.y19{bottom:456.151425px;}
.y43{bottom:468.641700px;}
.y18{bottom:472.458300px;}
.y42{bottom:484.948575px;}
.y17{bottom:488.765175px;}
.y41{bottom:501.255450px;}
.y16{bottom:505.072050px;}
.y40{bottom:517.562325px;}
.y15{bottom:521.378925px;}
.y3f{bottom:533.869200px;}
.y14{bottom:537.685800px;}
.y3e{bottom:550.176075px;}
.y13{bottom:553.992675px;}
.y3d{bottom:566.482950px;}
.y12{bottom:570.299550px;}
.y3c{bottom:582.789825px;}
.y11{bottom:586.606425px;}
.y3b{bottom:599.096700px;}
.y10{bottom:602.913300px;}
.y3a{bottom:615.403575px;}
.yf{bottom:619.220175px;}
.y39{bottom:631.710450px;}
.ye{bottom:635.527050px;}
.y38{bottom:648.017325px;}
.yd{bottom:651.833925px;}
.y37{bottom:664.324200px;}
.yc{bottom:668.133300px;}
.y36{bottom:680.631075px;}
.yb{bottom:684.440175px;}
.y35{bottom:696.937950px;}
.ya{bottom:700.747050px;}
.y34{bottom:713.244825px;}
.y9{bottom:717.053925px;}
.y33{bottom:729.551700px;}
.y8{bottom:733.360800px;}
.y32{bottom:745.858575px;}
.y31{bottom:762.165450px;}
.y7{bottom:776.061825px;}
.y30{bottom:778.472325px;}
.y6{bottom:793.654200px;}
.y2f{bottom:794.779200px;}
.y2e{bottom:831.202200px;}
.y3{bottom:835.327800px;}
.y2{bottom:855.704700px;}
.y5{bottom:867.890850px;}
.y4{bottom:881.390850px;}
.h5{height:35.328000px;}
.h4{height:44.496000px;}
.h2{height:45.745605px;}
.h9{height:51.127441px;}
.ha{height:51.844482px;}
.h7{height:52.472900px;}
.h8{height:52.502900px;}
.h6{height:57.854736px;}
.h3{height:148.644883px;}
.h1{height:935.250000px;}
.h0{height:935.433000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x1{left:93.542100px;}
.x5{left:107.148450px;}
.x4{left:119.055150px;}
.x6{left:132.655650px;}
.x7{left:371.979150px;}
.x3{left:401.928900px;}
.x2{left:507.059400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-1.146667pt;}
.ls3{letter-spacing:-0.260000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.104000pt;}
.ls0{letter-spacing:0.260000pt;}
.ls7{letter-spacing:0.312000pt;}
.ls4{letter-spacing:0.416000pt;}
.ls5{letter-spacing:0.520000pt;}
.ws24{word-spacing:-13.000000pt;}
.ws0{word-spacing:-9.750000pt;}
.ws1{word-spacing:0.000000pt;}
.ws21{word-spacing:0.052000pt;}
.ws16{word-spacing:0.104000pt;}
.ws30{word-spacing:0.208000pt;}
.ws13{word-spacing:0.468000pt;}
.ws1f{word-spacing:0.728000pt;}
.ws34{word-spacing:0.832000pt;}
.ws2c{word-spacing:0.936000pt;}
.ws14{word-spacing:0.988000pt;}
.wsb{word-spacing:1.352000pt;}
.wsd{word-spacing:1.456000pt;}
.ws2e{word-spacing:1.560000pt;}
.ws12{word-spacing:1.716000pt;}
.ws10{word-spacing:1.820000pt;}
.ws11{word-spacing:1.872000pt;}
.ws28{word-spacing:1.976000pt;}
.ws20{word-spacing:2.028000pt;}
.ws8{word-spacing:2.236000pt;}
.ws5{word-spacing:2.408000pt;}
.wsc{word-spacing:2.548000pt;}
.wsa{word-spacing:2.600000pt;}
.ws17{word-spacing:2.704000pt;}
.wse{word-spacing:2.756000pt;}
.ws19{word-spacing:3.016000pt;}
.ws31{word-spacing:3.224000pt;}
.ws7{word-spacing:3.276000pt;}
.wsf{word-spacing:3.380000pt;}
.ws1a{word-spacing:3.432000pt;}
.ws26{word-spacing:3.640000pt;}
.ws9{word-spacing:3.744000pt;}
.ws1e{word-spacing:3.796000pt;}
.ws33{word-spacing:4.004000pt;}
.ws1b{word-spacing:4.056000pt;}
.ws1c{word-spacing:4.160000pt;}
.ws29{word-spacing:4.420000pt;}
.ws22{word-spacing:4.680000pt;}
.ws23{word-spacing:4.732000pt;}
.ws18{word-spacing:4.784000pt;}
.ws27{word-spacing:4.992000pt;}
.ws2b{word-spacing:5.044000pt;}
.ws15{word-spacing:5.252000pt;}
.ws6{word-spacing:5.616000pt;}
.ws1d{word-spacing:5.668000pt;}
.ws2a{word-spacing:5.876000pt;}
.ws32{word-spacing:5.980000pt;}
.ws2f{word-spacing:6.032000pt;}
.ws2d{word-spacing:6.240000pt;}
.ws25{word-spacing:6.500000pt;}
.ws4{word-spacing:9.472000pt;}
.ws2{word-spacing:11.333333pt;}
.ws3{word-spacing:11.861333pt;}
._2{margin-left:-16.172000pt;}
._4{margin-left:-0.910000pt;}
._1{width:11.861333pt;}
._0{width:770.984000pt;}
._3{width:1022.309333pt;}
.fs5{font-size:39.000000pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:45.333333pt;}
.fs6{font-size:50.666667pt;}
.fs4{font-size:52.000000pt;}
.fs3{font-size:57.333333pt;}
.fs1{font-size:152.046933pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:76.131067pt;}
.y2d{bottom:115.567933pt;}
.y2c{bottom:130.062933pt;}
.y2b{bottom:144.557933pt;}
.y2a{bottom:159.052933pt;}
.y29{bottom:173.547933pt;}
.y28{bottom:188.042933pt;}
.y27{bottom:202.537933pt;}
.y26{bottom:217.032933pt;}
.y4f{bottom:228.135400pt;}
.y25{bottom:231.527933pt;}
.y24{bottom:246.022933pt;}
.y4e{bottom:257.125400pt;}
.y23{bottom:260.517933pt;}
.y4d{bottom:271.620400pt;}
.y22{bottom:275.012933pt;}
.y4c{bottom:286.115400pt;}
.y21{bottom:289.507933pt;}
.y4b{bottom:300.610400pt;}
.y20{bottom:304.002933pt;}
.y4a{bottom:315.105400pt;}
.y1f{bottom:318.497933pt;}
.y49{bottom:329.600400pt;}
.y1e{bottom:332.992933pt;}
.y48{bottom:344.095400pt;}
.y1d{bottom:347.487933pt;}
.y47{bottom:358.590400pt;}
.y1c{bottom:361.982933pt;}
.y46{bottom:373.085400pt;}
.y1b{bottom:376.477933pt;}
.y45{bottom:387.580400pt;}
.y1a{bottom:390.972933pt;}
.y44{bottom:402.075400pt;}
.y19{bottom:405.467933pt;}
.y43{bottom:416.570400pt;}
.y18{bottom:419.962933pt;}
.y42{bottom:431.065400pt;}
.y17{bottom:434.457933pt;}
.y41{bottom:445.560400pt;}
.y16{bottom:448.952933pt;}
.y40{bottom:460.055400pt;}
.y15{bottom:463.447933pt;}
.y3f{bottom:474.550400pt;}
.y14{bottom:477.942933pt;}
.y3e{bottom:489.045400pt;}
.y13{bottom:492.437933pt;}
.y3d{bottom:503.540400pt;}
.y12{bottom:506.932933pt;}
.y3c{bottom:518.035400pt;}
.y11{bottom:521.427933pt;}
.y3b{bottom:532.530400pt;}
.y10{bottom:535.922933pt;}
.y3a{bottom:547.025400pt;}
.yf{bottom:550.417933pt;}
.y39{bottom:561.520400pt;}
.ye{bottom:564.912933pt;}
.y38{bottom:576.015400pt;}
.yd{bottom:579.407933pt;}
.y37{bottom:590.510400pt;}
.yc{bottom:593.896267pt;}
.y36{bottom:605.005400pt;}
.yb{bottom:608.391267pt;}
.y35{bottom:619.500400pt;}
.ya{bottom:622.886267pt;}
.y34{bottom:633.995400pt;}
.y9{bottom:637.381267pt;}
.y33{bottom:648.490400pt;}
.y8{bottom:651.876267pt;}
.y32{bottom:662.985400pt;}
.y31{bottom:677.480400pt;}
.y7{bottom:689.832733pt;}
.y30{bottom:691.975400pt;}
.y6{bottom:705.470400pt;}
.y2f{bottom:706.470400pt;}
.y2e{bottom:738.846400pt;}
.y3{bottom:742.513600pt;}
.y2{bottom:760.626400pt;}
.y5{bottom:771.458533pt;}
.y4{bottom:783.458533pt;}
.h5{height:31.402667pt;}
.h4{height:39.552000pt;}
.h2{height:40.662760pt;}
.h9{height:45.446615pt;}
.ha{height:46.083984pt;}
.h7{height:46.642578pt;}
.h8{height:46.669245pt;}
.h6{height:51.426432pt;}
.h3{height:132.128785pt;}
.h1{height:831.333333pt;}
.h0{height:831.496000pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x1{left:83.148533pt;}
.x5{left:95.243067pt;}
.x4{left:105.826800pt;}
.x6{left:117.916133pt;}
.x7{left:330.648133pt;}
.x3{left:357.270133pt;}
.x2{left:450.719467pt;}
}




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