
    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_e144efab2c636272474a176c.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_d63febd769bb479fe6441798.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_5a506fea254644248b86351f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.061035;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_2184c985d961a20e4f1a62ea.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_1f5b2642028b68fc3931d87c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_f3cb8f6aa92fbeba3f120a5b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls11{letter-spacing:-0.367800px;}
.lsc{letter-spacing:-0.244200px;}
.ls10{letter-spacing:-0.186600px;}
.lsa{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls14{letter-spacing:-0.037800px;}
.ls12{letter-spacing:-0.007560px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls15{letter-spacing:0.045360px;}
.ls13{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.049200px;}
.lsd{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls6{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.lse{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:47.726640px;}
.ls16{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;}
.wse{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.399800px;}
.ws6{word-spacing:-13.275600px;}
.wsd{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.218840px;}
.wsc{word-spacing:-13.188600px;}
.ws3{word-spacing:-13.072800px;}
.wsa{word-spacing:-13.039800px;}
.ws7{word-spacing:-12.982200px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws8{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._2{margin-left:-3.600000px;}
._3{margin-left:-2.499612px;}
._0{margin-left:-1.086000px;}
._1{width:1.006812px;}
._8{width:3.006000px;}
._9{width:4.088400px;}
._1c{width:5.169599px;}
._7{width:6.312600px;}
._c{width:7.363082px;}
._5{width:8.387398px;}
._4{width:9.559200px;}
._13{width:10.617001px;}
._6{width:12.208200px;}
._1f{width:14.729400px;}
._10{width:15.845400px;}
._a{width:16.920000px;}
._b{width:17.995680px;}
._d{width:19.899600px;}
._18{width:25.731360px;}
._f{width:27.835560px;}
._12{width:29.098080px;}
._1d{width:31.623120px;}
._1a{width:36.613080px;}
._20{width:37.635120px;}
._21{width:38.837520px;}
._19{width:41.903640px;}
._22{width:44.669160px;}
._1e{width:47.013840px;}
._14{width:54.280440px;}
._16{width:57.835440px;}
._1b{width:67.093920px;}
._15{width:69.017760px;}
._11{width:81.883440px;}
._17{width:94.749120px;}
._23{width:122.734800px;}
._e{width:136.051560px;}
.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;}
.y55{bottom:3.330000px;}
.y2f{bottom:7.830000px;}
.y2a{bottom:7.920000px;}
.y37{bottom:12.330000px;}
.y4c{bottom:12.420000px;}
.y54{bottom:20.880000px;}
.y6a{bottom:25.380000px;}
.y2e{bottom:25.410000px;}
.y29{bottom:25.470000px;}
.y36{bottom:29.970000px;}
.y64{bottom:34.020000px;}
.y31{bottom:43.020000px;}
.y2d{bottom:43.050000px;}
.y52{bottom:47.070000px;}
.y35{bottom:47.520000px;}
.y5b{bottom:47.550000px;}
.y49{bottom:47.610000px;}
.y71{bottom:51.660000px;}
.y63{bottom:56.070000px;}
.y45{bottom:56.160000px;}
.y39{bottom:60.570000px;}
.y2c{bottom:60.600000px;}
.y4b{bottom:60.660000px;}
.y34{bottom:65.070000px;}
.y5a{bottom:65.100000px;}
.y48{bottom:65.160000px;}
.y51{bottom:69.210000px;}
.y5e{bottom:69.600000px;}
.y2{bottom:73.380000px;}
.y70{bottom:73.710000px;}
.y26{bottom:74.190000px;}
.y62{bottom:78.120000px;}
.y3d{bottom:78.210000px;}
.y69{bottom:82.620000px;}
.y33{bottom:82.710000px;}
.y59{bottom:82.740000px;}
.y5d{bottom:87.240000px;}
.y50{bottom:91.260000px;}
.y3c{bottom:95.760000px;}
.y6f{bottom:95.850000px;}
.y68{bottom:100.260000px;}
.y58{bottom:100.290000px;}
.y44{bottom:100.350000px;}
.y1{bottom:101.640000px;}
.y5c{bottom:104.790000px;}
.y47{bottom:104.880000px;}
.y4f{bottom:108.810000px;}
.y53{bottom:113.310000px;}
.y3b{bottom:113.400000px;}
.y4d{bottom:113.970000px;}
.yd2{bottom:116.940000px;}
.y67{bottom:117.810000px;}
.y6e{bottom:117.900000px;}
.y43{bottom:117.930000px;}
.y74{bottom:122.400000px;}
.y46{bottom:122.430000px;}
.ya6{bottom:122.700000px;}
.y4e{bottom:130.950000px;}
.yd1{bottom:134.580000px;}
.y66{bottom:135.450000px;}
.y73{bottom:139.950000px;}
.y42{bottom:140.070000px;}
.ya5{bottom:140.250000px;}
.y61{bottom:148.500000px;}
.y77{bottom:149.970000px;}
.y65{bottom:153.000000px;}
.y6d{bottom:153.090000px;}
.y72{bottom:157.590000px;}
.ya4{bottom:157.890000px;}
.yd0{bottom:161.130000px;}
.y60{bottom:170.550000px;}
.y6c{bottom:175.140000px;}
.ycf{bottom:178.680000px;}
.y76{bottom:182.190000px;}
.ya3{bottom:184.800000px;}
.yce{bottom:196.320000px;}
.y24{bottom:208.560000px;}
.ycd{bottom:213.870000px;}
.y23{bottom:226.200000px;}
.ya2{bottom:236.010000px;}
.ycc{bottom:240.510000px;}
.y22{bottom:252.750000px;}
.ya1{bottom:253.650000px;}
.ycb{bottom:258.060000px;}
.y4a{bottom:264.360000px;}
.ya0{bottom:271.200000px;}
.yca{bottom:275.610000px;}
.y21{bottom:288.300000px;}
.y9f{bottom:288.840000px;}
.yc9{bottom:302.250000px;}
.y20{bottom:305.940000px;}
.y9e{bottom:306.390000px;}
.yc8{bottom:319.800000px;}
.y1f{bottom:323.490000px;}
.y9d{bottom:323.940000px;}
.yc7{bottom:337.440000px;}
.y1e{bottom:341.130000px;}
.y9c{bottom:341.580000px;}
.yc6{bottom:354.990000px;}
.y1d{bottom:358.680000px;}
.y41{bottom:366.510000px;}
.y9b{bottom:368.490000px;}
.y1c{bottom:376.230000px;}
.yc5{bottom:381.540000px;}
.y1b{bottom:393.870000px;}
.yc4{bottom:399.180000px;}
.y1a{bottom:411.420000px;}
.y9a{bottom:416.730000px;}
.y99{bottom:434.370000px;}
.y19{bottom:438.330000px;}
.yc3{bottom:443.370000px;}
.y98{bottom:451.920000px;}
.yc2{bottom:460.920000px;}
.y97{bottom:469.470000px;}
.yc1{bottom:478.500000px;}
.y18{bottom:486.690000px;}
.y96{bottom:487.140000px;}
.y17{bottom:504.600000px;}
.y95{bottom:504.690000px;}
.yc0{bottom:505.140000px;}
.ybf{bottom:522.690000px;}
.y40{bottom:526.020000px;}
.y94{bottom:531.330000px;}
.ybe{bottom:540.330000px;}
.y16{bottom:541.590000px;}
.y75{bottom:554.550000px;}
.y15{bottom:559.140000px;}
.y93{bottom:566.880000px;}
.y3f{bottom:574.710000px;}
.y14{bottom:576.780000px;}
.y92{bottom:584.430000px;}
.y6b{bottom:587.490000px;}
.y13{bottom:594.330000px;}
.y3e{bottom:601.260000px;}
.ybd{bottom:602.070000px;}
.y91{bottom:611.070000px;}
.y12{bottom:611.880000px;}
.y3a{bottom:616.290000px;}
.ydd{bottom:619.620000px;}
.ybc{bottom:628.620000px;}
.y11{bottom:629.520000px;}
.ydc{bottom:637.260000px;}
.ybb{bottom:646.260000px;}
.y90{bottom:646.620000px;}
.y10{bottom:647.070000px;}
.ydb{bottom:654.810000px;}
.yba{bottom:663.810000px;}
.y8f{bottom:664.260000px;}
.yf{bottom:664.710000px;}
.yda{bottom:681.360000px;}
.y8e{bottom:681.810000px;}
.ye{bottom:682.260000px;}
.yb9{bottom:690.360000px;}
.yd9{bottom:699.000000px;}
.y8d{bottom:699.360000px;}
.yd{bottom:699.810000px;}
.yb8{bottom:708.000000px;}
.y8c{bottom:717.000000px;}
.yc{bottom:717.450000px;}
.yb7{bottom:725.550000px;}
.y8b{bottom:734.550000px;}
.yb{bottom:735.000000px;}
.yd8{bottom:743.190000px;}
.y38{bottom:749.130000px;}
.y8a{bottom:752.190000px;}
.yd7{bottom:760.740000px;}
.ya{bottom:761.910000px;}
.yb6{bottom:769.740000px;}
.y89{bottom:778.740000px;}
.y5f{bottom:782.160000px;}
.yb5{bottom:787.290000px;}
.yd6{bottom:804.930000px;}
.y9{bottom:810.240000px;}
.yb4{bottom:813.930000px;}
.y88{bottom:814.290000px;}
.y32{bottom:829.230000px;}
.yb3{bottom:831.480000px;}
.y87{bottom:831.930000px;}
.y8{bottom:845.790000px;}
.yb2{bottom:849.030000px;}
.y86{bottom:849.480000px;}
.yd5{bottom:866.670000px;}
.y85{bottom:867.030000px;}
.yb1{bottom:875.670000px;}
.y7{bottom:881.610000px;}
.yd4{bottom:884.220000px;}
.y84{bottom:884.670000px;}
.yb0{bottom:893.220000px;}
.y83{bottom:902.220000px;}
.yaf{bottom:910.860000px;}
.y6{bottom:917.610000px;}
.y82{bottom:919.860000px;}
.yae{bottom:928.410000px;}
.y30{bottom:931.380000px;}
.y5{bottom:935.610000px;}
.y81{bottom:937.410000px;}
.yd3{bottom:945.960000px;}
.y80{bottom:954.960000px;}
.y4{bottom:971.700000px;}
.y57{bottom:972.240000px;}
.yad{bottom:972.600000px;}
.y7f{bottom:981.600000px;}
.yac{bottom:990.150000px;}
.y2b{bottom:993.930000px;}
.y3{bottom:1009.980000px;}
.yab{bottom:1016.820000px;}
.y7e{bottom:1017.180000px;}
.yaa{bottom:1034.370000px;}
.y7d{bottom:1034.820000px;}
.y7c{bottom:1052.370000px;}
.ya9{bottom:1060.920000px;}
.y7b{bottom:1069.920000px;}
.y28{bottom:1073.970000px;}
.ya8{bottom:1078.560000px;}
.y7a{bottom:1087.560000px;}
.ya7{bottom:1096.110000px;}
.y79{bottom:1105.110000px;}
.y56{bottom:1114.110000px;}
.y78{bottom:1122.750000px;}
.y27{bottom:1140.300000px;}
.y25{bottom:1194.300000px;}
.h11{height:26.550000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h14{height:39.690000px;}
.ha{height:44.190000px;}
.h6{height:50.667539px;}
.hb{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hd{height:61.740000px;}
.h19{height:61.793886px;}
.h9{height:62.585859px;}
.h18{height:68.582109px;}
.h4{height:72.985430px;}
.hf{height:79.290000px;}
.hc{height:79.320000px;}
.he{height:101.430000px;}
.h10{height:132.120000px;}
.h15{height:141.150000px;}
.h13{height:149.670000px;}
.h12{height:158.790000px;}
.h16{height:189.270000px;}
.h17{height:193.860000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:109.650000px;}
.w6{width:270.390000px;}
.w4{width:274.320000px;}
.w5{width:370.200000px;}
.w7{width:484.500000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.xb{left:111.239987px;}
.x5{left:179.130000px;}
.x2{left:202.799987px;}
.xa{left:220.439987px;}
.x8{left:339.960000px;}
.x7{left:446.609987px;}
.x6{left:454.260000px;}
.x9{left:761.639987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls11{letter-spacing:-0.326933pt;}
.lsc{letter-spacing:-0.217067pt;}
.ls10{letter-spacing:-0.165867pt;}
.lsa{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls14{letter-spacing:-0.033600pt;}
.ls12{letter-spacing:-0.006720pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls15{letter-spacing:0.040320pt;}
.ls13{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.043733pt;}
.lsd{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls6{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.lse{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:42.423680pt;}
.ls16{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.wse{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.910933pt;}
.ws6{word-spacing:-11.800533pt;}
.wsd{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.750080pt;}
.wsc{word-spacing:-11.723200pt;}
.ws3{word-spacing:-11.620267pt;}
.wsa{word-spacing:-11.590933pt;}
.ws7{word-spacing:-11.539733pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws8{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._2{margin-left:-3.200000pt;}
._3{margin-left:-2.221877pt;}
._0{margin-left:-0.965333pt;}
._1{width:0.894944pt;}
._8{width:2.672000pt;}
._9{width:3.634134pt;}
._1c{width:4.595199pt;}
._7{width:5.611200pt;}
._c{width:6.544962pt;}
._5{width:7.455465pt;}
._4{width:8.497067pt;}
._13{width:9.437334pt;}
._6{width:10.851733pt;}
._1f{width:13.092800pt;}
._10{width:14.084800pt;}
._a{width:15.040000pt;}
._b{width:15.996160pt;}
._d{width:17.688533pt;}
._18{width:22.872320pt;}
._f{width:24.742720pt;}
._12{width:25.864960pt;}
._1d{width:28.109440pt;}
._1a{width:32.544960pt;}
._20{width:33.453440pt;}
._21{width:34.522240pt;}
._19{width:37.247680pt;}
._22{width:39.705920pt;}
._1e{width:41.790080pt;}
._14{width:48.249280pt;}
._16{width:51.409280pt;}
._1b{width:59.639040pt;}
._15{width:61.349120pt;}
._11{width:72.785280pt;}
._17{width:84.221440pt;}
._23{width:109.097600pt;}
._e{width:120.934720pt;}
.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;}
.y55{bottom:2.960000pt;}
.y2f{bottom:6.960000pt;}
.y2a{bottom:7.040000pt;}
.y37{bottom:10.960000pt;}
.y4c{bottom:11.040000pt;}
.y54{bottom:18.560000pt;}
.y6a{bottom:22.560000pt;}
.y2e{bottom:22.586667pt;}
.y29{bottom:22.640000pt;}
.y36{bottom:26.640000pt;}
.y64{bottom:30.240000pt;}
.y31{bottom:38.240000pt;}
.y2d{bottom:38.266667pt;}
.y52{bottom:41.840000pt;}
.y35{bottom:42.240000pt;}
.y5b{bottom:42.266667pt;}
.y49{bottom:42.320000pt;}
.y71{bottom:45.920000pt;}
.y63{bottom:49.840000pt;}
.y45{bottom:49.920000pt;}
.y39{bottom:53.840000pt;}
.y2c{bottom:53.866667pt;}
.y4b{bottom:53.920000pt;}
.y34{bottom:57.840000pt;}
.y5a{bottom:57.866667pt;}
.y48{bottom:57.920000pt;}
.y51{bottom:61.520000pt;}
.y5e{bottom:61.866667pt;}
.y2{bottom:65.226667pt;}
.y70{bottom:65.520000pt;}
.y26{bottom:65.946667pt;}
.y62{bottom:69.440000pt;}
.y3d{bottom:69.520000pt;}
.y69{bottom:73.440000pt;}
.y33{bottom:73.520000pt;}
.y59{bottom:73.546667pt;}
.y5d{bottom:77.546667pt;}
.y50{bottom:81.120000pt;}
.y3c{bottom:85.120000pt;}
.y6f{bottom:85.200000pt;}
.y68{bottom:89.120000pt;}
.y58{bottom:89.146667pt;}
.y44{bottom:89.200000pt;}
.y1{bottom:90.346667pt;}
.y5c{bottom:93.146667pt;}
.y47{bottom:93.226667pt;}
.y4f{bottom:96.720000pt;}
.y53{bottom:100.720000pt;}
.y3b{bottom:100.800000pt;}
.y4d{bottom:101.306667pt;}
.yd2{bottom:103.946667pt;}
.y67{bottom:104.720000pt;}
.y6e{bottom:104.800000pt;}
.y43{bottom:104.826667pt;}
.y74{bottom:108.800000pt;}
.y46{bottom:108.826667pt;}
.ya6{bottom:109.066667pt;}
.y4e{bottom:116.400000pt;}
.yd1{bottom:119.626667pt;}
.y66{bottom:120.400000pt;}
.y73{bottom:124.400000pt;}
.y42{bottom:124.506667pt;}
.ya5{bottom:124.666667pt;}
.y61{bottom:132.000000pt;}
.y77{bottom:133.306667pt;}
.y65{bottom:136.000000pt;}
.y6d{bottom:136.080000pt;}
.y72{bottom:140.080000pt;}
.ya4{bottom:140.346667pt;}
.yd0{bottom:143.226667pt;}
.y60{bottom:151.600000pt;}
.y6c{bottom:155.680000pt;}
.ycf{bottom:158.826667pt;}
.y76{bottom:161.946667pt;}
.ya3{bottom:164.266667pt;}
.yce{bottom:174.506667pt;}
.y24{bottom:185.386667pt;}
.ycd{bottom:190.106667pt;}
.y23{bottom:201.066667pt;}
.ya2{bottom:209.786667pt;}
.ycc{bottom:213.786667pt;}
.y22{bottom:224.666667pt;}
.ya1{bottom:225.466667pt;}
.ycb{bottom:229.386667pt;}
.y4a{bottom:234.986667pt;}
.ya0{bottom:241.066667pt;}
.yca{bottom:244.986667pt;}
.y21{bottom:256.266667pt;}
.y9f{bottom:256.746667pt;}
.yc9{bottom:268.666667pt;}
.y20{bottom:271.946667pt;}
.y9e{bottom:272.346667pt;}
.yc8{bottom:284.266667pt;}
.y1f{bottom:287.546667pt;}
.y9d{bottom:287.946667pt;}
.yc7{bottom:299.946667pt;}
.y1e{bottom:303.226667pt;}
.y9c{bottom:303.626667pt;}
.yc6{bottom:315.546667pt;}
.y1d{bottom:318.826667pt;}
.y41{bottom:325.786667pt;}
.y9b{bottom:327.546667pt;}
.y1c{bottom:334.426667pt;}
.yc5{bottom:339.146667pt;}
.y1b{bottom:350.106667pt;}
.yc4{bottom:354.826667pt;}
.y1a{bottom:365.706667pt;}
.y9a{bottom:370.426667pt;}
.y99{bottom:386.106667pt;}
.y19{bottom:389.626667pt;}
.yc3{bottom:394.106667pt;}
.y98{bottom:401.706667pt;}
.yc2{bottom:409.706667pt;}
.y97{bottom:417.306667pt;}
.yc1{bottom:425.333333pt;}
.y18{bottom:432.613333pt;}
.y96{bottom:433.013333pt;}
.y17{bottom:448.533333pt;}
.y95{bottom:448.613333pt;}
.yc0{bottom:449.013333pt;}
.ybf{bottom:464.613333pt;}
.y40{bottom:467.573333pt;}
.y94{bottom:472.293333pt;}
.ybe{bottom:480.293333pt;}
.y16{bottom:481.413333pt;}
.y75{bottom:492.933333pt;}
.y15{bottom:497.013333pt;}
.y93{bottom:503.893333pt;}
.y3f{bottom:510.853333pt;}
.y14{bottom:512.693333pt;}
.y92{bottom:519.493333pt;}
.y6b{bottom:522.213333pt;}
.y13{bottom:528.293333pt;}
.y3e{bottom:534.453333pt;}
.ybd{bottom:535.173333pt;}
.y91{bottom:543.173333pt;}
.y12{bottom:543.893333pt;}
.y3a{bottom:547.813333pt;}
.ydd{bottom:550.773333pt;}
.ybc{bottom:558.773333pt;}
.y11{bottom:559.573333pt;}
.ydc{bottom:566.453333pt;}
.ybb{bottom:574.453333pt;}
.y90{bottom:574.773333pt;}
.y10{bottom:575.173333pt;}
.ydb{bottom:582.053333pt;}
.yba{bottom:590.053333pt;}
.y8f{bottom:590.453333pt;}
.yf{bottom:590.853333pt;}
.yda{bottom:605.653333pt;}
.y8e{bottom:606.053333pt;}
.ye{bottom:606.453333pt;}
.yb9{bottom:613.653333pt;}
.yd9{bottom:621.333333pt;}
.y8d{bottom:621.653333pt;}
.yd{bottom:622.053333pt;}
.yb8{bottom:629.333333pt;}
.y8c{bottom:637.333333pt;}
.yc{bottom:637.733333pt;}
.yb7{bottom:644.933333pt;}
.y8b{bottom:652.933333pt;}
.yb{bottom:653.333333pt;}
.yd8{bottom:660.613333pt;}
.y38{bottom:665.893333pt;}
.y8a{bottom:668.613333pt;}
.yd7{bottom:676.213333pt;}
.ya{bottom:677.253333pt;}
.yb6{bottom:684.213333pt;}
.y89{bottom:692.213333pt;}
.y5f{bottom:695.253333pt;}
.yb5{bottom:699.813333pt;}
.yd6{bottom:715.493333pt;}
.y9{bottom:720.213333pt;}
.yb4{bottom:723.493333pt;}
.y88{bottom:723.813333pt;}
.y32{bottom:737.093333pt;}
.yb3{bottom:739.093333pt;}
.y87{bottom:739.493333pt;}
.y8{bottom:751.813333pt;}
.yb2{bottom:754.693333pt;}
.y86{bottom:755.093333pt;}
.yd5{bottom:770.373333pt;}
.y85{bottom:770.693333pt;}
.yb1{bottom:778.373333pt;}
.y7{bottom:783.653333pt;}
.yd4{bottom:785.973333pt;}
.y84{bottom:786.373333pt;}
.yb0{bottom:793.973333pt;}
.y83{bottom:801.973333pt;}
.yaf{bottom:809.653333pt;}
.y6{bottom:815.653333pt;}
.y82{bottom:817.653333pt;}
.yae{bottom:825.253333pt;}
.y30{bottom:827.893333pt;}
.y5{bottom:831.653333pt;}
.y81{bottom:833.253333pt;}
.yd3{bottom:840.853333pt;}
.y80{bottom:848.853333pt;}
.y4{bottom:863.733333pt;}
.y57{bottom:864.213333pt;}
.yad{bottom:864.533333pt;}
.y7f{bottom:872.533333pt;}
.yac{bottom:880.133333pt;}
.y2b{bottom:883.493333pt;}
.y3{bottom:897.760000pt;}
.yab{bottom:903.840000pt;}
.y7e{bottom:904.160000pt;}
.yaa{bottom:919.440000pt;}
.y7d{bottom:919.840000pt;}
.y7c{bottom:935.440000pt;}
.ya9{bottom:943.040000pt;}
.y7b{bottom:951.040000pt;}
.y28{bottom:954.640000pt;}
.ya8{bottom:958.720000pt;}
.y7a{bottom:966.720000pt;}
.ya7{bottom:974.320000pt;}
.y79{bottom:982.320000pt;}
.y56{bottom:990.320000pt;}
.y78{bottom:998.000000pt;}
.y27{bottom:1013.600000pt;}
.y25{bottom:1061.600000pt;}
.h11{height:23.600000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h14{height:35.280000pt;}
.ha{height:39.280000pt;}
.h6{height:45.037812pt;}
.hb{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hd{height:54.880000pt;}
.h19{height:54.927899pt;}
.h9{height:55.631875pt;}
.h18{height:60.961875pt;}
.h4{height:64.875937pt;}
.hf{height:70.480000pt;}
.hc{height:70.506667pt;}
.he{height:90.160000pt;}
.h10{height:117.440000pt;}
.h15{height:125.466667pt;}
.h13{height:133.040000pt;}
.h12{height:141.146667pt;}
.h16{height:168.240000pt;}
.h17{height:172.320000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:97.466667pt;}
.w6{width:240.346667pt;}
.w4{width:243.840000pt;}
.w5{width:329.066667pt;}
.w7{width:430.666667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.xb{left:98.879988pt;}
.x5{left:159.226667pt;}
.x2{left:180.266655pt;}
.xa{left:195.946655pt;}
.x8{left:302.186667pt;}
.x7{left:396.986655pt;}
.x6{left:403.786667pt;}
.x9{left:677.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; }
  