
    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_6b7c9459db0de183ebe8f522.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_38311a2b7aad4cd242615f44.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_baf94aae316d401e333e21d7.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_78a1ef6557c32734f10b01c2.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_69c29b9f81385b74d3e288c7.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_a860095458a6a10932daa6eb.woff')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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:ff8;src:url('chunks/assets/font_43abd90f52f677cc369518e7.woff')format("woff");}.ff8{font-family:ff8;line-height:0.740723;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:ff9;src:url('chunks/assets/font_6b1f996cc0a3c9bf48dc85c8.woff')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_989be9a69893395d56cead34.woff')format("woff");}.ffa{font-family:ffa;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;}
.m3{transform:matrix(0.000000,-0.250028,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250028,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250028,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,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;}
.ls15{letter-spacing:-0.299400px;}
.ls19{letter-spacing:-0.266400px;}
.ls12{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.lsa{letter-spacing:-0.084000px;}
.lsc{letter-spacing:-0.031800px;}
.ls1b{letter-spacing:-0.011160px;}
.ls22{letter-spacing:-0.008640px;}
.ls9{letter-spacing:-0.008400px;}
.ls14{letter-spacing:-0.007560px;}
.ls4{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.045360px;}
.ls17{letter-spacing:0.048960px;}
.ls1a{letter-spacing:0.053280px;}
.ls18{letter-spacing:0.060480px;}
.ls13{letter-spacing:0.060600px;}
.ls3{letter-spacing:0.065520px;}
.lse{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls21{letter-spacing:0.098400px;}
.ls16{letter-spacing:0.114600px;}
.ls5{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.173400px;}
.ls10{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.446400px;}
.ls8{letter-spacing:0.534600px;}
.ls1d{letter-spacing:0.806400px;}
.ls1f{letter-spacing:1.173600px;}
.ls24{letter-spacing:7.293600px;}
.ls20{letter-spacing:47.726640px;}
.ls1c{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;}
}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.wsf{word-spacing:-13.324800px;}
.wsc{word-spacing:-13.279680px;}
.ws3{word-spacing:-13.226400px;}
.wse{word-spacing:-13.218840px;}
.wsd{word-spacing:-13.215240px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsa{word-spacing:-8.614200px;}
.ws2{word-spacing:-8.553600px;}
.ws10{word-spacing:-8.544960px;}
.wsb{word-spacing:-8.254200px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._d{margin-left:-3.877560px;}
._4{margin-left:-2.435040px;}
._0{margin-left:-1.110000px;}
._2{width:1.049256px;}
._6{width:2.284800px;}
._3{width:4.103794px;}
._1{width:6.104160px;}
._5{width:7.362840px;}
._9{width:9.077399px;}
._8{width:10.100400px;}
._e{width:11.695703px;}
._11{width:15.270480px;}
._b{width:21.190080px;}
._a{width:22.244400px;}
._c{width:23.376720px;}
._7{width:24.649200px;}
._f{width:29.158200px;}
._10{width:30.158400px;}
._12{width:37.855200px;}
.fc2{color:transparent;}
.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;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs9{font-size:66.883345px;}
.fs8{font-size:66.890868px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:7.209804px;}
.y76{bottom:7.830000px;}
.y79{bottom:7.920000px;}
.y7a{bottom:11.700000px;}
.y6a{bottom:12.016324px;}
.y78{bottom:25.470000px;}
.y68{bottom:46.740120px;}
.y2{bottom:73.380000px;}
.y26{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yb8{bottom:118.290000px;}
.y49{bottom:118.470000px;}
.yb7{bottom:135.840000px;}
.y48{bottom:136.020000px;}
.y66{bottom:137.190000px;}
.y93{bottom:139.530000px;}
.yb6{bottom:153.480000px;}
.y65{bottom:154.830000px;}
.y92{bottom:157.170000px;}
.y24{bottom:162.840000px;}
.y47{bottom:170.850000px;}
.yb5{bottom:171.030000px;}
.y64{bottom:172.380000px;}
.y91{bottom:174.720000px;}
.y23{bottom:180.390000px;}
.y46{bottom:182.280000px;}
.y63{bottom:189.930000px;}
.y90{bottom:192.360000px;}
.yb4{bottom:197.580000px;}
.y22{bottom:198.030000px;}
.y62{bottom:207.570000px;}
.y8f{bottom:209.910000px;}
.yb3{bottom:215.220000px;}
.y21{bottom:215.580000px;}
.y61{bottom:225.120000px;}
.y8e{bottom:227.460000px;}
.yb2{bottom:241.770000px;}
.y60{bottom:242.760000px;}
.y8d{bottom:245.100000px;}
.y20{bottom:251.130000px;}
.y5f{bottom:260.310000px;}
.yb1{bottom:268.410000px;}
.y1f{bottom:268.770000px;}
.y5e{bottom:277.860000px;}
.y8c{bottom:278.040000px;}
.y1e{bottom:286.320000px;}
.yb0{bottom:294.960000px;}
.y5d{bottom:295.500000px;}
.y1d{bottom:303.960000px;}
.y8b{bottom:305.400000px;}
.yaf{bottom:312.510000px;}
.y5c{bottom:331.050000px;}
.y8a{bottom:332.760000px;}
.yae{bottom:339.150000px;}
.y1c{bottom:339.510000px;}
.y5b{bottom:348.600000px;}
.yad{bottom:356.700000px;}
.y1b{bottom:357.060000px;}
.y89{bottom:360.030000px;}
.yac{bottom:383.340000px;}
.y5a{bottom:383.520000px;}
.y88{bottom:387.390000px;}
.y1a{bottom:392.700000px;}
.y59{bottom:397.560000px;}
.yab{bottom:400.890000px;}
.y58{bottom:408.990000px;}
.y19{bottom:410.250000px;}
.y67{bottom:412.365000px;}
.y87{bottom:414.750000px;}
.y6b{bottom:416.246908px;}
.yaa{bottom:427.440000px;}
.y69{bottom:431.768020px;}
.y18{bottom:437.160000px;}
.y86{bottom:442.020000px;}
.ya9{bottom:445.080000px;}
.ya8{bottom:471.660000px;}
.y17{bottom:485.790000px;}
.ya7{bottom:489.300000px;}
.y85{bottom:490.830000px;}
.y45{bottom:500.730000px;}
.y84{bottom:508.380000px;}
.ya6{bottom:515.850000px;}
.y44{bottom:518.280000px;}
.y16{bottom:522.780000px;}
.ya5{bottom:533.400000px;}
.y15{bottom:540.420000px;}
.y83{bottom:543.930000px;}
.ya4{bottom:551.040000px;}
.y43{bottom:553.830000px;}
.y14{bottom:557.970000px;}
.y82{bottom:558.960000px;}
.y42{bottom:571.470000px;}
.ya3{bottom:577.590000px;}
.y81{bottom:586.230000px;}
.y41{bottom:589.020000px;}
.y13{bottom:593.610000px;}
.ya2{bottom:595.230000px;}
.y12{bottom:611.160000px;}
.ya1{bottom:612.780000px;}
.y80{bottom:613.590000px;}
.y40{bottom:624.660000px;}
.y11{bottom:628.710000px;}
.ya0{bottom:639.690000px;}
.y7f{bottom:640.950000px;}
.y3f{bottom:642.210000px;}
.y10{bottom:646.350000px;}
.y3e{bottom:659.760000px;}
.yf{bottom:663.900000px;}
.y7e{bottom:668.310000px;}
.y3d{bottom:677.400000px;}
.y9f{bottom:687.930000px;}
.ye{bottom:690.810000px;}
.y3c{bottom:694.950000px;}
.y7d{bottom:695.580000px;}
.y3b{bottom:712.590000px;}
.y9e{bottom:714.840000px;}
.y7c{bottom:722.940000px;}
.y3a{bottom:730.140000px;}
.yd{bottom:739.140000px;}
.y39{bottom:747.690000px;}
.y7b{bottom:750.300000px;}
.y57{bottom:752.190000px;}
.y38{bottom:765.330000px;}
.y56{bottom:769.740000px;}
.yc{bottom:774.690000px;}
.y77{bottom:777.570000px;}
.y55{bottom:787.290000px;}
.y9d{bottom:800.520000px;}
.y37{bottom:800.880000px;}
.y54{bottom:804.930000px;}
.yb{bottom:810.510000px;}
.y9c{bottom:818.070000px;}
.y36{bottom:818.520000px;}
.y53{bottom:822.480000px;}
.y75{bottom:822.570000px;}
.y9b{bottom:835.620000px;}
.y35{bottom:836.070000px;}
.y52{bottom:840.030000px;}
.ya{bottom:850.290000px;}
.y34{bottom:853.620000px;}
.y51{bottom:857.670000px;}
.y9{bottom:864.510000px;}
.y33{bottom:871.260000px;}
.y8{bottom:886.290000px;}
.y32{bottom:888.810000px;}
.y50{bottom:893.220000px;}
.y7{bottom:900.510000px;}
.y9a{bottom:906.450000px;}
.y74{bottom:906.810000px;}
.y4f{bottom:910.860000px;}
.y31{bottom:915.720000px;}
.y6{bottom:922.290000px;}
.y99{bottom:924.000000px;}
.y73{bottom:924.450000px;}
.y4e{bottom:928.410000px;}
.y98{bottom:941.550000px;}
.y72{bottom:942.000000px;}
.y4d{bottom:945.960000px;}
.y5{bottom:954.600000px;}
.y97{bottom:959.190000px;}
.y71{bottom:959.550000px;}
.y30{bottom:963.960000px;}
.y4{bottom:973.950000px;}
.y96{bottom:976.740000px;}
.y70{bottom:977.190000px;}
.y2f{bottom:981.600000px;}
.y6f{bottom:994.740000px;}
.y2e{bottom:999.150000px;}
.y95{bottom:1003.650000px;}
.y3{bottom:1012.230000px;}
.y6e{bottom:1012.320000px;}
.y4c{bottom:1016.820000px;}
.y4b{bottom:1034.370000px;}
.y2d{bottom:1034.820000px;}
.y6d{bottom:1039.230000px;}
.ybb{bottom:1043.370000px;}
.y4a{bottom:1051.920000px;}
.y2c{bottom:1052.370000px;}
.yba{bottom:1060.920000px;}
.y94{bottom:1069.560000px;}
.y2b{bottom:1069.920000px;}
.yb9{bottom:1078.560000px;}
.y2a{bottom:1087.560000px;}
.y29{bottom:1105.110000px;}
.y28{bottom:1122.750000px;}
.y27{bottom:1140.300000px;}
.y25{bottom:1194.300000px;}
.he{height:23.131434px;}
.h10{height:26.550000px;}
.h12{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h9{height:40.539023px;}
.h11{height:44.190000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.hb{height:56.635139px;}
.h13{height:61.793886px;}
.hd{height:66.524108px;}
.hf{height:66.531591px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.hc{height:294.600203px;}
.ha{height:316.200000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:23.929838px;}
.w9{width:35.190000px;}
.wa{width:38.880000px;}
.wb{width:73.980000px;}
.w11{width:90.630000px;}
.w5{width:97.321276px;}
.w10{width:98.220000px;}
.wc{width:128.550000px;}
.wf{width:128.610000px;}
.we{width:141.660000px;}
.w8{width:182.190000px;}
.wd{width:293.040000px;}
.w6{width:332.580000px;}
.w3{width:368.142083px;}
.w7{width:422.310000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:7.740000px;}
.x10{left:12.014973px;}
.x16{left:13.500000px;}
.xe{left:16.220231px;}
.x19{left:18.450000px;}
.x18{left:20.880000px;}
.x1c{left:23.850000px;}
.x25{left:29.070000px;}
.x28{left:35.460000px;}
.x24{left:40.770000px;}
.x27{left:44.940000px;}
.x1a{left:46.890000px;}
.x29{left:48.060000px;}
.x1f{left:50.220000px;}
.x26{left:51.750000px;}
.x1d{left:54.360000px;}
.x13{left:55.800000px;}
.x1{left:68.040000px;}
.x6{left:79.829987px;}
.x9{left:85.319987px;}
.x2a{left:111.239987px;}
.x20{left:132.480000px;}
.x1e{left:136.620000px;}
.x5{left:168.959987px;}
.x2{left:202.799987px;}
.x8{left:215.129987px;}
.x7{left:234.839987px;}
.x14{left:251.760000px;}
.xb{left:262.095000px;}
.xa{left:275.969987px;}
.xd{left:284.789927px;}
.x15{left:287.670000px;}
.x17{left:327.360000px;}
.x21{left:358.410000px;}
.xc{left:369.126641px;}
.x12{left:402.150000px;}
.xf{left:456.103423px;}
.x22{left:487.740000px;}
.x1b{left:531.420000px;}
.x23{left:586.680000px;}
.x4{left:633.389987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls15{letter-spacing:-0.266133pt;}
.ls19{letter-spacing:-0.236800pt;}
.ls12{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.lsa{letter-spacing:-0.074667pt;}
.lsc{letter-spacing:-0.028267pt;}
.ls1b{letter-spacing:-0.009920pt;}
.ls22{letter-spacing:-0.007680pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls14{letter-spacing:-0.006720pt;}
.ls4{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.040320pt;}
.ls17{letter-spacing:0.043520pt;}
.ls1a{letter-spacing:0.047360pt;}
.ls18{letter-spacing:0.053760pt;}
.ls13{letter-spacing:0.053867pt;}
.ls3{letter-spacing:0.058240pt;}
.lse{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls21{letter-spacing:0.087467pt;}
.ls16{letter-spacing:0.101867pt;}
.ls5{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.154133pt;}
.ls10{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.396800pt;}
.ls8{letter-spacing:0.475200pt;}
.ls1d{letter-spacing:0.716800pt;}
.ls1f{letter-spacing:1.043200pt;}
.ls24{letter-spacing:6.483200pt;}
.ls20{letter-spacing:42.423680pt;}
.ls1c{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.wsf{word-spacing:-11.844267pt;}
.wsc{word-spacing:-11.804160pt;}
.ws3{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.750080pt;}
.wsd{word-spacing:-11.746880pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsa{word-spacing:-7.657067pt;}
.ws2{word-spacing:-7.603200pt;}
.ws10{word-spacing:-7.595520pt;}
.wsb{word-spacing:-7.337067pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._d{margin-left:-3.446720pt;}
._4{margin-left:-2.164480pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.932672pt;}
._6{width:2.030934pt;}
._3{width:3.647817pt;}
._1{width:5.425920pt;}
._5{width:6.544747pt;}
._9{width:8.068799pt;}
._8{width:8.978134pt;}
._e{width:10.396180pt;}
._11{width:13.573760pt;}
._b{width:18.835627pt;}
._a{width:19.772800pt;}
._c{width:20.779307pt;}
._7{width:21.910400pt;}
._f{width:25.918400pt;}
._10{width:26.807467pt;}
._12{width:33.649067pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs9{font-size:59.451862pt;}
.fs8{font-size:59.458549pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:6.408714pt;}
.y76{bottom:6.960000pt;}
.y79{bottom:7.040000pt;}
.y7a{bottom:10.400000pt;}
.y6a{bottom:10.681177pt;}
.y78{bottom:22.640000pt;}
.y68{bottom:41.546773pt;}
.y2{bottom:65.226667pt;}
.y26{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yb8{bottom:105.146667pt;}
.y49{bottom:105.306667pt;}
.yb7{bottom:120.746667pt;}
.y48{bottom:120.906667pt;}
.y66{bottom:121.946667pt;}
.y93{bottom:124.026667pt;}
.yb6{bottom:136.426667pt;}
.y65{bottom:137.626667pt;}
.y92{bottom:139.706667pt;}
.y24{bottom:144.746667pt;}
.y47{bottom:151.866667pt;}
.yb5{bottom:152.026667pt;}
.y64{bottom:153.226667pt;}
.y91{bottom:155.306667pt;}
.y23{bottom:160.346667pt;}
.y46{bottom:162.026667pt;}
.y63{bottom:168.826667pt;}
.y90{bottom:170.986667pt;}
.yb4{bottom:175.626667pt;}
.y22{bottom:176.026667pt;}
.y62{bottom:184.506667pt;}
.y8f{bottom:186.586667pt;}
.yb3{bottom:191.306667pt;}
.y21{bottom:191.626667pt;}
.y61{bottom:200.106667pt;}
.y8e{bottom:202.186667pt;}
.yb2{bottom:214.906667pt;}
.y60{bottom:215.786667pt;}
.y8d{bottom:217.866667pt;}
.y20{bottom:223.226667pt;}
.y5f{bottom:231.386667pt;}
.yb1{bottom:238.586667pt;}
.y1f{bottom:238.906667pt;}
.y5e{bottom:246.986667pt;}
.y8c{bottom:247.146667pt;}
.y1e{bottom:254.506667pt;}
.yb0{bottom:262.186667pt;}
.y5d{bottom:262.666667pt;}
.y1d{bottom:270.186667pt;}
.y8b{bottom:271.466667pt;}
.yaf{bottom:277.786667pt;}
.y5c{bottom:294.266667pt;}
.y8a{bottom:295.786667pt;}
.yae{bottom:301.466667pt;}
.y1c{bottom:301.786667pt;}
.y5b{bottom:309.866667pt;}
.yad{bottom:317.066667pt;}
.y1b{bottom:317.386667pt;}
.y89{bottom:320.026667pt;}
.yac{bottom:340.746667pt;}
.y5a{bottom:340.906667pt;}
.y88{bottom:344.346667pt;}
.y1a{bottom:349.066667pt;}
.y59{bottom:353.386667pt;}
.yab{bottom:356.346667pt;}
.y58{bottom:363.546667pt;}
.y19{bottom:364.666667pt;}
.y67{bottom:366.546667pt;}
.y87{bottom:368.666667pt;}
.y6b{bottom:369.997251pt;}
.yaa{bottom:379.946667pt;}
.y69{bottom:383.793795pt;}
.y18{bottom:388.586667pt;}
.y86{bottom:392.906667pt;}
.ya9{bottom:395.626667pt;}
.ya8{bottom:419.253333pt;}
.y17{bottom:431.813333pt;}
.ya7{bottom:434.933333pt;}
.y85{bottom:436.293333pt;}
.y45{bottom:445.093333pt;}
.y84{bottom:451.893333pt;}
.ya6{bottom:458.533333pt;}
.y44{bottom:460.693333pt;}
.y16{bottom:464.693333pt;}
.ya5{bottom:474.133333pt;}
.y15{bottom:480.373333pt;}
.y83{bottom:483.493333pt;}
.ya4{bottom:489.813333pt;}
.y43{bottom:492.293333pt;}
.y14{bottom:495.973333pt;}
.y82{bottom:496.853333pt;}
.y42{bottom:507.973333pt;}
.ya3{bottom:513.413333pt;}
.y81{bottom:521.093333pt;}
.y41{bottom:523.573333pt;}
.y13{bottom:527.653333pt;}
.ya2{bottom:529.093333pt;}
.y12{bottom:543.253333pt;}
.ya1{bottom:544.693333pt;}
.y80{bottom:545.413333pt;}
.y40{bottom:555.253333pt;}
.y11{bottom:558.853333pt;}
.ya0{bottom:568.613333pt;}
.y7f{bottom:569.733333pt;}
.y3f{bottom:570.853333pt;}
.y10{bottom:574.533333pt;}
.y3e{bottom:586.453333pt;}
.yf{bottom:590.133333pt;}
.y7e{bottom:594.053333pt;}
.y3d{bottom:602.133333pt;}
.y9f{bottom:611.493333pt;}
.ye{bottom:614.053333pt;}
.y3c{bottom:617.733333pt;}
.y7d{bottom:618.293333pt;}
.y3b{bottom:633.413333pt;}
.y9e{bottom:635.413333pt;}
.y7c{bottom:642.613333pt;}
.y3a{bottom:649.013333pt;}
.yd{bottom:657.013333pt;}
.y39{bottom:664.613333pt;}
.y7b{bottom:666.933333pt;}
.y57{bottom:668.613333pt;}
.y38{bottom:680.293333pt;}
.y56{bottom:684.213333pt;}
.yc{bottom:688.613333pt;}
.y77{bottom:691.173333pt;}
.y55{bottom:699.813333pt;}
.y9d{bottom:711.573333pt;}
.y37{bottom:711.893333pt;}
.y54{bottom:715.493333pt;}
.yb{bottom:720.453333pt;}
.y9c{bottom:727.173333pt;}
.y36{bottom:727.573333pt;}
.y53{bottom:731.093333pt;}
.y75{bottom:731.173333pt;}
.y9b{bottom:742.773333pt;}
.y35{bottom:743.173333pt;}
.y52{bottom:746.693333pt;}
.ya{bottom:755.813333pt;}
.y34{bottom:758.773333pt;}
.y51{bottom:762.373333pt;}
.y9{bottom:768.453333pt;}
.y33{bottom:774.453333pt;}
.y8{bottom:787.813333pt;}
.y32{bottom:790.053333pt;}
.y50{bottom:793.973333pt;}
.y7{bottom:800.453333pt;}
.y9a{bottom:805.733333pt;}
.y74{bottom:806.053333pt;}
.y4f{bottom:809.653333pt;}
.y31{bottom:813.973333pt;}
.y6{bottom:819.813333pt;}
.y99{bottom:821.333333pt;}
.y73{bottom:821.733333pt;}
.y4e{bottom:825.253333pt;}
.y98{bottom:836.933333pt;}
.y72{bottom:837.333333pt;}
.y4d{bottom:840.853333pt;}
.y5{bottom:848.533333pt;}
.y97{bottom:852.613333pt;}
.y71{bottom:852.933333pt;}
.y30{bottom:856.853333pt;}
.y4{bottom:865.733333pt;}
.y96{bottom:868.213333pt;}
.y70{bottom:868.613333pt;}
.y2f{bottom:872.533333pt;}
.y6f{bottom:884.213333pt;}
.y2e{bottom:888.133333pt;}
.y95{bottom:892.133333pt;}
.y3{bottom:899.760000pt;}
.y6e{bottom:899.840000pt;}
.y4c{bottom:903.840000pt;}
.y4b{bottom:919.440000pt;}
.y2d{bottom:919.840000pt;}
.y6d{bottom:923.760000pt;}
.ybb{bottom:927.440000pt;}
.y4a{bottom:935.040000pt;}
.y2c{bottom:935.440000pt;}
.yba{bottom:943.040000pt;}
.y94{bottom:950.720000pt;}
.y2b{bottom:951.040000pt;}
.yb9{bottom:958.720000pt;}
.y2a{bottom:966.720000pt;}
.y29{bottom:982.320000pt;}
.y28{bottom:998.000000pt;}
.y27{bottom:1013.600000pt;}
.y25{bottom:1061.600000pt;}
.he{height:20.561274pt;}
.h10{height:23.600000pt;}
.h12{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h9{height:36.034687pt;}
.h11{height:39.280000pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.hb{height:50.342346pt;}
.h13{height:54.927899pt;}
.hd{height:59.132541pt;}
.hf{height:59.139192pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.hc{height:261.866847pt;}
.ha{height:281.066667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:21.270967pt;}
.w9{width:31.280000pt;}
.wa{width:34.560000pt;}
.wb{width:65.760000pt;}
.w11{width:80.560000pt;}
.w5{width:86.507801pt;}
.w10{width:87.306667pt;}
.wc{width:114.266667pt;}
.wf{width:114.320000pt;}
.we{width:125.920000pt;}
.w8{width:161.946667pt;}
.wd{width:260.480000pt;}
.w6{width:295.626667pt;}
.w3{width:327.237407pt;}
.w7{width:375.386667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.880000pt;}
.x10{left:10.679976pt;}
.x16{left:12.000000pt;}
.xe{left:14.417983pt;}
.x19{left:16.400000pt;}
.x18{left:18.560000pt;}
.x1c{left:21.200000pt;}
.x25{left:25.840000pt;}
.x28{left:31.520000pt;}
.x24{left:36.240000pt;}
.x27{left:39.946667pt;}
.x1a{left:41.680000pt;}
.x29{left:42.720000pt;}
.x1f{left:44.640000pt;}
.x26{left:46.000000pt;}
.x1d{left:48.320000pt;}
.x13{left:49.600000pt;}
.x1{left:60.480000pt;}
.x6{left:70.959988pt;}
.x9{left:75.839988pt;}
.x2a{left:98.879988pt;}
.x20{left:117.760000pt;}
.x1e{left:121.440000pt;}
.x5{left:150.186655pt;}
.x2{left:180.266655pt;}
.x8{left:191.226655pt;}
.x7{left:208.746655pt;}
.x14{left:223.786667pt;}
.xb{left:232.973333pt;}
.xa{left:245.306655pt;}
.xd{left:253.146602pt;}
.x15{left:255.706667pt;}
.x17{left:290.986667pt;}
.x21{left:318.586667pt;}
.xc{left:328.112569pt;}
.x12{left:357.466667pt;}
.xf{left:405.425265pt;}
.x22{left:433.546667pt;}
.x1b{left:472.373333pt;}
.x23{left:521.493333pt;}
.x4{left:563.013322pt;}
.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; }
  