
    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_ec90f714a8456dd9558653bc.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_76ce3d70ebfd7ba2e597c18e.woff2')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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c4b74fb726d3c4beff71400f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940430;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0ab0bf969f2c92fd6cde7d68.woff2')format("woff");}.ff6{font-family:ff6;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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.460200px;}
.ls7{letter-spacing:-0.206400px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.360000px;}
.ls9{letter-spacing:11.466720px;}
.ls8{letter-spacing:41.682720px;}
.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;}
}
.ws3{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.199800px;}
.ws6{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.733600px;}
.ws2{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._f{margin-left:-3.689280px;}
._e{margin-left:-2.450160px;}
._0{margin-left:-1.376880px;}
._2{width:1.550400px;}
._6{width:2.683920px;}
._1{width:3.855840px;}
._8{width:5.322000px;}
._9{width:6.394320px;}
._c{width:7.533120px;}
._b{width:8.784720px;}
._10{width:9.813120px;}
._11{width:11.055600px;}
._d{width:12.134640px;}
._a{width:13.326480px;}
._7{width:15.955920px;}
._16{width:17.210880px;}
._13{width:18.292320px;}
._12{width:19.302480px;}
._14{width:20.680320px;}
._15{width:21.872160px;}
._18{width:28.684800px;}
._17{width:29.700720px;}
._5{width:136.056000px;}
._4{width:636.906000px;}
._3{width:748.236000px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y70{bottom:3.240000px;}
.ya{bottom:36.720000px;}
.y9{bottom:55.260000px;}
.y8{bottom:70.776000px;}
.y82{bottom:127.836000px;}
.y6e{bottom:132.336000px;}
.y3b{bottom:143.316000px;}
.y81{bottom:145.116000px;}
.y6d{bottom:149.616000px;}
.y3a{bottom:160.590000px;}
.y80{bottom:162.390000px;}
.y6c{bottom:166.890000px;}
.y39{bottom:177.870000px;}
.y7f{bottom:179.670000px;}
.y6b{bottom:184.170000px;}
.y38{bottom:195.150000px;}
.y7e{bottom:196.770000px;}
.y6a{bottom:201.270000px;}
.y37{bottom:212.430000px;}
.y7d{bottom:214.050000px;}
.y69{bottom:218.550000px;}
.y36{bottom:229.710000px;}
.y7c{bottom:231.330000px;}
.y68{bottom:235.830000px;}
.y35{bottom:246.810000px;}
.y7b{bottom:248.610000px;}
.y67{bottom:253.110000px;}
.y34{bottom:264.090000px;}
.y7a{bottom:265.890000px;}
.y66{bottom:270.390000px;}
.y33{bottom:281.370000px;}
.y79{bottom:283.170000px;}
.y65{bottom:287.670000px;}
.y32{bottom:298.650000px;}
.y78{bottom:300.270000px;}
.y64{bottom:304.770000px;}
.y31{bottom:315.930000px;}
.y77{bottom:317.595000px;}
.y63{bottom:322.095000px;}
.y30{bottom:333.075000px;}
.y76{bottom:334.875000px;}
.y62{bottom:339.375000px;}
.y2f{bottom:350.355000px;}
.y75{bottom:352.155000px;}
.y61{bottom:356.655000px;}
.y2e{bottom:367.635000px;}
.y74{bottom:369.435000px;}
.y60{bottom:373.935000px;}
.y73{bottom:384.195000px;}
.y2d{bottom:384.915000px;}
.y5f{bottom:391.215000px;}
.y2c{bottom:402.195000px;}
.y5e{bottom:408.315000px;}
.y2b{bottom:419.475000px;}
.y72{bottom:420.195000px;}
.y5d{bottom:425.595000px;}
.y2a{bottom:436.575000px;}
.y71{bottom:438.195000px;}
.y5c{bottom:442.875000px;}
.y29{bottom:453.855000px;}
.y6f{bottom:456.195000px;}
.y5b{bottom:460.155000px;}
.y28{bottom:471.135000px;}
.y5a{bottom:477.435000px;}
.y27{bottom:488.415000px;}
.y59{bottom:494.535000px;}
.y26{bottom:507.855000px;}
.y58{bottom:511.815000px;}
.y25{bottom:525.135000px;}
.y57{bottom:529.095000px;}
.y24{bottom:542.415000px;}
.y56{bottom:546.375000px;}
.y23{bottom:559.695000px;}
.y55{bottom:563.655000px;}
.y22{bottom:577.005000px;}
.y54{bottom:580.965000px;}
.y21{bottom:594.105000px;}
.y53{bottom:598.065000px;}
.y20{bottom:611.385000px;}
.y52{bottom:615.345000px;}
.y1f{bottom:628.665000px;}
.y51{bottom:632.625000px;}
.y1e{bottom:645.945000px;}
.y50{bottom:649.905000px;}
.y1d{bottom:663.225000px;}
.y4f{bottom:667.185000px;}
.y1c{bottom:680.325000px;}
.y4e{bottom:684.465000px;}
.y1b{bottom:697.605000px;}
.y4d{bottom:701.565000px;}
.y1a{bottom:714.885000px;}
.y4c{bottom:718.845000px;}
.y19{bottom:732.165000px;}
.y4b{bottom:736.125000px;}
.y18{bottom:749.445000px;}
.y4a{bottom:753.405000px;}
.y17{bottom:766.725000px;}
.y49{bottom:770.685000px;}
.y16{bottom:783.825000px;}
.y48{bottom:787.785000px;}
.y15{bottom:803.445000px;}
.y47{bottom:805.065000px;}
.y14{bottom:821.130000px;}
.y46{bottom:822.390000px;}
.y45{bottom:839.670000px;}
.y13{bottom:840.030000px;}
.y44{bottom:856.950000px;}
.y12{bottom:859.110000px;}
.y43{bottom:874.230000px;}
.y11{bottom:878.010000px;}
.y42{bottom:891.330000px;}
.y10{bottom:897.090000px;}
.y41{bottom:908.610000px;}
.yf{bottom:915.990000px;}
.y40{bottom:925.890000px;}
.ye{bottom:934.890000px;}
.y3f{bottom:943.170000px;}
.yd{bottom:953.430000px;}
.y3e{bottom:960.450000px;}
.yc{bottom:971.430000px;}
.y3d{bottom:977.730000px;}
.yb{bottom:992.130000px;}
.y3c{bottom:994.830000px;}
.y7{bottom:1013.370000px;}
.y6{bottom:1031.910000px;}
.y5{bottom:1048.290000px;}
.y4{bottom:1063.590000px;}
.y3{bottom:1105.740000px;}
.y2{bottom:1124.280000px;}
.y1{bottom:1141.560000px;}
.h9{height:17.100000px;}
.ha{height:17.280000px;}
.h4{height:37.705078px;}
.h1{height:41.726953px;}
.h7{height:42.164648px;}
.h8{height:43.302656px;}
.hb{height:43.506914px;}
.h2{height:46.251562px;}
.h3{height:46.736719px;}
.h6{height:50.800781px;}
.h5{height:65.884219px;}
.h0{height:1188.000000px;}
.w2{width:212.610000px;}
.w3{width:239.250000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:7.740000px;}
.x1{left:108.035986px;}
.x13{left:116.856000px;}
.x2{left:135.755986px;}
.x6{left:139.535986px;}
.x4{left:154.109986px;}
.x19{left:162.029986px;}
.x12{left:257.969986px;}
.xc{left:300.674986px;}
.x15{left:330.195000px;}
.xa{left:331.634986px;}
.x7{left:349.274986px;}
.xb{left:361.694986px;}
.xd{left:368.714986px;}
.xf{left:376.274986px;}
.x10{left:396.974986px;}
.xe{left:398.954986px;}
.x9{left:407.774986px;}
.x5{left:409.034986px;}
.x18{left:410.294986px;}
.x17{left:413.174986px;}
.x11{left:424.874986px;}
.x8{left:459.074986px;}
.x3{left:532.364986px;}
.x16{left:570.165000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.409067pt;}
.ls7{letter-spacing:-0.183467pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.320000pt;}
.ls9{letter-spacing:10.192640pt;}
.ls8{letter-spacing:37.051307pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.096533pt;}
.ws2{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._f{margin-left:-3.279360pt;}
._e{margin-left:-2.177920pt;}
._0{margin-left:-1.223893pt;}
._2{width:1.378133pt;}
._6{width:2.385707pt;}
._1{width:3.427413pt;}
._8{width:4.730667pt;}
._9{width:5.683840pt;}
._c{width:6.696107pt;}
._b{width:7.808640pt;}
._10{width:8.722773pt;}
._11{width:9.827200pt;}
._d{width:10.786347pt;}
._a{width:11.845760pt;}
._7{width:14.183040pt;}
._16{width:15.298560pt;}
._13{width:16.259840pt;}
._12{width:17.157760pt;}
._14{width:18.382507pt;}
._15{width:19.441920pt;}
._18{width:25.497600pt;}
._17{width:26.400640pt;}
._5{width:120.938667pt;}
._4{width:566.138667pt;}
._3{width:665.098667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:2.880000pt;}
.ya{bottom:32.640000pt;}
.y9{bottom:49.120000pt;}
.y8{bottom:62.912000pt;}
.y82{bottom:113.632000pt;}
.y6e{bottom:117.632000pt;}
.y3b{bottom:127.392000pt;}
.y81{bottom:128.992000pt;}
.y6d{bottom:132.992000pt;}
.y3a{bottom:142.746667pt;}
.y80{bottom:144.346667pt;}
.y6c{bottom:148.346667pt;}
.y39{bottom:158.106667pt;}
.y7f{bottom:159.706667pt;}
.y6b{bottom:163.706667pt;}
.y38{bottom:173.466667pt;}
.y7e{bottom:174.906667pt;}
.y6a{bottom:178.906667pt;}
.y37{bottom:188.826667pt;}
.y7d{bottom:190.266667pt;}
.y69{bottom:194.266667pt;}
.y36{bottom:204.186667pt;}
.y7c{bottom:205.626667pt;}
.y68{bottom:209.626667pt;}
.y35{bottom:219.386667pt;}
.y7b{bottom:220.986667pt;}
.y67{bottom:224.986667pt;}
.y34{bottom:234.746667pt;}
.y7a{bottom:236.346667pt;}
.y66{bottom:240.346667pt;}
.y33{bottom:250.106667pt;}
.y79{bottom:251.706667pt;}
.y65{bottom:255.706667pt;}
.y32{bottom:265.466667pt;}
.y78{bottom:266.906667pt;}
.y64{bottom:270.906667pt;}
.y31{bottom:280.826667pt;}
.y77{bottom:282.306667pt;}
.y63{bottom:286.306667pt;}
.y30{bottom:296.066667pt;}
.y76{bottom:297.666667pt;}
.y62{bottom:301.666667pt;}
.y2f{bottom:311.426667pt;}
.y75{bottom:313.026667pt;}
.y61{bottom:317.026667pt;}
.y2e{bottom:326.786667pt;}
.y74{bottom:328.386667pt;}
.y60{bottom:332.386667pt;}
.y73{bottom:341.506667pt;}
.y2d{bottom:342.146667pt;}
.y5f{bottom:347.746667pt;}
.y2c{bottom:357.506667pt;}
.y5e{bottom:362.946667pt;}
.y2b{bottom:372.866667pt;}
.y72{bottom:373.506667pt;}
.y5d{bottom:378.306667pt;}
.y2a{bottom:388.066667pt;}
.y71{bottom:389.506667pt;}
.y5c{bottom:393.666667pt;}
.y29{bottom:403.426667pt;}
.y6f{bottom:405.506667pt;}
.y5b{bottom:409.026667pt;}
.y28{bottom:418.786667pt;}
.y5a{bottom:424.386667pt;}
.y27{bottom:434.146667pt;}
.y59{bottom:439.586667pt;}
.y26{bottom:451.426667pt;}
.y58{bottom:454.946667pt;}
.y25{bottom:466.786667pt;}
.y57{bottom:470.306667pt;}
.y24{bottom:482.146667pt;}
.y56{bottom:485.666667pt;}
.y23{bottom:497.506667pt;}
.y55{bottom:501.026667pt;}
.y22{bottom:512.893333pt;}
.y54{bottom:516.413333pt;}
.y21{bottom:528.093333pt;}
.y53{bottom:531.613333pt;}
.y20{bottom:543.453333pt;}
.y52{bottom:546.973333pt;}
.y1f{bottom:558.813333pt;}
.y51{bottom:562.333333pt;}
.y1e{bottom:574.173333pt;}
.y50{bottom:577.693333pt;}
.y1d{bottom:589.533333pt;}
.y4f{bottom:593.053333pt;}
.y1c{bottom:604.733333pt;}
.y4e{bottom:608.413333pt;}
.y1b{bottom:620.093333pt;}
.y4d{bottom:623.613333pt;}
.y1a{bottom:635.453333pt;}
.y4c{bottom:638.973333pt;}
.y19{bottom:650.813333pt;}
.y4b{bottom:654.333333pt;}
.y18{bottom:666.173333pt;}
.y4a{bottom:669.693333pt;}
.y17{bottom:681.533333pt;}
.y49{bottom:685.053333pt;}
.y16{bottom:696.733333pt;}
.y48{bottom:700.253333pt;}
.y15{bottom:714.173333pt;}
.y47{bottom:715.613333pt;}
.y14{bottom:729.893333pt;}
.y46{bottom:731.013333pt;}
.y45{bottom:746.373333pt;}
.y13{bottom:746.693333pt;}
.y44{bottom:761.733333pt;}
.y12{bottom:763.653333pt;}
.y43{bottom:777.093333pt;}
.y11{bottom:780.453333pt;}
.y42{bottom:792.293333pt;}
.y10{bottom:797.413333pt;}
.y41{bottom:807.653333pt;}
.yf{bottom:814.213333pt;}
.y40{bottom:823.013333pt;}
.ye{bottom:831.013333pt;}
.y3f{bottom:838.373333pt;}
.yd{bottom:847.493333pt;}
.y3e{bottom:853.733333pt;}
.yc{bottom:863.493333pt;}
.y3d{bottom:869.093333pt;}
.yb{bottom:881.893333pt;}
.y3c{bottom:884.293333pt;}
.y7{bottom:900.773333pt;}
.y6{bottom:917.253333pt;}
.y5{bottom:931.813333pt;}
.y4{bottom:945.413333pt;}
.y3{bottom:982.880000pt;}
.y2{bottom:999.360000pt;}
.y1{bottom:1014.720000pt;}
.h9{height:15.200000pt;}
.ha{height:15.360000pt;}
.h4{height:33.515625pt;}
.h1{height:37.090625pt;}
.h7{height:37.479688pt;}
.h8{height:38.491250pt;}
.hb{height:38.672812pt;}
.h2{height:41.112500pt;}
.h3{height:41.543750pt;}
.h6{height:45.156250pt;}
.h5{height:58.563750pt;}
.h0{height:1056.000000pt;}
.w2{width:188.986667pt;}
.w3{width:212.666667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:6.880000pt;}
.x1{left:96.031988pt;}
.x13{left:103.872000pt;}
.x2{left:120.671988pt;}
.x6{left:124.031988pt;}
.x4{left:136.986655pt;}
.x19{left:144.026655pt;}
.x12{left:229.306655pt;}
.xc{left:267.266655pt;}
.x15{left:293.506667pt;}
.xa{left:294.786655pt;}
.x7{left:310.466655pt;}
.xb{left:321.506655pt;}
.xd{left:327.746655pt;}
.xf{left:334.466655pt;}
.x10{left:352.866655pt;}
.xe{left:354.626655pt;}
.x9{left:362.466655pt;}
.x5{left:363.586655pt;}
.x18{left:364.706655pt;}
.x17{left:367.266655pt;}
.x11{left:377.666655pt;}
.x8{left:408.066655pt;}
.x3{left:473.213321pt;}
.x16{left:506.813333pt;}
}




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