
    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_9cb0f98e36a64dd3e2b8f870.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.212000;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_306eadec11876e09a1addd86.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.212000;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_175bfe0296d427dd4a0cec12.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_624f91f82fb4e801317b5243.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.137000;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_95202902d8c505d7ead55850.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.807000;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;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:39.732480px;}
.ls5{letter-spacing:76.713600px;}
.ls4{letter-spacing:76.764000px;}
.ls2{letter-spacing:103.233600px;}
.ls1{letter-spacing:103.284000px;}
.ls3{letter-spacing:103.404000px;}
.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:-77.112000px;}
.ws5{word-spacing:-56.172528px;}
.ws2{word-spacing:-56.134080px;}
.ws3{word-spacing:-51.328080px;}
.ws1{word-spacing:-44.791920px;}
.ws0{word-spacing:-35.565120px;}
.ws6{word-spacing:0.000000px;}
._2{margin-left:-1.048320px;}
._1{width:1.048320px;}
._0{width:2.396160px;}
._4{width:3.651840px;}
._3{width:62.621280px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,193,212);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:149.760000px;}
.fs9{font-size:149.904000px;}
.fs4{font-size:167.760000px;}
.fs5{font-size:167.904000px;}
.fs1{font-size:192.240000px;}
.fs6{font-size:210.240000px;}
.fs8{font-size:210.384000px;}
.fs3{font-size:221.760000px;}
.fs7{font-size:324.000000px;}
.fs2{font-size:599.760000px;}
.y0{bottom:0.000000px;}
.y59{bottom:53.892000px;}
.y2{bottom:189.180000px;}
.y1{bottom:234.180000px;}
.y3{bottom:339.630000px;}
.y57{bottom:645.990000px;}
.y56{bottom:696.210000px;}
.y55{bottom:746.790000px;}
.y54{bottom:847.410000px;}
.y53{bottom:897.810000px;}
.y52{bottom:998.640000px;}
.ye{bottom:1034.460000px;}
.y51{bottom:1049.040000px;}
.y50{bottom:1099.440000px;}
.y4f{bottom:1200.420000px;}
.y26{bottom:1244.700000px;}
.y4e{bottom:1250.820000px;}
.y24{bottom:1294.920000px;}
.y58{bottom:1333.410000px;}
.y23{bottom:1395.900000px;}
.y22{bottom:1482.300000px;}
.y4d{bottom:1626.690000px;}
.y3c{bottom:1654.485000px;}
.y37{bottom:1674.615000px;}
.y4c{bottom:1689.870000px;}
.y30{bottom:1694.775000px;}
.y3b{bottom:1717.665000px;}
.y36{bottom:1737.795000px;}
.y4b{bottom:1752.870000px;}
.y2f{bottom:1757.955000px;}
.y35{bottom:1800.795000px;}
.y2e{bottom:1820.955000px;}
.y34{bottom:1863.795000px;}
.y2d{bottom:1883.955000px;}
.y47{bottom:2074.785000px;}
.y41{bottom:2075.475000px;}
.y4a{bottom:2102.910000px;}
.y44{bottom:2107.905000px;}
.y2c{bottom:2110.830000px;}
.y3a{bottom:2111.790000px;}
.y33{bottom:2131.410000px;}
.y40{bottom:2133.255000px;}
.y49{bottom:2166.090000px;}
.y43{bottom:2171.085000px;}
.y46{bottom:2172.345000px;}
.y1e{bottom:2173.470000px;}
.y2b{bottom:2174.010000px;}
.y39{bottom:2174.970000px;}
.y3f{bottom:2190.855000px;}
.y32{bottom:2194.590000px;}
.y48{bottom:2229.090000px;}
.y42{bottom:2234.085000px;}
.y2a{bottom:2237.010000px;}
.y38{bottom:2237.970000px;}
.y3e{bottom:2248.275000px;}
.y31{bottom:2257.590000px;}
.y45{bottom:2269.545000px;}
.y1b{bottom:2274.270000px;}
.y3d{bottom:2306.055000px;}
.y21{bottom:2316.060000px;}
.y16{bottom:2475.900000px;}
.y14{bottom:2576.700000px;}
.y29{bottom:2595.240000px;}
.y10{bottom:2677.500000px;}
.yf{bottom:2763.900000px;}
.yd{bottom:2829.600000px;}
.yc{bottom:2880.000000px;}
.yb{bottom:2980.800000px;}
.ya{bottom:3031.200000px;}
.y20{bottom:3157.350000px;}
.y1f{bottom:3207.930000px;}
.y1d{bottom:3258.150000px;}
.y1c{bottom:3308.730000px;}
.y1a{bottom:3358.950000px;}
.y19{bottom:3409.560000px;}
.y18{bottom:3459.780000px;}
.y28{bottom:3510.180000px;}
.y17{bottom:3510.360000px;}
.y15{bottom:3560.580000px;}
.y27{bottom:3560.760000px;}
.y25{bottom:3610.980000px;}
.y13{bottom:3611.160000px;}
.y12{bottom:3661.380000px;}
.y11{bottom:3711.960000px;}
.y9{bottom:3919.710000px;}
.y8{bottom:3975.150000px;}
.y7{bottom:4030.590000px;}
.y6{bottom:4095.210000px;}
.y5{bottom:4319.535000px;}
.y4{bottom:4531.650000px;}
.ha{height:122.133867px;}
.h2{height:141.073920px;}
.h10{height:141.209568px;}
.h6{height:158.029920px;}
.hb{height:158.165568px;}
.h7{height:159.372000px;}
.h3{height:181.090080px;}
.hd{height:198.046080px;}
.hf{height:198.181728px;}
.h5{height:208.897920px;}
.h9{height:210.672000px;}
.he{height:258.552000px;}
.h4{height:564.973920px;}
.hc{height:2683.980000px;}
.h8{height:4021.740000px;}
.h0{height:5056.200000px;}
.h1{height:5056.500000px;}
.w4{width:1619.460000px;}
.w3{width:1619.640000px;}
.w2{width:3576.419947px;}
.w0{width:3576.420000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x8{left:10.905000px;}
.x7{left:161.460000px;}
.x4{left:172.364947px;}
.x1e{left:201.209947px;}
.x9{left:212.864947px;}
.xb{left:226.364947px;}
.x1d{left:258.449947px;}
.x1f{left:265.109947px;}
.xd{left:266.864947px;}
.xa{left:360.510000px;}
.x33{left:364.139947px;}
.x5{left:494.249947px;}
.x27{left:657.074947px;}
.x29{left:662.294947px;}
.x28{left:679.034947px;}
.x6{left:706.109947px;}
.x1a{left:837.869947px;}
.x1c{left:862.349947px;}
.x1b{left:921.929947px;}
.xc{left:926.100000px;}
.x2{left:941.609947px;}
.x2d{left:1069.769947px;}
.x2f{left:1094.834947px;}
.x2e{left:1145.594947px;}
.x3{left:1216.409947px;}
.x1{left:1275.404947px;}
.x20{left:1348.559947px;}
.x21{left:1393.199947px;}
.x2a{left:1515.809947px;}
.x2b{left:1559.189947px;}
.x2c{left:1567.829947px;}
.xe{left:1780.920000px;}
.xf{left:1832.369947px;}
.x32{left:1939.604947px;}
.x30{left:1945.364947px;}
.x31{left:1977.404947px;}
.x12{left:2190.089947px;}
.x10{left:2214.929947px;}
.x11{left:2233.469947px;}
.x26{left:2637.644947px;}
.x25{left:2665.904947px;}
.x23{left:2681.924947px;}
.x22{left:2683.184947px;}
.x24{left:2690.024947px;}
.x13{left:2831.219947px;}
.x14{left:2843.999947px;}
.x15{left:2866.319947px;}
.x16{left:2885.039947px;}
.x34{left:2916.869947px;}
.x19{left:3040.949947px;}
.x17{left:3107.369947px;}
.x18{left:3133.829947px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:35.317760pt;}
.ls5{letter-spacing:68.189867pt;}
.ls4{letter-spacing:68.234667pt;}
.ls2{letter-spacing:91.763200pt;}
.ls1{letter-spacing:91.808000pt;}
.ls3{letter-spacing:91.914667pt;}
.ws4{word-spacing:-68.544000pt;}
.ws5{word-spacing:-49.931136pt;}
.ws2{word-spacing:-49.896960pt;}
.ws3{word-spacing:-45.624960pt;}
.ws1{word-spacing:-39.815040pt;}
.ws0{word-spacing:-31.613440pt;}
.ws6{word-spacing:0.000000pt;}
._2{margin-left:-0.931840pt;}
._1{width:0.931840pt;}
._0{width:2.129920pt;}
._4{width:3.246080pt;}
._3{width:55.663360pt;}
.fs0{font-size:133.120000pt;}
.fs9{font-size:133.248000pt;}
.fs4{font-size:149.120000pt;}
.fs5{font-size:149.248000pt;}
.fs1{font-size:170.880000pt;}
.fs6{font-size:186.880000pt;}
.fs8{font-size:187.008000pt;}
.fs3{font-size:197.120000pt;}
.fs7{font-size:288.000000pt;}
.fs2{font-size:533.120000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:47.904000pt;}
.y2{bottom:168.160000pt;}
.y1{bottom:208.160000pt;}
.y3{bottom:301.893333pt;}
.y57{bottom:574.213333pt;}
.y56{bottom:618.853333pt;}
.y55{bottom:663.813333pt;}
.y54{bottom:753.253333pt;}
.y53{bottom:798.053333pt;}
.y52{bottom:887.680000pt;}
.ye{bottom:919.520000pt;}
.y51{bottom:932.480000pt;}
.y50{bottom:977.280000pt;}
.y4f{bottom:1067.040000pt;}
.y26{bottom:1106.400000pt;}
.y4e{bottom:1111.840000pt;}
.y24{bottom:1151.040000pt;}
.y58{bottom:1185.253333pt;}
.y23{bottom:1240.800000pt;}
.y22{bottom:1317.600000pt;}
.y4d{bottom:1445.946667pt;}
.y3c{bottom:1470.653333pt;}
.y37{bottom:1488.546667pt;}
.y4c{bottom:1502.106667pt;}
.y30{bottom:1506.466667pt;}
.y3b{bottom:1526.813333pt;}
.y36{bottom:1544.706667pt;}
.y4b{bottom:1558.106667pt;}
.y2f{bottom:1562.626667pt;}
.y35{bottom:1600.706667pt;}
.y2e{bottom:1618.626667pt;}
.y34{bottom:1656.706667pt;}
.y2d{bottom:1674.626667pt;}
.y47{bottom:1844.253333pt;}
.y41{bottom:1844.866667pt;}
.y4a{bottom:1869.253333pt;}
.y44{bottom:1873.693333pt;}
.y2c{bottom:1876.293333pt;}
.y3a{bottom:1877.146667pt;}
.y33{bottom:1894.586667pt;}
.y40{bottom:1896.226667pt;}
.y49{bottom:1925.413333pt;}
.y43{bottom:1929.853333pt;}
.y46{bottom:1930.973333pt;}
.y1e{bottom:1931.973333pt;}
.y2b{bottom:1932.453333pt;}
.y39{bottom:1933.306667pt;}
.y3f{bottom:1947.426667pt;}
.y32{bottom:1950.746667pt;}
.y48{bottom:1981.413333pt;}
.y42{bottom:1985.853333pt;}
.y2a{bottom:1988.453333pt;}
.y38{bottom:1989.306667pt;}
.y3e{bottom:1998.466667pt;}
.y31{bottom:2006.746667pt;}
.y45{bottom:2017.373333pt;}
.y1b{bottom:2021.573333pt;}
.y3d{bottom:2049.826667pt;}
.y21{bottom:2058.720000pt;}
.y16{bottom:2200.800000pt;}
.y14{bottom:2290.400000pt;}
.y29{bottom:2306.880000pt;}
.y10{bottom:2380.000000pt;}
.yf{bottom:2456.800000pt;}
.yd{bottom:2515.200000pt;}
.yc{bottom:2560.000000pt;}
.yb{bottom:2649.600000pt;}
.ya{bottom:2694.400000pt;}
.y20{bottom:2806.533333pt;}
.y1f{bottom:2851.493333pt;}
.y1d{bottom:2896.133333pt;}
.y1c{bottom:2941.093333pt;}
.y1a{bottom:2985.733333pt;}
.y19{bottom:3030.720000pt;}
.y18{bottom:3075.360000pt;}
.y28{bottom:3120.160000pt;}
.y17{bottom:3120.320000pt;}
.y15{bottom:3164.960000pt;}
.y27{bottom:3165.120000pt;}
.y25{bottom:3209.760000pt;}
.y13{bottom:3209.920000pt;}
.y12{bottom:3254.560000pt;}
.y11{bottom:3299.520000pt;}
.y9{bottom:3484.186667pt;}
.y8{bottom:3533.466667pt;}
.y7{bottom:3582.746667pt;}
.y6{bottom:3640.186667pt;}
.y5{bottom:3839.586667pt;}
.y4{bottom:4028.133333pt;}
.ha{height:108.563437pt;}
.h2{height:125.399040pt;}
.h10{height:125.519616pt;}
.h6{height:140.471040pt;}
.hb{height:140.591616pt;}
.h7{height:141.664000pt;}
.h3{height:160.968960pt;}
.hd{height:176.040960pt;}
.hf{height:176.161536pt;}
.h5{height:185.687040pt;}
.h9{height:187.264000pt;}
.he{height:229.824000pt;}
.h4{height:502.199040pt;}
.hc{height:2385.760000pt;}
.h8{height:3574.880000pt;}
.h0{height:4494.400000pt;}
.h1{height:4494.666667pt;}
.w4{width:1439.520000pt;}
.w3{width:1439.680000pt;}
.w2{width:3179.039953pt;}
.w0{width:3179.040000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x8{left:9.693333pt;}
.x7{left:143.520000pt;}
.x4{left:153.213286pt;}
.x1e{left:178.853286pt;}
.x9{left:189.213286pt;}
.xb{left:201.213286pt;}
.x1d{left:229.733286pt;}
.x1f{left:235.653286pt;}
.xd{left:237.213286pt;}
.xa{left:320.453333pt;}
.x33{left:323.679953pt;}
.x5{left:439.333286pt;}
.x27{left:584.066619pt;}
.x29{left:588.706619pt;}
.x28{left:603.586619pt;}
.x6{left:627.653286pt;}
.x1a{left:744.773286pt;}
.x1c{left:766.533286pt;}
.x1b{left:819.493286pt;}
.xc{left:823.200000pt;}
.x2{left:836.986619pt;}
.x2d{left:950.906619pt;}
.x2f{left:973.186619pt;}
.x2e{left:1018.306619pt;}
.x3{left:1081.253286pt;}
.x1{left:1133.693286pt;}
.x20{left:1198.719953pt;}
.x21{left:1238.399953pt;}
.x2a{left:1347.386619pt;}
.x2b{left:1385.946619pt;}
.x2c{left:1393.626619pt;}
.xe{left:1583.040000pt;}
.xf{left:1628.773286pt;}
.x32{left:1724.093286pt;}
.x30{left:1729.213286pt;}
.x31{left:1757.693286pt;}
.x12{left:1946.746619pt;}
.x10{left:1968.826619pt;}
.x11{left:1985.306619pt;}
.x26{left:2344.573286pt;}
.x25{left:2369.693286pt;}
.x23{left:2383.933286pt;}
.x22{left:2385.053286pt;}
.x24{left:2391.133286pt;}
.x13{left:2516.639953pt;}
.x14{left:2527.999953pt;}
.x15{left:2547.839953pt;}
.x16{left:2564.479953pt;}
.x34{left:2592.773286pt;}
.x19{left:2703.066619pt;}
.x17{left:2762.106619pt;}
.x18{left:2785.626619pt;}
}




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