
    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_c756804c1966983d20adf792.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_59cdfd2f3830dbed9052f4ff.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_299fb3a3680de19b69476152.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_9c994de5d0d1cad40695c903.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_235d69cb970913c026368ae9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9e84339854904f3a05b03f20.woff')format("woff");}.ff7{font-family:ff7;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;}
.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;}
.ls17{letter-spacing:-0.243600px;}
.lsd{letter-spacing:-0.186600px;}
.ls15{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls10{letter-spacing:-0.048960px;}
.lse{letter-spacing:-0.014760px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsb{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.lsa{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls13{letter-spacing:0.116400px;}
.ls5{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.173400px;}
.ls12{letter-spacing:0.177000px;}
.ls14{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls16{letter-spacing:47.726640px;}
.ls11{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.wsd{word-spacing:-13.425600px;}
.wsf{word-spacing:-13.403400px;}
.ws6{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.342800px;}
.wsa{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws9{word-spacing:-13.211640px;}
.wsb{word-spacing:-13.177440px;}
.wse{word-spacing:-13.072800px;}
.ws7{word-spacing:-13.039800px;}
.ws10{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._4{margin-left:-4.007397px;}
._3{margin-left:-2.946000px;}
._0{margin-left:-1.110000px;}
._1{width:1.068840px;}
._9{width:2.825400px;}
._c{width:3.947642px;}
._2{width:5.892000px;}
._5{width:7.575000px;}
._f{width:9.559080px;}
._b{width:10.609200px;}
._d{width:11.691000px;}
._6{width:15.210600px;}
._7{width:16.531196px;}
._14{width:18.156240px;}
._15{width:19.719360px;}
._12{width:21.522960px;}
._e{width:23.206320px;}
._8{width:24.829800px;}
._11{width:26.873640px;}
._a{width:32.224200px;}
._13{width:37.575000px;}
._17{width:40.941720px;}
._19{width:53.566920px;}
._1a{width:54.649080px;}
._18{width:55.731240px;}
._10{width:62.164080px;}
._16{width:1086.306960px;}
.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;}
.y4b{bottom:7.830000px;}
.y49{bottom:7.920000px;}
.y81{bottom:7.950000px;}
.ya8{bottom:25.470000px;}
.y80{bottom:25.500000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y7e{bottom:111.270000px;}
.yca{bottom:124.950000px;}
.ya5{bottom:127.200000px;}
.y7d{bottom:128.910000px;}
.yf0{bottom:130.800000px;}
.y28{bottom:131.160000px;}
.yc9{bottom:142.590000px;}
.ya4{bottom:144.840000px;}
.yef{bottom:148.350000px;}
.y27{bottom:148.710000px;}
.y55{bottom:159.150000px;}
.y7c{bottom:164.460000px;}
.yee{bottom:165.990000px;}
.y26{bottom:166.350000px;}
.ya3{bottom:171.390000px;}
.yc8{bottom:178.140000px;}
.y7b{bottom:182.100000px;}
.y25{bottom:183.900000px;}
.y54{bottom:186.420000px;}
.yed{bottom:192.540000px;}
.yc7{bottom:195.780000px;}
.y7a{bottom:199.650000px;}
.y24{bottom:201.540000px;}
.ya2{bottom:206.940000px;}
.yec{bottom:210.180000px;}
.yc6{bottom:213.330000px;}
.y53{bottom:213.780000px;}
.y79{bottom:217.200000px;}
.y23{bottom:219.090000px;}
.ya1{bottom:224.580000px;}
.yeb{bottom:227.730000px;}
.yc5{bottom:230.880000px;}
.y78{bottom:234.840000px;}
.y52{bottom:241.140000px;}
.ya0{bottom:242.130000px;}
.yc4{bottom:248.520000px;}
.yea{bottom:254.280000px;}
.y22{bottom:254.640000px;}
.y9f{bottom:259.770000px;}
.y77{bottom:261.390000px;}
.yc3{bottom:266.070000px;}
.y51{bottom:268.410000px;}
.ye9{bottom:271.920000px;}
.y21{bottom:272.280000px;}
.y9e{bottom:277.320000px;}
.ye8{bottom:289.470000px;}
.y20{bottom:289.830000px;}
.y50{bottom:295.770000px;}
.y76{bottom:296.940000px;}
.yc2{bottom:301.620000px;}
.y1f{bottom:307.380000px;}
.y9d{bottom:312.870000px;}
.y75{bottom:314.580000px;}
.ye7{bottom:316.110000px;}
.yc1{bottom:319.260000px;}
.y4f{bottom:323.130000px;}
.y1e{bottom:325.020000px;}
.y9c{bottom:330.510000px;}
.y74{bottom:332.130000px;}
.ye6{bottom:333.660000px;}
.yc0{bottom:336.810000px;}
.y1d{bottom:342.570000px;}
.y9b{bottom:348.060000px;}
.y73{bottom:349.770000px;}
.y4e{bottom:350.490000px;}
.ybf{bottom:354.450000px;}
.y1c{bottom:360.210000px;}
.y9a{bottom:365.700000px;}
.y72{bottom:367.320000px;}
.ybe{bottom:372.000000px;}
.y1b{bottom:377.760000px;}
.ye5{bottom:377.850000px;}
.y99{bottom:383.250000px;}
.ybd{bottom:389.550000px;}
.y71{bottom:393.870000px;}
.ye4{bottom:395.400000px;}
.y4d{bottom:405.120000px;}
.y98{bottom:409.800000px;}
.y1a{bottom:413.310000px;}
.ye3{bottom:421.950000px;}
.ybc{bottom:425.190000px;}
.y70{bottom:429.510000px;}
.y19{bottom:430.950000px;}
.y4c{bottom:432.480000px;}
.ye2{bottom:439.590000px;}
.ybb{bottom:442.740000px;}
.y97{bottom:445.440000px;}
.y6f{bottom:447.060000px;}
.y18{bottom:448.500000px;}
.ye1{bottom:457.140000px;}
.y4a{bottom:459.840000px;}
.yba{bottom:460.380000px;}
.y96{bottom:462.990000px;}
.y6e{bottom:464.700000px;}
.y17{bottom:466.140000px;}
.ye0{bottom:474.810000px;}
.yb9{bottom:477.960000px;}
.y95{bottom:480.660000px;}
.y6d{bottom:482.280000px;}
.y16{bottom:483.720000px;}
.y48{bottom:487.140000px;}
.ydf{bottom:492.360000px;}
.yb8{bottom:495.510000px;}
.y94{bottom:498.210000px;}
.y15{bottom:501.270000px;}
.y6c{bottom:508.830000px;}
.yde{bottom:509.910000px;}
.y93{bottom:515.760000px;}
.y14{bottom:518.910000px;}
.yb7{bottom:531.150000px;}
.y47{bottom:535.830000px;}
.ydd{bottom:536.820000px;}
.y6b{bottom:544.470000px;}
.y13{bottom:545.820000px;}
.yb6{bottom:548.700000px;}
.y92{bottom:551.400000px;}
.y6a{bottom:562.020000px;}
.yb5{bottom:566.340000px;}
.y91{bottom:568.950000px;}
.y46{bottom:571.470000px;}
.y69{bottom:579.660000px;}
.yb4{bottom:583.890000px;}
.ydc{bottom:585.150000px;}
.y90{bottom:586.590000px;}
.y45{bottom:589.020000px;}
.y12{bottom:594.420000px;}
.y68{bottom:597.210000px;}
.yb3{bottom:601.440000px;}
.ydb{bottom:602.700000px;}
.y8f{bottom:604.140000px;}
.y44{bottom:606.660000px;}
.y67{bottom:614.760000px;}
.yb2{bottom:619.080000px;}
.yda{bottom:620.340000px;}
.y8e{bottom:621.690000px;}
.y43{bottom:624.210000px;}
.y11{bottom:631.410000px;}
.yd9{bottom:637.890000px;}
.y66{bottom:641.400000px;}
.y42{bottom:641.760000px;}
.yb1{bottom:645.630000px;}
.y8d{bottom:648.330000px;}
.y10{bottom:648.960000px;}
.yd8{bottom:655.440000px;}
.y41{bottom:659.400000px;}
.yf{bottom:666.600000px;}
.yd7{bottom:673.080000px;}
.y65{bottom:676.950000px;}
.yb0{bottom:678.660000px;}
.ye{bottom:684.150000px;}
.y8c{bottom:684.240000px;}
.yd6{bottom:690.630000px;}
.y64{bottom:694.590000px;}
.y40{bottom:694.950000px;}
.yd{bottom:701.790000px;}
.yaf{bottom:705.930000px;}
.yd5{bottom:708.270000px;}
.y63{bottom:712.140000px;}
.y3f{bottom:712.590000px;}
.yc{bottom:719.340000px;}
.y62{bottom:729.690000px;}
.y8b{bottom:729.870000px;}
.y3e{bottom:730.140000px;}
.yae{bottom:733.290000px;}
.yd4{bottom:735.090000px;}
.yb{bottom:736.890000px;}
.y61{bottom:747.330000px;}
.y3d{bottom:747.690000px;}
.ya{bottom:754.530000px;}
.y8a{bottom:757.230000px;}
.yad{bottom:760.650000px;}
.y3c{bottom:765.330000px;}
.yd3{bottom:781.170000px;}
.y9{bottom:781.440000px;}
.y3b{bottom:782.880000px;}
.y89{bottom:784.500000px;}
.yac{bottom:787.920000px;}
.y60{bottom:800.520000px;}
.yd2{bottom:808.890000px;}
.y88{bottom:811.860000px;}
.yab{bottom:815.280000px;}
.y5f{bottom:818.070000px;}
.y3a{bottom:818.520000px;}
.y8{bottom:828.240000px;}
.y5e{bottom:835.620000px;}
.y39{bottom:836.070000px;}
.yd1{bottom:836.610000px;}
.y87{bottom:839.220000px;}
.yaa{bottom:842.640000px;}
.y5d{bottom:853.260000px;}
.y38{bottom:853.620000px;}
.y7{bottom:863.790000px;}
.yd0{bottom:864.330000px;}
.y86{bottom:866.580000px;}
.ya9{bottom:870.000000px;}
.y37{bottom:871.260000px;}
.y5c{bottom:879.810000px;}
.y36{bottom:888.810000px;}
.ycf{bottom:892.050000px;}
.y85{bottom:893.850000px;}
.ya7{bottom:897.270000px;}
.y6{bottom:899.610000px;}
.y35{bottom:906.450000px;}
.y5b{bottom:915.720000px;}
.yce{bottom:919.680000px;}
.y84{bottom:921.210000px;}
.y34{bottom:924.000000px;}
.y5{bottom:935.610000px;}
.ycd{bottom:947.400000px;}
.y83{bottom:948.570000px;}
.y33{bottom:950.910000px;}
.yf4{bottom:954.960000px;}
.ya6{bottom:963.600000px;}
.y5a{bottom:963.960000px;}
.y4{bottom:971.700000px;}
.yf3{bottom:972.600000px;}
.ycc{bottom:975.120000px;}
.y82{bottom:975.930000px;}
.y59{bottom:981.600000px;}
.y32{bottom:999.150000px;}
.ycb{bottom:1002.840000px;}
.y7f{bottom:1003.200000px;}
.y3{bottom:1009.980000px;}
.y31{bottom:1016.820000px;}
.y30{bottom:1034.370000px;}
.y2f{bottom:1051.920000px;}
.y2e{bottom:1069.560000px;}
.y58{bottom:1069.920000px;}
.yf2{bottom:1078.560000px;}
.y2d{bottom:1087.110000px;}
.y57{bottom:1087.560000px;}
.yf1{bottom:1096.110000px;}
.y56{bottom:1105.110000px;}
.y2c{bottom:1122.750000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.ha{height:26.550000px;}
.h9{height:26.580000px;}
.h8{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hd{height:44.190000px;}
.hc{height:44.220000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.he{height:61.793886px;}
.hb{height:62.585859px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wf{width:82.350000px;}
.wc{width:84.240000px;}
.wa{width:84.330000px;}
.w4{width:84.720000px;}
.we{width:85.950000px;}
.w6{width:88.110000px;}
.w12{width:95.220000px;}
.w9{width:105.570000px;}
.w7{width:112.320000px;}
.wd{width:116.100000px;}
.w11{width:116.460000px;}
.w8{width:126.840000px;}
.w13{width:127.020000px;}
.w14{width:142.740000px;}
.w10{width:165.270000px;}
.w3{width:181.260000px;}
.wb{width:190.560000px;}
.w5{width:202.350000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:3.960000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x13{left:69.210000px;}
.x7{left:84.960000px;}
.xe{left:101.610000px;}
.x19{left:111.239987px;}
.x2{left:202.799987px;}
.x14{left:235.020000px;}
.x9{left:288.030000px;}
.xf{left:292.980000px;}
.x4{left:313.230000px;}
.x15{left:351.930000px;}
.xa{left:376.950000px;}
.x10{left:378.030000px;}
.x16{left:447.690000px;}
.xb{left:489.990000px;}
.x6{left:495.300000px;}
.x17{left:575.250000px;}
.xc{left:617.640000px;}
.x11{left:622.500000px;}
.x12{left:709.260000px;}
.x18{left:718.530000px;}
.xd{left:723.930000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls17{letter-spacing:-0.216533pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls15{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls10{letter-spacing:-0.043520pt;}
.lse{letter-spacing:-0.013120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsb{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.lsa{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls13{letter-spacing:0.103467pt;}
.ls5{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.154133pt;}
.ls12{letter-spacing:0.157333pt;}
.ls14{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls16{letter-spacing:42.423680pt;}
.ls11{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.wsd{word-spacing:-11.933867pt;}
.wsf{word-spacing:-11.914133pt;}
.ws6{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.860267pt;}
.wsa{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws9{word-spacing:-11.743680pt;}
.wsb{word-spacing:-11.713280pt;}
.wse{word-spacing:-11.620267pt;}
.ws7{word-spacing:-11.590933pt;}
.ws10{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._4{margin-left:-3.562130pt;}
._3{margin-left:-2.618667pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.950080pt;}
._9{width:2.511466pt;}
._c{width:3.509015pt;}
._2{width:5.237334pt;}
._5{width:6.733333pt;}
._f{width:8.496960pt;}
._b{width:9.430400pt;}
._d{width:10.392000pt;}
._6{width:13.520534pt;}
._7{width:14.694397pt;}
._14{width:16.138880pt;}
._15{width:17.528320pt;}
._12{width:19.131520pt;}
._e{width:20.627840pt;}
._8{width:22.070934pt;}
._11{width:23.887680pt;}
._a{width:28.643733pt;}
._13{width:33.400000pt;}
._17{width:36.392640pt;}
._19{width:47.615040pt;}
._1a{width:48.576960pt;}
._18{width:49.538880pt;}
._10{width:55.256960pt;}
._16{width:965.606187pt;}
.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;}
.y4b{bottom:6.960000pt;}
.y49{bottom:7.040000pt;}
.y81{bottom:7.066667pt;}
.ya8{bottom:22.640000pt;}
.y80{bottom:22.666667pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y7e{bottom:98.906667pt;}
.yca{bottom:111.066667pt;}
.ya5{bottom:113.066667pt;}
.y7d{bottom:114.586667pt;}
.yf0{bottom:116.266667pt;}
.y28{bottom:116.586667pt;}
.yc9{bottom:126.746667pt;}
.ya4{bottom:128.746667pt;}
.yef{bottom:131.866667pt;}
.y27{bottom:132.186667pt;}
.y55{bottom:141.466667pt;}
.y7c{bottom:146.186667pt;}
.yee{bottom:147.546667pt;}
.y26{bottom:147.866667pt;}
.ya3{bottom:152.346667pt;}
.yc8{bottom:158.346667pt;}
.y7b{bottom:161.866667pt;}
.y25{bottom:163.466667pt;}
.y54{bottom:165.706667pt;}
.yed{bottom:171.146667pt;}
.yc7{bottom:174.026667pt;}
.y7a{bottom:177.466667pt;}
.y24{bottom:179.146667pt;}
.ya2{bottom:183.946667pt;}
.yec{bottom:186.826667pt;}
.yc6{bottom:189.626667pt;}
.y53{bottom:190.026667pt;}
.y79{bottom:193.066667pt;}
.y23{bottom:194.746667pt;}
.ya1{bottom:199.626667pt;}
.yeb{bottom:202.426667pt;}
.yc5{bottom:205.226667pt;}
.y78{bottom:208.746667pt;}
.y52{bottom:214.346667pt;}
.ya0{bottom:215.226667pt;}
.yc4{bottom:220.906667pt;}
.yea{bottom:226.026667pt;}
.y22{bottom:226.346667pt;}
.y9f{bottom:230.906667pt;}
.y77{bottom:232.346667pt;}
.yc3{bottom:236.506667pt;}
.y51{bottom:238.586667pt;}
.ye9{bottom:241.706667pt;}
.y21{bottom:242.026667pt;}
.y9e{bottom:246.506667pt;}
.ye8{bottom:257.306667pt;}
.y20{bottom:257.626667pt;}
.y50{bottom:262.906667pt;}
.y76{bottom:263.946667pt;}
.yc2{bottom:268.106667pt;}
.y1f{bottom:273.226667pt;}
.y9d{bottom:278.106667pt;}
.y75{bottom:279.626667pt;}
.ye7{bottom:280.986667pt;}
.yc1{bottom:283.786667pt;}
.y4f{bottom:287.226667pt;}
.y1e{bottom:288.906667pt;}
.y9c{bottom:293.786667pt;}
.y74{bottom:295.226667pt;}
.ye6{bottom:296.586667pt;}
.yc0{bottom:299.386667pt;}
.y1d{bottom:304.506667pt;}
.y9b{bottom:309.386667pt;}
.y73{bottom:310.906667pt;}
.y4e{bottom:311.546667pt;}
.ybf{bottom:315.066667pt;}
.y1c{bottom:320.186667pt;}
.y9a{bottom:325.066667pt;}
.y72{bottom:326.506667pt;}
.ybe{bottom:330.666667pt;}
.y1b{bottom:335.786667pt;}
.ye5{bottom:335.866667pt;}
.y99{bottom:340.666667pt;}
.ybd{bottom:346.266667pt;}
.y71{bottom:350.106667pt;}
.ye4{bottom:351.466667pt;}
.y4d{bottom:360.106667pt;}
.y98{bottom:364.266667pt;}
.y1a{bottom:367.386667pt;}
.ye3{bottom:375.066667pt;}
.ybc{bottom:377.946667pt;}
.y70{bottom:381.786667pt;}
.y19{bottom:383.066667pt;}
.y4c{bottom:384.426667pt;}
.ye2{bottom:390.746667pt;}
.ybb{bottom:393.546667pt;}
.y97{bottom:395.946667pt;}
.y6f{bottom:397.386667pt;}
.y18{bottom:398.666667pt;}
.ye1{bottom:406.346667pt;}
.y4a{bottom:408.746667pt;}
.yba{bottom:409.226667pt;}
.y96{bottom:411.546667pt;}
.y6e{bottom:413.066667pt;}
.y17{bottom:414.346667pt;}
.ye0{bottom:422.053333pt;}
.yb9{bottom:424.853333pt;}
.y95{bottom:427.253333pt;}
.y6d{bottom:428.693333pt;}
.y16{bottom:429.973333pt;}
.y48{bottom:433.013333pt;}
.ydf{bottom:437.653333pt;}
.yb8{bottom:440.453333pt;}
.y94{bottom:442.853333pt;}
.y15{bottom:445.573333pt;}
.y6c{bottom:452.293333pt;}
.yde{bottom:453.253333pt;}
.y93{bottom:458.453333pt;}
.y14{bottom:461.253333pt;}
.yb7{bottom:472.133333pt;}
.y47{bottom:476.293333pt;}
.ydd{bottom:477.173333pt;}
.y6b{bottom:483.973333pt;}
.y13{bottom:485.173333pt;}
.yb6{bottom:487.733333pt;}
.y92{bottom:490.133333pt;}
.y6a{bottom:499.573333pt;}
.yb5{bottom:503.413333pt;}
.y91{bottom:505.733333pt;}
.y46{bottom:507.973333pt;}
.y69{bottom:515.253333pt;}
.yb4{bottom:519.013333pt;}
.ydc{bottom:520.133333pt;}
.y90{bottom:521.413333pt;}
.y45{bottom:523.573333pt;}
.y12{bottom:528.373333pt;}
.y68{bottom:530.853333pt;}
.yb3{bottom:534.613333pt;}
.ydb{bottom:535.733333pt;}
.y8f{bottom:537.013333pt;}
.y44{bottom:539.253333pt;}
.y67{bottom:546.453333pt;}
.yb2{bottom:550.293333pt;}
.yda{bottom:551.413333pt;}
.y8e{bottom:552.613333pt;}
.y43{bottom:554.853333pt;}
.y11{bottom:561.253333pt;}
.yd9{bottom:567.013333pt;}
.y66{bottom:570.133333pt;}
.y42{bottom:570.453333pt;}
.yb1{bottom:573.893333pt;}
.y8d{bottom:576.293333pt;}
.y10{bottom:576.853333pt;}
.yd8{bottom:582.613333pt;}
.y41{bottom:586.133333pt;}
.yf{bottom:592.533333pt;}
.yd7{bottom:598.293333pt;}
.y65{bottom:601.733333pt;}
.yb0{bottom:603.253333pt;}
.ye{bottom:608.133333pt;}
.y8c{bottom:608.213333pt;}
.yd6{bottom:613.893333pt;}
.y64{bottom:617.413333pt;}
.y40{bottom:617.733333pt;}
.yd{bottom:623.813333pt;}
.yaf{bottom:627.493333pt;}
.yd5{bottom:629.573333pt;}
.y63{bottom:633.013333pt;}
.y3f{bottom:633.413333pt;}
.yc{bottom:639.413333pt;}
.y62{bottom:648.613333pt;}
.y8b{bottom:648.773333pt;}
.y3e{bottom:649.013333pt;}
.yae{bottom:651.813333pt;}
.yd4{bottom:653.413333pt;}
.yb{bottom:655.013333pt;}
.y61{bottom:664.293333pt;}
.y3d{bottom:664.613333pt;}
.ya{bottom:670.693333pt;}
.y8a{bottom:673.093333pt;}
.yad{bottom:676.133333pt;}
.y3c{bottom:680.293333pt;}
.yd3{bottom:694.373333pt;}
.y9{bottom:694.613333pt;}
.y3b{bottom:695.893333pt;}
.y89{bottom:697.333333pt;}
.yac{bottom:700.373333pt;}
.y60{bottom:711.573333pt;}
.yd2{bottom:719.013333pt;}
.y88{bottom:721.653333pt;}
.yab{bottom:724.693333pt;}
.y5f{bottom:727.173333pt;}
.y3a{bottom:727.573333pt;}
.y8{bottom:736.213333pt;}
.y5e{bottom:742.773333pt;}
.y39{bottom:743.173333pt;}
.yd1{bottom:743.653333pt;}
.y87{bottom:745.973333pt;}
.yaa{bottom:749.013333pt;}
.y5d{bottom:758.453333pt;}
.y38{bottom:758.773333pt;}
.y7{bottom:767.813333pt;}
.yd0{bottom:768.293333pt;}
.y86{bottom:770.293333pt;}
.ya9{bottom:773.333333pt;}
.y37{bottom:774.453333pt;}
.y5c{bottom:782.053333pt;}
.y36{bottom:790.053333pt;}
.ycf{bottom:792.933333pt;}
.y85{bottom:794.533333pt;}
.ya7{bottom:797.573333pt;}
.y6{bottom:799.653333pt;}
.y35{bottom:805.733333pt;}
.y5b{bottom:813.973333pt;}
.yce{bottom:817.493333pt;}
.y84{bottom:818.853333pt;}
.y34{bottom:821.333333pt;}
.y5{bottom:831.653333pt;}
.ycd{bottom:842.133333pt;}
.y83{bottom:843.173333pt;}
.y33{bottom:845.253333pt;}
.yf4{bottom:848.853333pt;}
.ya6{bottom:856.533333pt;}
.y5a{bottom:856.853333pt;}
.y4{bottom:863.733333pt;}
.yf3{bottom:864.533333pt;}
.ycc{bottom:866.773333pt;}
.y82{bottom:867.493333pt;}
.y59{bottom:872.533333pt;}
.y32{bottom:888.133333pt;}
.ycb{bottom:891.413333pt;}
.y7f{bottom:891.733333pt;}
.y3{bottom:897.760000pt;}
.y31{bottom:903.840000pt;}
.y30{bottom:919.440000pt;}
.y2f{bottom:935.040000pt;}
.y2e{bottom:950.720000pt;}
.y58{bottom:951.040000pt;}
.yf2{bottom:958.720000pt;}
.y2d{bottom:966.320000pt;}
.y57{bottom:966.720000pt;}
.yf1{bottom:974.320000pt;}
.y56{bottom:982.320000pt;}
.y2c{bottom:998.000000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.ha{height:23.600000pt;}
.h9{height:23.626667pt;}
.h8{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hd{height:39.280000pt;}
.hc{height:39.306667pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.he{height:54.927899pt;}
.hb{height:55.631875pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wf{width:73.200000pt;}
.wc{width:74.880000pt;}
.wa{width:74.960000pt;}
.w4{width:75.306667pt;}
.we{width:76.400000pt;}
.w6{width:78.320000pt;}
.w12{width:84.640000pt;}
.w9{width:93.840000pt;}
.w7{width:99.840000pt;}
.wd{width:103.200000pt;}
.w11{width:103.520000pt;}
.w8{width:112.746667pt;}
.w13{width:112.906667pt;}
.w14{width:126.880000pt;}
.w10{width:146.906667pt;}
.w3{width:161.120000pt;}
.wb{width:169.386667pt;}
.w5{width:179.866667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:3.520000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x13{left:61.520000pt;}
.x7{left:75.520000pt;}
.xe{left:90.320000pt;}
.x19{left:98.879988pt;}
.x2{left:180.266655pt;}
.x14{left:208.906667pt;}
.x9{left:256.026667pt;}
.xf{left:260.426667pt;}
.x4{left:278.426667pt;}
.x15{left:312.826667pt;}
.xa{left:335.066667pt;}
.x10{left:336.026667pt;}
.x16{left:397.946667pt;}
.xb{left:435.546667pt;}
.x6{left:440.266667pt;}
.x17{left:511.333333pt;}
.xc{left:549.013333pt;}
.x11{left:553.333333pt;}
.x12{left:630.453333pt;}
.x18{left:638.693333pt;}
.xd{left:643.493333pt;}
.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; }
  