
    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_9c9c5ff68a3a13bf8665a915.woff2')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_2cb9bc261db09ea3ec69263c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.062988;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_095b91a0e5ff84155220f89f.woff2')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_8aa49a9f4df55f4fbaae49b4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d66b0707631e2a1ffc5d5a1d.woff2')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_4aefd1725b39270bc61b777f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3e7400a2534ae6d50c550397.woff2')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;}
.lsd{letter-spacing:-0.186600px;}
.lse{letter-spacing:-0.141600px;}
.ls7{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls13{letter-spacing:-0.049680px;}
.ls10{letter-spacing:-0.037800px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsb{letter-spacing:0.045360px;}
.lsa{letter-spacing:0.074160px;}
.lsf{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls11{letter-spacing:0.116400px;}
.ls5{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.173400px;}
.ls0{letter-spacing:0.360000px;}
.ls14{letter-spacing:47.726640px;}
.ls12{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;}
}
.ws4{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.wsa{word-spacing:-13.300800px;}
.ws2{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.176720px;}
.ws9{word-spacing:-13.084800px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._42{margin-left:-4.175639px;}
._6{margin-left:-2.677800px;}
._0{margin-left:-1.110000px;}
._3{width:1.173146px;}
._4{width:2.460326px;}
._a{width:3.469896px;}
._9{width:4.792804px;}
._8{width:5.798999px;}
._7{width:6.853800px;}
._4a{width:7.882032px;}
._1{width:8.891448px;}
._2{width:10.148893px;}
._16{width:11.248752px;}
._62{width:14.248440px;}
._5{width:15.390600px;}
._57{width:16.500840px;}
._c{width:17.555040px;}
._18{width:18.577080px;}
._26{width:19.779480px;}
._35{width:21.643200px;}
._49{width:22.818960px;}
._1e{width:24.108120px;}
._1c{width:25.310520px;}
._f{width:26.452800px;}
._1f{width:28.436760px;}
._27{width:29.699280px;}
._b{width:31.202280px;}
._23{width:33.186240px;}
._3e{width:34.749360px;}
._e{width:36.252360px;}
._45{width:38.296440px;}
._19{width:41.362560px;}
._44{width:43.346520px;}
._30{width:44.488800px;}
._24{width:45.510840px;}
._38{width:47.196720px;}
._55{width:48.817440px;}
._54{width:49.899600px;}
._d{width:53.386560px;}
._29{width:54.649080px;}
._3d{width:55.731240px;}
._3f{width:57.547800px;}
._22{width:59.278320px;}
._4e{width:63.213960px;}
._31{width:64.448640px;}
._1a{width:66.552840px;}
._21{width:68.416560px;}
._3c{width:70.220160px;}
._3a{width:72.925560px;}
._12{width:74.067840px;}
._5f{width:75.570840px;}
._4d{width:76.653000px;}
._10{width:78.877440px;}
._5b{width:80.019720px;}
._53{width:81.763200px;}
._60{width:85.370400px;}
._39{width:87.414480px;}
._36{width:90.180000px;}
._17{width:93.606840px;}
._5d{width:96.492600px;}
._1b{width:98.236080px;}
._48{width:100.400400px;}
._13{width:102.805200px;}
._2d{width:104.789160px;}
._32{width:111.763080px;}
._4b{width:115.250040px;}
._34{width:119.879280px;}
._43{width:127.213920px;}
._41{width:128.536560px;}
._28{width:131.121720px;}
._46{width:133.105680px;}
._5c{width:137.855160px;}
._4c{width:139.478400px;}
._50{width:144.459720px;}
._52{width:148.135680px;}
._3b{width:149.157720px;}
._14{width:152.344080px;}
._20{width:155.530440px;}
._2a{width:157.875120px;}
._61{width:168.035400px;}
._33{width:170.620560px;}
._2b{width:176.119320px;}
._4f{width:183.426120px;}
._2e{width:186.311880px;}
._59{width:189.919080px;}
._25{width:192.083400px;}
._37{width:194.247720px;}
._47{width:199.237680px;}
._11{width:204.287760px;}
._58{width:207.628920px;}
._51{width:213.606360px;}
._56{width:220.760640px;}
._15{width:227.914920px;}
._40{width:229.898880px;}
._5a{width:243.305640px;}
._2c{width:246.912840px;}
._1d{width:254.608200px;}
._5e{width:310.820400px;}
._2f{width:332.884440px;}
.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;}
.y6f{bottom:3.330000px;}
.y5f{bottom:7.830000px;}
.y38{bottom:7.920000px;}
.y58{bottom:16.830000px;}
.y6c{bottom:20.970000px;}
.y59{bottom:21.330000px;}
.y5e{bottom:25.380000px;}
.y4e{bottom:25.470000px;}
.y90{bottom:34.470000px;}
.y6b{bottom:38.520000px;}
.y57{bottom:38.880000px;}
.ya7{bottom:38.970000px;}
.y7a{bottom:43.020000px;}
.y87{bottom:43.050000px;}
.y93{bottom:43.110000px;}
.y45{bottom:43.470000px;}
.y5d{bottom:47.520000px;}
.y4d{bottom:47.610000px;}
.y9b{bottom:51.570000px;}
.y8f{bottom:52.110000px;}
.y6a{bottom:56.160000px;}
.y29{bottom:56.190000px;}
.y71{bottom:56.460000px;}
.y56{bottom:56.520000px;}
.ya6{bottom:56.610000px;}
.y9c{bottom:60.570000px;}
.y79{bottom:60.660000px;}
.y86{bottom:60.690000px;}
.y44{bottom:61.110000px;}
.yb3{bottom:65.070000px;}
.y5c{bottom:65.100000px;}
.y4c{bottom:65.160000px;}
.yb1{bottom:69.570000px;}
.y8e{bottom:69.660000px;}
.y2{bottom:73.380000px;}
.y69{bottom:73.710000px;}
.y28{bottom:73.830000px;}
.y70{bottom:74.010000px;}
.y55{bottom:74.100000px;}
.ya5{bottom:74.160000px;}
.yb4{bottom:74.190000px;}
.y35{bottom:74.460000px;}
.y78{bottom:78.210000px;}
.y85{bottom:78.240000px;}
.y43{bottom:78.660000px;}
.yab{bottom:82.650000px;}
.y92{bottom:82.710000px;}
.y4b{bottom:87.210000px;}
.y5b{bottom:87.240000px;}
.y60{bottom:90.930000px;}
.y68{bottom:91.260000px;}
.y96{bottom:91.290000px;}
.ya4{bottom:91.710000px;}
.y54{bottom:91.740000px;}
.y77{bottom:95.760000px;}
.y82{bottom:95.790000px;}
.ya8{bottom:95.850000px;}
.y42{bottom:96.210000px;}
.yb2{bottom:100.260000px;}
.yaa{bottom:100.290000px;}
.y91{bottom:100.350000px;}
.y1{bottom:101.640000px;}
.yb0{bottom:104.760000px;}
.y5a{bottom:104.790000px;}
.y4a{bottom:104.850000px;}
.y67{bottom:108.900000px;}
.y95{bottom:108.930000px;}
.y53{bottom:109.290000px;}
.ya3{bottom:109.350000px;}
.y76{bottom:113.400000px;}
.y81{bottom:113.430000px;}
.y41{bottom:113.850000px;}
.y8d{bottom:122.400000px;}
.y66{bottom:126.450000px;}
.y52{bottom:126.840000px;}
.y49{bottom:126.900000px;}
.y9a{bottom:130.950000px;}
.y75{bottom:130.980000px;}
.y40{bottom:131.400000px;}
.y3f{bottom:135.900000px;}
.y88{bottom:136.650000px;}
.y6e{bottom:139.590000px;}
.yaf{bottom:139.950000px;}
.y8c{bottom:140.040000px;}
.y25{bottom:140.880000px;}
.y65{bottom:144.090000px;}
.y51{bottom:144.480000px;}
.y48{bottom:144.540000px;}
.y99{bottom:148.500000px;}
.y74{bottom:148.530000px;}
.y80{bottom:148.620000px;}
.ydd{bottom:152.220000px;}
.y3e{bottom:153.540000px;}
.y6d{bottom:157.140000px;}
.yae{bottom:157.500000px;}
.y8b{bottom:157.590000px;}
.y24{bottom:158.430000px;}
.y64{bottom:161.640000px;}
.y50{bottom:162.030000px;}
.ya2{bottom:162.120000px;}
.y98{bottom:166.140000px;}
.y73{bottom:166.170000px;}
.y47{bottom:166.590000px;}
.ydc{bottom:169.770000px;}
.y3d{bottom:171.090000px;}
.y8a{bottom:175.140000px;}
.y23{bottom:176.070000px;}
.y63{bottom:179.190000px;}
.ya1{bottom:179.670000px;}
.y7f{bottom:183.720000px;}
.y46{bottom:184.140000px;}
.ydb{bottom:187.320000px;}
.y3c{bottom:188.640000px;}
.yad{bottom:192.690000px;}
.y89{bottom:192.780000px;}
.y22{bottom:193.620000px;}
.y62{bottom:196.830000px;}
.y84{bottom:196.860000px;}
.ya0{bottom:197.310000px;}
.y7e{bottom:201.360000px;}
.y3b{bottom:206.280000px;}
.y21{bottom:211.260000px;}
.yda{bottom:213.960000px;}
.y61{bottom:214.380000px;}
.y83{bottom:214.410000px;}
.y9f{bottom:214.860000px;}
.y7d{bottom:218.910000px;}
.y3a{bottom:223.830000px;}
.y9d{bottom:224.580000px;}
.y20{bottom:228.810000px;}
.yd9{bottom:231.510000px;}
.y9e{bottom:232.500000px;}
.y7c{bottom:236.550000px;}
.yd8{bottom:249.150000px;}
.y1f{bottom:264.360000px;}
.yd7{bottom:275.700000px;}
.y1e{bottom:282.000000px;}
.yd6{bottom:293.250000px;}
.y1d{bottom:299.550000px;}
.y1c{bottom:317.190000px;}
.yd5{bottom:319.890000px;}
.y4f{bottom:324.840000px;}
.y1b{bottom:334.740000px;}
.yd4{bottom:337.440000px;}
.y7b{bottom:348.870000px;}
.y1a{bottom:352.290000px;}
.yd3{bottom:364.080000px;}
.y19{bottom:369.930000px;}
.yd2{bottom:381.630000px;}
.y18{bottom:387.480000px;}
.yd1{bottom:408.180000px;}
.y17{bottom:414.390000px;}
.yd0{bottom:425.820000px;}
.ycf{bottom:443.370000px;}
.yac{bottom:458.520000px;}
.y16{bottom:462.990000px;}
.yce{bottom:470.310000px;}
.y97{bottom:476.520000px;}
.y15{bottom:500.010000px;}
.y39{bottom:506.310000px;}
.y14{bottom:517.650000px;}
.ycd{bottom:518.550000px;}
.y13{bottom:535.200000px;}
.ycc{bottom:545.460000px;}
.y12{bottom:570.840000px;}
.ycb{bottom:582.540000px;}
.y11{bottom:588.390000px;}
.y72{bottom:604.860000px;}
.y10{bottom:605.940000px;}
.yca{bottom:609.450000px;}
.yf{bottom:641.580000px;}
.yc9{bottom:646.800000px;}
.ye{bottom:659.130000px;}
.y94{bottom:662.100000px;}
.ya9{bottom:670.740000px;}
.yd{bottom:694.770000px;}
.yc8{bottom:695.040000px;}
.yc{bottom:712.320000px;}
.yc7{bottom:712.590000px;}
.yb{bottom:729.870000px;}
.yc6{bottom:730.230000px;}
.y37{bottom:749.610000px;}
.ya{bottom:756.870000px;}
.yc5{bottom:757.140000px;}
.y36{bottom:798.390000px;}
.y9{bottom:803.580000px;}
.yc4{bottom:805.380000px;}
.yc3{bottom:823.020000px;}
.y34{bottom:824.940000px;}
.y8{bottom:839.130000px;}
.yc2{bottom:840.570000px;}
.yc1{bottom:858.120000px;}
.y7{bottom:874.950000px;}
.yc0{bottom:875.760000px;}
.ybf{bottom:893.310000px;}
.y33{bottom:901.950000px;}
.ye6{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.ye5{bottom:928.410000px;}
.ybe{bottom:928.500000px;}
.y32{bottom:928.860000px;}
.y5{bottom:947.040000px;}
.ye4{bottom:954.960000px;}
.ybd{bottom:964.050000px;}
.ye3{bottom:972.600000px;}
.y31{bottom:977.190000px;}
.ybc{bottom:981.690000px;}
.y4{bottom:985.380000px;}
.ye2{bottom:990.150000px;}
.y30{bottom:994.740000px;}
.ybb{bottom:999.240000px;}
.y3{bottom:1010.070000px;}
.y2f{bottom:1012.320000px;}
.yba{bottom:1016.820000px;}
.y2e{bottom:1029.960000px;}
.ye1{bottom:1034.370000px;}
.yb9{bottom:1034.460000px;}
.y2d{bottom:1047.510000px;}
.yb8{bottom:1052.010000px;}
.ye0{bottom:1060.920000px;}
.yb7{bottom:1069.650000px;}
.y2c{bottom:1074.420000px;}
.ydf{bottom:1078.560000px;}
.yb6{bottom:1087.200000px;}
.yde{bottom:1105.110000px;}
.yb5{bottom:1114.110000px;}
.y2b{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y27{bottom:1167.750000px;}
.y26{bottom:1194.300000px;}
.ha{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h17{height:61.793886px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.h15{height:114.510000px;}
.h14{height:132.120000px;}
.h11{height:149.700000px;}
.he{height:180.390000px;}
.hc{height:180.750000px;}
.h12{height:184.860000px;}
.h16{height:211.410000px;}
.h10{height:211.500000px;}
.hd{height:233.100000px;}
.hb{height:242.580000px;}
.h13{height:251.220000px;}
.hf{height:255.270000px;}
.h8{height:893.160000px;}
.h9{height:893.250000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:35.370000px;}
.w9{width:100.890000px;}
.w7{width:102.690000px;}
.wb{width:109.530000px;}
.wa{width:141.120000px;}
.w8{width:150.600000px;}
.wc{width:459.300000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.w4{width:1262.250000px;}
.w5{width:1262.519981px;}
.w3{width:1262.520000px;}
.x0{left:0.000000px;}
.x9{left:3.870000px;}
.x1{left:68.040000px;}
.x8{left:79.380000px;}
.x7{left:107.999981px;}
.x11{left:111.239987px;}
.xa{left:115.470000px;}
.x2{left:202.799987px;}
.xb{left:218.970000px;}
.xc{left:370.290000px;}
.x5{left:387.389981px;}
.x3{left:446.609987px;}
.xd{left:471.900000px;}
.xe{left:613.740000px;}
.x10{left:631.289981px;}
.xf{left:723.990000px;}
.x4{left:792.059987px;}
.x6{left:1121.369981px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsd{letter-spacing:-0.165867pt;}
.lse{letter-spacing:-0.125867pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls13{letter-spacing:-0.044160pt;}
.ls10{letter-spacing:-0.033600pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsb{letter-spacing:0.040320pt;}
.lsa{letter-spacing:0.065920pt;}
.lsf{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls11{letter-spacing:0.103467pt;}
.ls5{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.154133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:42.423680pt;}
.ls12{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.wsa{word-spacing:-11.822933pt;}
.ws2{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.712640pt;}
.ws9{word-spacing:-11.630933pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._42{margin-left:-3.711679pt;}
._6{margin-left:-2.380267pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.042796pt;}
._4{width:2.186957pt;}
._a{width:3.084352pt;}
._9{width:4.260271pt;}
._8{width:5.154666pt;}
._7{width:6.092267pt;}
._4a{width:7.006251pt;}
._1{width:7.903509pt;}
._2{width:9.021238pt;}
._16{width:9.998891pt;}
._62{width:12.665280pt;}
._5{width:13.680533pt;}
._57{width:14.667414pt;}
._c{width:15.604480pt;}
._18{width:16.512960pt;}
._26{width:17.581760pt;}
._35{width:19.238400pt;}
._49{width:20.283520pt;}
._1e{width:21.429440pt;}
._1c{width:22.498240pt;}
._f{width:23.513600pt;}
._1f{width:25.277120pt;}
._27{width:26.399360pt;}
._b{width:27.735360pt;}
._23{width:29.498880pt;}
._3e{width:30.888320pt;}
._e{width:32.224320pt;}
._45{width:34.041280pt;}
._19{width:36.766720pt;}
._44{width:38.530240pt;}
._30{width:39.545600pt;}
._24{width:40.454080pt;}
._38{width:41.952640pt;}
._55{width:43.393280pt;}
._54{width:44.355200pt;}
._d{width:47.454720pt;}
._29{width:48.576960pt;}
._3d{width:49.538880pt;}
._3f{width:51.153600pt;}
._22{width:52.691840pt;}
._4e{width:56.190187pt;}
._31{width:57.287680pt;}
._1a{width:59.158080pt;}
._21{width:60.814720pt;}
._3c{width:62.417920pt;}
._3a{width:64.822720pt;}
._12{width:65.838080pt;}
._5f{width:67.174080pt;}
._4d{width:68.136000pt;}
._10{width:70.113280pt;}
._5b{width:71.128640pt;}
._53{width:72.678400pt;}
._60{width:75.884800pt;}
._39{width:77.701760pt;}
._36{width:80.160000pt;}
._17{width:83.206080pt;}
._5d{width:85.771200pt;}
._1b{width:87.320960pt;}
._48{width:89.244800pt;}
._13{width:91.382400pt;}
._2d{width:93.145920pt;}
._32{width:99.344960pt;}
._4b{width:102.444480pt;}
._34{width:106.559360pt;}
._43{width:113.079040pt;}
._41{width:114.254720pt;}
._28{width:116.552640pt;}
._46{width:118.316160pt;}
._5c{width:122.537920pt;}
._4c{width:123.980800pt;}
._50{width:128.408640pt;}
._52{width:131.676160pt;}
._3b{width:132.584640pt;}
._14{width:135.416960pt;}
._20{width:138.249280pt;}
._2a{width:140.333440pt;}
._61{width:149.364800pt;}
._33{width:151.662720pt;}
._2b{width:156.550507pt;}
._4f{width:163.045440pt;}
._2e{width:165.610560pt;}
._59{width:168.816960pt;}
._25{width:170.740800pt;}
._37{width:172.664640pt;}
._47{width:177.100160pt;}
._11{width:181.589120pt;}
._58{width:184.559040pt;}
._51{width:189.872320pt;}
._56{width:196.231680pt;}
._15{width:202.591040pt;}
._40{width:204.354560pt;}
._5a{width:216.271680pt;}
._2c{width:219.478080pt;}
._1d{width:226.318400pt;}
._5e{width:276.284800pt;}
._2f{width:295.897280pt;}
.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;}
.y6f{bottom:2.960000pt;}
.y5f{bottom:6.960000pt;}
.y38{bottom:7.040000pt;}
.y58{bottom:14.960000pt;}
.y6c{bottom:18.640000pt;}
.y59{bottom:18.960000pt;}
.y5e{bottom:22.560000pt;}
.y4e{bottom:22.640000pt;}
.y90{bottom:30.640000pt;}
.y6b{bottom:34.240000pt;}
.y57{bottom:34.560000pt;}
.ya7{bottom:34.640000pt;}
.y7a{bottom:38.240000pt;}
.y87{bottom:38.266667pt;}
.y93{bottom:38.320000pt;}
.y45{bottom:38.640000pt;}
.y5d{bottom:42.240000pt;}
.y4d{bottom:42.320000pt;}
.y9b{bottom:45.840000pt;}
.y8f{bottom:46.320000pt;}
.y6a{bottom:49.920000pt;}
.y29{bottom:49.946667pt;}
.y71{bottom:50.186667pt;}
.y56{bottom:50.240000pt;}
.ya6{bottom:50.320000pt;}
.y9c{bottom:53.840000pt;}
.y79{bottom:53.920000pt;}
.y86{bottom:53.946667pt;}
.y44{bottom:54.320000pt;}
.yb3{bottom:57.840000pt;}
.y5c{bottom:57.866667pt;}
.y4c{bottom:57.920000pt;}
.yb1{bottom:61.840000pt;}
.y8e{bottom:61.920000pt;}
.y2{bottom:65.226667pt;}
.y69{bottom:65.520000pt;}
.y28{bottom:65.626667pt;}
.y70{bottom:65.786667pt;}
.y55{bottom:65.866667pt;}
.ya5{bottom:65.920000pt;}
.yb4{bottom:65.946667pt;}
.y35{bottom:66.186667pt;}
.y78{bottom:69.520000pt;}
.y85{bottom:69.546667pt;}
.y43{bottom:69.920000pt;}
.yab{bottom:73.466667pt;}
.y92{bottom:73.520000pt;}
.y4b{bottom:77.520000pt;}
.y5b{bottom:77.546667pt;}
.y60{bottom:80.826667pt;}
.y68{bottom:81.120000pt;}
.y96{bottom:81.146667pt;}
.ya4{bottom:81.520000pt;}
.y54{bottom:81.546667pt;}
.y77{bottom:85.120000pt;}
.y82{bottom:85.146667pt;}
.ya8{bottom:85.200000pt;}
.y42{bottom:85.520000pt;}
.yb2{bottom:89.120000pt;}
.yaa{bottom:89.146667pt;}
.y91{bottom:89.200000pt;}
.y1{bottom:90.346667pt;}
.yb0{bottom:93.120000pt;}
.y5a{bottom:93.146667pt;}
.y4a{bottom:93.200000pt;}
.y67{bottom:96.800000pt;}
.y95{bottom:96.826667pt;}
.y53{bottom:97.146667pt;}
.ya3{bottom:97.200000pt;}
.y76{bottom:100.800000pt;}
.y81{bottom:100.826667pt;}
.y41{bottom:101.200000pt;}
.y8d{bottom:108.800000pt;}
.y66{bottom:112.400000pt;}
.y52{bottom:112.746667pt;}
.y49{bottom:112.800000pt;}
.y9a{bottom:116.400000pt;}
.y75{bottom:116.426667pt;}
.y40{bottom:116.800000pt;}
.y3f{bottom:120.800000pt;}
.y88{bottom:121.466667pt;}
.y6e{bottom:124.080000pt;}
.yaf{bottom:124.400000pt;}
.y8c{bottom:124.480000pt;}
.y25{bottom:125.226667pt;}
.y65{bottom:128.080000pt;}
.y51{bottom:128.426667pt;}
.y48{bottom:128.480000pt;}
.y99{bottom:132.000000pt;}
.y74{bottom:132.026667pt;}
.y80{bottom:132.106667pt;}
.ydd{bottom:135.306667pt;}
.y3e{bottom:136.480000pt;}
.y6d{bottom:139.680000pt;}
.yae{bottom:140.000000pt;}
.y8b{bottom:140.080000pt;}
.y24{bottom:140.826667pt;}
.y64{bottom:143.680000pt;}
.y50{bottom:144.026667pt;}
.ya2{bottom:144.106667pt;}
.y98{bottom:147.680000pt;}
.y73{bottom:147.706667pt;}
.y47{bottom:148.080000pt;}
.ydc{bottom:150.906667pt;}
.y3d{bottom:152.080000pt;}
.y8a{bottom:155.680000pt;}
.y23{bottom:156.506667pt;}
.y63{bottom:159.280000pt;}
.ya1{bottom:159.706667pt;}
.y7f{bottom:163.306667pt;}
.y46{bottom:163.680000pt;}
.ydb{bottom:166.506667pt;}
.y3c{bottom:167.680000pt;}
.yad{bottom:171.280000pt;}
.y89{bottom:171.360000pt;}
.y22{bottom:172.106667pt;}
.y62{bottom:174.960000pt;}
.y84{bottom:174.986667pt;}
.ya0{bottom:175.386667pt;}
.y7e{bottom:178.986667pt;}
.y3b{bottom:183.360000pt;}
.y21{bottom:187.786667pt;}
.yda{bottom:190.186667pt;}
.y61{bottom:190.560000pt;}
.y83{bottom:190.586667pt;}
.y9f{bottom:190.986667pt;}
.y7d{bottom:194.586667pt;}
.y3a{bottom:198.960000pt;}
.y9d{bottom:199.626667pt;}
.y20{bottom:203.386667pt;}
.yd9{bottom:205.786667pt;}
.y9e{bottom:206.666667pt;}
.y7c{bottom:210.266667pt;}
.yd8{bottom:221.466667pt;}
.y1f{bottom:234.986667pt;}
.yd7{bottom:245.066667pt;}
.y1e{bottom:250.666667pt;}
.yd6{bottom:260.666667pt;}
.y1d{bottom:266.266667pt;}
.y1c{bottom:281.946667pt;}
.yd5{bottom:284.346667pt;}
.y4f{bottom:288.746667pt;}
.y1b{bottom:297.546667pt;}
.yd4{bottom:299.946667pt;}
.y7b{bottom:310.106667pt;}
.y1a{bottom:313.146667pt;}
.yd3{bottom:323.626667pt;}
.y19{bottom:328.826667pt;}
.yd2{bottom:339.226667pt;}
.y18{bottom:344.426667pt;}
.yd1{bottom:362.826667pt;}
.y17{bottom:368.346667pt;}
.yd0{bottom:378.506667pt;}
.ycf{bottom:394.106667pt;}
.yac{bottom:407.573333pt;}
.y16{bottom:411.546667pt;}
.yce{bottom:418.053333pt;}
.y97{bottom:423.573333pt;}
.y15{bottom:444.453333pt;}
.y39{bottom:450.053333pt;}
.y14{bottom:460.133333pt;}
.ycd{bottom:460.933333pt;}
.y13{bottom:475.733333pt;}
.ycc{bottom:484.853333pt;}
.y12{bottom:507.413333pt;}
.ycb{bottom:517.813333pt;}
.y11{bottom:523.013333pt;}
.y72{bottom:537.653333pt;}
.y10{bottom:538.613333pt;}
.yca{bottom:541.733333pt;}
.yf{bottom:570.293333pt;}
.yc9{bottom:574.933333pt;}
.ye{bottom:585.893333pt;}
.y94{bottom:588.533333pt;}
.ya9{bottom:596.213333pt;}
.yd{bottom:617.573333pt;}
.yc8{bottom:617.813333pt;}
.yc{bottom:633.173333pt;}
.yc7{bottom:633.413333pt;}
.yb{bottom:648.773333pt;}
.yc6{bottom:649.093333pt;}
.y37{bottom:666.320000pt;}
.ya{bottom:672.773333pt;}
.yc5{bottom:673.013333pt;}
.y36{bottom:709.680000pt;}
.y9{bottom:714.293333pt;}
.yc4{bottom:715.893333pt;}
.yc3{bottom:731.573333pt;}
.y34{bottom:733.280000pt;}
.y8{bottom:745.893333pt;}
.yc2{bottom:747.173333pt;}
.yc1{bottom:762.773333pt;}
.y7{bottom:777.733333pt;}
.yc0{bottom:778.453333pt;}
.ybf{bottom:794.053333pt;}
.y33{bottom:801.733333pt;}
.ye6{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.ye5{bottom:825.253333pt;}
.ybe{bottom:825.333333pt;}
.y32{bottom:825.653333pt;}
.y5{bottom:841.813333pt;}
.ye4{bottom:848.853333pt;}
.ybd{bottom:856.933333pt;}
.ye3{bottom:864.533333pt;}
.y31{bottom:868.613333pt;}
.ybc{bottom:872.613333pt;}
.y4{bottom:875.893333pt;}
.ye2{bottom:880.133333pt;}
.y30{bottom:884.213333pt;}
.ybb{bottom:888.213333pt;}
.y3{bottom:897.840000pt;}
.y2f{bottom:899.840000pt;}
.yba{bottom:903.840000pt;}
.y2e{bottom:915.520000pt;}
.ye1{bottom:919.440000pt;}
.yb9{bottom:919.520000pt;}
.y2d{bottom:931.120000pt;}
.yb8{bottom:935.120000pt;}
.ye0{bottom:943.040000pt;}
.yb7{bottom:950.800000pt;}
.y2c{bottom:955.040000pt;}
.ydf{bottom:958.720000pt;}
.yb6{bottom:966.400000pt;}
.yde{bottom:982.320000pt;}
.yb5{bottom:990.320000pt;}
.y2b{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y27{bottom:1038.000000pt;}
.y26{bottom:1061.600000pt;}
.ha{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h17{height:54.927899pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.h15{height:101.786667pt;}
.h14{height:117.440000pt;}
.h11{height:133.066667pt;}
.he{height:160.346667pt;}
.hc{height:160.666667pt;}
.h12{height:164.320000pt;}
.h16{height:187.920000pt;}
.h10{height:188.000000pt;}
.hd{height:207.200000pt;}
.hb{height:215.626667pt;}
.h13{height:223.306667pt;}
.hf{height:226.906667pt;}
.h8{height:793.920000pt;}
.h9{height:794.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:31.440000pt;}
.w9{width:89.680000pt;}
.w7{width:91.280000pt;}
.wb{width:97.360000pt;}
.wa{width:125.440000pt;}
.w8{width:133.866667pt;}
.wc{width:408.266667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.w4{width:1122.000000pt;}
.w5{width:1122.239983pt;}
.w3{width:1122.240000pt;}
.x0{left:0.000000pt;}
.x9{left:3.440000pt;}
.x1{left:60.480000pt;}
.x8{left:70.560000pt;}
.x7{left:95.999983pt;}
.x11{left:98.879988pt;}
.xa{left:102.640000pt;}
.x2{left:180.266655pt;}
.xb{left:194.640000pt;}
.xc{left:329.146667pt;}
.x5{left:344.346650pt;}
.x3{left:396.986655pt;}
.xd{left:419.466667pt;}
.xe{left:545.546667pt;}
.x10{left:561.146650pt;}
.xf{left:643.546667pt;}
.x4{left:704.053322pt;}
.x6{left:996.773317pt;}
}




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