
    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_eb76aae0b9fdbb9ae4c3bf84.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_f0d8dc3eafc23595f59bc14c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_f101fd76aa9f0c95c309e085.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_bdb6aa55a07339c230d964df.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.932129;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_4ff84eac5b673f282b9db761.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.065918;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);}
.v3{vertical-align:-1.188000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:5.274000px;}
.v2{vertical-align:7.140000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:133.711296px;}
.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:-39.902958px;}
.ws4{word-spacing:-36.559014px;}
.ws7{word-spacing:-26.570394px;}
.ws2{word-spacing:-23.932800px;}
.ws9{word-spacing:-17.431056px;}
.ws0{word-spacing:-16.629972px;}
.wsa{word-spacing:-13.286028px;}
.ws1{word-spacing:0.000000px;}
.ws8{word-spacing:117.405324px;}
.ws5{word-spacing:118.593324px;}
.ws6{word-spacing:118.645104px;}
._7{margin-left:-12.186240px;}
._3{margin-left:-10.515942px;}
._6{margin-left:-8.976774px;}
._5{margin-left:-5.805264px;}
._2{margin-left:-4.343496px;}
._4{margin-left:-2.621508px;}
._1{margin-left:-1.176252px;}
._0{width:1.081680px;}
._8{width:2.094006px;}
._9{width:1696.271880px;}
.fc7{color:transparent;}
.fc6{color:rgb(0,102,179);}
.fc2{color:rgb(151,190,30);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(153,153,153);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:47.964000px;}
.fs1{font-size:54.084000px;}
.fs0{font-size:60.036000px;}
.fs11{font-size:62.928000px;}
.fs4{font-size:80.958000px;}
.fs8{font-size:86.400000px;}
.fsf{font-size:95.922000px;}
.fs7{font-size:97.284000px;}
.fsd{font-size:102.558000px;}
.fs5{font-size:108.000000px;}
.fse{font-size:120.078000px;}
.fsb{font-size:125.346000px;}
.fs6{font-size:131.982000px;}
.fs9{font-size:144.054000px;}
.fs2{font-size:150.012000px;}
.fsc{font-size:159.534000px;}
.fs10{font-size:162.084000px;}
.fs3{font-size:168.036000px;}
.y0{bottom:0.000000px;}
.y4{bottom:0.042000px;}
.y1{bottom:0.765000px;}
.y2{bottom:6.123000px;}
.y3e{bottom:6.420000px;}
.y3{bottom:6.591000px;}
.y18{bottom:26.362500px;}
.y46{bottom:30.870000px;}
.y8{bottom:46.899000px;}
.y26{bottom:66.543000px;}
.y2d{bottom:77.343000px;}
.y3b{bottom:82.615500px;}
.y9{bottom:85.294500px;}
.y2a{bottom:89.334000px;}
.y25{bottom:97.285500px;}
.y3a{bottom:109.149000px;}
.y17{bottom:113.655000px;}
.y12{bottom:113.782500px;}
.y24{bottom:128.070000px;}
.y42{bottom:133.470000px;}
.y39{bottom:135.850500px;}
.y23{bottom:161.661000px;}
.y38{bottom:162.553500px;}
.y41{bottom:170.505000px;}
.y37{bottom:189.085500px;}
.y40{bottom:189.382500px;}
.y16{bottom:200.055000px;}
.y22{bottom:206.518500px;}
.y11{bottom:209.962500px;}
.y36{bottom:215.788500px;}
.y3d{bottom:221.655000px;}
.y7{bottom:229.309500px;}
.y21{bottom:240.109500px;}
.y10{bottom:241.299000px;}
.y35{bottom:242.490000px;}
.y34{bottom:269.193000px;}
.yf{bottom:272.637000px;}
.y6{bottom:279.694500px;}
.y20{bottom:284.967000px;}
.y15{bottom:286.455000px;}
.y27{bottom:300.105000px;}
.y1f{bottom:315.709500px;}
.y33{bottom:322.470000px;}
.y5{bottom:329.188500px;}
.y45{bottom:341.815500px;}
.y32{bottom:349.171500px;}
.y1e{bottom:349.299000px;}
.y1b{bottom:353.806500px;}
.ye{bottom:355.167000px;}
.y14{bottom:372.855000px;}
.y3c{bottom:374.641500px;}
.y31{bottom:375.832500px;}
.y44{bottom:379.446000px;}
.yd{bottom:380.934000px;}
.y1a{bottom:393.393000px;}
.y43{bottom:398.367000px;}
.y30{bottom:402.406500px;}
.yc{bottom:406.743000px;}
.y29{bottom:415.162500px;}
.y2c{bottom:419.032500px;}
.y2f{bottom:429.109500px;}
.y19{bottom:433.021500px;}
.yb{bottom:433.149000px;}
.y1c{bottom:442.290000px;}
.y1d{bottom:443.182500px;}
.y28{bottom:448.582500px;}
.y2b{bottom:449.221500px;}
.y2e{bottom:455.811000px;}
.y13{bottom:516.571500px;}
.ya{bottom:520.143000px;}
.y3f{bottom:525.246000px;}
.h11{height:34.755164px;}
.h1f{height:39.427447px;}
.h3{height:43.707850px;}
.h1e{height:43.766479px;}
.h4{height:44.701447px;}
.h1a{height:45.385447px;}
.h1c{height:45.813305px;}
.h1d{height:45.874758px;}
.ha{height:46.567447px;}
.h8{height:59.018698px;}
.he{height:62.901563px;}
.hd{height:62.985938px;}
.h18{height:69.505980px;}
.hc{height:70.825412px;}
.h14{height:74.765183px;}
.h9{height:78.626953px;}
.h16{height:78.732422px;}
.h17{height:81.917763px;}
.h15{height:87.537331px;}
.h12{height:91.377724px;}
.hb{height:96.215394px;}
.h10{height:104.875251px;}
.h6{height:109.359334px;}
.h13{height:116.300909px;}
.h1b{height:118.159869px;}
.h7{height:122.334803px;}
.hf{height:122.498900px;}
.h19{height:123.022679px;}
.h2{height:560.919000px;}
.h5{height:608.200500px;}
.h0{height:608.244094px;}
.h1{height:608.250000px;}
.w1{width:1079.277000px;}
.w2{width:1079.956500px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xa{left:28.063500px;}
.x2{left:35.547000px;}
.x3{left:45.283500px;}
.x5{left:54.000000px;}
.x6{left:58.209000px;}
.x4{left:61.653000px;}
.x8{left:70.030500px;}
.x7{left:106.044000px;}
.xf{left:261.156000px;}
.x10{left:264.769500px;}
.x11{left:308.268000px;}
.xb{left:389.863500px;}
.xc{left:395.859000px;}
.x9{left:418.819500px;}
.xd{left:452.835000px;}
.xe{left:852.435000px;}
.x1{left:898.186500px;}
@media print{
.v3{vertical-align:-1.056000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.688000pt;}
.v2{vertical-align:6.346667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:118.854485pt;}
.ws3{word-spacing:-35.469296pt;}
.ws4{word-spacing:-32.496901pt;}
.ws7{word-spacing:-23.618128pt;}
.ws2{word-spacing:-21.273600pt;}
.ws9{word-spacing:-15.494272pt;}
.ws0{word-spacing:-14.782197pt;}
.wsa{word-spacing:-11.809803pt;}
.ws1{word-spacing:0.000000pt;}
.ws8{word-spacing:104.360288pt;}
.ws5{word-spacing:105.416288pt;}
.ws6{word-spacing:105.462315pt;}
._7{margin-left:-10.832213pt;}
._3{margin-left:-9.347504pt;}
._6{margin-left:-7.979355pt;}
._5{margin-left:-5.160235pt;}
._2{margin-left:-3.860885pt;}
._4{margin-left:-2.330229pt;}
._1{margin-left:-1.045557pt;}
._0{width:0.961493pt;}
._8{width:1.861339pt;}
._9{width:1507.797227pt;}
.fsa{font-size:42.634667pt;}
.fs1{font-size:48.074667pt;}
.fs0{font-size:53.365333pt;}
.fs11{font-size:55.936000pt;}
.fs4{font-size:71.962667pt;}
.fs8{font-size:76.800000pt;}
.fsf{font-size:85.264000pt;}
.fs7{font-size:86.474667pt;}
.fsd{font-size:91.162667pt;}
.fs5{font-size:96.000000pt;}
.fse{font-size:106.736000pt;}
.fsb{font-size:111.418667pt;}
.fs6{font-size:117.317333pt;}
.fs9{font-size:128.048000pt;}
.fs2{font-size:133.344000pt;}
.fsc{font-size:141.808000pt;}
.fs10{font-size:144.074667pt;}
.fs3{font-size:149.365333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:0.037333pt;}
.y1{bottom:0.680000pt;}
.y2{bottom:5.442667pt;}
.y3e{bottom:5.706667pt;}
.y3{bottom:5.858667pt;}
.y18{bottom:23.433333pt;}
.y46{bottom:27.440000pt;}
.y8{bottom:41.688000pt;}
.y26{bottom:59.149333pt;}
.y2d{bottom:68.749333pt;}
.y3b{bottom:73.436000pt;}
.y9{bottom:75.817333pt;}
.y2a{bottom:79.408000pt;}
.y25{bottom:86.476000pt;}
.y3a{bottom:97.021333pt;}
.y17{bottom:101.026667pt;}
.y12{bottom:101.140000pt;}
.y24{bottom:113.840000pt;}
.y42{bottom:118.640000pt;}
.y39{bottom:120.756000pt;}
.y23{bottom:143.698667pt;}
.y38{bottom:144.492000pt;}
.y41{bottom:151.560000pt;}
.y37{bottom:168.076000pt;}
.y40{bottom:168.340000pt;}
.y16{bottom:177.826667pt;}
.y22{bottom:183.572000pt;}
.y11{bottom:186.633333pt;}
.y36{bottom:191.812000pt;}
.y3d{bottom:197.026667pt;}
.y7{bottom:203.830667pt;}
.y21{bottom:213.430667pt;}
.y10{bottom:214.488000pt;}
.y35{bottom:215.546667pt;}
.y34{bottom:239.282667pt;}
.yf{bottom:242.344000pt;}
.y6{bottom:248.617333pt;}
.y20{bottom:253.304000pt;}
.y15{bottom:254.626667pt;}
.y27{bottom:266.760000pt;}
.y1f{bottom:280.630667pt;}
.y33{bottom:286.640000pt;}
.y5{bottom:292.612000pt;}
.y45{bottom:303.836000pt;}
.y32{bottom:310.374667pt;}
.y1e{bottom:310.488000pt;}
.y1b{bottom:314.494667pt;}
.ye{bottom:315.704000pt;}
.y14{bottom:331.426667pt;}
.y3c{bottom:333.014667pt;}
.y31{bottom:334.073333pt;}
.y44{bottom:337.285333pt;}
.yd{bottom:338.608000pt;}
.y1a{bottom:349.682667pt;}
.y43{bottom:354.104000pt;}
.y30{bottom:357.694667pt;}
.yc{bottom:361.549333pt;}
.y29{bottom:369.033333pt;}
.y2c{bottom:372.473333pt;}
.y2f{bottom:381.430667pt;}
.y19{bottom:384.908000pt;}
.yb{bottom:385.021333pt;}
.y1c{bottom:393.146667pt;}
.y1d{bottom:393.940000pt;}
.y28{bottom:398.740000pt;}
.y2b{bottom:399.308000pt;}
.y2e{bottom:405.165333pt;}
.y13{bottom:459.174667pt;}
.ya{bottom:462.349333pt;}
.y3f{bottom:466.885333pt;}
.h11{height:30.893479pt;}
.h1f{height:35.046620pt;}
.h3{height:38.851422pt;}
.h1e{height:38.903536pt;}
.h4{height:39.734620pt;}
.h1a{height:40.342620pt;}
.h1c{height:40.722938pt;}
.h1d{height:40.777562pt;}
.ha{height:41.393286pt;}
.h8{height:52.461065pt;}
.he{height:55.912500pt;}
.hd{height:55.987500pt;}
.h18{height:61.783094pt;}
.hc{height:62.955922pt;}
.h14{height:66.457940pt;}
.h9{height:69.890625pt;}
.h16{height:69.984375pt;}
.h17{height:72.815789pt;}
.h15{height:77.810961pt;}
.h12{height:81.224643pt;}
.hb{height:85.524794pt;}
.h10{height:93.222445pt;}
.h6{height:97.208297pt;}
.h13{height:103.378586pt;}
.h1b{height:105.030995pt;}
.h7{height:108.742047pt;}
.hf{height:108.887911pt;}
.h19{height:109.353492pt;}
.h2{height:498.594667pt;}
.h5{height:540.622667pt;}
.h0{height:540.661417pt;}
.h1{height:540.666667pt;}
.w1{width:959.357333pt;}
.w2{width:959.961333pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xa{left:24.945333pt;}
.x2{left:31.597333pt;}
.x3{left:40.252000pt;}
.x5{left:48.000000pt;}
.x6{left:51.741333pt;}
.x4{left:54.802667pt;}
.x8{left:62.249333pt;}
.x7{left:94.261333pt;}
.xf{left:232.138667pt;}
.x10{left:235.350667pt;}
.x11{left:274.016000pt;}
.xb{left:346.545333pt;}
.xc{left:351.874667pt;}
.x9{left:372.284000pt;}
.xd{left:402.520000pt;}
.xe{left:757.720000pt;}
.x1{left:798.388000pt;}
}




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