
    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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_8ef6cf873087152ba97dcdc5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_dfdd776805a14934cc79f86d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_31fd7e1cb3657068e69a8cc4.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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:23.760000px;}
.ls2{letter-spacing:-1.008000px;}
.ls3{letter-spacing:-0.936000px;}
.ls1{letter-spacing:-0.216000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-12.060000px;}
.ws2{word-spacing:0.000000px;}
._b{margin-left:-4.464000px;}
._7{margin-left:-2.880000px;}
._0{margin-left:-1.263600px;}
._1{width:1.047600px;}
._c{width:2.088000px;}
._3{width:3.535200px;}
._2{width:4.944000px;}
._18{width:6.144000px;}
._10{width:7.887600px;}
._4{width:8.928000px;}
._5{width:10.080000px;}
._6{width:11.088000px;}
._a{width:12.144000px;}
._8{width:13.320000px;}
._9{width:14.367600px;}
._11{width:15.368400px;}
._1b{width:16.959600px;}
._d{width:19.080000px;}
._e{width:20.120400px;}
._15{width:21.384000px;}
._12{width:23.232000px;}
._1e{width:27.432000px;}
._16{width:28.440000px;}
._17{width:29.448000px;}
._1a{width:30.664800px;}
._1c{width:51.600000px;}
._14{width:70.560000px;}
._13{width:109.416000px;}
._1d{width:134.364000px;}
._19{width:191.496000px;}
._f{width:197.976000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y98{bottom:113.436000px;}
.y54{bottom:127.296000px;}
.y82{bottom:130.896000px;}
.y97{bottom:134.136000px;}
.y53{bottom:147.996000px;}
.y25{bottom:151.230000px;}
.y81{bottom:151.590000px;}
.y96{bottom:154.830000px;}
.y52{bottom:168.690000px;}
.y24{bottom:171.930000px;}
.y80{bottom:172.290000px;}
.y95{bottom:175.530000px;}
.y51{bottom:189.390000px;}
.y23{bottom:192.630000px;}
.y7f{bottom:192.990000px;}
.y94{bottom:196.230000px;}
.y50{bottom:210.090000px;}
.y7e{bottom:213.690000px;}
.y93{bottom:216.930000px;}
.y22{bottom:225.210000px;}
.y4f{bottom:230.790000px;}
.y7d{bottom:234.390000px;}
.y92{bottom:237.630000px;}
.y21{bottom:245.910000px;}
.y4e{bottom:251.490000px;}
.y7c{bottom:255.090000px;}
.y91{bottom:258.330000px;}
.y20{bottom:266.610000px;}
.y4d{bottom:272.190000px;}
.y7b{bottom:275.790000px;}
.y90{bottom:279.030000px;}
.y1f{bottom:287.310000px;}
.y4c{bottom:292.890000px;}
.y7a{bottom:296.490000px;}
.y1e{bottom:308.010000px;}
.y8f{bottom:311.790000px;}
.y4b{bottom:313.590000px;}
.y79{bottom:317.190000px;}
.y1d{bottom:328.710000px;}
.y8e{bottom:332.490000px;}
.y4a{bottom:334.290000px;}
.y78{bottom:337.935000px;}
.y1c{bottom:349.455000px;}
.y8d{bottom:353.235000px;}
.y49{bottom:354.855000px;}
.y77{bottom:358.635000px;}
.y1b{bottom:370.155000px;}
.y8c{bottom:373.935000px;}
.y48{bottom:375.735000px;}
.y76{bottom:379.335000px;}
.y1a{bottom:390.855000px;}
.y8b{bottom:394.635000px;}
.y75{bottom:400.035000px;}
.y19{bottom:411.555000px;}
.y8a{bottom:415.335000px;}
.y74{bottom:420.735000px;}
.y89{bottom:436.035000px;}
.y47{bottom:438.195000px;}
.y73{bottom:441.435000px;}
.y18{bottom:444.315000px;}
.y88{bottom:456.735000px;}
.y72{bottom:462.135000px;}
.y46{bottom:470.775000px;}
.y87{bottom:477.435000px;}
.y17{bottom:478.515000px;}
.y71{bottom:482.835000px;}
.y45{bottom:491.475000px;}
.y86{bottom:498.135000px;}
.y70{bottom:503.535000px;}
.y44{bottom:512.175000px;}
.y16{bottom:512.895000px;}
.y85{bottom:518.835000px;}
.y6f{bottom:524.235000px;}
.y43{bottom:532.875000px;}
.y84{bottom:539.535000px;}
.y15{bottom:547.275000px;}
.y42{bottom:553.575000px;}
.y83{bottom:560.235000px;}
.y14{bottom:569.595000px;}
.y41{bottom:574.275000px;}
.y6e{bottom:580.935000px;}
.y13{bottom:591.915000px;}
.y40{bottom:594.975000px;}
.y6d{bottom:601.635000px;}
.y12{bottom:614.265000px;}
.y3f{bottom:615.705000px;}
.y6c{bottom:622.365000px;}
.ya9{bottom:629.745000px;}
.y3e{bottom:636.405000px;}
.y11{bottom:636.585000px;}
.y6b{bottom:643.065000px;}
.y10{bottom:658.905000px;}
.ya8{bottom:662.505000px;}
.y6a{bottom:663.765000px;}
.y3d{bottom:669.165000px;}
.yf{bottom:681.405000px;}
.ya7{bottom:683.205000px;}
.y69{bottom:684.465000px;}
.y3c{bottom:689.865000px;}
.ye{bottom:703.725000px;}
.ya6{bottom:703.905000px;}
.y68{bottom:705.165000px;}
.y3b{bottom:710.565000px;}
.y67{bottom:725.865000px;}
.yd{bottom:726.045000px;}
.y3a{bottom:731.265000px;}
.ya5{bottom:736.665000px;}
.y66{bottom:746.565000px;}
.yc{bottom:748.365000px;}
.y39{bottom:751.965000px;}
.ya4{bottom:757.365000px;}
.y65{bottom:767.265000px;}
.yb{bottom:770.685000px;}
.y38{bottom:772.665000px;}
.ya3{bottom:778.065000px;}
.y64{bottom:787.965000px;}
.ya{bottom:793.005000px;}
.y37{bottom:793.365000px;}
.y63{bottom:808.665000px;}
.ya2{bottom:810.645000px;}
.y36{bottom:814.065000px;}
.y9{bottom:815.325000px;}
.y62{bottom:829.365000px;}
.ya1{bottom:831.345000px;}
.y35{bottom:834.765000px;}
.y8{bottom:837.645000px;}
.y61{bottom:850.065000px;}
.y34{bottom:855.465000px;}
.y7{bottom:859.965000px;}
.ya0{bottom:864.105000px;}
.y60{bottom:870.810000px;}
.y33{bottom:876.210000px;}
.y6{bottom:882.330000px;}
.y5f{bottom:891.510000px;}
.y9f{bottom:896.910000px;}
.y32{bottom:908.790000px;}
.y5e{bottom:912.210000px;}
.y5{bottom:915.090000px;}
.y9e{bottom:917.610000px;}
.y31{bottom:929.490000px;}
.y5d{bottom:932.910000px;}
.y9d{bottom:938.310000px;}
.y30{bottom:950.190000px;}
.y5c{bottom:953.610000px;}
.y9c{bottom:959.010000px;}
.y2f{bottom:970.890000px;}
.y4{bottom:973.590000px;}
.y5b{bottom:974.310000px;}
.y9b{bottom:979.710000px;}
.y5a{bottom:995.010000px;}
.y3{bottom:999.690000px;}
.y9a{bottom:1000.410000px;}
.y2e{bottom:1003.650000px;}
.y59{bottom:1015.710000px;}
.y2d{bottom:1024.350000px;}
.y2{bottom:1025.790000px;}
.y58{bottom:1036.410000px;}
.y99{bottom:1039.110000px;}
.y2c{bottom:1045.050000px;}
.y1{bottom:1045.410000px;}
.y57{bottom:1057.110000px;}
.y2b{bottom:1065.750000px;}
.y56{bottom:1077.810000px;}
.y2a{bottom:1086.450000px;}
.y55{bottom:1098.510000px;}
.y29{bottom:1119.210000px;}
.y28{bottom:1139.940000px;}
.y27{bottom:1173.960000px;}
.y26{bottom:1194.120000px;}
.h5{height:63.949219px;}
.h6{height:64.546875px;}
.h2{height:65.884219px;}
.h4{height:66.605977px;}
.h3{height:74.820586px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:127.655987px;}
.x3{left:136.835987px;}
.x2{left:143.315987px;}
.x9{left:172.649987px;}
.x8{left:181.649987px;}
.x4{left:309.134987px;}
.x5{left:347.834987px;}
.x7{left:446.474987px;}
.x1{left:633.344987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls2{letter-spacing:-0.896000pt;}
.ls3{letter-spacing:-0.832000pt;}
.ls1{letter-spacing:-0.192000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws2{word-spacing:0.000000pt;}
._b{margin-left:-3.968000pt;}
._7{margin-left:-2.560000pt;}
._0{margin-left:-1.123200pt;}
._1{width:0.931200pt;}
._c{width:1.856000pt;}
._3{width:3.142400pt;}
._2{width:4.394667pt;}
._18{width:5.461333pt;}
._10{width:7.011200pt;}
._4{width:7.936000pt;}
._5{width:8.960000pt;}
._6{width:9.856000pt;}
._a{width:10.794667pt;}
._8{width:11.840000pt;}
._9{width:12.771200pt;}
._11{width:13.660800pt;}
._1b{width:15.075200pt;}
._d{width:16.960000pt;}
._e{width:17.884800pt;}
._15{width:19.008000pt;}
._12{width:20.650667pt;}
._1e{width:24.384000pt;}
._16{width:25.280000pt;}
._17{width:26.176000pt;}
._1a{width:27.257600pt;}
._1c{width:45.866667pt;}
._14{width:62.720000pt;}
._13{width:97.258667pt;}
._1d{width:119.434667pt;}
._19{width:170.218667pt;}
._f{width:175.978667pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y98{bottom:100.832000pt;}
.y54{bottom:113.152000pt;}
.y82{bottom:116.352000pt;}
.y97{bottom:119.232000pt;}
.y53{bottom:131.552000pt;}
.y25{bottom:134.426667pt;}
.y81{bottom:134.746667pt;}
.y96{bottom:137.626667pt;}
.y52{bottom:149.946667pt;}
.y24{bottom:152.826667pt;}
.y80{bottom:153.146667pt;}
.y95{bottom:156.026667pt;}
.y51{bottom:168.346667pt;}
.y23{bottom:171.226667pt;}
.y7f{bottom:171.546667pt;}
.y94{bottom:174.426667pt;}
.y50{bottom:186.746667pt;}
.y7e{bottom:189.946667pt;}
.y93{bottom:192.826667pt;}
.y22{bottom:200.186667pt;}
.y4f{bottom:205.146667pt;}
.y7d{bottom:208.346667pt;}
.y92{bottom:211.226667pt;}
.y21{bottom:218.586667pt;}
.y4e{bottom:223.546667pt;}
.y7c{bottom:226.746667pt;}
.y91{bottom:229.626667pt;}
.y20{bottom:236.986667pt;}
.y4d{bottom:241.946667pt;}
.y7b{bottom:245.146667pt;}
.y90{bottom:248.026667pt;}
.y1f{bottom:255.386667pt;}
.y4c{bottom:260.346667pt;}
.y7a{bottom:263.546667pt;}
.y1e{bottom:273.786667pt;}
.y8f{bottom:277.146667pt;}
.y4b{bottom:278.746667pt;}
.y79{bottom:281.946667pt;}
.y1d{bottom:292.186667pt;}
.y8e{bottom:295.546667pt;}
.y4a{bottom:297.146667pt;}
.y78{bottom:300.386667pt;}
.y1c{bottom:310.626667pt;}
.y8d{bottom:313.986667pt;}
.y49{bottom:315.426667pt;}
.y77{bottom:318.786667pt;}
.y1b{bottom:329.026667pt;}
.y8c{bottom:332.386667pt;}
.y48{bottom:333.986667pt;}
.y76{bottom:337.186667pt;}
.y1a{bottom:347.426667pt;}
.y8b{bottom:350.786667pt;}
.y75{bottom:355.586667pt;}
.y19{bottom:365.826667pt;}
.y8a{bottom:369.186667pt;}
.y74{bottom:373.986667pt;}
.y89{bottom:387.586667pt;}
.y47{bottom:389.506667pt;}
.y73{bottom:392.386667pt;}
.y18{bottom:394.946667pt;}
.y88{bottom:405.986667pt;}
.y72{bottom:410.786667pt;}
.y46{bottom:418.466667pt;}
.y87{bottom:424.386667pt;}
.y17{bottom:425.346667pt;}
.y71{bottom:429.186667pt;}
.y45{bottom:436.866667pt;}
.y86{bottom:442.786667pt;}
.y70{bottom:447.586667pt;}
.y44{bottom:455.266667pt;}
.y16{bottom:455.906667pt;}
.y85{bottom:461.186667pt;}
.y6f{bottom:465.986667pt;}
.y43{bottom:473.666667pt;}
.y84{bottom:479.586667pt;}
.y15{bottom:486.466667pt;}
.y42{bottom:492.066667pt;}
.y83{bottom:497.986667pt;}
.y14{bottom:506.306667pt;}
.y41{bottom:510.466667pt;}
.y6e{bottom:516.386667pt;}
.y13{bottom:526.146667pt;}
.y40{bottom:528.866667pt;}
.y6d{bottom:534.786667pt;}
.y12{bottom:546.013333pt;}
.y3f{bottom:547.293333pt;}
.y6c{bottom:553.213333pt;}
.ya9{bottom:559.773333pt;}
.y3e{bottom:565.693333pt;}
.y11{bottom:565.853333pt;}
.y6b{bottom:571.613333pt;}
.y10{bottom:585.693333pt;}
.ya8{bottom:588.893333pt;}
.y6a{bottom:590.013333pt;}
.y3d{bottom:594.813333pt;}
.yf{bottom:605.693333pt;}
.ya7{bottom:607.293333pt;}
.y69{bottom:608.413333pt;}
.y3c{bottom:613.213333pt;}
.ye{bottom:625.533333pt;}
.ya6{bottom:625.693333pt;}
.y68{bottom:626.813333pt;}
.y3b{bottom:631.613333pt;}
.y67{bottom:645.213333pt;}
.yd{bottom:645.373333pt;}
.y3a{bottom:650.013333pt;}
.ya5{bottom:654.813333pt;}
.y66{bottom:663.613333pt;}
.yc{bottom:665.213333pt;}
.y39{bottom:668.413333pt;}
.ya4{bottom:673.213333pt;}
.y65{bottom:682.013333pt;}
.yb{bottom:685.053333pt;}
.y38{bottom:686.813333pt;}
.ya3{bottom:691.613333pt;}
.y64{bottom:700.413333pt;}
.ya{bottom:704.893333pt;}
.y37{bottom:705.213333pt;}
.y63{bottom:718.813333pt;}
.ya2{bottom:720.573333pt;}
.y36{bottom:723.613333pt;}
.y9{bottom:724.733333pt;}
.y62{bottom:737.213333pt;}
.ya1{bottom:738.973333pt;}
.y35{bottom:742.013333pt;}
.y8{bottom:744.573333pt;}
.y61{bottom:755.613333pt;}
.y34{bottom:760.413333pt;}
.y7{bottom:764.413333pt;}
.ya0{bottom:768.093333pt;}
.y60{bottom:774.053333pt;}
.y33{bottom:778.853333pt;}
.y6{bottom:784.293333pt;}
.y5f{bottom:792.453333pt;}
.y9f{bottom:797.253333pt;}
.y32{bottom:807.813333pt;}
.y5e{bottom:810.853333pt;}
.y5{bottom:813.413333pt;}
.y9e{bottom:815.653333pt;}
.y31{bottom:826.213333pt;}
.y5d{bottom:829.253333pt;}
.y9d{bottom:834.053333pt;}
.y30{bottom:844.613333pt;}
.y5c{bottom:847.653333pt;}
.y9c{bottom:852.453333pt;}
.y2f{bottom:863.013333pt;}
.y4{bottom:865.413333pt;}
.y5b{bottom:866.053333pt;}
.y9b{bottom:870.853333pt;}
.y5a{bottom:884.453333pt;}
.y3{bottom:888.613333pt;}
.y9a{bottom:889.253333pt;}
.y2e{bottom:892.133333pt;}
.y59{bottom:902.853333pt;}
.y2d{bottom:910.533333pt;}
.y2{bottom:911.813333pt;}
.y58{bottom:921.253333pt;}
.y99{bottom:923.653333pt;}
.y2c{bottom:928.933333pt;}
.y1{bottom:929.253333pt;}
.y57{bottom:939.653333pt;}
.y2b{bottom:947.333333pt;}
.y56{bottom:958.053333pt;}
.y2a{bottom:965.733333pt;}
.y55{bottom:976.453333pt;}
.y29{bottom:994.853333pt;}
.y28{bottom:1013.280000pt;}
.y27{bottom:1043.520000pt;}
.y26{bottom:1061.440000pt;}
.h5{height:56.843750pt;}
.h6{height:57.375000pt;}
.h2{height:58.563750pt;}
.h4{height:59.205313pt;}
.h3{height:66.507188pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:113.471988pt;}
.x3{left:121.631988pt;}
.x2{left:127.391988pt;}
.x9{left:153.466655pt;}
.x8{left:161.466655pt;}
.x4{left:274.786655pt;}
.x5{left:309.186655pt;}
.x7{left:396.866655pt;}
.x1{left:562.973322pt;}
}




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