
    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_eda63b51827af173ad82457f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_b179e8f2c4127ef3afbbabb4.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5603a369f5b79a3b853b2194.woff')format("woff");}.ff3{font-family:ff3;line-height:1.098145;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_cd3205e33c26a5c7e40d1306.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_1400b4e0625086dda5e8664c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.098145;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_9a91869ab8dbc00fde500c8c.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d34dbf288e06aaa6a44f1315.woff')format("woff");}.ff7{font-family:ff7;line-height:1.100098;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:46.080000px;}
.ls8{letter-spacing:-0.040320px;}
.ls7{letter-spacing:-0.014400px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.028800px;}
.ls5{letter-spacing:0.043200px;}
.ls0{letter-spacing:0.057600px;}
.ls1{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.360000px;}
.ls3{letter-spacing:85.356000px;}
.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:-38.160000px;}
.ws1{word-spacing:-35.735040px;}
.ws3{word-spacing:-25.380000px;}
.ws7{word-spacing:-23.940000px;}
.ws2{word-spacing:-19.192320px;}
.ws0{word-spacing:-15.840000px;}
.ws6{word-spacing:-1.627200px;}
.ws8{word-spacing:-1.094400px;}
.ws5{word-spacing:-0.576000px;}
.wsa{word-spacing:0.000000px;}
.ws9{word-spacing:4432.006560px;}
._b{margin-left:-6.894720px;}
._1{margin-left:-2.980800px;}
._0{margin-left:-1.425600px;}
._3{width:1.773600px;}
._4{width:2.851200px;}
._5{width:4.743840px;}
._7{width:15.444960px;}
._6{width:17.161920px;}
._9{width:21.815040px;}
._8{width:22.915200px;}
._a{width:24.521760px;}
._2{width:31.116000px;}
.fc1{color:rgb(58,87,80);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:63.360000px;}
.fs5{font-size:67.680000px;}
.fsa{font-size:84.960000px;}
.fsb{font-size:89.280000px;}
.fs9{font-size:95.760000px;}
.fs7{font-size:97.920000px;}
.fs4{font-size:101.520000px;}
.fs8{font-size:118.800000px;}
.fs0{font-size:129.600000px;}
.fs3{font-size:152.640000px;}
.fs1{font-size:169.920000px;}
.fs6{font-size:192.240000px;}
.fsc{font-size:254.880000px;}
.y0{bottom:0.000000px;}
.y12{bottom:15.912000px;}
.y11{bottom:34.992000px;}
.y10{bottom:73.152000px;}
.yf{bottom:92.232000px;}
.ye{bottom:111.312000px;}
.yd{bottom:130.392000px;}
.yc{bottom:149.472000px;}
.yb{bottom:168.555000px;}
.ya{bottom:187.815000px;}
.y9{bottom:206.895000px;}
.y8{bottom:246.060000px;}
.y48{bottom:330.195000px;}
.y47{bottom:394.455000px;}
.y46{bottom:458.535000px;}
.y53{bottom:523.620000px;}
.y3b{bottom:601.455000px;}
.y3a{bottom:630.615000px;}
.y45{bottom:767.085000px;}
.y44{bottom:802.770000px;}
.y43{bottom:838.410000px;}
.y42{bottom:874.050000px;}
.y41{bottom:909.690000px;}
.y40{bottom:980.970000px;}
.y3f{bottom:1016.610000px;}
.y3e{bottom:1052.250000px;}
.y3d{bottom:1163.955000px;}
.y26{bottom:1179.075000px;}
.y3c{bottom:1189.335000px;}
.y39{bottom:1339.410000px;}
.y38{bottom:1375.050000px;}
.y37{bottom:1410.690000px;}
.y36{bottom:1446.330000px;}
.y35{bottom:1481.970000px;}
.y34{bottom:1553.295000px;}
.y33{bottom:1588.935000px;}
.y32{bottom:1624.575000px;}
.y25{bottom:1843.170000px;}
.y31{bottom:1881.540000px;}
.y30{bottom:1910.880000px;}
.y2f{bottom:1940.040000px;}
.y2e{bottom:1969.380000px;}
.y2d{bottom:1998.720000px;}
.y24{bottom:2018.265000px;}
.y2c{bottom:2027.880000px;}
.y23{bottom:2057.145000px;}
.y22{bottom:2095.845000px;}
.y21{bottom:2134.725000px;}
.y20{bottom:2173.605000px;}
.y1f{bottom:2224.365000px;}
.y1e{bottom:2263.110000px;}
.y1d{bottom:2301.990000px;}
.y1c{bottom:2340.870000px;}
.y2b{bottom:2368.545000px;}
.y1b{bottom:2391.630000px;}
.y2a{bottom:2397.705000px;}
.y29{bottom:2427.045000px;}
.y1a{bottom:2430.330000px;}
.y28{bottom:2456.385000px;}
.y19{bottom:2469.210000px;}
.y27{bottom:2485.545000px;}
.y18{bottom:2508.090000px;}
.y17{bottom:2546.790000px;}
.y52{bottom:2634.945000px;}
.y7{bottom:2710.695000px;}
.y6{bottom:2804.910000px;}
.y4e{bottom:2817.000000px;}
.y4d{bottom:2843.640000px;}
.y5{bottom:2863.230000px;}
.y4c{bottom:2870.460000px;}
.y4b{bottom:2897.100000px;}
.y4{bottom:2921.370000px;}
.y4a{bottom:2923.920000px;}
.y49{bottom:2950.590000px;}
.y3{bottom:2979.510000px;}
.y2{bottom:3037.830000px;}
.y1{bottom:3095.970000px;}
.y51{bottom:3180.495000px;}
.y16{bottom:3262.785000px;}
.y15{bottom:3283.125000px;}
.y14{bottom:3321.465000px;}
.y13{bottom:3367.185000px;}
.y50{bottom:3419.790000px;}
.y4f{bottom:3496.110000px;}
.h6{height:44.704687px;}
.h4{height:45.818438px;}
.h5{height:55.904063px;}
.h8{height:59.715703px;}
.hd{height:61.438359px;}
.he{height:64.562344px;}
.hb{height:70.810312px;}
.hc{height:85.909570px;}
.ha{height:91.441406px;}
.h2{height:93.719531px;}
.h7{height:119.493633px;}
.h3{height:119.889844px;}
.h9{height:139.955977px;}
.hf{height:220.530937px;}
.h1{height:3574.500000px;}
.h0{height:3574.800000px;}
.w2{width:2527.199962px;}
.w0{width:2527.200000px;}
.w1{width:2527.500000px;}
.x0{left:0.000000px;}
.x15{left:33.371962px;}
.x4{left:40.319962px;}
.x1{left:58.715962px;}
.xc{left:67.391962px;}
.xb{left:68.615962px;}
.x8{left:84.743962px;}
.x5{left:104.903962px;}
.x7{left:349.709962px;}
.x19{left:520.484962px;}
.x17{left:582.449962px;}
.x9{left:783.614962px;}
.xa{left:821.774962px;}
.x3{left:942.404962px;}
.x18{left:1021.064962px;}
.x1a{left:1142.459962px;}
.x6{left:1171.649962px;}
.x2{left:1177.739962px;}
.x13{left:1321.454962px;}
.x11{left:1340.999962px;}
.x12{left:1612.799962px;}
.x14{left:1780.124962px;}
.x16{left:1902.449962px;}
.xf{left:2160.539962px;}
.xe{left:2200.529962px;}
.xd{left:2202.764962px;}
.x10{left:2228.069962px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:40.960000pt;}
.ls8{letter-spacing:-0.035840pt;}
.ls7{letter-spacing:-0.012800pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.025600pt;}
.ls5{letter-spacing:0.038400pt;}
.ls0{letter-spacing:0.051200pt;}
.ls1{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.320000pt;}
.ls3{letter-spacing:75.872000pt;}
.ws4{word-spacing:-33.920000pt;}
.ws1{word-spacing:-31.764480pt;}
.ws3{word-spacing:-22.560000pt;}
.ws7{word-spacing:-21.280000pt;}
.ws2{word-spacing:-17.059840pt;}
.ws0{word-spacing:-14.080000pt;}
.ws6{word-spacing:-1.446400pt;}
.ws8{word-spacing:-0.972800pt;}
.ws5{word-spacing:-0.512000pt;}
.wsa{word-spacing:0.000000pt;}
.ws9{word-spacing:3939.561387pt;}
._b{margin-left:-6.128640pt;}
._1{margin-left:-2.649600pt;}
._0{margin-left:-1.267200pt;}
._3{width:1.576533pt;}
._4{width:2.534400pt;}
._5{width:4.216747pt;}
._7{width:13.728853pt;}
._6{width:15.255040pt;}
._9{width:19.391147pt;}
._8{width:20.369067pt;}
._a{width:21.797120pt;}
._2{width:27.658667pt;}
.fs2{font-size:56.320000pt;}
.fs5{font-size:60.160000pt;}
.fsa{font-size:75.520000pt;}
.fsb{font-size:79.360000pt;}
.fs9{font-size:85.120000pt;}
.fs7{font-size:87.040000pt;}
.fs4{font-size:90.240000pt;}
.fs8{font-size:105.600000pt;}
.fs0{font-size:115.200000pt;}
.fs3{font-size:135.680000pt;}
.fs1{font-size:151.040000pt;}
.fs6{font-size:170.880000pt;}
.fsc{font-size:226.560000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:14.144000pt;}
.y11{bottom:31.104000pt;}
.y10{bottom:65.024000pt;}
.yf{bottom:81.984000pt;}
.ye{bottom:98.944000pt;}
.yd{bottom:115.904000pt;}
.yc{bottom:132.864000pt;}
.yb{bottom:149.826667pt;}
.ya{bottom:166.946667pt;}
.y9{bottom:183.906667pt;}
.y8{bottom:218.720000pt;}
.y48{bottom:293.506667pt;}
.y47{bottom:350.626667pt;}
.y46{bottom:407.586667pt;}
.y53{bottom:465.440000pt;}
.y3b{bottom:534.626667pt;}
.y3a{bottom:560.546667pt;}
.y45{bottom:681.853333pt;}
.y44{bottom:713.573333pt;}
.y43{bottom:745.253333pt;}
.y42{bottom:776.933333pt;}
.y41{bottom:808.613333pt;}
.y40{bottom:871.973333pt;}
.y3f{bottom:903.653333pt;}
.y3e{bottom:935.333333pt;}
.y3d{bottom:1034.626667pt;}
.y26{bottom:1048.066667pt;}
.y3c{bottom:1057.186667pt;}
.y39{bottom:1190.586667pt;}
.y38{bottom:1222.266667pt;}
.y37{bottom:1253.946667pt;}
.y36{bottom:1285.626667pt;}
.y35{bottom:1317.306667pt;}
.y34{bottom:1380.706667pt;}
.y33{bottom:1412.386667pt;}
.y32{bottom:1444.066667pt;}
.y25{bottom:1638.373333pt;}
.y31{bottom:1672.480000pt;}
.y30{bottom:1698.560000pt;}
.y2f{bottom:1724.480000pt;}
.y2e{bottom:1750.560000pt;}
.y2d{bottom:1776.640000pt;}
.y24{bottom:1794.013333pt;}
.y2c{bottom:1802.560000pt;}
.y23{bottom:1828.573333pt;}
.y22{bottom:1862.973333pt;}
.y21{bottom:1897.533333pt;}
.y20{bottom:1932.093333pt;}
.y1f{bottom:1977.213333pt;}
.y1e{bottom:2011.653333pt;}
.y1d{bottom:2046.213333pt;}
.y1c{bottom:2080.773333pt;}
.y2b{bottom:2105.373333pt;}
.y1b{bottom:2125.893333pt;}
.y2a{bottom:2131.293333pt;}
.y29{bottom:2157.373333pt;}
.y1a{bottom:2160.293333pt;}
.y28{bottom:2183.453333pt;}
.y19{bottom:2194.853333pt;}
.y27{bottom:2209.373333pt;}
.y18{bottom:2229.413333pt;}
.y17{bottom:2263.813333pt;}
.y52{bottom:2342.173333pt;}
.y7{bottom:2409.506667pt;}
.y6{bottom:2493.253333pt;}
.y4e{bottom:2504.000000pt;}
.y4d{bottom:2527.680000pt;}
.y5{bottom:2545.093333pt;}
.y4c{bottom:2551.520000pt;}
.y4b{bottom:2575.200000pt;}
.y4{bottom:2596.773333pt;}
.y4a{bottom:2599.040000pt;}
.y49{bottom:2622.746667pt;}
.y3{bottom:2648.453333pt;}
.y2{bottom:2700.293333pt;}
.y1{bottom:2751.973333pt;}
.y51{bottom:2827.106667pt;}
.y16{bottom:2900.253333pt;}
.y15{bottom:2918.333333pt;}
.y14{bottom:2952.413333pt;}
.y13{bottom:2993.053333pt;}
.y50{bottom:3039.813333pt;}
.y4f{bottom:3107.653333pt;}
.h6{height:39.737500pt;}
.h4{height:40.727500pt;}
.h5{height:49.692500pt;}
.h8{height:53.080625pt;}
.hd{height:54.611875pt;}
.he{height:57.388750pt;}
.hb{height:62.942500pt;}
.hc{height:76.364063pt;}
.ha{height:81.281250pt;}
.h2{height:83.306250pt;}
.h7{height:106.216563pt;}
.h3{height:106.568750pt;}
.h9{height:124.405313pt;}
.hf{height:196.027500pt;}
.h1{height:3177.333333pt;}
.h0{height:3177.600000pt;}
.w2{width:2246.399967pt;}
.w0{width:2246.400000pt;}
.w1{width:2246.666667pt;}
.x0{left:0.000000pt;}
.x15{left:29.663967pt;}
.x4{left:35.839967pt;}
.x1{left:52.191967pt;}
.xc{left:59.903967pt;}
.xb{left:60.991967pt;}
.x8{left:75.327967pt;}
.x5{left:93.247967pt;}
.x7{left:310.853300pt;}
.x19{left:462.653300pt;}
.x17{left:517.733300pt;}
.x9{left:696.546633pt;}
.xa{left:730.466633pt;}
.x3{left:837.693300pt;}
.x18{left:907.613300pt;}
.x1a{left:1015.519967pt;}
.x6{left:1041.466633pt;}
.x2{left:1046.879967pt;}
.x13{left:1174.626633pt;}
.x11{left:1191.999967pt;}
.x12{left:1433.599967pt;}
.x14{left:1582.333300pt;}
.x16{left:1691.066633pt;}
.xf{left:1920.479967pt;}
.xe{left:1956.026633pt;}
.xd{left:1958.013300pt;}
.x10{left:1980.506633pt;}
}




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