
    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_68eda5f5959b03e2f0ae3577.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.950195;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_6193fc93719873dbca485474.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_74a1e6f503f1eaf24cca6ea5.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5c5990aa28d59e7cc90e7f0d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978027;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_5ca51327a1be7e20f03868e9.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_d2ce218366176b03ef5966d1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c6e6736c30ba8ff5c6f5b58f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8b4eabdadcb8fd8e3ea360e3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_103e4e0f7b98e6d74b9b3e7d.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v2{vertical-align:-21.060000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.109200px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.008640px;}
.lsc{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.262080px;}
.lsb{letter-spacing:0.305400px;}
.ls7{letter-spacing:16.865280px;}
.lsa{letter-spacing:39.881280px;}
.ls9{letter-spacing:44.225280px;}
.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;}
}
.ws0{word-spacing:-18.305520px;}
.ws6{word-spacing:-16.560000px;}
.ws1{word-spacing:-12.060000px;}
.ws4{word-spacing:-11.700000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._d{margin-left:-4.512240px;}
._9{margin-left:-3.367440px;}
._0{margin-left:-1.788480px;}
._2{width:1.036800px;}
._3{width:2.339040px;}
._4{width:4.055280px;}
._e{width:5.704320px;}
._7{width:6.880320px;}
._6{width:8.221680px;}
._5{width:9.740880px;}
._a{width:11.712960px;}
._14{width:12.850560px;}
._17{width:14.186880px;}
._1a{width:15.189120px;}
._8{width:16.194960px;}
._18{width:17.798400px;}
._f{width:18.812160px;}
._10{width:20.160000px;}
._13{width:21.413280px;}
._c{width:22.720320px;}
._19{width:24.310080px;}
._11{width:25.701120px;}
._12{width:27.313920px;}
._15{width:29.278080px;}
._16{width:31.000320px;}
._1b{width:37.690560px;}
._1c{width:39.214080px;}
._b{width:40.383840px;}
._1d{width:199.416000px;}
._1{width:1221.743040px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:9.180000px;}
.y5{bottom:58.320000px;}
.y4{bottom:77.040000px;}
.y6d{bottom:113.400000px;}
.y6c{bottom:135.180000px;}
.y3d{bottom:137.520000px;}
.y6b{bottom:156.960000px;}
.y3c{bottom:159.480000px;}
.y6a{bottom:178.740000px;}
.y3b{bottom:181.260000px;}
.y69{bottom:200.700000px;}
.y3a{bottom:203.040000px;}
.y68{bottom:222.510000px;}
.y39{bottom:224.850000px;}
.y67{bottom:244.290000px;}
.y38{bottom:246.630000px;}
.y66{bottom:266.070000px;}
.y37{bottom:268.590000px;}
.y65{bottom:287.850000px;}
.y36{bottom:290.370000px;}
.y64{bottom:309.810000px;}
.y35{bottom:312.150000px;}
.y63{bottom:331.590000px;}
.y34{bottom:333.930000px;}
.y62{bottom:353.370000px;}
.y33{bottom:355.890000px;}
.y32{bottom:373.890000px;}
.y61{bottom:375.150000px;}
.y31{bottom:387.570000px;}
.y60{bottom:397.110000px;}
.y30{bottom:402.150000px;}
.y5f{bottom:418.890000px;}
.y2f{bottom:419.430000px;}
.y2e{bottom:436.710000px;}
.y5e{bottom:440.670000px;}
.y2d{bottom:453.855000px;}
.y5d{bottom:462.495000px;}
.y2c{bottom:471.135000px;}
.y5c{bottom:484.275000px;}
.y2b{bottom:488.415000px;}
.y2a{bottom:505.695000px;}
.y5b{bottom:506.235000px;}
.y29{bottom:522.975000px;}
.y5a{bottom:528.015000px;}
.y28{bottom:540.075000px;}
.y59{bottom:549.795000px;}
.y27{bottom:557.355000px;}
.y58{bottom:571.575000px;}
.y26{bottom:574.635000px;}
.y25{bottom:591.915000px;}
.y57{bottom:593.535000px;}
.y24{bottom:609.195000px;}
.y56{bottom:615.315000px;}
.y23{bottom:626.475000px;}
.y55{bottom:637.095000px;}
.y22{bottom:643.575000px;}
.y54{bottom:658.875000px;}
.y21{bottom:660.855000px;}
.y20{bottom:678.135000px;}
.y53{bottom:680.655000px;}
.y1f{bottom:695.445000px;}
.y52{bottom:702.645000px;}
.y1e{bottom:712.725000px;}
.y51{bottom:724.425000px;}
.y1d{bottom:730.005000px;}
.y50{bottom:746.205000px;}
.y1c{bottom:747.105000px;}
.y1b{bottom:764.385000px;}
.y4f{bottom:767.985000px;}
.y1a{bottom:781.665000px;}
.y4e{bottom:789.765000px;}
.y19{bottom:798.945000px;}
.y4d{bottom:811.725000px;}
.y18{bottom:816.225000px;}
.y17{bottom:833.325000px;}
.y4c{bottom:833.505000px;}
.y16{bottom:850.605000px;}
.y4b{bottom:855.285000px;}
.y15{bottom:867.885000px;}
.y4a{bottom:877.065000px;}
.y14{bottom:885.165000px;}
.y49{bottom:899.025000px;}
.y13{bottom:901.725000px;}
.y48{bottom:920.850000px;}
.y12{bottom:921.390000px;}
.y11{bottom:933.990000px;}
.y47{bottom:942.630000px;}
.y10{bottom:952.890000px;}
.y46{bottom:964.410000px;}
.yf{bottom:971.790000px;}
.y45{bottom:986.190000px;}
.ye{bottom:989.610000px;}
.yd{bottom:1005.090000px;}
.y44{bottom:1008.150000px;}
.yc{bottom:1027.590000px;}
.y43{bottom:1029.930000px;}
.yb{bottom:1049.910000px;}
.y42{bottom:1051.710000px;}
.ya{bottom:1071.510000px;}
.y41{bottom:1073.490000px;}
.y9{bottom:1088.790000px;}
.y40{bottom:1095.450000px;}
.y6e{bottom:1099.230000px;}
.y8{bottom:1106.070000px;}
.y3f{bottom:1117.230000px;}
.y7{bottom:1123.170000px;}
.y3e{bottom:1139.010000px;}
.y6{bottom:1140.450000px;}
.y3{bottom:1165.140000px;}
.y1{bottom:1180.620000px;}
.hc{height:27.147656px;}
.h2{height:27.900000px;}
.h9{height:33.683203px;}
.hf{height:34.036523px;}
.h6{height:36.768867px;}
.he{height:41.726953px;}
.h7{height:42.164648px;}
.h5{height:46.251562px;}
.h10{height:46.736719px;}
.h4{height:48.224531px;}
.hd{height:49.255313px;}
.h3{height:49.777031px;}
.hb{height:53.224453px;}
.ha{height:54.596250px;}
.h8{height:54.864844px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:53.100000px;}
.w3{width:627.405000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:108.036000px;}
.x6{left:124.055987px;}
.xc{left:129.275987px;}
.xd{left:135.035987px;}
.xe{left:140.075987px;}
.x8{left:149.795987px;}
.x3{left:161.130000px;}
.x9{left:297.434987px;}
.x7{left:379.694987px;}
.xa{left:418.754987px;}
.xb{left:420.374987px;}
.x5{left:446.684987px;}
.x4{left:785.309987px;}
@media print{
.v2{vertical-align:-18.720000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.097067pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.007680pt;}
.lsc{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.232960pt;}
.lsb{letter-spacing:0.271467pt;}
.ls7{letter-spacing:14.991360pt;}
.lsa{letter-spacing:35.450027pt;}
.ls9{letter-spacing:39.311360pt;}
.ws0{word-spacing:-16.271573pt;}
.ws6{word-spacing:-14.720000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws4{word-spacing:-10.400000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._d{margin-left:-4.010880pt;}
._9{margin-left:-2.993280pt;}
._0{margin-left:-1.589760pt;}
._2{width:0.921600pt;}
._3{width:2.079147pt;}
._4{width:3.604693pt;}
._e{width:5.070507pt;}
._7{width:6.115840pt;}
._6{width:7.308160pt;}
._5{width:8.658560pt;}
._a{width:10.411520pt;}
._14{width:11.422720pt;}
._17{width:12.610560pt;}
._1a{width:13.501440pt;}
._8{width:14.395520pt;}
._18{width:15.820800pt;}
._f{width:16.721920pt;}
._10{width:17.920000pt;}
._13{width:19.034027pt;}
._c{width:20.195840pt;}
._19{width:21.608960pt;}
._11{width:22.845440pt;}
._12{width:24.279040pt;}
._15{width:26.024960pt;}
._16{width:27.555840pt;}
._1b{width:33.502720pt;}
._1c{width:34.856960pt;}
._b{width:35.896747pt;}
._1d{width:177.258667pt;}
._1{width:1085.993813pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:8.160000pt;}
.y5{bottom:51.840000pt;}
.y4{bottom:68.480000pt;}
.y6d{bottom:100.800000pt;}
.y6c{bottom:120.160000pt;}
.y3d{bottom:122.240000pt;}
.y6b{bottom:139.520000pt;}
.y3c{bottom:141.760000pt;}
.y6a{bottom:158.880000pt;}
.y3b{bottom:161.120000pt;}
.y69{bottom:178.400000pt;}
.y3a{bottom:180.480000pt;}
.y68{bottom:197.786667pt;}
.y39{bottom:199.866667pt;}
.y67{bottom:217.146667pt;}
.y38{bottom:219.226667pt;}
.y66{bottom:236.506667pt;}
.y37{bottom:238.746667pt;}
.y65{bottom:255.866667pt;}
.y36{bottom:258.106667pt;}
.y64{bottom:275.386667pt;}
.y35{bottom:277.466667pt;}
.y63{bottom:294.746667pt;}
.y34{bottom:296.826667pt;}
.y62{bottom:314.106667pt;}
.y33{bottom:316.346667pt;}
.y32{bottom:332.346667pt;}
.y61{bottom:333.466667pt;}
.y31{bottom:344.506667pt;}
.y60{bottom:352.986667pt;}
.y30{bottom:357.466667pt;}
.y5f{bottom:372.346667pt;}
.y2f{bottom:372.826667pt;}
.y2e{bottom:388.186667pt;}
.y5e{bottom:391.706667pt;}
.y2d{bottom:403.426667pt;}
.y5d{bottom:411.106667pt;}
.y2c{bottom:418.786667pt;}
.y5c{bottom:430.466667pt;}
.y2b{bottom:434.146667pt;}
.y2a{bottom:449.506667pt;}
.y5b{bottom:449.986667pt;}
.y29{bottom:464.866667pt;}
.y5a{bottom:469.346667pt;}
.y28{bottom:480.066667pt;}
.y59{bottom:488.706667pt;}
.y27{bottom:495.426667pt;}
.y58{bottom:508.066667pt;}
.y26{bottom:510.786667pt;}
.y25{bottom:526.146667pt;}
.y57{bottom:527.586667pt;}
.y24{bottom:541.506667pt;}
.y56{bottom:546.946667pt;}
.y23{bottom:556.866667pt;}
.y55{bottom:566.306667pt;}
.y22{bottom:572.066667pt;}
.y54{bottom:585.666667pt;}
.y21{bottom:587.426667pt;}
.y20{bottom:602.786667pt;}
.y53{bottom:605.026667pt;}
.y1f{bottom:618.173333pt;}
.y52{bottom:624.573333pt;}
.y1e{bottom:633.533333pt;}
.y51{bottom:643.933333pt;}
.y1d{bottom:648.893333pt;}
.y50{bottom:663.293333pt;}
.y1c{bottom:664.093333pt;}
.y1b{bottom:679.453333pt;}
.y4f{bottom:682.653333pt;}
.y1a{bottom:694.813333pt;}
.y4e{bottom:702.013333pt;}
.y19{bottom:710.173333pt;}
.y4d{bottom:721.533333pt;}
.y18{bottom:725.533333pt;}
.y17{bottom:740.733333pt;}
.y4c{bottom:740.893333pt;}
.y16{bottom:756.093333pt;}
.y4b{bottom:760.253333pt;}
.y15{bottom:771.453333pt;}
.y4a{bottom:779.613333pt;}
.y14{bottom:786.813333pt;}
.y49{bottom:799.133333pt;}
.y13{bottom:801.533333pt;}
.y48{bottom:818.533333pt;}
.y12{bottom:819.013333pt;}
.y11{bottom:830.213333pt;}
.y47{bottom:837.893333pt;}
.y10{bottom:847.013333pt;}
.y46{bottom:857.253333pt;}
.yf{bottom:863.813333pt;}
.y45{bottom:876.613333pt;}
.ye{bottom:879.653333pt;}
.yd{bottom:893.413333pt;}
.y44{bottom:896.133333pt;}
.yc{bottom:913.413333pt;}
.y43{bottom:915.493333pt;}
.yb{bottom:933.253333pt;}
.y42{bottom:934.853333pt;}
.ya{bottom:952.453333pt;}
.y41{bottom:954.213333pt;}
.y9{bottom:967.813333pt;}
.y40{bottom:973.733333pt;}
.y6e{bottom:977.093333pt;}
.y8{bottom:983.173333pt;}
.y3f{bottom:993.093333pt;}
.y7{bottom:998.373333pt;}
.y3e{bottom:1012.453333pt;}
.y6{bottom:1013.733333pt;}
.y3{bottom:1035.680000pt;}
.y1{bottom:1049.440000pt;}
.hc{height:24.131250pt;}
.h2{height:24.800000pt;}
.h9{height:29.940625pt;}
.hf{height:30.254687pt;}
.h6{height:32.683437pt;}
.he{height:37.090625pt;}
.h7{height:37.479688pt;}
.h5{height:41.112500pt;}
.h10{height:41.543750pt;}
.h4{height:42.866250pt;}
.hd{height:43.782500pt;}
.h3{height:44.246250pt;}
.hb{height:47.310625pt;}
.ha{height:48.530000pt;}
.h8{height:48.768750pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:47.200000pt;}
.w3{width:557.693333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:96.032000pt;}
.x6{left:110.271988pt;}
.xc{left:114.911988pt;}
.xd{left:120.031988pt;}
.xe{left:124.511988pt;}
.x8{left:133.151988pt;}
.x3{left:143.226667pt;}
.x9{left:264.386655pt;}
.x7{left:337.506655pt;}
.xa{left:372.226655pt;}
.xb{left:373.666655pt;}
.x5{left:397.053322pt;}
.x4{left:698.053322pt;}
}




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