
    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_b7ba5b6e89f639a049882139.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.899902;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_9ff5a63367d0b6f7742a9d3f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.708984;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_84b129dd1b040cae84c28909.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.708984;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_61e2a1e9b32945870362b85b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900879;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_a096606ff9a1f68872f0f0ee.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.767578;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_54390cbc81758c13bc0750ee.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_f83b93441200425a60c2fb08.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.128418;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_7416eee7710d70a609fd7dc5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.683105;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:ff9;src:url('chunks/assets/font_8e9058b7100649f250003dfa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.899902;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:ffa;src:url('chunks/assets/font_d0186cafd987512abe4a238d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_923d89595edecf63602c183f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.683105;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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-13.440000px;}
.ls5{letter-spacing:-0.277200px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.240000px;}
.ls1{letter-spacing:37.037280px;}
.ls0{letter-spacing:57.917280px;}
.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:-84.240000px;}
.ws4{word-spacing:-14.970240px;}
.ws0{word-spacing:-12.720240px;}
.ws2{word-spacing:-12.443040px;}
.ws3{word-spacing:0.000000px;}
._1{margin-left:-675.556560px;}
._7{margin-left:-15.311520px;}
._2{margin-left:-2.358720px;}
._0{margin-left:-1.010880px;}
._4{width:1.010880px;}
._3{width:2.527200px;}
._5{width:4.121520px;}
._6{width:13.962720px;}
._8{width:21.228480px;}
._9{width:22.257840px;}
._1a{width:23.912640px;}
._1b{width:24.972480px;}
._29{width:26.098560px;}
._23{width:27.489600px;}
._24{width:28.814400px;}
._a{width:30.404160px;}
._16{width:34.709760px;}
._20{width:36.696960px;}
._21{width:37.756800px;}
._e{width:39.744000px;}
._d{width:41.201280px;}
._1f{width:43.122240px;}
._17{width:45.175680px;}
._f{width:46.235520px;}
._10{width:47.295360px;}
._22{width:51.287040px;}
._14{width:52.727040px;}
._15{width:53.786880px;}
._18{width:55.575360px;}
._19{width:57.081600px;}
._27{width:58.224960px;}
._c{width:60.609600px;}
._12{width:69.022080px;}
._13{width:70.148160px;}
._1e{width:75.646080px;}
._b{width:77.898240px;}
._28{width:109.560960px;}
._1d{width:111.415680px;}
._1c{width:112.475520px;}
._11{width:124.729920px;}
._25{width:192.360960px;}
._26{width:193.420800px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y22{bottom:4.500000px;}
.y2f{bottom:4.530000px;}
.y1c{bottom:10.800000px;}
.y55{bottom:13.680000px;}
.y36{bottom:16.200000px;}
.y5d{bottom:16.230000px;}
.y3a{bottom:16.245000px;}
.y23{bottom:16.380000px;}
.y30{bottom:16.410000px;}
.y27{bottom:16.425000px;}
.y50{bottom:21.600000px;}
.y5c{bottom:21.630000px;}
.y20{bottom:21.780000px;}
.y2d{bottom:21.810000px;}
.y25{bottom:21.825000px;}
.y51{bottom:24.480000px;}
.y21{bottom:24.660000px;}
.y2e{bottom:24.690000px;}
.y26{bottom:24.705000px;}
.y1e{bottom:25.560000px;}
.y34{bottom:26.280000px;}
.y1b{bottom:40.140000px;}
.y32{bottom:41.760000px;}
.y3e{bottom:41.940000px;}
.y33{bottom:44.640000px;}
.y3f{bottom:44.820000px;}
.y1d{bottom:54.900000px;}
.y1a{bottom:69.480000px;}
.y44{bottom:140.040000px;}
.y5f{bottom:143.820000px;}
.y5e{bottom:163.080000px;}
.y43{bottom:169.380000px;}
.y42{bottom:198.720000px;}
.y5b{bottom:204.120000px;}
.y41{bottom:228.090000px;}
.y18{bottom:231.150000px;}
.y5a{bottom:245.190000px;}
.y40{bottom:257.430000px;}
.y17{bottom:275.070000px;}
.y3d{bottom:276.690000px;}
.y59{bottom:286.230000px;}
.y16{bottom:308.910000px;}
.y58{bottom:327.090000px;}
.y3c{bottom:337.890000px;}
.y15{bottom:352.830000px;}
.y57{bottom:368.130000px;}
.y3b{bottom:378.930000px;}
.y14{bottom:396.750000px;}
.y56{bottom:409.170000px;}
.y39{bottom:419.970000px;}
.y54{bottom:439.455000px;}
.y13{bottom:440.895000px;}
.y38{bottom:461.055000px;}
.y53{bottom:469.515000px;}
.y12{bottom:470.235000px;}
.y37{bottom:502.095000px;}
.y11{bottom:503.895000px;}
.y52{bottom:510.555000px;}
.y10{bottom:537.555000px;}
.y35{bottom:543.135000px;}
.y4f{bottom:551.595000px;}
.yf{bottom:571.215000px;}
.y31{bottom:584.175000px;}
.y4e{bottom:592.455000px;}
.ye{bottom:611.355000px;}
.y4d{bottom:633.495000px;}
.yd{bottom:645.015000px;}
.y2c{bottom:645.195000px;}
.y4c{bottom:674.565000px;}
.y2b{bottom:686.265000px;}
.yc{bottom:699.945000px;}
.y4b{bottom:715.605000px;}
.y2a{bottom:727.305000px;}
.yb{bottom:729.285000px;}
.y4a{bottom:756.645000px;}
.ya{bottom:758.625000px;}
.y29{bottom:768.345000px;}
.y9{bottom:787.965000px;}
.y49{bottom:797.685000px;}
.y28{bottom:809.385000px;}
.y8{bottom:817.305000px;}
.y48{bottom:838.725000px;}
.y7{bottom:846.645000px;}
.y24{bottom:850.425000px;}
.y6{bottom:876.030000px;}
.y47{bottom:879.810000px;}
.y1f{bottom:891.510000px;}
.y46{bottom:920.850000px;}
.y5{bottom:924.810000px;}
.y19{bottom:932.550000px;}
.y45{bottom:961.890000px;}
.y4{bottom:973.410000px;}
.y3{bottom:1002.750000px;}
.y2{bottom:1032.090000px;}
.y1{bottom:1061.430000px;}
.hd{height:29.160000px;}
.he{height:29.376000px;}
.hb{height:40.140000px;}
.hf{height:40.176000px;}
.h7{height:40.320000px;}
.h9{height:40.356000px;}
.h1{height:56.146289px;}
.h2{height:56.269687px;}
.ha{height:60.300000px;}
.hc{height:60.480000px;}
.h5{height:61.329023px;}
.h3{height:63.879258px;}
.h8{height:65.884219px;}
.h4{height:76.877227px;}
.h6{height:88.020000px;}
.h0{height:1188.000000px;}
.w8{width:39.780000px;}
.w3{width:56.196000px;}
.w4{width:68.940000px;}
.w5{width:76.680000px;}
.w2{width:82.080000px;}
.w6{width:86.076000px;}
.w7{width:391.575000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:7.785000px;}
.xd{left:11.700000px;}
.x14{left:13.860000px;}
.x18{left:15.660000px;}
.xe{left:21.780000px;}
.xc{left:41.040000px;}
.x17{left:55.800000px;}
.x15{left:96.300000px;}
.x9{left:128.195986px;}
.x1{left:135.035986px;}
.x8{left:142.235986px;}
.x16{left:160.230000px;}
.x5{left:162.029986px;}
.x4{left:189.029986px;}
.x19{left:202.529986px;}
.xa{left:236.369986px;}
.x6{left:355.214986px;}
.x3{left:378.614986px;}
.x13{left:488.595000px;}
.x12{left:575.565000px;}
.x11{left:652.965000px;}
.x7{left:677.984986px;}
.xf{left:722.625000px;}
.x2{left:775.949986px;}
.xb{left:779.550000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-11.946667pt;}
.ls5{letter-spacing:-0.246400pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.213333pt;}
.ls1{letter-spacing:32.922027pt;}
.ls0{letter-spacing:51.482027pt;}
.ws1{word-spacing:-74.880000pt;}
.ws4{word-spacing:-13.306880pt;}
.ws0{word-spacing:-11.306880pt;}
.ws2{word-spacing:-11.060480pt;}
.ws3{word-spacing:0.000000pt;}
._1{margin-left:-600.494720pt;}
._7{margin-left:-13.610240pt;}
._2{margin-left:-2.096640pt;}
._0{margin-left:-0.898560pt;}
._4{width:0.898560pt;}
._3{width:2.246400pt;}
._5{width:3.663573pt;}
._6{width:12.411307pt;}
._8{width:18.869760pt;}
._9{width:19.784747pt;}
._1a{width:21.255680pt;}
._1b{width:22.197760pt;}
._29{width:23.198720pt;}
._23{width:24.435200pt;}
._24{width:25.612800pt;}
._a{width:27.025920pt;}
._16{width:30.853120pt;}
._20{width:32.619520pt;}
._21{width:33.561600pt;}
._e{width:35.328000pt;}
._d{width:36.623360pt;}
._1f{width:38.330880pt;}
._17{width:40.156160pt;}
._f{width:41.098240pt;}
._10{width:42.040320pt;}
._22{width:45.588480pt;}
._14{width:46.868480pt;}
._15{width:47.810560pt;}
._18{width:49.400320pt;}
._19{width:50.739200pt;}
._27{width:51.755520pt;}
._c{width:53.875200pt;}
._12{width:61.352960pt;}
._13{width:62.353920pt;}
._1e{width:67.240960pt;}
._b{width:69.242880pt;}
._28{width:97.387520pt;}
._1d{width:99.036160pt;}
._1c{width:99.978240pt;}
._11{width:110.871040pt;}
._25{width:170.987520pt;}
._26{width:171.929600pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:4.000000pt;}
.y2f{bottom:4.026667pt;}
.y1c{bottom:9.600000pt;}
.y55{bottom:12.160000pt;}
.y36{bottom:14.400000pt;}
.y5d{bottom:14.426667pt;}
.y3a{bottom:14.440000pt;}
.y23{bottom:14.560000pt;}
.y30{bottom:14.586667pt;}
.y27{bottom:14.600000pt;}
.y50{bottom:19.200000pt;}
.y5c{bottom:19.226667pt;}
.y20{bottom:19.360000pt;}
.y2d{bottom:19.386667pt;}
.y25{bottom:19.400000pt;}
.y51{bottom:21.760000pt;}
.y21{bottom:21.920000pt;}
.y2e{bottom:21.946667pt;}
.y26{bottom:21.960000pt;}
.y1e{bottom:22.720000pt;}
.y34{bottom:23.360000pt;}
.y1b{bottom:35.680000pt;}
.y32{bottom:37.120000pt;}
.y3e{bottom:37.280000pt;}
.y33{bottom:39.680000pt;}
.y3f{bottom:39.840000pt;}
.y1d{bottom:48.800000pt;}
.y1a{bottom:61.760000pt;}
.y44{bottom:124.480000pt;}
.y5f{bottom:127.840000pt;}
.y5e{bottom:144.960000pt;}
.y43{bottom:150.560000pt;}
.y42{bottom:176.640000pt;}
.y5b{bottom:181.440000pt;}
.y41{bottom:202.746667pt;}
.y18{bottom:205.466667pt;}
.y5a{bottom:217.946667pt;}
.y40{bottom:228.826667pt;}
.y17{bottom:244.506667pt;}
.y3d{bottom:245.946667pt;}
.y59{bottom:254.426667pt;}
.y16{bottom:274.586667pt;}
.y58{bottom:290.746667pt;}
.y3c{bottom:300.346667pt;}
.y15{bottom:313.626667pt;}
.y57{bottom:327.226667pt;}
.y3b{bottom:336.826667pt;}
.y14{bottom:352.666667pt;}
.y56{bottom:363.706667pt;}
.y39{bottom:373.306667pt;}
.y54{bottom:390.626667pt;}
.y13{bottom:391.906667pt;}
.y38{bottom:409.826667pt;}
.y53{bottom:417.346667pt;}
.y12{bottom:417.986667pt;}
.y37{bottom:446.306667pt;}
.y11{bottom:447.906667pt;}
.y52{bottom:453.826667pt;}
.y10{bottom:477.826667pt;}
.y35{bottom:482.786667pt;}
.y4f{bottom:490.306667pt;}
.yf{bottom:507.746667pt;}
.y31{bottom:519.266667pt;}
.y4e{bottom:526.626667pt;}
.ye{bottom:543.426667pt;}
.y4d{bottom:563.106667pt;}
.yd{bottom:573.346667pt;}
.y2c{bottom:573.506667pt;}
.y4c{bottom:599.613333pt;}
.y2b{bottom:610.013333pt;}
.yc{bottom:622.173333pt;}
.y4b{bottom:636.093333pt;}
.y2a{bottom:646.493333pt;}
.yb{bottom:648.253333pt;}
.y4a{bottom:672.573333pt;}
.ya{bottom:674.333333pt;}
.y29{bottom:682.973333pt;}
.y9{bottom:700.413333pt;}
.y49{bottom:709.053333pt;}
.y28{bottom:719.453333pt;}
.y8{bottom:726.493333pt;}
.y48{bottom:745.533333pt;}
.y7{bottom:752.573333pt;}
.y24{bottom:755.933333pt;}
.y6{bottom:778.693333pt;}
.y47{bottom:782.053333pt;}
.y1f{bottom:792.453333pt;}
.y46{bottom:818.533333pt;}
.y5{bottom:822.053333pt;}
.y19{bottom:828.933333pt;}
.y45{bottom:855.013333pt;}
.y4{bottom:865.253333pt;}
.y3{bottom:891.333333pt;}
.y2{bottom:917.413333pt;}
.y1{bottom:943.493333pt;}
.hd{height:25.920000pt;}
.he{height:26.112000pt;}
.hb{height:35.680000pt;}
.hf{height:35.712000pt;}
.h7{height:35.840000pt;}
.h9{height:35.872000pt;}
.h1{height:49.907812pt;}
.h2{height:50.017500pt;}
.ha{height:53.600000pt;}
.hc{height:53.760000pt;}
.h5{height:54.514687pt;}
.h3{height:56.781562pt;}
.h8{height:58.563750pt;}
.h4{height:68.335313pt;}
.h6{height:78.240000pt;}
.h0{height:1056.000000pt;}
.w8{width:35.360000pt;}
.w3{width:49.952000pt;}
.w4{width:61.280000pt;}
.w5{width:68.160000pt;}
.w2{width:72.960000pt;}
.w6{width:76.512000pt;}
.w7{width:348.066667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.920000pt;}
.xd{left:10.400000pt;}
.x14{left:12.320000pt;}
.x18{left:13.920000pt;}
.xe{left:19.360000pt;}
.xc{left:36.480000pt;}
.x17{left:49.600000pt;}
.x15{left:85.600000pt;}
.x9{left:113.951988pt;}
.x1{left:120.031988pt;}
.x8{left:126.431988pt;}
.x16{left:142.426667pt;}
.x5{left:144.026655pt;}
.x4{left:168.026655pt;}
.x19{left:180.026655pt;}
.xa{left:210.106655pt;}
.x6{left:315.746655pt;}
.x3{left:336.546655pt;}
.x13{left:434.306667pt;}
.x12{left:511.613333pt;}
.x11{left:580.413333pt;}
.x7{left:602.653321pt;}
.xf{left:642.333333pt;}
.x2{left:689.733321pt;}
.xb{left:692.933333pt;}
}




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