
    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_2daf01307d8a064e9b12092b.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7a837e42e857857eeebedada.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e6f0708552efe89a65852fea.woff')format("woff");}.ff3{font-family:ff3;line-height:0.854004;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_2d07b4d9092676fa7f9e4da7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.966797;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_f8d060c9c17ac678991760a6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.107422;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_91e452aacc8eed6a381aeef5.woff')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_d06fb33f0cab7b4233c3ba4a.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f9d1bfc82eefedba7b32e336.woff')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsb{letter-spacing:-0.900000px;}
.ls5{letter-spacing:-0.504000px;}
.lsa{letter-spacing:-0.269400px;}
.ls4{letter-spacing:-0.181200px;}
.ls3{letter-spacing:-0.108000px;}
.lsf{letter-spacing:-0.091200px;}
.lse{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.108000px;}
.lsc{letter-spacing:0.126000px;}
.ls8{letter-spacing:0.206400px;}
.ls1{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.223800px;}
.lsd{letter-spacing:0.252000px;}
.ls9{letter-spacing:0.269400px;}
.ls10{letter-spacing:0.360000px;}
.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:-16.819680px;}
.ws2{word-spacing:-16.613280px;}
.ws16{word-spacing:-15.372000px;}
.ws1{word-spacing:-15.228000px;}
.ws0{word-spacing:-15.120000px;}
.ws4{word-spacing:-15.012000px;}
.ws3{word-spacing:-14.904000px;}
.ws7{word-spacing:-14.508000px;}
.wsc{word-spacing:-13.680120px;}
.wsf{word-spacing:-13.634520px;}
.ws11{word-spacing:-13.505760px;}
.ws6{word-spacing:-13.410720px;}
.ws5{word-spacing:-13.229520px;}
.wsd{word-spacing:-13.141320px;}
.wse{word-spacing:-12.510720px;}
.ws8{word-spacing:-10.080000px;}
.wsb{word-spacing:-10.008000px;}
.ws15{word-spacing:-9.112320px;}
.ws9{word-spacing:0.000000px;}
.ws13{word-spacing:46.578000px;}
.ws14{word-spacing:46.974000px;}
.ws12{word-spacing:47.034000px;}
.ws10{word-spacing:50.381760px;}
._5{margin-left:-14.568000px;}
._6{margin-left:-11.814000px;}
._4{margin-left:-10.392000px;}
._8{margin-left:-8.898000px;}
._3{margin-left:-7.812000px;}
._7{margin-left:-6.036000px;}
._1{margin-left:-1.010880px;}
._2{width:1.158000px;}
._13{width:2.396640px;}
._17{width:47.520000px;}
._16{width:99.493680px;}
._14{width:152.029200px;}
._15{width:173.496000px;}
._10{width:174.936000px;}
._b{width:195.942000px;}
._f{width:246.918000px;}
._e{width:270.894000px;}
._c{width:279.912000px;}
._a{width:282.936000px;}
._12{width:288.876000px;}
._11{width:294.870000px;}
._d{width:301.134000px;}
._9{width:321.708000px;}
._0{width:1346.064000px;}
.fc1{color:transparent;}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:2.880000px;}
.fs5{font-size:36.000000px;}
.fs9{font-size:40.320000px;}
.fs6{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:54.144000px;}
.fs2{font-size:59.760000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y66{bottom:7.020000px;}
.y5a{bottom:7.740000px;}
.y28{bottom:8.460000px;}
.y40{bottom:9.360000px;}
.y52{bottom:10.620000px;}
.y8a{bottom:10.800000px;}
.y51{bottom:11.880000px;}
.y78{bottom:12.030000px;}
.y60{bottom:18.075000px;}
.y69{bottom:22.674000px;}
.y27{bottom:28.260000px;}
.y5c{bottom:29.160000px;}
.y3f{bottom:30.060000px;}
.y47{bottom:30.105000px;}
.y8d{bottom:33.885000px;}
.y68{bottom:43.374000px;}
.y64{bottom:43.380000px;}
.y76{bottom:45.075000px;}
.y26{bottom:48.060000px;}
.y5b{bottom:49.860000px;}
.y43{bottom:50.760000px;}
.y53{bottom:50.805000px;}
.y2d{bottom:59.580000px;}
.y6b{bottom:62.610000px;}
.y25{bottom:67.860000px;}
.y5e{bottom:77.430000px;}
.y2c{bottom:83.010000px;}
.y6c{bottom:85.170000px;}
.y4{bottom:95.616000px;}
.y2b{bottom:106.230000px;}
.y6d{bottom:107.715000px;}
.y3{bottom:118.836000px;}
.y2a{bottom:129.450000px;}
.y6e{bottom:130.245000px;}
.ya1{bottom:140.076000px;}
.y77{bottom:140.940000px;}
.y67{bottom:141.696000px;}
.y95{bottom:144.936000px;}
.y9a{bottom:146.376000px;}
.y6f{bottom:152.820000px;}
.ya0{bottom:163.290000px;}
.y94{bottom:165.090000px;}
.y99{bottom:166.710000px;}
.y4d{bottom:170.310000px;}
.y70{bottom:175.350000px;}
.yc2{bottom:181.650000px;}
.y9f{bottom:183.630000px;}
.ybc{bottom:184.530000px;}
.y5f{bottom:192.390000px;}
.y4c{bottom:193.710000px;}
.y65{bottom:196.410000px;}
.y71{bottom:197.895000px;}
.y23{bottom:203.430000px;}
.yc1{bottom:204.870000px;}
.ybb{bottom:207.930000px;}
.y4b{bottom:216.930000px;}
.y56{bottom:218.910000px;}
.y72{bottom:220.470000px;}
.y22{bottom:226.650000px;}
.yba{bottom:228.090000px;}
.yc0{bottom:228.270000px;}
.y4a{bottom:240.150000px;}
.y73{bottom:243.000000px;}
.ybf{bottom:248.610000px;}
.y90{bottom:249.150000px;}
.y21{bottom:251.130000px;}
.y49{bottom:253.470000px;}
.y74{bottom:265.530000px;}
.y8f{bottom:272.370000px;}
.y48{bottom:275.070000px;}
.y59{bottom:280.110000px;}
.y75{bottom:288.105000px;}
.y5d{bottom:289.620000px;}
.y8e{bottom:295.770000px;}
.y20{bottom:298.290000px;}
.y8c{bottom:309.090000px;}
.y79{bottom:312.870000px;}
.y46{bottom:317.190000px;}
.y1f{bottom:322.770000px;}
.y8b{bottom:356.475000px;}
.y45{bottom:359.355000px;}
.y1e{bottom:369.975000px;}
.yad{bottom:377.535000px;}
.y89{bottom:380.415000px;}
.y61{bottom:383.295000px;}
.y1d{bottom:393.375000px;}
.yac{bottom:400.755000px;}
.y44{bottom:401.475000px;}
.yb6{bottom:411.555000px;}
.y88{bottom:415.155000px;}
.y1c{bottom:416.595000px;}
.yab{bottom:424.155000px;}
.yb5{bottom:434.775000px;}
.y87{bottom:438.375000px;}
.y1b{bottom:439.815000px;}
.yaa{bottom:447.375000px;}
.yb4{bottom:458.175000px;}
.y86{bottom:461.775000px;}
.y1a{bottom:463.215000px;}
.y42{bottom:464.295000px;}
.ya9{bottom:470.595000px;}
.yb3{bottom:481.395000px;}
.y85{bottom:484.995000px;}
.y19{bottom:486.435000px;}
.ya8{bottom:493.995000px;}
.y58{bottom:499.215000px;}
.yb2{bottom:504.615000px;}
.y84{bottom:508.395000px;}
.y18{bottom:509.655000px;}
.ya7{bottom:518.295000px;}
.y41{bottom:527.115000px;}
.yb1{bottom:528.015000px;}
.y83{bottom:531.615000px;}
.y17{bottom:533.055000px;}
.y57{bottom:545.115000px;}
.y3e{bottom:548.535000px;}
.yb0{bottom:551.235000px;}
.y9e{bottom:554.655000px;}
.y82{bottom:554.835000px;}
.y16{bottom:556.275000px;}
.ya6{bottom:565.635000px;}
.y93{bottom:574.275000px;}
.yaf{bottom:574.455000px;}
.y98{bottom:575.715000px;}
.y9d{bottom:577.875000px;}
.y81{bottom:578.235000px;}
.y15{bottom:579.495000px;}
.ya5{bottom:588.855000px;}
.yae{bottom:594.975000px;}
.y92{bottom:597.495000px;}
.y97{bottom:598.935000px;}
.y9c{bottom:601.275000px;}
.y80{bottom:601.455000px;}
.y3d{bottom:602.535000px;}
.y14{bottom:604.005000px;}
.yb9{bottom:605.805000px;}
.y63{bottom:609.405000px;}
.ya4{bottom:612.105000px;}
.y91{bottom:617.865000px;}
.y96{bottom:619.485000px;}
.y9b{bottom:621.645000px;}
.y7f{bottom:624.705000px;}
.ybe{bottom:628.305000px;}
.yb8{bottom:629.025000px;}
.ya3{bottom:635.505000px;}
.y7e{bottom:648.105000px;}
.ybd{bottom:648.825000px;}
.yb7{bottom:649.365000px;}
.y3c{bottom:649.905000px;}
.y13{bottom:651.345000px;}
.ya2{bottom:655.845000px;}
.y62{bottom:664.125000px;}
.y7d{bottom:671.325000px;}
.y6a{bottom:672.300000px;}
.y3b{bottom:673.125000px;}
.y12{bottom:674.565000px;}
.y7c{bottom:695.805000px;}
.y3a{bottom:696.345000px;}
.y11{bottom:697.785000px;}
.y39{bottom:719.745000px;}
.y10{bottom:721.185000px;}
.y38{bottom:742.965000px;}
.yf{bottom:744.405000px;}
.y37{bottom:766.365000px;}
.ye{bottom:767.625000px;}
.y55{bottom:776.265000px;}
.y36{bottom:789.585000px;}
.yd{bottom:791.025000px;}
.y35{bottom:812.805000px;}
.yc{bottom:814.245000px;}
.y54{bottom:818.385000px;}
.y34{bottom:836.205000px;}
.yb{bottom:837.465000px;}
.y7b{bottom:859.425000px;}
.y33{bottom:860.505000px;}
.ya{bottom:860.865000px;}
.y7a{bottom:883.950000px;}
.y9{bottom:884.130000px;}
.y8{bottom:907.530000px;}
.y32{bottom:907.890000px;}
.y50{bottom:923.370000px;}
.y7{bottom:930.750000px;}
.y31{bottom:931.110000px;}
.y4f{bottom:947.490000px;}
.y6{bottom:947.850000px;}
.y30{bottom:954.330000px;}
.y4e{bottom:968.910000px;}
.y2f{bottom:977.730000px;}
.y5{bottom:996.630000px;}
.y2e{bottom:1002.210000px;}
.y24{bottom:1040.550000px;}
.y29{bottom:1059.630000px;}
.y2{bottom:1159.020000px;}
.y1{bottom:1182.240000px;}
.h1a{height:3.003750px;}
.ha{height:20.700000px;}
.hd{height:23.220000px;}
.h1f{height:23.400000px;}
.h9{height:41.400000px;}
.hc{height:41.436000px;}
.h13{height:41.535703px;}
.h20{height:46.476000px;}
.h1e{height:48.436523px;}
.h7{height:50.312812px;}
.h1c{height:53.709961px;}
.h1d{height:53.853187px;}
.h17{height:54.720000px;}
.h2{height:56.320312px;}
.h14{height:59.439023px;}
.h5{height:60.855469px;}
.h11{height:61.200000px;}
.hb{height:62.100000px;}
.he{height:62.136000px;}
.h4{height:62.327813px;}
.h15{height:73.722656px;}
.h6{height:79.200000px;}
.h3{height:87.859687px;}
.h8{height:142.056000px;}
.h1b{height:343.980000px;}
.h16{height:352.110000px;}
.h18{height:412.995000px;}
.h12{height:416.880000px;}
.h10{height:426.315000px;}
.hf{height:556.455000px;}
.h19{height:874.545000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:61.920000px;}
.w7{width:65.520000px;}
.w10{width:67.716000px;}
.w13{width:69.660000px;}
.w14{width:74.916000px;}
.w12{width:80.136000px;}
.w6{width:84.276000px;}
.w15{width:88.020000px;}
.w11{width:89.820000px;}
.wf{width:91.260000px;}
.w9{width:160.950000px;}
.w3{width:217.695000px;}
.w4{width:342.975000px;}
.wa{width:445.575000px;}
.w8{width:463.425000px;}
.we{width:553.860000px;}
.wd{width:574.020000px;}
.wc{width:596.985000px;}
.wb{width:637.170000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x7{left:10.800000px;}
.x5{left:21.276000px;}
.x11{left:27.540000px;}
.x17{left:41.760000px;}
.x16{left:48.600000px;}
.x18{left:57.705000px;}
.x10{left:66.810000px;}
.x4{left:72.540000px;}
.x1{left:127.655987px;}
.xd{left:136.116000px;}
.x3{left:141.155987px;}
.xf{left:144.000000px;}
.x1a{left:154.649987px;}
.x1b{left:181.649987px;}
.x9{left:191.010000px;}
.x19{left:217.770000px;}
.x1c{left:220.350000px;}
.x13{left:225.330000px;}
.x12{left:248.760000px;}
.xa{left:276.015000px;}
.x1d{left:288.795000px;}
.xc{left:290.055000px;}
.xb{left:342.255000px;}
.x1e{left:379.335000px;}
.x6{left:423.645000px;}
.x27{left:439.124987px;}
.x2{left:442.724987px;}
.x1f{left:460.185000px;}
.x20{left:530.565000px;}
.x14{left:563.874000px;}
.x15{left:568.374000px;}
.xe{left:584.214000px;}
.x21{left:606.390000px;}
.x26{left:667.769987px;}
.x29{left:677.129987px;}
.x2a{left:678.929987px;}
.x2b{left:681.269987px;}
.x25{left:719.429987px;}
.x24{left:722.849987px;}
.x22{left:723.929987px;}
.x23{left:725.009987px;}
.x28{left:765.539987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsb{letter-spacing:-0.800000pt;}
.ls5{letter-spacing:-0.448000pt;}
.lsa{letter-spacing:-0.239467pt;}
.ls4{letter-spacing:-0.161067pt;}
.ls3{letter-spacing:-0.096000pt;}
.lsf{letter-spacing:-0.081067pt;}
.lse{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.096000pt;}
.lsc{letter-spacing:0.112000pt;}
.ls8{letter-spacing:0.183467pt;}
.ls1{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.198933pt;}
.lsd{letter-spacing:0.224000pt;}
.ls9{letter-spacing:0.239467pt;}
.ls10{letter-spacing:0.320000pt;}
.wsa{word-spacing:-14.950827pt;}
.ws2{word-spacing:-14.767360pt;}
.ws16{word-spacing:-13.664000pt;}
.ws1{word-spacing:-13.536000pt;}
.ws0{word-spacing:-13.440000pt;}
.ws4{word-spacing:-13.344000pt;}
.ws3{word-spacing:-13.248000pt;}
.ws7{word-spacing:-12.896000pt;}
.wsc{word-spacing:-12.160107pt;}
.wsf{word-spacing:-12.119573pt;}
.ws11{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.920640pt;}
.ws5{word-spacing:-11.759573pt;}
.wsd{word-spacing:-11.681173pt;}
.wse{word-spacing:-11.120640pt;}
.ws8{word-spacing:-8.960000pt;}
.wsb{word-spacing:-8.896000pt;}
.ws15{word-spacing:-8.099840pt;}
.ws9{word-spacing:0.000000pt;}
.ws13{word-spacing:41.402667pt;}
.ws14{word-spacing:41.754667pt;}
.ws12{word-spacing:41.808000pt;}
.ws10{word-spacing:44.783787pt;}
._5{margin-left:-12.949333pt;}
._6{margin-left:-10.501333pt;}
._4{margin-left:-9.237333pt;}
._8{margin-left:-7.909333pt;}
._3{margin-left:-6.944000pt;}
._7{margin-left:-5.365333pt;}
._1{margin-left:-0.898560pt;}
._2{width:1.029333pt;}
._13{width:2.130347pt;}
._17{width:42.240000pt;}
._16{width:88.438827pt;}
._14{width:135.137067pt;}
._15{width:154.218667pt;}
._10{width:155.498667pt;}
._b{width:174.170667pt;}
._f{width:219.482667pt;}
._e{width:240.794667pt;}
._c{width:248.810667pt;}
._a{width:251.498667pt;}
._12{width:256.778667pt;}
._11{width:262.106667pt;}
._d{width:267.674667pt;}
._9{width:285.962667pt;}
._0{width:1196.501333pt;}
.fs7{font-size:2.560000pt;}
.fs5{font-size:32.000000pt;}
.fs9{font-size:35.840000pt;}
.fs6{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:48.128000pt;}
.fs2{font-size:53.120000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y66{bottom:6.240000pt;}
.y5a{bottom:6.880000pt;}
.y28{bottom:7.520000pt;}
.y40{bottom:8.320000pt;}
.y52{bottom:9.440000pt;}
.y8a{bottom:9.600000pt;}
.y51{bottom:10.560000pt;}
.y78{bottom:10.693333pt;}
.y60{bottom:16.066667pt;}
.y69{bottom:20.154667pt;}
.y27{bottom:25.120000pt;}
.y5c{bottom:25.920000pt;}
.y3f{bottom:26.720000pt;}
.y47{bottom:26.760000pt;}
.y8d{bottom:30.120000pt;}
.y68{bottom:38.554667pt;}
.y64{bottom:38.560000pt;}
.y76{bottom:40.066667pt;}
.y26{bottom:42.720000pt;}
.y5b{bottom:44.320000pt;}
.y43{bottom:45.120000pt;}
.y53{bottom:45.160000pt;}
.y2d{bottom:52.960000pt;}
.y6b{bottom:55.653333pt;}
.y25{bottom:60.320000pt;}
.y5e{bottom:68.826667pt;}
.y2c{bottom:73.786667pt;}
.y6c{bottom:75.706667pt;}
.y4{bottom:84.992000pt;}
.y2b{bottom:94.426667pt;}
.y6d{bottom:95.746667pt;}
.y3{bottom:105.632000pt;}
.y2a{bottom:115.066667pt;}
.y6e{bottom:115.773333pt;}
.ya1{bottom:124.512000pt;}
.y77{bottom:125.280000pt;}
.y67{bottom:125.952000pt;}
.y95{bottom:128.832000pt;}
.y9a{bottom:130.112000pt;}
.y6f{bottom:135.840000pt;}
.ya0{bottom:145.146667pt;}
.y94{bottom:146.746667pt;}
.y99{bottom:148.186667pt;}
.y4d{bottom:151.386667pt;}
.y70{bottom:155.866667pt;}
.yc2{bottom:161.466667pt;}
.y9f{bottom:163.226667pt;}
.ybc{bottom:164.026667pt;}
.y5f{bottom:171.013333pt;}
.y4c{bottom:172.186667pt;}
.y65{bottom:174.586667pt;}
.y71{bottom:175.906667pt;}
.y23{bottom:180.826667pt;}
.yc1{bottom:182.106667pt;}
.ybb{bottom:184.826667pt;}
.y4b{bottom:192.826667pt;}
.y56{bottom:194.586667pt;}
.y72{bottom:195.973333pt;}
.y22{bottom:201.466667pt;}
.yba{bottom:202.746667pt;}
.yc0{bottom:202.906667pt;}
.y4a{bottom:213.466667pt;}
.y73{bottom:216.000000pt;}
.ybf{bottom:220.986667pt;}
.y90{bottom:221.466667pt;}
.y21{bottom:223.226667pt;}
.y49{bottom:225.306667pt;}
.y74{bottom:236.026667pt;}
.y8f{bottom:242.106667pt;}
.y48{bottom:244.506667pt;}
.y59{bottom:248.986667pt;}
.y75{bottom:256.093333pt;}
.y5d{bottom:257.440000pt;}
.y8e{bottom:262.906667pt;}
.y20{bottom:265.146667pt;}
.y8c{bottom:274.746667pt;}
.y79{bottom:278.106667pt;}
.y46{bottom:281.946667pt;}
.y1f{bottom:286.906667pt;}
.y8b{bottom:316.866667pt;}
.y45{bottom:319.426667pt;}
.y1e{bottom:328.866667pt;}
.yad{bottom:335.586667pt;}
.y89{bottom:338.146667pt;}
.y61{bottom:340.706667pt;}
.y1d{bottom:349.666667pt;}
.yac{bottom:356.226667pt;}
.y44{bottom:356.866667pt;}
.yb6{bottom:365.826667pt;}
.y88{bottom:369.026667pt;}
.y1c{bottom:370.306667pt;}
.yab{bottom:377.026667pt;}
.yb5{bottom:386.466667pt;}
.y87{bottom:389.666667pt;}
.y1b{bottom:390.946667pt;}
.yaa{bottom:397.666667pt;}
.yb4{bottom:407.266667pt;}
.y86{bottom:410.466667pt;}
.y1a{bottom:411.746667pt;}
.y42{bottom:412.706667pt;}
.ya9{bottom:418.306667pt;}
.yb3{bottom:427.906667pt;}
.y85{bottom:431.106667pt;}
.y19{bottom:432.386667pt;}
.ya8{bottom:439.106667pt;}
.y58{bottom:443.746667pt;}
.yb2{bottom:448.546667pt;}
.y84{bottom:451.906667pt;}
.y18{bottom:453.026667pt;}
.ya7{bottom:460.706667pt;}
.y41{bottom:468.546667pt;}
.yb1{bottom:469.346667pt;}
.y83{bottom:472.546667pt;}
.y17{bottom:473.826667pt;}
.y57{bottom:484.546667pt;}
.y3e{bottom:487.586667pt;}
.yb0{bottom:489.986667pt;}
.y9e{bottom:493.026667pt;}
.y82{bottom:493.186667pt;}
.y16{bottom:494.466667pt;}
.ya6{bottom:502.786667pt;}
.y93{bottom:510.466667pt;}
.yaf{bottom:510.626667pt;}
.y98{bottom:511.746667pt;}
.y9d{bottom:513.666667pt;}
.y81{bottom:513.986667pt;}
.y15{bottom:515.106667pt;}
.ya5{bottom:523.426667pt;}
.yae{bottom:528.866667pt;}
.y92{bottom:531.106667pt;}
.y97{bottom:532.386667pt;}
.y9c{bottom:534.466667pt;}
.y80{bottom:534.626667pt;}
.y3d{bottom:535.586667pt;}
.y14{bottom:536.893333pt;}
.yb9{bottom:538.493333pt;}
.y63{bottom:541.693333pt;}
.ya4{bottom:544.093333pt;}
.y91{bottom:549.213333pt;}
.y96{bottom:550.653333pt;}
.y9b{bottom:552.573333pt;}
.y7f{bottom:555.293333pt;}
.ybe{bottom:558.493333pt;}
.yb8{bottom:559.133333pt;}
.ya3{bottom:564.893333pt;}
.y7e{bottom:576.093333pt;}
.ybd{bottom:576.733333pt;}
.yb7{bottom:577.213333pt;}
.y3c{bottom:577.693333pt;}
.y13{bottom:578.973333pt;}
.ya2{bottom:582.973333pt;}
.y62{bottom:590.333333pt;}
.y7d{bottom:596.733333pt;}
.y6a{bottom:597.600000pt;}
.y3b{bottom:598.333333pt;}
.y12{bottom:599.613333pt;}
.y7c{bottom:618.493333pt;}
.y3a{bottom:618.973333pt;}
.y11{bottom:620.253333pt;}
.y39{bottom:639.773333pt;}
.y10{bottom:641.053333pt;}
.y38{bottom:660.413333pt;}
.yf{bottom:661.693333pt;}
.y37{bottom:681.213333pt;}
.ye{bottom:682.333333pt;}
.y55{bottom:690.013333pt;}
.y36{bottom:701.853333pt;}
.yd{bottom:703.133333pt;}
.y35{bottom:722.493333pt;}
.yc{bottom:723.773333pt;}
.y54{bottom:727.453333pt;}
.y34{bottom:743.293333pt;}
.yb{bottom:744.413333pt;}
.y7b{bottom:763.933333pt;}
.y33{bottom:764.893333pt;}
.ya{bottom:765.213333pt;}
.y7a{bottom:785.733333pt;}
.y9{bottom:785.893333pt;}
.y8{bottom:806.693333pt;}
.y32{bottom:807.013333pt;}
.y50{bottom:820.773333pt;}
.y7{bottom:827.333333pt;}
.y31{bottom:827.653333pt;}
.y4f{bottom:842.213333pt;}
.y6{bottom:842.533333pt;}
.y30{bottom:848.293333pt;}
.y4e{bottom:861.253333pt;}
.y2f{bottom:869.093333pt;}
.y5{bottom:885.893333pt;}
.y2e{bottom:890.853333pt;}
.y24{bottom:924.933333pt;}
.y29{bottom:941.893333pt;}
.y2{bottom:1030.240000pt;}
.y1{bottom:1050.880000pt;}
.h1a{height:2.670000pt;}
.ha{height:18.400000pt;}
.hd{height:20.640000pt;}
.h1f{height:20.800000pt;}
.h9{height:36.800000pt;}
.hc{height:36.832000pt;}
.h13{height:36.920625pt;}
.h20{height:41.312000pt;}
.h1e{height:43.054688pt;}
.h7{height:44.722500pt;}
.h1c{height:47.742188pt;}
.h1d{height:47.869500pt;}
.h17{height:48.640000pt;}
.h2{height:50.062500pt;}
.h14{height:52.834688pt;}
.h5{height:54.093750pt;}
.h11{height:54.400000pt;}
.hb{height:55.200000pt;}
.he{height:55.232000pt;}
.h4{height:55.402500pt;}
.h15{height:65.531250pt;}
.h6{height:70.400000pt;}
.h3{height:78.097500pt;}
.h8{height:126.272000pt;}
.h1b{height:305.760000pt;}
.h16{height:312.986667pt;}
.h18{height:367.106667pt;}
.h12{height:370.560000pt;}
.h10{height:378.946667pt;}
.hf{height:494.626667pt;}
.h19{height:777.373333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:55.040000pt;}
.w7{width:58.240000pt;}
.w10{width:60.192000pt;}
.w13{width:61.920000pt;}
.w14{width:66.592000pt;}
.w12{width:71.232000pt;}
.w6{width:74.912000pt;}
.w15{width:78.240000pt;}
.w11{width:79.840000pt;}
.wf{width:81.120000pt;}
.w9{width:143.066667pt;}
.w3{width:193.506667pt;}
.w4{width:304.866667pt;}
.wa{width:396.066667pt;}
.w8{width:411.933333pt;}
.we{width:492.320000pt;}
.wd{width:510.240000pt;}
.wc{width:530.653333pt;}
.wb{width:566.373333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x7{left:9.600000pt;}
.x5{left:18.912000pt;}
.x11{left:24.480000pt;}
.x17{left:37.120000pt;}
.x16{left:43.200000pt;}
.x18{left:51.293333pt;}
.x10{left:59.386667pt;}
.x4{left:64.480000pt;}
.x1{left:113.471988pt;}
.xd{left:120.992000pt;}
.x3{left:125.471988pt;}
.xf{left:128.000000pt;}
.x1a{left:137.466655pt;}
.x1b{left:161.466655pt;}
.x9{left:169.786667pt;}
.x19{left:193.573333pt;}
.x1c{left:195.866667pt;}
.x13{left:200.293333pt;}
.x12{left:221.120000pt;}
.xa{left:245.346667pt;}
.x1d{left:256.706667pt;}
.xc{left:257.826667pt;}
.xb{left:304.226667pt;}
.x1e{left:337.186667pt;}
.x6{left:376.573333pt;}
.x27{left:390.333322pt;}
.x2{left:393.533322pt;}
.x1f{left:409.053333pt;}
.x20{left:471.613333pt;}
.x14{left:501.221333pt;}
.x15{left:505.221333pt;}
.xe{left:519.301333pt;}
.x21{left:539.013333pt;}
.x26{left:593.573322pt;}
.x29{left:601.893322pt;}
.x2a{left:603.493322pt;}
.x2b{left:605.573322pt;}
.x25{left:639.493322pt;}
.x24{left:642.533322pt;}
.x22{left:643.493322pt;}
.x23{left:644.453322pt;}
.x28{left:680.479988pt;}
}




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