
    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_68c5b22ca33d06835a29685c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_eb110860e5c8cf4520f8f898.woff')format("woff");}.ff2{font-family:ff2;line-height:0.975000;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_532f07bb3ac55b75ed5c4a7b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.900000;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_cf70266105e34a0e056ded47.woff')format("woff");}.ff4{font-family:ff4;line-height:0.854000;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);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.989200px;}
.ls0{letter-spacing:14.920090px;}
.ls3{letter-spacing:24.089567px;}
.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;}
}
.ws22{word-spacing:-19.941274px;}
.ws1d{word-spacing:-11.955150px;}
.ws12{word-spacing:-2.630126px;}
.ws15{word-spacing:-1.853044px;}
.wsf{word-spacing:-1.554166px;}
.wsc{word-spacing:-1.255288px;}
.ws26{word-spacing:-1.195512px;}
.ws7{word-spacing:-1.016185px;}
.ws1c{word-spacing:-0.298878px;}
.ws1b{word-spacing:-0.239102px;}
.ws1a{word-spacing:-0.179327px;}
.ws1e{word-spacing:-0.119551px;}
.ws0{word-spacing:0.000000px;}
.wsa{word-spacing:0.059776px;}
.ws3{word-spacing:0.239102px;}
.ws27{word-spacing:0.836858px;}
.wsd{word-spacing:0.896634px;}
.ws25{word-spacing:0.956410px;}
.ws17{word-spacing:1.255288px;}
.ws9{word-spacing:1.494390px;}
.ws4{word-spacing:1.673717px;}
.ws28{word-spacing:1.733492px;}
.ws11{word-spacing:2.271473px;}
.ws14{word-spacing:2.630126px;}
.ws20{word-spacing:2.749678px;}
.ws1f{word-spacing:2.809453px;}
.wsb{word-spacing:3.048556px;}
.ws13{word-spacing:4.064741px;}
.ws5{word-spacing:4.124516px;}
.ws16{word-spacing:4.244068px;}
.wse{word-spacing:5.080926px;}
.ws10{word-spacing:5.140702px;}
.ws18{word-spacing:5.320028px;}
.ws6{word-spacing:5.678682px;}
.ws2{word-spacing:5.738458px;}
.ws8{word-spacing:6.575316px;}
.ws19{word-spacing:6.874194px;}
.ws1{word-spacing:7.651277px;}
.ws23{word-spacing:9.085891px;}
.ws24{word-spacing:10.042301px;}
.ws21{word-spacing:15.924326px;}
._c{margin-left:-6.993709px;}
._5{margin-left:-4.782048px;}
._b{margin-left:-2.929004px;}
._0{margin-left:-1.793280px;}
._e{width:13.688612px;}
._d{width:15.183002px;}
._9{width:17.813129px;}
._2{width:19.606397px;}
._f{width:21.220350px;}
._4{width:22.595177px;}
._1{width:24.448220px;}
._8{width:25.823059px;}
._a{width:27.197898px;}
._7{width:28.214095px;}
._3{width:31.083324px;}
._10{width:35.686033px;}
._6{width:38.973691px;}
._11{width:59.775600px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs2{font-size:44.233800px;}
.fs6{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y2b{bottom:210.967500px;}
.y45{bottom:220.404000px;}
.y2a{bottom:225.646500px;}
.y44{bottom:238.336500px;}
.y29{bottom:240.324000px;}
.y28{bottom:255.001500px;}
.y43{bottom:256.270500px;}
.y27{bottom:278.269500px;}
.y42{bottom:279.300000px;}
.y26{bottom:296.202000px;}
.y41{bottom:297.232500px;}
.y25{bottom:314.134500px;}
.y40{bottom:320.262000px;}
.y24{bottom:332.067000px;}
.y3f{bottom:338.194500px;}
.y23{bottom:349.999500px;}
.y3e{bottom:361.224000px;}
.y22{bottom:367.933500px;}
.y3d{bottom:379.156500px;}
.y21{bottom:385.992000px;}
.y20{bottom:403.924500px;}
.y3c{bottom:404.562000px;}
.y1f{bottom:421.857000px;}
.y3b{bottom:432.955500px;}
.y1e{bottom:439.789500px;}
.y1d{bottom:457.848000px;}
.y3a{bottom:471.409500px;}
.y1c{bottom:475.782000px;}
.y39{bottom:489.342000px;}
.y1b{bottom:493.714500px;}
.y1a{bottom:511.647000px;}
.y38{bottom:514.746000px;}
.y19{bottom:529.579500px;}
.y18{bottom:547.512000px;}
.y17{bottom:565.444500px;}
.y37{bottom:571.516500px;}
.y16{bottom:583.504500px;}
.y36{bottom:589.449000px;}
.y15{bottom:601.437000px;}
.y14{bottom:619.369500px;}
.y13{bottom:637.302000px;}
.y12{bottom:655.234500px;}
.y11{bottom:673.167000px;}
.y10{bottom:691.101000px;}
.yf{bottom:709.033500px;}
.ye{bottom:726.966000px;}
.yd{bottom:744.898500px;}
.yc{bottom:762.831000px;}
.yb{bottom:780.765000px;}
.ya{bottom:798.823500px;}
.y9{bottom:816.756000px;}
.y8{bottom:834.688500px;}
.y7{bottom:852.621000px;}
.y6{bottom:870.553500px;}
.y5{bottom:888.487500px;}
.y4{bottom:936.433500px;}
.y35{bottom:941.136000px;}
.y3{bottom:954.366000px;}
.y34{bottom:959.068500px;}
.y33{bottom:977.001000px;}
.y32{bottom:994.933500px;}
.y31{bottom:1012.867500px;}
.y2{bottom:1018.215000px;}
.y30{bottom:1030.800000px;}
.y2f{bottom:1048.732500px;}
.y1{bottom:1051.092000px;}
.y2e{bottom:1066.665000px;}
.y2d{bottom:1084.597500px;}
.y2c{bottom:1136.902500px;}
.h6{height:24.675533px;}
.h4{height:37.013299px;}
.h5{height:41.125613px;}
.h9{height:41.484266px;}
.h7{height:45.250129px;}
.h3{height:52.128854px;}
.h8{height:54.300518px;}
.h2{height:71.065171px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:178.156500px;}
.x8{left:194.446500px;}
.x7{left:200.572500px;}
.x9{left:210.525000px;}
.x1{left:227.025000px;}
.x4{left:308.437500px;}
.x2{left:385.539000px;}
.x5{left:445.920000px;}
.x6{left:650.902500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.657067pt;}
.ls0{letter-spacing:13.262302pt;}
.ls3{letter-spacing:21.412948pt;}
.ws22{word-spacing:-17.725577pt;}
.ws1d{word-spacing:-10.626800pt;}
.ws12{word-spacing:-2.337890pt;}
.ws15{word-spacing:-1.647150pt;}
.wsf{word-spacing:-1.381481pt;}
.wsc{word-spacing:-1.115811pt;}
.ws26{word-spacing:-1.062677pt;}
.ws7{word-spacing:-0.903276pt;}
.ws1c{word-spacing:-0.265669pt;}
.ws1b{word-spacing:-0.212535pt;}
.ws1a{word-spacing:-0.159402pt;}
.ws1e{word-spacing:-0.106268pt;}
.ws0{word-spacing:0.000000pt;}
.wsa{word-spacing:0.053134pt;}
.ws3{word-spacing:0.212535pt;}
.ws27{word-spacing:0.743874pt;}
.wsd{word-spacing:0.797008pt;}
.ws25{word-spacing:0.850142pt;}
.ws17{word-spacing:1.115811pt;}
.ws9{word-spacing:1.328347pt;}
.ws4{word-spacing:1.487748pt;}
.ws28{word-spacing:1.540882pt;}
.ws11{word-spacing:2.019087pt;}
.ws14{word-spacing:2.337890pt;}
.ws20{word-spacing:2.444158pt;}
.ws1f{word-spacing:2.497292pt;}
.wsb{word-spacing:2.709827pt;}
.ws13{word-spacing:3.613103pt;}
.ws5{word-spacing:3.666237pt;}
.ws16{word-spacing:3.772505pt;}
.wse{word-spacing:4.516379pt;}
.ws10{word-spacing:4.569513pt;}
.ws18{word-spacing:4.728914pt;}
.ws6{word-spacing:5.047717pt;}
.ws2{word-spacing:5.100851pt;}
.ws8{word-spacing:5.844725pt;}
.ws19{word-spacing:6.110395pt;}
.ws1{word-spacing:6.801135pt;}
.ws23{word-spacing:8.076348pt;}
.ws24{word-spacing:8.926490pt;}
.ws21{word-spacing:14.154957pt;}
._c{margin-left:-6.216630pt;}
._5{margin-left:-4.250709pt;}
._b{margin-left:-2.603559pt;}
._0{margin-left:-1.594027pt;}
._e{width:12.167655pt;}
._d{width:13.496002pt;}
._9{width:15.833892pt;}
._2{width:17.427908pt;}
._f{width:18.862533pt;}
._4{width:20.084602pt;}
._1{width:21.731751pt;}
._8{width:22.953830pt;}
._a{width:24.175909pt;}
._7{width:25.079196pt;}
._3{width:27.629621pt;}
._10{width:31.720918pt;}
._6{width:34.643281pt;}
._11{width:53.133867pt;}
.fs5{font-size:31.880533pt;}
.fs2{font-size:39.318933pt;}
.fs6{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:187.526667pt;}
.y45{bottom:195.914667pt;}
.y2a{bottom:200.574667pt;}
.y44{bottom:211.854667pt;}
.y29{bottom:213.621333pt;}
.y28{bottom:226.668000pt;}
.y43{bottom:227.796000pt;}
.y27{bottom:247.350667pt;}
.y42{bottom:248.266667pt;}
.y26{bottom:263.290667pt;}
.y41{bottom:264.206667pt;}
.y25{bottom:279.230667pt;}
.y40{bottom:284.677333pt;}
.y24{bottom:295.170667pt;}
.y3f{bottom:300.617333pt;}
.y23{bottom:311.110667pt;}
.y3e{bottom:321.088000pt;}
.y22{bottom:327.052000pt;}
.y3d{bottom:337.028000pt;}
.y21{bottom:343.104000pt;}
.y20{bottom:359.044000pt;}
.y3c{bottom:359.610667pt;}
.y1f{bottom:374.984000pt;}
.y3b{bottom:384.849333pt;}
.y1e{bottom:390.924000pt;}
.y1d{bottom:406.976000pt;}
.y3a{bottom:419.030667pt;}
.y1c{bottom:422.917333pt;}
.y39{bottom:434.970667pt;}
.y1b{bottom:438.857333pt;}
.y1a{bottom:454.797333pt;}
.y38{bottom:457.552000pt;}
.y19{bottom:470.737333pt;}
.y18{bottom:486.677333pt;}
.y17{bottom:502.617333pt;}
.y37{bottom:508.014667pt;}
.y16{bottom:518.670667pt;}
.y36{bottom:523.954667pt;}
.y15{bottom:534.610667pt;}
.y14{bottom:550.550667pt;}
.y13{bottom:566.490667pt;}
.y12{bottom:582.430667pt;}
.y11{bottom:598.370667pt;}
.y10{bottom:614.312000pt;}
.yf{bottom:630.252000pt;}
.ye{bottom:646.192000pt;}
.yd{bottom:662.132000pt;}
.yc{bottom:678.072000pt;}
.yb{bottom:694.013333pt;}
.ya{bottom:710.065333pt;}
.y9{bottom:726.005333pt;}
.y8{bottom:741.945333pt;}
.y7{bottom:757.885333pt;}
.y6{bottom:773.825333pt;}
.y5{bottom:789.766667pt;}
.y4{bottom:832.385333pt;}
.y35{bottom:836.565333pt;}
.y3{bottom:848.325333pt;}
.y34{bottom:852.505333pt;}
.y33{bottom:868.445333pt;}
.y32{bottom:884.385333pt;}
.y31{bottom:900.326667pt;}
.y2{bottom:905.080000pt;}
.y30{bottom:916.266667pt;}
.y2f{bottom:932.206667pt;}
.y1{bottom:934.304000pt;}
.y2e{bottom:948.146667pt;}
.y2d{bottom:964.086667pt;}
.y2c{bottom:1010.580000pt;}
.h6{height:21.933807pt;}
.h4{height:32.900710pt;}
.h5{height:36.556100pt;}
.h9{height:36.874903pt;}
.h7{height:40.222337pt;}
.h3{height:46.336759pt;}
.h8{height:48.267127pt;}
.h2{height:63.169041pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:158.361333pt;}
.x8{left:172.841333pt;}
.x7{left:178.286667pt;}
.x9{left:187.133333pt;}
.x1{left:201.800000pt;}
.x4{left:274.166667pt;}
.x2{left:342.701333pt;}
.x5{left:396.373333pt;}
.x6{left:578.580000pt;}
}




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