
    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_97383d3c1b1bfbb5e557417e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.878000;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_2cd77d4f2711bd018d84c9c5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003000;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_2199153aec93650716478cba.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666000;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_be35f2e734aa9cf570af7de1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666000;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.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1{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:-98.598000px;}
.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;}
}
.ws2{word-spacing:-40.680000px;}
.ws1{word-spacing:-22.283148px;}
.ws3{word-spacing:-16.044492px;}
.ws4{word-spacing:0.000000px;}
.ws0{word-spacing:2253.639072px;}
._3{margin-left:-18.264600px;}
._1a{margin-left:-16.937400px;}
._4{margin-left:-15.793200px;}
._12{margin-left:-14.356020px;}
._1f{margin-left:-12.409800px;}
._1e{margin-left:-11.285010px;}
._1{margin-left:-9.749400px;}
._c{margin-left:-7.878600px;}
._6{margin-left:-6.038670px;}
._2{margin-left:-4.582800px;}
._23{margin-left:-3.563430px;}
._8{margin-left:-2.557590px;}
._0{margin-left:-1.120800px;}
._1b{width:2.039508px;}
._f{width:3.255600px;}
._e{width:5.086800px;}
._d{width:6.198600px;}
._16{width:8.681190px;}
._15{width:12.254190px;}
._b{width:13.338990px;}
._a{width:14.408790px;}
._28{width:15.686160px;}
._27{width:16.845600px;}
._19{width:18.143010px;}
._18{width:19.635990px;}
._22{width:23.070600px;}
._1c{width:24.196980px;}
._1d{width:25.497420px;}
._26{width:26.821980px;}
._20{width:33.510000px;}
._21{width:34.781190px;}
._24{width:41.183400px;}
._25{width:42.204600px;}
._17{width:43.628190px;}
._14{width:44.775390px;}
._13{width:46.003200px;}
._9{width:55.753800px;}
._10{width:81.293400px;}
._11{width:82.317600px;}
._7{width:85.342698px;}
._5{width:2830.187544px;}
.fc2{color:rgb(97,92,92);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(31,25,23);}
.fsd{font-size:57.714000px;}
.fsc{font-size:95.826000px;}
.fs3{font-size:98.598000px;}
.fs9{font-size:143.742000px;}
.fsa{font-size:144.000000px;}
.fsb{font-size:156.000000px;}
.fs7{font-size:162.000000px;}
.fs1{font-size:171.372000px;}
.fs6{font-size:180.000000px;}
.fs4{font-size:197.196000px;}
.fs8{font-size:211.626000px;}
.fs5{font-size:246.996000px;}
.fs2{font-size:342.738000px;}
.fs0{font-size:740.400000px;}
.y0{bottom:0.000000px;}
.y33{bottom:40.598250px;}
.y3a{bottom:156.254400px;}
.y39{bottom:213.380850px;}
.y38{bottom:270.507300px;}
.y37{bottom:327.633750px;}
.y36{bottom:384.760200px;}
.y35{bottom:471.522450px;}
.y48{bottom:493.675350px;}
.y47{bottom:541.280850px;}
.y46{bottom:588.886350px;}
.y45{bottom:636.492300px;}
.y26{bottom:681.197550px;}
.y44{bottom:684.097800px;}
.y43{bottom:731.703750px;}
.y25{bottom:736.127100px;}
.y42{bottom:779.309250px;}
.y24{bottom:791.056950px;}
.y41{bottom:826.914750px;}
.y23{bottom:845.986500px;}
.y40{bottom:874.520700px;}
.y22{bottom:901.029150px;}
.y49{bottom:945.652650px;}
.y21{bottom:961.208550px;}
.y20{bottom:1016.138400px;}
.y1f{bottom:1071.067950px;}
.y1e{bottom:1125.997500px;}
.y1d{bottom:1180.927350px;}
.y1c{bottom:1296.149250px;}
.y34{bottom:1303.637400px;}
.y1b{bottom:1351.078800px;}
.y1a{bottom:1406.008650px;}
.y3f{bottom:1411.109250px;}
.y3e{bottom:1458.714750px;}
.y19{bottom:1500.897300px;}
.y3d{bottom:1506.320700px;}
.y18{bottom:1693.068600px;}
.y17{bottom:1747.998150px;}
.y16{bottom:1802.927700px;}
.y15{bottom:1898.413350px;}
.y3c{bottom:2068.318200px;}
.y14{bottom:2086.052250px;}
.y3b{bottom:2112.183150px;}
.y13{bottom:2140.982100px;}
.y12{bottom:2195.911650px;}
.y32{bottom:2205.686850px;}
.y11{bottom:2250.841500px;}
.y31{bottom:2255.123700px;}
.y30{bottom:2304.560850px;}
.y10{bottom:2305.771350px;}
.y2f{bottom:2353.997700px;}
.yf{bottom:2360.700900px;}
.y2e{bottom:2403.434850px;}
.ye{bottom:2415.630750px;}
.y2d{bottom:2452.872000px;}
.yd{bottom:2470.560300px;}
.y2c{bottom:2502.308850px;}
.yc{bottom:2525.489850px;}
.y2b{bottom:2551.746000px;}
.yb{bottom:2580.419700px;}
.y2a{bottom:2601.182850px;}
.ya{bottom:2635.349250px;}
.y29{bottom:2650.620000px;}
.y9{bottom:2690.278800px;}
.y28{bottom:2700.056850px;}
.y8{bottom:2745.208650px;}
.y27{bottom:2749.493700px;}
.y7{bottom:2840.694300px;}
.y6{bottom:3315.422700px;}
.y5{bottom:3400.250250px;}
.y4{bottom:3481.534350px;}
.y3{bottom:3524.377200px;}
.y2{bottom:3723.461550px;}
.y1{bottom:3949.406550px;}
.h10{height:67.078200px;}
.h5{height:69.018600px;}
.he{height:100.800000px;}
.hf{height:109.200000px;}
.hb{height:113.400000px;}
.hd{height:118.587150px;}
.ha{height:119.880000px;}
.h3{height:119.960400px;}
.h8{height:126.000000px;}
.h6{height:138.037200px;}
.h9{height:148.500000px;}
.hc{height:174.591450px;}
.h7{height:203.771700px;}
.h4{height:239.916600px;}
.h2{height:518.280000px;}
.h1{height:4251.750000px;}
.h0{height:4251.975000px;}
.w1{width:3401.250000px;}
.w0{width:3401.580000px;}
.x0{left:0.000000px;}
.x4{left:94.132200px;}
.x1{left:114.808200px;}
.x3{left:175.774650px;}
.x9{left:177.068100px;}
.x2{left:532.639050px;}
.x7{left:601.560000px;}
.x6{left:1798.034550px;}
.xa{left:1821.981750px;}
.xc{left:1823.442600px;}
.x8{left:1873.902000px;}
.x5{left:1879.676700px;}
.xb{left:2060.808300px;}
@media print{
.v1{vertical-align:-87.642667pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-36.160000pt;}
.ws1{word-spacing:-19.807243pt;}
.ws3{word-spacing:-14.261771pt;}
.ws4{word-spacing:0.000000pt;}
.ws0{word-spacing:2003.234731pt;}
._3{margin-left:-16.235200pt;}
._1a{margin-left:-15.055467pt;}
._4{margin-left:-14.038400pt;}
._12{margin-left:-12.760907pt;}
._1f{margin-left:-11.030933pt;}
._1e{margin-left:-10.031120pt;}
._1{margin-left:-8.666133pt;}
._c{margin-left:-7.003200pt;}
._6{margin-left:-5.367707pt;}
._2{margin-left:-4.073600pt;}
._23{margin-left:-3.167493pt;}
._8{margin-left:-2.273413pt;}
._0{margin-left:-0.996267pt;}
._1b{width:1.812896pt;}
._f{width:2.893867pt;}
._e{width:4.521600pt;}
._d{width:5.509867pt;}
._16{width:7.716613pt;}
._15{width:10.892613pt;}
._b{width:11.856880pt;}
._a{width:12.807813pt;}
._28{width:13.943253pt;}
._27{width:14.973867pt;}
._19{width:16.127120pt;}
._18{width:17.454213pt;}
._22{width:20.507200pt;}
._1c{width:21.508427pt;}
._1d{width:22.664373pt;}
._26{width:23.841760pt;}
._20{width:29.786667pt;}
._21{width:30.916613pt;}
._24{width:36.607467pt;}
._25{width:37.515200pt;}
._17{width:38.780613pt;}
._14{width:39.800347pt;}
._13{width:40.891733pt;}
._9{width:49.558933pt;}
._10{width:72.260800pt;}
._11{width:73.171200pt;}
._7{width:75.860176pt;}
._5{width:2515.722261pt;}
.fsd{font-size:51.301333pt;}
.fsc{font-size:85.178667pt;}
.fs3{font-size:87.642667pt;}
.fs9{font-size:127.770667pt;}
.fsa{font-size:128.000000pt;}
.fsb{font-size:138.666667pt;}
.fs7{font-size:144.000000pt;}
.fs1{font-size:152.330667pt;}
.fs6{font-size:160.000000pt;}
.fs4{font-size:175.285333pt;}
.fs8{font-size:188.112000pt;}
.fs5{font-size:219.552000pt;}
.fs2{font-size:304.656000pt;}
.fs0{font-size:658.133333pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:36.087333pt;}
.y3a{bottom:138.892800pt;}
.y39{bottom:189.671867pt;}
.y38{bottom:240.450933pt;}
.y37{bottom:291.230000pt;}
.y36{bottom:342.009067pt;}
.y35{bottom:419.131067pt;}
.y48{bottom:438.822533pt;}
.y47{bottom:481.138533pt;}
.y46{bottom:523.454533pt;}
.y45{bottom:565.770933pt;}
.y26{bottom:605.508933pt;}
.y44{bottom:608.086933pt;}
.y43{bottom:650.403333pt;}
.y25{bottom:654.335200pt;}
.y42{bottom:692.719333pt;}
.y24{bottom:703.161733pt;}
.y41{bottom:735.035333pt;}
.y23{bottom:751.988000pt;}
.y40{bottom:777.351733pt;}
.y22{bottom:800.914800pt;}
.y49{bottom:840.580133pt;}
.y21{bottom:854.407600pt;}
.y20{bottom:903.234133pt;}
.y1f{bottom:952.060400pt;}
.y1e{bottom:1000.886667pt;}
.y1d{bottom:1049.713200pt;}
.y1c{bottom:1152.132667pt;}
.y34{bottom:1158.788800pt;}
.y1b{bottom:1200.958933pt;}
.y1a{bottom:1249.785467pt;}
.y3f{bottom:1254.319333pt;}
.y3e{bottom:1296.635333pt;}
.y19{bottom:1334.130933pt;}
.y3d{bottom:1338.951733pt;}
.y18{bottom:1504.949867pt;}
.y17{bottom:1553.776133pt;}
.y16{bottom:1602.602400pt;}
.y15{bottom:1687.478533pt;}
.y3c{bottom:1838.505067pt;}
.y14{bottom:1854.268667pt;}
.y3b{bottom:1877.496133pt;}
.y13{bottom:1903.095200pt;}
.y12{bottom:1951.921467pt;}
.y32{bottom:1960.610533pt;}
.y11{bottom:2000.748000pt;}
.y31{bottom:2004.554400pt;}
.y30{bottom:2048.498533pt;}
.y10{bottom:2049.574533pt;}
.y2f{bottom:2092.442400pt;}
.yf{bottom:2098.400800pt;}
.y2e{bottom:2136.386533pt;}
.ye{bottom:2147.227333pt;}
.y2d{bottom:2180.330667pt;}
.yd{bottom:2196.053600pt;}
.y2c{bottom:2224.274533pt;}
.yc{bottom:2244.879867pt;}
.y2b{bottom:2268.218667pt;}
.yb{bottom:2293.706400pt;}
.y2a{bottom:2312.162533pt;}
.ya{bottom:2342.532667pt;}
.y29{bottom:2356.106667pt;}
.y9{bottom:2391.358933pt;}
.y28{bottom:2400.050533pt;}
.y8{bottom:2440.185467pt;}
.y27{bottom:2443.994400pt;}
.y7{bottom:2525.061600pt;}
.y6{bottom:2947.042400pt;}
.y5{bottom:3022.444667pt;}
.y4{bottom:3094.697200pt;}
.y3{bottom:3132.779733pt;}
.y2{bottom:3309.743600pt;}
.y1{bottom:3510.583600pt;}
.h10{height:59.625067pt;}
.h5{height:61.349867pt;}
.he{height:89.600000pt;}
.hf{height:97.066667pt;}
.hb{height:100.800000pt;}
.hd{height:105.410800pt;}
.ha{height:106.560000pt;}
.h3{height:106.631467pt;}
.h8{height:112.000000pt;}
.h6{height:122.699733pt;}
.h9{height:132.000000pt;}
.hc{height:155.192400pt;}
.h7{height:181.130400pt;}
.h4{height:213.259200pt;}
.h2{height:460.693333pt;}
.h1{height:3779.333333pt;}
.h0{height:3779.533333pt;}
.w1{width:3023.333333pt;}
.w0{width:3023.626667pt;}
.x0{left:0.000000pt;}
.x4{left:83.673067pt;}
.x1{left:102.051733pt;}
.x3{left:156.244133pt;}
.x9{left:157.393867pt;}
.x2{left:473.456933pt;}
.x7{left:534.720000pt;}
.x6{left:1598.252933pt;}
.xa{left:1619.539333pt;}
.xc{left:1620.837867pt;}
.x8{left:1665.690667pt;}
.x5{left:1670.823733pt;}
.xb{left:1831.829600pt;}
}




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