
    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_c864d7f717171377e2f95927.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.982910;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_351c962a696f1d8c2c693b58.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.885254;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_5609c6de3f5db0072670db59.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_8265c3ecd80069978959d85d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_eca5c3de5571c985fd3f8724.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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3b610f0e6d0f2d15a112d059.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_bac7f223b5f5524e630fb907.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_bf3279aca20736f58838e373.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_0bff5937066596079b7533e5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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;}
.ls8{letter-spacing:-0.684000px;}
.ls6{letter-spacing:-0.012960px;}
.ls4{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.028080px;}
.ls13{letter-spacing:0.167040px;}
.ls18{letter-spacing:0.341400px;}
.ls7{letter-spacing:0.393000px;}
.ls11{letter-spacing:0.540000px;}
.ls5{letter-spacing:0.612000px;}
.ls12{letter-spacing:0.660000px;}
.ls16{letter-spacing:1.080000px;}
.ls17{letter-spacing:1.260000px;}
.ls15{letter-spacing:1.477440px;}
.ls9{letter-spacing:2.700000px;}
.lsc{letter-spacing:2.880000px;}
.ls0{letter-spacing:4.860000px;}
.lsa{letter-spacing:9.360000px;}
.ls2{letter-spacing:10.787040px;}
.lsb{letter-spacing:11.460000px;}
.ls14{letter-spacing:12.947040px;}
.lse{letter-spacing:17.820000px;}
.lsd{letter-spacing:22.140000px;}
.ls3{letter-spacing:23.747040px;}
.ls1{letter-spacing:78.480000px;}
.lsf{letter-spacing:102.060000px;}
.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;}
}
.ws7{word-spacing:-22.140000px;}
.ws8{word-spacing:-21.401400px;}
.ws4{word-spacing:-21.060000px;}
.ws6{word-spacing:-20.376000px;}
.ws1{word-spacing:-15.744960px;}
.ws2{word-spacing:-15.525960px;}
.ws0{word-spacing:-15.132960px;}
.ws3{word-spacing:-0.066960px;}
.ws5{word-spacing:0.000000px;}
._19{margin-left:-4.365840px;}
._2{margin-left:-3.039120px;}
._0{margin-left:-1.937520px;}
._1{width:1.330560px;}
._3{width:2.533680px;}
._4{width:3.622320px;}
._6{width:4.635120px;}
._5{width:6.049680px;}
._11{width:7.316160px;}
._7{width:8.339760px;}
._8{width:9.836880px;}
._c{width:11.540880px;}
._16{width:12.544800px;}
._15{width:14.150160px;}
._9{width:15.921360px;}
._1f{width:17.289120px;}
._1e{width:18.398880px;}
._13{width:19.459440px;}
._f{width:22.323600px;}
._10{width:24.528960px;}
._17{width:25.719120px;}
._18{width:26.729040px;}
._1d{width:28.423200px;}
._1c{width:29.719440px;}
._1a{width:30.957120px;}
._1b{width:33.089040px;}
._2c{width:35.128080px;}
._2e{width:36.493200px;}
._34{width:37.834560px;}
._25{width:39.087360px;}
._d{width:41.024880px;}
._24{width:42.120000px;}
._e{width:43.232400px;}
._30{width:44.922480px;}
._33{width:46.708080px;}
._31{width:48.263040px;}
._32{width:49.809600px;}
._2b{width:52.842240px;}
._29{width:54.267840px;}
._2d{width:57.894480px;}
._2a{width:59.069520px;}
._14{width:60.624480px;}
._20{width:63.095760px;}
._2f{width:65.657520px;}
._22{width:71.031600px;}
._21{width:72.210960px;}
._a{width:73.373040px;}
._b{width:74.558880px;}
._23{width:75.777120px;}
._12{width:77.585040px;}
._26{width:90.979200px;}
._27{width:91.983600px;}
._28{width:93.996720px;}
._35{width:102.857040px;}
.fc3{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:66.960000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.976000px;}
.y9{bottom:57.276000px;}
.y8{bottom:72.936000px;}
.ya{bottom:76.140000px;}
.y26{bottom:110.196000px;}
.y25{bottom:146.412000px;}
.y24{bottom:182.595000px;}
.y23{bottom:218.805000px;}
.y22{bottom:254.985000px;}
.y21{bottom:291.165000px;}
.y20{bottom:327.390000px;}
.y1f{bottom:363.570000px;}
.y1e{bottom:399.780000px;}
.y1d{bottom:435.960000px;}
.y1c{bottom:472.170000px;}
.y1b{bottom:508.350000px;}
.y1a{bottom:544.530000px;}
.y19{bottom:581.295000px;}
.y18{bottom:617.475000px;}
.y17{bottom:653.685000px;}
.y16{bottom:689.865000px;}
.y15{bottom:726.090000px;}
.y27{bottom:761.730000px;}
.y14{bottom:762.270000px;}
.y13{bottom:798.450000px;}
.y12{bottom:834.660000px;}
.y11{bottom:870.840000px;}
.y10{bottom:907.050000px;}
.yf{bottom:943.230000px;}
.ye{bottom:979.455000px;}
.yd{bottom:1015.635000px;}
.yc{bottom:1052.355000px;}
.y7{bottom:1105.305000px;}
.y6{bottom:1125.285000px;}
.y5{bottom:1145.310000px;}
.y4{bottom:1165.830000px;}
.y3{bottom:1185.810000px;}
.y2{bottom:1205.790000px;}
.y1{bottom:1226.340000px;}
.h4{height:22.140000px;}
.h3{height:50.841211px;}
.h2{height:53.881875px;}
.h8{height:59.066719px;}
.ha{height:67.786875px;}
.h5{height:72.846211px;}
.h7{height:82.676953px;}
.h9{height:84.034336px;}
.h6{height:84.898125px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:50.220000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:1.050000px;}
.x9{left:127.511987px;}
.xc{left:131.831987px;}
.xf{left:136.151987px;}
.x15{left:180.464987px;}
.x1{left:223.169987px;}
.x11{left:233.429987px;}
.x13{left:264.209987px;}
.x14{left:272.879987px;}
.x5{left:310.139987px;}
.xe{left:315.539987px;}
.x12{left:326.369987px;}
.x6{left:331.769987px;}
.x10{left:357.689987px;}
.x4{left:359.849987px;}
.x3{left:376.589987px;}
.x2{left:378.749987px;}
.x7{left:436.034987px;}
.xd{left:478.184987px;}
.xa{left:835.920000px;}
.x8{left:894.239987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.608000pt;}
.ls6{letter-spacing:-0.011520pt;}
.ls4{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.024960pt;}
.ls13{letter-spacing:0.148480pt;}
.ls18{letter-spacing:0.303467pt;}
.ls7{letter-spacing:0.349333pt;}
.ls11{letter-spacing:0.480000pt;}
.ls5{letter-spacing:0.544000pt;}
.ls12{letter-spacing:0.586667pt;}
.ls16{letter-spacing:0.960000pt;}
.ls17{letter-spacing:1.120000pt;}
.ls15{letter-spacing:1.313280pt;}
.ls9{letter-spacing:2.400000pt;}
.lsc{letter-spacing:2.560000pt;}
.ls0{letter-spacing:4.320000pt;}
.lsa{letter-spacing:8.320000pt;}
.ls2{letter-spacing:9.588480pt;}
.lsb{letter-spacing:10.186667pt;}
.ls14{letter-spacing:11.508480pt;}
.lse{letter-spacing:15.840000pt;}
.lsd{letter-spacing:19.680000pt;}
.ls3{letter-spacing:21.108480pt;}
.ls1{letter-spacing:69.760000pt;}
.lsf{letter-spacing:90.720000pt;}
.ws7{word-spacing:-19.680000pt;}
.ws8{word-spacing:-19.023467pt;}
.ws4{word-spacing:-18.720000pt;}
.ws6{word-spacing:-18.112000pt;}
.ws1{word-spacing:-13.995520pt;}
.ws2{word-spacing:-13.800853pt;}
.ws0{word-spacing:-13.451520pt;}
.ws3{word-spacing:-0.059520pt;}
.ws5{word-spacing:0.000000pt;}
._19{margin-left:-3.880747pt;}
._2{margin-left:-2.701440pt;}
._0{margin-left:-1.722240pt;}
._1{width:1.182720pt;}
._3{width:2.252160pt;}
._4{width:3.219840pt;}
._6{width:4.120107pt;}
._5{width:5.377493pt;}
._11{width:6.503253pt;}
._7{width:7.413120pt;}
._8{width:8.743893pt;}
._c{width:10.258560pt;}
._16{width:11.150933pt;}
._15{width:12.577920pt;}
._9{width:14.152320pt;}
._1f{width:15.368107pt;}
._1e{width:16.354560pt;}
._13{width:17.297280pt;}
._f{width:19.843200pt;}
._10{width:21.803520pt;}
._17{width:22.861440pt;}
._18{width:23.759147pt;}
._1d{width:25.265067pt;}
._1c{width:26.417280pt;}
._1a{width:27.517440pt;}
._1b{width:29.412480pt;}
._2c{width:31.224960pt;}
._2e{width:32.438400pt;}
._34{width:33.630720pt;}
._25{width:34.744320pt;}
._d{width:36.466560pt;}
._24{width:37.440000pt;}
._e{width:38.428800pt;}
._30{width:39.931093pt;}
._33{width:41.518293pt;}
._31{width:42.900480pt;}
._32{width:44.275200pt;}
._2b{width:46.970880pt;}
._29{width:48.238080pt;}
._2d{width:51.461760pt;}
._2a{width:52.506240pt;}
._14{width:53.888427pt;}
._20{width:56.085120pt;}
._2f{width:58.362240pt;}
._22{width:63.139200pt;}
._21{width:64.187520pt;}
._a{width:65.220480pt;}
._b{width:66.274560pt;}
._23{width:67.357440pt;}
._12{width:68.964480pt;}
._26{width:80.870400pt;}
._27{width:81.763200pt;}
._28{width:83.552640pt;}
._35{width:91.428480pt;}
.fs0{font-size:59.520000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:5.312000pt;}
.y9{bottom:50.912000pt;}
.y8{bottom:64.832000pt;}
.ya{bottom:67.680000pt;}
.y26{bottom:97.952000pt;}
.y25{bottom:130.144000pt;}
.y24{bottom:162.306667pt;}
.y23{bottom:194.493333pt;}
.y22{bottom:226.653333pt;}
.y21{bottom:258.813333pt;}
.y20{bottom:291.013333pt;}
.y1f{bottom:323.173333pt;}
.y1e{bottom:355.360000pt;}
.y1d{bottom:387.520000pt;}
.y1c{bottom:419.706667pt;}
.y1b{bottom:451.866667pt;}
.y1a{bottom:484.026667pt;}
.y19{bottom:516.706667pt;}
.y18{bottom:548.866667pt;}
.y17{bottom:581.053333pt;}
.y16{bottom:613.213333pt;}
.y15{bottom:645.413333pt;}
.y27{bottom:677.093333pt;}
.y14{bottom:677.573333pt;}
.y13{bottom:709.733333pt;}
.y12{bottom:741.920000pt;}
.y11{bottom:774.080000pt;}
.y10{bottom:806.266667pt;}
.yf{bottom:838.426667pt;}
.ye{bottom:870.626667pt;}
.yd{bottom:902.786667pt;}
.yc{bottom:935.426667pt;}
.y7{bottom:982.493333pt;}
.y6{bottom:1000.253333pt;}
.y5{bottom:1018.053333pt;}
.y4{bottom:1036.293333pt;}
.y3{bottom:1054.053333pt;}
.y2{bottom:1071.813333pt;}
.y1{bottom:1090.080000pt;}
.h4{height:19.680000pt;}
.h3{height:45.192188pt;}
.h2{height:47.895000pt;}
.h8{height:52.503750pt;}
.ha{height:60.255000pt;}
.h5{height:64.752187pt;}
.h7{height:73.490625pt;}
.h9{height:74.697187pt;}
.h6{height:75.465000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:44.640000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:0.933333pt;}
.x9{left:113.343988pt;}
.xc{left:117.183988pt;}
.xf{left:121.023988pt;}
.x15{left:160.413322pt;}
.x1{left:198.373322pt;}
.x11{left:207.493322pt;}
.x13{left:234.853322pt;}
.x14{left:242.559988pt;}
.x5{left:275.679988pt;}
.xe{left:280.479988pt;}
.x12{left:290.106655pt;}
.x6{left:294.906655pt;}
.x10{left:317.946655pt;}
.x4{left:319.866655pt;}
.x3{left:334.746655pt;}
.x2{left:336.666655pt;}
.x7{left:387.586655pt;}
.xd{left:425.053322pt;}
.xa{left:743.040000pt;}
.x8{left:794.879988pt;}
}




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