
    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_dc503fe39fc7654675efe6e1.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8cabf576feb91722ed2654aa.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_cad6e08a39684ebdfde40ec4.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_6ded97585aa76547eb453ae9.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_6d0c7e470af0f9bdc542e1a4.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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6927907dd01966ed1841506c.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9578cc178e424b15ebb71b3a.woff')format("woff");}.ff8{font-family:ff8;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;}
.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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1e{letter-spacing:-0.513600px;}
.lsd{letter-spacing:-0.444600px;}
.ls8{letter-spacing:-0.399000px;}
.ls1a{letter-spacing:-0.363000px;}
.ls1f{letter-spacing:-0.216600px;}
.lsa{letter-spacing:-0.186600px;}
.ls1d{letter-spacing:-0.178800px;}
.ls12{letter-spacing:-0.162000px;}
.ls14{letter-spacing:-0.153600px;}
.lsc{letter-spacing:-0.121200px;}
.ls1c{letter-spacing:-0.092400px;}
.ls4{letter-spacing:-0.090000px;}
.ls11{letter-spacing:-0.084600px;}
.ls18{letter-spacing:-0.041760px;}
.ls1b{letter-spacing:-0.003240px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls15{letter-spacing:0.064800px;}
.ls2{letter-spacing:0.065520px;}
.ls17{letter-spacing:0.092400px;}
.lsb{letter-spacing:0.098400px;}
.ls9{letter-spacing:0.113400px;}
.ls6{letter-spacing:0.119400px;}
.ls7{letter-spacing:0.143400px;}
.ls1{letter-spacing:0.162000px;}
.ls10{letter-spacing:0.173400px;}
.ls5{letter-spacing:0.174600px;}
.ls13{letter-spacing:0.275400px;}
.ls19{letter-spacing:9.093600px;}
.ls0{letter-spacing:13.347360px;}
.ls21{letter-spacing:47.726640px;}
.ls16{letter-spacing:63.566640px;}
.ls20{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-14.493600px;}
.wsf{word-spacing:-14.372400px;}
.wsc{word-spacing:-13.399800px;}
.ws5{word-spacing:-13.369800px;}
.ws3{word-spacing:-13.345800px;}
.ws8{word-spacing:-13.324800px;}
.ws10{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.ws13{word-spacing:-13.223160px;}
.ws14{word-spacing:-13.134000px;}
.wse{word-spacing:-13.072800px;}
.wsd{word-spacing:-13.064400px;}
.ws7{word-spacing:-13.039800px;}
.ws16{word-spacing:-13.009800px;}
.ws12{word-spacing:-12.863400px;}
.ws6{word-spacing:-12.827400px;}
.ws15{word-spacing:-12.712800px;}
.ws0{word-spacing:-12.042000px;}
.ws1{word-spacing:-9.810000px;}
.ws2{word-spacing:-8.553600px;}
.ws11{word-spacing:-8.511840px;}
.wsb{word-spacing:0.000000px;}
.ws9{word-spacing:4.304880px;}
._b{margin-left:-3.978048px;}
._1{margin-left:-2.432436px;}
._0{margin-left:-1.020000px;}
._2{width:1.341744px;}
._4{width:2.484911px;}
._d{width:3.525409px;}
._5{width:4.569000px;}
._6{width:6.072000px;}
._7{width:8.056200px;}
._e{width:9.498960px;}
._14{width:10.586880px;}
._c{width:11.603160px;}
._12{width:14.664014px;}
._a{width:15.814786px;}
._9{width:16.831805px;}
._8{width:17.855400px;}
._3{width:19.624320px;}
._13{width:20.686800px;}
._11{width:22.733520px;}
._10{width:23.805480px;}
._f{width:25.009920px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:100.200000px;}
.y5c{bottom:112.980000px;}
.ybe{bottom:118.290000px;}
.yec{bottom:124.500000px;}
.y27{bottom:130.620000px;}
.ybd{bottom:136.740000px;}
.yeb{bottom:142.140000px;}
.y26{bottom:148.260000px;}
.y5b{bottom:148.530000px;}
.yea{bottom:159.690000px;}
.y9a{bottom:162.480000px;}
.ybc{bottom:164.550000px;}
.y5a{bottom:166.170000px;}
.y25{bottom:175.170000px;}
.y80{bottom:178.500000px;}
.y99{bottom:180.120000px;}
.y59{bottom:183.720000px;}
.ye9{bottom:186.330000px;}
.y7f{bottom:196.050000px;}
.y98{bottom:197.670000px;}
.y58{bottom:201.270000px;}
.ybb{bottom:201.540000px;}
.ye8{bottom:203.880000px;}
.y7e{bottom:213.690000px;}
.y97{bottom:215.310000px;}
.y57{bottom:218.910000px;}
.yba{bottom:219.090000px;}
.ye7{bottom:221.430000px;}
.y24{bottom:223.770000px;}
.y7d{bottom:231.240000px;}
.y96{bottom:232.860000px;}
.y56{bottom:236.460000px;}
.yb9{bottom:246.000000px;}
.ye6{bottom:248.070000px;}
.y95{bottom:250.410000px;}
.y55{bottom:254.100000px;}
.y7c{bottom:257.880000px;}
.y23{bottom:260.760000px;}
.ye5{bottom:265.620000px;}
.y94{bottom:268.050000px;}
.y54{bottom:271.650000px;}
.y22{bottom:278.400000px;}
.yb8{bottom:283.080000px;}
.y93{bottom:285.600000px;}
.y53{bottom:289.200000px;}
.ye4{bottom:292.260000px;}
.y7b{bottom:297.210000px;}
.y92{bottom:303.240000px;}
.y52{bottom:306.840000px;}
.ye3{bottom:309.810000px;}
.yb7{bottom:309.990000px;}
.y7a{bottom:310.980000px;}
.y21{bottom:313.950000px;}
.y51{bottom:324.390000px;}
.y20{bottom:331.500000px;}
.ye2{bottom:336.360000px;}
.y91{bottom:338.790000px;}
.y50{bottom:341.940000px;}
.y79{bottom:343.200000px;}
.yb6{bottom:347.250000px;}
.y1f{bottom:349.140000px;}
.ye1{bottom:354.000000px;}
.y90{bottom:356.340000px;}
.y4f{bottom:359.580000px;}
.y1e{bottom:366.690000px;}
.ye0{bottom:371.550000px;}
.y8f{bottom:373.980000px;}
.y4e{bottom:377.130000px;}
.y1d{bottom:384.240000px;}
.y8e{bottom:391.530000px;}
.yb5{bottom:395.580000px;}
.ydf{bottom:398.190000px;}
.y1c{bottom:401.880000px;}
.y8d{bottom:409.170000px;}
.y4d{bottom:412.770000px;}
.yb4{bottom:413.130000px;}
.yde{bottom:415.740000px;}
.y1b{bottom:419.430000px;}
.y4c{bottom:430.320000px;}
.yb3{bottom:430.770000px;}
.y8c{bottom:435.990000px;}
.y1a{bottom:437.070000px;}
.ydd{bottom:442.290000px;}
.y4b{bottom:447.870000px;}
.y19{bottom:454.620000px;}
.yb2{bottom:457.680000px;}
.ydc{bottom:459.930000px;}
.y4a{bottom:465.510000px;}
.ydb{bottom:477.510000px;}
.y49{bottom:483.090000px;}
.y8b{bottom:484.350000px;}
.y18{bottom:490.200000px;}
.y48{bottom:500.730000px;}
.y8a{bottom:501.900000px;}
.yda{bottom:504.150000px;}
.yb1{bottom:505.950000px;}
.y17{bottom:507.840000px;}
.y47{bottom:518.280000px;}
.yd9{bottom:521.700000px;}
.yb0{bottom:523.500000px;}
.y16{bottom:525.390000px;}
.y78{bottom:533.400000px;}
.y89{bottom:534.120000px;}
.y46{bottom:535.830000px;}
.yaf{bottom:541.140000px;}
.y15{bottom:543.030000px;}
.yd8{bottom:548.250000px;}
.y77{bottom:550.950000px;}
.y45{bottom:553.470000px;}
.yae{bottom:558.690000px;}
.y14{bottom:560.580000px;}
.yd7{bottom:565.890000px;}
.y76{bottom:568.590000px;}
.yad{bottom:576.330000px;}
.y13{bottom:578.130000px;}
.yd6{bottom:583.440000px;}
.y75{bottom:586.140000px;}
.y44{bottom:589.020000px;}
.yac{bottom:593.880000px;}
.y12{bottom:595.770000px;}
.y43{bottom:606.660000px;}
.yd5{bottom:610.080000px;}
.yab{bottom:611.430000px;}
.y74{bottom:612.690000px;}
.y11{bottom:613.320000px;}
.y42{bottom:624.210000px;}
.yd4{bottom:627.630000px;}
.yaa{bottom:629.070000px;}
.y10{bottom:630.960000px;}
.y41{bottom:641.760000px;}
.yd3{bottom:645.180000px;}
.ya9{bottom:646.620000px;}
.yf{bottom:648.510000px;}
.y73{bottom:648.600000px;}
.y40{bottom:659.400000px;}
.ye{bottom:666.060000px;}
.yd2{bottom:671.820000px;}
.y3f{bottom:676.950000px;}
.ya8{bottom:682.260000px;}
.yd{bottom:683.700000px;}
.yd1{bottom:689.370000px;}
.y72{bottom:696.930000px;}
.ya7{bottom:699.810000px;}
.y3e{bottom:703.590000px;}
.y71{bottom:714.480000px;}
.yd0{bottom:715.920000px;}
.ya6{bottom:717.360000px;}
.yc{bottom:719.250000px;}
.y70{bottom:732.120000px;}
.ycf{bottom:733.560000px;}
.ya5{bottom:735.000000px;}
.yb{bottom:736.890000px;}
.y3d{bottom:739.500000px;}
.y6f{bottom:749.670000px;}
.yce{bottom:751.110000px;}
.ya4{bottom:752.550000px;}
.y88{bottom:758.040000px;}
.ya{bottom:763.800000px;}
.y6e{bottom:767.220000px;}
.y87{bottom:775.590000px;}
.ycd{bottom:777.750000px;}
.y6d{bottom:784.860000px;}
.y3c{bottom:787.740000px;}
.ya3{bottom:788.190000px;}
.y86{bottom:793.140000px;}
.ycc{bottom:795.300000px;}
.y3b{bottom:805.290000px;}
.ya2{bottom:805.740000px;}
.y85{bottom:810.780000px;}
.y6c{bottom:811.410000px;}
.y9{bottom:812.040000px;}
.ycb{bottom:821.850000px;}
.y3a{bottom:822.930000px;}
.ya1{bottom:823.290000px;}
.y84{bottom:837.330000px;}
.yca{bottom:839.490000px;}
.ya0{bottom:840.930000px;}
.y6b{bottom:847.050000px;}
.y8{bottom:847.860000px;}
.yc9{bottom:857.040000px;}
.y39{bottom:858.480000px;}
.y6a{bottom:864.600000px;}
.y83{bottom:872.970000px;}
.y38{bottom:876.030000px;}
.y69{bottom:882.150000px;}
.yc8{bottom:883.680000px;}
.y7{bottom:883.860000px;}
.y82{bottom:890.520000px;}
.y37{bottom:893.670000px;}
.y68{bottom:899.700000px;}
.yc7{bottom:901.230000px;}
.y36{bottom:911.220000px;}
.y67{bottom:918.150000px;}
.yc6{bottom:918.780000px;}
.y81{bottom:922.740000px;}
.y6{bottom:923.640000px;}
.y35{bottom:928.860000px;}
.y66{bottom:935.790000px;}
.y5{bottom:941.640000px;}
.yc5{bottom:945.690000px;}
.y34{bottom:946.410000px;}
.y65{bottom:953.340000px;}
.y33{bottom:963.960000px;}
.y9f{bottom:964.410000px;}
.y64{bottom:970.890000px;}
.y4{bottom:973.950000px;}
.y32{bottom:981.600000px;}
.y9e{bottom:981.960000px;}
.y63{bottom:989.340000px;}
.yc4{bottom:994.020000px;}
.y31{bottom:999.150000px;}
.y9d{bottom:999.600000px;}
.y62{bottom:1006.890000px;}
.yc3{bottom:1011.600000px;}
.y3{bottom:1012.230000px;}
.y30{bottom:1016.820000px;}
.y9c{bottom:1017.180000px;}
.y61{bottom:1024.470000px;}
.y9b{bottom:1034.820000px;}
.yc2{bottom:1038.510000px;}
.y2f{bottom:1052.370000px;}
.y60{bottom:1060.920000px;}
.y2e{bottom:1069.920000px;}
.yc1{bottom:1075.500000px;}
.y5f{bottom:1078.560000px;}
.y2d{bottom:1087.560000px;}
.y5e{bottom:1096.110000px;}
.yc0{bottom:1102.410000px;}
.y2c{bottom:1105.110000px;}
.y5d{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.ybf{bottom:1139.400000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h2{height:32.918906px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.ha{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.xa{left:72.899987px;}
.xd{left:80.369987px;}
.x7{left:93.059987px;}
.x4{left:95.039987px;}
.xe{left:111.239987px;}
.x5{left:122.039987px;}
.x2{left:192.719987px;}
.x8{left:231.059987px;}
.xb{left:257.249987px;}
.x9{left:708.809987px;}
.x3{left:800.339987px;}
.x6{left:807.809987px;}
.xc{left:828.599987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1e{letter-spacing:-0.456533pt;}
.lsd{letter-spacing:-0.395200pt;}
.ls8{letter-spacing:-0.354667pt;}
.ls1a{letter-spacing:-0.322667pt;}
.ls1f{letter-spacing:-0.192533pt;}
.lsa{letter-spacing:-0.165867pt;}
.ls1d{letter-spacing:-0.158933pt;}
.ls12{letter-spacing:-0.144000pt;}
.ls14{letter-spacing:-0.136533pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls1c{letter-spacing:-0.082133pt;}
.ls4{letter-spacing:-0.080000pt;}
.ls11{letter-spacing:-0.075200pt;}
.ls18{letter-spacing:-0.037120pt;}
.ls1b{letter-spacing:-0.002880pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls15{letter-spacing:0.057600pt;}
.ls2{letter-spacing:0.058240pt;}
.ls17{letter-spacing:0.082133pt;}
.lsb{letter-spacing:0.087467pt;}
.ls9{letter-spacing:0.100800pt;}
.ls6{letter-spacing:0.106133pt;}
.ls7{letter-spacing:0.127467pt;}
.ls1{letter-spacing:0.144000pt;}
.ls10{letter-spacing:0.154133pt;}
.ls5{letter-spacing:0.155200pt;}
.ls13{letter-spacing:0.244800pt;}
.ls19{letter-spacing:8.083200pt;}
.ls0{letter-spacing:11.864320pt;}
.ls21{letter-spacing:42.423680pt;}
.ls16{letter-spacing:56.503680pt;}
.ls20{letter-spacing:71.863680pt;}
.wsa{word-spacing:-12.883200pt;}
.wsf{word-spacing:-12.775467pt;}
.wsc{word-spacing:-11.910933pt;}
.ws5{word-spacing:-11.884267pt;}
.ws3{word-spacing:-11.862933pt;}
.ws8{word-spacing:-11.844267pt;}
.ws10{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.ws13{word-spacing:-11.753920pt;}
.ws14{word-spacing:-11.674667pt;}
.wse{word-spacing:-11.620267pt;}
.wsd{word-spacing:-11.612800pt;}
.ws7{word-spacing:-11.590933pt;}
.ws16{word-spacing:-11.564267pt;}
.ws12{word-spacing:-11.434133pt;}
.ws6{word-spacing:-11.402133pt;}
.ws15{word-spacing:-11.300267pt;}
.ws0{word-spacing:-10.704000pt;}
.ws1{word-spacing:-8.720000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws11{word-spacing:-7.566080pt;}
.wsb{word-spacing:0.000000pt;}
.ws9{word-spacing:3.826560pt;}
._b{margin-left:-3.536043pt;}
._1{margin-left:-2.162165pt;}
._0{margin-left:-0.906667pt;}
._2{width:1.192662pt;}
._4{width:2.208810pt;}
._d{width:3.133697pt;}
._5{width:4.061333pt;}
._6{width:5.397333pt;}
._7{width:7.161067pt;}
._e{width:8.443520pt;}
._14{width:9.410560pt;}
._c{width:10.313920pt;}
._12{width:13.034679pt;}
._a{width:14.057588pt;}
._9{width:14.961604pt;}
._8{width:15.871466pt;}
._3{width:17.443840pt;}
._13{width:18.388267pt;}
._11{width:20.207573pt;}
._10{width:21.160427pt;}
._f{width:22.231040pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:89.066667pt;}
.y5c{bottom:100.426667pt;}
.ybe{bottom:105.146667pt;}
.yec{bottom:110.666667pt;}
.y27{bottom:116.106667pt;}
.ybd{bottom:121.546667pt;}
.yeb{bottom:126.346667pt;}
.y26{bottom:131.786667pt;}
.y5b{bottom:132.026667pt;}
.yea{bottom:141.946667pt;}
.y9a{bottom:144.426667pt;}
.ybc{bottom:146.266667pt;}
.y5a{bottom:147.706667pt;}
.y25{bottom:155.706667pt;}
.y80{bottom:158.666667pt;}
.y99{bottom:160.106667pt;}
.y59{bottom:163.306667pt;}
.ye9{bottom:165.626667pt;}
.y7f{bottom:174.266667pt;}
.y98{bottom:175.706667pt;}
.y58{bottom:178.906667pt;}
.ybb{bottom:179.146667pt;}
.ye8{bottom:181.226667pt;}
.y7e{bottom:189.946667pt;}
.y97{bottom:191.386667pt;}
.y57{bottom:194.586667pt;}
.yba{bottom:194.746667pt;}
.ye7{bottom:196.826667pt;}
.y24{bottom:198.906667pt;}
.y7d{bottom:205.546667pt;}
.y96{bottom:206.986667pt;}
.y56{bottom:210.186667pt;}
.yb9{bottom:218.666667pt;}
.ye6{bottom:220.506667pt;}
.y95{bottom:222.586667pt;}
.y55{bottom:225.866667pt;}
.y7c{bottom:229.226667pt;}
.y23{bottom:231.786667pt;}
.ye5{bottom:236.106667pt;}
.y94{bottom:238.266667pt;}
.y54{bottom:241.466667pt;}
.y22{bottom:247.466667pt;}
.yb8{bottom:251.626667pt;}
.y93{bottom:253.866667pt;}
.y53{bottom:257.066667pt;}
.ye4{bottom:259.786667pt;}
.y7b{bottom:264.186667pt;}
.y92{bottom:269.546667pt;}
.y52{bottom:272.746667pt;}
.ye3{bottom:275.386667pt;}
.yb7{bottom:275.546667pt;}
.y7a{bottom:276.426667pt;}
.y21{bottom:279.066667pt;}
.y51{bottom:288.346667pt;}
.y20{bottom:294.666667pt;}
.ye2{bottom:298.986667pt;}
.y91{bottom:301.146667pt;}
.y50{bottom:303.946667pt;}
.y79{bottom:305.066667pt;}
.yb6{bottom:308.666667pt;}
.y1f{bottom:310.346667pt;}
.ye1{bottom:314.666667pt;}
.y90{bottom:316.746667pt;}
.y4f{bottom:319.626667pt;}
.y1e{bottom:325.946667pt;}
.ye0{bottom:330.266667pt;}
.y8f{bottom:332.426667pt;}
.y4e{bottom:335.226667pt;}
.y1d{bottom:341.546667pt;}
.y8e{bottom:348.026667pt;}
.yb5{bottom:351.626667pt;}
.ydf{bottom:353.946667pt;}
.y1c{bottom:357.226667pt;}
.y8d{bottom:363.706667pt;}
.y4d{bottom:366.906667pt;}
.yb4{bottom:367.226667pt;}
.yde{bottom:369.546667pt;}
.y1b{bottom:372.826667pt;}
.y4c{bottom:382.506667pt;}
.yb3{bottom:382.906667pt;}
.y8c{bottom:387.546667pt;}
.y1a{bottom:388.506667pt;}
.ydd{bottom:393.146667pt;}
.y4b{bottom:398.106667pt;}
.y19{bottom:404.106667pt;}
.yb2{bottom:406.826667pt;}
.ydc{bottom:408.826667pt;}
.y4a{bottom:413.786667pt;}
.ydb{bottom:424.453333pt;}
.y49{bottom:429.413333pt;}
.y8b{bottom:430.533333pt;}
.y18{bottom:435.733333pt;}
.y48{bottom:445.093333pt;}
.y8a{bottom:446.133333pt;}
.yda{bottom:448.133333pt;}
.yb1{bottom:449.733333pt;}
.y17{bottom:451.413333pt;}
.y47{bottom:460.693333pt;}
.yd9{bottom:463.733333pt;}
.yb0{bottom:465.333333pt;}
.y16{bottom:467.013333pt;}
.y78{bottom:474.133333pt;}
.y89{bottom:474.773333pt;}
.y46{bottom:476.293333pt;}
.yaf{bottom:481.013333pt;}
.y15{bottom:482.693333pt;}
.yd8{bottom:487.333333pt;}
.y77{bottom:489.733333pt;}
.y45{bottom:491.973333pt;}
.yae{bottom:496.613333pt;}
.y14{bottom:498.293333pt;}
.yd7{bottom:503.013333pt;}
.y76{bottom:505.413333pt;}
.yad{bottom:512.293333pt;}
.y13{bottom:513.893333pt;}
.yd6{bottom:518.613333pt;}
.y75{bottom:521.013333pt;}
.y44{bottom:523.573333pt;}
.yac{bottom:527.893333pt;}
.y12{bottom:529.573333pt;}
.y43{bottom:539.253333pt;}
.yd5{bottom:542.293333pt;}
.yab{bottom:543.493333pt;}
.y74{bottom:544.613333pt;}
.y11{bottom:545.173333pt;}
.y42{bottom:554.853333pt;}
.yd4{bottom:557.893333pt;}
.yaa{bottom:559.173333pt;}
.y10{bottom:560.853333pt;}
.y41{bottom:570.453333pt;}
.yd3{bottom:573.493333pt;}
.ya9{bottom:574.773333pt;}
.yf{bottom:576.453333pt;}
.y73{bottom:576.533333pt;}
.y40{bottom:586.133333pt;}
.ye{bottom:592.053333pt;}
.yd2{bottom:597.173333pt;}
.y3f{bottom:601.733333pt;}
.ya8{bottom:606.453333pt;}
.yd{bottom:607.733333pt;}
.yd1{bottom:612.773333pt;}
.y72{bottom:619.493333pt;}
.ya7{bottom:622.053333pt;}
.y3e{bottom:625.413333pt;}
.y71{bottom:635.093333pt;}
.yd0{bottom:636.373333pt;}
.ya6{bottom:637.653333pt;}
.yc{bottom:639.333333pt;}
.y70{bottom:650.773333pt;}
.ycf{bottom:652.053333pt;}
.ya5{bottom:653.333333pt;}
.yb{bottom:655.013333pt;}
.y3d{bottom:657.333333pt;}
.y6f{bottom:666.373333pt;}
.yce{bottom:667.653333pt;}
.ya4{bottom:668.933333pt;}
.y88{bottom:673.813333pt;}
.ya{bottom:678.933333pt;}
.y6e{bottom:681.973333pt;}
.y87{bottom:689.413333pt;}
.ycd{bottom:691.333333pt;}
.y6d{bottom:697.653333pt;}
.y3c{bottom:700.213333pt;}
.ya3{bottom:700.613333pt;}
.y86{bottom:705.013333pt;}
.ycc{bottom:706.933333pt;}
.y3b{bottom:715.813333pt;}
.ya2{bottom:716.213333pt;}
.y85{bottom:720.693333pt;}
.y6c{bottom:721.253333pt;}
.y9{bottom:721.813333pt;}
.ycb{bottom:730.533333pt;}
.y3a{bottom:731.493333pt;}
.ya1{bottom:731.813333pt;}
.y84{bottom:744.293333pt;}
.yca{bottom:746.213333pt;}
.ya0{bottom:747.493333pt;}
.y6b{bottom:752.933333pt;}
.y8{bottom:753.653333pt;}
.yc9{bottom:761.813333pt;}
.y39{bottom:763.093333pt;}
.y6a{bottom:768.533333pt;}
.y83{bottom:775.973333pt;}
.y38{bottom:778.693333pt;}
.y69{bottom:784.133333pt;}
.yc8{bottom:785.493333pt;}
.y7{bottom:785.653333pt;}
.y82{bottom:791.573333pt;}
.y37{bottom:794.373333pt;}
.y68{bottom:799.733333pt;}
.yc7{bottom:801.093333pt;}
.y36{bottom:809.973333pt;}
.y67{bottom:816.133333pt;}
.yc6{bottom:816.693333pt;}
.y81{bottom:820.213333pt;}
.y6{bottom:821.013333pt;}
.y35{bottom:825.653333pt;}
.y66{bottom:831.813333pt;}
.y5{bottom:837.013333pt;}
.yc5{bottom:840.613333pt;}
.y34{bottom:841.253333pt;}
.y65{bottom:847.413333pt;}
.y33{bottom:856.853333pt;}
.y9f{bottom:857.253333pt;}
.y64{bottom:863.013333pt;}
.y4{bottom:865.733333pt;}
.y32{bottom:872.533333pt;}
.y9e{bottom:872.853333pt;}
.y63{bottom:879.413333pt;}
.yc4{bottom:883.573333pt;}
.y31{bottom:888.133333pt;}
.y9d{bottom:888.533333pt;}
.y62{bottom:895.013333pt;}
.yc3{bottom:899.200000pt;}
.y3{bottom:899.760000pt;}
.y30{bottom:903.840000pt;}
.y9c{bottom:904.160000pt;}
.y61{bottom:910.640000pt;}
.y9b{bottom:919.840000pt;}
.yc2{bottom:923.120000pt;}
.y2f{bottom:935.440000pt;}
.y60{bottom:943.040000pt;}
.y2e{bottom:951.040000pt;}
.yc1{bottom:956.000000pt;}
.y5f{bottom:958.720000pt;}
.y2d{bottom:966.720000pt;}
.y5e{bottom:974.320000pt;}
.yc0{bottom:979.920000pt;}
.y2c{bottom:982.320000pt;}
.y5d{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.ybf{bottom:1012.800000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h2{height:29.261250pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.ha{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.xa{left:64.799988pt;}
.xd{left:71.439988pt;}
.x7{left:82.719988pt;}
.x4{left:84.479988pt;}
.xe{left:98.879988pt;}
.x5{left:108.479988pt;}
.x2{left:171.306655pt;}
.x8{left:205.386655pt;}
.xb{left:228.666655pt;}
.x9{left:630.053322pt;}
.x3{left:711.413322pt;}
.x6{left:718.053322pt;}
.xc{left:736.533322pt;}
}




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