
    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_cb831bfc45030f6d94299355.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d9a235825d1a07d3021ee8e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_9093cfddefd7e852fa7e5d31.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e7b431269c518f116e3e668a.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_94dbbb9d252c7b03cc248d84.woff')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_82aa7add26d3e72a4a28ac5b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.736816;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_abdd9c6a6eebf09a9f1a8ab3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_6b399adfd4dd332a09af76e1.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_2708fd9fd160649447b04223.woff')format("woff");}.ff9{font-family:ff9;line-height:1.035156;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:ffa;src:url('chunks/assets/font_fb9f0284ccaad24e1a32d24c.woff')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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:ffb;src:url('chunks/assets/font_d678d66ab14d24a0db90d970.woff')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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:ffc;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_713058cb35e8478f7d4be364.woff')format("woff");}.ffd{font-family:ffd;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);}
.v3{vertical-align:-64.800000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls4{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.630000px;}
.ls3{letter-spacing:-0.089400px;}
.ls6{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.020160px;}
.ls9{letter-spacing:0.466800px;}
.lsc{letter-spacing:0.507000px;}
.ls0{letter-spacing:0.720000px;}
.ls5{letter-spacing:1.458000px;}
.lsb{letter-spacing:46.546560px;}
.ls8{letter-spacing:63.826560px;}
.ls1{letter-spacing:201.060000px;}
.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;}
}
.wsc{word-spacing:-60.480000px;}
.wsa{word-spacing:-54.720000px;}
.ws6{word-spacing:-16.578000px;}
.ws0{word-spacing:-16.560000px;}
.wsf{word-spacing:-15.627000px;}
.wsd{word-spacing:-15.586800px;}
.wse{word-spacing:-15.140160px;}
.ws2{word-spacing:-15.120000px;}
.ws5{word-spacing:-13.680000px;}
.ws9{word-spacing:-13.050000px;}
.ws3{word-spacing:-11.160000px;}
.ws4{word-spacing:-10.440000px;}
.ws1{word-spacing:-9.720000px;}
.ws8{word-spacing:-9.000000px;}
.ws7{word-spacing:-8.928000px;}
.wsb{word-spacing:0.000000px;}
._d{margin-left:-3.817920px;}
._3{margin-left:-2.119680px;}
._4{margin-left:-1.097280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._a{width:4.552800px;}
._c{width:6.217920px;}
._10{width:7.646400px;}
._b{width:9.141120px;}
._8{width:10.396800px;}
._9{width:11.424960px;}
._f{width:12.451200px;}
._e{width:13.736640px;}
._7{width:17.026560px;}
._13{width:18.937440px;}
._14{width:19.971360px;}
._19{width:21.525120px;}
._11{width:22.979520px;}
._12{width:24.192000px;}
._15{width:26.220960px;}
._16{width:27.280800px;}
._17{width:39.948480px;}
._18{width:41.584320px;}
._6{width:69.989760px;}
._5{width:980.525760px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fsa{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.fsb{font-size:83.664000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y49{bottom:2.875500px;}
.y5{bottom:4.320000px;}
.y3e{bottom:5.040000px;}
.y5a{bottom:5.370000px;}
.y57{bottom:6.475500px;}
.y2{bottom:10.080000px;}
.y48{bottom:10.831500px;}
.y56{bottom:23.074500px;}
.y4{bottom:23.400000px;}
.y3d{bottom:23.760000px;}
.y55{bottom:38.554500px;}
.y47{bottom:40.354500px;}
.y3c{bottom:42.480000px;}
.y3{bottom:47.880000px;}
.y46{bottom:52.234500px;}
.y54{bottom:56.194500px;}
.y3b{bottom:61.245000px;}
.y45{bottom:65.194500px;}
.y8{bottom:71.676000px;}
.y53{bottom:72.034500px;}
.y44{bottom:78.154500px;}
.y3a{bottom:79.605000px;}
.y52{bottom:87.514500px;}
.y43{bottom:91.114500px;}
.y7{bottom:91.476000px;}
.y39{bottom:98.325000px;}
.y51{bottom:102.994500px;}
.y42{bottom:113.074500px;}
.y50{bottom:115.954500px;}
.y8d{bottom:115.956000px;}
.y58{bottom:116.676000px;}
.y38{bottom:117.045000px;}
.ye9{bottom:119.916000px;}
.y4f{bottom:122.074500px;}
.y3f{bottom:131.080500px;}
.ybd{bottom:133.596000px;}
.y8c{bottom:134.316000px;}
.y37{bottom:135.405000px;}
.y4e{bottom:137.914500px;}
.ye8{bottom:138.636000px;}
.ybc{bottom:151.995000px;}
.y8b{bottom:152.715000px;}
.y4d{bottom:153.424500px;}
.y36{bottom:154.125000px;}
.ye7{bottom:157.035000px;}
.y4c{bottom:168.904500px;}
.ybb{bottom:170.355000px;}
.y8a{bottom:171.075000px;}
.y35{bottom:172.845000px;}
.y41{bottom:175.384500px;}
.ye6{bottom:175.755000px;}
.y4b{bottom:184.744500px;}
.y40{bottom:186.184500px;}
.yba{bottom:188.715000px;}
.y89{bottom:190.515000px;}
.y34{bottom:191.235000px;}
.ye5{bottom:194.115000px;}
.y4a{bottom:199.864500px;}
.yb9{bottom:207.075000px;}
.y88{bottom:208.875000px;}
.y33{bottom:209.955000px;}
.ye4{bottom:220.755000px;}
.y21{bottom:225.435000px;}
.yb8{bottom:226.155000px;}
.y87{bottom:226.515000px;}
.y32{bottom:228.675000px;}
.ye3{bottom:239.115000px;}
.y86{bottom:244.875000px;}
.y31{bottom:247.395000px;}
.y20{bottom:249.555000px;}
.yb7{bottom:252.795000px;}
.ye2{bottom:257.115000px;}
.y85{bottom:263.235000px;}
.y30{bottom:265.755000px;}
.yb6{bottom:271.155000px;}
.y1f{bottom:273.675000px;}
.ye1{bottom:275.505000px;}
.y84{bottom:281.625000px;}
.y2f{bottom:284.475000px;}
.yb5{bottom:289.545000px;}
.ye0{bottom:293.865000px;}
.y1e{bottom:297.795000px;}
.y83{bottom:301.065000px;}
.y2e{bottom:303.195000px;}
.yb4{bottom:307.905000px;}
.ydf{bottom:312.225000px;}
.y82{bottom:319.425000px;}
.y2d{bottom:321.555000px;}
.y1d{bottom:321.915000px;}
.yb3{bottom:326.265000px;}
.yde{bottom:331.665000px;}
.y81{bottom:337.065000px;}
.y2c{bottom:340.305000px;}
.yb2{bottom:345.345000px;}
.y1c{bottom:346.425000px;}
.y13{bottom:346.785000px;}
.y80{bottom:355.425000px;}
.ydd{bottom:358.305000px;}
.y2b{bottom:358.665000px;}
.yb1{bottom:364.425000px;}
.y1b{bottom:370.545000px;}
.y7f{bottom:373.785000px;}
.ydc{bottom:376.665000px;}
.yb0{bottom:382.785000px;}
.y2a{bottom:385.665000px;}
.y7e{bottom:393.225000px;}
.y1a{bottom:394.665000px;}
.ydb{bottom:395.025000px;}
.y29{bottom:402.585000px;}
.yaf{bottom:409.470000px;}
.y7d{bottom:411.630000px;}
.yda{bottom:413.430000px;}
.y19{bottom:418.785000px;}
.y28{bottom:419.145000px;}
.yae{bottom:427.830000px;}
.y7c{bottom:430.350000px;}
.yd9{bottom:431.430000px;}
.y27{bottom:436.065000px;}
.y18{bottom:442.905000px;}
.yad{bottom:446.190000px;}
.yd8{bottom:451.230000px;}
.y26{bottom:452.985000px;}
.y7b{bottom:458.430000px;}
.yac{bottom:464.190000px;}
.y17{bottom:467.070000px;}
.y25{bottom:469.590000px;}
.yd7{bottom:469.950000px;}
.y7a{bottom:476.790000px;}
.yab{bottom:482.550000px;}
.y24{bottom:486.510000px;}
.yd6{bottom:488.310000px;}
.y16{bottom:491.190000px;}
.y79{bottom:495.510000px;}
.yaa{bottom:502.350000px;}
.y23{bottom:503.070000px;}
.yd5{bottom:506.670000px;}
.y78{bottom:514.230000px;}
.y15{bottom:515.310000px;}
.ya9{bottom:520.710000px;}
.y77{bottom:532.230000px;}
.yd4{bottom:534.750000px;}
.y22{bottom:536.190000px;}
.y14{bottom:539.430000px;}
.ya8{bottom:547.380000px;}
.y76{bottom:550.980000px;}
.yd3{bottom:553.500000px;}
.ya7{bottom:565.740000px;}
.yd2{bottom:571.860000px;}
.yfb{bottom:577.260000px;}
.y75{bottom:579.060000px;}
.ya6{bottom:583.740000px;}
.yd1{bottom:590.580000px;}
.yfa{bottom:594.900000px;}
.y74{bottom:597.780000px;}
.ya5{bottom:602.100000px;}
.yd0{bottom:609.300000px;}
.yf9{bottom:612.180000px;}
.y73{bottom:616.140000px;}
.ya4{bottom:620.460000px;}
.ycf{bottom:627.300000px;}
.yf8{bottom:629.100000px;}
.y72{bottom:634.500000px;}
.ya3{bottom:640.260000px;}
.yce{bottom:646.380000px;}
.ya2{bottom:658.620000px;}
.y71{bottom:662.580000px;}
.yf7{bottom:663.660000px;}
.ycd{bottom:665.100000px;}
.y70{bottom:680.970000px;}
.ycc{bottom:683.850000px;}
.ya1{bottom:685.290000px;}
.yf6{bottom:698.250000px;}
.y6f{bottom:699.690000px;}
.ycb{bottom:702.210000px;}
.ya0{bottom:702.570000px;}
.yf5{bottom:715.530000px;}
.y6e{bottom:718.410000px;}
.y9f{bottom:720.570000px;}
.yf4{bottom:732.810000px;}
.y6d{bottom:736.770000px;}
.y9e{bottom:738.930000px;}
.yca{bottom:739.650000px;}
.yf3{bottom:750.090000px;}
.y6c{bottom:755.490000px;}
.y9d{bottom:757.290000px;}
.yc9{bottom:758.010000px;}
.yf2{bottom:767.370000px;}
.y6b{bottom:774.210000px;}
.y9c{bottom:775.650000px;}
.yc8{bottom:776.730000px;}
.yf1{bottom:784.650000px;}
.y6a{bottom:792.570000px;}
.y9b{bottom:794.010000px;}
.yc7{bottom:795.450000px;}
.yf0{bottom:801.975000px;}
.y9a{bottom:813.495000px;}
.yc6{bottom:814.215000px;}
.yef{bottom:819.975000px;}
.y69{bottom:820.335000px;}
.y99{bottom:831.855000px;}
.yc5{bottom:832.215000px;}
.y68{bottom:839.055000px;}
.yee{bottom:848.055000px;}
.y98{bottom:850.575000px;}
.yc4{bottom:850.935000px;}
.y67{bottom:857.775000px;}
.yed{bottom:866.775000px;}
.y66{bottom:876.135000px;}
.y97{bottom:877.215000px;}
.yc3{bottom:877.575000px;}
.yec{bottom:885.135000px;}
.y65{bottom:894.855000px;}
.y96{bottom:895.575000px;}
.yc2{bottom:895.935000px;}
.y12{bottom:898.455000px;}
.y11{bottom:903.855000px;}
.y64{bottom:913.575000px;}
.y95{bottom:913.935000px;}
.yc1{bottom:914.295000px;}
.y10{bottom:922.575000px;}
.y63{bottom:932.295000px;}
.yc0{bottom:932.655000px;}
.yeb{bottom:941.325000px;}
.yf{bottom:947.805000px;}
.y62{bottom:950.685000px;}
.y94{bottom:951.405000px;}
.ybf{bottom:951.765000px;}
.ye{bottom:959.685000px;}
.y61{bottom:969.045000px;}
.y93{bottom:970.125000px;}
.ybe{bottom:978.405000px;}
.yd{bottom:985.245000px;}
.y60{bottom:987.765000px;}
.yc{bottom:996.765000px;}
.yea{bottom:997.125000px;}
.y92{bottom:1015.125000px;}
.y5f{bottom:1015.485000px;}
.yb{bottom:1017.645000px;}
.y91{bottom:1033.485000px;}
.y5e{bottom:1034.205000px;}
.ya{bottom:1043.925000px;}
.y90{bottom:1051.845000px;}
.y5d{bottom:1052.925000px;}
.y8f{bottom:1070.970000px;}
.y5c{bottom:1071.330000px;}
.y9{bottom:1072.050000px;}
.y59{bottom:1075.320000px;}
.y8e{bottom:1089.690000px;}
.y5b{bottom:1090.050000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.hc{height:4.165313px;}
.h16{height:5.650313px;}
.h18{height:27.720000px;}
.h14{height:29.678906px;}
.ha{height:38.158594px;}
.hf{height:40.985156px;}
.he{height:42.086250px;}
.h10{height:53.677969px;}
.h15{height:55.147500px;}
.h17{height:59.328281px;}
.h6{height:59.357813px;}
.hb{height:60.952500px;}
.h11{height:61.927031px;}
.h1a{height:62.163910px;}
.h19{height:63.565031px;}
.h8{height:63.577969px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h9{height:66.543750px;}
.h13{height:70.664062px;}
.h7{height:84.172500px;}
.h2{height:84.990000px;}
.h4{height:116.640000px;}
.h12{height:214.965000px;}
.hd{height:548.790000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:6.876000px;}
.x1d{left:8.295000px;}
.x4{left:13.305000px;}
.x1b{left:16.546500px;}
.x18{left:17.626500px;}
.x1a{left:19.786500px;}
.x19{left:26.266500px;}
.x20{left:29.146500px;}
.x6{left:35.265000px;}
.x12{left:43.906500px;}
.x1f{left:47.542500px;}
.x13{left:50.782500px;}
.x11{left:55.102500px;}
.x22{left:57.262500px;}
.x1e{left:62.295000px;}
.x21{left:66.265500px;}
.x16{left:73.105500px;}
.x1{left:78.529500px;}
.x17{left:80.305500px;}
.x7{left:86.436000px;}
.x15{left:92.905500px;}
.x2{left:95.425500px;}
.x23{left:102.985500px;}
.xb{left:107.676000px;}
.x26{left:113.436000px;}
.x14{left:124.585500px;}
.x25{left:140.472000px;}
.x5{left:141.540000px;}
.xd{left:175.035000px;}
.x3{left:182.250000px;}
.x1c{left:218.970000px;}
.xe{left:268.665000px;}
.xc{left:407.700000px;}
.xa{left:477.180000px;}
.xf{left:554.610000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.x10{left:807.090000px;}
@media print{
.v3{vertical-align:-57.600000pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.560000pt;}
.ls3{letter-spacing:-0.079467pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.017920pt;}
.ls9{letter-spacing:0.414933pt;}
.lsc{letter-spacing:0.450667pt;}
.ls0{letter-spacing:0.640000pt;}
.ls5{letter-spacing:1.296000pt;}
.lsb{letter-spacing:41.374720pt;}
.ls8{letter-spacing:56.734720pt;}
.ls1{letter-spacing:178.720000pt;}
.wsc{word-spacing:-53.760000pt;}
.wsa{word-spacing:-48.640000pt;}
.ws6{word-spacing:-14.736000pt;}
.ws0{word-spacing:-14.720000pt;}
.wsf{word-spacing:-13.890667pt;}
.wsd{word-spacing:-13.854933pt;}
.wse{word-spacing:-13.457920pt;}
.ws2{word-spacing:-13.440000pt;}
.ws5{word-spacing:-12.160000pt;}
.ws9{word-spacing:-11.600000pt;}
.ws3{word-spacing:-9.920000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws8{word-spacing:-8.000000pt;}
.ws7{word-spacing:-7.936000pt;}
.wsb{word-spacing:0.000000pt;}
._d{margin-left:-3.393707pt;}
._3{margin-left:-1.884160pt;}
._4{margin-left:-0.975360pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._a{width:4.046933pt;}
._c{width:5.527040pt;}
._10{width:6.796800pt;}
._b{width:8.125440pt;}
._8{width:9.241600pt;}
._9{width:10.155520pt;}
._f{width:11.067733pt;}
._e{width:12.210347pt;}
._7{width:15.134720pt;}
._13{width:16.833280pt;}
._14{width:17.752320pt;}
._19{width:19.133440pt;}
._11{width:20.426240pt;}
._12{width:21.504000pt;}
._15{width:23.307520pt;}
._16{width:24.249600pt;}
._17{width:35.509760pt;}
._18{width:36.963840pt;}
._6{width:62.213120pt;}
._5{width:871.578453pt;}
.fs5{font-size:5.120000pt;}
.fsa{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.fsb{font-size:74.368000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:2.556000pt;}
.y5{bottom:3.840000pt;}
.y3e{bottom:4.480000pt;}
.y5a{bottom:4.773333pt;}
.y57{bottom:5.756000pt;}
.y2{bottom:8.960000pt;}
.y48{bottom:9.628000pt;}
.y56{bottom:20.510667pt;}
.y4{bottom:20.800000pt;}
.y3d{bottom:21.120000pt;}
.y55{bottom:34.270667pt;}
.y47{bottom:35.870667pt;}
.y3c{bottom:37.760000pt;}
.y3{bottom:42.560000pt;}
.y46{bottom:46.430667pt;}
.y54{bottom:49.950667pt;}
.y3b{bottom:54.440000pt;}
.y45{bottom:57.950667pt;}
.y8{bottom:63.712000pt;}
.y53{bottom:64.030667pt;}
.y44{bottom:69.470667pt;}
.y3a{bottom:70.760000pt;}
.y52{bottom:77.790667pt;}
.y43{bottom:80.990667pt;}
.y7{bottom:81.312000pt;}
.y39{bottom:87.400000pt;}
.y51{bottom:91.550667pt;}
.y42{bottom:100.510667pt;}
.y50{bottom:103.070667pt;}
.y8d{bottom:103.072000pt;}
.y58{bottom:103.712000pt;}
.y38{bottom:104.040000pt;}
.ye9{bottom:106.592000pt;}
.y4f{bottom:108.510667pt;}
.y3f{bottom:116.516000pt;}
.ybd{bottom:118.752000pt;}
.y8c{bottom:119.392000pt;}
.y37{bottom:120.360000pt;}
.y4e{bottom:122.590667pt;}
.ye8{bottom:123.232000pt;}
.ybc{bottom:135.106667pt;}
.y8b{bottom:135.746667pt;}
.y4d{bottom:136.377333pt;}
.y36{bottom:137.000000pt;}
.ye7{bottom:139.586667pt;}
.y4c{bottom:150.137333pt;}
.ybb{bottom:151.426667pt;}
.y8a{bottom:152.066667pt;}
.y35{bottom:153.640000pt;}
.y41{bottom:155.897333pt;}
.ye6{bottom:156.226667pt;}
.y4b{bottom:164.217333pt;}
.y40{bottom:165.497333pt;}
.yba{bottom:167.746667pt;}
.y89{bottom:169.346667pt;}
.y34{bottom:169.986667pt;}
.ye5{bottom:172.546667pt;}
.y4a{bottom:177.657333pt;}
.yb9{bottom:184.066667pt;}
.y88{bottom:185.666667pt;}
.y33{bottom:186.626667pt;}
.ye4{bottom:196.226667pt;}
.y21{bottom:200.386667pt;}
.yb8{bottom:201.026667pt;}
.y87{bottom:201.346667pt;}
.y32{bottom:203.266667pt;}
.ye3{bottom:212.546667pt;}
.y86{bottom:217.666667pt;}
.y31{bottom:219.906667pt;}
.y20{bottom:221.826667pt;}
.yb7{bottom:224.706667pt;}
.ye2{bottom:228.546667pt;}
.y85{bottom:233.986667pt;}
.y30{bottom:236.226667pt;}
.yb6{bottom:241.026667pt;}
.y1f{bottom:243.266667pt;}
.ye1{bottom:244.893333pt;}
.y84{bottom:250.333333pt;}
.y2f{bottom:252.866667pt;}
.yb5{bottom:257.373333pt;}
.ye0{bottom:261.213333pt;}
.y1e{bottom:264.706667pt;}
.y83{bottom:267.613333pt;}
.y2e{bottom:269.506667pt;}
.yb4{bottom:273.693333pt;}
.ydf{bottom:277.533333pt;}
.y82{bottom:283.933333pt;}
.y2d{bottom:285.826667pt;}
.y1d{bottom:286.146667pt;}
.yb3{bottom:290.013333pt;}
.yde{bottom:294.813333pt;}
.y81{bottom:299.613333pt;}
.y2c{bottom:302.493333pt;}
.yb2{bottom:306.973333pt;}
.y1c{bottom:307.933333pt;}
.y13{bottom:308.253333pt;}
.y80{bottom:315.933333pt;}
.ydd{bottom:318.493333pt;}
.y2b{bottom:318.813333pt;}
.yb1{bottom:323.933333pt;}
.y1b{bottom:329.373333pt;}
.y7f{bottom:332.253333pt;}
.ydc{bottom:334.813333pt;}
.yb0{bottom:340.253333pt;}
.y2a{bottom:342.813333pt;}
.y7e{bottom:349.533333pt;}
.y1a{bottom:350.813333pt;}
.ydb{bottom:351.133333pt;}
.y29{bottom:357.853333pt;}
.yaf{bottom:363.973333pt;}
.y7d{bottom:365.893333pt;}
.yda{bottom:367.493333pt;}
.y19{bottom:372.253333pt;}
.y28{bottom:372.573333pt;}
.yae{bottom:380.293333pt;}
.y7c{bottom:382.533333pt;}
.yd9{bottom:383.493333pt;}
.y27{bottom:387.613333pt;}
.y18{bottom:393.693333pt;}
.yad{bottom:396.613333pt;}
.yd8{bottom:401.093333pt;}
.y26{bottom:402.653333pt;}
.y7b{bottom:407.493333pt;}
.yac{bottom:412.613333pt;}
.y17{bottom:415.173333pt;}
.y25{bottom:417.413333pt;}
.yd7{bottom:417.733333pt;}
.y7a{bottom:423.813333pt;}
.yab{bottom:428.933333pt;}
.y24{bottom:432.453333pt;}
.yd6{bottom:434.053333pt;}
.y16{bottom:436.613333pt;}
.y79{bottom:440.453333pt;}
.yaa{bottom:446.533333pt;}
.y23{bottom:447.173333pt;}
.yd5{bottom:450.373333pt;}
.y78{bottom:457.093333pt;}
.y15{bottom:458.053333pt;}
.ya9{bottom:462.853333pt;}
.y77{bottom:473.093333pt;}
.yd4{bottom:475.333333pt;}
.y22{bottom:476.613333pt;}
.y14{bottom:479.493333pt;}
.ya8{bottom:486.560000pt;}
.y76{bottom:489.760000pt;}
.yd3{bottom:492.000000pt;}
.ya7{bottom:502.880000pt;}
.yd2{bottom:508.320000pt;}
.yfb{bottom:513.120000pt;}
.y75{bottom:514.720000pt;}
.ya6{bottom:518.880000pt;}
.yd1{bottom:524.960000pt;}
.yfa{bottom:528.800000pt;}
.y74{bottom:531.360000pt;}
.ya5{bottom:535.200000pt;}
.yd0{bottom:541.600000pt;}
.yf9{bottom:544.160000pt;}
.y73{bottom:547.680000pt;}
.ya4{bottom:551.520000pt;}
.ycf{bottom:557.600000pt;}
.yf8{bottom:559.200000pt;}
.y72{bottom:564.000000pt;}
.ya3{bottom:569.120000pt;}
.yce{bottom:574.560000pt;}
.ya2{bottom:585.440000pt;}
.y71{bottom:588.960000pt;}
.yf7{bottom:589.920000pt;}
.ycd{bottom:591.200000pt;}
.y70{bottom:605.306667pt;}
.ycc{bottom:607.866667pt;}
.ya1{bottom:609.146667pt;}
.yf6{bottom:620.666667pt;}
.y6f{bottom:621.946667pt;}
.ycb{bottom:624.186667pt;}
.ya0{bottom:624.506667pt;}
.yf5{bottom:636.026667pt;}
.y6e{bottom:638.586667pt;}
.y9f{bottom:640.506667pt;}
.yf4{bottom:651.386667pt;}
.y6d{bottom:654.906667pt;}
.y9e{bottom:656.826667pt;}
.yca{bottom:657.466667pt;}
.yf3{bottom:666.746667pt;}
.y6c{bottom:671.546667pt;}
.y9d{bottom:673.146667pt;}
.yc9{bottom:673.786667pt;}
.yf2{bottom:682.106667pt;}
.y6b{bottom:688.186667pt;}
.y9c{bottom:689.466667pt;}
.yc8{bottom:690.426667pt;}
.yf1{bottom:697.466667pt;}
.y6a{bottom:704.506667pt;}
.y9b{bottom:705.786667pt;}
.yc7{bottom:707.066667pt;}
.yf0{bottom:712.866667pt;}
.y9a{bottom:723.106667pt;}
.yc6{bottom:723.746667pt;}
.yef{bottom:728.866667pt;}
.y69{bottom:729.186667pt;}
.y99{bottom:739.426667pt;}
.yc5{bottom:739.746667pt;}
.y68{bottom:745.826667pt;}
.yee{bottom:753.826667pt;}
.y98{bottom:756.066667pt;}
.yc4{bottom:756.386667pt;}
.y67{bottom:762.466667pt;}
.yed{bottom:770.466667pt;}
.y66{bottom:778.786667pt;}
.y97{bottom:779.746667pt;}
.yc3{bottom:780.066667pt;}
.yec{bottom:786.786667pt;}
.y65{bottom:795.426667pt;}
.y96{bottom:796.066667pt;}
.yc2{bottom:796.386667pt;}
.y12{bottom:798.626667pt;}
.y11{bottom:803.426667pt;}
.y64{bottom:812.066667pt;}
.y95{bottom:812.386667pt;}
.yc1{bottom:812.706667pt;}
.y10{bottom:820.066667pt;}
.y63{bottom:828.706667pt;}
.yc0{bottom:829.026667pt;}
.yeb{bottom:836.733333pt;}
.yf{bottom:842.493333pt;}
.y62{bottom:845.053333pt;}
.y94{bottom:845.693333pt;}
.ybf{bottom:846.013333pt;}
.ye{bottom:853.053333pt;}
.y61{bottom:861.373333pt;}
.y93{bottom:862.333333pt;}
.ybe{bottom:869.693333pt;}
.yd{bottom:875.773333pt;}
.y60{bottom:878.013333pt;}
.yc{bottom:886.013333pt;}
.yea{bottom:886.333333pt;}
.y92{bottom:902.333333pt;}
.y5f{bottom:902.653333pt;}
.yb{bottom:904.573333pt;}
.y91{bottom:918.653333pt;}
.y5e{bottom:919.293333pt;}
.ya{bottom:927.933333pt;}
.y90{bottom:934.973333pt;}
.y5d{bottom:935.933333pt;}
.y8f{bottom:951.973333pt;}
.y5c{bottom:952.293333pt;}
.y9{bottom:952.933333pt;}
.y59{bottom:955.840000pt;}
.y8e{bottom:968.613333pt;}
.y5b{bottom:968.933333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.hc{height:3.702500pt;}
.h16{height:5.022500pt;}
.h18{height:24.640000pt;}
.h14{height:26.381250pt;}
.ha{height:33.918750pt;}
.hf{height:36.431250pt;}
.he{height:37.410000pt;}
.h10{height:47.713750pt;}
.h15{height:49.020000pt;}
.h17{height:52.736250pt;}
.h6{height:52.762500pt;}
.hb{height:54.180000pt;}
.h11{height:55.046250pt;}
.h1a{height:55.256809pt;}
.h19{height:56.502250pt;}
.h8{height:56.513750pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h9{height:59.150000pt;}
.h13{height:62.812500pt;}
.h7{height:74.820000pt;}
.h2{height:75.546667pt;}
.h4{height:103.680000pt;}
.h12{height:191.080000pt;}
.hd{height:487.813333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:6.112000pt;}
.x1d{left:7.373333pt;}
.x4{left:11.826667pt;}
.x1b{left:14.708000pt;}
.x18{left:15.668000pt;}
.x1a{left:17.588000pt;}
.x19{left:23.348000pt;}
.x20{left:25.908000pt;}
.x6{left:31.346667pt;}
.x12{left:39.028000pt;}
.x1f{left:42.260000pt;}
.x13{left:45.140000pt;}
.x11{left:48.980000pt;}
.x22{left:50.900000pt;}
.x1e{left:55.373333pt;}
.x21{left:58.902667pt;}
.x16{left:64.982667pt;}
.x1{left:69.804000pt;}
.x17{left:71.382667pt;}
.x7{left:76.832000pt;}
.x15{left:82.582667pt;}
.x2{left:84.822667pt;}
.x23{left:91.542667pt;}
.xb{left:95.712000pt;}
.x26{left:100.832000pt;}
.x14{left:110.742667pt;}
.x25{left:124.864000pt;}
.x5{left:125.813333pt;}
.xd{left:155.586667pt;}
.x3{left:162.000000pt;}
.x1c{left:194.640000pt;}
.xe{left:238.813333pt;}
.xc{left:362.400000pt;}
.xa{left:424.160000pt;}
.xf{left:492.986667pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.x10{left:717.413333pt;}
}




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