
    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_e5083c858b48d2ff25bef5df.woff')format("woff");}.ff1{font-family:ff1;line-height:1.131000;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_0e916782d6bd9ea686629f77.woff')format("woff");}.ff2{font-family:ff2;line-height:1.207000;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_472216c7abd038d0c89bd2d3.woff')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_0adf52d11492d10ab34edd23.woff')format("woff");}.ff4{font-family:ff4;line-height:1.207000;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_707f9538e898d93fa01fc0c5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.098000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:81.000000px;}
.lsa{letter-spacing:-1.020000px;}
.ls9{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.232800px;}
.ls2{letter-spacing:0.270000px;}
.lsf{letter-spacing:0.382800px;}
.ls14{letter-spacing:0.648000px;}
.ls11{letter-spacing:0.738000px;}
.ls13{letter-spacing:0.798000px;}
.ls12{letter-spacing:0.810000px;}
.lse{letter-spacing:0.900000px;}
.ls10{letter-spacing:1.686000px;}
.lsc{letter-spacing:2.130000px;}
.lsd{letter-spacing:2.310000px;}
.ls8{letter-spacing:51.525000px;}
.ls1{letter-spacing:158.580000px;}
.ls7{letter-spacing:194.527500px;}
.ls6{letter-spacing:194.580000px;}
.ls0{letter-spacing:229.620000px;}
.ls5{letter-spacing:229.650000px;}
.ls4{letter-spacing:337.777500px;}
.ls3{letter-spacing:337.830000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-118.800000px;}
.ws6{word-spacing:-67.500000px;}
.ws5{word-spacing:-64.800000px;}
.wsa{word-spacing:-57.600000px;}
.ws8{word-spacing:-54.030000px;}
.ws7{word-spacing:-54.000000px;}
.wsb{word-spacing:-51.840000px;}
.ws11{word-spacing:-43.200000px;}
.ws12{word-spacing:-41.472000px;}
.ws4{word-spacing:-6.990000px;}
.wsd{word-spacing:-5.778000px;}
.ws9{word-spacing:-2.205000px;}
.wsc{word-spacing:-1.132500px;}
.ws13{word-spacing:0.000000px;}
.ws0{word-spacing:0.798000px;}
.ws3{word-spacing:0.930000px;}
.ws10{word-spacing:2.332500px;}
.ws1{word-spacing:2.616000px;}
.wsf{word-spacing:174.300000px;}
.wse{word-spacing:174.374100px;}
._1{margin-left:-3.564000px;}
._2{margin-left:-1.782000px;}
._0{width:1.188000px;}
._3{width:2.376000px;}
._5{width:3.698400px;}
._b{width:4.743600px;}
._8{width:5.941200px;}
._d{width:8.256000px;}
._6{width:53.014050px;}
._7{width:57.051600px;}
._c{width:69.714000px;}
._a{width:117.972000px;}
._4{width:120.575850px;}
._9{width:158.550000px;}
.fc3{color:rgb(89,173,196);}
.fc1{color:rgb(21,96,130);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:180.000000px;}
.fs9{font-size:216.000000px;}
.fsa{font-size:216.150000px;}
.fsb{font-size:238.500000px;}
.fsc{font-size:238.650000px;}
.fs4{font-size:270.000000px;}
.fs2{font-size:270.150000px;}
.fs7{font-size:288.000000px;}
.fs8{font-size:288.150000px;}
.fs5{font-size:324.000000px;}
.fs6{font-size:337.500000px;}
.fs0{font-size:594.000000px;}
.fs1{font-size:594.150000px;}
.y0{bottom:0.000000px;}
.y48{bottom:55.537500px;}
.y47{bottom:119.700000px;}
.y46{bottom:184.950000px;}
.y45{bottom:249.075000px;}
.y44{bottom:314.325000px;}
.y43{bottom:379.575000px;}
.y4d{bottom:422.145000px;}
.y42{bottom:443.700000px;}
.y4c{bottom:494.145000px;}
.y41{bottom:508.995000px;}
.y4b{bottom:566.130000px;}
.y40{bottom:573.120000px;}
.y4a{bottom:638.145000px;}
.y3f{bottom:638.355000px;}
.y3e{bottom:703.605000px;}
.y49{bottom:710.145000px;}
.y3d{bottom:767.730000px;}
.y6{bottom:779.295000px;}
.y3c{bottom:833.025000px;}
.y3b{bottom:897.150000px;}
.y38{bottom:920.325000px;}
.y3a{bottom:962.400000px;}
.y37{bottom:1001.325000px;}
.y39{bottom:1055.775000px;}
.y36{bottom:1082.325000px;}
.y35{bottom:1163.325000px;}
.y23{bottom:1220.850000px;}
.y34{bottom:1244.355000px;}
.y22{bottom:1306.350000px;}
.y33{bottom:1325.355000px;}
.y21{bottom:1392.975000px;}
.y32{bottom:1406.355000px;}
.y20{bottom:1479.600000px;}
.y31{bottom:1568.355000px;}
.y1f{bottom:1610.145000px;}
.y30{bottom:1649.400000px;}
.y1e{bottom:1691.145000px;}
.y2f{bottom:1730.400000px;}
.y1d{bottom:1772.145000px;}
.y2e{bottom:1811.400000px;}
.y1c{bottom:1854.270000px;}
.y2d{bottom:1892.400000px;}
.y1b{bottom:1935.300000px;}
.y2c{bottom:1973.445000px;}
.y1a{bottom:2016.300000px;}
.y2b{bottom:2054.445000px;}
.y19{bottom:2098.425000px;}
.y2a{bottom:2135.445000px;}
.y18{bottom:2179.425000px;}
.y29{bottom:2216.445000px;}
.y17{bottom:2260.425000px;}
.y28{bottom:2297.445000px;}
.y16{bottom:2342.580000px;}
.y27{bottom:2378.475000px;}
.y26{bottom:2459.475000px;}
.y25{bottom:2581.500000px;}
.y15{bottom:3482.325000px;}
.y14{bottom:3568.950000px;}
.y24{bottom:3575.550000px;}
.yd{bottom:3608.925000px;}
.y13{bottom:3655.575000px;}
.yc{bottom:3689.925000px;}
.y12{bottom:3741.105000px;}
.yb{bottom:3770.925000px;}
.y11{bottom:3827.730000px;}
.ya{bottom:3851.925000px;}
.y10{bottom:3914.355000px;}
.y9{bottom:3932.925000px;}
.yf{bottom:4000.980000px;}
.y8{bottom:4013.955000px;}
.ye{bottom:4098.675000px;}
.y7{bottom:4102.455000px;}
.y5{bottom:4353.855000px;}
.y4{bottom:4434.855000px;}
.y3{bottom:4515.900000px;}
.y2{bottom:4695.375000px;}
.y1{bottom:4873.125000px;}
.hc{height:197.640000px;}
.hd{height:197.777250px;}
.he{height:218.227500px;}
.hf{height:218.364750px;}
.hb{height:231.120000px;}
.ha{height:231.248400px;}
.h7{height:246.528000px;}
.h4{height:247.050000px;}
.h3{height:247.187250px;}
.h8{height:263.520000px;}
.h9{height:263.657250px;}
.h5{height:277.344000px;}
.h6{height:288.900000px;}
.h1{height:508.464000px;}
.h2{height:508.592400px;}
.h0{height:5055.750000px;}
.w2{width:3576.374947px;}
.w0{width:3576.375000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x1{left:58.949947px;}
.x4{left:73.049947px;}
.x3{left:77.962447px;}
.x9{left:84.187447px;}
.x10{left:118.199947px;}
.xb{left:138.187447px;}
.x11{left:151.949947px;}
.x5{left:154.079947px;}
.xd{left:165.224947px;}
.xa{left:192.224947px;}
.xc{left:246.269947px;}
.x8{left:320.999947px;}
.x2{left:526.649947px;}
.x6{left:1799.549947px;}
.x7{left:1821.704947px;}
.xf{left:1889.249947px;}
.xe{left:2313.374947px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:72.000000pt;}
.lsa{letter-spacing:-0.906667pt;}
.ls9{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.206933pt;}
.ls2{letter-spacing:0.240000pt;}
.lsf{letter-spacing:0.340267pt;}
.ls14{letter-spacing:0.576000pt;}
.ls11{letter-spacing:0.656000pt;}
.ls13{letter-spacing:0.709333pt;}
.ls12{letter-spacing:0.720000pt;}
.lse{letter-spacing:0.800000pt;}
.ls10{letter-spacing:1.498667pt;}
.lsc{letter-spacing:1.893333pt;}
.lsd{letter-spacing:2.053333pt;}
.ls8{letter-spacing:45.800000pt;}
.ls1{letter-spacing:140.960000pt;}
.ls7{letter-spacing:172.913333pt;}
.ls6{letter-spacing:172.960000pt;}
.ls0{letter-spacing:204.106667pt;}
.ls5{letter-spacing:204.133333pt;}
.ls4{letter-spacing:300.246667pt;}
.ls3{letter-spacing:300.293333pt;}
.ws2{word-spacing:-105.600000pt;}
.ws6{word-spacing:-60.000000pt;}
.ws5{word-spacing:-57.600000pt;}
.wsa{word-spacing:-51.200000pt;}
.ws8{word-spacing:-48.026667pt;}
.ws7{word-spacing:-48.000000pt;}
.wsb{word-spacing:-46.080000pt;}
.ws11{word-spacing:-38.400000pt;}
.ws12{word-spacing:-36.864000pt;}
.ws4{word-spacing:-6.213333pt;}
.wsd{word-spacing:-5.136000pt;}
.ws9{word-spacing:-1.960000pt;}
.wsc{word-spacing:-1.006667pt;}
.ws13{word-spacing:0.000000pt;}
.ws0{word-spacing:0.709333pt;}
.ws3{word-spacing:0.826667pt;}
.ws10{word-spacing:2.073333pt;}
.ws1{word-spacing:2.325333pt;}
.wsf{word-spacing:154.933333pt;}
.wse{word-spacing:154.999200pt;}
._1{margin-left:-3.168000pt;}
._2{margin-left:-1.584000pt;}
._0{width:1.056000pt;}
._3{width:2.112000pt;}
._5{width:3.287467pt;}
._b{width:4.216533pt;}
._8{width:5.281067pt;}
._d{width:7.338667pt;}
._6{width:47.123600pt;}
._7{width:50.712533pt;}
._c{width:61.968000pt;}
._a{width:104.864000pt;}
._4{width:107.178533pt;}
._9{width:140.933333pt;}
.fs3{font-size:160.000000pt;}
.fs9{font-size:192.000000pt;}
.fsa{font-size:192.133333pt;}
.fsb{font-size:212.000000pt;}
.fsc{font-size:212.133333pt;}
.fs4{font-size:240.000000pt;}
.fs2{font-size:240.133333pt;}
.fs7{font-size:256.000000pt;}
.fs8{font-size:256.133333pt;}
.fs5{font-size:288.000000pt;}
.fs6{font-size:300.000000pt;}
.fs0{font-size:528.000000pt;}
.fs1{font-size:528.133333pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:49.366667pt;}
.y47{bottom:106.400000pt;}
.y46{bottom:164.400000pt;}
.y45{bottom:221.400000pt;}
.y44{bottom:279.400000pt;}
.y43{bottom:337.400000pt;}
.y4d{bottom:375.240000pt;}
.y42{bottom:394.400000pt;}
.y4c{bottom:439.240000pt;}
.y41{bottom:452.440000pt;}
.y4b{bottom:503.226667pt;}
.y40{bottom:509.440000pt;}
.y4a{bottom:567.240000pt;}
.y3f{bottom:567.426667pt;}
.y3e{bottom:625.426667pt;}
.y49{bottom:631.240000pt;}
.y3d{bottom:682.426667pt;}
.y6{bottom:692.706667pt;}
.y3c{bottom:740.466667pt;}
.y3b{bottom:797.466667pt;}
.y38{bottom:818.066667pt;}
.y3a{bottom:855.466667pt;}
.y37{bottom:890.066667pt;}
.y39{bottom:938.466667pt;}
.y36{bottom:962.066667pt;}
.y35{bottom:1034.066667pt;}
.y23{bottom:1085.200000pt;}
.y34{bottom:1106.093333pt;}
.y22{bottom:1161.200000pt;}
.y33{bottom:1178.093333pt;}
.y21{bottom:1238.200000pt;}
.y32{bottom:1250.093333pt;}
.y20{bottom:1315.200000pt;}
.y31{bottom:1394.093333pt;}
.y1f{bottom:1431.240000pt;}
.y30{bottom:1466.133333pt;}
.y1e{bottom:1503.240000pt;}
.y2f{bottom:1538.133333pt;}
.y1d{bottom:1575.240000pt;}
.y2e{bottom:1610.133333pt;}
.y1c{bottom:1648.240000pt;}
.y2d{bottom:1682.133333pt;}
.y1b{bottom:1720.266667pt;}
.y2c{bottom:1754.173333pt;}
.y1a{bottom:1792.266667pt;}
.y2b{bottom:1826.173333pt;}
.y19{bottom:1865.266667pt;}
.y2a{bottom:1898.173333pt;}
.y18{bottom:1937.266667pt;}
.y29{bottom:1970.173333pt;}
.y17{bottom:2009.266667pt;}
.y28{bottom:2042.173333pt;}
.y16{bottom:2082.293333pt;}
.y27{bottom:2114.200000pt;}
.y26{bottom:2186.200000pt;}
.y25{bottom:2294.666667pt;}
.y15{bottom:3095.400000pt;}
.y14{bottom:3172.400000pt;}
.y24{bottom:3178.266667pt;}
.yd{bottom:3207.933333pt;}
.y13{bottom:3249.400000pt;}
.yc{bottom:3279.933333pt;}
.y12{bottom:3325.426667pt;}
.yb{bottom:3351.933333pt;}
.y11{bottom:3402.426667pt;}
.ya{bottom:3423.933333pt;}
.y10{bottom:3479.426667pt;}
.y9{bottom:3495.933333pt;}
.yf{bottom:3556.426667pt;}
.y8{bottom:3567.960000pt;}
.ye{bottom:3643.266667pt;}
.y7{bottom:3646.626667pt;}
.y5{bottom:3870.093333pt;}
.y4{bottom:3942.093333pt;}
.y3{bottom:4014.133333pt;}
.y2{bottom:4173.666667pt;}
.y1{bottom:4331.666667pt;}
.hc{height:175.680000pt;}
.hd{height:175.802000pt;}
.he{height:193.980000pt;}
.hf{height:194.102000pt;}
.hb{height:205.440000pt;}
.ha{height:205.554133pt;}
.h7{height:219.136000pt;}
.h4{height:219.600000pt;}
.h3{height:219.722000pt;}
.h8{height:234.240000pt;}
.h9{height:234.362000pt;}
.h5{height:246.528000pt;}
.h6{height:256.800000pt;}
.h1{height:451.968000pt;}
.h2{height:452.082133pt;}
.h0{height:4494.000000pt;}
.w2{width:3178.999953pt;}
.w0{width:3179.000000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x1{left:52.399953pt;}
.x4{left:64.933286pt;}
.x3{left:69.299953pt;}
.x9{left:74.833286pt;}
.x10{left:105.066619pt;}
.xb{left:122.833286pt;}
.x11{left:135.066619pt;}
.x5{left:136.959953pt;}
.xd{left:146.866619pt;}
.xa{left:170.866619pt;}
.xc{left:218.906619pt;}
.x8{left:285.333286pt;}
.x2{left:468.133286pt;}
.x6{left:1599.599953pt;}
.x7{left:1619.293286pt;}
.xf{left:1679.333286pt;}
.xe{left:2056.333286pt;}
}




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