
    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_e55faae49f23cfe0f2b5c937.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.928000;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_eab5b3dba702b817b1812997.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112000;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_e104ee8b4591ac296b32ded6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_f3a6003a4ea82d512c24a49f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.077000;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_89e8635cf806770a4ba74e56.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_50035bc5764cc07ae1675523.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_954cc75e49d19e95fbbb8720.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.920000;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_e393e4d1c93eb1fd804836f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.099000;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:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.256600px;}
.ls9{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.270000px;}
.ls4{letter-spacing:0.300000px;}
.ls7{letter-spacing:0.324000px;}
.ls5{letter-spacing:0.420000px;}
.ls6{letter-spacing:0.480000px;}
.ls0{letter-spacing:0.540000px;}
.lsb{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.960000px;}
.ls8{letter-spacing:1.080000px;}
.ls3{letter-spacing:1.800000px;}
.ls1{letter-spacing:11.340000px;}
.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;}
}
.ws1{word-spacing:-55.800000px;}
.ws7{word-spacing:-40.752000px;}
.ws5{word-spacing:-14.040000px;}
.ws3{word-spacing:-1.080000px;}
.ws6{word-spacing:-0.540000px;}
.ws2{word-spacing:-0.324000px;}
.ws4{word-spacing:0.000000px;}
.ws0{word-spacing:24.911400px;}
._7{margin-left:-15.012000px;}
._8{margin-left:-10.656000px;}
._2{margin-left:-7.680000px;}
._4{margin-left:-6.408000px;}
._5{margin-left:-5.112000px;}
._1{margin-left:-3.990600px;}
._0{margin-left:-1.998000px;}
._6{width:1.590600px;}
._3{width:3.300000px;}
._9{width:40.752000px;}
.fc1{color:rgb(240,125,117);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:32.400000px;}
.fs3{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs4{font-size:96.000000px;}
.fs7{font-size:144.000000px;}
.fs5{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:39.139500px;}
.y39{bottom:151.612200px;}
.y38{bottom:169.607700px;}
.y37{bottom:187.603200px;}
.y51{bottom:187.697700px;}
.y36{bottom:205.598700px;}
.y50{bottom:205.693200px;}
.y10{bottom:223.567200px;}
.y35{bottom:223.594200px;}
.y4f{bottom:223.688700px;}
.yf{bottom:241.562700px;}
.y34{bottom:241.589700px;}
.y4e{bottom:241.684200px;}
.ye{bottom:259.558200px;}
.y33{bottom:259.585200px;}
.y4d{bottom:259.679700px;}
.yd{bottom:277.553700px;}
.y4c{bottom:277.675200px;}
.yc{bottom:295.549200px;}
.y32{bottom:295.589700px;}
.y4b{bottom:295.670700px;}
.yb{bottom:313.544700px;}
.y31{bottom:313.585200px;}
.y4a{bottom:313.666200px;}
.ya{bottom:331.540200px;}
.y30{bottom:331.580700px;}
.y9{bottom:349.535700px;}
.y2f{bottom:349.576200px;}
.y49{bottom:349.670700px;}
.y8{bottom:367.531200px;}
.y2e{bottom:367.571700px;}
.y48{bottom:367.666200px;}
.y7{bottom:385.526700px;}
.y2d{bottom:385.567200px;}
.y47{bottom:385.661700px;}
.y6{bottom:403.522200px;}
.y2c{bottom:403.562700px;}
.y46{bottom:403.657200px;}
.y1f{bottom:418.074300px;}
.y5{bottom:421.517700px;}
.y2b{bottom:421.558200px;}
.y45{bottom:421.652700px;}
.y1e{bottom:431.577300px;}
.y4{bottom:439.513200px;}
.y2a{bottom:439.553700px;}
.y44{bottom:439.648200px;}
.y1d{bottom:445.080450px;}
.y3{bottom:457.508700px;}
.y43{bottom:457.643700px;}
.y1c{bottom:458.583450px;}
.y29{bottom:475.558200px;}
.y42{bottom:475.639200px;}
.y15{bottom:493.529850px;}
.y28{bottom:493.553700px;}
.y14{bottom:511.525350px;}
.y27{bottom:511.549200px;}
.y41{bottom:511.643700px;}
.y13{bottom:529.520850px;}
.y26{bottom:529.544700px;}
.y40{bottom:529.639200px;}
.y12{bottom:547.516350px;}
.y25{bottom:547.540200px;}
.y3f{bottom:547.634700px;}
.y24{bottom:565.535700px;}
.y3e{bottom:565.630200px;}
.y11{bottom:566.261850px;}
.y23{bottom:583.531200px;}
.y3d{bottom:583.625700px;}
.y22{bottom:601.526700px;}
.y3c{bottom:601.621200px;}
.y21{bottom:619.522200px;}
.y3b{bottom:619.616700px;}
.y20{bottom:637.517700px;}
.y3a{bottom:637.612200px;}
.y1b{bottom:727.511850px;}
.y1a{bottom:745.511850px;}
.y19{bottom:763.511850px;}
.y18{bottom:781.511850px;}
.y53{bottom:814.487850px;}
.y17{bottom:835.511850px;}
.y52{bottom:851.999850px;}
.y16{bottom:889.511850px;}
.y2{bottom:1052.588700px;}
.h2{height:33.600000px;}
.h9{height:36.792000px;}
.ha{height:37.800000px;}
.h8{height:42.000000px;}
.h5{height:42.846000px;}
.h3{height:43.200000px;}
.h4{height:45.846000px;}
.h6{height:67.200000px;}
.hb{height:122.256000px;}
.h7{height:164.160000px;}
.h1{height:1105.500000px;}
.h0{height:1105.512000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:42.519750px;}
.x8{left:68.032650px;}
.x5{left:157.322850px;}
.xa{left:182.834700px;}
.xb{left:203.030700px;}
.x4{left:272.125950px;}
.x2{left:408.397800px;}
.x9{left:412.444650px;}
.x7{left:433.909650px;}
.x3{left:501.736800px;}
.x6{left:768.242550px;}
@media print{
.v1{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:4.672533pt;}
.ls9{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.240000pt;}
.ls4{letter-spacing:0.266667pt;}
.ls7{letter-spacing:0.288000pt;}
.ls5{letter-spacing:0.373333pt;}
.ls6{letter-spacing:0.426667pt;}
.ls0{letter-spacing:0.480000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.853333pt;}
.ls8{letter-spacing:0.960000pt;}
.ls3{letter-spacing:1.600000pt;}
.ls1{letter-spacing:10.080000pt;}
.ws1{word-spacing:-49.600000pt;}
.ws7{word-spacing:-36.224000pt;}
.ws5{word-spacing:-12.480000pt;}
.ws3{word-spacing:-0.960000pt;}
.ws6{word-spacing:-0.480000pt;}
.ws2{word-spacing:-0.288000pt;}
.ws4{word-spacing:0.000000pt;}
.ws0{word-spacing:22.143467pt;}
._7{margin-left:-13.344000pt;}
._8{margin-left:-9.472000pt;}
._2{margin-left:-6.826667pt;}
._4{margin-left:-5.696000pt;}
._5{margin-left:-4.544000pt;}
._1{margin-left:-3.547200pt;}
._0{margin-left:-1.776000pt;}
._6{width:1.413867pt;}
._3{width:2.933333pt;}
._9{width:36.224000pt;}
.fs1{font-size:28.800000pt;}
.fs3{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs4{font-size:85.333333pt;}
.fs7{font-size:128.000000pt;}
.fs5{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:34.790667pt;}
.y39{bottom:134.766400pt;}
.y38{bottom:150.762400pt;}
.y37{bottom:166.758400pt;}
.y51{bottom:166.842400pt;}
.y36{bottom:182.754400pt;}
.y50{bottom:182.838400pt;}
.y10{bottom:198.726400pt;}
.y35{bottom:198.750400pt;}
.y4f{bottom:198.834400pt;}
.yf{bottom:214.722400pt;}
.y34{bottom:214.746400pt;}
.y4e{bottom:214.830400pt;}
.ye{bottom:230.718400pt;}
.y33{bottom:230.742400pt;}
.y4d{bottom:230.826400pt;}
.yd{bottom:246.714400pt;}
.y4c{bottom:246.822400pt;}
.yc{bottom:262.710400pt;}
.y32{bottom:262.746400pt;}
.y4b{bottom:262.818400pt;}
.yb{bottom:278.706400pt;}
.y31{bottom:278.742400pt;}
.y4a{bottom:278.814400pt;}
.ya{bottom:294.702400pt;}
.y30{bottom:294.738400pt;}
.y9{bottom:310.698400pt;}
.y2f{bottom:310.734400pt;}
.y49{bottom:310.818400pt;}
.y8{bottom:326.694400pt;}
.y2e{bottom:326.730400pt;}
.y48{bottom:326.814400pt;}
.y7{bottom:342.690400pt;}
.y2d{bottom:342.726400pt;}
.y47{bottom:342.810400pt;}
.y6{bottom:358.686400pt;}
.y2c{bottom:358.722400pt;}
.y46{bottom:358.806400pt;}
.y1f{bottom:371.621600pt;}
.y5{bottom:374.682400pt;}
.y2b{bottom:374.718400pt;}
.y45{bottom:374.802400pt;}
.y1e{bottom:383.624267pt;}
.y4{bottom:390.678400pt;}
.y2a{bottom:390.714400pt;}
.y44{bottom:390.798400pt;}
.y1d{bottom:395.627067pt;}
.y3{bottom:406.674400pt;}
.y43{bottom:406.794400pt;}
.y1c{bottom:407.629733pt;}
.y29{bottom:422.718400pt;}
.y42{bottom:422.790400pt;}
.y15{bottom:438.693200pt;}
.y28{bottom:438.714400pt;}
.y14{bottom:454.689200pt;}
.y27{bottom:454.710400pt;}
.y41{bottom:454.794400pt;}
.y13{bottom:470.685200pt;}
.y26{bottom:470.706400pt;}
.y40{bottom:470.790400pt;}
.y12{bottom:486.681200pt;}
.y25{bottom:486.702400pt;}
.y3f{bottom:486.786400pt;}
.y24{bottom:502.698400pt;}
.y3e{bottom:502.782400pt;}
.y11{bottom:503.343867pt;}
.y23{bottom:518.694400pt;}
.y3d{bottom:518.778400pt;}
.y22{bottom:534.690400pt;}
.y3c{bottom:534.774400pt;}
.y21{bottom:550.686400pt;}
.y3b{bottom:550.770400pt;}
.y20{bottom:566.682400pt;}
.y3a{bottom:566.766400pt;}
.y1b{bottom:646.677200pt;}
.y1a{bottom:662.677200pt;}
.y19{bottom:678.677200pt;}
.y18{bottom:694.677200pt;}
.y53{bottom:723.989200pt;}
.y17{bottom:742.677200pt;}
.y52{bottom:757.333200pt;}
.y16{bottom:790.677200pt;}
.y2{bottom:935.634400pt;}
.h2{height:29.866667pt;}
.h9{height:32.704000pt;}
.ha{height:33.600000pt;}
.h8{height:37.333333pt;}
.h5{height:38.085333pt;}
.h3{height:38.400000pt;}
.h4{height:40.752000pt;}
.h6{height:59.733333pt;}
.hb{height:108.672000pt;}
.h7{height:145.920000pt;}
.h1{height:982.666667pt;}
.h0{height:982.677333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:37.795333pt;}
.x8{left:60.473467pt;}
.x5{left:139.842533pt;}
.xa{left:162.519733pt;}
.xb{left:180.471733pt;}
.x4{left:241.889733pt;}
.x2{left:363.020267pt;}
.x9{left:366.617467pt;}
.x7{left:385.697467pt;}
.x3{left:445.988267pt;}
.x6{left:682.882267pt;}
}




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