
    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_3471aaf30ac66f93553c808c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_a54019a1033f6c24a2c1ff4a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.776855;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_3b56a5356e5d701b665323c3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.077637;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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_023a2f19019ed3aa5d557876.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_0b743445f28a2f271f74be2c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_8696d25ca30645d80898907e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_8e04fc60bd4574a52da6f551.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_41f44d2ec5ae9fafb0c8f6af.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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(0.257777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257777,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.463800px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.078000px;}
.ls3{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.720000px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,255),0 0.015em rgb(0,0,255),0.015em 0 rgb(0,0,255),0 -0.015em  rgb(0,0,255);}
.sc3{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(196,89,17),0 0.015em rgb(196,89,17),0.015em 0 rgb(196,89,17),0 -0.015em  rgb(196,89,17);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc4{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,255);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(196,89,17);text-shadow:none;}
}
.ws0{word-spacing:-19.728000px;}
.ws2{word-spacing:-18.000000px;}
.ws3{word-spacing:-16.272000px;}
.ws5{word-spacing:-14.506440px;}
.ws1{word-spacing:-0.049897px;}
.ws4{word-spacing:0.000000px;}
._4{margin-left:-5.100000px;}
._0{margin-left:-1.728000px;}
._2{width:1.440000px;}
._8{width:2.448000px;}
._11{width:3.744000px;}
._12{width:5.484000px;}
._1c{width:6.528000px;}
._14{width:8.496000px;}
._15{width:10.152000px;}
._1f{width:11.592000px;}
._9{width:12.888000px;}
._7{width:14.112000px;}
._10{width:15.696000px;}
._1d{width:16.704000px;}
._a{width:19.512000px;}
._b{width:20.736000px;}
._20{width:22.008000px;}
._1e{width:23.904000px;}
._21{width:25.848000px;}
._6{width:27.264000px;}
._5{width:28.776000px;}
._d{width:31.464000px;}
._e{width:32.688000px;}
._16{width:34.488000px;}
._17{width:35.496000px;}
._23{width:36.816000px;}
._f{width:41.472000px;}
._27{width:42.768000px;}
._28{width:44.568000px;}
._18{width:46.152000px;}
._19{width:47.208000px;}
._c{width:48.312000px;}
._29{width:49.320000px;}
._2a{width:50.472000px;}
._25{width:55.512000px;}
._26{width:57.096000px;}
._13{width:58.392000px;}
._1a{width:66.744000px;}
._1b{width:68.256000px;}
._22{width:311.688000px;}
._1{width:431.998320px;}
._3{width:1552.596000px;}
._24{width:1872.360000px;}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc0{color:rgb(196,89,17);}
.fs2{font-size:41.760000px;}
.fs6{font-size:45.360000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:49.896859px;}
.fs4{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs9{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ye{bottom:3.240000px;}
.y9{bottom:3.418719px;}
.y4d{bottom:3.420000px;}
.y47{bottom:4.500000px;}
.y41{bottom:4.860000px;}
.y58{bottom:8.280000px;}
.yb{bottom:9.180000px;}
.y10{bottom:15.840000px;}
.yd{bottom:19.980000px;}
.y4c{bottom:21.240000px;}
.y46{bottom:25.200000px;}
.y57{bottom:25.560000px;}
.yc{bottom:27.000000px;}
.yf{bottom:27.540000px;}
.y7{bottom:35.100000px;}
.y4b{bottom:40.140000px;}
.y56{bottom:42.660000px;}
.y45{bottom:45.945000px;}
.y4a{bottom:59.220000px;}
.y55{bottom:60.660000px;}
.y44{bottom:66.645000px;}
.ycb{bottom:73.800000px;}
.y49{bottom:77.580000px;}
.y54{bottom:81.360000px;}
.y9a{bottom:82.440000px;}
.y8c{bottom:82.800000px;}
.y3f{bottom:84.420000px;}
.yca{bottom:94.500000px;}
.y53{bottom:102.090000px;}
.y99{bottom:103.140000px;}
.y8b{bottom:103.500000px;}
.y3e{bottom:105.120000px;}
.yc9{bottom:115.200000px;}
.y4e{bottom:116.820000px;}
.y52{bottom:122.790000px;}
.y98{bottom:123.840000px;}
.y8a{bottom:124.200000px;}
.y3d{bottom:125.820000px;}
.yc8{bottom:135.900000px;}
.y51{bottom:142.770000px;}
.y97{bottom:144.540000px;}
.y89{bottom:144.900000px;}
.y3c{bottom:146.520000px;}
.yc7{bottom:156.600000px;}
.y50{bottom:160.410000px;}
.y88{bottom:165.240000px;}
.y96{bottom:165.600000px;}
.y3b{bottom:167.220000px;}
.yc6{bottom:177.300000px;}
.y4f{bottom:184.890000px;}
.y87{bottom:186.300000px;}
.y3a{bottom:187.920000px;}
.yc5{bottom:198.000000px;}
.y86{bottom:207.030000px;}
.y39{bottom:208.650000px;}
.yc4{bottom:218.730000px;}
.y85{bottom:227.730000px;}
.y38{bottom:229.350000px;}
.yc3{bottom:239.430000px;}
.y84{bottom:248.070000px;}
.yd0{bottom:248.430000px;}
.y37{bottom:250.050000px;}
.yc2{bottom:260.130000px;}
.y83{bottom:268.770000px;}
.ycf{bottom:269.130000px;}
.y36{bottom:270.750000px;}
.yc1{bottom:280.830000px;}
.y82{bottom:289.830000px;}
.y35{bottom:291.450000px;}
.yc0{bottom:301.530000px;}
.y81{bottom:310.530000px;}
.y34{bottom:312.150000px;}
.y48{bottom:316.290000px;}
.ybf{bottom:322.230000px;}
.y80{bottom:331.230000px;}
.y33{bottom:332.850000px;}
.ybe{bottom:342.930000px;}
.y95{bottom:351.570000px;}
.y7f{bottom:351.930000px;}
.y32{bottom:353.550000px;}
.ybd{bottom:363.630000px;}
.y94{bottom:372.270000px;}
.y7e{bottom:372.630000px;}
.y31{bottom:374.250000px;}
.ybc{bottom:384.330000px;}
.y7d{bottom:393.330000px;}
.y30{bottom:394.950000px;}
.ybb{bottom:405.030000px;}
.y43{bottom:408.450000px;}
.y7c{bottom:414.030000px;}
.y2f{bottom:415.650000px;}
.yba{bottom:425.730000px;}
.y7b{bottom:434.730000px;}
.y2e{bottom:436.350000px;}
.yb9{bottom:446.475000px;}
.y7a{bottom:455.475000px;}
.y2d{bottom:457.095000px;}
.yb8{bottom:467.175000px;}
.y79{bottom:476.175000px;}
.y2c{bottom:477.795000px;}
.yb7{bottom:487.875000px;}
.y42{bottom:492.015000px;}
.y78{bottom:496.875000px;}
.y2b{bottom:498.495000px;}
.yb6{bottom:508.215000px;}
.y40{bottom:515.415000px;}
.y77{bottom:517.575000px;}
.y2a{bottom:521.355000px;}
.yb5{bottom:529.275000px;}
.y93{bottom:537.915000px;}
.y76{bottom:538.275000px;}
.y29{bottom:542.955000px;}
.yb4{bottom:549.975000px;}
.y92{bottom:558.615000px;}
.y75{bottom:558.975000px;}
.y28{bottom:562.575000px;}
.yb3{bottom:570.675000px;}
.yd1{bottom:578.595000px;}
.y74{bottom:579.675000px;}
.y27{bottom:580.935000px;}
.yb2{bottom:591.375000px;}
.y73{bottom:600.375000px;}
.y26{bottom:601.275000px;}
.yb1{bottom:612.075000px;}
.y72{bottom:621.075000px;}
.y25{bottom:621.975000px;}
.yb0{bottom:632.775000px;}
.y71{bottom:641.775000px;}
.y24{bottom:643.035000px;}
.yaf{bottom:653.475000px;}
.y70{bottom:662.475000px;}
.y23{bottom:663.375000px;}
.yae{bottom:674.175000px;}
.y6f{bottom:683.205000px;}
.y22{bottom:684.105000px;}
.yad{bottom:694.905000px;}
.y6e{bottom:703.905000px;}
.y21{bottom:705.165000px;}
.yac{bottom:715.605000px;}
.y6d{bottom:724.605000px;}
.y20{bottom:725.505000px;}
.yab{bottom:732.525000px;}
.y6c{bottom:745.305000px;}
.y1f{bottom:746.205000px;}
.yaa{bottom:754.125000px;}
.y6b{bottom:766.005000px;}
.y1e{bottom:767.265000px;}
.ya9{bottom:775.545000px;}
.y6a{bottom:786.705000px;}
.y1d{bottom:787.605000px;}
.ya8{bottom:796.965000px;}
.y91{bottom:807.045000px;}
.y69{bottom:807.405000px;}
.y1c{bottom:808.305000px;}
.ya7{bottom:818.385000px;}
.y90{bottom:827.745000px;}
.y68{bottom:828.105000px;}
.y1b{bottom:829.365000px;}
.ya6{bottom:839.805000px;}
.y67{bottom:848.805000px;}
.y1a{bottom:850.065000px;}
.yce{bottom:869.145000px;}
.y66{bottom:869.505000px;}
.y19{bottom:870.405000px;}
.ya5{bottom:886.065000px;}
.ycd{bottom:889.845000px;}
.y65{bottom:890.205000px;}
.y18{bottom:891.105000px;}
.ya4{bottom:907.125000px;}
.y64{bottom:910.590000px;}
.ycc{bottom:910.950000px;}
.y17{bottom:912.210000px;}
.ya3{bottom:927.870000px;}
.y8f{bottom:931.290000px;}
.y63{bottom:931.650000px;}
.y16{bottom:932.910000px;}
.ya2{bottom:948.570000px;}
.y62{bottom:952.350000px;}
.y15{bottom:953.250000px;}
.ya1{bottom:969.270000px;}
.y61{bottom:973.050000px;}
.y14{bottom:973.950000px;}
.ya0{bottom:989.970000px;}
.y60{bottom:993.750000px;}
.y13{bottom:995.190000px;}
.y9f{bottom:1006.890000px;}
.y5f{bottom:1014.450000px;}
.y12{bottom:1019.310000px;}
.y8e{bottom:1034.790000px;}
.y5e{bottom:1035.150000px;}
.y11{bottom:1043.430000px;}
.y9e{bottom:1049.190000px;}
.y8d{bottom:1055.490000px;}
.y5d{bottom:1055.850000px;}
.y6{bottom:1066.650000px;}
.y9d{bottom:1070.610000px;}
.y5c{bottom:1076.550000px;}
.y5{bottom:1084.110000px;}
.y9c{bottom:1092.030000px;}
.y5b{bottom:1097.250000px;}
.y4{bottom:1103.370000px;}
.y8{bottom:1109.863245px;}
.y5a{bottom:1117.950000px;}
.y3{bottom:1133.430000px;}
.y9b{bottom:1138.290000px;}
.y59{bottom:1138.650000px;}
.y2{bottom:1150.920000px;}
.y1{bottom:1179.720000px;}
.ya{bottom:1219.140000px;}
.h7{height:15.941650px;}
.h1b{height:20.160000px;}
.h1e{height:20.700000px;}
.h15{height:21.960000px;}
.h5{height:31.952109px;}
.h9{height:32.400000px;}
.hd{height:33.120000px;}
.hb{height:40.140000px;}
.h1d{height:41.400000px;}
.h4{height:41.738906px;}
.hc{height:45.116367px;}
.h8{height:52.040864px;}
.h14{height:52.066406px;}
.h6{height:53.709961px;}
.h3{height:54.070312px;}
.h1a{height:58.651172px;}
.h13{height:60.226875px;}
.h18{height:65.010937px;}
.h1c{height:67.824844px;}
.h12{height:70.664062px;}
.ha{height:71.613281px;}
.h11{height:72.562500px;}
.he{height:73.722656px;}
.h2{height:81.105469px;}
.h16{height:82.836000px;}
.hf{height:84.898125px;}
.h10{height:86.255508px;}
.h17{height:91.440000px;}
.h19{height:198.750000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:53.460000px;}
.w5{width:58.320000px;}
.w2{width:103.257005px;}
.wc{width:118.065000px;}
.w10{width:140.205000px;}
.wb{width:147.981000px;}
.we{width:147.996000px;}
.wa{width:155.550000px;}
.wf{width:166.515000px;}
.wd{width:181.650000px;}
.w3{width:193.320000px;}
.w9{width:214.770000px;}
.w7{width:263.595000px;}
.w6{width:418.755000px;}
.w4{width:442.980000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:8.100000px;}
.x9{left:9.540000px;}
.x7{left:11.245577px;}
.xa{left:15.120000px;}
.xb{left:22.860000px;}
.x13{left:49.500000px;}
.x14{left:77.616000px;}
.x17{left:127.296000px;}
.x2{left:135.036000px;}
.x1f{left:136.476000px;}
.xd{left:143.136000px;}
.xe{left:145.296000px;}
.x1{left:148.536000px;}
.x3{left:172.110000px;}
.x1e{left:175.530000px;}
.x12{left:177.870000px;}
.xf{left:277.275000px;}
.x1b{left:309.675000px;}
.x10{left:327.675000px;}
.x11{left:340.815000px;}
.x18{left:342.795000px;}
.x5{left:446.505000px;}
.x1c{left:458.400000px;}
.x19{left:499.080000px;}
.x6{left:524.047557px;}
.x1d{left:625.650000px;}
.x4{left:629.970000px;}
.x1a{left:647.790000px;}
.x8{left:652.177557px;}
.xc{left:682.740000px;}
.x16{left:703.980000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.069333pt;}
.ls3{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.640000pt;}
.ws0{word-spacing:-17.536000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws3{word-spacing:-14.464000pt;}
.ws5{word-spacing:-12.894613pt;}
.ws1{word-spacing:-0.044353pt;}
.ws4{word-spacing:0.000000pt;}
._4{margin-left:-4.533333pt;}
._0{margin-left:-1.536000pt;}
._2{width:1.280000pt;}
._8{width:2.176000pt;}
._11{width:3.328000pt;}
._12{width:4.874667pt;}
._1c{width:5.802667pt;}
._14{width:7.552000pt;}
._15{width:9.024000pt;}
._1f{width:10.304000pt;}
._9{width:11.456000pt;}
._7{width:12.544000pt;}
._10{width:13.952000pt;}
._1d{width:14.848000pt;}
._a{width:17.344000pt;}
._b{width:18.432000pt;}
._20{width:19.562667pt;}
._1e{width:21.248000pt;}
._21{width:22.976000pt;}
._6{width:24.234667pt;}
._5{width:25.578667pt;}
._d{width:27.968000pt;}
._e{width:29.056000pt;}
._16{width:30.656000pt;}
._17{width:31.552000pt;}
._23{width:32.725333pt;}
._f{width:36.864000pt;}
._27{width:38.016000pt;}
._28{width:39.616000pt;}
._18{width:41.024000pt;}
._19{width:41.962667pt;}
._c{width:42.944000pt;}
._29{width:43.840000pt;}
._2a{width:44.864000pt;}
._25{width:49.344000pt;}
._26{width:50.752000pt;}
._13{width:51.904000pt;}
._1a{width:59.328000pt;}
._1b{width:60.672000pt;}
._22{width:277.056000pt;}
._1{width:383.998507pt;}
._3{width:1380.085333pt;}
._24{width:1664.320000pt;}
.fs2{font-size:37.120000pt;}
.fs6{font-size:40.320000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:44.352763pt;}
.fs4{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs9{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:2.880000pt;}
.y9{bottom:3.038862pt;}
.y4d{bottom:3.040000pt;}
.y47{bottom:4.000000pt;}
.y41{bottom:4.320000pt;}
.y58{bottom:7.360000pt;}
.yb{bottom:8.160000pt;}
.y10{bottom:14.080000pt;}
.yd{bottom:17.760000pt;}
.y4c{bottom:18.880000pt;}
.y46{bottom:22.400000pt;}
.y57{bottom:22.720000pt;}
.yc{bottom:24.000000pt;}
.yf{bottom:24.480000pt;}
.y7{bottom:31.200000pt;}
.y4b{bottom:35.680000pt;}
.y56{bottom:37.920000pt;}
.y45{bottom:40.840000pt;}
.y4a{bottom:52.640000pt;}
.y55{bottom:53.920000pt;}
.y44{bottom:59.240000pt;}
.ycb{bottom:65.600000pt;}
.y49{bottom:68.960000pt;}
.y54{bottom:72.320000pt;}
.y9a{bottom:73.280000pt;}
.y8c{bottom:73.600000pt;}
.y3f{bottom:75.040000pt;}
.yca{bottom:84.000000pt;}
.y53{bottom:90.746667pt;}
.y99{bottom:91.680000pt;}
.y8b{bottom:92.000000pt;}
.y3e{bottom:93.440000pt;}
.yc9{bottom:102.400000pt;}
.y4e{bottom:103.840000pt;}
.y52{bottom:109.146667pt;}
.y98{bottom:110.080000pt;}
.y8a{bottom:110.400000pt;}
.y3d{bottom:111.840000pt;}
.yc8{bottom:120.800000pt;}
.y51{bottom:126.906667pt;}
.y97{bottom:128.480000pt;}
.y89{bottom:128.800000pt;}
.y3c{bottom:130.240000pt;}
.yc7{bottom:139.200000pt;}
.y50{bottom:142.586667pt;}
.y88{bottom:146.880000pt;}
.y96{bottom:147.200000pt;}
.y3b{bottom:148.640000pt;}
.yc6{bottom:157.600000pt;}
.y4f{bottom:164.346667pt;}
.y87{bottom:165.600000pt;}
.y3a{bottom:167.040000pt;}
.yc5{bottom:176.000000pt;}
.y86{bottom:184.026667pt;}
.y39{bottom:185.466667pt;}
.yc4{bottom:194.426667pt;}
.y85{bottom:202.426667pt;}
.y38{bottom:203.866667pt;}
.yc3{bottom:212.826667pt;}
.y84{bottom:220.506667pt;}
.yd0{bottom:220.826667pt;}
.y37{bottom:222.266667pt;}
.yc2{bottom:231.226667pt;}
.y83{bottom:238.906667pt;}
.ycf{bottom:239.226667pt;}
.y36{bottom:240.666667pt;}
.yc1{bottom:249.626667pt;}
.y82{bottom:257.626667pt;}
.y35{bottom:259.066667pt;}
.yc0{bottom:268.026667pt;}
.y81{bottom:276.026667pt;}
.y34{bottom:277.466667pt;}
.y48{bottom:281.146667pt;}
.ybf{bottom:286.426667pt;}
.y80{bottom:294.426667pt;}
.y33{bottom:295.866667pt;}
.ybe{bottom:304.826667pt;}
.y95{bottom:312.506667pt;}
.y7f{bottom:312.826667pt;}
.y32{bottom:314.266667pt;}
.ybd{bottom:323.226667pt;}
.y94{bottom:330.906667pt;}
.y7e{bottom:331.226667pt;}
.y31{bottom:332.666667pt;}
.ybc{bottom:341.626667pt;}
.y7d{bottom:349.626667pt;}
.y30{bottom:351.066667pt;}
.ybb{bottom:360.026667pt;}
.y43{bottom:363.066667pt;}
.y7c{bottom:368.026667pt;}
.y2f{bottom:369.466667pt;}
.yba{bottom:378.426667pt;}
.y7b{bottom:386.426667pt;}
.y2e{bottom:387.866667pt;}
.yb9{bottom:396.866667pt;}
.y7a{bottom:404.866667pt;}
.y2d{bottom:406.306667pt;}
.yb8{bottom:415.266667pt;}
.y79{bottom:423.266667pt;}
.y2c{bottom:424.706667pt;}
.yb7{bottom:433.666667pt;}
.y42{bottom:437.346667pt;}
.y78{bottom:441.666667pt;}
.y2b{bottom:443.106667pt;}
.yb6{bottom:451.746667pt;}
.y40{bottom:458.146667pt;}
.y77{bottom:460.066667pt;}
.y2a{bottom:463.426667pt;}
.yb5{bottom:470.466667pt;}
.y93{bottom:478.146667pt;}
.y76{bottom:478.466667pt;}
.y29{bottom:482.626667pt;}
.yb4{bottom:488.866667pt;}
.y92{bottom:496.546667pt;}
.y75{bottom:496.866667pt;}
.y28{bottom:500.066667pt;}
.yb3{bottom:507.266667pt;}
.yd1{bottom:514.306667pt;}
.y74{bottom:515.266667pt;}
.y27{bottom:516.386667pt;}
.yb2{bottom:525.666667pt;}
.y73{bottom:533.666667pt;}
.y26{bottom:534.466667pt;}
.yb1{bottom:544.066667pt;}
.y72{bottom:552.066667pt;}
.y25{bottom:552.866667pt;}
.yb0{bottom:562.466667pt;}
.y71{bottom:570.466667pt;}
.y24{bottom:571.586667pt;}
.yaf{bottom:580.866667pt;}
.y70{bottom:588.866667pt;}
.y23{bottom:589.666667pt;}
.yae{bottom:599.266667pt;}
.y6f{bottom:607.293333pt;}
.y22{bottom:608.093333pt;}
.yad{bottom:617.693333pt;}
.y6e{bottom:625.693333pt;}
.y21{bottom:626.813333pt;}
.yac{bottom:636.093333pt;}
.y6d{bottom:644.093333pt;}
.y20{bottom:644.893333pt;}
.yab{bottom:651.133333pt;}
.y6c{bottom:662.493333pt;}
.y1f{bottom:663.293333pt;}
.yaa{bottom:670.333333pt;}
.y6b{bottom:680.893333pt;}
.y1e{bottom:682.013333pt;}
.ya9{bottom:689.373333pt;}
.y6a{bottom:699.293333pt;}
.y1d{bottom:700.093333pt;}
.ya8{bottom:708.413333pt;}
.y91{bottom:717.373333pt;}
.y69{bottom:717.693333pt;}
.y1c{bottom:718.493333pt;}
.ya7{bottom:727.453333pt;}
.y90{bottom:735.773333pt;}
.y68{bottom:736.093333pt;}
.y1b{bottom:737.213333pt;}
.ya6{bottom:746.493333pt;}
.y67{bottom:754.493333pt;}
.y1a{bottom:755.613333pt;}
.yce{bottom:772.573333pt;}
.y66{bottom:772.893333pt;}
.y19{bottom:773.693333pt;}
.ya5{bottom:787.613333pt;}
.ycd{bottom:790.973333pt;}
.y65{bottom:791.293333pt;}
.y18{bottom:792.093333pt;}
.ya4{bottom:806.333333pt;}
.y64{bottom:809.413333pt;}
.ycc{bottom:809.733333pt;}
.y17{bottom:810.853333pt;}
.ya3{bottom:824.773333pt;}
.y8f{bottom:827.813333pt;}
.y63{bottom:828.133333pt;}
.y16{bottom:829.253333pt;}
.ya2{bottom:843.173333pt;}
.y62{bottom:846.533333pt;}
.y15{bottom:847.333333pt;}
.ya1{bottom:861.573333pt;}
.y61{bottom:864.933333pt;}
.y14{bottom:865.733333pt;}
.ya0{bottom:879.973333pt;}
.y60{bottom:883.333333pt;}
.y13{bottom:884.613333pt;}
.y9f{bottom:895.013333pt;}
.y5f{bottom:901.733333pt;}
.y12{bottom:906.053333pt;}
.y8e{bottom:919.813333pt;}
.y5e{bottom:920.133333pt;}
.y11{bottom:927.493333pt;}
.y9e{bottom:932.613333pt;}
.y8d{bottom:938.213333pt;}
.y5d{bottom:938.533333pt;}
.y6{bottom:948.133333pt;}
.y9d{bottom:951.653333pt;}
.y5c{bottom:956.933333pt;}
.y5{bottom:963.653333pt;}
.y9c{bottom:970.693333pt;}
.y5b{bottom:975.333333pt;}
.y4{bottom:980.773333pt;}
.y8{bottom:986.545107pt;}
.y5a{bottom:993.733333pt;}
.y3{bottom:1007.493333pt;}
.y9b{bottom:1011.813333pt;}
.y59{bottom:1012.133333pt;}
.y2{bottom:1023.040000pt;}
.y1{bottom:1048.640000pt;}
.ya{bottom:1083.680000pt;}
.h7{height:14.170356pt;}
.h1b{height:17.920000pt;}
.h1e{height:18.400000pt;}
.h15{height:19.520000pt;}
.h5{height:28.401875pt;}
.h9{height:28.800000pt;}
.hd{height:29.440000pt;}
.hb{height:35.680000pt;}
.h1d{height:36.800000pt;}
.h4{height:37.101250pt;}
.hc{height:40.103437pt;}
.h8{height:46.258546pt;}
.h14{height:46.281250pt;}
.h6{height:47.742188pt;}
.h3{height:48.062500pt;}
.h1a{height:52.134375pt;}
.h13{height:53.535000pt;}
.h18{height:57.787500pt;}
.h1c{height:60.288750pt;}
.h12{height:62.812500pt;}
.ha{height:63.656250pt;}
.h11{height:64.500000pt;}
.he{height:65.531250pt;}
.h2{height:72.093750pt;}
.h16{height:73.632000pt;}
.hf{height:75.465000pt;}
.h10{height:76.671562pt;}
.h17{height:81.280000pt;}
.h19{height:176.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:47.520000pt;}
.w5{width:51.840000pt;}
.w2{width:91.784005pt;}
.wc{width:104.946667pt;}
.w10{width:124.626667pt;}
.wb{width:131.538667pt;}
.we{width:131.552000pt;}
.wa{width:138.266667pt;}
.wf{width:148.013333pt;}
.wd{width:161.466667pt;}
.w3{width:171.840000pt;}
.w9{width:190.906667pt;}
.w7{width:234.306667pt;}
.w6{width:372.226667pt;}
.w4{width:393.760000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:7.200000pt;}
.x9{left:8.480000pt;}
.x7{left:9.996069pt;}
.xa{left:13.440000pt;}
.xb{left:20.320000pt;}
.x13{left:44.000000pt;}
.x14{left:68.992000pt;}
.x17{left:113.152000pt;}
.x2{left:120.032000pt;}
.x1f{left:121.312000pt;}
.xd{left:127.232000pt;}
.xe{left:129.152000pt;}
.x1{left:132.032000pt;}
.x3{left:152.986667pt;}
.x1e{left:156.026667pt;}
.x12{left:158.106667pt;}
.xf{left:246.466667pt;}
.x1b{left:275.266667pt;}
.x10{left:291.266667pt;}
.x11{left:302.946667pt;}
.x18{left:304.706667pt;}
.x5{left:396.893333pt;}
.x1c{left:407.466667pt;}
.x19{left:443.626667pt;}
.x6{left:465.820051pt;}
.x1d{left:556.133333pt;}
.x4{left:559.973333pt;}
.x1a{left:575.813333pt;}
.x8{left:579.713384pt;}
.xc{left:606.880000pt;}
.x16{left:625.760000pt;}
}




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