
    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_48ec7561574b63fb95c31501.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_72ca6149a68d8580879a000e.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_beb52149b62c5f1dee62ba5f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.979004;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_b7f38c00d5cf3b9629718614.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_25b68f468b451f14e80c9d6a.woff')format("woff");}.ff6{font-family:ff6;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;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls13{letter-spacing:-0.243600px;}
.lse{letter-spacing:-0.186600px;}
.ls9{letter-spacing:-0.135000px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.lsb{letter-spacing:-0.015000px;}
.ls6{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls7{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls12{letter-spacing:0.181200px;}
.lsf{letter-spacing:0.198000px;}
.ls4{letter-spacing:0.239040px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls11{letter-spacing:47.726640px;}
.ls5{letter-spacing:72.045360px;}
.ls10{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;}
}
.ws6{word-spacing:-13.424400px;}
.ws7{word-spacing:-13.407600px;}
.ws4{word-spacing:-13.399800px;}
.ws2{word-spacing:-13.226400px;}
.ws5{word-spacing:-13.039800px;}
.ws8{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws3{word-spacing:0.000000px;}
._e{margin-left:-3.707400px;}
._6{margin-left:-2.705400px;}
._0{margin-left:-1.032000px;}
._1{width:1.180548px;}
._8{width:2.749103px;}
._a{width:4.224696px;}
._c{width:5.278007px;}
._9{width:6.432600px;}
._f{width:7.696322px;}
._b{width:9.378600px;}
._11{width:10.517052px;}
._10{width:11.603160px;}
._2{width:14.419080px;}
._3{width:15.650640px;}
._4{width:16.653000px;}
._5{width:17.736001px;}
._13{width:18.937199px;}
._12{width:20.561040px;}
._14{width:21.676332px;}
._d{width:23.807400px;}
._16{width:25.430880px;}
._7{width:27.174000px;}
._18{width:28.256640px;}
._15{width:29.398680px;}
._17{width:33.847560px;}
._19{width:38.506680px;}
._1b{width:42.666960px;}
._1a{width:314.106960px;}
._1c{width:609.917400px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y35{bottom:7.830000px;}
.y88{bottom:7.860000px;}
.y3c{bottom:7.920000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y5a{bottom:117.660000px;}
.yd5{bottom:118.920000px;}
.y28{bottom:129.630000px;}
.y59{bottom:135.210000px;}
.yd4{bottom:136.560000px;}
.y27{bottom:147.270000px;}
.y58{bottom:152.850000px;}
.yd3{bottom:154.110000px;}
.y83{bottom:155.100000px;}
.y26{bottom:164.820000px;}
.yd2{bottom:171.750000px;}
.y25{bottom:182.370000px;}
.y57{bottom:188.400000px;}
.yd1{bottom:189.300000px;}
.y82{bottom:190.650000px;}
.y24{bottom:200.010000px;}
.y56{bottom:205.950000px;}
.yd0{bottom:206.850000px;}
.y55{bottom:223.590000px;}
.yab{bottom:223.950000px;}
.ycf{bottom:224.490000px;}
.y81{bottom:226.200000px;}
.y23{bottom:235.560000px;}
.y54{bottom:241.140000px;}
.yaa{bottom:241.590000px;}
.yce{bottom:242.040000px;}
.y80{bottom:243.840000px;}
.y22{bottom:253.200000px;}
.y53{bottom:258.690000px;}
.ya9{bottom:259.140000px;}
.ycd{bottom:259.680000px;}
.y7f{bottom:261.390000px;}
.y21{bottom:270.750000px;}
.y52{bottom:276.330000px;}
.ya8{bottom:276.690000px;}
.ycc{bottom:277.230000px;}
.y7e{bottom:278.940000px;}
.y20{bottom:288.300000px;}
.y51{bottom:293.880000px;}
.ya7{bottom:294.330000px;}
.y7d{bottom:296.580000px;}
.ycb{bottom:304.140000px;}
.y1f{bottom:305.940000px;}
.ya6{bottom:311.880000px;}
.y7c{bottom:314.130000px;}
.y1e{bottom:323.490000px;}
.y50{bottom:329.520000px;}
.y7b{bottom:331.770000px;}
.y1d{bottom:341.130000px;}
.y4f{bottom:347.070000px;}
.yca{bottom:352.380000px;}
.y4e{bottom:364.620000px;}
.ya5{bottom:365.070000px;}
.y7a{bottom:367.320000px;}
.yc9{bottom:370.020000px;}
.y1c{bottom:376.680000px;}
.y4d{bottom:382.260000px;}
.ya4{bottom:382.620000px;}
.y79{bottom:384.870000px;}
.yc8{bottom:387.570000px;}
.y1b{bottom:394.230000px;}
.y4c{bottom:399.810000px;}
.ya3{bottom:400.260000px;}
.y78{bottom:402.510000px;}
.yc7{bottom:405.120000px;}
.y1a{bottom:411.870000px;}
.y4b{bottom:417.450000px;}
.ya2{bottom:417.810000px;}
.y77{bottom:420.060000px;}
.yc6{bottom:422.760000px;}
.y19{bottom:429.420000px;}
.y4a{bottom:435.000000px;}
.ya1{bottom:435.450000px;}
.y76{bottom:437.700000px;}
.yc5{bottom:440.310000px;}
.y18{bottom:447.060000px;}
.y49{bottom:452.550000px;}
.ya0{bottom:453.000000px;}
.y75{bottom:455.250000px;}
.yc4{bottom:457.950000px;}
.y17{bottom:464.610000px;}
.y9f{bottom:470.580000px;}
.y16{bottom:482.190000px;}
.y48{bottom:488.220000px;}
.y74{bottom:490.830000px;}
.yc3{bottom:493.530000px;}
.y15{bottom:499.830000px;}
.y47{bottom:505.770000px;}
.y73{bottom:508.470000px;}
.yc2{bottom:511.080000px;}
.y46{bottom:523.410000px;}
.y9e{bottom:523.770000px;}
.y72{bottom:526.020000px;}
.y14{bottom:526.740000px;}
.yc1{bottom:528.720000px;}
.y45{bottom:540.960000px;}
.y9d{bottom:541.410000px;}
.y71{bottom:543.660000px;}
.yc0{bottom:546.270000px;}
.y44{bottom:558.510000px;}
.y9c{bottom:558.960000px;}
.y70{bottom:561.210000px;}
.ybf{bottom:563.910000px;}
.y13{bottom:575.340000px;}
.y43{bottom:576.150000px;}
.y9b{bottom:576.510000px;}
.y6f{bottom:578.760000px;}
.ybe{bottom:581.460000px;}
.y42{bottom:593.700000px;}
.y9a{bottom:594.150000px;}
.y6e{bottom:596.400000px;}
.ybd{bottom:599.010000px;}
.y41{bottom:611.340000px;}
.y99{bottom:611.700000px;}
.y12{bottom:612.330000px;}
.yee{bottom:615.210000px;}
.y40{bottom:628.890000px;}
.y98{bottom:629.340000px;}
.y11{bottom:629.880000px;}
.y6d{bottom:631.950000px;}
.yed{bottom:632.760000px;}
.ybc{bottom:634.650000px;}
.y10{bottom:647.520000px;}
.y6c{bottom:649.590000px;}
.ybb{bottom:652.200000px;}
.y3f{bottom:655.800000px;}
.yec{bottom:659.400000px;}
.y97{bottom:664.890000px;}
.yf{bottom:665.070000px;}
.y6b{bottom:667.140000px;}
.yba{bottom:669.840000px;}
.yeb{bottom:676.950000px;}
.y96{bottom:682.440000px;}
.ye{bottom:682.710000px;}
.y6a{bottom:684.690000px;}
.yb9{bottom:687.390000px;}
.y3e{bottom:692.790000px;}
.y95{bottom:700.080000px;}
.yd{bottom:700.260000px;}
.y69{bottom:702.330000px;}
.yea{bottom:703.590000px;}
.yb8{bottom:704.940000px;}
.y94{bottom:717.630000px;}
.yc{bottom:717.810000px;}
.y68{bottom:719.880000px;}
.y3d{bottom:720.510000px;}
.ye9{bottom:721.140000px;}
.yb7{bottom:722.580000px;}
.y93{bottom:735.270000px;}
.yb{bottom:735.450000px;}
.y67{bottom:737.520000px;}
.ye8{bottom:738.690000px;}
.yb6{bottom:740.130000px;}
.y3b{bottom:748.230000px;}
.y92{bottom:752.820000px;}
.ya{bottom:753.000000px;}
.y66{bottom:755.070000px;}
.ye7{bottom:756.330000px;}
.y91{bottom:770.370000px;}
.yb5{bottom:775.770000px;}
.y3a{bottom:775.950000px;}
.y9{bottom:779.910000px;}
.y65{bottom:781.980000px;}
.ye6{bottom:782.880000px;}
.y90{bottom:788.010000px;}
.yb4{bottom:793.320000px;}
.ye5{bottom:800.520000px;}
.y39{bottom:803.670000px;}
.y8f{bottom:805.560000px;}
.yb3{bottom:810.870000px;}
.y64{bottom:818.970000px;}
.ye4{bottom:827.070000px;}
.y8{bottom:828.240000px;}
.yb2{bottom:828.510000px;}
.y38{bottom:831.390000px;}
.y8e{bottom:832.470000px;}
.ye3{bottom:844.620000px;}
.yb1{bottom:846.060000px;}
.y63{bottom:846.690000px;}
.y37{bottom:859.110000px;}
.yb0{bottom:863.700000px;}
.y7{bottom:863.790000px;}
.y8d{bottom:869.550000px;}
.ye2{bottom:871.260000px;}
.y62{bottom:874.410000px;}
.yaf{bottom:881.250000px;}
.y36{bottom:886.830000px;}
.ye1{bottom:888.810000px;}
.y8c{bottom:897.180000px;}
.yae{bottom:898.800000px;}
.y6{bottom:899.610000px;}
.y61{bottom:902.130000px;}
.ye0{bottom:906.450000px;}
.y34{bottom:914.550000px;}
.yad{bottom:916.440000px;}
.y8b{bottom:924.900000px;}
.y60{bottom:929.850000px;}
.ydf{bottom:933.000000px;}
.y5{bottom:935.610000px;}
.yac{bottom:943.350000px;}
.yde{bottom:950.550000px;}
.y8a{bottom:952.620000px;}
.y5f{bottom:957.570000px;}
.y33{bottom:963.600000px;}
.y4{bottom:971.700000px;}
.ydd{bottom:977.190000px;}
.y89{bottom:980.340000px;}
.y5e{bottom:985.290000px;}
.ydc{bottom:994.740000px;}
.y32{bottom:999.150000px;}
.y87{bottom:1008.060000px;}
.y3{bottom:1009.980000px;}
.y31{bottom:1016.820000px;}
.ydb{bottom:1021.320000px;}
.y30{bottom:1034.370000px;}
.y86{bottom:1035.810000px;}
.yda{bottom:1038.960000px;}
.y2f{bottom:1051.920000px;}
.yd9{bottom:1056.510000px;}
.y85{bottom:1063.530000px;}
.y2e{bottom:1069.560000px;}
.y5d{bottom:1069.920000px;}
.yd8{bottom:1083.150000px;}
.y2d{bottom:1087.110000px;}
.y5c{bottom:1087.560000px;}
.y84{bottom:1091.250000px;}
.yd7{bottom:1100.700000px;}
.y5b{bottom:1105.110000px;}
.y2c{bottom:1122.750000px;}
.yd6{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h9{height:26.550000px;}
.hb{height:26.580000px;}
.ha{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.hc{height:61.793886px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:154.620000px;}
.wa{width:170.460000px;}
.w8{width:170.550000px;}
.w7{width:171.030000px;}
.w9{width:179.040000px;}
.w3{width:181.290000px;}
.w5{width:191.790000px;}
.w4{width:200.730000px;}
.wc{width:207.210000px;}
.wd{width:209.640000px;}
.we{width:211.680000px;}
.wb{width:237.990000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:6.960000px;}
.x1{left:68.040000px;}
.x11{left:111.239987px;}
.xe{left:131.850000px;}
.xb{left:152.370000px;}
.x4{left:159.210000px;}
.x8{left:198.030000px;}
.x2{left:211.079987px;}
.xc{left:331.950000px;}
.xf{left:339.600000px;}
.x6{left:341.040000px;}
.x9{left:353.190000px;}
.xd{left:502.950000px;}
.xa{left:524.760000px;}
.x7{left:542.310000px;}
.x10{left:549.780000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls13{letter-spacing:-0.216533pt;}
.lse{letter-spacing:-0.165867pt;}
.ls9{letter-spacing:-0.120000pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.lsb{letter-spacing:-0.013333pt;}
.ls6{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls7{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls12{letter-spacing:0.161067pt;}
.lsf{letter-spacing:0.176000pt;}
.ls4{letter-spacing:0.212480pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls11{letter-spacing:42.423680pt;}
.ls5{letter-spacing:64.040320pt;}
.ls10{letter-spacing:71.863680pt;}
.ws6{word-spacing:-11.932800pt;}
.ws7{word-spacing:-11.917867pt;}
.ws4{word-spacing:-11.910933pt;}
.ws2{word-spacing:-11.756800pt;}
.ws5{word-spacing:-11.590933pt;}
.ws8{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws3{word-spacing:0.000000pt;}
._e{margin-left:-3.295466pt;}
._6{margin-left:-2.404800pt;}
._0{margin-left:-0.917333pt;}
._1{width:1.049376pt;}
._8{width:2.443647pt;}
._a{width:3.755286pt;}
._c{width:4.691562pt;}
._9{width:5.717866pt;}
._f{width:6.841175pt;}
._b{width:8.336533pt;}
._11{width:9.348491pt;}
._10{width:10.313920pt;}
._2{width:12.816960pt;}
._3{width:13.911680pt;}
._4{width:14.802666pt;}
._5{width:15.765334pt;}
._13{width:16.833066pt;}
._12{width:18.276480pt;}
._14{width:19.267850pt;}
._d{width:21.162133pt;}
._16{width:22.605227pt;}
._7{width:24.154666pt;}
._18{width:25.117014pt;}
._15{width:26.132160pt;}
._17{width:30.086720pt;}
._19{width:34.228160pt;}
._1b{width:37.926187pt;}
._1a{width:279.206187pt;}
._1c{width:542.148800pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:6.960000pt;}
.y88{bottom:6.986667pt;}
.y3c{bottom:7.040000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y5a{bottom:104.586667pt;}
.yd5{bottom:105.706667pt;}
.y28{bottom:115.226667pt;}
.y59{bottom:120.186667pt;}
.yd4{bottom:121.386667pt;}
.y27{bottom:130.906667pt;}
.y58{bottom:135.866667pt;}
.yd3{bottom:136.986667pt;}
.y83{bottom:137.866667pt;}
.y26{bottom:146.506667pt;}
.yd2{bottom:152.666667pt;}
.y25{bottom:162.106667pt;}
.y57{bottom:167.466667pt;}
.yd1{bottom:168.266667pt;}
.y82{bottom:169.466667pt;}
.y24{bottom:177.786667pt;}
.y56{bottom:183.066667pt;}
.yd0{bottom:183.866667pt;}
.y55{bottom:198.746667pt;}
.yab{bottom:199.066667pt;}
.ycf{bottom:199.546667pt;}
.y81{bottom:201.066667pt;}
.y23{bottom:209.386667pt;}
.y54{bottom:214.346667pt;}
.yaa{bottom:214.746667pt;}
.yce{bottom:215.146667pt;}
.y80{bottom:216.746667pt;}
.y22{bottom:225.066667pt;}
.y53{bottom:229.946667pt;}
.ya9{bottom:230.346667pt;}
.ycd{bottom:230.826667pt;}
.y7f{bottom:232.346667pt;}
.y21{bottom:240.666667pt;}
.y52{bottom:245.626667pt;}
.ya8{bottom:245.946667pt;}
.ycc{bottom:246.426667pt;}
.y7e{bottom:247.946667pt;}
.y20{bottom:256.266667pt;}
.y51{bottom:261.226667pt;}
.ya7{bottom:261.626667pt;}
.y7d{bottom:263.626667pt;}
.ycb{bottom:270.346667pt;}
.y1f{bottom:271.946667pt;}
.ya6{bottom:277.226667pt;}
.y7c{bottom:279.226667pt;}
.y1e{bottom:287.546667pt;}
.y50{bottom:292.906667pt;}
.y7b{bottom:294.906667pt;}
.y1d{bottom:303.226667pt;}
.y4f{bottom:308.506667pt;}
.yca{bottom:313.226667pt;}
.y4e{bottom:324.106667pt;}
.ya5{bottom:324.506667pt;}
.y7a{bottom:326.506667pt;}
.yc9{bottom:328.906667pt;}
.y1c{bottom:334.826667pt;}
.y4d{bottom:339.786667pt;}
.ya4{bottom:340.106667pt;}
.y79{bottom:342.106667pt;}
.yc8{bottom:344.506667pt;}
.y1b{bottom:350.426667pt;}
.y4c{bottom:355.386667pt;}
.ya3{bottom:355.786667pt;}
.y78{bottom:357.786667pt;}
.yc7{bottom:360.106667pt;}
.y1a{bottom:366.106667pt;}
.y4b{bottom:371.066667pt;}
.ya2{bottom:371.386667pt;}
.y77{bottom:373.386667pt;}
.yc6{bottom:375.786667pt;}
.y19{bottom:381.706667pt;}
.y4a{bottom:386.666667pt;}
.ya1{bottom:387.066667pt;}
.y76{bottom:389.066667pt;}
.yc5{bottom:391.386667pt;}
.y18{bottom:397.386667pt;}
.y49{bottom:402.266667pt;}
.ya0{bottom:402.666667pt;}
.y75{bottom:404.666667pt;}
.yc4{bottom:407.066667pt;}
.y17{bottom:412.986667pt;}
.y9f{bottom:418.293333pt;}
.y16{bottom:428.613333pt;}
.y48{bottom:433.973333pt;}
.y74{bottom:436.293333pt;}
.yc3{bottom:438.693333pt;}
.y15{bottom:444.293333pt;}
.y47{bottom:449.573333pt;}
.y73{bottom:451.973333pt;}
.yc2{bottom:454.293333pt;}
.y46{bottom:465.253333pt;}
.y9e{bottom:465.573333pt;}
.y72{bottom:467.573333pt;}
.y14{bottom:468.213333pt;}
.yc1{bottom:469.973333pt;}
.y45{bottom:480.853333pt;}
.y9d{bottom:481.253333pt;}
.y71{bottom:483.253333pt;}
.yc0{bottom:485.573333pt;}
.y44{bottom:496.453333pt;}
.y9c{bottom:496.853333pt;}
.y70{bottom:498.853333pt;}
.ybf{bottom:501.253333pt;}
.y13{bottom:511.413333pt;}
.y43{bottom:512.133333pt;}
.y9b{bottom:512.453333pt;}
.y6f{bottom:514.453333pt;}
.ybe{bottom:516.853333pt;}
.y42{bottom:527.733333pt;}
.y9a{bottom:528.133333pt;}
.y6e{bottom:530.133333pt;}
.ybd{bottom:532.453333pt;}
.y41{bottom:543.413333pt;}
.y99{bottom:543.733333pt;}
.y12{bottom:544.293333pt;}
.yee{bottom:546.853333pt;}
.y40{bottom:559.013333pt;}
.y98{bottom:559.413333pt;}
.y11{bottom:559.893333pt;}
.y6d{bottom:561.733333pt;}
.yed{bottom:562.453333pt;}
.ybc{bottom:564.133333pt;}
.y10{bottom:575.573333pt;}
.y6c{bottom:577.413333pt;}
.ybb{bottom:579.733333pt;}
.y3f{bottom:582.933333pt;}
.yec{bottom:586.133333pt;}
.y97{bottom:591.013333pt;}
.yf{bottom:591.173333pt;}
.y6b{bottom:593.013333pt;}
.yba{bottom:595.413333pt;}
.yeb{bottom:601.733333pt;}
.y96{bottom:606.613333pt;}
.ye{bottom:606.853333pt;}
.y6a{bottom:608.613333pt;}
.yb9{bottom:611.013333pt;}
.y3e{bottom:615.813333pt;}
.y95{bottom:622.293333pt;}
.yd{bottom:622.453333pt;}
.y69{bottom:624.293333pt;}
.yea{bottom:625.413333pt;}
.yb8{bottom:626.613333pt;}
.y94{bottom:637.893333pt;}
.yc{bottom:638.053333pt;}
.y68{bottom:639.893333pt;}
.y3d{bottom:640.453333pt;}
.ye9{bottom:641.013333pt;}
.yb7{bottom:642.293333pt;}
.y93{bottom:653.573333pt;}
.yb{bottom:653.733333pt;}
.y67{bottom:655.573333pt;}
.ye8{bottom:656.613333pt;}
.yb6{bottom:657.893333pt;}
.y3b{bottom:665.093333pt;}
.y92{bottom:669.173333pt;}
.ya{bottom:669.333333pt;}
.y66{bottom:671.173333pt;}
.ye7{bottom:672.293333pt;}
.y91{bottom:684.773333pt;}
.yb5{bottom:689.573333pt;}
.y3a{bottom:689.733333pt;}
.y9{bottom:693.253333pt;}
.y65{bottom:695.093333pt;}
.ye6{bottom:695.893333pt;}
.y90{bottom:700.453333pt;}
.yb4{bottom:705.173333pt;}
.ye5{bottom:711.573333pt;}
.y39{bottom:714.373333pt;}
.y8f{bottom:716.053333pt;}
.yb3{bottom:720.773333pt;}
.y64{bottom:727.973333pt;}
.ye4{bottom:735.173333pt;}
.y8{bottom:736.213333pt;}
.yb2{bottom:736.453333pt;}
.y38{bottom:739.013333pt;}
.y8e{bottom:739.973333pt;}
.ye3{bottom:750.773333pt;}
.yb1{bottom:752.053333pt;}
.y63{bottom:752.613333pt;}
.y37{bottom:763.653333pt;}
.yb0{bottom:767.733333pt;}
.y7{bottom:767.813333pt;}
.y8d{bottom:772.933333pt;}
.ye2{bottom:774.453333pt;}
.y62{bottom:777.253333pt;}
.yaf{bottom:783.333333pt;}
.y36{bottom:788.293333pt;}
.ye1{bottom:790.053333pt;}
.y8c{bottom:797.493333pt;}
.yae{bottom:798.933333pt;}
.y6{bottom:799.653333pt;}
.y61{bottom:801.893333pt;}
.ye0{bottom:805.733333pt;}
.y34{bottom:812.933333pt;}
.yad{bottom:814.613333pt;}
.y8b{bottom:822.133333pt;}
.y60{bottom:826.533333pt;}
.ydf{bottom:829.333333pt;}
.y5{bottom:831.653333pt;}
.yac{bottom:838.533333pt;}
.yde{bottom:844.933333pt;}
.y8a{bottom:846.773333pt;}
.y5f{bottom:851.173333pt;}
.y33{bottom:856.533333pt;}
.y4{bottom:863.733333pt;}
.ydd{bottom:868.613333pt;}
.y89{bottom:871.413333pt;}
.y5e{bottom:875.813333pt;}
.ydc{bottom:884.213333pt;}
.y32{bottom:888.133333pt;}
.y87{bottom:896.053333pt;}
.y3{bottom:897.760000pt;}
.y31{bottom:903.840000pt;}
.ydb{bottom:907.840000pt;}
.y30{bottom:919.440000pt;}
.y86{bottom:920.720000pt;}
.yda{bottom:923.520000pt;}
.y2f{bottom:935.040000pt;}
.yd9{bottom:939.120000pt;}
.y85{bottom:945.360000pt;}
.y2e{bottom:950.720000pt;}
.y5d{bottom:951.040000pt;}
.yd8{bottom:962.800000pt;}
.y2d{bottom:966.320000pt;}
.y5c{bottom:966.720000pt;}
.y84{bottom:970.000000pt;}
.yd7{bottom:978.400000pt;}
.y5b{bottom:982.320000pt;}
.y2c{bottom:998.000000pt;}
.yd6{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h9{height:23.600000pt;}
.hb{height:23.626667pt;}
.ha{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.hc{height:54.927899pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:137.440000pt;}
.wa{width:151.520000pt;}
.w8{width:151.600000pt;}
.w7{width:152.026667pt;}
.w9{width:159.146667pt;}
.w3{width:161.146667pt;}
.w5{width:170.480000pt;}
.w4{width:178.426667pt;}
.wc{width:184.186667pt;}
.wd{width:186.346667pt;}
.we{width:188.160000pt;}
.wb{width:211.546667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.186667pt;}
.x1{left:60.480000pt;}
.x11{left:98.879988pt;}
.xe{left:117.200000pt;}
.xb{left:135.440000pt;}
.x4{left:141.520000pt;}
.x8{left:176.026667pt;}
.x2{left:187.626655pt;}
.xc{left:295.066667pt;}
.xf{left:301.866667pt;}
.x6{left:303.146667pt;}
.x9{left:313.946667pt;}
.xd{left:447.066667pt;}
.xa{left:466.453333pt;}
.x7{left:482.053333pt;}
.x10{left:488.693333pt;}
.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; }
  