
    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_6834ebe17bf4a5505964c187.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_58147012e68e9675c40e0acc.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_9df21becd3ccc6fd829782be.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_cb74e885f06f48d20f67f390.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d2610543ac95b2633c9fc0fe.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a992b82ed9c0d3831dce82bf.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_2981d86d56328cd4bc3a8651.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_c76098ae173c61c3fed3a1df.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_2849677c94050ed55464c872.woff2')format("woff");}.ff9{font-family:ff9;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;}
.ls4{letter-spacing:-0.744000px;}
.ls3{letter-spacing:-0.291600px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028080px;}
.ls6{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.540000px;}
.ls7{letter-spacing:21.221280px;}
.ls5{letter-spacing:64.026720px;}
.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;}
}
.ws5{word-spacing:-59.760000px;}
.ws2{word-spacing:-23.940000px;}
.ws6{word-spacing:-21.420000px;}
.ws1{word-spacing:-21.088080px;}
.ws0{word-spacing:-21.060000px;}
.ws4{word-spacing:-20.316000px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-4.522320px;}
._1{margin-left:-1.442880px;}
._2{width:1.053360px;}
._4{width:2.594640px;}
._3{width:3.635280px;}
._1d{width:4.896720px;}
._7{width:6.149520px;}
._8{width:7.255440px;}
._1c{width:9.160560px;}
._19{width:10.983600px;}
._d{width:12.214800px;}
._23{width:13.309920px;}
._6{width:14.320800px;}
._5{width:16.240320px;}
._17{width:17.298000px;}
._b{width:19.375200px;}
._18{width:22.671360px;}
._21{width:24.198960px;}
._c{width:26.125200px;}
._9{width:27.462240px;}
._a{width:28.736640px;}
._28{width:30.082800px;}
._26{width:31.127040px;}
._25{width:32.495760px;}
._2b{width:34.043760px;}
._2a{width:35.560080px;}
._2c{width:37.164720px;}
._24{width:39.057120px;}
._1e{width:40.914960px;}
._10{width:42.552000px;}
._f{width:43.562880px;}
._29{width:45.141840px;}
._1f{width:47.848320px;}
._20{width:49.066320px;}
._11{width:51.312960px;}
._27{width:53.583120px;}
._1a{width:58.778640px;}
._16{width:60.358320px;}
._1b{width:62.689920px;}
._22{width:64.537920px;}
._13{width:67.824000px;}
._e{width:70.545600px;}
._12{width:102.867840px;}
._14{width:124.085520px;}
._15{width:125.328480px;}
.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;}
.fs1{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs0{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:5.400000px;}
.y3{bottom:43.200000px;}
.y51{bottom:52.560000px;}
.y1c{bottom:64.260000px;}
.y5d{bottom:79.380000px;}
.y31{bottom:85.140000px;}
.y2{bottom:85.890000px;}
.y50{bottom:88.920000px;}
.y41{bottom:94.680000px;}
.y1b{bottom:100.440000px;}
.y5c{bottom:115.560000px;}
.y30{bottom:121.500000px;}
.y4f{bottom:125.100000px;}
.y40{bottom:130.860000px;}
.y1a{bottom:136.656000px;}
.y5b{bottom:151.950000px;}
.y2f{bottom:157.710000px;}
.y3f{bottom:167.070000px;}
.y19{bottom:172.830000px;}
.y4e{bottom:182.010000px;}
.y5a{bottom:188.130000px;}
.y2e{bottom:193.890000px;}
.y3e{bottom:203.250000px;}
.y18{bottom:209.190000px;}
.y59{bottom:224.310000px;}
.y2d{bottom:230.070000px;}
.y3d{bottom:239.610000px;}
.y17{bottom:266.250000px;}
.y4d{bottom:275.790000px;}
.y58{bottom:281.190000px;}
.y3c{bottom:296.490000px;}
.y16{bottom:302.610000px;}
.y4c{bottom:311.970000px;}
.y57{bottom:317.370000px;}
.y15{bottom:338.790000px;}
.y4b{bottom:348.150000px;}
.y3b{bottom:354.090000px;}
.y14{bottom:374.970000px;}
.y3a{bottom:390.315000px;}
.y2c{bottom:395.715000px;}
.y4a{bottom:405.075000px;}
.y13{bottom:411.195000px;}
.y39{bottom:426.495000px;}
.y12{bottom:447.555000px;}
.y2b{bottom:453.315000px;}
.y49{bottom:462.315000px;}
.y11{bottom:483.735000px;}
.y2a{bottom:489.495000px;}
.y48{bottom:519.555000px;}
.y10{bottom:519.915000px;}
.y29{bottom:525.675000px;}
.y56{bottom:540.975000px;}
.yf{bottom:556.095000px;}
.y47{bottom:577.155000px;}
.y28{bottom:582.915000px;}
.ye{bottom:592.455000px;}
.y46{bottom:613.335000px;}
.y27{bottom:619.095000px;}
.yd{bottom:649.185000px;}
.y45{bottom:649.545000px;}
.y26{bottom:655.485000px;}
.y44{bottom:685.905000px;}
.y25{bottom:691.665000px;}
.y38{bottom:706.785000px;}
.yc{bottom:709.305000px;}
.y43{bottom:722.085000px;}
.y24{bottom:727.845000px;}
.y37{bottom:743.145000px;}
.yb{bottom:750.705000px;}
.y55{bottom:758.265000px;}
.y23{bottom:764.025000px;}
.y42{bottom:778.965000px;}
.y36{bottom:779.325000px;}
.y54{bottom:794.445000px;}
.y22{bottom:800.385000px;}
.ya{bottom:813.165000px;}
.y21{bottom:836.565000px;}
.y53{bottom:851.685000px;}
.y9{bottom:854.565000px;}
.y5e{bottom:857.445000px;}
.y35{bottom:872.745000px;}
.y20{bottom:893.850000px;}
.y8{bottom:895.470000px;}
.y52{bottom:908.610000px;}
.y34{bottom:908.970000px;}
.y1f{bottom:930.030000px;}
.y7{bottom:936.870000px;}
.y33{bottom:945.150000px;}
.y1e{bottom:966.210000px;}
.y6{bottom:999.150000px;}
.y32{bottom:1002.030000px;}
.y1d{bottom:1002.390000px;}
.y1{bottom:1084.650000px;}
.y5{bottom:1262.160000px;}
.h6{height:58.651172px;}
.hb{height:58.819922px;}
.hc{height:61.423863px;}
.ha{height:61.575820px;}
.h9{height:82.635820px;}
.h4{height:82.676953px;}
.h5{height:84.898125px;}
.hd{height:86.585445px;}
.h8{height:93.983203px;}
.h7{height:96.508125px;}
.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;}
.x4{left:93.645000px;}
.x5{left:118.475987px;}
.x6{left:121.715987px;}
.xe{left:145.475987px;}
.xd{left:171.569987px;}
.xb{left:185.609987px;}
.xc{left:201.269987px;}
.xa{left:229.529987px;}
.x7{left:268.094987px;}
.x9{left:282.134987px;}
.x8{left:293.474987px;}
.x1{left:553.245000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.661333pt;}
.ls3{letter-spacing:-0.259200pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024960pt;}
.ls6{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.480000pt;}
.ls7{letter-spacing:18.863360pt;}
.ls5{letter-spacing:56.912640pt;}
.ws5{word-spacing:-53.120000pt;}
.ws2{word-spacing:-21.280000pt;}
.ws6{word-spacing:-19.040000pt;}
.ws1{word-spacing:-18.744960pt;}
.ws0{word-spacing:-18.720000pt;}
.ws4{word-spacing:-18.058667pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-4.019840pt;}
._1{margin-left:-1.282560pt;}
._2{width:0.936320pt;}
._4{width:2.306347pt;}
._3{width:3.231360pt;}
._1d{width:4.352640pt;}
._7{width:5.466240pt;}
._8{width:6.449280pt;}
._1c{width:8.142720pt;}
._19{width:9.763200pt;}
._d{width:10.857600pt;}
._23{width:11.831040pt;}
._6{width:12.729600pt;}
._5{width:14.435840pt;}
._17{width:15.376000pt;}
._b{width:17.222400pt;}
._18{width:20.152320pt;}
._21{width:21.510187pt;}
._c{width:23.222400pt;}
._9{width:24.410880pt;}
._a{width:25.543680pt;}
._28{width:26.740267pt;}
._26{width:27.668480pt;}
._25{width:28.885120pt;}
._2b{width:30.261120pt;}
._2a{width:31.608960pt;}
._2c{width:33.035307pt;}
._24{width:34.717440pt;}
._1e{width:36.368853pt;}
._10{width:37.824000pt;}
._f{width:38.722560pt;}
._29{width:40.126080pt;}
._1f{width:42.531840pt;}
._20{width:43.614507pt;}
._11{width:45.611520pt;}
._27{width:47.629440pt;}
._1a{width:52.247680pt;}
._16{width:53.651840pt;}
._1b{width:55.724373pt;}
._22{width:57.367040pt;}
._13{width:60.288000pt;}
._e{width:62.707200pt;}
._12{width:91.438080pt;}
._14{width:110.298240pt;}
._15{width:111.403093pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs0{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:4.800000pt;}
.y3{bottom:38.400000pt;}
.y51{bottom:46.720000pt;}
.y1c{bottom:57.120000pt;}
.y5d{bottom:70.560000pt;}
.y31{bottom:75.680000pt;}
.y2{bottom:76.346667pt;}
.y50{bottom:79.040000pt;}
.y41{bottom:84.160000pt;}
.y1b{bottom:89.280000pt;}
.y5c{bottom:102.720000pt;}
.y30{bottom:108.000000pt;}
.y4f{bottom:111.200000pt;}
.y40{bottom:116.320000pt;}
.y1a{bottom:121.472000pt;}
.y5b{bottom:135.066667pt;}
.y2f{bottom:140.186667pt;}
.y3f{bottom:148.506667pt;}
.y19{bottom:153.626667pt;}
.y4e{bottom:161.786667pt;}
.y5a{bottom:167.226667pt;}
.y2e{bottom:172.346667pt;}
.y3e{bottom:180.666667pt;}
.y18{bottom:185.946667pt;}
.y59{bottom:199.386667pt;}
.y2d{bottom:204.506667pt;}
.y3d{bottom:212.986667pt;}
.y17{bottom:236.666667pt;}
.y4d{bottom:245.146667pt;}
.y58{bottom:249.946667pt;}
.y3c{bottom:263.546667pt;}
.y16{bottom:268.986667pt;}
.y4c{bottom:277.306667pt;}
.y57{bottom:282.106667pt;}
.y15{bottom:301.146667pt;}
.y4b{bottom:309.466667pt;}
.y3b{bottom:314.746667pt;}
.y14{bottom:333.306667pt;}
.y3a{bottom:346.946667pt;}
.y2c{bottom:351.746667pt;}
.y4a{bottom:360.066667pt;}
.y13{bottom:365.506667pt;}
.y39{bottom:379.106667pt;}
.y12{bottom:397.826667pt;}
.y2b{bottom:402.946667pt;}
.y49{bottom:410.946667pt;}
.y11{bottom:429.986667pt;}
.y2a{bottom:435.106667pt;}
.y48{bottom:461.826667pt;}
.y10{bottom:462.146667pt;}
.y29{bottom:467.266667pt;}
.y56{bottom:480.866667pt;}
.yf{bottom:494.306667pt;}
.y47{bottom:513.026667pt;}
.y28{bottom:518.146667pt;}
.ye{bottom:526.626667pt;}
.y46{bottom:545.186667pt;}
.y27{bottom:550.306667pt;}
.yd{bottom:577.053333pt;}
.y45{bottom:577.373333pt;}
.y26{bottom:582.653333pt;}
.y44{bottom:609.693333pt;}
.y25{bottom:614.813333pt;}
.y38{bottom:628.253333pt;}
.yc{bottom:630.493333pt;}
.y43{bottom:641.853333pt;}
.y24{bottom:646.973333pt;}
.y37{bottom:660.573333pt;}
.yb{bottom:667.293333pt;}
.y55{bottom:674.013333pt;}
.y23{bottom:679.133333pt;}
.y42{bottom:692.413333pt;}
.y36{bottom:692.733333pt;}
.y54{bottom:706.173333pt;}
.y22{bottom:711.453333pt;}
.ya{bottom:722.813333pt;}
.y21{bottom:743.613333pt;}
.y53{bottom:757.053333pt;}
.y9{bottom:759.613333pt;}
.y5e{bottom:762.173333pt;}
.y35{bottom:775.773333pt;}
.y20{bottom:794.533333pt;}
.y8{bottom:795.973333pt;}
.y52{bottom:807.653333pt;}
.y34{bottom:807.973333pt;}
.y1f{bottom:826.693333pt;}
.y7{bottom:832.773333pt;}
.y33{bottom:840.133333pt;}
.y1e{bottom:858.853333pt;}
.y6{bottom:888.133333pt;}
.y32{bottom:890.693333pt;}
.y1d{bottom:891.013333pt;}
.y1{bottom:964.133333pt;}
.y5{bottom:1121.920000pt;}
.h6{height:52.134375pt;}
.hb{height:52.284375pt;}
.hc{height:54.598989pt;}
.ha{height:54.734062pt;}
.h9{height:73.454062pt;}
.h4{height:73.490625pt;}
.h5{height:75.465000pt;}
.hd{height:76.964840pt;}
.h8{height:83.540625pt;}
.h7{height:85.785000pt;}
.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;}
.x4{left:83.240000pt;}
.x5{left:105.311988pt;}
.x6{left:108.191988pt;}
.xe{left:129.311988pt;}
.xd{left:152.506655pt;}
.xb{left:164.986655pt;}
.xc{left:178.906655pt;}
.xa{left:204.026655pt;}
.x7{left:238.306655pt;}
.x9{left:250.786655pt;}
.x8{left:260.866655pt;}
.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; }
  