
    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_c336d2f70b94c87e566dc42a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.034180;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_6df650367d3833fa97b9df54.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_11a1b3bfaae20a1daed1121e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_774606ce9d2a2f30e6c49e54.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_c6afde12dccf84003d05e9f2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_e1754b1742816addc99739b6.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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:-0.900000px;}
.lsb{letter-spacing:-0.378600px;}
.ls8{letter-spacing:-0.341400px;}
.ls4{letter-spacing:-0.180000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028080px;}
.lsc{letter-spacing:0.341400px;}
.lsd{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.540000px;}
.ls5{letter-spacing:1.440000px;}
.ls1{letter-spacing:5.760000px;}
.lse{letter-spacing:22.140000px;}
.ls7{letter-spacing:27.180000px;}
.ls10{letter-spacing:40.637280px;}
.ls9{letter-spacing:44.640000px;}
.ls6{letter-spacing:56.501280px;}
.lsf{letter-spacing:82.596000px;}
.ls11{letter-spacing:86.717280px;}
.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;}
}
.ws4{word-spacing:-21.420000px;}
.ws3{word-spacing:-21.401400px;}
.ws1{word-spacing:-21.088080px;}
.ws0{word-spacing:-21.060000px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-4.522320px;}
._1{margin-left:-1.442880px;}
._2{width:1.199280px;}
._6{width:2.215920px;}
._a{width:4.391280px;}
._3{width:6.029040px;}
._12{width:7.954800px;}
._f{width:9.529920px;}
._e{width:10.709280px;}
._2f{width:11.988000px;}
._27{width:13.042320px;}
._24{width:14.163120px;}
._1e{width:15.595200px;}
._13{width:17.280000px;}
._2e{width:18.363600px;}
._1d{width:19.470240px;}
._1a{width:23.166000px;}
._21{width:24.327840px;}
._17{width:25.440480px;}
._16{width:26.874240px;}
._18{width:28.740960px;}
._19{width:29.807520px;}
._1b{width:31.926960px;}
._1c{width:33.003120px;}
._20{width:34.993680px;}
._1f{width:36.726960px;}
._d{width:38.087280px;}
._2c{width:39.444720px;}
._31{width:40.625280px;}
._23{width:42.720480px;}
._22{width:43.720560px;}
._15{width:46.090080px;}
._36{width:49.029360px;}
._14{width:57.799440px;}
._9{width:60.410880px;}
._8{width:61.421760px;}
._5{width:62.945280px;}
._4{width:64.548000px;}
._2a{width:66.223440px;}
._10{width:67.764000px;}
._28{width:70.073280px;}
._2d{width:84.776880px;}
._32{width:91.533360px;}
._35{width:93.349440px;}
._7{width:96.307920px;}
._25{width:107.100000px;}
._34{width:111.600000px;}
._c{width:117.335520px;}
._b{width:118.631520px;}
._30{width:124.676160px;}
._29{width:177.949200px;}
._26{width:194.073600px;}
._11{width:195.120000px;}
._33{width:199.620000px;}
._2b{width:373.440480px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs2{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:5.400000px;}
.y3{bottom:43.200000px;}
.y39{bottom:48.600000px;}
.y24{bottom:60.480000px;}
.y38{bottom:84.780000px;}
.y2{bottom:85.890000px;}
.y23{bottom:96.840000px;}
.y37{bottom:120.960000px;}
.y22{bottom:133.020000px;}
.y36{bottom:157.170000px;}
.y21{bottom:169.230000px;}
.y35{bottom:193.530000px;}
.y20{bottom:205.410000px;}
.y34{bottom:229.710000px;}
.y1f{bottom:241.590000px;}
.y33{bottom:265.890000px;}
.y1e{bottom:277.950000px;}
.y32{bottom:302.070000px;}
.y1d{bottom:314.130000px;}
.y31{bottom:338.250000px;}
.y1c{bottom:350.310000px;}
.y30{bottom:374.610000px;}
.y1b{bottom:386.490000px;}
.y2f{bottom:410.835000px;}
.y1a{bottom:422.895000px;}
.y2e{bottom:447.015000px;}
.y19{bottom:459.075000px;}
.y2d{bottom:483.195000px;}
.y18{bottom:495.255000px;}
.y2c{bottom:519.555000px;}
.y17{bottom:531.435000px;}
.y2b{bottom:555.735000px;}
.y16{bottom:567.795000px;}
.y15{bottom:603.975000px;}
.y3a{bottom:628.095000px;}
.y14{bottom:640.185000px;}
.y13{bottom:676.365000px;}
.y12{bottom:712.545000px;}
.y11{bottom:736.845000px;}
.y2a{bottom:748.905000px;}
.y10{bottom:760.605000px;}
.yf{bottom:785.085000px;}
.ye{bottom:808.845000px;}
.y29{bottom:821.265000px;}
.yd{bottom:833.325000px;}
.yc{bottom:857.445000px;}
.yb{bottom:881.745000px;}
.y28{bottom:893.850000px;}
.ya{bottom:905.550000px;}
.y9{bottom:929.670000px;}
.y27{bottom:930.030000px;}
.y8{bottom:953.790000px;}
.y26{bottom:966.210000px;}
.y7{bottom:977.910000px;}
.y6{bottom:1002.030000px;}
.y25{bottom:1002.390000px;}
.y1{bottom:1084.650000px;}
.y5{bottom:1262.160000px;}
.h6{height:58.651172px;}
.h8{height:58.819922px;}
.h7{height:59.436914px;}
.ha{height:65.010937px;}
.h4{height:82.676953px;}
.h5{height:84.898125px;}
.h9{height:86.585445px;}
.h3{height:101.335078px;}
.h2{height:115.776000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:277.455000px;}
.w1{width:893.250000px;}
.w3{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.x3{left:18.360000px;}
.x11{left:86.435987px;}
.x4{left:93.645000px;}
.x17{left:113.435987px;}
.x5{left:118.475987px;}
.x15{left:129.095987px;}
.x12{left:139.535987px;}
.x9{left:150.689987px;}
.x6{left:153.929987px;}
.x16{left:160.949987px;}
.x13{left:171.569987px;}
.x14{left:198.569987px;}
.x7{left:214.589987px;}
.x8{left:242.669987px;}
.xf{left:256.394987px;}
.xd{left:264.314987px;}
.x10{left:277.994987px;}
.xc{left:308.594987px;}
.xe{left:317.954987px;}
.xa{left:362.774987px;}
.xb{left:451.904987px;}
.x1{left:553.245000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.800000pt;}
.lsb{letter-spacing:-0.336533pt;}
.ls8{letter-spacing:-0.303467pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024960pt;}
.lsc{letter-spacing:0.303467pt;}
.lsd{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.480000pt;}
.ls5{letter-spacing:1.280000pt;}
.ls1{letter-spacing:5.120000pt;}
.lse{letter-spacing:19.680000pt;}
.ls7{letter-spacing:24.160000pt;}
.ls10{letter-spacing:36.122027pt;}
.ls9{letter-spacing:39.680000pt;}
.ls6{letter-spacing:50.223360pt;}
.lsf{letter-spacing:73.418667pt;}
.ls11{letter-spacing:77.082027pt;}
.ws4{word-spacing:-19.040000pt;}
.ws3{word-spacing:-19.023467pt;}
.ws1{word-spacing:-18.744960pt;}
.ws0{word-spacing:-18.720000pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-4.019840pt;}
._1{margin-left:-1.282560pt;}
._2{width:1.066027pt;}
._6{width:1.969707pt;}
._a{width:3.903360pt;}
._3{width:5.359147pt;}
._12{width:7.070933pt;}
._f{width:8.471040pt;}
._e{width:9.519360pt;}
._2f{width:10.656000pt;}
._27{width:11.593173pt;}
._24{width:12.589440pt;}
._1e{width:13.862400pt;}
._13{width:15.360000pt;}
._2e{width:16.323200pt;}
._1d{width:17.306880pt;}
._1a{width:20.592000pt;}
._21{width:21.624747pt;}
._17{width:22.613760pt;}
._16{width:23.888213pt;}
._18{width:25.547520pt;}
._19{width:26.495573pt;}
._1b{width:28.379520pt;}
._1c{width:29.336107pt;}
._20{width:31.105493pt;}
._1f{width:32.646187pt;}
._d{width:33.855360pt;}
._2c{width:35.061973pt;}
._31{width:36.111360pt;}
._23{width:37.973760pt;}
._22{width:38.862720pt;}
._15{width:40.968960pt;}
._36{width:43.581653pt;}
._14{width:51.377280pt;}
._9{width:53.698560pt;}
._8{width:54.597120pt;}
._5{width:55.951360pt;}
._4{width:57.376000pt;}
._2a{width:58.865280pt;}
._10{width:60.234667pt;}
._28{width:62.287360pt;}
._2d{width:75.357227pt;}
._32{width:81.362987pt;}
._35{width:82.977280pt;}
._7{width:85.607040pt;}
._25{width:95.200000pt;}
._34{width:99.200000pt;}
._c{width:104.298240pt;}
._b{width:105.450240pt;}
._30{width:110.823253pt;}
._29{width:158.177067pt;}
._26{width:172.509867pt;}
._11{width:173.440000pt;}
._33{width:177.440000pt;}
._2b{width:331.947093pt;}
.fs2{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:4.800000pt;}
.y3{bottom:38.400000pt;}
.y39{bottom:43.200000pt;}
.y24{bottom:53.760000pt;}
.y38{bottom:75.360000pt;}
.y2{bottom:76.346667pt;}
.y23{bottom:86.080000pt;}
.y37{bottom:107.520000pt;}
.y22{bottom:118.240000pt;}
.y36{bottom:139.706667pt;}
.y21{bottom:150.426667pt;}
.y35{bottom:172.026667pt;}
.y20{bottom:182.586667pt;}
.y34{bottom:204.186667pt;}
.y1f{bottom:214.746667pt;}
.y33{bottom:236.346667pt;}
.y1e{bottom:247.066667pt;}
.y32{bottom:268.506667pt;}
.y1d{bottom:279.226667pt;}
.y31{bottom:300.666667pt;}
.y1c{bottom:311.386667pt;}
.y30{bottom:332.986667pt;}
.y1b{bottom:343.546667pt;}
.y2f{bottom:365.186667pt;}
.y1a{bottom:375.906667pt;}
.y2e{bottom:397.346667pt;}
.y19{bottom:408.066667pt;}
.y2d{bottom:429.506667pt;}
.y18{bottom:440.226667pt;}
.y2c{bottom:461.826667pt;}
.y17{bottom:472.386667pt;}
.y2b{bottom:493.986667pt;}
.y16{bottom:504.706667pt;}
.y15{bottom:536.866667pt;}
.y3a{bottom:558.306667pt;}
.y14{bottom:569.053333pt;}
.y13{bottom:601.213333pt;}
.y12{bottom:633.373333pt;}
.y11{bottom:654.973333pt;}
.y2a{bottom:665.693333pt;}
.y10{bottom:676.093333pt;}
.yf{bottom:697.853333pt;}
.ye{bottom:718.973333pt;}
.y29{bottom:730.013333pt;}
.yd{bottom:740.733333pt;}
.yc{bottom:762.173333pt;}
.yb{bottom:783.773333pt;}
.y28{bottom:794.533333pt;}
.ya{bottom:804.933333pt;}
.y9{bottom:826.373333pt;}
.y27{bottom:826.693333pt;}
.y8{bottom:847.813333pt;}
.y26{bottom:858.853333pt;}
.y7{bottom:869.253333pt;}
.y6{bottom:890.693333pt;}
.y25{bottom:891.013333pt;}
.y1{bottom:964.133333pt;}
.y5{bottom:1121.920000pt;}
.h6{height:52.134375pt;}
.h8{height:52.284375pt;}
.h7{height:52.832812pt;}
.ha{height:57.787500pt;}
.h4{height:73.490625pt;}
.h5{height:75.465000pt;}
.h9{height:76.964840pt;}
.h3{height:90.075625pt;}
.h2{height:102.912000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:246.626667pt;}
.w1{width:794.000000pt;}
.w3{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.x3{left:16.320000pt;}
.x11{left:76.831988pt;}
.x4{left:83.240000pt;}
.x17{left:100.831988pt;}
.x5{left:105.311988pt;}
.x15{left:114.751988pt;}
.x12{left:124.031988pt;}
.x9{left:133.946655pt;}
.x6{left:136.826655pt;}
.x16{left:143.066655pt;}
.x13{left:152.506655pt;}
.x14{left:176.506655pt;}
.x7{left:190.746655pt;}
.x8{left:215.706655pt;}
.xf{left:227.906655pt;}
.xd{left:234.946655pt;}
.x10{left:247.106655pt;}
.xc{left:274.306655pt;}
.xe{left:282.626655pt;}
.xa{left:322.466655pt;}
.xb{left:401.693321pt;}
.x1{left:491.773333pt;}
}




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