
    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_34a88b69f578ff41508667ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_4d435f5974f40d2318d87a00.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_38991bfdcffee7b04fb302b2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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:20.160000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.203040px;}
.ls0{letter-spacing:0.258600px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-7.906440px;}
.ws4{word-spacing:-7.850880px;}
.ws1{word-spacing:-7.647840px;}
.ws3{word-spacing:0.000000px;}
.ws0{word-spacing:357.922560px;}
._3{margin-left:-7.207920px;}
._2{margin-left:-1.049040px;}
._0{width:1.015200px;}
._5{width:55.563120px;}
._7{width:61.388640px;}
._8{width:168.520080px;}
._4{width:365.775600px;}
._1{width:567.672960px;}
._6{width:1317.264240px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:33.840000px;}
.fs1{font-size:55.440000px;}
.y0{bottom:0.000000px;}
.y30{bottom:1.080000px;}
.y1c{bottom:1.260000px;}
.ya0{bottom:1.440000px;}
.ye{bottom:1.980000px;}
.y32{bottom:2.340000px;}
.y92{bottom:2.385000px;}
.y39{bottom:3.240000px;}
.y34{bottom:3.420000px;}
.y5f{bottom:11.340000px;}
.y8f{bottom:12.060000px;}
.y2f{bottom:12.240000px;}
.y15{bottom:12.420000px;}
.y9f{bottom:12.600000px;}
.y3a{bottom:18.000000px;}
.y3b{bottom:21.060000px;}
.y5e{bottom:22.500000px;}
.y7d{bottom:23.220000px;}
.y2e{bottom:23.400000px;}
.y1b{bottom:23.580000px;}
.y14{bottom:23.625000px;}
.y9e{bottom:23.760000px;}
.y9{bottom:28.440000px;}
.y8{bottom:29.160000px;}
.yc{bottom:33.120000px;}
.y5d{bottom:33.690000px;}
.y7c{bottom:34.380000px;}
.y2d{bottom:34.560000px;}
.y81{bottom:34.605000px;}
.y1a{bottom:34.740000px;}
.y13{bottom:34.785000px;}
.y9d{bottom:34.920000px;}
.ya9{bottom:35.640000px;}
.ya4{bottom:35.685000px;}
.y6{bottom:44.280000px;}
.y41{bottom:44.820000px;}
.y5c{bottom:44.850000px;}
.y7b{bottom:45.540000px;}
.y8e{bottom:45.570000px;}
.y2c{bottom:45.720000px;}
.y80{bottom:45.765000px;}
.y19{bottom:45.900000px;}
.y22{bottom:45.930000px;}
.y12{bottom:45.945000px;}
.y9c{bottom:46.080000px;}
.y68{bottom:46.800000px;}
.y40{bottom:47.880000px;}
.y5b{bottom:56.010000px;}
.y7a{bottom:56.700000px;}
.y8d{bottom:56.730000px;}
.y2b{bottom:56.880000px;}
.y65{bottom:56.925000px;}
.y18{bottom:57.060000px;}
.y21{bottom:57.090000px;}
.y11{bottom:57.105000px;}
.y3f{bottom:57.240000px;}
.y5a{bottom:67.170000px;}
.y79{bottom:67.860000px;}
.y8c{bottom:67.890000px;}
.y2a{bottom:68.040000px;}
.y64{bottom:68.085000px;}
.y17{bottom:68.220000px;}
.y20{bottom:68.250000px;}
.y10{bottom:68.265000px;}
.y3d{bottom:76.500000px;}
.y59{bottom:78.330000px;}
.y78{bottom:79.020000px;}
.y8b{bottom:79.050000px;}
.y29{bottom:79.200000px;}
.y9a{bottom:79.230000px;}
.y63{bottom:79.245000px;}
.y24{bottom:79.380000px;}
.y1f{bottom:79.410000px;}
.ya3{bottom:79.425000px;}
.y58{bottom:89.490000px;}
.y77{bottom:90.180000px;}
.y8a{bottom:90.210000px;}
.y61{bottom:90.360000px;}
.y99{bottom:90.390000px;}
.y28{bottom:90.405000px;}
.y57{bottom:100.650000px;}
.y76{bottom:101.340000px;}
.y89{bottom:101.370000px;}
.y6e{bottom:101.520000px;}
.y98{bottom:101.550000px;}
.y27{bottom:101.565000px;}
.y54{bottom:111.810000px;}
.y75{bottom:112.500000px;}
.y88{bottom:112.530000px;}
.y70{bottom:112.680000px;}
.y7f{bottom:112.725000px;}
.y53{bottom:122.970000px;}
.y74{bottom:123.660000px;}
.y87{bottom:123.690000px;}
.y90{bottom:130.140000px;}
.y52{bottom:134.130000px;}
.y73{bottom:134.820000px;}
.y86{bottom:134.850000px;}
.y51{bottom:145.290000px;}
.y85{bottom:146.010000px;}
.y50{bottom:156.450000px;}
.y84{bottom:157.170000px;}
.y56{bottom:167.610000px;}
.y4f{bottom:178.770000px;}
.y4e{bottom:189.930000px;}
.y4d{bottom:201.090000px;}
.y4c{bottom:212.250000px;}
.y83{bottom:219.060000px;}
.y4b{bottom:223.410000px;}
.y4a{bottom:234.570000px;}
.y55{bottom:245.730000px;}
.y49{bottom:256.890000px;}
.y48{bottom:268.050000px;}
.y47{bottom:279.255000px;}
.y46{bottom:290.415000px;}
.y45{bottom:301.575000px;}
.y66{bottom:352.470000px;}
.y94{bottom:385.050000px;}
.y82{bottom:396.930000px;}
.y1{bottom:421.410000px;}
.y26{bottom:422.850000px;}
.y6c{bottom:440.670000px;}
.ya2{bottom:441.210000px;}
.y62{bottom:452.550000px;}
.y7e{bottom:474.690000px;}
.ya1{bottom:530.175000px;}
.y31{bottom:533.235000px;}
.y25{bottom:545.115000px;}
.y60{bottom:552.495000px;}
.y95{bottom:596.235000px;}
.y9b{bottom:607.935000px;}
.y72{bottom:608.115000px;}
.y37{bottom:610.995000px;}
.y23{bottom:622.875000px;}
.y69{bottom:651.675000px;}
.y67{bottom:662.835000px;}
.y97{bottom:674.715000px;}
.yb{bottom:704.820000px;}
.ya{bottom:707.880000px;}
.y1e{bottom:711.795000px;}
.y7{bottom:717.240000px;}
.y44{bottom:719.175000px;}
.y4{bottom:736.500000px;}
.y71{bottom:752.505000px;}
.y3{bottom:775.740000px;}
.y96{bottom:785.805000px;}
.y2{bottom:789.060000px;}
.y33{bottom:800.025000px;}
.y1d{bottom:812.985000px;}
.y93{bottom:862.845000px;}
.y6f{bottom:874.725000px;}
.y36{bottom:890.025000px;}
.y16{bottom:902.985000px;}
.ya7{bottom:941.325000px;}
.yf{bottom:980.745000px;}
.ya5{bottom:985.065000px;}
.y91{bottom:996.225000px;}
.yab{bottom:1007.250000px;}
.y6d{bottom:1008.150000px;}
.ya6{bottom:1019.130000px;}
.y6b{bottom:1029.570000px;}
.y43{bottom:1041.450000px;}
.y35{bottom:1057.830000px;}
.y38{bottom:1070.070000px;}
.yaa{bottom:1074.030000px;}
.yd{bottom:1082.850000px;}
.ya8{bottom:1085.190000px;}
.y5{bottom:1094.370000px;}
.y6a{bottom:1118.490000px;}
.y3c{bottom:1128.930000px;}
.y42{bottom:1130.370000px;}
.y3e{bottom:1141.890000px;}
.h7{height:10.080000px;}
.h17{height:10.440000px;}
.he{height:11.160000px;}
.h1d{height:11.196000px;}
.h10{height:12.060000px;}
.hf{height:12.240000px;}
.h3{height:33.658242px;}
.h6{height:34.649648px;}
.h21{height:43.740000px;}
.h1f{height:44.496000px;}
.h5{height:52.380000px;}
.h1e{height:54.180000px;}
.h4{height:55.142227px;}
.h16{height:55.620000px;}
.hc{height:65.160000px;}
.h20{height:65.196000px;}
.h9{height:76.320000px;}
.h8{height:76.356000px;}
.hb{height:87.480000px;}
.ha{height:87.516000px;}
.h12{height:89.640000px;}
.h14{height:98.460000px;}
.h15{height:98.496000px;}
.h18{height:109.620000px;}
.hd{height:109.656000px;}
.h19{height:120.780000px;}
.h1b{height:120.816000px;}
.h1a{height:142.956000px;}
.h1c{height:165.270000px;}
.h13{height:309.675000px;}
.h2{height:797.145000px;}
.h11{height:1226.520000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:27.360000px;}
.w5{width:41.796000px;}
.w3{width:78.660000px;}
.w7{width:109.260000px;}
.w6{width:109.296000px;}
.wa{width:748.230000px;}
.w8{width:791.460000px;}
.w2{width:792.180000px;}
.w9{width:856.800000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x4{left:1.080000px;}
.x6{left:16.560000px;}
.x13{left:18.000000px;}
.x14{left:26.100000px;}
.x1{left:44.100000px;}
.x3{left:81.900000px;}
.xe{left:124.200000px;}
.xf{left:263.730000px;}
.x2{left:331.455000px;}
.x7{left:360.255000px;}
.x5{left:374.475000px;}
.x10{left:403.275000px;}
.x9{left:499.785000px;}
.x8{left:514.005000px;}
.x11{left:542.805000px;}
.xa{left:620.430000px;}
.xb{left:631.590000px;}
.xc{left:639.330000px;}
.x12{left:682.350000px;}
.xd{left:793.050000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.920000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.180480pt;}
.ls0{letter-spacing:0.229867pt;}
.ws2{word-spacing:-7.027947pt;}
.ws4{word-spacing:-6.978560pt;}
.ws1{word-spacing:-6.798080pt;}
.ws3{word-spacing:0.000000pt;}
.ws0{word-spacing:318.153387pt;}
._3{margin-left:-6.407040pt;}
._2{margin-left:-0.932480pt;}
._0{width:0.902400pt;}
._5{width:49.389440pt;}
._7{width:54.567680pt;}
._8{width:149.795627pt;}
._4{width:325.133867pt;}
._1{width:504.598187pt;}
._6{width:1170.901547pt;}
.fs0{font-size:30.080000pt;}
.fs1{font-size:49.280000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:0.960000pt;}
.y1c{bottom:1.120000pt;}
.ya0{bottom:1.280000pt;}
.ye{bottom:1.760000pt;}
.y32{bottom:2.080000pt;}
.y92{bottom:2.120000pt;}
.y39{bottom:2.880000pt;}
.y34{bottom:3.040000pt;}
.y5f{bottom:10.080000pt;}
.y8f{bottom:10.720000pt;}
.y2f{bottom:10.880000pt;}
.y15{bottom:11.040000pt;}
.y9f{bottom:11.200000pt;}
.y3a{bottom:16.000000pt;}
.y3b{bottom:18.720000pt;}
.y5e{bottom:20.000000pt;}
.y7d{bottom:20.640000pt;}
.y2e{bottom:20.800000pt;}
.y1b{bottom:20.960000pt;}
.y14{bottom:21.000000pt;}
.y9e{bottom:21.120000pt;}
.y9{bottom:25.280000pt;}
.y8{bottom:25.920000pt;}
.yc{bottom:29.440000pt;}
.y5d{bottom:29.946667pt;}
.y7c{bottom:30.560000pt;}
.y2d{bottom:30.720000pt;}
.y81{bottom:30.760000pt;}
.y1a{bottom:30.880000pt;}
.y13{bottom:30.920000pt;}
.y9d{bottom:31.040000pt;}
.ya9{bottom:31.680000pt;}
.ya4{bottom:31.720000pt;}
.y6{bottom:39.360000pt;}
.y41{bottom:39.840000pt;}
.y5c{bottom:39.866667pt;}
.y7b{bottom:40.480000pt;}
.y8e{bottom:40.506667pt;}
.y2c{bottom:40.640000pt;}
.y80{bottom:40.680000pt;}
.y19{bottom:40.800000pt;}
.y22{bottom:40.826667pt;}
.y12{bottom:40.840000pt;}
.y9c{bottom:40.960000pt;}
.y68{bottom:41.600000pt;}
.y40{bottom:42.560000pt;}
.y5b{bottom:49.786667pt;}
.y7a{bottom:50.400000pt;}
.y8d{bottom:50.426667pt;}
.y2b{bottom:50.560000pt;}
.y65{bottom:50.600000pt;}
.y18{bottom:50.720000pt;}
.y21{bottom:50.746667pt;}
.y11{bottom:50.760000pt;}
.y3f{bottom:50.880000pt;}
.y5a{bottom:59.706667pt;}
.y79{bottom:60.320000pt;}
.y8c{bottom:60.346667pt;}
.y2a{bottom:60.480000pt;}
.y64{bottom:60.520000pt;}
.y17{bottom:60.640000pt;}
.y20{bottom:60.666667pt;}
.y10{bottom:60.680000pt;}
.y3d{bottom:68.000000pt;}
.y59{bottom:69.626667pt;}
.y78{bottom:70.240000pt;}
.y8b{bottom:70.266667pt;}
.y29{bottom:70.400000pt;}
.y9a{bottom:70.426667pt;}
.y63{bottom:70.440000pt;}
.y24{bottom:70.560000pt;}
.y1f{bottom:70.586667pt;}
.ya3{bottom:70.600000pt;}
.y58{bottom:79.546667pt;}
.y77{bottom:80.160000pt;}
.y8a{bottom:80.186667pt;}
.y61{bottom:80.320000pt;}
.y99{bottom:80.346667pt;}
.y28{bottom:80.360000pt;}
.y57{bottom:89.466667pt;}
.y76{bottom:90.080000pt;}
.y89{bottom:90.106667pt;}
.y6e{bottom:90.240000pt;}
.y98{bottom:90.266667pt;}
.y27{bottom:90.280000pt;}
.y54{bottom:99.386667pt;}
.y75{bottom:100.000000pt;}
.y88{bottom:100.026667pt;}
.y70{bottom:100.160000pt;}
.y7f{bottom:100.200000pt;}
.y53{bottom:109.306667pt;}
.y74{bottom:109.920000pt;}
.y87{bottom:109.946667pt;}
.y90{bottom:115.680000pt;}
.y52{bottom:119.226667pt;}
.y73{bottom:119.840000pt;}
.y86{bottom:119.866667pt;}
.y51{bottom:129.146667pt;}
.y85{bottom:129.786667pt;}
.y50{bottom:139.066667pt;}
.y84{bottom:139.706667pt;}
.y56{bottom:148.986667pt;}
.y4f{bottom:158.906667pt;}
.y4e{bottom:168.826667pt;}
.y4d{bottom:178.746667pt;}
.y4c{bottom:188.666667pt;}
.y83{bottom:194.720000pt;}
.y4b{bottom:198.586667pt;}
.y4a{bottom:208.506667pt;}
.y55{bottom:218.426667pt;}
.y49{bottom:228.346667pt;}
.y48{bottom:238.266667pt;}
.y47{bottom:248.226667pt;}
.y46{bottom:258.146667pt;}
.y45{bottom:268.066667pt;}
.y66{bottom:313.306667pt;}
.y94{bottom:342.266667pt;}
.y82{bottom:352.826667pt;}
.y1{bottom:374.586667pt;}
.y26{bottom:375.866667pt;}
.y6c{bottom:391.706667pt;}
.ya2{bottom:392.186667pt;}
.y62{bottom:402.266667pt;}
.y7e{bottom:421.946667pt;}
.ya1{bottom:471.266667pt;}
.y31{bottom:473.986667pt;}
.y25{bottom:484.546667pt;}
.y60{bottom:491.106667pt;}
.y95{bottom:529.986667pt;}
.y9b{bottom:540.386667pt;}
.y72{bottom:540.546667pt;}
.y37{bottom:543.106667pt;}
.y23{bottom:553.666667pt;}
.y69{bottom:579.266667pt;}
.y67{bottom:589.186667pt;}
.y97{bottom:599.746667pt;}
.yb{bottom:626.506667pt;}
.ya{bottom:629.226667pt;}
.y1e{bottom:632.706667pt;}
.y7{bottom:637.546667pt;}
.y44{bottom:639.266667pt;}
.y4{bottom:654.666667pt;}
.y71{bottom:668.893333pt;}
.y3{bottom:689.546667pt;}
.y96{bottom:698.493333pt;}
.y2{bottom:701.386667pt;}
.y33{bottom:711.133333pt;}
.y1d{bottom:722.653333pt;}
.y93{bottom:766.973333pt;}
.y6f{bottom:777.533333pt;}
.y36{bottom:791.133333pt;}
.y16{bottom:802.653333pt;}
.ya7{bottom:836.733333pt;}
.yf{bottom:871.773333pt;}
.ya5{bottom:875.613333pt;}
.y91{bottom:885.533333pt;}
.yab{bottom:895.333333pt;}
.y6d{bottom:896.133333pt;}
.ya6{bottom:905.893333pt;}
.y6b{bottom:915.173333pt;}
.y43{bottom:925.733333pt;}
.y35{bottom:940.293333pt;}
.y38{bottom:951.173333pt;}
.yaa{bottom:954.693333pt;}
.yd{bottom:962.533333pt;}
.ya8{bottom:964.613333pt;}
.y5{bottom:972.773333pt;}
.y6a{bottom:994.213333pt;}
.y3c{bottom:1003.493333pt;}
.y42{bottom:1004.773333pt;}
.y3e{bottom:1015.013333pt;}
.h7{height:8.960000pt;}
.h17{height:9.280000pt;}
.he{height:9.920000pt;}
.h1d{height:9.952000pt;}
.h10{height:10.720000pt;}
.hf{height:10.880000pt;}
.h3{height:29.918437pt;}
.h6{height:30.799687pt;}
.h21{height:38.880000pt;}
.h1f{height:39.552000pt;}
.h5{height:46.560000pt;}
.h1e{height:48.160000pt;}
.h4{height:49.015312pt;}
.h16{height:49.440000pt;}
.hc{height:57.920000pt;}
.h20{height:57.952000pt;}
.h9{height:67.840000pt;}
.h8{height:67.872000pt;}
.hb{height:77.760000pt;}
.ha{height:77.792000pt;}
.h12{height:79.680000pt;}
.h14{height:87.520000pt;}
.h15{height:87.552000pt;}
.h18{height:97.440000pt;}
.hd{height:97.472000pt;}
.h19{height:107.360000pt;}
.h1b{height:107.392000pt;}
.h1a{height:127.072000pt;}
.h1c{height:146.906667pt;}
.h13{height:275.266667pt;}
.h2{height:708.573333pt;}
.h11{height:1090.240000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:24.320000pt;}
.w5{width:37.152000pt;}
.w3{width:69.920000pt;}
.w7{width:97.120000pt;}
.w6{width:97.152000pt;}
.wa{width:665.093333pt;}
.w8{width:703.520000pt;}
.w2{width:704.160000pt;}
.w9{width:761.600000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x4{left:0.960000pt;}
.x6{left:14.720000pt;}
.x13{left:16.000000pt;}
.x14{left:23.200000pt;}
.x1{left:39.200000pt;}
.x3{left:72.800000pt;}
.xe{left:110.400000pt;}
.xf{left:234.426667pt;}
.x2{left:294.626667pt;}
.x7{left:320.226667pt;}
.x5{left:332.866667pt;}
.x10{left:358.466667pt;}
.x9{left:444.253333pt;}
.x8{left:456.893333pt;}
.x11{left:482.493333pt;}
.xa{left:551.493333pt;}
.xb{left:561.413333pt;}
.xc{left:568.293333pt;}
.x12{left:606.533333pt;}
.xd{left:704.933333pt;}
}




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