
    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_664786c91fd63c9ea831f024.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6183fd6228d4adb2d5c1e332.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_2f1b5e47eb5ab36dc7e6a1c7.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_18f63b177aeea34ab62fffe9.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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;}
.lsa{letter-spacing:-8.760000px;}
.ls8{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.288000px;}
.ls6{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000001px;}
.ls1{letter-spacing:0.015840px;}
.lsd{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.624000px;}
.ls4{letter-spacing:0.684000px;}
.ls3{letter-spacing:0.720000px;}
.ls7{letter-spacing:1.080000px;}
.ls12{letter-spacing:1.440000px;}
.ls0{letter-spacing:1.455840px;}
.ls5{letter-spacing:1.944000px;}
.lsb{letter-spacing:2.160000px;}
.ls10{letter-spacing:100.944000px;}
.lsc{letter-spacing:136.944000px;}
.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;}
}
.wsb{word-spacing:-19.440000px;}
.ws9{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.712000px;}
.ws0{word-spacing:-15.120000px;}
.ws1{word-spacing:-11.880000px;}
.ws5{word-spacing:-10.080000px;}
.ws3{word-spacing:-9.720000px;}
.ws8{word-spacing:-9.240000px;}
.ws2{word-spacing:-9.000000px;}
.ws4{word-spacing:-8.280000px;}
.ws7{word-spacing:0.000000px;}
._d{margin-left:-9.770880px;}
._c{margin-left:-8.728320px;}
._26{margin-left:-7.320480px;}
._2{margin-left:-6.320160px;}
._1{margin-left:-5.037120px;}
._b{margin-left:-3.748800px;}
._a{margin-left:-2.424000px;}
._5{margin-left:-1.188000px;}
._0{width:1.045440px;}
._4{width:2.112960px;}
._3{width:3.411360px;}
._9{width:4.628160px;}
._24{width:5.832000px;}
._25{width:6.880320px;}
._f{width:7.898400px;}
._e{width:9.766560px;}
._1e{width:11.746560px;}
._11{width:12.924960px;}
._30{width:13.934880px;}
._10{width:14.937600px;}
._14{width:15.947040px;}
._2e{width:16.971840px;}
._15{width:19.668000px;}
._19{width:21.504000px;}
._27{width:22.545120px;}
._12{width:23.781120px;}
._13{width:24.919680px;}
._16{width:26.256000px;}
._17{width:27.564960px;}
._18{width:28.566720px;}
._1f{width:29.793600px;}
._2f{width:31.130880px;}
._31{width:32.263680px;}
._2a{width:33.285600px;}
._28{width:35.337600px;}
._29{width:37.174080px;}
._1d{width:38.740800px;}
._23{width:39.806880px;}
._1c{width:40.927680px;}
._1b{width:42.657600px;}
._1a{width:43.864320px;}
._22{width:50.876640px;}
._21{width:51.888000px;}
._20{width:52.998720px;}
._7{width:62.494080px;}
._6{width:63.629280px;}
._8{width:64.711680px;}
._32{width:66.888000px;}
._33{width:67.983840px;}
._2c{width:69.152160px;}
._2d{width:70.728960px;}
._2b{width:71.888640px;}
._36{width:75.573120px;}
._35{width:84.958560px;}
._34{width:88.341120px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs2{font-size:47.520000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:46.440000px;}
.y1{bottom:66.600000px;}
.y31{bottom:115.596000px;}
.y30{bottom:146.556000px;}
.y2f{bottom:177.510000px;}
.y2e{bottom:208.515000px;}
.y2d{bottom:239.835000px;}
.y2c{bottom:270.795000px;}
.y2b{bottom:301.755000px;}
.y2a{bottom:332.745000px;}
.y29{bottom:364.065000px;}
.y28{bottom:395.025000px;}
.y27{bottom:425.985000px;}
.y26{bottom:456.990000px;}
.y25{bottom:487.950000px;}
.y24{bottom:519.270000px;}
.y23{bottom:550.230000px;}
.y22{bottom:580.860000px;}
.y3f{bottom:581.220000px;}
.y21{bottom:612.180000px;}
.y20{bottom:643.140000px;}
.y3e{bottom:643.500000px;}
.y1f{bottom:674.100000px;}
.y3d{bottom:674.460000px;}
.y1e{bottom:705.090000px;}
.y3c{bottom:705.450000px;}
.y1d{bottom:736.050000px;}
.y41{bottom:736.410000px;}
.y1c{bottom:767.370000px;}
.y40{bottom:767.730000px;}
.y1b{bottom:798.330000px;}
.y3b{bottom:798.690000px;}
.y1a{bottom:829.335000px;}
.y3a{bottom:829.695000px;}
.y19{bottom:860.655000px;}
.y18{bottom:891.975000px;}
.y17{bottom:910.335000px;}
.y16{bottom:920.415000px;}
.y39{bottom:922.935000px;}
.y15{bottom:930.855000px;}
.y14{bottom:941.295000px;}
.y13{bottom:951.765000px;}
.y38{bottom:953.925000px;}
.y12{bottom:961.845000px;}
.y11{bottom:972.285000px;}
.y10{bottom:982.725000px;}
.y37{bottom:984.885000px;}
.yf{bottom:993.165000px;}
.ye{bottom:1003.245000px;}
.yd{bottom:1013.685000px;}
.y36{bottom:1016.205000px;}
.yc{bottom:1024.125000px;}
.yb{bottom:1035.285000px;}
.y35{bottom:1047.165000px;}
.ya{bottom:1048.605000px;}
.y9{bottom:1062.645000px;}
.y8{bottom:1076.325000px;}
.y34{bottom:1078.170000px;}
.y7{bottom:1090.050000px;}
.y6{bottom:1104.090000px;}
.y33{bottom:1109.130000px;}
.y5{bottom:1117.770000px;}
.y4{bottom:1131.450000px;}
.y32{bottom:1140.450000px;}
.y3{bottom:1145.490000px;}
.h7{height:26.033203px;}
.h8{height:35.332031px;}
.h6{height:46.638281px;}
.h4{height:47.891250px;}
.h5{height:48.843072px;}
.hc{height:50.800781px;}
.hb{height:52.066406px;}
.h2{height:59.357813px;}
.h9{height:70.664062px;}
.ha{height:72.562500px;}
.h3{height:74.004654px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x2{left:106.235987px;}
.x4{left:144.431987px;}
.x3{left:159.554987px;}
.x7{left:169.994987px;}
.x8{left:197.714987px;}
.x9{left:253.544987px;}
.x5{left:406.949987px;}
.xa{left:439.019987px;}
.x1{left:442.619987px;}
.x6{left:446.579987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-7.786667pt;}
.ls8{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000001pt;}
.ls1{letter-spacing:0.014080pt;}
.lsd{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.554667pt;}
.ls4{letter-spacing:0.608000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.960000pt;}
.ls12{letter-spacing:1.280000pt;}
.ls0{letter-spacing:1.294080pt;}
.ls5{letter-spacing:1.728000pt;}
.lsb{letter-spacing:1.920000pt;}
.ls10{letter-spacing:89.728000pt;}
.lsc{letter-spacing:121.728000pt;}
.wsb{word-spacing:-17.280000pt;}
.ws9{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws0{word-spacing:-13.440000pt;}
.ws1{word-spacing:-10.560000pt;}
.ws5{word-spacing:-8.960000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws8{word-spacing:-8.213333pt;}
.ws2{word-spacing:-8.000000pt;}
.ws4{word-spacing:-7.360000pt;}
.ws7{word-spacing:0.000000pt;}
._d{margin-left:-8.685227pt;}
._c{margin-left:-7.758507pt;}
._26{margin-left:-6.507093pt;}
._2{margin-left:-5.617920pt;}
._1{margin-left:-4.477440pt;}
._b{margin-left:-3.332267pt;}
._a{margin-left:-2.154667pt;}
._5{margin-left:-1.056000pt;}
._0{width:0.929280pt;}
._4{width:1.878187pt;}
._3{width:3.032320pt;}
._9{width:4.113920pt;}
._24{width:5.184000pt;}
._25{width:6.115840pt;}
._f{width:7.020800pt;}
._e{width:8.681387pt;}
._1e{width:10.441387pt;}
._11{width:11.488853pt;}
._30{width:12.386560pt;}
._10{width:13.277867pt;}
._14{width:14.175147pt;}
._2e{width:15.086080pt;}
._15{width:17.482667pt;}
._19{width:19.114667pt;}
._27{width:20.040107pt;}
._12{width:21.138773pt;}
._13{width:22.150827pt;}
._16{width:23.338667pt;}
._17{width:24.502187pt;}
._18{width:25.392640pt;}
._1f{width:26.483200pt;}
._2f{width:27.671893pt;}
._31{width:28.678827pt;}
._2a{width:29.587200pt;}
._28{width:31.411200pt;}
._29{width:33.043627pt;}
._1d{width:34.436267pt;}
._23{width:35.383893pt;}
._1c{width:36.380160pt;}
._1b{width:37.917867pt;}
._1a{width:38.990507pt;}
._22{width:45.223680pt;}
._21{width:46.122667pt;}
._20{width:47.109973pt;}
._7{width:55.550293pt;}
._6{width:56.559360pt;}
._8{width:57.521493pt;}
._32{width:59.456000pt;}
._33{width:60.430080pt;}
._2c{width:61.468587pt;}
._2d{width:62.870187pt;}
._2b{width:63.901013pt;}
._36{width:67.176107pt;}
._35{width:75.518720pt;}
._34{width:78.525440pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:42.240000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:41.280000pt;}
.y1{bottom:59.200000pt;}
.y31{bottom:102.752000pt;}
.y30{bottom:130.272000pt;}
.y2f{bottom:157.786667pt;}
.y2e{bottom:185.346667pt;}
.y2d{bottom:213.186667pt;}
.y2c{bottom:240.706667pt;}
.y2b{bottom:268.226667pt;}
.y2a{bottom:295.773333pt;}
.y29{bottom:323.613333pt;}
.y28{bottom:351.133333pt;}
.y27{bottom:378.653333pt;}
.y26{bottom:406.213333pt;}
.y25{bottom:433.733333pt;}
.y24{bottom:461.573333pt;}
.y23{bottom:489.093333pt;}
.y22{bottom:516.320000pt;}
.y3f{bottom:516.640000pt;}
.y21{bottom:544.160000pt;}
.y20{bottom:571.680000pt;}
.y3e{bottom:572.000000pt;}
.y1f{bottom:599.200000pt;}
.y3d{bottom:599.520000pt;}
.y1e{bottom:626.746667pt;}
.y3c{bottom:627.066667pt;}
.y1d{bottom:654.266667pt;}
.y41{bottom:654.586667pt;}
.y1c{bottom:682.106667pt;}
.y40{bottom:682.426667pt;}
.y1b{bottom:709.626667pt;}
.y3b{bottom:709.946667pt;}
.y1a{bottom:737.186667pt;}
.y3a{bottom:737.506667pt;}
.y19{bottom:765.026667pt;}
.y18{bottom:792.866667pt;}
.y17{bottom:809.186667pt;}
.y16{bottom:818.146667pt;}
.y39{bottom:820.386667pt;}
.y15{bottom:827.426667pt;}
.y14{bottom:836.706667pt;}
.y13{bottom:846.013333pt;}
.y38{bottom:847.933333pt;}
.y12{bottom:854.973333pt;}
.y11{bottom:864.253333pt;}
.y10{bottom:873.533333pt;}
.y37{bottom:875.453333pt;}
.yf{bottom:882.813333pt;}
.ye{bottom:891.773333pt;}
.yd{bottom:901.053333pt;}
.y36{bottom:903.293333pt;}
.yc{bottom:910.333333pt;}
.yb{bottom:920.253333pt;}
.y35{bottom:930.813333pt;}
.ya{bottom:932.093333pt;}
.y9{bottom:944.573333pt;}
.y8{bottom:956.733333pt;}
.y34{bottom:958.373333pt;}
.y7{bottom:968.933333pt;}
.y6{bottom:981.413333pt;}
.y33{bottom:985.893333pt;}
.y5{bottom:993.573333pt;}
.y4{bottom:1005.733333pt;}
.y32{bottom:1013.733333pt;}
.y3{bottom:1018.213333pt;}
.h7{height:23.140625pt;}
.h8{height:31.406250pt;}
.h6{height:41.456250pt;}
.h4{height:42.570000pt;}
.h5{height:43.416064pt;}
.hc{height:45.156250pt;}
.hb{height:46.281250pt;}
.h2{height:52.762500pt;}
.h9{height:62.812500pt;}
.ha{height:64.500000pt;}
.h3{height:65.781915pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x2{left:94.431988pt;}
.x4{left:128.383988pt;}
.x3{left:141.826655pt;}
.x7{left:151.106655pt;}
.x8{left:175.746655pt;}
.x9{left:225.373322pt;}
.x5{left:361.733322pt;}
.xa{left:390.239988pt;}
.x1{left:393.439988pt;}
.x6{left:396.959988pt;}
}




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