
    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_f0142f8e8cb1864143af4229.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_e826aa893d9f64a0759308b5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_eb17ea3dd47e238a04892fd7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e564ff5b6ddfd5d3488ce369.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.805000;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_987e3a1107155d3b64fb326f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.188000;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:ff7;src:url('chunks/assets/font_aa07bf442fad2b1bc10ded75.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.188000;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.732000px;}
.lsd{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.342600px;}
.lsb{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.075000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.310800px;}
.ls1{letter-spacing:0.360000px;}
.lse{letter-spacing:0.466800px;}
.ls7{letter-spacing:0.648000px;}
.lsc{letter-spacing:0.720000px;}
.lsa{letter-spacing:26.208000px;}
.ls3{letter-spacing:29.664000px;}
.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:-35.310240px;}
.ws1{word-spacing:-34.578240px;}
.wsd{word-spacing:-18.293760px;}
.ws6{word-spacing:-18.221760px;}
.wsf{word-spacing:-18.040560px;}
.ws7{word-spacing:-17.884560px;}
.ws4{word-spacing:-17.573760px;}
.ws5{word-spacing:-17.498760px;}
.ws10{word-spacing:-17.231160px;}
.ws8{word-spacing:-16.632000px;}
.ws9{word-spacing:-16.488000px;}
.ws2{word-spacing:-16.344000px;}
.wsb{word-spacing:-16.272000px;}
.wsc{word-spacing:-16.056000px;}
.wse{word-spacing:-15.912000px;}
.ws3{word-spacing:-13.505760px;}
.wsa{word-spacing:0.000000px;}
._0{margin-left:-7.301040px;}
._2{margin-left:-6.253680px;}
._19{margin-left:-4.873680px;}
._5{margin-left:-3.620160px;}
._3{margin-left:-2.557200px;}
._1{margin-left:-1.093680px;}
._4{width:1.020000px;}
._12{width:2.198880px;}
._6{width:3.240000px;}
._8{width:4.356000px;}
._e{width:5.931360px;}
._9{width:7.344000px;}
._f{width:8.640000px;}
._14{width:10.656000px;}
._10{width:12.096000px;}
._b{width:13.248000px;}
._7{width:15.205680px;}
._d{width:17.293680px;}
._c{width:18.360000px;}
._16{width:19.512000px;}
._15{width:20.520000px;}
._a{width:22.248000px;}
._1a{width:23.544000px;}
._11{width:26.424000px;}
._13{width:30.528000px;}
._18{width:38.115360px;}
._17{width:39.312000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(46,83,149);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs2{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:81.540000px;}
.y3{bottom:100.440000px;}
.y29{bottom:121.500000px;}
.ya5{bottom:121.860000px;}
.y57{bottom:131.040000px;}
.y7d{bottom:134.640000px;}
.yc9{bottom:135.540000px;}
.y28{bottom:143.460000px;}
.ya4{bottom:143.820000px;}
.y56{bottom:153.000000px;}
.y7c{bottom:157.500000px;}
.yc8{bottom:157.680000px;}
.y27{bottom:165.420000px;}
.ya3{bottom:165.780000px;}
.y55{bottom:174.960000px;}
.yc7{bottom:179.640000px;}
.y7b{bottom:181.440000px;}
.y26{bottom:187.380000px;}
.ya2{bottom:187.740000px;}
.y54{bottom:196.920000px;}
.yc6{bottom:201.600000px;}
.y7a{bottom:203.400000px;}
.y25{bottom:209.340000px;}
.ya1{bottom:209.700000px;}
.y53{bottom:219.060000px;}
.yc5{bottom:223.560000px;}
.y79{bottom:226.260000px;}
.y24{bottom:231.300000px;}
.ya0{bottom:231.690000px;}
.y52{bottom:241.050000px;}
.yc4{bottom:245.550000px;}
.y78{bottom:251.130000px;}
.y23{bottom:253.290000px;}
.y9f{bottom:253.650000px;}
.y51{bottom:263.010000px;}
.yc3{bottom:267.510000px;}
.y22{bottom:275.250000px;}
.y9e{bottom:275.610000px;}
.y77{bottom:275.790000px;}
.y50{bottom:284.970000px;}
.yc2{bottom:289.470000px;}
.y21{bottom:297.210000px;}
.y9d{bottom:297.570000px;}
.y76{bottom:300.630000px;}
.y4f{bottom:306.930000px;}
.yc1{bottom:311.430000px;}
.y20{bottom:319.170000px;}
.y9c{bottom:319.530000px;}
.y75{bottom:324.390000px;}
.y4e{bottom:328.890000px;}
.yc0{bottom:333.390000px;}
.y1f{bottom:341.130000px;}
.y9b{bottom:345.450000px;}
.y74{bottom:346.350000px;}
.y4d{bottom:350.850000px;}
.ybf{bottom:355.350000px;}
.y1e{bottom:363.090000px;}
.y73{bottom:368.310000px;}
.y4c{bottom:372.810000px;}
.ybe{bottom:377.310000px;}
.y1d{bottom:385.230000px;}
.y72{bottom:390.270000px;}
.y4b{bottom:394.770000px;}
.y9a{bottom:397.110000px;}
.ybd{bottom:399.270000px;}
.y1c{bottom:407.190000px;}
.y71{bottom:412.230000px;}
.y4a{bottom:416.730000px;}
.y99{bottom:421.050000px;}
.ybc{bottom:421.230000px;}
.y1b{bottom:429.150000px;}
.y70{bottom:434.370000px;}
.y49{bottom:438.690000px;}
.y98{bottom:443.010000px;}
.ybb{bottom:443.190000px;}
.y1a{bottom:451.110000px;}
.y6f{bottom:457.230000px;}
.y48{bottom:460.650000px;}
.y97{bottom:465.015000px;}
.yba{bottom:465.195000px;}
.y19{bottom:477.075000px;}
.y6e{bottom:481.935000px;}
.y47{bottom:482.655000px;}
.yb9{bottom:487.335000px;}
.y96{bottom:487.875000px;}
.y18{bottom:504.435000px;}
.y46{bottom:504.615000px;}
.y6d{bottom:505.875000px;}
.ydf{bottom:507.315000px;}
.yb8{bottom:509.295000px;}
.y95{bottom:512.715000px;}
.y45{bottom:526.755000px;}
.y17{bottom:527.835000px;}
.yde{bottom:529.275000px;}
.yb7{bottom:531.255000px;}
.y94{bottom:536.475000px;}
.y44{bottom:548.715000px;}
.y6c{bottom:549.795000px;}
.ydd{bottom:551.235000px;}
.yb6{bottom:553.215000px;}
.y16{bottom:556.275000px;}
.y93{bottom:558.435000px;}
.y43{bottom:570.675000px;}
.y6b{bottom:571.755000px;}
.ydc{bottom:573.195000px;}
.yb5{bottom:575.175000px;}
.y92{bottom:580.395000px;}
.y42{bottom:592.635000px;}
.y15{bottom:594.075000px;}
.y6a{bottom:594.615000px;}
.ydb{bottom:595.335000px;}
.yb4{bottom:597.135000px;}
.y91{bottom:602.355000px;}
.y41{bottom:614.595000px;}
.yda{bottom:617.295000px;}
.y69{bottom:618.375000px;}
.yb3{bottom:619.095000px;}
.y90{bottom:624.315000px;}
.y14{bottom:628.995000px;}
.y40{bottom:636.555000px;}
.yd9{bottom:639.255000px;}
.y68{bottom:640.335000px;}
.yb2{bottom:641.055000px;}
.y8f{bottom:646.455000px;}
.y13{bottom:652.575000px;}
.y3f{bottom:658.515000px;}
.yd8{bottom:661.575000px;}
.y67{bottom:662.475000px;}
.yb1{bottom:663.015000px;}
.y8e{bottom:668.415000px;}
.y3e{bottom:680.475000px;}
.y12{bottom:681.195000px;}
.yb0{bottom:684.975000px;}
.y66{bottom:685.335000px;}
.yd7{bottom:685.875000px;}
.y8d{bottom:690.375000px;}
.y3d{bottom:702.465000px;}
.yaf{bottom:706.965000px;}
.y65{bottom:709.125000px;}
.yd6{bottom:709.665000px;}
.y8c{bottom:712.365000px;}
.y11{bottom:716.145000px;}
.y3c{bottom:724.425000px;}
.yae{bottom:728.925000px;}
.y64{bottom:731.085000px;}
.yd5{bottom:731.805000px;}
.y8b{bottom:735.225000px;}
.y10{bottom:739.545000px;}
.y3b{bottom:746.385000px;}
.yad{bottom:750.885000px;}
.y63{bottom:753.045000px;}
.yd4{bottom:753.765000px;}
.y8a{bottom:759.885000px;}
.yf{bottom:767.985000px;}
.y3a{bottom:768.345000px;}
.yac{bottom:772.845000px;}
.y62{bottom:775.005000px;}
.yd3{bottom:775.725000px;}
.y89{bottom:784.725000px;}
.y39{bottom:790.305000px;}
.yab{bottom:794.985000px;}
.y61{bottom:796.965000px;}
.yd2{bottom:797.685000px;}
.ye{bottom:802.905000px;}
.y88{bottom:809.385000px;}
.y38{bottom:812.265000px;}
.yaa{bottom:816.945000px;}
.yd1{bottom:819.645000px;}
.y60{bottom:819.825000px;}
.yd{bottom:825.405000px;}
.y87{bottom:833.325000px;}
.y37{bottom:834.405000px;}
.ya9{bottom:838.905000px;}
.yd0{bottom:841.605000px;}
.y5f{bottom:844.665000px;}
.y86{bottom:855.285000px;}
.y36{bottom:856.365000px;}
.ya8{bottom:860.865000px;}
.ycf{bottom:863.565000px;}
.y5e{bottom:869.325000px;}
.y85{bottom:877.245000px;}
.y35{bottom:878.685000px;}
.yc{bottom:878.865000px;}
.ya7{bottom:882.825000px;}
.yce{bottom:885.525000px;}
.y5d{bottom:894.165000px;}
.yb{bottom:897.945000px;}
.y84{bottom:900.105000px;}
.y34{bottom:903.345000px;}
.ya6{bottom:904.785000px;}
.ycd{bottom:911.445000px;}
.y5c{bottom:917.925000px;}
.y83{bottom:924.090000px;}
.ya{bottom:926.610000px;}
.y33{bottom:926.790000px;}
.ycc{bottom:938.850000px;}
.y5b{bottom:940.110000px;}
.y82{bottom:946.050000px;}
.y32{bottom:948.750000px;}
.y9{bottom:951.810000px;}
.y5a{bottom:962.430000px;}
.y81{bottom:968.010000px;}
.y31{bottom:970.710000px;}
.y8{bottom:977.010000px;}
.ycb{bottom:987.630000px;}
.y59{bottom:987.990000px;}
.y80{bottom:989.970000px;}
.y30{bottom:992.670000px;}
.y7{bottom:1002.390000px;}
.y7f{bottom:1011.930000px;}
.y58{bottom:1012.830000px;}
.y2f{bottom:1014.630000px;}
.y7e{bottom:1034.790000px;}
.yca{bottom:1035.150000px;}
.y2e{bottom:1036.590000px;}
.y2d{bottom:1058.550000px;}
.y6{bottom:1060.530000px;}
.y2c{bottom:1080.510000px;}
.y2b{bottom:1102.650000px;}
.y5{bottom:1105.710000px;}
.y2a{bottom:1124.610000px;}
.y2{bottom:1141.710000px;}
.y1{bottom:1247.400000px;}
.h7{height:52.727040px;}
.h3{height:59.439023px;}
.h8{height:60.477120px;}
.h2{height:65.884219px;}
.h5{height:71.613281px;}
.h6{height:79.620469px;}
.h4{height:155.400820px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w1{width:894.000000px;}
.w2{width:894.059987px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x1{left:84.959987px;}
.x8{left:89.099987px;}
.x5{left:90.899987px;}
.x7{left:110.555987px;}
.xb{left:111.995987px;}
.x9{left:131.615987px;}
.xc{left:138.995987px;}
.x2{left:196.769987px;}
.xa{left:273.809987px;}
.x6{left:362.234987px;}
.x4{left:594.644987px;}
.x3{left:800.969987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.650667pt;}
.lsd{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.304533pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.066667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.276267pt;}
.ls1{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.414933pt;}
.ls7{letter-spacing:0.576000pt;}
.lsc{letter-spacing:0.640000pt;}
.lsa{letter-spacing:23.296000pt;}
.ls3{letter-spacing:26.368000pt;}
.ws0{word-spacing:-31.386880pt;}
.ws1{word-spacing:-30.736213pt;}
.wsd{word-spacing:-16.261120pt;}
.ws6{word-spacing:-16.197120pt;}
.wsf{word-spacing:-16.036053pt;}
.ws7{word-spacing:-15.897387pt;}
.ws4{word-spacing:-15.621120pt;}
.ws5{word-spacing:-15.554453pt;}
.ws10{word-spacing:-15.316587pt;}
.ws8{word-spacing:-14.784000pt;}
.ws9{word-spacing:-14.656000pt;}
.ws2{word-spacing:-14.528000pt;}
.wsb{word-spacing:-14.464000pt;}
.wsc{word-spacing:-14.272000pt;}
.wse{word-spacing:-14.144000pt;}
.ws3{word-spacing:-12.005120pt;}
.wsa{word-spacing:0.000000pt;}
._0{margin-left:-6.489813pt;}
._2{margin-left:-5.558827pt;}
._19{margin-left:-4.332160pt;}
._5{margin-left:-3.217920pt;}
._3{margin-left:-2.273067pt;}
._1{margin-left:-0.972160pt;}
._4{width:0.906667pt;}
._12{width:1.954560pt;}
._6{width:2.880000pt;}
._8{width:3.872000pt;}
._e{width:5.272320pt;}
._9{width:6.528000pt;}
._f{width:7.680000pt;}
._14{width:9.472000pt;}
._10{width:10.752000pt;}
._b{width:11.776000pt;}
._7{width:13.516160pt;}
._d{width:15.372160pt;}
._c{width:16.320000pt;}
._16{width:17.344000pt;}
._15{width:18.240000pt;}
._a{width:19.776000pt;}
._1a{width:20.928000pt;}
._11{width:23.488000pt;}
._13{width:27.136000pt;}
._18{width:33.880320pt;}
._17{width:34.944000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs2{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:72.480000pt;}
.y3{bottom:89.280000pt;}
.y29{bottom:108.000000pt;}
.ya5{bottom:108.320000pt;}
.y57{bottom:116.480000pt;}
.y7d{bottom:119.680000pt;}
.yc9{bottom:120.480000pt;}
.y28{bottom:127.520000pt;}
.ya4{bottom:127.840000pt;}
.y56{bottom:136.000000pt;}
.y7c{bottom:140.000000pt;}
.yc8{bottom:140.160000pt;}
.y27{bottom:147.040000pt;}
.ya3{bottom:147.360000pt;}
.y55{bottom:155.520000pt;}
.yc7{bottom:159.680000pt;}
.y7b{bottom:161.280000pt;}
.y26{bottom:166.560000pt;}
.ya2{bottom:166.880000pt;}
.y54{bottom:175.040000pt;}
.yc6{bottom:179.200000pt;}
.y7a{bottom:180.800000pt;}
.y25{bottom:186.080000pt;}
.ya1{bottom:186.400000pt;}
.y53{bottom:194.720000pt;}
.yc5{bottom:198.720000pt;}
.y79{bottom:201.120000pt;}
.y24{bottom:205.600000pt;}
.ya0{bottom:205.946667pt;}
.y52{bottom:214.266667pt;}
.yc4{bottom:218.266667pt;}
.y78{bottom:223.226667pt;}
.y23{bottom:225.146667pt;}
.y9f{bottom:225.466667pt;}
.y51{bottom:233.786667pt;}
.yc3{bottom:237.786667pt;}
.y22{bottom:244.666667pt;}
.y9e{bottom:244.986667pt;}
.y77{bottom:245.146667pt;}
.y50{bottom:253.306667pt;}
.yc2{bottom:257.306667pt;}
.y21{bottom:264.186667pt;}
.y9d{bottom:264.506667pt;}
.y76{bottom:267.226667pt;}
.y4f{bottom:272.826667pt;}
.yc1{bottom:276.826667pt;}
.y20{bottom:283.706667pt;}
.y9c{bottom:284.026667pt;}
.y75{bottom:288.346667pt;}
.y4e{bottom:292.346667pt;}
.yc0{bottom:296.346667pt;}
.y1f{bottom:303.226667pt;}
.y9b{bottom:307.066667pt;}
.y74{bottom:307.866667pt;}
.y4d{bottom:311.866667pt;}
.ybf{bottom:315.866667pt;}
.y1e{bottom:322.746667pt;}
.y73{bottom:327.386667pt;}
.y4c{bottom:331.386667pt;}
.ybe{bottom:335.386667pt;}
.y1d{bottom:342.426667pt;}
.y72{bottom:346.906667pt;}
.y4b{bottom:350.906667pt;}
.y9a{bottom:352.986667pt;}
.ybd{bottom:354.906667pt;}
.y1c{bottom:361.946667pt;}
.y71{bottom:366.426667pt;}
.y4a{bottom:370.426667pt;}
.y99{bottom:374.266667pt;}
.ybc{bottom:374.426667pt;}
.y1b{bottom:381.466667pt;}
.y70{bottom:386.106667pt;}
.y49{bottom:389.946667pt;}
.y98{bottom:393.786667pt;}
.ybb{bottom:393.946667pt;}
.y1a{bottom:400.986667pt;}
.y6f{bottom:406.426667pt;}
.y48{bottom:409.466667pt;}
.y97{bottom:413.346667pt;}
.yba{bottom:413.506667pt;}
.y19{bottom:424.066667pt;}
.y6e{bottom:428.386667pt;}
.y47{bottom:429.026667pt;}
.yb9{bottom:433.186667pt;}
.y96{bottom:433.666667pt;}
.y18{bottom:448.386667pt;}
.y46{bottom:448.546667pt;}
.y6d{bottom:449.666667pt;}
.ydf{bottom:450.946667pt;}
.yb8{bottom:452.706667pt;}
.y95{bottom:455.746667pt;}
.y45{bottom:468.226667pt;}
.y17{bottom:469.186667pt;}
.yde{bottom:470.466667pt;}
.yb7{bottom:472.226667pt;}
.y94{bottom:476.866667pt;}
.y44{bottom:487.746667pt;}
.y6c{bottom:488.706667pt;}
.ydd{bottom:489.986667pt;}
.yb6{bottom:491.746667pt;}
.y16{bottom:494.466667pt;}
.y93{bottom:496.386667pt;}
.y43{bottom:507.266667pt;}
.y6b{bottom:508.226667pt;}
.ydc{bottom:509.506667pt;}
.yb5{bottom:511.266667pt;}
.y92{bottom:515.906667pt;}
.y42{bottom:526.786667pt;}
.y15{bottom:528.066667pt;}
.y6a{bottom:528.546667pt;}
.ydb{bottom:529.186667pt;}
.yb4{bottom:530.786667pt;}
.y91{bottom:535.426667pt;}
.y41{bottom:546.306667pt;}
.yda{bottom:548.706667pt;}
.y69{bottom:549.666667pt;}
.yb3{bottom:550.306667pt;}
.y90{bottom:554.946667pt;}
.y14{bottom:559.106667pt;}
.y40{bottom:565.826667pt;}
.yd9{bottom:568.226667pt;}
.y68{bottom:569.186667pt;}
.yb2{bottom:569.826667pt;}
.y8f{bottom:574.626667pt;}
.y13{bottom:580.066667pt;}
.y3f{bottom:585.346667pt;}
.yd8{bottom:588.066667pt;}
.y67{bottom:588.866667pt;}
.yb1{bottom:589.346667pt;}
.y8e{bottom:594.146667pt;}
.y3e{bottom:604.866667pt;}
.y12{bottom:605.506667pt;}
.yb0{bottom:608.866667pt;}
.y66{bottom:609.186667pt;}
.yd7{bottom:609.666667pt;}
.y8d{bottom:613.666667pt;}
.y3d{bottom:624.413333pt;}
.yaf{bottom:628.413333pt;}
.y65{bottom:630.333333pt;}
.yd6{bottom:630.813333pt;}
.y8c{bottom:633.213333pt;}
.y11{bottom:636.573333pt;}
.y3c{bottom:643.933333pt;}
.yae{bottom:647.933333pt;}
.y64{bottom:649.853333pt;}
.yd5{bottom:650.493333pt;}
.y8b{bottom:653.533333pt;}
.y10{bottom:657.373333pt;}
.y3b{bottom:663.453333pt;}
.yad{bottom:667.453333pt;}
.y63{bottom:669.373333pt;}
.yd4{bottom:670.013333pt;}
.y8a{bottom:675.453333pt;}
.yf{bottom:682.653333pt;}
.y3a{bottom:682.973333pt;}
.yac{bottom:686.973333pt;}
.y62{bottom:688.893333pt;}
.yd3{bottom:689.533333pt;}
.y89{bottom:697.533333pt;}
.y39{bottom:702.493333pt;}
.yab{bottom:706.653333pt;}
.y61{bottom:708.413333pt;}
.yd2{bottom:709.053333pt;}
.ye{bottom:713.693333pt;}
.y88{bottom:719.453333pt;}
.y38{bottom:722.013333pt;}
.yaa{bottom:726.173333pt;}
.yd1{bottom:728.573333pt;}
.y60{bottom:728.733333pt;}
.yd{bottom:733.693333pt;}
.y87{bottom:740.733333pt;}
.y37{bottom:741.693333pt;}
.ya9{bottom:745.693333pt;}
.yd0{bottom:748.093333pt;}
.y5f{bottom:750.813333pt;}
.y86{bottom:760.253333pt;}
.y36{bottom:761.213333pt;}
.ya8{bottom:765.213333pt;}
.ycf{bottom:767.613333pt;}
.y5e{bottom:772.733333pt;}
.y85{bottom:779.773333pt;}
.y35{bottom:781.053333pt;}
.yc{bottom:781.213333pt;}
.ya7{bottom:784.733333pt;}
.yce{bottom:787.133333pt;}
.y5d{bottom:794.813333pt;}
.yb{bottom:798.173333pt;}
.y84{bottom:800.093333pt;}
.y34{bottom:802.973333pt;}
.ya6{bottom:804.253333pt;}
.ycd{bottom:810.173333pt;}
.y5c{bottom:815.933333pt;}
.y83{bottom:821.413333pt;}
.ya{bottom:823.653333pt;}
.y33{bottom:823.813333pt;}
.ycc{bottom:834.533333pt;}
.y5b{bottom:835.653333pt;}
.y82{bottom:840.933333pt;}
.y32{bottom:843.333333pt;}
.y9{bottom:846.053333pt;}
.y5a{bottom:855.493333pt;}
.y81{bottom:860.453333pt;}
.y31{bottom:862.853333pt;}
.y8{bottom:868.453333pt;}
.ycb{bottom:877.893333pt;}
.y59{bottom:878.213333pt;}
.y80{bottom:879.973333pt;}
.y30{bottom:882.373333pt;}
.y7{bottom:891.013333pt;}
.y7f{bottom:899.493333pt;}
.y58{bottom:900.293333pt;}
.y2f{bottom:901.893333pt;}
.y7e{bottom:919.813333pt;}
.yca{bottom:920.133333pt;}
.y2e{bottom:921.413333pt;}
.y2d{bottom:940.933333pt;}
.y6{bottom:942.693333pt;}
.y2c{bottom:960.453333pt;}
.y2b{bottom:980.133333pt;}
.y5{bottom:982.853333pt;}
.y2a{bottom:999.653333pt;}
.y2{bottom:1014.853333pt;}
.y1{bottom:1108.800000pt;}
.h7{height:46.868480pt;}
.h3{height:52.834688pt;}
.h8{height:53.757440pt;}
.h2{height:58.563750pt;}
.h5{height:63.656250pt;}
.h6{height:70.773750pt;}
.h4{height:138.134062pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w1{width:794.666667pt;}
.w2{width:794.719988pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519988pt;}
.x8{left:79.199988pt;}
.x5{left:80.799988pt;}
.x7{left:98.271988pt;}
.xb{left:99.551988pt;}
.x9{left:116.991988pt;}
.xc{left:123.551988pt;}
.x2{left:174.906655pt;}
.xa{left:243.386655pt;}
.x6{left:321.986655pt;}
.x4{left:528.573321pt;}
.x3{left:711.973321pt;}
}




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