
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_2df4a711d2f67efd80b4831f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_4291fc2f84ed842b0ff568b3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_08093679072522c8240679db.woff')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_cbf9d279bd99b9a0180469a6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_e8f538aac01838f2f9845ed6.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_275e32335edf3379578e2ac1.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls11{letter-spacing:-0.186600px;}
.lsd{letter-spacing:-0.158400px;}
.ls9{letter-spacing:-0.135000px;}
.ls12{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.lsb{letter-spacing:-0.008400px;}
.ls6{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.023040px;}
.lsf{letter-spacing:0.045360px;}
.ls2{letter-spacing:0.065520px;}
.lsa{letter-spacing:0.081600px;}
.ls1{letter-spacing:0.090000px;}
.ls7{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls3{letter-spacing:0.174600px;}
.ls5{letter-spacing:0.185520px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.453600px;}
.ls14{letter-spacing:47.726640px;}
.ls13{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2{word-spacing:-18.535200px;}
.ws9{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.ws4{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.141800px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsa{word-spacing:-8.576640px;}
.ws3{word-spacing:-8.553600px;}
.ws5{word-spacing:-8.395200px;}
.ws7{word-spacing:0.000000px;}
._1{margin-left:-4.361040px;}
._8{margin-left:-2.409000px;}
._0{margin-left:-1.110000px;}
._2{width:1.140108px;}
._5{width:3.096624px;}
._6{width:4.497600px;}
._7{width:5.781448px;}
._4{width:6.824272px;}
._b{width:8.056080px;}
._3{width:9.157188px;}
._a{width:10.340640px;}
._9{width:12.052080px;}
._e{width:15.631200px;}
._f{width:16.713360px;}
._d{width:31.805760px;}
._c{width:32.825520px;}
._10{width:2377.084680px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y7d{bottom:6.300000px;}
.y5d{bottom:7.740000px;}
.y4e{bottom:7.830000px;}
.y4c{bottom:7.920000px;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y52{bottom:109.200000px;}
.y78{bottom:123.510000px;}
.y9d{bottom:127.110000px;}
.y51{bottom:136.470000px;}
.y9c{bottom:144.750000px;}
.yc0{bottom:145.470000px;}
.y77{bottom:150.870000px;}
.y25{bottom:157.260000px;}
.y50{bottom:163.830000px;}
.ybf{bottom:172.380000px;}
.y24{bottom:174.900000px;}
.y76{bottom:178.230000px;}
.y9b{bottom:180.300000px;}
.y4f{bottom:191.190000px;}
.y23{bottom:192.450000px;}
.y9a{bottom:197.940000px;}
.ybe{bottom:209.730000px;}
.y99{bottom:215.490000px;}
.y4d{bottom:218.550000px;}
.y75{bottom:226.920000px;}
.y22{bottom:228.000000px;}
.y98{bottom:233.040000px;}
.ye7{bottom:241.680000px;}
.y21{bottom:245.640000px;}
.y4b{bottom:245.820000px;}
.y97{bottom:250.680000px;}
.ybd{bottom:257.970000px;}
.ye6{bottom:259.230000px;}
.y74{bottom:262.470000px;}
.y20{bottom:263.190000px;}
.ybc{bottom:275.610000px;}
.y73{bottom:280.110000px;}
.ye5{bottom:285.780000px;}
.y96{bottom:286.230000px;}
.y4a{bottom:294.510000px;}
.y1f{bottom:298.830000px;}
.ye4{bottom:303.420000px;}
.ybb{bottom:311.160000px;}
.y72{bottom:313.050000px;}
.y95{bottom:313.140000px;}
.y1e{bottom:316.380000px;}
.ye3{bottom:329.970000px;}
.y49{bottom:330.150000px;}
.y71{bottom:338.880000px;}
.yba{bottom:346.710000px;}
.y48{bottom:347.700000px;}
.y1d{bottom:351.930000px;}
.ye2{bottom:356.610000px;}
.y94{bottom:361.470000px;}
.yb9{bottom:364.350000px;}
.y70{bottom:364.710000px;}
.y47{bottom:365.340000px;}
.y1c{bottom:369.570000px;}
.ye1{bottom:374.160000px;}
.y93{bottom:379.020000px;}
.y46{bottom:382.890000px;}
.y1b{bottom:387.120000px;}
.y6f{bottom:390.540000px;}
.yb8{bottom:391.260000px;}
.y92{bottom:396.570000px;}
.ye0{bottom:400.710000px;}
.y1a{bottom:404.670000px;}
.y6e{bottom:416.370000px;}
.ydf{bottom:418.350000px;}
.y45{bottom:418.440000px;}
.y19{bottom:422.310000px;}
.yb7{bottom:428.250000px;}
.y91{bottom:429.600000px;}
.y44{bottom:436.080000px;}
.y18{bottom:439.860000px;}
.y6d{bottom:442.200000px;}
.yde{bottom:444.900000px;}
.yb6{bottom:445.800000px;}
.y43{bottom:453.630000px;}
.y90{bottom:453.900000px;}
.ydd{bottom:462.450000px;}
.yb5{bottom:472.740000px;}
.y17{bottom:475.530000px;}
.y8f{bottom:478.230000px;}
.y42{bottom:480.570000px;}
.ydc{bottom:489.120000px;}
.y6c{bottom:489.480000px;}
.y16{bottom:493.080000px;}
.y8e{bottom:502.620000px;}
.y6b{bottom:504.420000px;}
.ydb{bottom:515.670000px;}
.yb4{bottom:521.070000px;}
.y8d{bottom:526.920000px;}
.y15{bottom:528.630000px;}
.y41{bottom:528.900000px;}
.y6a{bottom:530.250000px;}
.yb3{bottom:538.620000px;}
.yda{bottom:542.310000px;}
.y40{bottom:546.450000px;}
.y8c{bottom:551.310000px;}
.y69{bottom:556.080000px;}
.yd9{bottom:559.860000px;}
.y3f{bottom:564.000000px;}
.y14{bottom:564.270000px;}
.yb2{bottom:574.260000px;}
.y8b{bottom:575.610000px;}
.y3e{bottom:581.640000px;}
.y13{bottom:581.820000px;}
.y68{bottom:581.910000px;}
.yd8{bottom:586.410000px;}
.yb1{bottom:591.810000px;}
.y12{bottom:599.460000px;}
.y8a{bottom:599.910000px;}
.yd7{bottom:604.050000px;}
.y67{bottom:607.740000px;}
.y3d{bottom:608.550000px;}
.y11{bottom:617.010000px;}
.y89{bottom:624.300000px;}
.yb0{bottom:627.360000px;}
.yd6{bottom:630.600000px;}
.y66{bottom:633.660000px;}
.y10{bottom:643.920000px;}
.yaf{bottom:645.000000px;}
.yd5{bottom:648.240000px;}
.y88{bottom:648.600000px;}
.y3c{bottom:656.790000px;}
.y65{bottom:659.490000px;}
.yd4{bottom:665.790000px;}
.y87{bottom:672.990000px;}
.y3b{bottom:674.340000px;}
.yae{bottom:680.550000px;}
.yf{bottom:690.720000px;}
.y3a{bottom:691.980000px;}
.yd3{bottom:692.340000px;}
.y86{bottom:697.290000px;}
.yad{bottom:698.190000px;}
.y64{bottom:706.650000px;}
.yd2{bottom:709.980000px;}
.yac{bottom:715.740000px;}
.y63{bottom:721.590000px;}
.ye{bottom:726.540000px;}
.y39{bottom:727.530000px;}
.yab{bottom:733.290000px;}
.y38{bottom:745.170000px;}
.y85{bottom:745.980000px;}
.y62{bottom:747.420000px;}
.yd1{bottom:754.170000px;}
.yd{bottom:762.540000px;}
.y37{bottom:762.720000px;}
.yaa{bottom:768.930000px;}
.y84{bottom:770.280000px;}
.yd0{bottom:771.720000px;}
.y61{bottom:773.250000px;}
.y36{bottom:780.270000px;}
.ya9{bottom:786.480000px;}
.ycf{bottom:789.270000px;}
.y83{bottom:794.670000px;}
.y35{bottom:797.910000px;}
.y60{bottom:799.170000px;}
.yc{bottom:802.320000px;}
.ya8{bottom:804.030000px;}
.y34{bottom:815.460000px;}
.yce{bottom:815.910000px;}
.y82{bottom:818.970000px;}
.yb{bottom:820.320000px;}
.y5f{bottom:825.000000px;}
.ycd{bottom:833.460000px;}
.ya7{bottom:839.670000px;}
.y81{bottom:843.270000px;}
.y5e{bottom:850.830000px;}
.y33{bottom:851.100000px;}
.ya{bottom:852.630000px;}
.ya6{bottom:857.220000px;}
.ycc{bottom:860.100000px;}
.y80{bottom:867.660000px;}
.y32{bottom:868.650000px;}
.y9{bottom:871.980000px;}
.ya5{bottom:874.860000px;}
.y5c{bottom:876.660000px;}
.y31{bottom:886.200000px;}
.ycb{bottom:886.650000px;}
.y8{bottom:891.330000px;}
.y7f{bottom:891.960000px;}
.y5b{bottom:902.490000px;}
.yca{bottom:904.200000px;}
.ya4{bottom:910.410000px;}
.y7{bottom:910.590000px;}
.y7e{bottom:916.350000px;}
.y30{bottom:921.840000px;}
.ya3{bottom:927.960000px;}
.y5a{bottom:928.320000px;}
.y6{bottom:929.940000px;}
.yc9{bottom:930.840000px;}
.y2f{bottom:939.390000px;}
.y7c{bottom:940.650000px;}
.yc8{bottom:948.390000px;}
.y5{bottom:949.290000px;}
.y2e{bottom:957.030000px;}
.ya2{bottom:963.600000px;}
.yc7{bottom:975.030000px;}
.y59{bottom:975.480000px;}
.ya1{bottom:981.150000px;}
.y2d{bottom:983.850000px;}
.y7b{bottom:986.370000px;}
.y4{bottom:987.630000px;}
.y58{bottom:990.510000px;}
.yc6{bottom:992.580000px;}
.ya0{bottom:998.790000px;}
.y3{bottom:1012.320000px;}
.y9f{bottom:1016.370000px;}
.y57{bottom:1017.810000px;}
.yc5{bottom:1019.160000px;}
.y7a{bottom:1021.950000px;}
.y2c{bottom:1032.480000px;}
.yc4{bottom:1036.800000px;}
.y79{bottom:1039.500000px;}
.y56{bottom:1045.170000px;}
.y9e{bottom:1051.920000px;}
.yc3{bottom:1063.710000px;}
.y2b{bottom:1069.560000px;}
.y55{bottom:1072.530000px;}
.y2a{bottom:1087.110000px;}
.y54{bottom:1099.890000px;}
.yc2{bottom:1111.950000px;}
.y29{bottom:1122.750000px;}
.y53{bottom:1127.160000px;}
.yc1{bottom:1138.860000px;}
.y28{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.he{height:23.580000px;}
.hf{height:23.610000px;}
.hd{height:25.020000px;}
.hc{height:25.110000px;}
.ha{height:26.550000px;}
.hb{height:26.580000px;}
.h9{height:26.640000px;}
.h2{height:26.995781px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h10{height:61.793886px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w16{width:52.920000px;}
.w5{width:61.380000px;}
.wf{width:61.470000px;}
.w13{width:69.120000px;}
.w11{width:77.490000px;}
.w4{width:80.820000px;}
.w1b{width:80.850000px;}
.wb{width:80.910000px;}
.we{width:86.670000px;}
.w12{width:88.470000px;}
.w3{width:93.510000px;}
.w6{width:100.560000px;}
.w10{width:100.650000px;}
.w14{width:108.300000px;}
.wa{width:111.330000px;}
.w17{width:118.530000px;}
.w18{width:123.150000px;}
.wc{width:143.370000px;}
.w7{width:143.460000px;}
.w15{width:151.020000px;}
.w1a{width:255.960000px;}
.w19{width:461.910000px;}
.wd{width:475.950000px;}
.w8{width:482.790000px;}
.w9{width:500.610000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:3.960000px;}
.x15{left:7.740000px;}
.x1{left:68.040000px;}
.x1d{left:111.239987px;}
.x2{left:192.719987px;}
.xa{left:196.320000px;}
.x14{left:197.940000px;}
.x4{left:205.230000px;}
.xf{left:208.650000px;}
.x1b{left:215.670000px;}
.x16{left:276.240000px;}
.x10{left:296.130000px;}
.x6{left:299.460000px;}
.xb{left:308.370000px;}
.x19{left:352.290000px;}
.x17{left:365.430000px;}
.x11{left:377.670000px;}
.x7{left:381.090000px;}
.xc{left:390.000000px;}
.x18{left:435.270000px;}
.x12{left:439.860000px;}
.x8{left:443.280000px;}
.xd{left:452.190000px;}
.x1a{left:471.540000px;}
.x13{left:541.230000px;}
.x9{left:544.560000px;}
.xe{left:553.560000px;}
.x1c{left:616.110000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls11{letter-spacing:-0.165867pt;}
.lsd{letter-spacing:-0.140800pt;}
.ls9{letter-spacing:-0.120000pt;}
.ls12{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.lsb{letter-spacing:-0.007467pt;}
.ls6{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.020480pt;}
.lsf{letter-spacing:0.040320pt;}
.ls2{letter-spacing:0.058240pt;}
.lsa{letter-spacing:0.072533pt;}
.ls1{letter-spacing:0.080000pt;}
.ls7{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls3{letter-spacing:0.155200pt;}
.ls5{letter-spacing:0.164907pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.403200pt;}
.ls14{letter-spacing:42.423680pt;}
.ls13{letter-spacing:71.863680pt;}
.ws2{word-spacing:-16.475733pt;}
.ws9{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.ws4{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.681600pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsa{word-spacing:-7.623680pt;}
.ws3{word-spacing:-7.603200pt;}
.ws5{word-spacing:-7.462400pt;}
.ws7{word-spacing:0.000000pt;}
._1{margin-left:-3.876480pt;}
._8{margin-left:-2.141333pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.013430pt;}
._5{width:2.752554pt;}
._6{width:3.997866pt;}
._7{width:5.139065pt;}
._4{width:6.066020pt;}
._b{width:7.160960pt;}
._3{width:8.139723pt;}
._a{width:9.191680pt;}
._9{width:10.712960pt;}
._e{width:13.894400pt;}
._f{width:14.856320pt;}
._d{width:28.271787pt;}
._c{width:29.178240pt;}
._10{width:2112.964160pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:5.600000pt;}
.y5d{bottom:6.880000pt;}
.y4e{bottom:6.960000pt;}
.y4c{bottom:7.040000pt;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y52{bottom:97.066667pt;}
.y78{bottom:109.786667pt;}
.y9d{bottom:112.986667pt;}
.y51{bottom:121.306667pt;}
.y9c{bottom:128.666667pt;}
.yc0{bottom:129.306667pt;}
.y77{bottom:134.106667pt;}
.y25{bottom:139.786667pt;}
.y50{bottom:145.626667pt;}
.ybf{bottom:153.226667pt;}
.y24{bottom:155.466667pt;}
.y76{bottom:158.426667pt;}
.y9b{bottom:160.266667pt;}
.y4f{bottom:169.946667pt;}
.y23{bottom:171.066667pt;}
.y9a{bottom:175.946667pt;}
.ybe{bottom:186.426667pt;}
.y99{bottom:191.546667pt;}
.y4d{bottom:194.266667pt;}
.y75{bottom:201.706667pt;}
.y22{bottom:202.666667pt;}
.y98{bottom:207.146667pt;}
.ye7{bottom:214.826667pt;}
.y21{bottom:218.346667pt;}
.y4b{bottom:218.506667pt;}
.y97{bottom:222.826667pt;}
.ybd{bottom:229.306667pt;}
.ye6{bottom:230.426667pt;}
.y74{bottom:233.306667pt;}
.y20{bottom:233.946667pt;}
.ybc{bottom:244.986667pt;}
.y73{bottom:248.986667pt;}
.ye5{bottom:254.026667pt;}
.y96{bottom:254.426667pt;}
.y4a{bottom:261.786667pt;}
.y1f{bottom:265.626667pt;}
.ye4{bottom:269.706667pt;}
.ybb{bottom:276.586667pt;}
.y72{bottom:278.266667pt;}
.y95{bottom:278.346667pt;}
.y1e{bottom:281.226667pt;}
.ye3{bottom:293.306667pt;}
.y49{bottom:293.466667pt;}
.y71{bottom:301.226667pt;}
.yba{bottom:308.186667pt;}
.y48{bottom:309.066667pt;}
.y1d{bottom:312.826667pt;}
.ye2{bottom:316.986667pt;}
.y94{bottom:321.306667pt;}
.yb9{bottom:323.866667pt;}
.y70{bottom:324.186667pt;}
.y47{bottom:324.746667pt;}
.y1c{bottom:328.506667pt;}
.ye1{bottom:332.586667pt;}
.y93{bottom:336.906667pt;}
.y46{bottom:340.346667pt;}
.y1b{bottom:344.106667pt;}
.y6f{bottom:347.146667pt;}
.yb8{bottom:347.786667pt;}
.y92{bottom:352.506667pt;}
.ye0{bottom:356.186667pt;}
.y1a{bottom:359.706667pt;}
.y6e{bottom:370.106667pt;}
.ydf{bottom:371.866667pt;}
.y45{bottom:371.946667pt;}
.y19{bottom:375.386667pt;}
.yb7{bottom:380.666667pt;}
.y91{bottom:381.866667pt;}
.y44{bottom:387.626667pt;}
.y18{bottom:390.986667pt;}
.y6d{bottom:393.066667pt;}
.yde{bottom:395.466667pt;}
.yb6{bottom:396.266667pt;}
.y43{bottom:403.226667pt;}
.y90{bottom:403.466667pt;}
.ydd{bottom:411.066667pt;}
.yb5{bottom:420.213333pt;}
.y17{bottom:422.693333pt;}
.y8f{bottom:425.093333pt;}
.y42{bottom:427.173333pt;}
.ydc{bottom:434.773333pt;}
.y6c{bottom:435.093333pt;}
.y16{bottom:438.293333pt;}
.y8e{bottom:446.773333pt;}
.y6b{bottom:448.373333pt;}
.ydb{bottom:458.373333pt;}
.yb4{bottom:463.173333pt;}
.y8d{bottom:468.373333pt;}
.y15{bottom:469.893333pt;}
.y41{bottom:470.133333pt;}
.y6a{bottom:471.333333pt;}
.yb3{bottom:478.773333pt;}
.yda{bottom:482.053333pt;}
.y40{bottom:485.733333pt;}
.y8c{bottom:490.053333pt;}
.y69{bottom:494.293333pt;}
.yd9{bottom:497.653333pt;}
.y3f{bottom:501.333333pt;}
.y14{bottom:501.573333pt;}
.yb2{bottom:510.453333pt;}
.y8b{bottom:511.653333pt;}
.y3e{bottom:517.013333pt;}
.y13{bottom:517.173333pt;}
.y68{bottom:517.253333pt;}
.yd8{bottom:521.253333pt;}
.yb1{bottom:526.053333pt;}
.y12{bottom:532.853333pt;}
.y8a{bottom:533.253333pt;}
.yd7{bottom:536.933333pt;}
.y67{bottom:540.213333pt;}
.y3d{bottom:540.933333pt;}
.y11{bottom:548.453333pt;}
.y89{bottom:554.933333pt;}
.yb0{bottom:557.653333pt;}
.yd6{bottom:560.533333pt;}
.y66{bottom:563.253333pt;}
.y10{bottom:572.373333pt;}
.yaf{bottom:573.333333pt;}
.yd5{bottom:576.213333pt;}
.y88{bottom:576.533333pt;}
.y3c{bottom:583.813333pt;}
.y65{bottom:586.213333pt;}
.yd4{bottom:591.813333pt;}
.y87{bottom:598.213333pt;}
.y3b{bottom:599.413333pt;}
.yae{bottom:604.933333pt;}
.yf{bottom:613.973333pt;}
.y3a{bottom:615.093333pt;}
.yd3{bottom:615.413333pt;}
.y86{bottom:619.813333pt;}
.yad{bottom:620.613333pt;}
.y64{bottom:628.133333pt;}
.yd2{bottom:631.093333pt;}
.yac{bottom:636.213333pt;}
.y63{bottom:641.413333pt;}
.ye{bottom:645.813333pt;}
.y39{bottom:646.693333pt;}
.yab{bottom:651.813333pt;}
.y38{bottom:662.373333pt;}
.y85{bottom:663.093333pt;}
.y62{bottom:664.373333pt;}
.yd1{bottom:670.373333pt;}
.yd{bottom:677.813333pt;}
.y37{bottom:677.973333pt;}
.yaa{bottom:683.493333pt;}
.y84{bottom:684.693333pt;}
.yd0{bottom:685.973333pt;}
.y61{bottom:687.333333pt;}
.y36{bottom:693.573333pt;}
.ya9{bottom:699.093333pt;}
.ycf{bottom:701.573333pt;}
.y83{bottom:706.373333pt;}
.y35{bottom:709.253333pt;}
.y60{bottom:710.373333pt;}
.yc{bottom:713.173333pt;}
.ya8{bottom:714.693333pt;}
.y34{bottom:724.853333pt;}
.yce{bottom:725.253333pt;}
.y82{bottom:727.973333pt;}
.yb{bottom:729.173333pt;}
.y5f{bottom:733.333333pt;}
.ycd{bottom:740.853333pt;}
.ya7{bottom:746.373333pt;}
.y81{bottom:749.573333pt;}
.y5e{bottom:756.293333pt;}
.y33{bottom:756.533333pt;}
.ya{bottom:757.893333pt;}
.ya6{bottom:761.973333pt;}
.ycc{bottom:764.533333pt;}
.y80{bottom:771.253333pt;}
.y32{bottom:772.133333pt;}
.y9{bottom:775.093333pt;}
.ya5{bottom:777.653333pt;}
.y5c{bottom:779.253333pt;}
.y31{bottom:787.733333pt;}
.ycb{bottom:788.133333pt;}
.y8{bottom:792.293333pt;}
.y7f{bottom:792.853333pt;}
.y5b{bottom:802.213333pt;}
.yca{bottom:803.733333pt;}
.ya4{bottom:809.253333pt;}
.y7{bottom:809.413333pt;}
.y7e{bottom:814.533333pt;}
.y30{bottom:819.413333pt;}
.ya3{bottom:824.853333pt;}
.y5a{bottom:825.173333pt;}
.y6{bottom:826.613333pt;}
.yc9{bottom:827.413333pt;}
.y2f{bottom:835.013333pt;}
.y7c{bottom:836.133333pt;}
.yc8{bottom:843.013333pt;}
.y5{bottom:843.813333pt;}
.y2e{bottom:850.693333pt;}
.ya2{bottom:856.533333pt;}
.yc7{bottom:866.693333pt;}
.y59{bottom:867.093333pt;}
.ya1{bottom:872.133333pt;}
.y2d{bottom:874.533333pt;}
.y7b{bottom:876.773333pt;}
.y4{bottom:877.893333pt;}
.y58{bottom:880.453333pt;}
.yc6{bottom:882.293333pt;}
.ya0{bottom:887.813333pt;}
.y3{bottom:899.840000pt;}
.y9f{bottom:903.440000pt;}
.y57{bottom:904.720000pt;}
.yc5{bottom:905.920000pt;}
.y7a{bottom:908.400000pt;}
.y2c{bottom:917.760000pt;}
.yc4{bottom:921.600000pt;}
.y79{bottom:924.000000pt;}
.y56{bottom:929.040000pt;}
.y9e{bottom:935.040000pt;}
.yc3{bottom:945.520000pt;}
.y2b{bottom:950.720000pt;}
.y55{bottom:953.360000pt;}
.y2a{bottom:966.320000pt;}
.y54{bottom:977.680000pt;}
.yc2{bottom:988.400000pt;}
.y29{bottom:998.000000pt;}
.y53{bottom:1001.920000pt;}
.yc1{bottom:1012.320000pt;}
.y28{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.he{height:20.960000pt;}
.hf{height:20.986667pt;}
.hd{height:22.240000pt;}
.hc{height:22.320000pt;}
.ha{height:23.600000pt;}
.hb{height:23.626667pt;}
.h9{height:23.680000pt;}
.h2{height:23.996250pt;}
.h6{height:31.806562pt;}
.h3{height:33.867188pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h10{height:54.927899pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w16{width:47.040000pt;}
.w5{width:54.560000pt;}
.wf{width:54.640000pt;}
.w13{width:61.440000pt;}
.w11{width:68.880000pt;}
.w4{width:71.840000pt;}
.w1b{width:71.866667pt;}
.wb{width:71.920000pt;}
.we{width:77.040000pt;}
.w12{width:78.640000pt;}
.w3{width:83.120000pt;}
.w6{width:89.386667pt;}
.w10{width:89.466667pt;}
.w14{width:96.266667pt;}
.wa{width:98.960000pt;}
.w17{width:105.360000pt;}
.w18{width:109.466667pt;}
.wc{width:127.440000pt;}
.w7{width:127.520000pt;}
.w15{width:134.240000pt;}
.w1a{width:227.520000pt;}
.w19{width:410.586667pt;}
.wd{width:423.066667pt;}
.w8{width:429.146667pt;}
.w9{width:444.986667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:3.520000pt;}
.x15{left:6.880000pt;}
.x1{left:60.480000pt;}
.x1d{left:98.879988pt;}
.x2{left:171.306655pt;}
.xa{left:174.506667pt;}
.x14{left:175.946667pt;}
.x4{left:182.426667pt;}
.xf{left:185.466667pt;}
.x1b{left:191.706667pt;}
.x16{left:245.546667pt;}
.x10{left:263.226667pt;}
.x6{left:266.186667pt;}
.xb{left:274.106667pt;}
.x19{left:313.146667pt;}
.x17{left:324.826667pt;}
.x11{left:335.706667pt;}
.x7{left:338.746667pt;}
.xc{left:346.666667pt;}
.x18{left:386.906667pt;}
.x12{left:390.986667pt;}
.x8{left:394.026667pt;}
.xd{left:401.946667pt;}
.x1a{left:419.146667pt;}
.x13{left:481.093333pt;}
.x9{left:484.053333pt;}
.xe{left:492.053333pt;}
.x1c{left:547.653333pt;}
.x3{left:711.413322pt;}
}




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