
    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_dfb14dd835a426958ba3bbb9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.968000;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_83c3653b86f2822509ba129f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.703000;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_b354e86cf81e5bb5641bfc33.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.996000;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_c51575de5545c130704f2885.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.998000;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_51af8e7c365fcdf1571ae0ee.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.121000;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_4433af5d7147c397eaf5db88.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.973000;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);}
.m2{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,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;}
}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-12.600000px;}
.wsf{word-spacing:-3.540000px;}
.ws2c{word-spacing:-1.188000px;}
.ws10{word-spacing:-1.140000px;}
.ws4{word-spacing:-1.056000px;}
.ws1e{word-spacing:-0.330000px;}
.ws9{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
.ws2b{word-spacing:0.264000px;}
.wsb{word-spacing:0.330000px;}
.ws1d{word-spacing:0.528000px;}
.ws27{word-spacing:0.990000px;}
.ws14{word-spacing:1.380000px;}
.ws23{word-spacing:2.046000px;}
.ws15{word-spacing:2.160000px;}
.ws26{word-spacing:2.244000px;}
.ws6{word-spacing:2.508000px;}
.ws1b{word-spacing:2.574000px;}
.ws2d{word-spacing:2.640000px;}
.ws1c{word-spacing:2.772000px;}
.ws2e{word-spacing:3.498000px;}
.ws5{word-spacing:3.630000px;}
.ws29{word-spacing:3.828000px;}
.ws1f{word-spacing:3.960000px;}
.ws20{word-spacing:4.158000px;}
.ws8{word-spacing:4.290000px;}
.ws22{word-spacing:4.620000px;}
.ws12{word-spacing:4.920000px;}
.ws2a{word-spacing:5.148000px;}
.wsd{word-spacing:5.220000px;}
.ws21{word-spacing:5.478000px;}
.wsa{word-spacing:6.006000px;}
.ws11{word-spacing:6.240000px;}
.ws28{word-spacing:6.402000px;}
.ws24{word-spacing:6.534000px;}
.ws7{word-spacing:7.590000px;}
.ws16{word-spacing:8.052000px;}
.ws30{word-spacing:9.768000px;}
.ws13{word-spacing:10.680000px;}
.wsc{word-spacing:11.580000px;}
.ws3{word-spacing:13.332000px;}
.ws19{word-spacing:13.464000px;}
.ws2f{word-spacing:13.530000px;}
.ws31{word-spacing:14.388000px;}
.ws1a{word-spacing:16.500000px;}
.wse{word-spacing:17.160000px;}
.ws25{word-spacing:17.688000px;}
.ws18{word-spacing:18.744000px;}
.ws17{word-spacing:19.866000px;}
._0{margin-left:-5.286600px;}
._2{margin-left:-3.607200px;}
._1{margin-left:-1.650000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:36.000000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:50.400000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:90.409800px;}
.y2{bottom:92.659800px;}
.y1{bottom:113.982450px;}
.y47{bottom:131.085900px;}
.y22{bottom:133.327800px;}
.y46{bottom:146.085900px;}
.y21{bottom:157.335300px;}
.y45{bottom:161.085900px;}
.y20{bottom:181.342800px;}
.y1f{bottom:205.350300px;}
.y1e{bottom:229.357800px;}
.y1d{bottom:253.365300px;}
.y1c{bottom:277.372800px;}
.y1b{bottom:301.380300px;}
.y44{bottom:316.093800px;}
.y1a{bottom:325.387800px;}
.y43{bottom:334.093800px;}
.y19{bottom:349.395300px;}
.y42{bottom:360.597750px;}
.y18{bottom:386.151150px;}
.y17{bottom:404.151150px;}
.y41{bottom:412.426050px;}
.y16{bottom:422.151150px;}
.y40{bottom:436.433550px;}
.y15{bottom:440.151150px;}
.y14{bottom:458.151150px;}
.y3f{bottom:460.441050px;}
.y13{bottom:476.151150px;}
.y3e{bottom:484.448550px;}
.y12{bottom:494.151150px;}
.y3d{bottom:508.456050px;}
.y11{bottom:512.151150px;}
.y10{bottom:530.151150px;}
.y3c{bottom:532.463550px;}
.yf{bottom:548.151150px;}
.y3b{bottom:556.471050px;}
.ye{bottom:566.151150px;}
.y3a{bottom:580.478550px;}
.yd{bottom:596.839500px;}
.y39{bottom:604.486050px;}
.yc{bottom:620.847000px;}
.y38{bottom:628.493550px;}
.yb{bottom:644.854500px;}
.y37{bottom:652.501050px;}
.ya{bottom:668.862000px;}
.y36{bottom:676.508550px;}
.y9{bottom:692.869500px;}
.y35{bottom:700.516050px;}
.y8{bottom:716.877000px;}
.y34{bottom:724.523550px;}
.y7{bottom:740.884500px;}
.y33{bottom:748.531050px;}
.y6{bottom:764.892000px;}
.y32{bottom:772.538550px;}
.y5{bottom:788.899500px;}
.y31{bottom:796.546050px;}
.y4{bottom:812.907000px;}
.y30{bottom:820.553550px;}
.y2f{bottom:844.561050px;}
.y2e{bottom:868.568550px;}
.y3{bottom:882.166950px;}
.y2d{bottom:892.576050px;}
.y2c{bottom:916.583550px;}
.y2b{bottom:940.591050px;}
.y26{bottom:952.309500px;}
.y2a{bottom:964.598550px;}
.y25{bottom:968.806500px;}
.y29{bottom:988.606050px;}
.y24{bottom:992.310000px;}
.y28{bottom:1012.613550px;}
.y23{bottom:1013.061900px;}
.h3{height:26.640000px;}
.h2{height:35.520000px;}
.hc{height:35.664000px;}
.ha{height:39.312000px;}
.h9{height:39.960000px;}
.h7{height:44.400000px;}
.hb{height:44.580000px;}
.h5{height:48.840000px;}
.h6{height:49.038000px;}
.h8{height:64.080000px;}
.h4{height:74.520000px;}
.h0{height:1148.031000px;}
.h1{height:1148.250000px;}
.w1{width:871.500000px;}
.w0{width:871.653000px;}
.x0{left:0.000000px;}
.x5{left:85.038600px;}
.x7{left:106.299150px;}
.x4{left:127.559100px;}
.x3{left:159.944550px;}
.x6{left:170.078700px;}
.x8{left:297.637800px;}
.x9{left:340.158300px;}
.xa{left:361.417800px;}
.x2{left:692.071050px;}
.x1{left:777.590400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-11.200000pt;}
.wsf{word-spacing:-3.146667pt;}
.ws2c{word-spacing:-1.056000pt;}
.ws10{word-spacing:-1.013333pt;}
.ws4{word-spacing:-0.938667pt;}
.ws1e{word-spacing:-0.293333pt;}
.ws9{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.234667pt;}
.wsb{word-spacing:0.293333pt;}
.ws1d{word-spacing:0.469333pt;}
.ws27{word-spacing:0.880000pt;}
.ws14{word-spacing:1.226667pt;}
.ws23{word-spacing:1.818667pt;}
.ws15{word-spacing:1.920000pt;}
.ws26{word-spacing:1.994667pt;}
.ws6{word-spacing:2.229333pt;}
.ws1b{word-spacing:2.288000pt;}
.ws2d{word-spacing:2.346667pt;}
.ws1c{word-spacing:2.464000pt;}
.ws2e{word-spacing:3.109333pt;}
.ws5{word-spacing:3.226667pt;}
.ws29{word-spacing:3.402667pt;}
.ws1f{word-spacing:3.520000pt;}
.ws20{word-spacing:3.696000pt;}
.ws8{word-spacing:3.813333pt;}
.ws22{word-spacing:4.106667pt;}
.ws12{word-spacing:4.373333pt;}
.ws2a{word-spacing:4.576000pt;}
.wsd{word-spacing:4.640000pt;}
.ws21{word-spacing:4.869333pt;}
.wsa{word-spacing:5.338667pt;}
.ws11{word-spacing:5.546667pt;}
.ws28{word-spacing:5.690667pt;}
.ws24{word-spacing:5.808000pt;}
.ws7{word-spacing:6.746667pt;}
.ws16{word-spacing:7.157333pt;}
.ws30{word-spacing:8.682667pt;}
.ws13{word-spacing:9.493333pt;}
.wsc{word-spacing:10.293333pt;}
.ws3{word-spacing:11.850667pt;}
.ws19{word-spacing:11.968000pt;}
.ws2f{word-spacing:12.026667pt;}
.ws31{word-spacing:12.789333pt;}
.ws1a{word-spacing:14.666667pt;}
.wse{word-spacing:15.253333pt;}
.ws25{word-spacing:15.722667pt;}
.ws18{word-spacing:16.661333pt;}
.ws17{word-spacing:17.658667pt;}
._0{margin-left:-4.699200pt;}
._2{margin-left:-3.206400pt;}
._1{margin-left:-1.466667pt;}
.fs1{font-size:32.000000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:44.800000pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:80.364267pt;}
.y2{bottom:82.364267pt;}
.y1{bottom:101.317733pt;}
.y47{bottom:116.520800pt;}
.y22{bottom:118.513600pt;}
.y46{bottom:129.854133pt;}
.y21{bottom:139.853600pt;}
.y45{bottom:143.187467pt;}
.y20{bottom:161.193600pt;}
.y1f{bottom:182.533600pt;}
.y1e{bottom:203.873600pt;}
.y1d{bottom:225.213600pt;}
.y1c{bottom:246.553600pt;}
.y1b{bottom:267.893600pt;}
.y44{bottom:280.972267pt;}
.y1a{bottom:289.233600pt;}
.y43{bottom:296.972267pt;}
.y19{bottom:310.573600pt;}
.y42{bottom:320.531333pt;}
.y18{bottom:343.245467pt;}
.y17{bottom:359.245467pt;}
.y41{bottom:366.600933pt;}
.y16{bottom:375.245467pt;}
.y40{bottom:387.940933pt;}
.y15{bottom:391.245467pt;}
.y14{bottom:407.245467pt;}
.y3f{bottom:409.280933pt;}
.y13{bottom:423.245467pt;}
.y3e{bottom:430.620933pt;}
.y12{bottom:439.245467pt;}
.y3d{bottom:451.960933pt;}
.y11{bottom:455.245467pt;}
.y10{bottom:471.245467pt;}
.y3c{bottom:473.300933pt;}
.yf{bottom:487.245467pt;}
.y3b{bottom:494.640933pt;}
.ye{bottom:503.245467pt;}
.y3a{bottom:515.980933pt;}
.yd{bottom:530.524000pt;}
.y39{bottom:537.320933pt;}
.yc{bottom:551.864000pt;}
.y38{bottom:558.660933pt;}
.yb{bottom:573.204000pt;}
.y37{bottom:580.000933pt;}
.ya{bottom:594.544000pt;}
.y36{bottom:601.340933pt;}
.y9{bottom:615.884000pt;}
.y35{bottom:622.680933pt;}
.y8{bottom:637.224000pt;}
.y34{bottom:644.020933pt;}
.y7{bottom:658.564000pt;}
.y33{bottom:665.360933pt;}
.y6{bottom:679.904000pt;}
.y32{bottom:686.700933pt;}
.y5{bottom:701.244000pt;}
.y31{bottom:708.040933pt;}
.y4{bottom:722.584000pt;}
.y30{bottom:729.380933pt;}
.y2f{bottom:750.720933pt;}
.y2e{bottom:772.060933pt;}
.y3{bottom:784.148400pt;}
.y2d{bottom:793.400933pt;}
.y2c{bottom:814.740933pt;}
.y2b{bottom:836.080933pt;}
.y26{bottom:846.497333pt;}
.y2a{bottom:857.420933pt;}
.y25{bottom:861.161333pt;}
.y29{bottom:878.760933pt;}
.y24{bottom:882.053333pt;}
.y28{bottom:900.100933pt;}
.y23{bottom:900.499467pt;}
.h3{height:23.680000pt;}
.h2{height:31.573333pt;}
.hc{height:31.701333pt;}
.ha{height:34.944000pt;}
.h9{height:35.520000pt;}
.h7{height:39.466667pt;}
.hb{height:39.626667pt;}
.h5{height:43.413333pt;}
.h6{height:43.589333pt;}
.h8{height:56.960000pt;}
.h4{height:66.240000pt;}
.h0{height:1020.472000pt;}
.h1{height:1020.666667pt;}
.w1{width:774.666667pt;}
.w0{width:774.802667pt;}
.x0{left:0.000000pt;}
.x5{left:75.589867pt;}
.x7{left:94.488133pt;}
.x4{left:113.385867pt;}
.x3{left:142.172933pt;}
.x6{left:151.181067pt;}
.x8{left:264.566933pt;}
.x9{left:302.362933pt;}
.xa{left:321.260267pt;}
.x2{left:615.174267pt;}
.x1{left:691.191467pt;}
}




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