
    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_5dc1776cc6e736ebd26027f7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.979000;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_fb12ba6b1e1db6dbc4d5d009.woff')format("woff");}.ff2{font-family:ff2;line-height:1.092000;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_815c4768a22172592d0b3ca0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.990000;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_633e4b8078dc2a0f811dfa2e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.990000;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_636ed1196ee9c6799dec1c9b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.092000;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;}
.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;}
}
.ws1{word-spacing:-13.440041px;}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-10.815647px;}
._1{margin-left:-3.780239px;}
._2{margin-left:-1.808333px;}
._7{width:1.955855px;}
._12{width:2.961945px;}
._3{width:4.061326px;}
._4{width:5.634799px;}
._e{width:6.640022px;}
._f{width:7.982157px;}
._8{width:9.990810px;}
._15{width:11.056603px;}
._6{width:12.390025px;}
._d{width:13.497558px;}
._9{width:14.706347px;}
._c{width:15.774146px;}
._11{width:18.148564px;}
._5{width:19.860798px;}
._14{width:21.768174px;}
._a{width:29.587681px;}
._10{width:36.407040px;}
._b{width:37.746832px;}
._13{width:41.062736px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(254,254,254);}
.fs4{font-size:48.000145px;}
.fs2{font-size:59.984997px;}
.fs3{font-size:83.969997px;}
.fs1{font-size:107.999996px;}
.fs0{font-size:215.955000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y27{bottom:3.094914px;}
.y35{bottom:3.165100px;}
.y4f{bottom:3.210842px;}
.y2d{bottom:3.228069px;}
.y46{bottom:3.272365px;}
.y3e{bottom:3.286230px;}
.y1d{bottom:3.288757px;}
.y3b{bottom:4.614642px;}
.y68{bottom:4.645371px;}
.y24{bottom:4.648271px;}
.y4c{bottom:4.721924px;}
.y19{bottom:4.764441px;}
.y32{bottom:4.767627px;}
.y2a{bottom:4.814385px;}
.y43{bottom:4.825810px;}
.y53{bottom:4.840356px;}
.y3a{bottom:24.864641px;}
.y67{bottom:24.895370px;}
.y23{bottom:24.898270px;}
.y4b{bottom:24.971923px;}
.y18{bottom:25.014440px;}
.y31{bottom:25.017626px;}
.y29{bottom:25.064384px;}
.y42{bottom:25.075810px;}
.y52{bottom:25.090355px;}
.y39{bottom:45.114640px;}
.y66{bottom:45.145369px;}
.y22{bottom:45.148270px;}
.y4a{bottom:45.221922px;}
.y17{bottom:45.264439px;}
.y30{bottom:45.267625px;}
.y41{bottom:45.325809px;}
.y51{bottom:45.340355px;}
.y38{bottom:65.364640px;}
.y65{bottom:65.395368px;}
.y21{bottom:65.398269px;}
.y49{bottom:65.471921px;}
.y16{bottom:65.514438px;}
.y2f{bottom:65.517624px;}
.y40{bottom:65.575808px;}
.y54{bottom:72.135018px;}
.y37{bottom:85.614639px;}
.y64{bottom:85.645368px;}
.y20{bottom:85.648268px;}
.y48{bottom:85.721920px;}
.y1f{bottom:105.898267px;}
.y15{bottom:106.014436px;}
.y63{bottom:126.145366px;}
.y14{bottom:126.264436px;}
.y62{bottom:146.395365px;}
.y13{bottom:146.514435px;}
.y2e{bottom:154.935014px;}
.y61{bottom:166.645364px;}
.y12{bottom:166.764434px;}
.y60{bottom:186.895363px;}
.y11{bottom:187.014433px;}
.y5f{bottom:207.145362px;}
.y5e{bottom:227.395362px;}
.y10{bottom:227.514431px;}
.yf{bottom:247.764431px;}
.y2c{bottom:249.975010px;}
.y2b{bottom:250.453034px;}
.y5d{bottom:267.895360px;}
.ye{bottom:268.014430px;}
.y5c{bottom:288.145359px;}
.yd{bottom:288.264429px;}
.y28{bottom:304.695008px;}
.y5b{bottom:308.395358px;}
.yc{bottom:308.514428px;}
.y5a{bottom:328.645357px;}
.y59{bottom:348.895357px;}
.yb{bottom:349.014426px;}
.y26{bottom:359.415006px;}
.y25{bottom:359.759865px;}
.ya{bottom:369.264426px;}
.y58{bottom:389.395355px;}
.y9{bottom:389.514425px;}
.y1e{bottom:394.335004px;}
.y57{bottom:409.645354px;}
.y8{bottom:409.764424px;}
.y56{bottom:429.895353px;}
.y7{bottom:430.014423px;}
.y55{bottom:450.145352px;}
.y6{bottom:450.264422px;}
.y5{bottom:470.514421px;}
.y1c{bottom:529.694999px;}
.y1b{bottom:530.233646px;}
.y50{bottom:571.814997px;}
.y1a{bottom:584.833692px;}
.y4e{bottom:646.694994px;}
.y4d{bottom:647.155741px;}
.y4{bottom:649.934994px;}
.y47{bottom:712.574991px;}
.y2{bottom:745.789671px;}
.y45{bottom:827.774986px;}
.y44{bottom:828.297210px;}
.y3f{bottom:889.694984px;}
.y3d{bottom:984.734980px;}
.y3c{bottom:985.271093px;}
.y36{bottom:1041.254977px;}
.y34{bottom:1156.454973px;}
.y33{bottom:1156.869949px;}
.y3{bottom:1169.358604px;}
.hb{height:15.119999px;}
.h8{height:15.479999px;}
.hc{height:38.879998px;}
.h9{height:41.856127px;}
.h6{height:52.306917px;}
.hf{height:59.039998px;}
.h7{height:65.076747px;}
.hd{height:79.199997px;}
.h4{height:94.175996px;}
.he{height:99.359996px;}
.ha{height:119.519995px;}
.h3{height:167.797035px;}
.h10{height:463.679981px;}
.h5{height:484.199980px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w3{width:13.319999px;}
.w8{width:15.479999px;}
.w5{width:16.559999px;}
.w7{width:675.359972px;}
.w9{width:676.439972px;}
.w6{width:686.519971px;}
.w4{width:687.599971px;}
.w2{width:715.679970px;}
.wa{width:717.839970px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:54.574099px;}
.x3{left:89.639996px;}
.x6{left:118.079995px;}
.x7{left:129.239995px;}
.x1{left:195.830279px;}
.x5{left:266.039989px;}
.x4{left:302.970883px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-11.946703pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-9.613909pt;}
._1{margin-left:-3.360213pt;}
._2{margin-left:-1.607408pt;}
._7{width:1.738538pt;}
._12{width:2.632840pt;}
._3{width:3.610067pt;}
._4{width:5.008710pt;}
._e{width:5.902242pt;}
._f{width:7.095250pt;}
._8{width:8.880720pt;}
._15{width:9.828092pt;}
._6{width:11.013356pt;}
._d{width:11.997830pt;}
._9{width:13.072308pt;}
._c{width:14.021463pt;}
._11{width:16.132057pt;}
._5{width:17.654043pt;}
._14{width:19.349488pt;}
._a{width:26.300161pt;}
._10{width:32.361813pt;}
._b{width:33.552740pt;}
._13{width:36.500210pt;}
.fs4{font-size:42.666796pt;}
.fs2{font-size:53.319997pt;}
.fs3{font-size:74.639997pt;}
.fs1{font-size:95.999996pt;}
.fs0{font-size:191.960000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y27{bottom:2.751035pt;}
.y35{bottom:2.813423pt;}
.y4f{bottom:2.854082pt;}
.y2d{bottom:2.869394pt;}
.y46{bottom:2.908769pt;}
.y3e{bottom:2.921093pt;}
.y1d{bottom:2.923340pt;}
.y3b{bottom:4.101904pt;}
.y68{bottom:4.129219pt;}
.y24{bottom:4.131797pt;}
.y4c{bottom:4.197265pt;}
.y19{bottom:4.235058pt;}
.y32{bottom:4.237890pt;}
.y2a{bottom:4.279453pt;}
.y43{bottom:4.289609pt;}
.y53{bottom:4.302539pt;}
.y3a{bottom:22.101903pt;}
.y67{bottom:22.129218pt;}
.y23{bottom:22.131796pt;}
.y4b{bottom:22.197265pt;}
.y18{bottom:22.235058pt;}
.y31{bottom:22.237890pt;}
.y29{bottom:22.279452pt;}
.y42{bottom:22.289608pt;}
.y52{bottom:22.302538pt;}
.y39{bottom:40.101903pt;}
.y66{bottom:40.129217pt;}
.y22{bottom:40.131795pt;}
.y4a{bottom:40.197264pt;}
.y17{bottom:40.235057pt;}
.y30{bottom:40.237889pt;}
.y41{bottom:40.289608pt;}
.y51{bottom:40.302537pt;}
.y38{bottom:58.101902pt;}
.y65{bottom:58.129216pt;}
.y21{bottom:58.131794pt;}
.y49{bottom:58.197263pt;}
.y16{bottom:58.235056pt;}
.y2f{bottom:58.237888pt;}
.y40{bottom:58.289607pt;}
.y54{bottom:64.120016pt;}
.y37{bottom:76.101901pt;}
.y64{bottom:76.129216pt;}
.y20{bottom:76.131794pt;}
.y48{bottom:76.197262pt;}
.y1f{bottom:94.131793pt;}
.y15{bottom:94.235055pt;}
.y63{bottom:112.129214pt;}
.y14{bottom:112.235054pt;}
.y62{bottom:130.129213pt;}
.y13{bottom:130.235053pt;}
.y2e{bottom:137.720013pt;}
.y61{bottom:148.129213pt;}
.y12{bottom:148.235052pt;}
.y60{bottom:166.129212pt;}
.y11{bottom:166.235052pt;}
.y5f{bottom:184.129211pt;}
.y5e{bottom:202.129210pt;}
.y10{bottom:202.235050pt;}
.yf{bottom:220.235049pt;}
.y2c{bottom:222.200009pt;}
.y2b{bottom:222.624919pt;}
.y5d{bottom:238.129209pt;}
.ye{bottom:238.235049pt;}
.y5c{bottom:256.129208pt;}
.yd{bottom:256.235048pt;}
.y28{bottom:270.840007pt;}
.y5b{bottom:274.129207pt;}
.yc{bottom:274.235047pt;}
.y5a{bottom:292.129207pt;}
.y59{bottom:310.129206pt;}
.yb{bottom:310.235046pt;}
.y26{bottom:319.480005pt;}
.y25{bottom:319.786547pt;}
.ya{bottom:328.235045pt;}
.y58{bottom:346.129204pt;}
.y9{bottom:346.235044pt;}
.y1e{bottom:350.520004pt;}
.y57{bottom:364.129204pt;}
.y8{bottom:364.235043pt;}
.y56{bottom:382.129203pt;}
.y7{bottom:382.235043pt;}
.y55{bottom:400.129202pt;}
.y6{bottom:400.235042pt;}
.y5{bottom:418.235041pt;}
.y1c{bottom:470.839999pt;}
.y1b{bottom:471.318796pt;}
.y50{bottom:508.279997pt;}
.y1a{bottom:519.852170pt;}
.y4e{bottom:574.839994pt;}
.y4d{bottom:575.249547pt;}
.y4{bottom:577.719994pt;}
.y47{bottom:633.399992pt;}
.y2{bottom:662.924152pt;}
.y45{bottom:735.799988pt;}
.y44{bottom:736.264187pt;}
.y3f{bottom:790.839985pt;}
.y3d{bottom:875.319982pt;}
.y3c{bottom:875.796527pt;}
.y36{bottom:925.559980pt;}
.y34{bottom:1027.959976pt;}
.y33{bottom:1028.328844pt;}
.y3{bottom:1039.429870pt;}
.hb{height:13.439999pt;}
.h8{height:13.759999pt;}
.hc{height:34.559999pt;}
.h9{height:37.205446pt;}
.h6{height:46.495038pt;}
.hf{height:52.479998pt;}
.h7{height:57.845998pt;}
.hd{height:70.399997pt;}
.h4{height:83.711997pt;}
.he{height:88.319996pt;}
.ha{height:106.239996pt;}
.h3{height:149.152920pt;}
.h10{height:412.159983pt;}
.h5{height:430.399982pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w3{width:11.840000pt;}
.w8{width:13.759999pt;}
.w5{width:14.719999pt;}
.w7{width:600.319975pt;}
.w9{width:601.279975pt;}
.w6{width:610.239975pt;}
.w4{width:611.199975pt;}
.w2{width:636.159973pt;}
.wa{width:638.079973pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:48.510311pt;}
.x3{left:79.679997pt;}
.x6{left:104.959996pt;}
.x7{left:114.879995pt;}
.x1{left:174.071359pt;}
.x5{left:236.479990pt;}
.x4{left:269.307451pt;}
}




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