
    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_aa9bdbd4e060f098783de4b3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_87740f4f06cc49efa12b4fd5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_cd2b7bc060282a25501fdecc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_0da78efad8e114920023b16d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_98a22bf6ed361431ba688adb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.097168;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;}
.ls4{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.020160px;}
.lsb{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.987840px;}
.ls5{letter-spacing:1.440000px;}
.ls3{letter-spacing:2.160000px;}
.ls0{letter-spacing:2.427840px;}
.ls9{letter-spacing:2.700000px;}
.ls1{letter-spacing:4.047840px;}
.ls8{letter-spacing:13.680000px;}
.lsa{letter-spacing:16.560000px;}
.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:-20.880000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-15.120000px;}
.ws2{word-spacing:0.000000px;}
._1f{margin-left:-3.401280px;}
._3{margin-left:-2.138400px;}
._1{margin-left:-1.075680px;}
._0{width:1.553760px;}
._2{width:3.315360px;}
._6{width:4.739040px;}
._15{width:6.194880px;}
._9{width:7.342080px;}
._8{width:8.902560px;}
._18{width:9.972480px;}
._a{width:11.029440px;}
._19{width:12.397920px;}
._5{width:13.655520px;}
._25{width:14.707200px;}
._4{width:15.733440px;}
._7{width:17.221440px;}
._11{width:18.686400px;}
._20{width:19.814880px;}
._1c{width:22.592640px;}
._10{width:23.839200px;}
._f{width:25.849440px;}
._1a{width:27.537120px;}
._21{width:28.917120px;}
._17{width:30.176160px;}
._16{width:31.292160px;}
._1e{width:32.730720px;}
._1d{width:34.494240px;}
._13{width:37.550880px;}
._12{width:39.587520px;}
._e{width:41.384160px;}
._d{width:42.974880px;}
._14{width:45.101760px;}
._27{width:46.192320px;}
._28{width:47.640000px;}
._c{width:49.176480px;}
._1b{width:50.225280px;}
._b{width:51.433440px;}
._2a{width:52.955040px;}
._24{width:56.521440px;}
._22{width:57.561600px;}
._23{width:59.198880px;}
._29{width:61.219200px;}
._26{width:89.015040px;}
.fc2{color:rgb(65,0,130);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:54.720000px;}
.fs6{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.fs0{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y7{bottom:3.600000px;}
.y6{bottom:22.320000px;}
.y26{bottom:57.240000px;}
.y39{bottom:62.640000px;}
.y25{bottom:74.556000px;}
.y33{bottom:79.956000px;}
.y24{bottom:91.476000px;}
.y3b{bottom:91.836000px;}
.y23{bottom:96.876000px;}
.y32{bottom:108.756000px;}
.y22{bottom:109.116000px;}
.y38{bottom:114.156000px;}
.y31{bottom:126.036000px;}
.y37{bottom:126.396000px;}
.y21{bottom:129.636000px;}
.y30{bottom:131.436000px;}
.y2f{bottom:143.316000px;}
.y2e{bottom:148.716000px;}
.y2d{bottom:160.950000px;}
.y1f{bottom:165.630000px;}
.y20{bottom:173.190000px;}
.y1e{bottom:202.035000px;}
.y36{bottom:209.595000px;}
.y1d{bottom:238.395000px;}
.y1c{bottom:274.395000px;}
.y1b{bottom:310.755000px;}
.y1a{bottom:347.145000px;}
.y19{bottom:383.145000px;}
.y18{bottom:419.505000px;}
.y17{bottom:455.550000px;}
.y16{bottom:491.910000px;}
.y2c{bottom:499.470000px;}
.y15{bottom:528.270000px;}
.y14{bottom:564.270000px;}
.y13{bottom:600.660000px;}
.y35{bottom:608.220000px;}
.y12{bottom:636.660000px;}
.y11{bottom:673.020000px;}
.y10{bottom:709.410000px;}
.y3a{bottom:745.050000px;}
.yf{bottom:745.410000px;}
.ye{bottom:781.770000px;}
.y34{bottom:789.330000px;}
.yd{bottom:818.130000px;}
.yc{bottom:854.175000px;}
.y2b{bottom:861.735000px;}
.yb{bottom:890.535000px;}
.ya{bottom:926.175000px;}
.y2a{bottom:926.535000px;}
.y9{bottom:962.565000px;}
.y28{bottom:962.925000px;}
.y29{bottom:970.485000px;}
.y8{bottom:998.925000px;}
.y27{bottom:999.285000px;}
.y5{bottom:1099.050000px;}
.y4{bottom:1117.410000px;}
.y3{bottom:1137.210000px;}
.y2{bottom:1157.730000px;}
.y1{bottom:1181.490000px;}
.ha{height:38.158594px;}
.hc{height:53.303906px;}
.h9{height:53.704687px;}
.hb{height:59.357813px;}
.h4{height:64.978594px;}
.h5{height:65.010937px;}
.h3{height:70.628906px;}
.h8{height:73.610156px;}
.h7{height:81.970312px;}
.h6{height:84.172500px;}
.h2{height:117.302344px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:893.159973px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:127.475987px;}
.xf{left:132.551987px;}
.x20{left:137.591987px;}
.x1c{left:182.594973px;}
.x1d{left:189.434987px;}
.xb{left:191.234987px;}
.x9{left:223.664987px;}
.x16{left:285.224973px;}
.x17{left:292.064987px;}
.x1f{left:321.269987px;}
.x8{left:328.109987px;}
.x6{left:337.829987px;}
.x12{left:340.709973px;}
.xe{left:343.589987px;}
.x13{left:347.549987px;}
.x1a{left:477.179973px;}
.x7{left:478.259987px;}
.x1b{left:484.019987px;}
.xa{left:510.329987px;}
.xc{left:526.169973px;}
.xd{left:533.009987px;}
.x1{left:554.969987px;}
.x3{left:571.169987px;}
.x2{left:601.454987px;}
.x14{left:615.134973px;}
.x15{left:621.974987px;}
.x18{left:701.204973px;}
.x19{left:708.044987px;}
.x1e{left:715.244987px;}
.x10{left:817.169973px;}
.x11{left:824.009987px;}
.x4{left:829.409987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.017920pt;}
.lsb{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.878080pt;}
.ls5{letter-spacing:1.280000pt;}
.ls3{letter-spacing:1.920000pt;}
.ls0{letter-spacing:2.158080pt;}
.ls9{letter-spacing:2.400000pt;}
.ls1{letter-spacing:3.598080pt;}
.ls8{letter-spacing:12.160000pt;}
.lsa{letter-spacing:14.720000pt;}
.ws1{word-spacing:-18.560000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-13.440000pt;}
.ws2{word-spacing:0.000000pt;}
._1f{margin-left:-3.023360pt;}
._3{margin-left:-1.900800pt;}
._1{margin-left:-0.956160pt;}
._0{width:1.381120pt;}
._2{width:2.946987pt;}
._6{width:4.212480pt;}
._15{width:5.506560pt;}
._9{width:6.526293pt;}
._8{width:7.913387pt;}
._18{width:8.864427pt;}
._a{width:9.803947pt;}
._19{width:11.020373pt;}
._5{width:12.138240pt;}
._25{width:13.073067pt;}
._4{width:13.985280pt;}
._7{width:15.307947pt;}
._11{width:16.610133pt;}
._20{width:17.613227pt;}
._1c{width:20.082347pt;}
._10{width:21.190400pt;}
._f{width:22.977280pt;}
._1a{width:24.477440pt;}
._21{width:25.704107pt;}
._17{width:26.823253pt;}
._16{width:27.815253pt;}
._1e{width:29.093973pt;}
._1d{width:30.661547pt;}
._13{width:33.378560pt;}
._12{width:35.188907pt;}
._e{width:36.785920pt;}
._d{width:38.199893pt;}
._14{width:40.090453pt;}
._27{width:41.059840pt;}
._28{width:42.346667pt;}
._c{width:43.712427pt;}
._1b{width:44.644693pt;}
._b{width:45.718613pt;}
._2a{width:47.071147pt;}
._24{width:50.241280pt;}
._22{width:51.165867pt;}
._23{width:52.621227pt;}
._29{width:54.417067pt;}
._26{width:79.124480pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:48.640000pt;}
.fs6{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.fs0{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.200000pt;}
.y6{bottom:19.840000pt;}
.y26{bottom:50.880000pt;}
.y39{bottom:55.680000pt;}
.y25{bottom:66.272000pt;}
.y33{bottom:71.072000pt;}
.y24{bottom:81.312000pt;}
.y3b{bottom:81.632000pt;}
.y23{bottom:86.112000pt;}
.y32{bottom:96.672000pt;}
.y22{bottom:96.992000pt;}
.y38{bottom:101.472000pt;}
.y31{bottom:112.032000pt;}
.y37{bottom:112.352000pt;}
.y21{bottom:115.232000pt;}
.y30{bottom:116.832000pt;}
.y2f{bottom:127.392000pt;}
.y2e{bottom:132.192000pt;}
.y2d{bottom:143.066667pt;}
.y1f{bottom:147.226667pt;}
.y20{bottom:153.946667pt;}
.y1e{bottom:179.586667pt;}
.y36{bottom:186.306667pt;}
.y1d{bottom:211.906667pt;}
.y1c{bottom:243.906667pt;}
.y1b{bottom:276.226667pt;}
.y1a{bottom:308.573333pt;}
.y19{bottom:340.573333pt;}
.y18{bottom:372.893333pt;}
.y17{bottom:404.933333pt;}
.y16{bottom:437.253333pt;}
.y2c{bottom:443.973333pt;}
.y15{bottom:469.573333pt;}
.y14{bottom:501.573333pt;}
.y13{bottom:533.920000pt;}
.y35{bottom:540.640000pt;}
.y12{bottom:565.920000pt;}
.y11{bottom:598.240000pt;}
.y10{bottom:630.586667pt;}
.y3a{bottom:662.266667pt;}
.yf{bottom:662.586667pt;}
.ye{bottom:694.906667pt;}
.y34{bottom:701.626667pt;}
.yd{bottom:727.226667pt;}
.yc{bottom:759.266667pt;}
.y2b{bottom:765.986667pt;}
.yb{bottom:791.586667pt;}
.ya{bottom:823.266667pt;}
.y2a{bottom:823.586667pt;}
.y9{bottom:855.613333pt;}
.y28{bottom:855.933333pt;}
.y29{bottom:862.653333pt;}
.y8{bottom:887.933333pt;}
.y27{bottom:888.253333pt;}
.y5{bottom:976.933333pt;}
.y4{bottom:993.253333pt;}
.y3{bottom:1010.853333pt;}
.y2{bottom:1029.093333pt;}
.y1{bottom:1050.213333pt;}
.ha{height:33.918750pt;}
.hc{height:47.381250pt;}
.h9{height:47.737500pt;}
.hb{height:52.762500pt;}
.h4{height:57.758750pt;}
.h5{height:57.787500pt;}
.h3{height:62.781250pt;}
.h8{height:65.431250pt;}
.h7{height:72.862500pt;}
.h6{height:74.820000pt;}
.h2{height:104.268750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.919976pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:113.311988pt;}
.xf{left:117.823988pt;}
.x20{left:122.303988pt;}
.x1c{left:162.306643pt;}
.x1d{left:168.386655pt;}
.xb{left:169.986655pt;}
.x9{left:198.813322pt;}
.x16{left:253.533310pt;}
.x17{left:259.613322pt;}
.x1f{left:285.573322pt;}
.x8{left:291.653322pt;}
.x6{left:300.293322pt;}
.x12{left:302.853310pt;}
.xe{left:305.413322pt;}
.x13{left:308.933322pt;}
.x1a{left:424.159976pt;}
.x7{left:425.119988pt;}
.x1b{left:430.239988pt;}
.xa{left:453.626655pt;}
.xc{left:467.706643pt;}
.xd{left:473.786655pt;}
.x1{left:493.306655pt;}
.x3{left:507.706655pt;}
.x2{left:534.626655pt;}
.x14{left:546.786643pt;}
.x15{left:552.866655pt;}
.x18{left:623.293310pt;}
.x19{left:629.373322pt;}
.x1e{left:635.773322pt;}
.x10{left:726.373310pt;}
.x11{left:732.453322pt;}
.x4{left:737.253322pt;}
}




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