
    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_37139f9143745dc31beb3bb4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_a5053b895c3183371e62033c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_2eae2f777bc258a053944dc5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_f6d3ecaf776299d13563ac8d.woff2')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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_51f9254c649c776655edc511.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_a4a877773a58a3354ca12028.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.853027;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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls8{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.269400px;}
.ls1{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.720000px;}
.ls9{letter-spacing:33.960000px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.ws3{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.712000px;}
.ws5{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.329400px;}
.ws8{word-spacing:-12.060000px;}
.ws7{word-spacing:-11.700000px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-2.300640px;}
._0{margin-left:-1.095120px;}
._1{width:1.511760px;}
._3{width:2.592000px;}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yaf{bottom:123.876000px;}
.y4f{bottom:126.216000px;}
.y7e{bottom:130.536000px;}
.y26{bottom:133.596000px;}
.yae{bottom:144.576000px;}
.yd1{bottom:144.756000px;}
.y4e{bottom:149.976000px;}
.y7d{bottom:151.230000px;}
.y25{bottom:157.530000px;}
.yad{bottom:165.270000px;}
.yd0{bottom:165.630000px;}
.y6f{bottom:167.610000px;}
.y7c{bottom:171.930000px;}
.y4d{bottom:173.910000px;}
.y24{bottom:181.290000px;}
.yac{bottom:185.970000px;}
.ycf{bottom:186.330000px;}
.y6e{bottom:191.370000px;}
.y7b{bottom:192.630000px;}
.y4c{bottom:197.670000px;}
.yab{bottom:206.670000px;}
.yce{bottom:207.030000px;}
.y7a{bottom:213.330000px;}
.y6d{bottom:215.310000px;}
.y23{bottom:219.810000px;}
.y4b{bottom:221.430000px;}
.yaa{bottom:227.370000px;}
.ycd{bottom:227.730000px;}
.y79{bottom:234.030000px;}
.y6c{bottom:239.070000px;}
.y4a{bottom:245.190000px;}
.ya9{bottom:248.070000px;}
.ycc{bottom:248.430000px;}
.y78{bottom:254.730000px;}
.y22{bottom:258.510000px;}
.y6b{bottom:262.830000px;}
.ya8{bottom:268.770000px;}
.y49{bottom:269.130000px;}
.y77{bottom:275.475000px;}
.y6a{bottom:286.635000px;}
.ya7{bottom:289.515000px;}
.ycb{bottom:289.875000px;}
.y48{bottom:292.935000px;}
.y76{bottom:296.175000px;}
.y21{bottom:297.795000px;}
.ya6{bottom:310.215000px;}
.y69{bottom:310.575000px;}
.y47{bottom:316.695000px;}
.y75{bottom:316.875000px;}
.y20{bottom:321.555000px;}
.ya5{bottom:330.915000px;}
.yca{bottom:331.275000px;}
.y68{bottom:334.335000px;}
.y74{bottom:337.575000px;}
.y46{bottom:340.455000px;}
.y1f{bottom:345.315000px;}
.ya4{bottom:351.615000px;}
.yc9{bottom:351.975000px;}
.y73{bottom:358.275000px;}
.y1e{bottom:369.075000px;}
.ya3{bottom:372.315000px;}
.yc8{bottom:372.675000px;}
.y67{bottom:373.035000px;}
.y45{bottom:379.335000px;}
.y1d{bottom:393.015000px;}
.yc7{bottom:393.375000px;}
.y72{bottom:396.615000px;}
.y66{bottom:396.975000px;}
.y44{bottom:403.095000px;}
.ya2{bottom:413.715000px;}
.yc6{bottom:414.075000px;}
.y1c{bottom:416.775000px;}
.y65{bottom:420.735000px;}
.y43{bottom:426.855000px;}
.ya1{bottom:434.415000px;}
.yc5{bottom:434.775000px;}
.y71{bottom:435.675000px;}
.y64{bottom:444.495000px;}
.y42{bottom:450.795000px;}
.ya0{bottom:455.115000px;}
.y1b{bottom:455.475000px;}
.y63{bottom:468.255000px;}
.y41{bottom:474.555000px;}
.y9f{bottom:475.815000px;}
.yc4{bottom:476.175000px;}
.y1a{bottom:479.415000px;}
.y62{bottom:492.195000px;}
.y9e{bottom:496.515000px;}
.yc3{bottom:496.875000px;}
.y40{bottom:498.315000px;}
.y19{bottom:503.175000px;}
.y61{bottom:515.955000px;}
.y9d{bottom:517.215000px;}
.yc2{bottom:517.575000px;}
.y3f{bottom:522.075000px;}
.y18{bottom:526.935000px;}
.y9c{bottom:537.915000px;}
.yc1{bottom:538.275000px;}
.y3e{bottom:546.015000px;}
.y17{bottom:550.695000px;}
.y60{bottom:554.655000px;}
.y9b{bottom:558.645000px;}
.yc0{bottom:559.005000px;}
.y3d{bottom:569.805000px;}
.y16{bottom:574.665000px;}
.y5f{bottom:578.625000px;}
.y9a{bottom:579.345000px;}
.ybf{bottom:579.705000px;}
.y3c{bottom:593.565000px;}
.y15{bottom:598.425000px;}
.y99{bottom:600.045000px;}
.ybe{bottom:600.405000px;}
.y5e{bottom:602.385000px;}
.y3b{bottom:617.325000px;}
.y98{bottom:620.745000px;}
.ybd{bottom:621.105000px;}
.y14{bottom:622.185000px;}
.y5d{bottom:626.145000px;}
.y70{bottom:632.445000px;}
.y97{bottom:641.445000px;}
.ybc{bottom:641.805000px;}
.y13{bottom:645.945000px;}
.y5c{bottom:649.905000px;}
.y3a{bottom:656.205000px;}
.y96{bottom:662.145000px;}
.ybb{bottom:662.505000px;}
.y5b{bottom:673.845000px;}
.y39{bottom:679.965000px;}
.y95{bottom:682.845000px;}
.yba{bottom:683.205000px;}
.y12{bottom:684.825000px;}
.y94{bottom:703.545000px;}
.y38{bottom:703.725000px;}
.yb9{bottom:703.905000px;}
.y11{bottom:708.585000px;}
.y5a{bottom:712.185000px;}
.y93{bottom:724.245000px;}
.yb8{bottom:724.605000px;}
.y37{bottom:727.665000px;}
.y10{bottom:732.345000px;}
.y92{bottom:744.945000px;}
.yb7{bottom:745.305000px;}
.y59{bottom:751.065000px;}
.y36{bottom:751.425000px;}
.yf{bottom:756.285000px;}
.y91{bottom:765.645000px;}
.yb6{bottom:766.005000px;}
.y35{bottom:775.185000px;}
.ye{bottom:780.045000px;}
.y90{bottom:786.345000px;}
.yb5{bottom:786.705000px;}
.y58{bottom:790.125000px;}
.y34{bottom:798.945000px;}
.yd{bottom:803.805000px;}
.y8f{bottom:807.045000px;}
.yb4{bottom:807.405000px;}
.y57{bottom:814.065000px;}
.y33{bottom:822.705000px;}
.y8e{bottom:827.745000px;}
.yb3{bottom:828.105000px;}
.y56{bottom:837.825000px;}
.yc{bottom:842.730000px;}
.y8d{bottom:848.490000px;}
.yb2{bottom:848.850000px;}
.y32{bottom:861.630000px;}
.yb{bottom:866.490000px;}
.y8c{bottom:869.190000px;}
.yb1{bottom:869.550000px;}
.y31{bottom:885.390000px;}
.y8b{bottom:889.890000px;}
.ya{bottom:890.250000px;}
.y30{bottom:909.330000px;}
.y8a{bottom:910.410000px;}
.yb0{bottom:910.950000px;}
.y9{bottom:914.010000px;}
.y55{bottom:924.270000px;}
.y89{bottom:931.650000px;}
.y2f{bottom:933.090000px;}
.y8{bottom:937.950000px;}
.y54{bottom:948.030000px;}
.y88{bottom:952.350000px;}
.y2e{bottom:956.850000px;}
.y7{bottom:961.710000px;}
.y53{bottom:971.790000px;}
.y87{bottom:973.050000px;}
.y2d{bottom:980.610000px;}
.y6{bottom:985.470000px;}
.y86{bottom:993.750000px;}
.y52{bottom:995.730000px;}
.y2c{bottom:1004.370000px;}
.y5{bottom:1009.230000px;}
.y85{bottom:1014.450000px;}
.y51{bottom:1019.490000px;}
.y2b{bottom:1028.310000px;}
.y4{bottom:1033.170000px;}
.y84{bottom:1035.150000px;}
.y50{bottom:1043.250000px;}
.y83{bottom:1055.850000px;}
.y2a{bottom:1067.010000px;}
.y3{bottom:1071.510000px;}
.y82{bottom:1076.550000px;}
.y29{bottom:1090.950000px;}
.y81{bottom:1097.250000px;}
.y2{bottom:1110.750000px;}
.y28{bottom:1114.710000px;}
.y80{bottom:1117.950000px;}
.y1{bottom:1135.800000px;}
.y27{bottom:1138.500000px;}
.y7f{bottom:1138.680000px;}
.h3{height:70.628906px;}
.h5{height:70.664062px;}
.h4{height:72.562500px;}
.h6{height:74.704922px;}
.h7{height:74.824922px;}
.h8{height:74.953125px;}
.h2{height:82.676953px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:108.036000px;}
.x4{left:135.036000px;}
.x1{left:138.276000px;}
.x5{left:162.030000px;}
.x2{left:446.475000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.239467pt;}
.ls1{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls9{letter-spacing:30.186667pt;}
.ws9{word-spacing:-64.000000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws5{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.959467pt;}
.ws8{word-spacing:-10.720000pt;}
.ws7{word-spacing:-10.400000pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-2.045013pt;}
._0{margin-left:-0.973440pt;}
._1{width:1.343787pt;}
._3{width:2.304000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yaf{bottom:110.112000pt;}
.y4f{bottom:112.192000pt;}
.y7e{bottom:116.032000pt;}
.y26{bottom:118.752000pt;}
.yae{bottom:128.512000pt;}
.yd1{bottom:128.672000pt;}
.y4e{bottom:133.312000pt;}
.y7d{bottom:134.426667pt;}
.y25{bottom:140.026667pt;}
.yad{bottom:146.906667pt;}
.yd0{bottom:147.226667pt;}
.y6f{bottom:148.986667pt;}
.y7c{bottom:152.826667pt;}
.y4d{bottom:154.586667pt;}
.y24{bottom:161.146667pt;}
.yac{bottom:165.306667pt;}
.ycf{bottom:165.626667pt;}
.y6e{bottom:170.106667pt;}
.y7b{bottom:171.226667pt;}
.y4c{bottom:175.706667pt;}
.yab{bottom:183.706667pt;}
.yce{bottom:184.026667pt;}
.y7a{bottom:189.626667pt;}
.y6d{bottom:191.386667pt;}
.y23{bottom:195.386667pt;}
.y4b{bottom:196.826667pt;}
.yaa{bottom:202.106667pt;}
.ycd{bottom:202.426667pt;}
.y79{bottom:208.026667pt;}
.y6c{bottom:212.506667pt;}
.y4a{bottom:217.946667pt;}
.ya9{bottom:220.506667pt;}
.ycc{bottom:220.826667pt;}
.y78{bottom:226.426667pt;}
.y22{bottom:229.786667pt;}
.y6b{bottom:233.626667pt;}
.ya8{bottom:238.906667pt;}
.y49{bottom:239.226667pt;}
.y77{bottom:244.866667pt;}
.y6a{bottom:254.786667pt;}
.ya7{bottom:257.346667pt;}
.ycb{bottom:257.666667pt;}
.y48{bottom:260.386667pt;}
.y76{bottom:263.266667pt;}
.y21{bottom:264.706667pt;}
.ya6{bottom:275.746667pt;}
.y69{bottom:276.066667pt;}
.y47{bottom:281.506667pt;}
.y75{bottom:281.666667pt;}
.y20{bottom:285.826667pt;}
.ya5{bottom:294.146667pt;}
.yca{bottom:294.466667pt;}
.y68{bottom:297.186667pt;}
.y74{bottom:300.066667pt;}
.y46{bottom:302.626667pt;}
.y1f{bottom:306.946667pt;}
.ya4{bottom:312.546667pt;}
.yc9{bottom:312.866667pt;}
.y73{bottom:318.466667pt;}
.y1e{bottom:328.066667pt;}
.ya3{bottom:330.946667pt;}
.yc8{bottom:331.266667pt;}
.y67{bottom:331.586667pt;}
.y45{bottom:337.186667pt;}
.y1d{bottom:349.346667pt;}
.yc7{bottom:349.666667pt;}
.y72{bottom:352.546667pt;}
.y66{bottom:352.866667pt;}
.y44{bottom:358.306667pt;}
.ya2{bottom:367.746667pt;}
.yc6{bottom:368.066667pt;}
.y1c{bottom:370.466667pt;}
.y65{bottom:373.986667pt;}
.y43{bottom:379.426667pt;}
.ya1{bottom:386.146667pt;}
.yc5{bottom:386.466667pt;}
.y71{bottom:387.266667pt;}
.y64{bottom:395.106667pt;}
.y42{bottom:400.706667pt;}
.ya0{bottom:404.546667pt;}
.y1b{bottom:404.866667pt;}
.y63{bottom:416.226667pt;}
.y41{bottom:421.826667pt;}
.y9f{bottom:422.946667pt;}
.yc4{bottom:423.266667pt;}
.y1a{bottom:426.146667pt;}
.y62{bottom:437.506667pt;}
.y9e{bottom:441.346667pt;}
.yc3{bottom:441.666667pt;}
.y40{bottom:442.946667pt;}
.y19{bottom:447.266667pt;}
.y61{bottom:458.626667pt;}
.y9d{bottom:459.746667pt;}
.yc2{bottom:460.066667pt;}
.y3f{bottom:464.066667pt;}
.y18{bottom:468.386667pt;}
.y9c{bottom:478.146667pt;}
.yc1{bottom:478.466667pt;}
.y3e{bottom:485.346667pt;}
.y17{bottom:489.506667pt;}
.y60{bottom:493.026667pt;}
.y9b{bottom:496.573333pt;}
.yc0{bottom:496.893333pt;}
.y3d{bottom:506.493333pt;}
.y16{bottom:510.813333pt;}
.y5f{bottom:514.333333pt;}
.y9a{bottom:514.973333pt;}
.ybf{bottom:515.293333pt;}
.y3c{bottom:527.613333pt;}
.y15{bottom:531.933333pt;}
.y99{bottom:533.373333pt;}
.ybe{bottom:533.693333pt;}
.y5e{bottom:535.453333pt;}
.y3b{bottom:548.733333pt;}
.y98{bottom:551.773333pt;}
.ybd{bottom:552.093333pt;}
.y14{bottom:553.053333pt;}
.y5d{bottom:556.573333pt;}
.y70{bottom:562.173333pt;}
.y97{bottom:570.173333pt;}
.ybc{bottom:570.493333pt;}
.y13{bottom:574.173333pt;}
.y5c{bottom:577.693333pt;}
.y3a{bottom:583.293333pt;}
.y96{bottom:588.573333pt;}
.ybb{bottom:588.893333pt;}
.y5b{bottom:598.973333pt;}
.y39{bottom:604.413333pt;}
.y95{bottom:606.973333pt;}
.yba{bottom:607.293333pt;}
.y12{bottom:608.733333pt;}
.y94{bottom:625.373333pt;}
.y38{bottom:625.533333pt;}
.yb9{bottom:625.693333pt;}
.y11{bottom:629.853333pt;}
.y5a{bottom:633.053333pt;}
.y93{bottom:643.773333pt;}
.yb8{bottom:644.093333pt;}
.y37{bottom:646.813333pt;}
.y10{bottom:650.973333pt;}
.y92{bottom:662.173333pt;}
.yb7{bottom:662.493333pt;}
.y59{bottom:667.613333pt;}
.y36{bottom:667.933333pt;}
.yf{bottom:672.253333pt;}
.y91{bottom:680.573333pt;}
.yb6{bottom:680.893333pt;}
.y35{bottom:689.053333pt;}
.ye{bottom:693.373333pt;}
.y90{bottom:698.973333pt;}
.yb5{bottom:699.293333pt;}
.y58{bottom:702.333333pt;}
.y34{bottom:710.173333pt;}
.yd{bottom:714.493333pt;}
.y8f{bottom:717.373333pt;}
.yb4{bottom:717.693333pt;}
.y57{bottom:723.613333pt;}
.y33{bottom:731.293333pt;}
.y8e{bottom:735.773333pt;}
.yb3{bottom:736.093333pt;}
.y56{bottom:744.733333pt;}
.yc{bottom:749.093333pt;}
.y8d{bottom:754.213333pt;}
.yb2{bottom:754.533333pt;}
.y32{bottom:765.893333pt;}
.yb{bottom:770.213333pt;}
.y8c{bottom:772.613333pt;}
.yb1{bottom:772.933333pt;}
.y31{bottom:787.013333pt;}
.y8b{bottom:791.013333pt;}
.ya{bottom:791.333333pt;}
.y30{bottom:808.293333pt;}
.y8a{bottom:809.253333pt;}
.yb0{bottom:809.733333pt;}
.y9{bottom:812.453333pt;}
.y55{bottom:821.573333pt;}
.y89{bottom:828.133333pt;}
.y2f{bottom:829.413333pt;}
.y8{bottom:833.733333pt;}
.y54{bottom:842.693333pt;}
.y88{bottom:846.533333pt;}
.y2e{bottom:850.533333pt;}
.y7{bottom:854.853333pt;}
.y53{bottom:863.813333pt;}
.y87{bottom:864.933333pt;}
.y2d{bottom:871.653333pt;}
.y6{bottom:875.973333pt;}
.y86{bottom:883.333333pt;}
.y52{bottom:885.093333pt;}
.y2c{bottom:892.773333pt;}
.y5{bottom:897.093333pt;}
.y85{bottom:901.733333pt;}
.y51{bottom:906.213333pt;}
.y2b{bottom:914.053333pt;}
.y4{bottom:918.373333pt;}
.y84{bottom:920.133333pt;}
.y50{bottom:927.333333pt;}
.y83{bottom:938.533333pt;}
.y2a{bottom:948.453333pt;}
.y3{bottom:952.453333pt;}
.y82{bottom:956.933333pt;}
.y29{bottom:969.733333pt;}
.y81{bottom:975.333333pt;}
.y2{bottom:987.333333pt;}
.y28{bottom:990.853333pt;}
.y80{bottom:993.733333pt;}
.y1{bottom:1009.600000pt;}
.y27{bottom:1012.000000pt;}
.y7f{bottom:1012.160000pt;}
.h3{height:62.781250pt;}
.h5{height:62.812500pt;}
.h4{height:64.500000pt;}
.h6{height:66.404375pt;}
.h7{height:66.511042pt;}
.h8{height:66.625000pt;}
.h2{height:73.490625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:96.032000pt;}
.x4{left:120.032000pt;}
.x1{left:122.912000pt;}
.x5{left:144.026667pt;}
.x2{left:396.866667pt;}
}




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