
    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_ab7838b835c2b5432e02e45f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.734375;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_ac66b755f5d4c4ddb4630a89.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.687500;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_b79983f32ab0036a9a8c9057.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.913086;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_2c45bb2ac82f750d41da8708.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942425;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_b23a08547aff1fddd1e9e682.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d14ae78735ab89c8041d2fe8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6ea29ebc653f631b9b2910dd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.959961;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_4c499bfebbc9b6f3167514fd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.706055;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_8285fd5183753d4a23295a90.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d30f97add99828b681234034.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.708008;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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.238464px;}
.ls5{letter-spacing:-0.158976px;}
.lsc{letter-spacing:-0.125856px;}
.ls8{letter-spacing:-0.119232px;}
.ls6{letter-spacing:-0.079488px;}
.lsd{letter-spacing:-0.033120px;}
.ls4{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.058464px;}
.ls3{letter-spacing:0.119952px;}
.ls9{letter-spacing:0.123552px;}
.ls11{letter-spacing:0.137808px;}
.lse{letter-spacing:0.141984px;}
.ls12{letter-spacing:0.159840px;}
.ls1{letter-spacing:0.160272px;}
.lsa{letter-spacing:0.161568px;}
.lsf{letter-spacing:0.179568px;}
.ls0{letter-spacing:0.180288px;}
.ls10{letter-spacing:0.261360px;}
.ls15{letter-spacing:0.275616px;}
.lsb{letter-spacing:0.285120px;}
.ls14{letter-spacing:0.318384px;}
.ls2{letter-spacing:0.356400px;}
.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:-33.120000px;}
.ws1{word-spacing:-32.881536px;}
.ws5{word-spacing:-18.639936px;}
.ws0{word-spacing:-18.255744px;}
.ws6{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.526880px;}
.ws4{word-spacing:-16.480512px;}
.ws7{word-spacing:-16.440768px;}
.wsb{word-spacing:-16.434144px;}
.wsa{word-spacing:-16.401024px;}
.ws9{word-spacing:-12.236400px;}
.ws12{word-spacing:-12.198384px;}
.ws14{word-spacing:-12.155616px;}
.wsf{word-spacing:-0.221328px;}
.wse{word-spacing:-0.183744px;}
.ws10{word-spacing:-0.179568px;}
.ws8{word-spacing:-0.171072px;}
.ws13{word-spacing:-0.100224px;}
.wsc{word-spacing:-0.066240px;}
.ws11{word-spacing:0.000000px;}
.ws3{word-spacing:0.013248px;}
._1{margin-left:-1.188720px;}
._2{width:1.037376px;}
._0{width:14.949936px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs0{font-size:47.520000px;}
.fs1{font-size:54.720000px;}
.fs2{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.yd{bottom:5.248800px;}
.y14{bottom:5.848800px;}
.y18{bottom:5.908800px;}
.y9{bottom:5.968800px;}
.y28{bottom:6.028800px;}
.y1a{bottom:6.088800px;}
.y1f{bottom:6.148800px;}
.y2a{bottom:6.628800px;}
.y1d{bottom:6.688800px;}
.y16{bottom:6.808800px;}
.y7{bottom:6.868800px;}
.yb{bottom:6.928800px;}
.y2{bottom:142.528800px;}
.y2e{bottom:202.500000px;}
.y47{bottom:204.000000px;}
.y2d{bottom:225.000000px;}
.y46{bottom:228.000000px;}
.y2c{bottom:247.500000px;}
.y45{bottom:249.000000px;}
.y2b{bottom:270.000000px;}
.y44{bottom:273.000000px;}
.y29{bottom:292.500000px;}
.y43{bottom:294.000000px;}
.y27{bottom:316.500000px;}
.y42{bottom:318.000000px;}
.y41{bottom:339.000000px;}
.y26{bottom:345.208800px;}
.y40{bottom:363.000000px;}
.y25{bottom:384.000000px;}
.y24{bottom:408.000000px;}
.y23{bottom:429.000000px;}
.y22{bottom:453.000000px;}
.y21{bottom:474.000000px;}
.y20{bottom:498.000000px;}
.y3f{bottom:519.000000px;}
.y1e{bottom:520.500000px;}
.y1c{bottom:543.000000px;}
.y3e{bottom:564.000000px;}
.y1b{bottom:572.368800px;}
.y3d{bottom:588.000000px;}
.y3c{bottom:609.000000px;}
.y19{bottom:612.000000px;}
.y3b{bottom:633.000000px;}
.y17{bottom:634.500000px;}
.y3a{bottom:655.500000px;}
.y15{bottom:657.000000px;}
.y39{bottom:678.000000px;}
.y13{bottom:681.000000px;}
.y38{bottom:707.368800px;}
.y12{bottom:709.528800px;}
.y37{bottom:747.000000px;}
.y11{bottom:750.000000px;}
.y36{bottom:769.500000px;}
.y10{bottom:771.000000px;}
.y35{bottom:792.000000px;}
.yf{bottom:795.000000px;}
.ye{bottom:816.000000px;}
.yc{bottom:840.000000px;}
.y34{bottom:844.528800px;}
.ya{bottom:861.000000px;}
.y8{bottom:885.000000px;}
.y33{bottom:906.000000px;}
.y6{bottom:907.500000px;}
.y32{bottom:930.000000px;}
.y4c{bottom:934.528800px;}
.y5{bottom:937.048800px;}
.y4b{bottom:951.000000px;}
.y31{bottom:952.500000px;}
.y4a{bottom:975.000000px;}
.y30{bottom:982.048800px;}
.y4{bottom:993.568800px;}
.y49{bottom:997.500000px;}
.y48{bottom:1020.000000px;}
.y2f{bottom:1038.568800px;}
.y3{bottom:1049.368800px;}
.y1{bottom:1084.288800px;}
.h9{height:22.500000px;}
.h6{height:24.000000px;}
.h8{height:25.500000px;}
.h2{height:34.526250px;}
.h3{height:36.978750px;}
.h7{height:45.992813px;}
.h4{height:55.113750px;}
.h5{height:56.957344px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.wc{width:73.500000px;}
.wb{width:75.000000px;}
.w7{width:82.500000px;}
.w9{width:87.000000px;}
.w6{width:88.500000px;}
.wa{width:94.500000px;}
.w4{width:97.500000px;}
.w5{width:106.500000px;}
.w8{width:220.500000px;}
.w3{width:256.500000px;}
.w2{width:625.500000px;}
.w0{width:892.913250px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.266080px;}
.x1a{left:18.089460px;}
.x14{left:19.711980px;}
.x16{left:21.027420px;}
.x12{left:24.715500px;}
.xd{left:27.134460px;}
.x7{left:30.556980px;}
.x9{left:32.577780px;}
.xb{left:34.955340px;}
.x11{left:36.165780px;}
.x1b{left:40.320900px;}
.x10{left:42.270900px;}
.x1c{left:48.976020px;}
.xe{left:51.165900px;}
.xf{left:60.526020px;}
.x3{left:134.986044px;}
.x13{left:354.000000px;}
.x6{left:390.000000px;}
.x4{left:422.311260px;}
.x15{left:439.500000px;}
.x2{left:443.685900px;}
.x1{left:447.060900px;}
.x8{left:486.000000px;}
.x17{left:532.500000px;}
.xa{left:591.000000px;}
.x18{left:613.500000px;}
.xc{left:678.000000px;}
.x19{left:687.000000px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.211968pt;}
.ls5{letter-spacing:-0.141312pt;}
.lsc{letter-spacing:-0.111872pt;}
.ls8{letter-spacing:-0.105984pt;}
.ls6{letter-spacing:-0.070656pt;}
.lsd{letter-spacing:-0.029440pt;}
.ls4{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.051968pt;}
.ls3{letter-spacing:0.106624pt;}
.ls9{letter-spacing:0.109824pt;}
.ls11{letter-spacing:0.122496pt;}
.lse{letter-spacing:0.126208pt;}
.ls12{letter-spacing:0.142080pt;}
.ls1{letter-spacing:0.142464pt;}
.lsa{letter-spacing:0.143616pt;}
.lsf{letter-spacing:0.159616pt;}
.ls0{letter-spacing:0.160256pt;}
.ls10{letter-spacing:0.232320pt;}
.ls15{letter-spacing:0.244992pt;}
.lsb{letter-spacing:0.253440pt;}
.ls14{letter-spacing:0.283008pt;}
.ls2{letter-spacing:0.316800pt;}
.ws2{word-spacing:-29.440000pt;}
.ws1{word-spacing:-29.228032pt;}
.ws5{word-spacing:-16.568832pt;}
.ws0{word-spacing:-16.227328pt;}
.ws6{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.690560pt;}
.ws4{word-spacing:-14.649344pt;}
.ws7{word-spacing:-14.614016pt;}
.wsb{word-spacing:-14.608128pt;}
.wsa{word-spacing:-14.578688pt;}
.ws9{word-spacing:-10.876800pt;}
.ws12{word-spacing:-10.843008pt;}
.ws14{word-spacing:-10.804992pt;}
.wsf{word-spacing:-0.196736pt;}
.wse{word-spacing:-0.163328pt;}
.ws10{word-spacing:-0.159616pt;}
.ws8{word-spacing:-0.152064pt;}
.ws13{word-spacing:-0.089088pt;}
.wsc{word-spacing:-0.058880pt;}
.ws11{word-spacing:0.000000pt;}
.ws3{word-spacing:0.011776pt;}
._1{margin-left:-1.056640pt;}
._2{width:0.922112pt;}
._0{width:13.288832pt;}
.fs3{font-size:37.120000pt;}
.fs0{font-size:42.240000pt;}
.fs1{font-size:48.640000pt;}
.fs2{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:4.665600pt;}
.y14{bottom:5.198933pt;}
.y18{bottom:5.252267pt;}
.y9{bottom:5.305600pt;}
.y28{bottom:5.358933pt;}
.y1a{bottom:5.412267pt;}
.y1f{bottom:5.465600pt;}
.y2a{bottom:5.892267pt;}
.y1d{bottom:5.945600pt;}
.y16{bottom:6.052267pt;}
.y7{bottom:6.105600pt;}
.yb{bottom:6.158933pt;}
.y2{bottom:126.692267pt;}
.y2e{bottom:180.000000pt;}
.y47{bottom:181.333333pt;}
.y2d{bottom:200.000000pt;}
.y46{bottom:202.666667pt;}
.y2c{bottom:220.000000pt;}
.y45{bottom:221.333333pt;}
.y2b{bottom:240.000000pt;}
.y44{bottom:242.666667pt;}
.y29{bottom:260.000000pt;}
.y43{bottom:261.333333pt;}
.y27{bottom:281.333333pt;}
.y42{bottom:282.666667pt;}
.y41{bottom:301.333333pt;}
.y26{bottom:306.852267pt;}
.y40{bottom:322.666667pt;}
.y25{bottom:341.333333pt;}
.y24{bottom:362.666667pt;}
.y23{bottom:381.333333pt;}
.y22{bottom:402.666667pt;}
.y21{bottom:421.333333pt;}
.y20{bottom:442.666667pt;}
.y3f{bottom:461.333333pt;}
.y1e{bottom:462.666667pt;}
.y1c{bottom:482.666667pt;}
.y3e{bottom:501.333333pt;}
.y1b{bottom:508.772267pt;}
.y3d{bottom:522.666667pt;}
.y3c{bottom:541.333333pt;}
.y19{bottom:544.000000pt;}
.y3b{bottom:562.666667pt;}
.y17{bottom:564.000000pt;}
.y3a{bottom:582.666667pt;}
.y15{bottom:584.000000pt;}
.y39{bottom:602.666667pt;}
.y13{bottom:605.333333pt;}
.y38{bottom:628.772267pt;}
.y12{bottom:630.692267pt;}
.y37{bottom:664.000000pt;}
.y11{bottom:666.666667pt;}
.y36{bottom:684.000000pt;}
.y10{bottom:685.333333pt;}
.y35{bottom:704.000000pt;}
.yf{bottom:706.666667pt;}
.ye{bottom:725.333333pt;}
.yc{bottom:746.666667pt;}
.y34{bottom:750.692267pt;}
.ya{bottom:765.333333pt;}
.y8{bottom:786.666667pt;}
.y33{bottom:805.333333pt;}
.y6{bottom:806.666667pt;}
.y32{bottom:826.666667pt;}
.y4c{bottom:830.692267pt;}
.y5{bottom:832.932267pt;}
.y4b{bottom:845.333333pt;}
.y31{bottom:846.666667pt;}
.y4a{bottom:866.666667pt;}
.y30{bottom:872.932267pt;}
.y4{bottom:883.172267pt;}
.y49{bottom:886.666667pt;}
.y48{bottom:906.666667pt;}
.y2f{bottom:923.172267pt;}
.y3{bottom:932.772267pt;}
.y1{bottom:963.812267pt;}
.h9{height:20.000000pt;}
.h6{height:21.333333pt;}
.h8{height:22.666667pt;}
.h2{height:30.690000pt;}
.h3{height:32.870000pt;}
.h7{height:40.882500pt;}
.h4{height:48.990000pt;}
.h5{height:50.628750pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.wc{width:65.333333pt;}
.wb{width:66.666667pt;}
.w7{width:73.333333pt;}
.w9{width:77.333333pt;}
.w6{width:78.666667pt;}
.wa{width:84.000000pt;}
.w4{width:86.666667pt;}
.w5{width:94.666667pt;}
.w8{width:196.000000pt;}
.w3{width:228.000000pt;}
.w2{width:556.000000pt;}
.w0{width:793.700667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.347627pt;}
.x1a{left:16.079520pt;}
.x14{left:17.521760pt;}
.x16{left:18.691040pt;}
.x12{left:21.969333pt;}
.xd{left:24.119520pt;}
.x7{left:27.161760pt;}
.x9{left:28.958027pt;}
.xb{left:31.071413pt;}
.x11{left:32.147360pt;}
.x1b{left:35.840800pt;}
.x10{left:37.574133pt;}
.x1c{left:43.534240pt;}
.xe{left:45.480800pt;}
.xf{left:53.800907pt;}
.x3{left:119.987595pt;}
.x13{left:314.666667pt;}
.x6{left:346.666667pt;}
.x4{left:375.387787pt;}
.x15{left:390.666667pt;}
.x2{left:394.387467pt;}
.x1{left:397.387467pt;}
.x8{left:432.000000pt;}
.x17{left:473.333333pt;}
.xa{left:525.333333pt;}
.x18{left:545.333333pt;}
.xc{left:602.666667pt;}
.x19{left:610.666667pt;}
}




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