
    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_3ce7e4549263a43ed8f66488.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_a22940bd6fdaa9ecc1677ed3.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_14ff8878eb04bb9d0d34ea7f.woff')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_2d4d07d3885e1fbb5c7df310.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_eb11fb045dba814224006031.woff')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_9331f10a6fc8f17227da557c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsa{letter-spacing:-0.243600px;}
.ls11{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.lsb{letter-spacing:-0.018600px;}
.ls5{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.005400px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.065520px;}
.lsd{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls13{letter-spacing:0.098400px;}
.ls12{letter-spacing:0.116400px;}
.ls6{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.173400px;}
.ls17{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:6.480000px;}
.ls16{letter-spacing:47.726640px;}
.ls14{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;}
}
.ws7{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.342800px;}
.wsd{word-spacing:-13.275360px;}
.wse{word-spacing:-13.231800px;}
.ws3{word-spacing:-13.226400px;}
.ws5{word-spacing:-13.207800px;}
.wsa{word-spacing:-13.039800px;}
.ws4{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._c{margin-left:-3.276731px;}
._a{margin-left:-2.111520px;}
._0{margin-left:-1.110000px;}
._2{width:1.006812px;}
._b{width:2.064709px;}
._6{width:3.324960px;}
._3f{width:4.326360px;}
._4{width:5.326680px;}
._3{width:6.564960px;}
._5{width:8.065202px;}
._e{width:9.471594px;}
._d{width:11.182320px;}
._9{width:12.204600px;}
._7{width:14.729400px;}
._8{width:16.207440px;}
._3d{width:17.278200px;}
._f{width:18.702228px;}
._1{width:20.047236px;}
._13{width:21.763440px;}
._33{width:22.965840px;}
._16{width:24.348600px;}
._34{width:25.971840px;}
._28{width:27.174240px;}
._24{width:29.398680px;}
._12{width:31.082040px;}
._3e{width:32.284440px;}
._25{width:33.426720px;}
._3a{width:34.989840px;}
._20{width:36.072000px;}
._17{width:37.274400px;}
._2c{width:38.492028px;}
._40{width:40.881600px;}
._32{width:41.903640px;}
._30{width:42.925680px;}
._31{width:44.007840px;}
._15{width:48.096000px;}
._27{width:49.719240px;}
._2a{width:51.342480px;}
._29{width:52.965720px;}
._26{width:54.769320px;}
._10{width:57.835440px;}
._3b{width:60.300360px;}
._3c{width:61.743240px;}
._1c{width:62.825400px;}
._1d{width:65.109960px;}
._1a{width:66.612960px;}
._21{width:71.482680px;}
._18{width:83.867400px;}
._39{width:86.151960px;}
._14{width:88.256160px;}
._23{width:91.562760px;}
._1f{width:96.131880px;}
._2d{width:106.292160px;}
._22{width:109.839240px;}
._35{width:125.109720px;}
._38{width:128.115720px;}
._37{width:129.258000px;}
._19{width:135.510480px;}
._36{width:136.773000px;}
._2e{width:140.620680px;}
._11{width:156.287520px;}
._2b{width:193.646520px;}
._1b{width:198.155520px;}
._2f{width:224.788680px;}
._1e{width:479.517120px;}
.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;}
.y5f{bottom:7.830000px;}
.y64{bottom:7.920000px;}
.y62{bottom:25.380000px;}
.y5e{bottom:25.470000px;}
.y61{bottom:43.020000px;}
.y6b{bottom:43.050000px;}
.y67{bottom:43.110000px;}
.y69{bottom:60.570000px;}
.y6e{bottom:60.660000px;}
.y2{bottom:73.380000px;}
.y26{bottom:74.190000px;}
.y5b{bottom:74.280000px;}
.y6f{bottom:89.400000px;}
.y1{bottom:101.640000px;}
.y56{bottom:116.670000px;}
.yb0{bottom:119.100000px;}
.y55{bottom:134.310000px;}
.yaf{bottom:136.740000px;}
.y8c{bottom:146.910000px;}
.y54{bottom:151.860000px;}
.yae{bottom:154.290000px;}
.y59{bottom:161.580000px;}
.y8b{bottom:164.460000px;}
.y53{bottom:169.500000px;}
.y24{bottom:173.730000px;}
.yad{bottom:180.840000px;}
.y8a{bottom:182.100000px;}
.y23{bottom:191.280000px;}
.y58{bottom:193.800000px;}
.yac{bottom:198.480000px;}
.y89{bottom:199.650000px;}
.y52{bottom:205.050000px;}
.y22{bottom:208.920000px;}
.yab{bottom:216.030000px;}
.y88{bottom:217.200000px;}
.y51{bottom:222.600000px;}
.y21{bottom:226.470000px;}
.y6d{bottom:231.960000px;}
.y87{bottom:234.840000px;}
.y50{bottom:240.240000px;}
.yaa{bottom:242.580000px;}
.y20{bottom:244.020000px;}
.y86{bottom:252.390000px;}
.y4f{bottom:257.790000px;}
.ya9{bottom:260.220000px;}
.y1f{bottom:270.930000px;}
.y4e{bottom:275.430000px;}
.ya8{bottom:277.770000px;}
.y85{bottom:287.940000px;}
.y6c{bottom:294.420000px;}
.y4d{bottom:302.250000px;}
.ya7{bottom:304.410000px;}
.y84{bottom:305.580000px;}
.y1e{bottom:319.260000px;}
.ya6{bottom:321.960000px;}
.y83{bottom:323.130000px;}
.y1d{bottom:337.170000px;}
.y82{bottom:340.770000px;}
.ya5{bottom:348.510000px;}
.y4c{bottom:350.580000px;}
.y6a{bottom:356.970000px;}
.y81{bottom:358.320000px;}
.ya4{bottom:366.150000px;}
.y4b{bottom:368.130000px;}
.y1c{bottom:374.160000px;}
.y80{bottom:375.870000px;}
.ya3{bottom:383.700000px;}
.y4a{bottom:385.770000px;}
.y1b{bottom:391.800000px;}
.y49{bottom:403.320000px;}
.ya2{bottom:410.340000px;}
.y7f{bottom:411.510000px;}
.y68{bottom:419.550000px;}
.y48{bottom:420.870000px;}
.y1a{bottom:427.350000px;}
.ya1{bottom:427.890000px;}
.y7e{bottom:429.060000px;}
.y47{bottom:438.510000px;}
.y19{bottom:444.900000px;}
.ya0{bottom:445.440000px;}
.y7d{bottom:446.700000px;}
.y18{bottom:462.540000px;}
.y7c{bottom:464.250000px;}
.y46{bottom:465.060000px;}
.y9f{bottom:472.110000px;}
.y17{bottom:480.120000px;}
.y9e{bottom:489.660000px;}
.y7b{bottom:491.190000px;}
.y16{bottom:497.670000px;}
.y66{bottom:499.560000px;}
.y45{bottom:500.730000px;}
.y9d{bottom:507.300000px;}
.y44{bottom:518.280000px;}
.y9c{bottom:524.850000px;}
.y15{bottom:533.310000px;}
.y43{bottom:535.830000px;}
.y7a{bottom:536.820000px;}
.y14{bottom:550.860000px;}
.y9b{bottom:551.400000px;}
.y42{bottom:553.470000px;}
.y65{bottom:562.110000px;}
.y13{bottom:568.500000px;}
.y9a{bottom:569.040000px;}
.y41{bottom:571.020000px;}
.y79{bottom:581.730000px;}
.y99{bottom:586.590000px;}
.y40{bottom:588.660000px;}
.y12{bottom:604.050000px;}
.y98{bottom:604.230000px;}
.y3f{bottom:615.210000px;}
.y11{bottom:621.600000px;}
.y63{bottom:624.570000px;}
.y78{bottom:626.730000px;}
.y97{bottom:630.780000px;}
.y10{bottom:639.240000px;}
.y96{bottom:648.330000px;}
.y3e{bottom:650.760000px;}
.yf{bottom:656.790000px;}
.y3d{bottom:668.400000px;}
.y60{bottom:669.570000px;}
.y77{bottom:671.640000px;}
.ye{bottom:674.430000px;}
.y95{bottom:675.240000px;}
.y3c{bottom:685.950000px;}
.yd{bottom:701.340000px;}
.y3b{bottom:703.590000px;}
.y76{bottom:716.550000px;}
.y3a{bottom:721.140000px;}
.y94{bottom:723.570000px;}
.yc0{bottom:725.550000px;}
.y5d{bottom:732.060000px;}
.ybf{bottom:743.190000px;}
.y39{bottom:747.690000px;}
.yc{bottom:749.580000px;}
.y93{bottom:750.480000px;}
.ybe{bottom:760.740000px;}
.y75{bottom:761.460000px;}
.y38{bottom:783.330000px;}
.yb{bottom:785.130000px;}
.ybd{bottom:787.290000px;}
.y92{bottom:787.830000px;}
.y5c{bottom:798.390000px;}
.y37{bottom:800.880000px;}
.ybc{bottom:804.930000px;}
.y36{bottom:818.520000px;}
.ya{bottom:820.950000px;}
.ybb{bottom:822.480000px;}
.y74{bottom:823.920000px;}
.y5a{bottom:824.940000px;}
.y35{bottom:836.070000px;}
.yba{bottom:849.030000px;}
.y91{bottom:853.620000px;}
.y9{bottom:856.950000px;}
.y34{bottom:862.980000px;}
.yb9{bottom:866.670000px;}
.y90{bottom:871.260000px;}
.y8{bottom:878.730000px;}
.yb8{bottom:884.220000px;}
.y73{bottom:886.470000px;}
.y8f{bottom:888.810000px;}
.y7{bottom:892.950000px;}
.yb7{bottom:910.860000px;}
.y33{bottom:911.220000px;}
.y6{bottom:914.730000px;}
.y8e{bottom:915.720000px;}
.yb6{bottom:928.410000px;}
.y32{bottom:928.860000px;}
.y31{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.y72{bottom:948.930000px;}
.yb5{bottom:954.960000px;}
.y30{bottom:963.960000px;}
.yb4{bottom:972.600000px;}
.y2f{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.yb3{bottom:990.150000px;}
.y2e{bottom:999.150000px;}
.y3{bottom:1010.070000px;}
.y71{bottom:1011.510000px;}
.y2d{bottom:1016.820000px;}
.y2c{bottom:1034.370000px;}
.y57{bottom:1051.920000px;}
.y8d{bottom:1052.370000px;}
.y2b{bottom:1069.920000px;}
.y70{bottom:1073.970000px;}
.yb2{bottom:1078.560000px;}
.y2a{bottom:1087.560000px;}
.yb1{bottom:1096.110000px;}
.y29{bottom:1105.110000px;}
.y28{bottom:1122.750000px;}
.y27{bottom:1140.300000px;}
.y25{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h14{height:44.100000px;}
.hd{height:44.190000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h8{height:60.960938px;}
.hf{height:61.740000px;}
.he{height:61.770000px;}
.h15{height:61.793886px;}
.h10{height:61.830000px;}
.h13{height:61.860000px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h11{height:79.290000px;}
.h12{height:79.380000px;}
.hb{height:893.160000px;}
.hc{height:893.250000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w8{width:84.690000px;}
.w6{width:93.330000px;}
.wd{width:123.510000px;}
.w9{width:129.420000px;}
.w7{width:135.390000px;}
.wa{width:165.690000px;}
.we{width:188.910000px;}
.w10{width:199.440000px;}
.wb{width:212.340000px;}
.wc{width:219.690000px;}
.wf{width:241.680000px;}
.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.960000px;}
.xf{left:7.740000px;}
.x1{left:68.040000px;}
.x8{left:107.999981px;}
.x13{left:111.239987px;}
.x10{left:192.990000px;}
.x2{left:202.799987px;}
.x5{left:281.819987px;}
.xa{left:338.970000px;}
.x11{left:382.620000px;}
.x6{left:387.389981px;}
.xb{left:424.380000px;}
.xc{left:554.610000px;}
.x12{left:625.020000px;}
.xd{left:721.110000px;}
.x4{left:779.639987px;}
.x3{left:792.059987px;}
.xe{left:934.170000px;}
.x7{left:1121.369981px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsa{letter-spacing:-0.216533pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.lsb{letter-spacing:-0.016533pt;}
.ls5{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.004800pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.058240pt;}
.lsd{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls13{letter-spacing:0.087467pt;}
.ls12{letter-spacing:0.103467pt;}
.ls6{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.154133pt;}
.ls17{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:5.760000pt;}
.ls16{letter-spacing:42.423680pt;}
.ls14{letter-spacing:71.863680pt;}
.ws7{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.860267pt;}
.wsd{word-spacing:-11.800320pt;}
.wse{word-spacing:-11.761600pt;}
.ws3{word-spacing:-11.756800pt;}
.ws5{word-spacing:-11.740267pt;}
.wsa{word-spacing:-11.590933pt;}
.ws4{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._c{margin-left:-2.912650pt;}
._a{margin-left:-1.876907pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.894944pt;}
._b{width:1.835297pt;}
._6{width:2.955520pt;}
._3f{width:3.845654pt;}
._4{width:4.734826pt;}
._3{width:5.835520pt;}
._5{width:7.169068pt;}
._e{width:8.419195pt;}
._d{width:9.939840pt;}
._9{width:10.848534pt;}
._7{width:13.092800pt;}
._8{width:14.406613pt;}
._3d{width:15.358400pt;}
._f{width:16.624203pt;}
._1{width:17.819765pt;}
._13{width:19.345280pt;}
._33{width:20.414080pt;}
._16{width:21.643200pt;}
._34{width:23.086080pt;}
._28{width:24.154880pt;}
._24{width:26.132160pt;}
._12{width:27.628480pt;}
._3e{width:28.697280pt;}
._25{width:29.712640pt;}
._3a{width:31.102080pt;}
._20{width:32.064000pt;}
._17{width:33.132800pt;}
._2c{width:34.215136pt;}
._40{width:36.339200pt;}
._32{width:37.247680pt;}
._30{width:38.156160pt;}
._31{width:39.118080pt;}
._15{width:42.752000pt;}
._27{width:44.194880pt;}
._2a{width:45.637760pt;}
._29{width:47.080640pt;}
._26{width:48.683840pt;}
._10{width:51.409280pt;}
._3b{width:53.600320pt;}
._3c{width:54.882880pt;}
._1c{width:55.844800pt;}
._1d{width:57.875520pt;}
._1a{width:59.211520pt;}
._21{width:63.540160pt;}
._18{width:74.548800pt;}
._39{width:76.579520pt;}
._14{width:78.449920pt;}
._23{width:81.389120pt;}
._1f{width:85.450560pt;}
._2d{width:94.481920pt;}
._22{width:97.634880pt;}
._35{width:111.208640pt;}
._38{width:113.880640pt;}
._37{width:114.896000pt;}
._19{width:120.453760pt;}
._36{width:121.576000pt;}
._2e{width:124.996160pt;}
._11{width:138.922240pt;}
._2b{width:172.130240pt;}
._1b{width:176.138240pt;}
._2f{width:199.812160pt;}
._1e{width:426.237440pt;}
.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;}
.y5f{bottom:6.960000pt;}
.y64{bottom:7.040000pt;}
.y62{bottom:22.560000pt;}
.y5e{bottom:22.640000pt;}
.y61{bottom:38.240000pt;}
.y6b{bottom:38.266667pt;}
.y67{bottom:38.320000pt;}
.y69{bottom:53.840000pt;}
.y6e{bottom:53.920000pt;}
.y2{bottom:65.226667pt;}
.y26{bottom:65.946667pt;}
.y5b{bottom:66.026667pt;}
.y6f{bottom:79.466667pt;}
.y1{bottom:90.346667pt;}
.y56{bottom:103.706667pt;}
.yb0{bottom:105.866667pt;}
.y55{bottom:119.386667pt;}
.yaf{bottom:121.546667pt;}
.y8c{bottom:130.586667pt;}
.y54{bottom:134.986667pt;}
.yae{bottom:137.146667pt;}
.y59{bottom:143.626667pt;}
.y8b{bottom:146.186667pt;}
.y53{bottom:150.666667pt;}
.y24{bottom:154.426667pt;}
.yad{bottom:160.746667pt;}
.y8a{bottom:161.866667pt;}
.y23{bottom:170.026667pt;}
.y58{bottom:172.266667pt;}
.yac{bottom:176.426667pt;}
.y89{bottom:177.466667pt;}
.y52{bottom:182.266667pt;}
.y22{bottom:185.706667pt;}
.yab{bottom:192.026667pt;}
.y88{bottom:193.066667pt;}
.y51{bottom:197.866667pt;}
.y21{bottom:201.306667pt;}
.y6d{bottom:206.186667pt;}
.y87{bottom:208.746667pt;}
.y50{bottom:213.546667pt;}
.yaa{bottom:215.626667pt;}
.y20{bottom:216.906667pt;}
.y86{bottom:224.346667pt;}
.y4f{bottom:229.146667pt;}
.ya9{bottom:231.306667pt;}
.y1f{bottom:240.826667pt;}
.y4e{bottom:244.826667pt;}
.ya8{bottom:246.906667pt;}
.y85{bottom:255.946667pt;}
.y6c{bottom:261.706667pt;}
.y4d{bottom:268.666667pt;}
.ya7{bottom:270.586667pt;}
.y84{bottom:271.626667pt;}
.y1e{bottom:283.786667pt;}
.ya6{bottom:286.186667pt;}
.y83{bottom:287.226667pt;}
.y1d{bottom:299.706667pt;}
.y82{bottom:302.906667pt;}
.ya5{bottom:309.786667pt;}
.y4c{bottom:311.626667pt;}
.y6a{bottom:317.306667pt;}
.y81{bottom:318.506667pt;}
.ya4{bottom:325.466667pt;}
.y4b{bottom:327.226667pt;}
.y1c{bottom:332.586667pt;}
.y80{bottom:334.106667pt;}
.ya3{bottom:341.066667pt;}
.y4a{bottom:342.906667pt;}
.y1b{bottom:348.266667pt;}
.y49{bottom:358.506667pt;}
.ya2{bottom:364.746667pt;}
.y7f{bottom:365.786667pt;}
.y68{bottom:372.933333pt;}
.y48{bottom:374.106667pt;}
.y1a{bottom:379.866667pt;}
.ya1{bottom:380.346667pt;}
.y7e{bottom:381.386667pt;}
.y47{bottom:389.786667pt;}
.y19{bottom:395.466667pt;}
.ya0{bottom:395.946667pt;}
.y7d{bottom:397.066667pt;}
.y18{bottom:411.146667pt;}
.y7c{bottom:412.666667pt;}
.y46{bottom:413.386667pt;}
.y9f{bottom:419.653333pt;}
.y17{bottom:426.773333pt;}
.y9e{bottom:435.253333pt;}
.y7b{bottom:436.613333pt;}
.y16{bottom:442.373333pt;}
.y66{bottom:444.053333pt;}
.y45{bottom:445.093333pt;}
.y9d{bottom:450.933333pt;}
.y44{bottom:460.693333pt;}
.y9c{bottom:466.533333pt;}
.y15{bottom:474.053333pt;}
.y43{bottom:476.293333pt;}
.y7a{bottom:477.173333pt;}
.y14{bottom:489.653333pt;}
.y9b{bottom:490.133333pt;}
.y42{bottom:491.973333pt;}
.y65{bottom:499.653333pt;}
.y13{bottom:505.333333pt;}
.y9a{bottom:505.813333pt;}
.y41{bottom:507.573333pt;}
.y79{bottom:517.093333pt;}
.y99{bottom:521.413333pt;}
.y40{bottom:523.253333pt;}
.y12{bottom:536.933333pt;}
.y98{bottom:537.093333pt;}
.y3f{bottom:546.853333pt;}
.y11{bottom:552.533333pt;}
.y63{bottom:555.173333pt;}
.y78{bottom:557.093333pt;}
.y97{bottom:560.693333pt;}
.y10{bottom:568.213333pt;}
.y96{bottom:576.293333pt;}
.y3e{bottom:578.453333pt;}
.yf{bottom:583.813333pt;}
.y3d{bottom:594.133333pt;}
.y60{bottom:595.173333pt;}
.y77{bottom:597.013333pt;}
.ye{bottom:599.493333pt;}
.y95{bottom:600.213333pt;}
.y3c{bottom:609.733333pt;}
.yd{bottom:623.413333pt;}
.y3b{bottom:625.413333pt;}
.y76{bottom:636.933333pt;}
.y3a{bottom:641.013333pt;}
.y94{bottom:643.173333pt;}
.yc0{bottom:644.933333pt;}
.y5d{bottom:650.720000pt;}
.ybf{bottom:660.613333pt;}
.y39{bottom:664.613333pt;}
.yc{bottom:666.293333pt;}
.y93{bottom:667.093333pt;}
.ybe{bottom:676.213333pt;}
.y75{bottom:676.853333pt;}
.y38{bottom:696.293333pt;}
.yb{bottom:697.893333pt;}
.ybd{bottom:699.813333pt;}
.y92{bottom:700.293333pt;}
.y5c{bottom:709.680000pt;}
.y37{bottom:711.893333pt;}
.ybc{bottom:715.493333pt;}
.y36{bottom:727.573333pt;}
.ya{bottom:729.733333pt;}
.ybb{bottom:731.093333pt;}
.y74{bottom:732.373333pt;}
.y5a{bottom:733.280000pt;}
.y35{bottom:743.173333pt;}
.yba{bottom:754.693333pt;}
.y91{bottom:758.773333pt;}
.y9{bottom:761.733333pt;}
.y34{bottom:767.093333pt;}
.yb9{bottom:770.373333pt;}
.y90{bottom:774.453333pt;}
.y8{bottom:781.093333pt;}
.yb8{bottom:785.973333pt;}
.y73{bottom:787.973333pt;}
.y8f{bottom:790.053333pt;}
.y7{bottom:793.733333pt;}
.yb7{bottom:809.653333pt;}
.y33{bottom:809.973333pt;}
.y6{bottom:813.093333pt;}
.y8e{bottom:813.973333pt;}
.yb6{bottom:825.253333pt;}
.y32{bottom:825.653333pt;}
.y31{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.y72{bottom:843.493333pt;}
.yb5{bottom:848.853333pt;}
.y30{bottom:856.853333pt;}
.yb4{bottom:864.533333pt;}
.y2f{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.yb3{bottom:880.133333pt;}
.y2e{bottom:888.133333pt;}
.y3{bottom:897.840000pt;}
.y71{bottom:899.120000pt;}
.y2d{bottom:903.840000pt;}
.y2c{bottom:919.440000pt;}
.y57{bottom:935.040000pt;}
.y8d{bottom:935.440000pt;}
.y2b{bottom:951.040000pt;}
.y70{bottom:954.640000pt;}
.yb2{bottom:958.720000pt;}
.y2a{bottom:966.720000pt;}
.yb1{bottom:974.320000pt;}
.y29{bottom:982.320000pt;}
.y28{bottom:998.000000pt;}
.y27{bottom:1013.600000pt;}
.y25{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h14{height:39.200000pt;}
.hd{height:39.280000pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h8{height:54.187500pt;}
.hf{height:54.880000pt;}
.he{height:54.906667pt;}
.h15{height:54.927899pt;}
.h10{height:54.960000pt;}
.h13{height:54.986667pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h11{height:70.480000pt;}
.h12{height:70.560000pt;}
.hb{height:793.920000pt;}
.hc{height:794.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w8{width:75.280000pt;}
.w6{width:82.960000pt;}
.wd{width:109.786667pt;}
.w9{width:115.040000pt;}
.w7{width:120.346667pt;}
.wa{width:147.280000pt;}
.we{width:167.920000pt;}
.w10{width:177.280000pt;}
.wb{width:188.746667pt;}
.wc{width:195.280000pt;}
.wf{width:214.826667pt;}
.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.520000pt;}
.xf{left:6.880000pt;}
.x1{left:60.480000pt;}
.x8{left:95.999983pt;}
.x13{left:98.879988pt;}
.x10{left:171.546667pt;}
.x2{left:180.266655pt;}
.x5{left:250.506655pt;}
.xa{left:301.306667pt;}
.x11{left:340.106667pt;}
.x6{left:344.346650pt;}
.xb{left:377.226667pt;}
.xc{left:492.986667pt;}
.x12{left:555.573333pt;}
.xd{left:640.986667pt;}
.x4{left:693.013322pt;}
.x3{left:704.053322pt;}
.xe{left:830.373333pt;}
.x7{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; }
  