
    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_780a0eb94561c7442576c63c.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_b8e7df5578cd022bd63f380f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.139000;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_95366f0a93fb801ec6a9f632.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.975000;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;}
.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;}
}
.ws0{word-spacing:-17.514000px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:119.319000px;}
._5{margin-left:-2748.594000px;}
._9{margin-left:-1946.934000px;}
._b{margin-left:-1571.952000px;}
._7{margin-left:-1372.518000px;}
._d{margin-left:-1267.785000px;}
._11{margin-left:-1114.974000px;}
._13{margin-left:-770.698500px;}
._f{margin-left:-595.383000px;}
._4{margin-left:-542.874000px;}
._2{margin-left:-423.693000px;}
._0{width:1.191000px;}
._c{width:73.776000px;}
._6{width:126.201000px;}
._a{width:199.695000px;}
._10{width:220.494000px;}
._8{width:360.795000px;}
._1{width:385.377000px;}
._e{width:469.533000px;}
._3{width:525.588000px;}
._12{width:653.851500px;}
.fc6{color:rgb(255,0,0);}
.fc4{color:rgb(0,105,214);}
.fc3{color:rgb(128,0,0);}
.fc2{color:rgb(0,79,152);}
.fc5{color:rgb(166,166,166);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:58.500000px;}
.fs5{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:83.940000px;}
.fs3{font-size:90.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:18.165000px;}
.y1{bottom:20.925000px;}
.y63{bottom:26.145000px;}
.y8a{bottom:31.095000px;}
.y1e{bottom:37.125000px;}
.y68{bottom:50.895000px;}
.y62{bottom:52.305000px;}
.y2{bottom:54.060000px;}
.y89{bottom:55.575000px;}
.yb1{bottom:59.280000px;}
.y1d{bottom:61.080000px;}
.y39{bottom:77.055000px;}
.y88{bottom:80.040000px;}
.y1c{bottom:85.050000px;}
.y87{bottom:104.505000px;}
.y61{bottom:104.955000px;}
.y1b{bottom:109.005000px;}
.yb0{bottom:116.775000px;}
.y91{bottom:129.255000px;}
.y60{bottom:129.420000px;}
.y86{bottom:130.665000px;}
.y1a{bottom:132.975000px;}
.y38{bottom:136.800000px;}
.y5f{bottom:153.900000px;}
.y37{bottom:161.265000px;}
.yaf{bottom:176.505000px;}
.y5e{bottom:178.365000px;}
.y3c{bottom:186.015000px;}
.y36{bottom:187.425000px;}
.y19{bottom:198.555000px;}
.yae{bottom:200.970000px;}
.y67{bottom:203.115000px;}
.y5d{bottom:204.525000px;}
.y18{bottom:222.525000px;}
.yad{bottom:225.450000px;}
.y85{bottom:231.120000px;}
.y17{bottom:246.480000px;}
.yac{bottom:249.915000px;}
.y90{bottom:253.680000px;}
.y84{bottom:255.090000px;}
.y16{bottom:270.450000px;}
.yab{bottom:276.075000px;}
.y3b{bottom:286.470000px;}
.y35{bottom:287.880000px;}
.y15{bottom:294.405000px;}
.yaa{bottom:300.030000px;}
.y5c{bottom:304.980000px;}
.y83{bottom:307.740000px;}
.y14{bottom:318.375000px;}
.y66{bottom:327.540000px;}
.y5b{bottom:328.950000px;}
.y82{bottom:332.205000px;}
.y13{bottom:342.330000px;}
.ya9{bottom:352.680000px;}
.y81{bottom:356.670000px;}
.ya8{bottom:377.145000px;}
.y80{bottom:381.150000px;}
.y5a{bottom:381.600000px;}
.y12{bottom:383.955000px;}
.y34{bottom:385.530000px;}
.ya7{bottom:399.375000px;}
.y7f{bottom:405.615000px;}
.y59{bottom:406.065000px;}
.y33{bottom:407.760000px;}
.y11{bottom:407.925000px;}
.ya6{bottom:423.840000px;}
.y7e{bottom:430.080000px;}
.y58{bottom:430.530000px;}
.y10{bottom:432.225000px;}
.y32{bottom:432.780000px;}
.yb5{bottom:448.590000px;}
.ya5{bottom:450.000000px;}
.y8f{bottom:454.830000px;}
.y57{bottom:455.010000px;}
.y7d{bottom:456.240000px;}
.yf{bottom:458.775000px;}
.y56{bottom:479.475000px;}
.y55{bottom:503.940000px;}
.y7c{bottom:508.890000px;}
.ye{bottom:512.655000px;}
.y54{bottom:528.405000px;}
.y3a{bottom:531.840000px;}
.y31{bottom:533.250000px;}
.y7b{bottom:533.355000px;}
.yd{bottom:536.955000px;}
.ya4{bottom:550.455000px;}
.y53{bottom:552.885000px;}
.y7a{bottom:557.820000px;}
.yc{bottom:561.255000px;}
.yb4{bottom:573.015000px;}
.ya3{bottom:574.425000px;}
.y52{bottom:577.350000px;}
.y79{bottom:582.300000px;}
.yb{bottom:585.225000px;}
.y30{bottom:590.730000px;}
.y65{bottom:602.100000px;}
.y51{bottom:603.510000px;}
.y8e{bottom:607.050000px;}
.y78{bottom:608.445000px;}
.ya{bottom:611.595000px;}
.ya2{bottom:627.075000px;}
.ya1{bottom:649.290000px;}
.y50{bottom:656.160000px;}
.ya0{bottom:673.755000px;}
.y2f{bottom:673.875000px;}
.y9{bottom:675.045000px;}
.y4f{bottom:680.625000px;}
.y2e{bottom:697.830000px;}
.y9f{bottom:698.220000px;}
.y4e{bottom:705.090000px;}
.y8d{bottom:707.505000px;}
.y77{bottom:708.915000px;}
.y8{bottom:709.260000px;}
.y2d{bottom:721.800000px;}
.y9e{bottom:722.700000px;}
.y4d{bottom:728.430000px;}
.y9d{bottom:744.915000px;}
.y2c{bottom:748.005000px;}
.y76{bottom:761.565000px;}
.y4c{bottom:767.025000px;}
.y9c{bottom:769.380000px;}
.y2b{bottom:780.180000px;}
.y75{bottom:786.030000px;}
.y4b{bottom:789.240000px;}
.y9b{bottom:793.845000px;}
.y7{bottom:802.740000px;}
.y74{bottom:810.510000px;}
.y4a{bottom:811.455000px;}
.y9a{bottom:816.075000px;}
.y49{bottom:833.685000px;}
.y73{bottom:834.975000px;}
.y99{bottom:840.540000px;}
.y2a{bottom:842.280000px;}
.y6{bottom:850.890000px;}
.y48{bottom:855.900000px;}
.y72{bottom:859.440000px;}
.y98{bottom:865.005000px;}
.y29{bottom:866.250000px;}
.y47{bottom:878.115000px;}
.y8c{bottom:884.190000px;}
.y71{bottom:885.600000px;}
.y5{bottom:886.890000px;}
.y97{bottom:889.485000px;}
.y28{bottom:890.205000px;}
.y96{bottom:913.950000px;}
.y27{bottom:914.175000px;}
.y46{bottom:916.695000px;}
.y4{bottom:922.890000px;}
.y95{bottom:936.165000px;}
.y26{bottom:938.130000px;}
.y70{bottom:938.250000px;}
.y45{bottom:938.925000px;}
.yb3{bottom:960.915000px;}
.y44{bottom:961.140000px;}
.y25{bottom:962.100000px;}
.y94{bottom:962.325000px;}
.y6f{bottom:962.715000px;}
.y43{bottom:983.355000px;}
.y24{bottom:986.055000px;}
.y6e{bottom:987.180000px;}
.y64{bottom:1007.325000px;}
.y42{bottom:1008.735000px;}
.y6d{bottom:1011.645000px;}
.y23{bottom:1012.440000px;}
.y8b{bottom:1036.395000px;}
.y6c{bottom:1037.805000px;}
.y41{bottom:1061.385000px;}
.y93{bottom:1062.780000px;}
.y22{bottom:1066.320000px;}
.yb2{bottom:1085.340000px;}
.y40{bottom:1085.850000px;}
.y92{bottom:1086.750000px;}
.y21{bottom:1090.290000px;}
.y6b{bottom:1090.455000px;}
.y3f{bottom:1112.010000px;}
.y20{bottom:1114.260000px;}
.y6a{bottom:1114.935000px;}
.y3{bottom:1128.150000px;}
.y3e{bottom:1135.965000px;}
.y1f{bottom:1138.215000px;}
.y69{bottom:1139.400000px;}
.h9{height:44.284500px;}
.h4{height:53.878500px;}
.h8{height:58.023000px;}
.h7{height:63.542580px;}
.h2{height:70.664062px;}
.h6{height:82.890000px;}
.h5{height:132.624000px;}
.h3{height:1154.760000px;}
.h0{height:1262.820000px;}
.h1{height:1263.000000px;}
.w2{width:784.920000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:19.125000px;}
.x3{left:22.500000px;}
.x5{left:28.125000px;}
.x8{left:33.750000px;}
.x4{left:34.875000px;}
.x2{left:54.000000px;}
.x7{left:73.125000px;}
.x9{left:76.500000px;}
.xb{left:78.750000px;}
.x6{left:710.895000px;}
.x1{left:829.920000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-15.568000pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:106.061333pt;}
._5{margin-left:-2443.194667pt;}
._9{margin-left:-1730.608000pt;}
._b{margin-left:-1397.290667pt;}
._7{margin-left:-1220.016000pt;}
._d{margin-left:-1126.920000pt;}
._11{margin-left:-991.088000pt;}
._13{margin-left:-685.065333pt;}
._f{margin-left:-529.229333pt;}
._4{margin-left:-482.554667pt;}
._2{margin-left:-376.616000pt;}
._0{width:1.058667pt;}
._c{width:65.578667pt;}
._6{width:112.178667pt;}
._a{width:177.506667pt;}
._10{width:195.994667pt;}
._8{width:320.706667pt;}
._1{width:342.557333pt;}
._e{width:417.362667pt;}
._3{width:467.189333pt;}
._12{width:581.201333pt;}
.fs1{font-size:52.000000pt;}
.fs5{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.613333pt;}
.fs3{font-size:80.000000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:16.146667pt;}
.y1{bottom:18.600000pt;}
.y63{bottom:23.240000pt;}
.y8a{bottom:27.640000pt;}
.y1e{bottom:33.000000pt;}
.y68{bottom:45.240000pt;}
.y62{bottom:46.493333pt;}
.y2{bottom:48.053333pt;}
.y89{bottom:49.400000pt;}
.yb1{bottom:52.693333pt;}
.y1d{bottom:54.293333pt;}
.y39{bottom:68.493333pt;}
.y88{bottom:71.146667pt;}
.y1c{bottom:75.600000pt;}
.y87{bottom:92.893333pt;}
.y61{bottom:93.293333pt;}
.y1b{bottom:96.893333pt;}
.yb0{bottom:103.800000pt;}
.y91{bottom:114.893333pt;}
.y60{bottom:115.040000pt;}
.y86{bottom:116.146667pt;}
.y1a{bottom:118.200000pt;}
.y38{bottom:121.600000pt;}
.y5f{bottom:136.800000pt;}
.y37{bottom:143.346667pt;}
.yaf{bottom:156.893333pt;}
.y5e{bottom:158.546667pt;}
.y3c{bottom:165.346667pt;}
.y36{bottom:166.600000pt;}
.y19{bottom:176.493333pt;}
.yae{bottom:178.640000pt;}
.y67{bottom:180.546667pt;}
.y5d{bottom:181.800000pt;}
.y18{bottom:197.800000pt;}
.yad{bottom:200.400000pt;}
.y85{bottom:205.440000pt;}
.y17{bottom:219.093333pt;}
.yac{bottom:222.146667pt;}
.y90{bottom:225.493333pt;}
.y84{bottom:226.746667pt;}
.y16{bottom:240.400000pt;}
.yab{bottom:245.400000pt;}
.y3b{bottom:254.640000pt;}
.y35{bottom:255.893333pt;}
.y15{bottom:261.693333pt;}
.yaa{bottom:266.693333pt;}
.y5c{bottom:271.093333pt;}
.y83{bottom:273.546667pt;}
.y14{bottom:283.000000pt;}
.y66{bottom:291.146667pt;}
.y5b{bottom:292.400000pt;}
.y82{bottom:295.293333pt;}
.y13{bottom:304.293333pt;}
.ya9{bottom:313.493333pt;}
.y81{bottom:317.040000pt;}
.ya8{bottom:335.240000pt;}
.y80{bottom:338.800000pt;}
.y5a{bottom:339.200000pt;}
.y12{bottom:341.293333pt;}
.y34{bottom:342.693333pt;}
.ya7{bottom:355.000000pt;}
.y7f{bottom:360.546667pt;}
.y59{bottom:360.946667pt;}
.y33{bottom:362.453333pt;}
.y11{bottom:362.600000pt;}
.ya6{bottom:376.746667pt;}
.y7e{bottom:382.293333pt;}
.y58{bottom:382.693333pt;}
.y10{bottom:384.200000pt;}
.y32{bottom:384.693333pt;}
.yb5{bottom:398.746667pt;}
.ya5{bottom:400.000000pt;}
.y8f{bottom:404.293333pt;}
.y57{bottom:404.453333pt;}
.y7d{bottom:405.546667pt;}
.yf{bottom:407.800000pt;}
.y56{bottom:426.200000pt;}
.y55{bottom:447.946667pt;}
.y7c{bottom:452.346667pt;}
.ye{bottom:455.693333pt;}
.y54{bottom:469.693333pt;}
.y3a{bottom:472.746667pt;}
.y31{bottom:474.000000pt;}
.y7b{bottom:474.093333pt;}
.yd{bottom:477.293333pt;}
.ya4{bottom:489.293333pt;}
.y53{bottom:491.453333pt;}
.y7a{bottom:495.840000pt;}
.yc{bottom:498.893333pt;}
.yb4{bottom:509.346667pt;}
.ya3{bottom:510.600000pt;}
.y52{bottom:513.200000pt;}
.y79{bottom:517.600000pt;}
.yb{bottom:520.200000pt;}
.y30{bottom:525.093333pt;}
.y65{bottom:535.200000pt;}
.y51{bottom:536.453333pt;}
.y8e{bottom:539.600000pt;}
.y78{bottom:540.840000pt;}
.ya{bottom:543.640000pt;}
.ya2{bottom:557.400000pt;}
.ya1{bottom:577.146667pt;}
.y50{bottom:583.253333pt;}
.ya0{bottom:598.893333pt;}
.y2f{bottom:599.000000pt;}
.y9{bottom:600.040000pt;}
.y4f{bottom:605.000000pt;}
.y2e{bottom:620.293333pt;}
.y9f{bottom:620.640000pt;}
.y4e{bottom:626.746667pt;}
.y8d{bottom:628.893333pt;}
.y77{bottom:630.146667pt;}
.y8{bottom:630.453333pt;}
.y2d{bottom:641.600000pt;}
.y9e{bottom:642.400000pt;}
.y4d{bottom:647.493333pt;}
.y9d{bottom:662.146667pt;}
.y2c{bottom:664.893333pt;}
.y76{bottom:676.946667pt;}
.y4c{bottom:681.800000pt;}
.y9c{bottom:683.893333pt;}
.y2b{bottom:693.493333pt;}
.y75{bottom:698.693333pt;}
.y4b{bottom:701.546667pt;}
.y9b{bottom:705.640000pt;}
.y7{bottom:713.546667pt;}
.y74{bottom:720.453333pt;}
.y4a{bottom:721.293333pt;}
.y9a{bottom:725.400000pt;}
.y49{bottom:741.053333pt;}
.y73{bottom:742.200000pt;}
.y99{bottom:747.146667pt;}
.y2a{bottom:748.693333pt;}
.y6{bottom:756.346667pt;}
.y48{bottom:760.800000pt;}
.y72{bottom:763.946667pt;}
.y98{bottom:768.893333pt;}
.y29{bottom:770.000000pt;}
.y47{bottom:780.546667pt;}
.y8c{bottom:785.946667pt;}
.y71{bottom:787.200000pt;}
.y5{bottom:788.346667pt;}
.y97{bottom:790.653333pt;}
.y28{bottom:791.293333pt;}
.y96{bottom:812.400000pt;}
.y27{bottom:812.600000pt;}
.y46{bottom:814.840000pt;}
.y4{bottom:820.346667pt;}
.y95{bottom:832.146667pt;}
.y26{bottom:833.893333pt;}
.y70{bottom:834.000000pt;}
.y45{bottom:834.600000pt;}
.yb3{bottom:854.146667pt;}
.y44{bottom:854.346667pt;}
.y25{bottom:855.200000pt;}
.y94{bottom:855.400000pt;}
.y6f{bottom:855.746667pt;}
.y43{bottom:874.093333pt;}
.y24{bottom:876.493333pt;}
.y6e{bottom:877.493333pt;}
.y64{bottom:895.400000pt;}
.y42{bottom:896.653333pt;}
.y6d{bottom:899.240000pt;}
.y23{bottom:899.946667pt;}
.y8b{bottom:921.240000pt;}
.y6c{bottom:922.493333pt;}
.y41{bottom:943.453333pt;}
.y93{bottom:944.693333pt;}
.y22{bottom:947.840000pt;}
.yb2{bottom:964.746667pt;}
.y40{bottom:965.200000pt;}
.y92{bottom:966.000000pt;}
.y21{bottom:969.146667pt;}
.y6b{bottom:969.293333pt;}
.y3f{bottom:988.453333pt;}
.y20{bottom:990.453333pt;}
.y6a{bottom:991.053333pt;}
.y3{bottom:1002.800000pt;}
.y3e{bottom:1009.746667pt;}
.y1f{bottom:1011.746667pt;}
.y69{bottom:1012.800000pt;}
.h9{height:39.364000pt;}
.h4{height:47.892000pt;}
.h8{height:51.576000pt;}
.h7{height:56.482293pt;}
.h2{height:62.812500pt;}
.h6{height:73.680000pt;}
.h5{height:117.888000pt;}
.h3{height:1026.453333pt;}
.h0{height:1122.506667pt;}
.h1{height:1122.666667pt;}
.w2{width:697.706667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:17.000000pt;}
.x3{left:20.000000pt;}
.x5{left:25.000000pt;}
.x8{left:30.000000pt;}
.x4{left:31.000000pt;}
.x2{left:48.000000pt;}
.x7{left:65.000000pt;}
.x9{left:68.000000pt;}
.xb{left:70.000000pt;}
.x6{left:631.906667pt;}
.x1{left:737.706667pt;}
}




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