
    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_6a309095fbf618b785f9a5cf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.924805;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_205e7a8a44f59623577fa085.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.960000;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_c83c556577bf459e39726e9c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916992;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_d3e8dd7ad949fe759e3bfbb4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936523;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_701e819e9433553044d15e14.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.970000;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_dcc416a814aef25be91ffa28.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959000;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_cb88cc23fc9a7e1e5d6dc359.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.959000;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_5a2f0371fc4540e5c2b9eb83.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.714355;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);}
.v4{vertical-align:-59.328000px;}
.v2{vertical-align:-53.556000px;}
.v6{vertical-align:-50.172000px;}
.v3{vertical-align:-48.546000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:11.904000px;}
.v7{vertical-align:36.570000px;}
.v1{vertical-align:111.900000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.091140px;}
.ls1{letter-spacing:0.140628px;}
.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:-78.392664px;}
.ws5{word-spacing:-70.071012px;}
.ws3{word-spacing:-66.714996px;}
.ws0{word-spacing:-60.048000px;}
.ws1{word-spacing:-49.192500px;}
.ws4{word-spacing:-0.201546px;}
.ws8{word-spacing:0.000000px;}
.ws7{word-spacing:433.527360px;}
.ws6{word-spacing:636.431646px;}
._8{margin-left:-37.286040px;}
._10{margin-left:-33.099138px;}
._9{margin-left:-26.224884px;}
._f{margin-left:-23.045400px;}
._16{margin-left:-21.376248px;}
._13{margin-left:-18.519942px;}
._11{margin-left:-17.012880px;}
._12{margin-left:-14.688000px;}
._6{margin-left:-12.237816px;}
._14{margin-left:-10.728066px;}
._0{margin-left:-9.180000px;}
._e{margin-left:-7.412208px;}
._5{margin-left:-6.405204px;}
._3{margin-left:-4.320000px;}
._b{margin-left:-3.305124px;}
._1{margin-left:-2.160000px;}
._c{margin-left:-1.122228px;}
._4{width:1.937868px;}
._2{width:3.672000px;}
._7{width:5.409948px;}
._a{width:6.570180px;}
._d{width:7.671624px;}
._15{width:1704.936726px;}
.fc4{color:rgb(0,87,69);}
.fc3{color:rgb(42,96,153);}
.fc2{color:rgb(38,38,38);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:94.182000px;}
.fsd{font-size:104.370000px;}
.fsb{font-size:162.084000px;}
.fsf{font-size:168.036000px;}
.fse{font-size:179.946000px;}
.fs5{font-size:192.018000px;}
.fs3{font-size:196.770000px;}
.fsc{font-size:201.546000px;}
.fs1{font-size:216.000000px;}
.fs8{font-size:228.078000px;}
.fs9{font-size:239.982000px;}
.fs7{font-size:252.054000px;}
.fs6{font-size:281.988000px;}
.fs2{font-size:338.964000px;}
.fs4{font-size:479.964000px;}
.fs0{font-size:540.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y20{bottom:88.611000px;}
.y1f{bottom:160.002000px;}
.y1e{bottom:228.415500px;}
.y3e{bottom:295.426500px;}
.y1d{bottom:296.830500px;}
.y5{bottom:350.958000px;}
.y9{bottom:351.340500px;}
.y22{bottom:363.714000px;}
.ya{bottom:810.255000px;}
.y30{bottom:937.602000px;}
.y2f{bottom:1013.202000px;}
.y2e{bottom:1102.068000px;}
.y2d{bottom:1169.802000px;}
.y2c{bottom:1258.668000px;}
.y2b{bottom:1326.402000px;}
.y2a{bottom:1402.002000px;}
.y29{bottom:1490.868000px;}
.y19{bottom:1510.554000px;}
.y21{bottom:1564.257000px;}
.y18{bottom:1595.169000px;}
.y17{bottom:1679.782500px;}
.y3d{bottom:1699.086000px;}
.y16{bottom:1764.397500px;}
.y3c{bottom:1777.237500px;}
.y15{bottom:1849.011000px;}
.y35{bottom:1873.672500px;}
.y14{bottom:1933.624500px;}
.y34{bottom:1949.272500px;}
.y13{bottom:2018.239500px;}
.y33{bottom:2024.872500px;}
.y11{bottom:2115.184500px;}
.y32{bottom:2120.670000px;}
.y28{bottom:2279.481000px;}
.y27{bottom:2351.466000px;}
.y26{bottom:2423.452500px;}
.y3b{bottom:3066.604500px;}
.y3a{bottom:3151.134000px;}
.y39{bottom:3215.976000px;}
.y10{bottom:3231.751500px;}
.y38{bottom:3287.962500px;}
.yf{bottom:3316.365000px;}
.y37{bottom:3372.492000px;}
.ye{bottom:3400.980000px;}
.y36{bottom:3449.877000px;}
.yd{bottom:3485.593500px;}
.y1c{bottom:3515.910000px;}
.yc{bottom:3570.208500px;}
.y1b{bottom:3591.510000px;}
.yb{bottom:3654.822000px;}
.y1a{bottom:3667.110000px;}
.y12{bottom:3766.224000px;}
.y8{bottom:3770.263500px;}
.y25{bottom:3971.635500px;}
.y31{bottom:3982.003500px;}
.y24{bottom:4020.255000px;}
.y23{bottom:4070.149500px;}
.y7{bottom:4140.312000px;}
.y6{bottom:4242.019500px;}
.y4{bottom:4397.130000px;}
.y3{bottom:4607.730000px;}
.y2{bottom:4818.330000px;}
.hd{height:69.788862px;}
.hf{height:71.462244px;}
.he{height:71.558244px;}
.h11{height:77.338170px;}
.h13{height:134.075068px;}
.h10{height:140.727920px;}
.h8{height:145.933680px;}
.h4{height:160.056000px;}
.h14{height:161.084676px;}
.hb{height:169.005798px;}
.hc{height:177.826662px;}
.ha{height:186.772014px;}
.h12{height:189.730662px;}
.h9{height:208.953108px;}
.h5{height:250.446064px;}
.h6{height:250.470064px;}
.h7{height:347.786414px;}
.h3{height:380.214844px;}
.h2{height:5055.505500px;}
.h0{height:5055.548031px;}
.h1{height:5055.750000px;}
.w2{width:3575.776500px;}
.w0{width:3575.820472px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x7{left:105.874500px;}
.x3{left:108.637500px;}
.x4{left:110.125500px;}
.x1{left:118.587000px;}
.x8{left:127.857000px;}
.xf{left:129.940500px;}
.xa{left:132.831000px;}
.xc{left:145.587000px;}
.xd{left:1927.630500px;}
.x9{left:1929.118500px;}
.xb{left:1934.815500px;}
.x6{left:1938.514500px;}
.x14{left:1941.874500px;}
.x10{left:1953.567000px;}
.x13{left:1965.046500px;}
.x12{left:1968.831000px;}
.x15{left:1979.929500px;}
.x5{left:2071.686000px;}
.x2{left:2561.386500px;}
.x11{left:2619.844500px;}
.xe{left:3115.587000px;}
@media print{
.v4{vertical-align:-52.736000pt;}
.v2{vertical-align:-47.605333pt;}
.v6{vertical-align:-44.597333pt;}
.v3{vertical-align:-43.152000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.581333pt;}
.v7{vertical-align:32.506667pt;}
.v1{vertical-align:99.466667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.081013pt;}
.ls1{letter-spacing:0.125003pt;}
.ws2{word-spacing:-69.682368pt;}
.ws5{word-spacing:-62.285344pt;}
.ws3{word-spacing:-59.302219pt;}
.ws0{word-spacing:-53.376000pt;}
.ws1{word-spacing:-43.726667pt;}
.ws4{word-spacing:-0.179152pt;}
.ws8{word-spacing:0.000000pt;}
.ws7{word-spacing:385.357653pt;}
.ws6{word-spacing:565.717019pt;}
._8{margin-left:-33.143147pt;}
._10{margin-left:-29.421456pt;}
._9{margin-left:-23.311008pt;}
._f{margin-left:-20.484800pt;}
._16{margin-left:-19.001109pt;}
._13{margin-left:-16.462171pt;}
._11{margin-left:-15.122560pt;}
._12{margin-left:-13.056000pt;}
._6{margin-left:-10.878059pt;}
._14{margin-left:-9.536059pt;}
._0{margin-left:-8.160000pt;}
._e{margin-left:-6.588629pt;}
._5{margin-left:-5.693515pt;}
._3{margin-left:-3.840000pt;}
._b{margin-left:-2.937888pt;}
._1{margin-left:-1.920000pt;}
._c{margin-left:-0.997536pt;}
._4{width:1.722549pt;}
._2{width:3.264000pt;}
._7{width:4.808843pt;}
._a{width:5.840160pt;}
._d{width:6.819221pt;}
._15{width:1515.499312pt;}
.fsa{font-size:83.717333pt;}
.fsd{font-size:92.773333pt;}
.fsb{font-size:144.074667pt;}
.fsf{font-size:149.365333pt;}
.fse{font-size:159.952000pt;}
.fs5{font-size:170.682667pt;}
.fs3{font-size:174.906667pt;}
.fsc{font-size:179.152000pt;}
.fs1{font-size:192.000000pt;}
.fs8{font-size:202.736000pt;}
.fs9{font-size:213.317333pt;}
.fs7{font-size:224.048000pt;}
.fs6{font-size:250.656000pt;}
.fs2{font-size:301.301333pt;}
.fs4{font-size:426.634667pt;}
.fs0{font-size:480.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y20{bottom:78.765333pt;}
.y1f{bottom:142.224000pt;}
.y1e{bottom:203.036000pt;}
.y3e{bottom:262.601333pt;}
.y1d{bottom:263.849333pt;}
.y5{bottom:311.962667pt;}
.y9{bottom:312.302667pt;}
.y22{bottom:323.301333pt;}
.ya{bottom:720.226667pt;}
.y30{bottom:833.424000pt;}
.y2f{bottom:900.624000pt;}
.y2e{bottom:979.616000pt;}
.y2d{bottom:1039.824000pt;}
.y2c{bottom:1118.816000pt;}
.y2b{bottom:1179.024000pt;}
.y2a{bottom:1246.224000pt;}
.y29{bottom:1325.216000pt;}
.y19{bottom:1342.714667pt;}
.y21{bottom:1390.450667pt;}
.y18{bottom:1417.928000pt;}
.y17{bottom:1493.140000pt;}
.y3d{bottom:1510.298667pt;}
.y16{bottom:1568.353333pt;}
.y3c{bottom:1579.766667pt;}
.y15{bottom:1643.565333pt;}
.y35{bottom:1665.486667pt;}
.y14{bottom:1718.777333pt;}
.y34{bottom:1732.686667pt;}
.y13{bottom:1793.990667pt;}
.y33{bottom:1799.886667pt;}
.y11{bottom:1880.164000pt;}
.y32{bottom:1885.040000pt;}
.y28{bottom:2026.205333pt;}
.y27{bottom:2090.192000pt;}
.y26{bottom:2154.180000pt;}
.y3b{bottom:2725.870667pt;}
.y3a{bottom:2801.008000pt;}
.y39{bottom:2858.645333pt;}
.y10{bottom:2872.668000pt;}
.y38{bottom:2922.633333pt;}
.yf{bottom:2947.880000pt;}
.y37{bottom:2997.770667pt;}
.ye{bottom:3023.093333pt;}
.y36{bottom:3066.557333pt;}
.yd{bottom:3098.305333pt;}
.y1c{bottom:3125.253333pt;}
.yc{bottom:3173.518667pt;}
.y1b{bottom:3192.453333pt;}
.yb{bottom:3248.730667pt;}
.y1a{bottom:3259.653333pt;}
.y12{bottom:3347.754667pt;}
.y8{bottom:3351.345333pt;}
.y25{bottom:3530.342667pt;}
.y31{bottom:3539.558667pt;}
.y24{bottom:3573.560000pt;}
.y23{bottom:3617.910667pt;}
.y7{bottom:3680.277333pt;}
.y6{bottom:3770.684000pt;}
.y4{bottom:3908.560000pt;}
.y3{bottom:4095.760000pt;}
.y2{bottom:4282.960000pt;}
.hd{height:62.034544pt;}
.hf{height:63.521995pt;}
.he{height:63.607328pt;}
.h11{height:68.745040pt;}
.h13{height:119.177839pt;}
.h10{height:125.091484pt;}
.h8{height:129.718827pt;}
.h4{height:142.272000pt;}
.h14{height:143.186379pt;}
.hb{height:150.227376pt;}
.hc{height:158.068144pt;}
.ha{height:166.019568pt;}
.h12{height:168.649477pt;}
.h9{height:185.736096pt;}
.h5{height:222.618724pt;}
.h6{height:222.640057pt;}
.h7{height:309.143479pt;}
.h3{height:337.968750pt;}
.h2{height:4493.782667pt;}
.h0{height:4493.820472pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.468000pt;}
.w0{width:3178.507087pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x7{left:94.110667pt;}
.x3{left:96.566667pt;}
.x4{left:97.889333pt;}
.x1{left:105.410667pt;}
.x8{left:113.650667pt;}
.xf{left:115.502667pt;}
.xa{left:118.072000pt;}
.xc{left:129.410667pt;}
.xd{left:1713.449333pt;}
.x9{left:1714.772000pt;}
.xb{left:1719.836000pt;}
.x6{left:1723.124000pt;}
.x14{left:1726.110667pt;}
.x10{left:1736.504000pt;}
.x13{left:1746.708000pt;}
.x12{left:1750.072000pt;}
.x15{left:1759.937333pt;}
.x5{left:1841.498667pt;}
.x2{left:2276.788000pt;}
.x11{left:2328.750667pt;}
.xe{left:2769.410667pt;}
}




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