
    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_99f5083beb2c14030c09368a.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_e968da53af0c6257da5eb023.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_7176b11f5b0beb2729d01793.woff')format("woff");}.ff4{font-family:ff4;line-height:1.061035;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_d2e3b24be69260b322b45914.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_1986e0cac5c9c1bbe594253f.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_d2c57257633b487490e2b9d7.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;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lse{letter-spacing:-0.186600px;}
.ls14{letter-spacing:-0.160800px;}
.ls13{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsc{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls15{letter-spacing:0.116400px;}
.ls5{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.lsf{letter-spacing:0.181200px;}
.lsa{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls12{letter-spacing:47.726640px;}
.ls11{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:-60.120000px;}
.ws4{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws5{word-spacing:-13.425600px;}
.wsb{word-spacing:-13.407600px;}
.ws8{word-spacing:-13.399800px;}
.wsf{word-spacing:-13.342800px;}
.wsc{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsd{word-spacing:-13.072800px;}
.wse{word-spacing:-13.065600px;}
.ws9{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._10{margin-left:-4.105680px;}
._7{margin-left:-3.006000px;}
._0{margin-left:-1.110000px;}
._2{width:1.256880px;}
._6{width:2.295840px;}
._4{width:3.931320px;}
._5{width:5.016122px;}
._8{width:6.733200px;}
._a{width:7.938484px;}
._e{width:9.247903px;}
._d{width:10.493601px;}
._b{width:11.723400px;}
._9{width:14.248200px;}
._c{width:15.751200px;}
._f{width:17.374680px;}
._15{width:18.937800px;}
._11{width:21.222360px;}
._1{width:22.770360px;}
._3{width:23.937372px;}
._20{width:26.777160px;}
._21{width:27.908280px;}
._1b{width:28.947600px;}
._1d{width:37.959120px;}
._1c{width:39.318480px;}
._12{width:78.697080px;}
._1e{width:100.610640px;}
._17{width:102.774960px;}
._18{width:103.917600px;}
._19{width:168.155640px;}
._14{width:223.886880px;}
._1a{width:285.630120px;}
._13{width:287.012880px;}
._1f{width:316.986960px;}
._16{width:1033.041960px;}
.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;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:7.830000px;}
.y2f{bottom:7.920000px;}
.y46{bottom:7.950000px;}
.y91{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.ya6{bottom:119.190000px;}
.y54{bottom:122.070000px;}
.y7e{bottom:122.790000px;}
.ya5{bottom:136.830000px;}
.y53{bottom:139.620000px;}
.y7d{bottom:140.430000px;}
.ya4{bottom:154.380000px;}
.y52{bottom:157.260000px;}
.y26{bottom:157.800000px;}
.ya3{bottom:171.930000px;}
.y51{bottom:174.810000px;}
.y25{bottom:175.350000px;}
.y7c{bottom:175.980000px;}
.ya2{bottom:189.570000px;}
.y24{bottom:192.990000px;}
.y7b{bottom:193.530000px;}
.y50{bottom:201.720000px;}
.ya1{bottom:207.120000px;}
.y7a{bottom:211.170000px;}
.y23{bottom:228.540000px;}
.y79{bottom:228.720000px;}
.ya0{bottom:234.030000px;}
.y22{bottom:246.090000px;}
.y4f{bottom:249.960000px;}
.y21{bottom:263.730000px;}
.y78{bottom:264.360000px;}
.y4e{bottom:267.600000px;}
.y20{bottom:281.280000px;}
.y77{bottom:281.910000px;}
.y9f{bottom:282.360000px;}
.y4d{bottom:285.150000px;}
.y1f{bottom:298.920000px;}
.y76{bottom:299.460000px;}
.y9e{bottom:299.910000px;}
.y4c{bottom:302.790000px;}
.y1e{bottom:316.470000px;}
.y75{bottom:317.100000px;}
.y9d{bottom:317.460000px;}
.y4b{bottom:320.340000px;}
.y9c{bottom:335.100000px;}
.y1d{bottom:352.020000px;}
.y74{bottom:352.650000px;}
.y4a{bottom:353.280000px;}
.y1c{bottom:369.660000px;}
.y73{bottom:370.290000px;}
.y9b{bottom:370.650000px;}
.y49{bottom:380.640000px;}
.yc7{bottom:386.130000px;}
.y1b{bottom:387.210000px;}
.y72{bottom:387.840000px;}
.y9a{bottom:388.290000px;}
.yc6{bottom:403.770000px;}
.y1a{bottom:404.850000px;}
.y71{bottom:405.390000px;}
.y99{bottom:405.840000px;}
.y48{bottom:408.000000px;}
.y19{bottom:422.400000px;}
.y98{bottom:423.390000px;}
.yc5{bottom:430.320000px;}
.y47{bottom:435.270000px;}
.y70{bottom:438.420000px;}
.y18{bottom:439.950000px;}
.y97{bottom:441.030000px;}
.yc4{bottom:447.870000px;}
.y17{bottom:457.590000px;}
.y45{bottom:462.630000px;}
.yc3{bottom:465.510000px;}
.y6f{bottom:465.690000px;}
.y96{bottom:474.000000px;}
.y16{bottom:484.530000px;}
.y44{bottom:490.020000px;}
.yc2{bottom:492.090000px;}
.y6e{bottom:493.080000px;}
.yc1{bottom:509.730000px;}
.y95{bottom:518.910000px;}
.y6d{bottom:520.440000px;}
.y15{bottom:533.130000px;}
.yc0{bottom:536.280000px;}
.y43{bottom:538.710000px;}
.y94{bottom:546.270000px;}
.y6c{bottom:547.800000px;}
.ybf{bottom:553.830000px;}
.y14{bottom:570.120000px;}
.ybe{bottom:571.470000px;}
.y42{bottom:574.260000px;}
.y6b{bottom:575.070000px;}
.y13{bottom:587.670000px;}
.y93{bottom:591.180000px;}
.y41{bottom:591.900000px;}
.ybd{bottom:598.020000px;}
.y12{bottom:605.310000px;}
.y40{bottom:609.450000px;}
.ybc{bottom:615.660000px;}
.y11{bottom:622.860000px;}
.y6a{bottom:623.760000px;}
.y3f{bottom:627.090000px;}
.y92{bottom:636.090000px;}
.y10{bottom:640.500000px;}
.ybb{bottom:642.210000px;}
.y3e{bottom:644.640000px;}
.yf{bottom:658.050000px;}
.y69{bottom:659.400000px;}
.yba{bottom:659.760000px;}
.y90{bottom:663.450000px;}
.ye{bottom:675.600000px;}
.y68{bottom:676.950000px;}
.yb9{bottom:677.400000px;}
.y3d{bottom:680.190000px;}
.yd{bottom:693.240000px;}
.y67{bottom:694.590000px;}
.y3c{bottom:697.830000px;}
.yb8{bottom:703.950000px;}
.yc{bottom:710.790000px;}
.y66{bottom:712.140000px;}
.y3b{bottom:715.380000px;}
.yb7{bottom:721.590000px;}
.yb{bottom:728.430000px;}
.y8f{bottom:729.690000px;}
.y3a{bottom:733.020000px;}
.y65{bottom:739.050000px;}
.yb6{bottom:739.140000px;}
.y39{bottom:750.570000px;}
.ya{bottom:755.340000px;}
.yb5{bottom:756.690000px;}
.y8e{bottom:765.330000px;}
.yb4{bottom:774.330000px;}
.y8d{bottom:782.880000px;}
.y38{bottom:786.120000px;}
.y64{bottom:787.290000px;}
.yb3{bottom:791.880000px;}
.y8c{bottom:800.520000px;}
.y9{bottom:803.580000px;}
.y37{bottom:803.760000px;}
.y63{bottom:804.930000px;}
.y8b{bottom:818.070000px;}
.yb2{bottom:818.520000px;}
.y36{bottom:821.310000px;}
.y62{bottom:822.480000px;}
.y8a{bottom:835.620000px;}
.yb1{bottom:836.070000px;}
.y35{bottom:838.950000px;}
.y8{bottom:839.130000px;}
.y61{bottom:840.030000px;}
.y34{bottom:856.500000px;}
.y60{bottom:857.670000px;}
.yb0{bottom:862.620000px;}
.y89{bottom:871.260000px;}
.y7{bottom:874.950000px;}
.yaf{bottom:880.260000px;}
.y33{bottom:883.410000px;}
.y88{bottom:888.810000px;}
.y5f{bottom:893.220000px;}
.yae{bottom:897.810000px;}
.y87{bottom:906.450000px;}
.y5e{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.yad{bottom:915.450000px;}
.y86{bottom:924.000000px;}
.y5d{bottom:928.410000px;}
.y32{bottom:929.040000px;}
.yac{bottom:942.000000px;}
.y5c{bottom:945.960000px;}
.y5{bottom:947.040000px;}
.y31{bottom:956.400000px;}
.y85{bottom:959.550000px;}
.y84{bottom:977.190000px;}
.y5b{bottom:981.600000px;}
.y30{bottom:983.760000px;}
.y4{bottom:985.380000px;}
.yab{bottom:986.460000px;}
.y83{bottom:994.740000px;}
.y5a{bottom:999.150000px;}
.y3{bottom:1010.070000px;}
.y2e{bottom:1011.060000px;}
.y82{bottom:1012.320000px;}
.y59{bottom:1016.820000px;}
.y81{bottom:1029.960000px;}
.y58{bottom:1034.370000px;}
.yaa{bottom:1034.820000px;}
.y2c{bottom:1038.420000px;}
.y80{bottom:1047.510000px;}
.y57{bottom:1051.920000px;}
.ya9{bottom:1052.370000px;}
.y56{bottom:1069.560000px;}
.ya8{bottom:1069.920000px;}
.y7f{bottom:1074.420000px;}
.y2b{bottom:1087.110000px;}
.ya7{bottom:1087.560000px;}
.y55{bottom:1105.110000px;}
.y2a{bottom:1122.750000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h9{height:26.550000px;}
.hb{height:26.580000px;}
.ha{height:26.640000px;}
.hd{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.he{height:44.190000px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h8{height:60.960938px;}
.hf{height:61.793886px;}
.hc{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:48.690000px;}
.w6{width:116.370000px;}
.w5{width:166.980000px;}
.w3{width:169.680000px;}
.wa{width:182.880000px;}
.w8{width:189.660000px;}
.wb{width:194.700000px;}
.w4{width:205.830000px;}
.wd{width:259.830000px;}
.wc{width:299.640000px;}
.w9{width:327.090000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.650000px;}
.x1{left:68.040000px;}
.xf{left:111.239987px;}
.x4{left:116.100000px;}
.xb{left:191.280000px;}
.x2{left:202.799987px;}
.xd{left:264.180000px;}
.x6{left:286.500000px;}
.x9{left:327.090000px;}
.xa{left:376.500000px;}
.x7{left:493.140000px;}
.xc{left:519.090000px;}
.xe{left:564.630000px;}
.x8{left:660.840000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lse{letter-spacing:-0.165867pt;}
.ls14{letter-spacing:-0.142933pt;}
.ls13{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsc{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls15{letter-spacing:0.103467pt;}
.ls5{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.lsf{letter-spacing:0.161067pt;}
.lsa{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls12{letter-spacing:42.423680pt;}
.ls11{letter-spacing:71.863680pt;}
.ws6{word-spacing:-53.440000pt;}
.ws4{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws5{word-spacing:-11.933867pt;}
.wsb{word-spacing:-11.917867pt;}
.ws8{word-spacing:-11.910933pt;}
.wsf{word-spacing:-11.860267pt;}
.wsc{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsd{word-spacing:-11.620267pt;}
.wse{word-spacing:-11.613867pt;}
.ws9{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._10{margin-left:-3.649493pt;}
._7{margin-left:-2.672000pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.117227pt;}
._6{width:2.040747pt;}
._4{width:3.494506pt;}
._5{width:4.458775pt;}
._8{width:5.985066pt;}
._a{width:7.056431pt;}
._e{width:8.220358pt;}
._d{width:9.327645pt;}
._b{width:10.420800pt;}
._9{width:12.665066pt;}
._c{width:14.001066pt;}
._f{width:15.444160pt;}
._15{width:16.833600pt;}
._11{width:18.864320pt;}
._1{width:20.240320pt;}
._3{width:21.277664pt;}
._20{width:23.801920pt;}
._21{width:24.807360pt;}
._1b{width:25.731200pt;}
._1d{width:33.741440pt;}
._1c{width:34.949760pt;}
._12{width:69.952960pt;}
._1e{width:89.431680pt;}
._17{width:91.355520pt;}
._18{width:92.371200pt;}
._19{width:149.471680pt;}
._14{width:199.010560pt;}
._1a{width:253.893440pt;}
._13{width:255.122560pt;}
._1f{width:281.766187pt;}
._16{width:918.259520pt;}
.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;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:6.960000pt;}
.y2f{bottom:7.040000pt;}
.y46{bottom:7.066667pt;}
.y91{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.ya6{bottom:105.946667pt;}
.y54{bottom:108.506667pt;}
.y7e{bottom:109.146667pt;}
.ya5{bottom:121.626667pt;}
.y53{bottom:124.106667pt;}
.y7d{bottom:124.826667pt;}
.ya4{bottom:137.226667pt;}
.y52{bottom:139.786667pt;}
.y26{bottom:140.266667pt;}
.ya3{bottom:152.826667pt;}
.y51{bottom:155.386667pt;}
.y25{bottom:155.866667pt;}
.y7c{bottom:156.426667pt;}
.ya2{bottom:168.506667pt;}
.y24{bottom:171.546667pt;}
.y7b{bottom:172.026667pt;}
.y50{bottom:179.306667pt;}
.ya1{bottom:184.106667pt;}
.y7a{bottom:187.706667pt;}
.y23{bottom:203.146667pt;}
.y79{bottom:203.306667pt;}
.ya0{bottom:208.026667pt;}
.y22{bottom:218.746667pt;}
.y4f{bottom:222.186667pt;}
.y21{bottom:234.426667pt;}
.y78{bottom:234.986667pt;}
.y4e{bottom:237.866667pt;}
.y20{bottom:250.026667pt;}
.y77{bottom:250.586667pt;}
.y9f{bottom:250.986667pt;}
.y4d{bottom:253.466667pt;}
.y1f{bottom:265.706667pt;}
.y76{bottom:266.186667pt;}
.y9e{bottom:266.586667pt;}
.y4c{bottom:269.146667pt;}
.y1e{bottom:281.306667pt;}
.y75{bottom:281.866667pt;}
.y9d{bottom:282.186667pt;}
.y4b{bottom:284.746667pt;}
.y9c{bottom:297.866667pt;}
.y1d{bottom:312.906667pt;}
.y74{bottom:313.466667pt;}
.y4a{bottom:314.026667pt;}
.y1c{bottom:328.586667pt;}
.y73{bottom:329.146667pt;}
.y9b{bottom:329.466667pt;}
.y49{bottom:338.346667pt;}
.yc7{bottom:343.226667pt;}
.y1b{bottom:344.186667pt;}
.y72{bottom:344.746667pt;}
.y9a{bottom:345.146667pt;}
.yc6{bottom:358.906667pt;}
.y1a{bottom:359.866667pt;}
.y71{bottom:360.346667pt;}
.y99{bottom:360.746667pt;}
.y48{bottom:362.666667pt;}
.y19{bottom:375.466667pt;}
.y98{bottom:376.346667pt;}
.yc5{bottom:382.506667pt;}
.y47{bottom:386.906667pt;}
.y70{bottom:389.706667pt;}
.y18{bottom:391.066667pt;}
.y97{bottom:392.026667pt;}
.yc4{bottom:398.106667pt;}
.y17{bottom:406.746667pt;}
.y45{bottom:411.226667pt;}
.yc3{bottom:413.786667pt;}
.y6f{bottom:413.946667pt;}
.y96{bottom:421.333333pt;}
.y16{bottom:430.693333pt;}
.y44{bottom:435.573333pt;}
.yc2{bottom:437.413333pt;}
.y6e{bottom:438.293333pt;}
.yc1{bottom:453.093333pt;}
.y95{bottom:461.253333pt;}
.y6d{bottom:462.613333pt;}
.y15{bottom:473.893333pt;}
.yc0{bottom:476.693333pt;}
.y43{bottom:478.853333pt;}
.y94{bottom:485.573333pt;}
.y6c{bottom:486.933333pt;}
.ybf{bottom:492.293333pt;}
.y14{bottom:506.773333pt;}
.ybe{bottom:507.973333pt;}
.y42{bottom:510.453333pt;}
.y6b{bottom:511.173333pt;}
.y13{bottom:522.373333pt;}
.y93{bottom:525.493333pt;}
.y41{bottom:526.133333pt;}
.ybd{bottom:531.573333pt;}
.y12{bottom:538.053333pt;}
.y40{bottom:541.733333pt;}
.ybc{bottom:547.253333pt;}
.y11{bottom:553.653333pt;}
.y6a{bottom:554.453333pt;}
.y3f{bottom:557.413333pt;}
.y92{bottom:565.413333pt;}
.y10{bottom:569.333333pt;}
.ybb{bottom:570.853333pt;}
.y3e{bottom:573.013333pt;}
.yf{bottom:584.933333pt;}
.y69{bottom:586.133333pt;}
.yba{bottom:586.453333pt;}
.y90{bottom:589.733333pt;}
.ye{bottom:600.533333pt;}
.y68{bottom:601.733333pt;}
.yb9{bottom:602.133333pt;}
.y3d{bottom:604.613333pt;}
.yd{bottom:616.213333pt;}
.y67{bottom:617.413333pt;}
.y3c{bottom:620.293333pt;}
.yb8{bottom:625.733333pt;}
.yc{bottom:631.813333pt;}
.y66{bottom:633.013333pt;}
.y3b{bottom:635.893333pt;}
.yb7{bottom:641.413333pt;}
.yb{bottom:647.493333pt;}
.y8f{bottom:648.613333pt;}
.y3a{bottom:651.573333pt;}
.y65{bottom:656.933333pt;}
.yb6{bottom:657.013333pt;}
.y39{bottom:667.173333pt;}
.ya{bottom:671.413333pt;}
.yb5{bottom:672.613333pt;}
.y8e{bottom:680.293333pt;}
.yb4{bottom:688.293333pt;}
.y8d{bottom:695.893333pt;}
.y38{bottom:698.773333pt;}
.y64{bottom:699.813333pt;}
.yb3{bottom:703.893333pt;}
.y8c{bottom:711.573333pt;}
.y9{bottom:714.293333pt;}
.y37{bottom:714.453333pt;}
.y63{bottom:715.493333pt;}
.y8b{bottom:727.173333pt;}
.yb2{bottom:727.573333pt;}
.y36{bottom:730.053333pt;}
.y62{bottom:731.093333pt;}
.y8a{bottom:742.773333pt;}
.yb1{bottom:743.173333pt;}
.y35{bottom:745.733333pt;}
.y8{bottom:745.893333pt;}
.y61{bottom:746.693333pt;}
.y34{bottom:761.333333pt;}
.y60{bottom:762.373333pt;}
.yb0{bottom:766.773333pt;}
.y89{bottom:774.453333pt;}
.y7{bottom:777.733333pt;}
.yaf{bottom:782.453333pt;}
.y33{bottom:785.253333pt;}
.y88{bottom:790.053333pt;}
.y5f{bottom:793.973333pt;}
.yae{bottom:798.053333pt;}
.y87{bottom:805.733333pt;}
.y5e{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.yad{bottom:813.733333pt;}
.y86{bottom:821.333333pt;}
.y5d{bottom:825.253333pt;}
.y32{bottom:825.813333pt;}
.yac{bottom:837.333333pt;}
.y5c{bottom:840.853333pt;}
.y5{bottom:841.813333pt;}
.y31{bottom:850.133333pt;}
.y85{bottom:852.933333pt;}
.y84{bottom:868.613333pt;}
.y5b{bottom:872.533333pt;}
.y30{bottom:874.453333pt;}
.y4{bottom:875.893333pt;}
.yab{bottom:876.853333pt;}
.y83{bottom:884.213333pt;}
.y5a{bottom:888.133333pt;}
.y3{bottom:897.840000pt;}
.y2e{bottom:898.720000pt;}
.y82{bottom:899.840000pt;}
.y59{bottom:903.840000pt;}
.y81{bottom:915.520000pt;}
.y58{bottom:919.440000pt;}
.yaa{bottom:919.840000pt;}
.y2c{bottom:923.040000pt;}
.y80{bottom:931.120000pt;}
.y57{bottom:935.040000pt;}
.ya9{bottom:935.440000pt;}
.y56{bottom:950.720000pt;}
.ya8{bottom:951.040000pt;}
.y7f{bottom:955.040000pt;}
.y2b{bottom:966.320000pt;}
.ya7{bottom:966.720000pt;}
.y55{bottom:982.320000pt;}
.y2a{bottom:998.000000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h9{height:23.600000pt;}
.hb{height:23.626667pt;}
.ha{height:23.680000pt;}
.hd{height:23.706667pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.he{height:39.280000pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h8{height:54.187500pt;}
.hf{height:54.927899pt;}
.hc{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:43.280000pt;}
.w6{width:103.440000pt;}
.w5{width:148.426667pt;}
.w3{width:150.826667pt;}
.wa{width:162.560000pt;}
.w8{width:168.586667pt;}
.wb{width:173.066667pt;}
.w4{width:182.960000pt;}
.wd{width:230.960000pt;}
.wc{width:266.346667pt;}
.w9{width:290.746667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.800000pt;}
.x1{left:60.480000pt;}
.xf{left:98.879988pt;}
.x4{left:103.200000pt;}
.xb{left:170.026667pt;}
.x2{left:180.266655pt;}
.xd{left:234.826667pt;}
.x6{left:254.666667pt;}
.x9{left:290.746667pt;}
.xa{left:334.666667pt;}
.x7{left:438.346667pt;}
.xc{left:461.413333pt;}
.xe{left:501.893333pt;}
.x8{left:587.413333pt;}
.x3{left:704.053322pt;}
}




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