
    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_7a031efdb442f0a0c5c83d10.woff')format("woff");}.ff1{font-family:ff1;line-height:0.997000;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_278d1ae61c1f82f589731fcf.woff')format("woff");}.ff2{font-family:ff2;line-height:1.067000;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_d99e4ca574d4c2c728ad7402.woff')format("woff");}.ff3{font-family:ff3;line-height:0.997000;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;}
.ff4{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff5;src:url('chunks/assets/font_10d378d00c9cb9fffd877a22.woff')format("woff");}.ff5{font-family:ff5;line-height:1.085000;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_8537026fd21391bf9103d281.woff')format("woff");}.ff6{font-family:ff6;line-height:0.992000;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_8537026fd21391bf9103d281.woff')format("woff");}.ff7{font-family:ff7;line-height:0.992000;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;}
.ff8{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff9;src:url('chunks/assets/font_58890e03d1295e03fb8ca892.woff')format("woff");}.ff9{font-family:ff9;line-height:0.991000;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.064125px;}
.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;}
}
.ws3{word-spacing:-22.886459px;}
.ws1{word-spacing:-17.801639px;}
.ws2{word-spacing:-16.595999px;}
.ws0{word-spacing:-13.826542px;}
.ws4{word-spacing:0.000000px;}
._7{margin-left:-13.176303px;}
._b{margin-left:-12.013234px;}
._9{margin-left:-10.953243px;}
._6{margin-left:-9.002751px;}
._a{margin-left:-7.748661px;}
._3{margin-left:-6.522673px;}
._0{margin-left:-5.330765px;}
._1{margin-left:-3.982595px;}
._4{margin-left:-2.436249px;}
._2{margin-left:-1.304565px;}
._5{width:1.015105px;}
._8{width:2.753890px;}
.fc5{color:transparent;}
.fc3{color:rgb(229,114,0);}
.fc2{color:rgb(255,49,49);}
.fc4{color:rgb(254,254,254);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.984997px;}
.fs4{font-size:71.999997px;}
.fs3{font-size:80.144992px;}
.fs5{font-size:83.969997px;}
.fs8{font-size:84.870001px;}
.fs6{font-size:101.969996px;}
.fs7{font-size:107.954996px;}
.fs1{font-size:119.969995px;}
.fs2{font-size:149.985003px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000008px;}
.y4c{bottom:14.624999px;}
.y9{bottom:23.040179px;}
.y8{bottom:43.290178px;}
.y7{bottom:63.540177px;}
.y5{bottom:94.329140px;}
.y4{bottom:114.579139px;}
.y3{bottom:134.829138px;}
.y2{bottom:160.746689px;}
.yc{bottom:199.209556px;}
.yb{bottom:219.459555px;}
.ya{bottom:239.709554px;}
.y6{bottom:260.889757px;}
.y47{bottom:311.121887px;}
.y46{bottom:331.371886px;}
.y45{bottom:371.871885px;}
.y44{bottom:392.121884px;}
.y43{bottom:432.621882px;}
.y42{bottom:452.871881px;}
.y41{bottom:493.371879px;}
.y40{bottom:513.621879px;}
.y48{bottom:544.534249px;}
.y28{bottom:651.586797px;}
.y29{bottom:652.909185px;}
.y2f{bottom:715.309242px;}
.y2e{bottom:740.059241px;}
.y2d{bottom:764.809240px;}
.y2c{bottom:789.559239px;}
.y2b{bottom:814.309238px;}
.y2a{bottom:839.059237px;}
.y33{bottom:887.472035px;}
.y32{bottom:943.639773px;}
.y31{bottom:968.389772px;}
.y30{bottom:993.139771px;}
.y4b{bottom:1033.570873px;}
.y34{bottom:1041.477329px;}
.y3c{bottom:1120.645861px;}
.y3b{bottom:1145.395860px;}
.y3a{bottom:1170.145859px;}
.y39{bottom:1194.895858px;}
.y38{bottom:1219.645857px;}
.y37{bottom:1244.395856px;}
.y36{bottom:1269.145855px;}
.y35{bottom:1293.895854px;}
.y3f{bottom:1335.664816px;}
.y3e{bottom:1400.956466px;}
.y3d{bottom:1425.706465px;}
.y4a{bottom:1469.138843px;}
.y20{bottom:1530.488708px;}
.y1f{bottom:1555.238707px;}
.y1e{bottom:1579.988706px;}
.y26{bottom:1620.732604px;}
.y25{bottom:1696.707541px;}
.y24{bottom:1721.457540px;}
.y23{bottom:1746.207539px;}
.y22{bottom:1770.957538px;}
.y21{bottom:1795.707537px;}
.y27{bottom:1839.770095px;}
.y49{bottom:1841.870047px;}
.y1d{bottom:1957.703462px;}
.y1c{bottom:1986.953461px;}
.y1b{bottom:2016.203460px;}
.y1a{bottom:2115.525044px;}
.y19{bottom:2144.775043px;}
.y18{bottom:2271.242631px;}
.y17{bottom:2300.492629px;}
.y16{bottom:2404.292552px;}
.y15{bottom:2433.542551px;}
.y14{bottom:2462.792549px;}
.y13{bottom:2494.883391px;}
.y12{bottom:2564.304031px;}
.y11{bottom:2591.304030px;}
.y10{bottom:2618.304029px;}
.yf{bottom:2645.304028px;}
.ye{bottom:2672.304027px;}
.yd{bottom:2726.615497px;}
.h11{height:42.749998px;}
.h3{height:49.547608px;}
.h4{height:53.746557px;}
.h8{height:59.471998px;}
.ha{height:64.511997px;}
.h9{height:68.399997px;}
.hc{height:69.359217px;}
.h7{height:71.809913px;}
.hb{height:75.237117px;}
.hd{height:76.748577px;}
.h10{height:77.571181px;}
.he{height:84.227216px;}
.hf{height:89.170826px;}
.h5{height:99.095216px;}
.h6{height:123.887612px;}
.h2{height:2812.499883px;}
.h0{height:2812.499891px;}
.h1{height:2812.500000px;}
.w2{width:983.249959px;}
.w1{width:1012.499958px;}
.w0{width:1012.500000px;}
.x0{left:0.000000px;}
.x1f{left:4.500000px;}
.x1e{left:11.563680px;}
.x1d{left:21.700008px;}
.x2{left:25.015868px;}
.x1{left:26.683246px;}
.x14{left:28.143925px;}
.x3{left:30.339689px;}
.x7{left:31.631681px;}
.x4{left:32.838842px;}
.x1a{left:41.804108px;}
.x17{left:43.015867px;}
.x1c{left:44.683243px;}
.x19{left:46.143922px;}
.x1b{left:48.666591px;}
.x13{left:57.269183px;}
.xa{left:59.487701px;}
.x12{left:61.463694px;}
.x18{left:73.601803px;}
.x15{left:93.828524px;}
.x16{left:95.297151px;}
.x8{left:144.395348px;}
.x9{left:162.395347px;}
.x10{left:188.027328px;}
.xf{left:191.929672px;}
.xd{left:217.754221px;}
.xb{left:232.887470px;}
.xc{left:246.615985px;}
.x6{left:265.870580px;}
.xe{left:365.428042px;}
.x11{left:366.832008px;}
.x5{left:420.506680px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.057000pt;}
.ws3{word-spacing:-20.343519pt;}
.ws1{word-spacing:-15.823679pt;}
.ws2{word-spacing:-14.751999pt;}
.ws0{word-spacing:-12.290259pt;}
.ws4{word-spacing:0.000000pt;}
._7{margin-left:-11.712270pt;}
._b{margin-left:-10.678430pt;}
._9{margin-left:-9.736216pt;}
._6{margin-left:-8.002445pt;}
._a{margin-left:-6.887699pt;}
._3{margin-left:-5.797931pt;}
._0{margin-left:-4.738458pt;}
._1{margin-left:-3.540084pt;}
._4{margin-left:-2.165554pt;}
._2{margin-left:-1.159613pt;}
._5{width:0.902315pt;}
._8{width:2.447903pt;}
.fs0{font-size:53.319997pt;}
.fs4{font-size:63.999997pt;}
.fs3{font-size:71.239993pt;}
.fs5{font-size:74.639997pt;}
.fs8{font-size:75.440001pt;}
.fs6{font-size:90.639996pt;}
.fs7{font-size:95.959996pt;}
.fs1{font-size:106.639996pt;}
.fs2{font-size:133.320002pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000007pt;}
.y4c{bottom:12.999999pt;}
.y9{bottom:20.480159pt;}
.y8{bottom:38.480158pt;}
.y7{bottom:56.480158pt;}
.y5{bottom:83.848125pt;}
.y4{bottom:101.848124pt;}
.y3{bottom:119.848123pt;}
.y2{bottom:142.885946pt;}
.yc{bottom:177.075161pt;}
.yb{bottom:195.075160pt;}
.ya{bottom:213.075159pt;}
.y6{bottom:231.902006pt;}
.y47{bottom:276.552788pt;}
.y46{bottom:294.552788pt;}
.y45{bottom:330.552786pt;}
.y44{bottom:348.552785pt;}
.y43{bottom:384.552784pt;}
.y42{bottom:402.552783pt;}
.y41{bottom:438.552782pt;}
.y40{bottom:456.552781pt;}
.y48{bottom:484.030444pt;}
.y28{bottom:579.188264pt;}
.y29{bottom:580.363720pt;}
.y2f{bottom:635.830438pt;}
.y2e{bottom:657.830437pt;}
.y2d{bottom:679.830436pt;}
.y2c{bottom:701.830435pt;}
.y2b{bottom:723.830434pt;}
.y2a{bottom:745.830433pt;}
.y33{bottom:788.864031pt;}
.y32{bottom:838.790909pt;}
.y31{bottom:860.790908pt;}
.y30{bottom:882.790907pt;}
.y4b{bottom:918.729665pt;}
.y34{bottom:925.757625pt;}
.y3c{bottom:996.129654pt;}
.y3b{bottom:1018.129654pt;}
.y3a{bottom:1040.129653pt;}
.y39{bottom:1062.129652pt;}
.y38{bottom:1084.129651pt;}
.y37{bottom:1106.129650pt;}
.y36{bottom:1128.129649pt;}
.y35{bottom:1150.129648pt;}
.y3f{bottom:1187.257615pt;}
.y3e{bottom:1245.294636pt;}
.y3d{bottom:1267.294635pt;}
.y4a{bottom:1305.901194pt;}
.y20{bottom:1360.434407pt;}
.y1f{bottom:1382.434406pt;}
.y1e{bottom:1404.434405pt;}
.y26{bottom:1440.651204pt;}
.y25{bottom:1508.184481pt;}
.y24{bottom:1530.184480pt;}
.y23{bottom:1552.184479pt;}
.y22{bottom:1574.184478pt;}
.y21{bottom:1596.184477pt;}
.y27{bottom:1635.351196pt;}
.y49{bottom:1637.217820pt;}
.y1d{bottom:1740.180855pt;}
.y1c{bottom:1766.180854pt;}
.y1b{bottom:1792.180853pt;}
.y1a{bottom:1880.466706pt;}
.y19{bottom:1906.466705pt;}
.y18{bottom:2018.882338pt;}
.y17{bottom:2044.882337pt;}
.y16{bottom:2137.148935pt;}
.y15{bottom:2163.148934pt;}
.y14{bottom:2189.148933pt;}
.y13{bottom:2217.674125pt;}
.y12{bottom:2279.381361pt;}
.y11{bottom:2303.381360pt;}
.y10{bottom:2327.381359pt;}
.yf{bottom:2351.381358pt;}
.ye{bottom:2375.381357pt;}
.yd{bottom:2423.658219pt;}
.h11{height:37.999998pt;}
.h3{height:44.042318pt;}
.h4{height:47.774718pt;}
.h8{height:52.863998pt;}
.ha{height:57.343998pt;}
.h9{height:60.799997pt;}
.hc{height:61.652637pt;}
.h7{height:63.831034pt;}
.hb{height:66.877437pt;}
.hd{height:68.220957pt;}
.h10{height:68.952161pt;}
.he{height:74.868637pt;}
.hf{height:79.262957pt;}
.h5{height:88.084636pt;}
.h6{height:110.122322pt;}
.h2{height:2499.999896pt;}
.h0{height:2499.999903pt;}
.h1{height:2500.000000pt;}
.w2{width:873.999964pt;}
.w1{width:899.999963pt;}
.w0{width:900.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:4.000000pt;}
.x1e{left:10.278826pt;}
.x1d{left:19.288896pt;}
.x2{left:22.236327pt;}
.x1{left:23.718441pt;}
.x14{left:25.016823pt;}
.x3{left:26.968612pt;}
.x7{left:28.117050pt;}
.x4{left:29.190082pt;}
.x1a{left:37.159207pt;}
.x17{left:38.236326pt;}
.x1c{left:39.718438pt;}
.x19{left:41.016820pt;}
.x1b{left:43.259192pt;}
.x13{left:50.905940pt;}
.xa{left:52.877957pt;}
.x12{left:54.634395pt;}
.x18{left:65.423825pt;}
.x15{left:83.403133pt;}
.x16{left:84.708579pt;}
.x8{left:128.351420pt;}
.x9{left:144.351420pt;}
.x10{left:167.135403pt;}
.xf{left:170.604152pt;}
.xd{left:193.559307pt;}
.xb{left:207.011084pt;}
.xc{left:219.214209pt;}
.x6{left:236.329405pt;}
.xe{left:324.824927pt;}
.x11{left:326.072896pt;}
.x5{left:373.783715pt;}
}




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