
    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_7d6783c75edf79bfb4408990.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_da2a9eef03073e643ada3968.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_3ffb5e241b1201c3a99113ed.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_d21e1582c686d2ffaeec62d5.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_22df03be2ba64ea98b251e0f.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_0b6d9f8d10c33f9f979094ae.woff')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_9d1a080178231a95cb9511bc.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_be3022a1890c221674d71487.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;}
.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);}
.v5{vertical-align:-36.000000px;}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1f{letter-spacing:-0.444600px;}
.ls12{letter-spacing:-0.186600px;}
.ls14{letter-spacing:-0.153600px;}
.lsa{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls9{letter-spacing:-0.090000px;}
.ls1e{letter-spacing:-0.084600px;}
.ls15{letter-spacing:-0.063600px;}
.ls1a{letter-spacing:-0.013320px;}
.ls16{letter-spacing:-0.007560px;}
.ls8{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.005400px;}
.ls4{letter-spacing:0.014760px;}
.lsf{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls17{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.056880px;}
.ls7{letter-spacing:0.060480px;}
.ls3{letter-spacing:0.065520px;}
.lse{letter-spacing:0.074160px;}
.ls18{letter-spacing:0.086400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1b{letter-spacing:0.098400px;}
.ls11{letter-spacing:0.173400px;}
.lsc{letter-spacing:0.174600px;}
.ls19{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.180480px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.425520px;}
.ls1d{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;}
.wsa{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.ws11{word-spacing:-13.324800px;}
.ws9{word-spacing:-13.283280px;}
.wsf{word-spacing:-13.279680px;}
.wsb{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wse{word-spacing:-13.218840px;}
.ws10{word-spacing:-13.213080px;}
.wsd{word-spacing:-13.162800px;}
.wsc{word-spacing:-13.072800px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._d{margin-left:-3.457319px;}
._3{margin-left:-2.329440px;}
._0{margin-left:-1.258200px;}
._1{width:1.031880px;}
._8{width:2.868120px;}
._4{width:4.397760px;}
._5{width:6.012000px;}
._6{width:7.033800px;}
._b{width:8.657400px;}
._7{width:9.854424px;}
._2{width:11.067576px;}
._9{width:12.076967px;}
._e{width:15.270480px;}
._16{width:17.009520px;}
._a{width:18.276600px;}
._c{width:19.719600px;}
._1b{width:22.148280px;}
._1c{width:23.723280px;}
._14{width:31.382640px;}
._15{width:44.188200px;}
._12{width:76.412520px;}
._17{width:81.041760px;}
._10{width:87.053760px;}
._11{width:92.224080px;}
._f{width:107.674920px;}
._18{width:123.366240px;}
._19{width:124.568640px;}
._1a{width:136.953360px;}
._13{width:166.712760px;}
.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;}
.fs8{font-size:47.880000px;}
.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;}
.y6d{bottom:7.830000px;}
.y6b{bottom:7.920000px;}
.y80{bottom:12.330000px;}
.y83{bottom:20.970000px;}
.y73{bottom:25.380000px;}
.y6a{bottom:25.470000px;}
.y7f{bottom:29.880000px;}
.y82{bottom:43.020000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y4a{bottom:119.550000px;}
.y9e{bottom:133.590000px;}
.y74{bottom:147.900000px;}
.y9d{bottom:151.140000px;}
.y49{bottom:155.190000px;}
.yf1{bottom:156.720000px;}
.y9c{bottom:168.780000px;}
.yf0{bottom:174.270000px;}
.y27{bottom:174.630000px;}
.y45{bottom:177.240000px;}
.y9b{bottom:186.330000px;}
.y48{bottom:187.410000px;}
.yef{bottom:191.910000px;}
.y26{bottom:192.180000px;}
.y72{bottom:192.810000px;}
.yc1{bottom:193.440000px;}
.y25{bottom:209.820000px;}
.y44{bottom:212.880000px;}
.yee{bottom:218.460000px;}
.yc0{bottom:220.350000px;}
.y9a{bottom:221.970000px;}
.yed{bottom:236.100000px;}
.y24{bottom:236.730000px;}
.y71{bottom:237.720000px;}
.y99{bottom:239.520000px;}
.y43{bottom:245.100000px;}
.yec{bottom:253.650000px;}
.ybf{bottom:257.700000px;}
.y70{bottom:265.080000px;}
.y98{bottom:275.070000px;}
.yeb{bottom:280.200000px;}
.y23{bottom:285.330000px;}
.y6f{bottom:292.350000px;}
.y97{bottom:292.710000px;}
.yea{bottom:297.840000px;}
.ybe{bottom:305.940000px;}
.y96{bottom:310.260000px;}
.ye9{bottom:315.390000px;}
.y6e{bottom:319.710000px;}
.y22{bottom:322.320000px;}
.ybd{bottom:323.580000px;}
.y95{bottom:327.900000px;}
.y21{bottom:339.870000px;}
.ybc{bottom:341.130000px;}
.ye8{bottom:341.940000px;}
.y94{bottom:345.450000px;}
.y6c{bottom:347.070000px;}
.y20{bottom:357.510000px;}
.ybb{bottom:358.770000px;}
.ye7{bottom:359.580000px;}
.y69{bottom:374.340000px;}
.y1f{bottom:375.060000px;}
.y93{bottom:381.000000px;}
.ye6{bottom:386.130000px;}
.y1e{bottom:392.700000px;}
.yba{bottom:394.320000px;}
.y92{bottom:398.640000px;}
.ye5{bottom:403.770000px;}
.y1d{bottom:410.250000px;}
.yb9{bottom:411.870000px;}
.y91{bottom:416.190000px;}
.ye4{bottom:421.320000px;}
.y1c{bottom:427.800000px;}
.y90{bottom:433.830000px;}
.y68{bottom:440.670000px;}
.y1b{bottom:445.440000px;}
.yb8{bottom:447.510000px;}
.ye3{bottom:447.870000px;}
.y8f{bottom:451.380000px;}
.y1a{bottom:462.990000px;}
.yb7{bottom:465.060000px;}
.ye2{bottom:465.510000px;}
.y67{bottom:476.250000px;}
.y19{bottom:480.660000px;}
.yb6{bottom:482.730000px;}
.ye1{bottom:483.090000px;}
.y8e{bottom:486.960000px;}
.y66{bottom:493.890000px;}
.y18{bottom:498.210000px;}
.yb5{bottom:500.280000px;}
.y8d{bottom:504.600000px;}
.ye0{bottom:509.730000px;}
.y65{bottom:511.440000px;}
.y17{bottom:515.760000px;}
.y8c{bottom:522.150000px;}
.yb4{bottom:527.190000px;}
.ydf{bottom:527.280000px;}
.y64{bottom:529.080000px;}
.y16{bottom:533.400000px;}
.y8b{bottom:539.700000px;}
.y63{bottom:546.630000px;}
.y15{bottom:550.950000px;}
.yde{bottom:553.830000px;}
.y62{bottom:564.180000px;}
.y14{bottom:568.590000px;}
.ydd{bottom:571.470000px;}
.y8a{bottom:575.340000px;}
.yb3{bottom:575.430000px;}
.y61{bottom:581.820000px;}
.y13{bottom:586.140000px;}
.y89{bottom:592.890000px;}
.yb2{bottom:593.070000px;}
.ydc{bottom:598.020000px;}
.y60{bottom:599.370000px;}
.y12{bottom:603.690000px;}
.y88{bottom:610.530000px;}
.yb1{bottom:610.620000px;}
.ydb{bottom:615.660000px;}
.y5f{bottom:617.010000px;}
.y11{bottom:621.330000px;}
.y42{bottom:624.210000px;}
.y87{bottom:628.080000px;}
.yb0{bottom:628.260000px;}
.yda{bottom:633.210000px;}
.y41{bottom:641.760000px;}
.y5e{bottom:643.560000px;}
.y10{bottom:648.240000px;}
.y86{bottom:654.990000px;}
.y40{bottom:659.400000px;}
.yd9{bottom:659.760000px;}
.y47{bottom:663.270000px;}
.yaf{bottom:663.810000px;}
.y3f{bottom:676.950000px;}
.yd8{bottom:677.400000px;}
.y5d{bottom:679.470000px;}
.yae{bottom:681.360000px;}
.y3e{bottom:694.590000px;}
.y46{bottom:695.490000px;}
.yf{bottom:696.480000px;}
.yad{bottom:699.000000px;}
.y85{bottom:702.510000px;}
.yd7{bottom:703.950000px;}
.y84{bottom:714.750000px;}
.y3d{bottom:721.140000px;}
.yd6{bottom:721.590000px;}
.y5c{bottom:727.710000px;}
.ye{bottom:732.030000px;}
.yac{bottom:734.550000px;}
.yd5{bottom:739.140000px;}
.y5b{bottom:745.350000px;}
.yab{bottom:752.190000px;}
.yd4{bottom:756.690000px;}
.y3c{bottom:757.050000px;}
.y5a{bottom:762.900000px;}
.yd{bottom:767.850000px;}
.y81{bottom:777.210000px;}
.yd3{bottom:783.330000px;}
.yaa{bottom:787.740000px;}
.y59{bottom:789.450000px;}
.yd2{bottom:800.880000px;}
.y3b{bottom:805.290000px;}
.yc{bottom:807.630000px;}
.yd1{bottom:818.520000px;}
.y3a{bottom:822.930000px;}
.y58{bottom:825.090000px;}
.yb{bottom:825.630000px;}
.y7e{bottom:839.760000px;}
.ya{bottom:839.850000px;}
.y39{bottom:840.480000px;}
.y57{bottom:842.640000px;}
.yd0{bottom:845.070000px;}
.y38{bottom:858.030000px;}
.y56{bottom:860.280000px;}
.y9{bottom:861.630000px;}
.ycf{bottom:862.620000px;}
.y37{bottom:875.670000px;}
.y8{bottom:875.850000px;}
.ya9{bottom:876.030000px;}
.yce{bottom:880.260000px;}
.y55{bottom:886.830000px;}
.y36{bottom:893.220000px;}
.ya8{bottom:893.670000px;}
.y7{bottom:897.630000px;}
.ycd{bottom:897.810000px;}
.y7d{bottom:910.500000px;}
.ya7{bottom:911.220000px;}
.y54{bottom:919.410000px;}
.ycc{bottom:924.450000px;}
.yf3{bottom:928.410000px;}
.y35{bottom:928.860000px;}
.y6{bottom:929.940000px;}
.ycb{bottom:942.000000px;}
.yf2{bottom:945.960000px;}
.y7c{bottom:946.140000px;}
.y34{bottom:946.410000px;}
.ya6{bottom:946.860000px;}
.y5{bottom:949.290000px;}
.y53{bottom:954.960000px;}
.yca{bottom:959.550000px;}
.y7b{bottom:963.690000px;}
.y33{bottom:963.960000px;}
.ya5{bottom:964.410000px;}
.y52{bottom:972.600000px;}
.yc9{bottom:977.190000px;}
.y7a{bottom:981.240000px;}
.y32{bottom:981.600000px;}
.ya4{bottom:981.960000px;}
.y4{bottom:987.630000px;}
.y51{bottom:990.150000px;}
.y31{bottom:999.150000px;}
.ya3{bottom:999.600000px;}
.yc8{bottom:1003.740000px;}
.y50{bottom:1007.790000px;}
.y79{bottom:1007.880000px;}
.y3{bottom:1012.320000px;}
.y30{bottom:1016.820000px;}
.ya2{bottom:1017.180000px;}
.yc7{bottom:1021.320000px;}
.y4f{bottom:1025.370000px;}
.y2f{bottom:1034.370000px;}
.ya1{bottom:1034.820000px;}
.yc6{bottom:1038.960000px;}
.y78{bottom:1042.740000px;}
.y2e{bottom:1051.920000px;}
.ya0{bottom:1052.370000px;}
.y77{bottom:1054.890000px;}
.y4e{bottom:1060.920000px;}
.yc5{bottom:1065.510000px;}
.y9f{bottom:1069.920000px;}
.y4d{bottom:1078.560000px;}
.y76{bottom:1082.250000px;}
.yc4{bottom:1083.150000px;}
.y2d{bottom:1087.560000px;}
.y4c{bottom:1096.110000px;}
.yc3{bottom:1100.700000px;}
.y2c{bottom:1105.110000px;}
.y75{bottom:1109.610000px;}
.y4b{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.yc2{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.he{height:26.550000px;}
.hf{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h11{height:40.539023px;}
.h10{height:44.100000px;}
.hd{height:44.190000px;}
.h12{height:48.600000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.hc{height:59.973223px;}
.h8{height:60.960938px;}
.h13{height:61.740000px;}
.h14{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.hb{height:74.004654px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:45.180000px;}
.w8{width:131.520000px;}
.w6{width:160.650000px;}
.w9{width:179.190000px;}
.w4{width:189.900000px;}
.w5{width:200.640000px;}
.w3{width:202.260000px;}
.w7{width:397.650000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:7.740000px;}
.x1{left:68.040000px;}
.x13{left:111.239987px;}
.x5{left:183.899987px;}
.x9{left:200.639987px;}
.x2{left:202.799987px;}
.x7{left:227.009987px;}
.xb{left:271.740000px;}
.xe{left:300.089987px;}
.x12{left:331.319987px;}
.xc{left:462.450000px;}
.xf{left:467.130000px;}
.x10{left:599.370000px;}
.xd{left:663.810000px;}
.x8{left:777.389987px;}
.x11{left:779.280000px;}
.x6{left:780.809987px;}
.x3{left:792.059987px;}
.x4{left:806.639987px;}
@media print{
.v5{vertical-align:-32.000000pt;}
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1f{letter-spacing:-0.395200pt;}
.ls12{letter-spacing:-0.165867pt;}
.ls14{letter-spacing:-0.136533pt;}
.lsa{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls9{letter-spacing:-0.080000pt;}
.ls1e{letter-spacing:-0.075200pt;}
.ls15{letter-spacing:-0.056533pt;}
.ls1a{letter-spacing:-0.011840pt;}
.ls16{letter-spacing:-0.006720pt;}
.ls8{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.004800pt;}
.ls4{letter-spacing:0.013120pt;}
.lsf{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls17{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.050560pt;}
.ls7{letter-spacing:0.053760pt;}
.ls3{letter-spacing:0.058240pt;}
.lse{letter-spacing:0.065920pt;}
.ls18{letter-spacing:0.076800pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1b{letter-spacing:0.087467pt;}
.ls11{letter-spacing:0.154133pt;}
.lsc{letter-spacing:0.155200pt;}
.ls19{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.160427pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.378240pt;}
.ls1d{letter-spacing:42.423680pt;}
.ls1c{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.ws11{word-spacing:-11.844267pt;}
.ws9{word-spacing:-11.807360pt;}
.wsf{word-spacing:-11.804160pt;}
.wsb{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.750080pt;}
.ws10{word-spacing:-11.744960pt;}
.wsd{word-spacing:-11.700267pt;}
.wsc{word-spacing:-11.620267pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._d{margin-left:-3.073172pt;}
._3{margin-left:-2.070614pt;}
._0{margin-left:-1.118400pt;}
._1{width:0.917227pt;}
._8{width:2.549440pt;}
._4{width:3.909120pt;}
._5{width:5.344000pt;}
._6{width:6.252266pt;}
._b{width:7.695467pt;}
._7{width:8.759488pt;}
._2{width:9.837846pt;}
._9{width:10.735081pt;}
._e{width:13.573760pt;}
._16{width:15.119573pt;}
._a{width:16.245867pt;}
._c{width:17.528534pt;}
._1b{width:19.687360pt;}
._1c{width:21.087360pt;}
._14{width:27.895680pt;}
._15{width:39.278400pt;}
._12{width:67.922240pt;}
._17{width:72.037120pt;}
._10{width:77.381120pt;}
._11{width:81.976960pt;}
._f{width:95.711040pt;}
._18{width:109.658880pt;}
._19{width:110.727680pt;}
._1a{width:121.736320pt;}
._13{width:148.189120pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.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;}
.y6d{bottom:6.960000pt;}
.y6b{bottom:7.040000pt;}
.y80{bottom:10.960000pt;}
.y83{bottom:18.640000pt;}
.y73{bottom:22.560000pt;}
.y6a{bottom:22.640000pt;}
.y7f{bottom:26.560000pt;}
.y82{bottom:38.240000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y4a{bottom:106.266667pt;}
.y9e{bottom:118.746667pt;}
.y74{bottom:131.466667pt;}
.y9d{bottom:134.346667pt;}
.y49{bottom:137.946667pt;}
.yf1{bottom:139.306667pt;}
.y9c{bottom:150.026667pt;}
.yf0{bottom:154.906667pt;}
.y27{bottom:155.226667pt;}
.y45{bottom:157.546667pt;}
.y9b{bottom:165.626667pt;}
.y48{bottom:166.586667pt;}
.yef{bottom:170.586667pt;}
.y26{bottom:170.826667pt;}
.y72{bottom:171.386667pt;}
.yc1{bottom:171.946667pt;}
.y25{bottom:186.506667pt;}
.y44{bottom:189.226667pt;}
.yee{bottom:194.186667pt;}
.yc0{bottom:195.866667pt;}
.y9a{bottom:197.306667pt;}
.yed{bottom:209.866667pt;}
.y24{bottom:210.426667pt;}
.y71{bottom:211.306667pt;}
.y99{bottom:212.906667pt;}
.y43{bottom:217.866667pt;}
.yec{bottom:225.466667pt;}
.ybf{bottom:229.066667pt;}
.y70{bottom:235.626667pt;}
.y98{bottom:244.506667pt;}
.yeb{bottom:249.066667pt;}
.y23{bottom:253.626667pt;}
.y6f{bottom:259.866667pt;}
.y97{bottom:260.186667pt;}
.yea{bottom:264.746667pt;}
.ybe{bottom:271.946667pt;}
.y96{bottom:275.786667pt;}
.ye9{bottom:280.346667pt;}
.y6e{bottom:284.186667pt;}
.y22{bottom:286.506667pt;}
.ybd{bottom:287.626667pt;}
.y95{bottom:291.466667pt;}
.y21{bottom:302.106667pt;}
.ybc{bottom:303.226667pt;}
.ye8{bottom:303.946667pt;}
.y94{bottom:307.066667pt;}
.y6c{bottom:308.506667pt;}
.y20{bottom:317.786667pt;}
.ybb{bottom:318.906667pt;}
.ye7{bottom:319.626667pt;}
.y69{bottom:332.746667pt;}
.y1f{bottom:333.386667pt;}
.y93{bottom:338.666667pt;}
.ye6{bottom:343.226667pt;}
.y1e{bottom:349.066667pt;}
.yba{bottom:350.506667pt;}
.y92{bottom:354.346667pt;}
.ye5{bottom:358.906667pt;}
.y1d{bottom:364.666667pt;}
.yb9{bottom:366.106667pt;}
.y91{bottom:369.946667pt;}
.ye4{bottom:374.506667pt;}
.y1c{bottom:380.266667pt;}
.y90{bottom:385.626667pt;}
.y68{bottom:391.706667pt;}
.y1b{bottom:395.946667pt;}
.yb8{bottom:397.786667pt;}
.ye3{bottom:398.106667pt;}
.y8f{bottom:401.226667pt;}
.y1a{bottom:411.546667pt;}
.yb7{bottom:413.386667pt;}
.ye2{bottom:413.786667pt;}
.y67{bottom:423.333333pt;}
.y19{bottom:427.253333pt;}
.yb6{bottom:429.093333pt;}
.ye1{bottom:429.413333pt;}
.y8e{bottom:432.853333pt;}
.y66{bottom:439.013333pt;}
.y18{bottom:442.853333pt;}
.yb5{bottom:444.693333pt;}
.y8d{bottom:448.533333pt;}
.ye0{bottom:453.093333pt;}
.y65{bottom:454.613333pt;}
.y17{bottom:458.453333pt;}
.y8c{bottom:464.133333pt;}
.yb4{bottom:468.613333pt;}
.ydf{bottom:468.693333pt;}
.y64{bottom:470.293333pt;}
.y16{bottom:474.133333pt;}
.y8b{bottom:479.733333pt;}
.y63{bottom:485.893333pt;}
.y15{bottom:489.733333pt;}
.yde{bottom:492.293333pt;}
.y62{bottom:501.493333pt;}
.y14{bottom:505.413333pt;}
.ydd{bottom:507.973333pt;}
.y8a{bottom:511.413333pt;}
.yb3{bottom:511.493333pt;}
.y61{bottom:517.173333pt;}
.y13{bottom:521.013333pt;}
.y89{bottom:527.013333pt;}
.yb2{bottom:527.173333pt;}
.ydc{bottom:531.573333pt;}
.y60{bottom:532.773333pt;}
.y12{bottom:536.613333pt;}
.y88{bottom:542.693333pt;}
.yb1{bottom:542.773333pt;}
.ydb{bottom:547.253333pt;}
.y5f{bottom:548.453333pt;}
.y11{bottom:552.293333pt;}
.y42{bottom:554.853333pt;}
.y87{bottom:558.293333pt;}
.yb0{bottom:558.453333pt;}
.yda{bottom:562.853333pt;}
.y41{bottom:570.453333pt;}
.y5e{bottom:572.053333pt;}
.y10{bottom:576.213333pt;}
.y86{bottom:582.213333pt;}
.y40{bottom:586.133333pt;}
.yd9{bottom:586.453333pt;}
.y47{bottom:589.573333pt;}
.yaf{bottom:590.053333pt;}
.y3f{bottom:601.733333pt;}
.yd8{bottom:602.133333pt;}
.y5d{bottom:603.973333pt;}
.yae{bottom:605.653333pt;}
.y3e{bottom:617.413333pt;}
.y46{bottom:618.213333pt;}
.yf{bottom:619.093333pt;}
.yad{bottom:621.333333pt;}
.y85{bottom:624.453333pt;}
.yd7{bottom:625.733333pt;}
.y84{bottom:635.333333pt;}
.y3d{bottom:641.013333pt;}
.yd6{bottom:641.413333pt;}
.y5c{bottom:646.853333pt;}
.ye{bottom:650.693333pt;}
.yac{bottom:652.933333pt;}
.yd5{bottom:657.013333pt;}
.y5b{bottom:662.533333pt;}
.yab{bottom:668.613333pt;}
.yd4{bottom:672.613333pt;}
.y3c{bottom:672.933333pt;}
.y5a{bottom:678.133333pt;}
.yd{bottom:682.533333pt;}
.y81{bottom:690.853333pt;}
.yd3{bottom:696.293333pt;}
.yaa{bottom:700.213333pt;}
.y59{bottom:701.733333pt;}
.yd2{bottom:711.893333pt;}
.y3b{bottom:715.813333pt;}
.yc{bottom:717.893333pt;}
.yd1{bottom:727.573333pt;}
.y3a{bottom:731.493333pt;}
.y58{bottom:733.413333pt;}
.yb{bottom:733.893333pt;}
.y7e{bottom:746.453333pt;}
.ya{bottom:746.533333pt;}
.y39{bottom:747.093333pt;}
.y57{bottom:749.013333pt;}
.yd0{bottom:751.173333pt;}
.y38{bottom:762.693333pt;}
.y56{bottom:764.693333pt;}
.y9{bottom:765.893333pt;}
.ycf{bottom:766.773333pt;}
.y37{bottom:778.373333pt;}
.y8{bottom:778.533333pt;}
.ya9{bottom:778.693333pt;}
.yce{bottom:782.453333pt;}
.y55{bottom:788.293333pt;}
.y36{bottom:793.973333pt;}
.ya8{bottom:794.373333pt;}
.y7{bottom:797.893333pt;}
.ycd{bottom:798.053333pt;}
.y7d{bottom:809.333333pt;}
.ya7{bottom:809.973333pt;}
.y54{bottom:817.253333pt;}
.ycc{bottom:821.733333pt;}
.yf3{bottom:825.253333pt;}
.y35{bottom:825.653333pt;}
.y6{bottom:826.613333pt;}
.ycb{bottom:837.333333pt;}
.yf2{bottom:840.853333pt;}
.y7c{bottom:841.013333pt;}
.y34{bottom:841.253333pt;}
.ya6{bottom:841.653333pt;}
.y5{bottom:843.813333pt;}
.y53{bottom:848.853333pt;}
.yca{bottom:852.933333pt;}
.y7b{bottom:856.613333pt;}
.y33{bottom:856.853333pt;}
.ya5{bottom:857.253333pt;}
.y52{bottom:864.533333pt;}
.yc9{bottom:868.613333pt;}
.y7a{bottom:872.213333pt;}
.y32{bottom:872.533333pt;}
.ya4{bottom:872.853333pt;}
.y4{bottom:877.893333pt;}
.y51{bottom:880.133333pt;}
.y31{bottom:888.133333pt;}
.ya3{bottom:888.533333pt;}
.yc8{bottom:892.213333pt;}
.y50{bottom:895.813333pt;}
.y79{bottom:895.893333pt;}
.y3{bottom:899.840000pt;}
.y30{bottom:903.840000pt;}
.ya2{bottom:904.160000pt;}
.yc7{bottom:907.840000pt;}
.y4f{bottom:911.440000pt;}
.y2f{bottom:919.440000pt;}
.ya1{bottom:919.840000pt;}
.yc6{bottom:923.520000pt;}
.y78{bottom:926.880000pt;}
.y2e{bottom:935.040000pt;}
.ya0{bottom:935.440000pt;}
.y77{bottom:937.680000pt;}
.y4e{bottom:943.040000pt;}
.yc5{bottom:947.120000pt;}
.y9f{bottom:951.040000pt;}
.y4d{bottom:958.720000pt;}
.y76{bottom:962.000000pt;}
.yc4{bottom:962.800000pt;}
.y2d{bottom:966.720000pt;}
.y4c{bottom:974.320000pt;}
.yc3{bottom:978.400000pt;}
.y2c{bottom:982.320000pt;}
.y75{bottom:986.320000pt;}
.y4b{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.yc2{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.he{height:23.600000pt;}
.hf{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h11{height:36.034687pt;}
.h10{height:39.200000pt;}
.hd{height:39.280000pt;}
.h12{height:43.200000pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.hc{height:53.309531pt;}
.h8{height:54.187500pt;}
.h13{height:54.880000pt;}
.h14{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.hb{height:65.781915pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:40.160000pt;}
.w8{width:116.906667pt;}
.w6{width:142.800000pt;}
.w9{width:159.280000pt;}
.w4{width:168.800000pt;}
.w5{width:178.346667pt;}
.w3{width:179.786667pt;}
.w7{width:353.466667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.880000pt;}
.x1{left:60.480000pt;}
.x13{left:98.879988pt;}
.x5{left:163.466655pt;}
.x9{left:178.346655pt;}
.x2{left:180.266655pt;}
.x7{left:201.786655pt;}
.xb{left:241.546667pt;}
.xe{left:266.746655pt;}
.x12{left:294.506655pt;}
.xc{left:411.066667pt;}
.xf{left:415.226667pt;}
.x10{left:532.773333pt;}
.xd{left:590.053333pt;}
.x8{left:691.013322pt;}
.x11{left:692.693333pt;}
.x6{left:694.053322pt;}
.x3{left:704.053322pt;}
.x4{left:717.013322pt;}
}




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