
    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_bb164b16fc4dd20bba81b461.woff')format("woff");}.ff1{font-family:ff1;line-height:0.970215;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_7a4c68cebd558720dbab6343.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_2558bc99243eaa4a3b896949.woff')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_0eaa6796f3171461019e5f7f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.853027;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_9936f9df4faa0c14dd019336.woff')format("woff");}.ff5{font-family:ff5;line-height:0.970215;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_a898332a565e93944dcef738.woff')format("woff");}.ff6{font-family:ff6;line-height:0.940918;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_4e2af42b576af91fb5550b29.woff')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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:ff8;src:url('chunks/assets/font_439aaf0e63e559e4452c6a87.woff')format("woff");}.ff8{font-family:ff8;line-height:1.063477;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v7{vertical-align:-52.800000px;}
.v2{vertical-align:-45.000000px;}
.v3{vertical-align:-29.400000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:29.400000px;}
.v1{vertical-align:45.000000px;}
.v6{vertical-align:52.800000px;}
.v5{vertical-align:109.140000px;}
.ls1{letter-spacing:-1.356000px;}
.ls9{letter-spacing:-0.906000px;}
.ls3{letter-spacing:-0.834000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.499200px;}
.ls8{letter-spacing:1.056000px;}
.ls7{letter-spacing:7.088250px;}
.ls5{letter-spacing:10.121250px;}
.ls4{letter-spacing:50.201250px;}
.ls6{letter-spacing:70.121250px;}
.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:-144.150000px;}
.ws2{word-spacing:-37.662900px;}
.wsb{word-spacing:-32.802000px;}
.ws6{word-spacing:-32.611800px;}
.ws8{word-spacing:-31.713000px;}
.ws7{word-spacing:-29.526900px;}
.wsc{word-spacing:-22.803000px;}
.ws4{word-spacing:-21.390900px;}
.ws0{word-spacing:-19.356900px;}
.ws5{word-spacing:-0.238800px;}
.ws1{word-spacing:0.000000px;}
.ws9{word-spacing:8.086950px;}
.wsa{word-spacing:8.169150px;}
._7{margin-left:-12.987000px;}
._6{margin-left:-11.692500px;}
._9{margin-left:-9.466200px;}
._5{margin-left:-7.844250px;}
._a{margin-left:-6.499200px;}
._4{margin-left:-4.660050px;}
._2{margin-left:-3.270000px;}
._1{margin-left:-1.700400px;}
._0{width:1.962000px;}
._3{width:3.400800px;}
._8{width:5.396550px;}
._d{width:7.549350px;}
._c{width:63.055350px;}
._b{width:304.219950px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(0,176,80);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:85.650000px;}
.fs6{font-size:94.500000px;}
.fs8{font-size:94.650000px;}
.fsc{font-size:103.650000px;}
.fsd{font-size:108.000000px;}
.fs4{font-size:108.150000px;}
.fs7{font-size:121.650000px;}
.fse{font-size:121.800000px;}
.fsa{font-size:130.650000px;}
.fs0{font-size:130.800000px;}
.fs3{font-size:144.150000px;}
.fs5{font-size:144.300000px;}
.fs2{font-size:166.650000px;}
.fs9{font-size:238.800000px;}
.fsb{font-size:252.300000px;}
.y0{bottom:0.000000px;}
.y2{bottom:58.575000px;}
.yd{bottom:67.162500px;}
.y8{bottom:67.462500px;}
.y1{bottom:97.612500px;}
.y1a{bottom:117.637500px;}
.y19{bottom:135.225000px;}
.y6{bottom:156.525000px;}
.y24{bottom:165.000000px;}
.y1c{bottom:214.275000px;}
.y1b{bottom:221.100000px;}
.y16{bottom:234.075000px;}
.y23{bottom:242.880000px;}
.y15{bottom:258.195000px;}
.y18{bottom:281.250000px;}
.y5{bottom:282.870000px;}
.y22{bottom:287.325000px;}
.y26{bottom:288.270000px;}
.y11{bottom:334.530000px;}
.y17{bottom:349.380000px;}
.y21{bottom:368.895000px;}
.y10{bottom:375.645000px;}
.yb{bottom:384.570000px;}
.y1d{bottom:390.780000px;}
.y12{bottom:396.900000px;}
.yf{bottom:408.300000px;}
.ya{bottom:410.475000px;}
.y20{bottom:417.255000px;}
.y13{bottom:463.920000px;}
.y25{bottom:465.150000px;}
.y1f{bottom:467.505000px;}
.y14{bottom:532.575000px;}
.ye{bottom:544.575000px;}
.y1e{bottom:553.830000px;}
.y4{bottom:643.470000px;}
.y9{bottom:649.800000px;}
.yc{bottom:654.570000px;}
.y3{bottom:688.500000px;}
.y7{bottom:689.130000px;}
.h7{height:70.875000px;}
.h10{height:81.000000px;}
.h11{height:81.112500px;}
.h2{height:85.189966px;}
.h8{height:91.237500px;}
.h15{height:91.350000px;}
.hb{height:94.141626px;}
.h9{height:96.914575px;}
.h1{height:98.100000px;}
.h5{height:107.569116px;}
.hc{height:110.737573px;}
.h4{height:121.485791px;}
.h14{height:124.560571px;}
.hd{height:133.775903px;}
.h12{height:140.153467px;}
.h13{height:147.598901px;}
.h6{height:147.752490px;}
.h3{height:170.637231px;}
.ha{height:179.100000px;}
.hf{height:230.625791px;}
.he{height:258.336475px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x3{left:92.699979px;}
.x5{left:163.154979px;}
.x1b{left:221.204979px;}
.x19{left:223.904979px;}
.x1d{left:229.349979px;}
.x1a{left:232.274979px;}
.x1{left:250.124979px;}
.x1c{left:300.344979px;}
.x28{left:337.244979px;}
.x29{left:341.129979px;}
.x26{left:395.549979px;}
.x2{left:420.449979px;}
.x13{left:422.624979px;}
.x27{left:439.544979px;}
.x24{left:479.129979px;}
.xd{left:496.319979px;}
.xf{left:518.399979px;}
.x14{left:547.799979px;}
.x8{left:553.754979px;}
.x6{left:557.819979px;}
.x20{left:561.269979px;}
.x18{left:575.879979px;}
.xc{left:579.629979px;}
.xe{left:590.924979px;}
.x7{left:609.749979px;}
.x10{left:614.774979px;}
.x9{left:629.624979px;}
.xb{left:638.354979px;}
.xa{left:640.154979px;}
.x11{left:657.869979px;}
.x12{left:682.454979px;}
.x25{left:691.079979px;}
.x21{left:698.249979px;}
.x1e{left:713.744979px;}
.x1f{left:951.524979px;}
.x15{left:1082.324979px;}
.x23{left:1099.154979px;}
.x17{left:1108.994979px;}
.x22{left:1122.674979px;}
.x16{left:1129.349979px;}
.x4{left:1137.374979px;}
@media print{
.v7{vertical-align:-46.933333pt;}
.v2{vertical-align:-40.000000pt;}
.v3{vertical-align:-26.133333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:26.133333pt;}
.v1{vertical-align:40.000000pt;}
.v6{vertical-align:46.933333pt;}
.v5{vertical-align:97.013333pt;}
.ls1{letter-spacing:-1.205333pt;}
.ls9{letter-spacing:-0.805333pt;}
.ls3{letter-spacing:-0.741333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.443733pt;}
.ls8{letter-spacing:0.938667pt;}
.ls7{letter-spacing:6.300667pt;}
.ls5{letter-spacing:8.996667pt;}
.ls4{letter-spacing:44.623333pt;}
.ls6{letter-spacing:62.330000pt;}
.ws3{word-spacing:-128.133333pt;}
.ws2{word-spacing:-33.478133pt;}
.wsb{word-spacing:-29.157333pt;}
.ws6{word-spacing:-28.988267pt;}
.ws8{word-spacing:-28.189333pt;}
.ws7{word-spacing:-26.246133pt;}
.wsc{word-spacing:-20.269333pt;}
.ws4{word-spacing:-19.014133pt;}
.ws0{word-spacing:-17.206133pt;}
.ws5{word-spacing:-0.212267pt;}
.ws1{word-spacing:0.000000pt;}
.ws9{word-spacing:7.188400pt;}
.wsa{word-spacing:7.261467pt;}
._7{margin-left:-11.544000pt;}
._6{margin-left:-10.393333pt;}
._9{margin-left:-8.414400pt;}
._5{margin-left:-6.972667pt;}
._a{margin-left:-5.777067pt;}
._4{margin-left:-4.142267pt;}
._2{margin-left:-2.906667pt;}
._1{margin-left:-1.511467pt;}
._0{width:1.744000pt;}
._3{width:3.022933pt;}
._8{width:4.796933pt;}
._d{width:6.710533pt;}
._c{width:56.049200pt;}
._b{width:270.417733pt;}
.fs1{font-size:76.133333pt;}
.fs6{font-size:84.000000pt;}
.fs8{font-size:84.133333pt;}
.fsc{font-size:92.133333pt;}
.fsd{font-size:96.000000pt;}
.fs4{font-size:96.133333pt;}
.fs7{font-size:108.133333pt;}
.fse{font-size:108.266667pt;}
.fsa{font-size:116.133333pt;}
.fs0{font-size:116.266667pt;}
.fs3{font-size:128.133333pt;}
.fs5{font-size:128.266667pt;}
.fs2{font-size:148.133333pt;}
.fs9{font-size:212.266667pt;}
.fsb{font-size:224.266667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:52.066667pt;}
.yd{bottom:59.700000pt;}
.y8{bottom:59.966667pt;}
.y1{bottom:86.766667pt;}
.y1a{bottom:104.566667pt;}
.y19{bottom:120.200000pt;}
.y6{bottom:139.133333pt;}
.y24{bottom:146.666667pt;}
.y1c{bottom:190.466667pt;}
.y1b{bottom:196.533333pt;}
.y16{bottom:208.066667pt;}
.y23{bottom:215.893333pt;}
.y15{bottom:229.506667pt;}
.y18{bottom:250.000000pt;}
.y5{bottom:251.440000pt;}
.y22{bottom:255.400000pt;}
.y26{bottom:256.240000pt;}
.y11{bottom:297.360000pt;}
.y17{bottom:310.560000pt;}
.y21{bottom:327.906667pt;}
.y10{bottom:333.906667pt;}
.yb{bottom:341.840000pt;}
.y1d{bottom:347.360000pt;}
.y12{bottom:352.800000pt;}
.yf{bottom:362.933333pt;}
.ya{bottom:364.866667pt;}
.y20{bottom:370.893333pt;}
.y13{bottom:412.373333pt;}
.y25{bottom:413.466667pt;}
.y1f{bottom:415.560000pt;}
.y14{bottom:473.400000pt;}
.ye{bottom:484.066667pt;}
.y1e{bottom:492.293333pt;}
.y4{bottom:571.973333pt;}
.y9{bottom:577.600000pt;}
.yc{bottom:581.840000pt;}
.y3{bottom:612.000000pt;}
.y7{bottom:612.560000pt;}
.h7{height:63.000000pt;}
.h10{height:72.000000pt;}
.h11{height:72.100000pt;}
.h2{height:75.724414pt;}
.h8{height:81.100000pt;}
.h15{height:81.200000pt;}
.hb{height:83.681445pt;}
.h9{height:86.146289pt;}
.h1{height:87.200000pt;}
.h5{height:95.616992pt;}
.hc{height:98.433398pt;}
.h4{height:107.987370pt;}
.h14{height:110.720508pt;}
.hd{height:118.911914pt;}
.h12{height:124.580859pt;}
.h13{height:131.199023pt;}
.h6{height:131.335547pt;}
.h3{height:151.677539pt;}
.ha{height:159.200000pt;}
.hf{height:205.000703pt;}
.he{height:229.632422pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x3{left:82.399981pt;}
.x5{left:145.026648pt;}
.x1b{left:196.626648pt;}
.x19{left:199.026648pt;}
.x1d{left:203.866648pt;}
.x1a{left:206.466648pt;}
.x1{left:222.333314pt;}
.x1c{left:266.973314pt;}
.x28{left:299.773314pt;}
.x29{left:303.226648pt;}
.x26{left:351.599981pt;}
.x2{left:373.733314pt;}
.x13{left:375.666648pt;}
.x27{left:390.706648pt;}
.x24{left:425.893314pt;}
.xd{left:441.173314pt;}
.xf{left:460.799981pt;}
.x14{left:486.933314pt;}
.x8{left:492.226648pt;}
.x6{left:495.839981pt;}
.x20{left:498.906648pt;}
.x18{left:511.893314pt;}
.xc{left:515.226648pt;}
.xe{left:525.266648pt;}
.x7{left:541.999981pt;}
.x10{left:546.466648pt;}
.x9{left:559.666648pt;}
.xb{left:567.426648pt;}
.xa{left:569.026648pt;}
.x11{left:584.773314pt;}
.x12{left:606.626648pt;}
.x25{left:614.293314pt;}
.x21{left:620.666648pt;}
.x1e{left:634.439981pt;}
.x1f{left:845.799981pt;}
.x15{left:962.066648pt;}
.x23{left:977.026648pt;}
.x17{left:985.773314pt;}
.x22{left:997.933314pt;}
.x16{left:1003.866648pt;}
.x4{left:1010.999981pt;}
}




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