
    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_2d620064d0e737d22d683d2e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_899f0ac9f547d5c5612a6f44.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3794b1b01e5754fab20a10e2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_fbe6953afbbb4cbd73710bb9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cf62356181f558912050fb0b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.981934;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_704f7a8b7a2882baaaebb330.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.981934;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_e97ee511aee3367f64534fac.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_964415a9f18830385491d888.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.306000px;}
.ls8{letter-spacing:-0.132600px;}
.ls9{letter-spacing:-0.115200px;}
.ls6{letter-spacing:-0.018000px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.036000px;}
.lsd{letter-spacing:0.054000px;}
.lse{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.149760px;}
.ls0{letter-spacing:0.185760px;}
.ls7{letter-spacing:0.270000px;}
.lsf{letter-spacing:0.342000px;}
.ls3{letter-spacing:0.468000px;}
.lsb{letter-spacing:0.756000px;}
.ls10{letter-spacing:360.876000px;}
.ls4{letter-spacing:388.236000px;}
.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;}
}
.ws0{word-spacing:-27.174240px;}
.ws4{word-spacing:-19.038240px;}
.ws5{word-spacing:-14.970240px;}
.ws6{word-spacing:-14.855040px;}
.ws9{word-spacing:-12.276000px;}
.ws7{word-spacing:-12.222000px;}
.ws2{word-spacing:-12.204000px;}
.ws3{word-spacing:-12.186000px;}
.ws8{word-spacing:-11.898000px;}
.ws1{word-spacing:0.000000px;}
._4{margin-left:-1.322640px;}
._6{width:1.160640px;}
._0{width:91.918080px;}
._3{width:443.156160px;}
._2{width:518.009760px;}
._1{width:640.614720px;}
._7{width:848.028000px;}
._5{width:849.329760px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y32{bottom:3.600000px;}
.y43{bottom:3.630000px;}
.y7c{bottom:4.680000px;}
.y79{bottom:4.860000px;}
.y9f{bottom:6.300000px;}
.yff{bottom:6.660000px;}
.y4{bottom:7.020000px;}
.ye6{bottom:9.540000px;}
.yf5{bottom:10.800000px;}
.yfb{bottom:12.960000px;}
.y5{bottom:18.900000px;}
.y34{bottom:19.980000px;}
.y42{bottom:20.010000px;}
.y3b{bottom:20.025000px;}
.y36{bottom:20.160000px;}
.y7b{bottom:22.500000px;}
.y96{bottom:22.530000px;}
.y78{bottom:22.680000px;}
.y8a{bottom:22.710000px;}
.yd0{bottom:22.725000px;}
.yfe{bottom:23.220000px;}
.y3{bottom:34.380000px;}
.y39{bottom:36.540000px;}
.y75{bottom:36.570000px;}
.yf7{bottom:36.585000px;}
.y66{bottom:36.720000px;}
.y20{bottom:37.980000px;}
.y83{bottom:40.320000px;}
.y95{bottom:40.350000px;}
.y80{bottom:40.500000px;}
.y89{bottom:40.530000px;}
.y47{bottom:52.920000px;}
.y74{bottom:52.950000px;}
.y6d{bottom:52.965000px;}
.y38{bottom:53.100000px;}
.ybd{bottom:53.130000px;}
.y7f{bottom:58.140000px;}
.y7e{bottom:58.320000px;}
.ye0{bottom:69.480000px;}
.y1f{bottom:78.480000px;}
.y99{bottom:110.520000px;}
.y1e{bottom:112.140000px;}
.y103{bottom:141.840000px;}
.y98{bottom:144.180000px;}
.y1d{bottom:145.980000px;}
.y52{bottom:152.460000px;}
.y116{bottom:155.880000px;}
.y97{bottom:160.560000px;}
.ye4{bottom:161.100000px;}
.y102{bottom:176.940000px;}
.ye3{bottom:177.480000px;}
.y1c{bottom:179.640000px;}
.y51{bottom:186.300000px;}
.y115{bottom:191.520000px;}
.yca{bottom:192.960000px;}
.y101{bottom:193.320000px;}
.y50{bottom:202.680000px;}
.y114{bottom:209.520000px;}
.y100{bottom:210.600000px;}
.yb9{bottom:211.140000px;}
.ye2{bottom:211.320000px;}
.y1b{bottom:213.300000px;}
.y94{bottom:214.740000px;}
.y6b{bottom:221.220000px;}
.yc9{bottom:228.600000px;}
.y4f{bottom:236.370000px;}
.y113{bottom:243.210000px;}
.yfd{bottom:244.290000px;}
.yc8{bottom:246.630000px;}
.yb8{bottom:246.810000px;}
.y1a{bottom:247.170000px;}
.y6a{bottom:254.910000px;}
.yb7{bottom:264.630000px;}
.y93{bottom:268.770000px;}
.y4e{bottom:270.210000px;}
.y69{bottom:271.470000px;}
.ye1{bottom:277.950000px;}
.y19{bottom:280.830000px;}
.yfc{bottom:281.010000px;}
.y112{bottom:293.430000px;}
.yb6{bottom:298.470000px;}
.yc7{bottom:300.630000px;}
.y4d{bottom:303.870000px;}
.y68{bottom:305.130000px;}
.ydf{bottom:311.610000px;}
.y18{bottom:314.670000px;}
.y111{bottom:327.090000px;}
.yfa{bottom:331.230000px;}
.yb5{bottom:332.130000px;}
.y67{bottom:338.790000px;}
.y17{bottom:348.330000px;}
.yc6{bottom:354.810000px;}
.yf9{bottom:357.870000px;}
.yb4{bottom:365.790000px;}
.y4c{bottom:370.470000px;}
.y65{bottom:372.450000px;}
.y92{bottom:377.130000px;}
.y16{bottom:382.170000px;}
.yc5{bottom:391.170000px;}
.y110{bottom:393.690000px;}
.yde{bottom:394.770000px;}
.y4b{bottom:404.310000px;}
.y2f{bottom:406.290000px;}
.yf8{bottom:408.090000px;}
.y91{bottom:413.310000px;}
.y15{bottom:415.830000px;}
.y10f{bottom:427.530000px;}
.ydd{bottom:428.430000px;}
.yb3{bottom:432.570000px;}
.y64{bottom:439.230000px;}
.y4a{bottom:439.410000px;}
.y2e{bottom:441.390000px;}
.yf6{bottom:441.750000px;}
.y14{bottom:449.490000px;}
.y10e{bottom:450.750000px;}
.y90{bottom:451.110000px;}
.yc4{bottom:463.035000px;}
.ydc{bottom:463.755000px;}
.yb2{bottom:466.275000px;}
.y63{bottom:472.935000px;}
.y49{bottom:474.735000px;}
.y2d{bottom:475.275000px;}
.y13{bottom:483.375000px;}
.y10d{bottom:484.455000px;}
.y8f{bottom:486.615000px;}
.y48{bottom:491.115000px;}
.yf4{bottom:492.015000px;}
.yc3{bottom:499.395000px;}
.ydb{bottom:499.575000px;}
.ya5{bottom:501.015000px;}
.yb1{bottom:501.375000px;}
.y8e{bottom:502.995000px;}
.y62{bottom:508.215000px;}
.y2c{bottom:508.935000px;}
.yf3{bottom:516.315000px;}
.y12{bottom:517.035000px;}
.yda{bottom:517.395000px;}
.y46{bottom:524.955000px;}
.y10c{bottom:534.675000px;}
.ya4{bottom:536.655000px;}
.yc2{bottom:537.195000px;}
.yb0{bottom:537.375000px;}
.y8d{bottom:539.175000px;}
.y2b{bottom:542.775000px;}
.y61{bottom:543.495000px;}
.y11{bottom:550.875000px;}
.yd9{bottom:553.755000px;}
.ya3{bottom:554.475000px;}
.yaf{bottom:555.195000px;}
.y60{bottom:559.875000px;}
.yf2{bottom:566.535000px;}
.y10b{bottom:568.335000px;}
.yc1{bottom:573.015000px;}
.y8c{bottom:575.535000px;}
.y2a{bottom:576.435000px;}
.ya2{bottom:588.135000px;}
.yae{bottom:588.855000px;}
.y10{bottom:589.395000px;}
.yd8{bottom:590.115000px;}
.yc0{bottom:590.835000px;}
.y45{bottom:591.555000px;}
.y5f{bottom:593.535000px;}
.yf1{bottom:600.375000px;}
.y29{bottom:610.275000px;}
.y8b{bottom:611.895000px;}
.ya1{bottom:621.975000px;}
.yad{bottom:622.515000px;}
.ybf{bottom:624.495000px;}
.y44{bottom:625.215000px;}
.yd7{bottom:626.475000px;}
.y76{bottom:627.375000px;}
.y28{bottom:631.875000px;}
.y10a{bottom:634.935000px;}
.yf{bottom:640.875000px;}
.yf0{bottom:650.415000px;}
.yac{bottom:656.355000px;}
.ybe{bottom:658.335000px;}
.y5e{bottom:660.315000px;}
.y73{bottom:661.035000px;}
.y11d{bottom:661.395000px;}
.y27{bottom:665.715000px;}
.y109{bottom:668.775000px;}
.ya0{bottom:672.195000px;}
.y88{bottom:683.715000px;}
.yef{bottom:684.255000px;}
.y26{bottom:687.495000px;}
.y41{bottom:691.995000px;}
.ye{bottom:692.355000px;}
.y5d{bottom:694.005000px;}
.y11c{bottom:695.085000px;}
.yd6{bottom:698.325000px;}
.y11b{bottom:711.465000px;}
.y9e{bottom:722.265000px;}
.y25{bottom:722.805000px;}
.yab{bottom:722.985000px;}
.y40{bottom:725.685000px;}
.y108{bottom:727.305000px;}
.y72{bottom:727.665000px;}
.yee{bottom:734.325000px;}
.y87{bottom:737.925000px;}
.yd{bottom:744.045000px;}
.y11a{bottom:745.125000px;}
.yd5{bottom:752.505000px;}
.yaa{bottom:756.645000px;}
.y9d{bottom:758.625000px;}
.y5c{bottom:760.605000px;}
.y3f{bottom:760.965000px;}
.y71{bottom:761.325000px;}
.y24{bottom:762.405000px;}
.y107{bottom:763.125000px;}
.yed{bottom:768.165000px;}
.y86{bottom:775.725000px;}
.y119{bottom:778.965000px;}
.y106{bottom:780.945000px;}
.yd4{bottom:790.305000px;}
.ya9{bottom:791.925000px;}
.ybc{bottom:792.465000px;}
.y9c{bottom:793.905000px;}
.y5b{bottom:794.445000px;}
.yc{bottom:795.525000px;}
.y23{bottom:796.065000px;}
.y3e{bottom:796.245000px;}
.y70{bottom:796.605000px;}
.y85{bottom:811.005000px;}
.y3d{bottom:812.625000px;}
.y105{bottom:814.605000px;}
.yec{bottom:818.385000px;}
.yd3{bottom:826.125000px;}
.y84{bottom:827.385000px;}
.ybb{bottom:827.565000px;}
.ya8{bottom:827.745000px;}
.y5a{bottom:829.545000px;}
.y9b{bottom:829.725000px;}
.y6f{bottom:831.885000px;}
.yd2{bottom:843.945000px;}
.ya7{bottom:845.565000px;}
.y3c{bottom:846.285000px;}
.yb{bottom:847.005000px;}
.y6e{bottom:848.265000px;}
.yeb{bottom:852.045000px;}
.y118{bottom:862.845000px;}
.yba{bottom:863.385000px;}
.y59{bottom:864.825000px;}
.ya6{bottom:879.225000px;}
.yd1{bottom:880.305000px;}
.y58{bottom:881.205000px;}
.y82{bottom:881.565000px;}
.y6c{bottom:882.105000px;}
.ya{bottom:898.485000px;}
.yea{bottom:902.265000px;}
.y3a{bottom:913.065000px;}
.y57{bottom:915.045000px;}
.ycf{bottom:916.485000px;}
.y104{bottom:932.190000px;}
.y81{bottom:935.790000px;}
.ye9{bottom:935.970000px;}
.y37{bottom:946.770000px;}
.y56{bottom:948.750000px;}
.y9{bottom:950.190000px;}
.yce{bottom:952.890000px;}
.y117{bottom:963.150000px;}
.y7d{bottom:971.970000px;}
.y55{bottom:982.410000px;}
.ye8{bottom:986.190000px;}
.y8{bottom:1001.670000px;}
.ye7{bottom:1009.410000px;}
.y35{bottom:1013.370000px;}
.ycd{bottom:1024.890000px;}
.y9a{bottom:1032.630000px;}
.y7a{bottom:1043.970000px;}
.y33{bottom:1047.210000px;}
.y54{bottom:1049.190000px;}
.y7{bottom:1053.150000px;}
.ye5{bottom:1059.630000px;}
.y22{bottom:1075.650000px;}
.ycc{bottom:1078.890000px;}
.y77{bottom:1080.150000px;}
.y31{bottom:1082.310000px;}
.y53{bottom:1082.850000px;}
.y6{bottom:1104.630000px;}
.y21{bottom:1115.250000px;}
.ycb{bottom:1116.690000px;}
.y30{bottom:1118.130000px;}
.y2{bottom:1137.750000px;}
.y1{bottom:1153.410000px;}
.hf{height:16.380000px;}
.ha{height:16.560000px;}
.h19{height:16.596000px;}
.h1f{height:17.820000px;}
.h3{height:22.500000px;}
.h23{height:23.580000px;}
.h25{height:25.920000px;}
.hc{height:32.940000px;}
.he{height:32.976000px;}
.h11{height:33.120000px;}
.h14{height:35.460000px;}
.h13{height:35.640000px;}
.h20{height:35.676000px;}
.h26{height:36.000000px;}
.h1b{height:41.238281px;}
.h1d{height:49.320000px;}
.h1c{height:49.356000px;}
.h1a{height:49.500000px;}
.h24{height:49.536000px;}
.h8{height:53.237812px;}
.h1e{height:53.280000px;}
.h16{height:53.316000px;}
.h17{height:53.460000px;}
.h18{height:53.496000px;}
.h6{height:53.709961px;}
.hb{height:55.291992px;}
.h9{height:57.867188px;}
.hd{height:65.880000px;}
.h2{height:65.884219px;}
.h12{height:65.916000px;}
.h10{height:66.060000px;}
.h15{height:71.100000px;}
.h21{height:71.136000px;}
.h22{height:82.440000px;}
.h7{height:86.255508px;}
.h4{height:119.594180px;}
.h5{height:123.116836px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:27.540000px;}
.w19{width:27.720000px;}
.w6{width:28.440000px;}
.w12{width:42.156000px;}
.w15{width:72.396000px;}
.wf{width:79.776000px;}
.w17{width:87.696000px;}
.w1c{width:101.556000px;}
.w14{width:109.440000px;}
.w8{width:116.136000px;}
.w9{width:116.316000px;}
.w11{width:128.376000px;}
.wd{width:133.416000px;}
.w1b{width:133.956000px;}
.w1d{width:135.396000px;}
.we{width:137.916000px;}
.w1a{width:139.896000px;}
.wb{width:158.790000px;}
.w7{width:160.950000px;}
.w13{width:176.970000px;}
.wa{width:190.650000px;}
.w10{width:264.450000px;}
.w4{width:269.310000px;}
.w3{width:269.355000px;}
.w16{width:282.810000px;}
.w5{width:775.260000px;}
.w1e{width:778.140000px;}
.w18{width:806.580000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.740000px;}
.x2{left:42.479987px;}
.x13{left:60.840000px;}
.x14{left:71.460000px;}
.xe{left:72.540000px;}
.x19{left:86.076000px;}
.x9{left:126.215987px;}
.x4{left:134.670000px;}
.x15{left:205.590000px;}
.x1d{left:212.250000px;}
.xf{left:234.390000px;}
.xb{left:236.009987px;}
.x1{left:251.174987px;}
.x1a{left:263.775000px;}
.x6{left:269.850000px;}
.xa{left:307.334987px;}
.x3{left:311.835000px;}
.x16{left:344.415000px;}
.x1e{left:346.935000px;}
.x10{left:351.255000px;}
.x1b{left:374.115000px;}
.x8{left:378.434987px;}
.x17{left:424.905000px;}
.x7{left:446.504987px;}
.x1f{left:449.205000px;}
.x11{left:468.285000px;}
.x5{left:581.190000px;}
.x12{left:659.670000px;}
.x18{left:690.090000px;}
.x20{left:714.390000px;}
.x1c{left:730.770000px;}
.xc{left:844.739987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.272000pt;}
.ls8{letter-spacing:-0.117867pt;}
.ls9{letter-spacing:-0.102400pt;}
.ls6{letter-spacing:-0.016000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.032000pt;}
.lsd{letter-spacing:0.048000pt;}
.lse{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.133120pt;}
.ls0{letter-spacing:0.165120pt;}
.ls7{letter-spacing:0.240000pt;}
.lsf{letter-spacing:0.304000pt;}
.ls3{letter-spacing:0.416000pt;}
.lsb{letter-spacing:0.672000pt;}
.ls10{letter-spacing:320.778667pt;}
.ls4{letter-spacing:345.098667pt;}
.ws0{word-spacing:-24.154880pt;}
.ws4{word-spacing:-16.922880pt;}
.ws5{word-spacing:-13.306880pt;}
.ws6{word-spacing:-13.204480pt;}
.ws9{word-spacing:-10.912000pt;}
.ws7{word-spacing:-10.864000pt;}
.ws2{word-spacing:-10.848000pt;}
.ws3{word-spacing:-10.832000pt;}
.ws8{word-spacing:-10.576000pt;}
.ws1{word-spacing:0.000000pt;}
._4{margin-left:-1.175680pt;}
._6{width:1.031680pt;}
._0{width:81.704960pt;}
._3{width:393.916587pt;}
._2{width:460.453120pt;}
._1{width:569.435307pt;}
._7{width:753.802667pt;}
._5{width:754.959787pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:3.200000pt;}
.y43{bottom:3.226667pt;}
.y7c{bottom:4.160000pt;}
.y79{bottom:4.320000pt;}
.y9f{bottom:5.600000pt;}
.yff{bottom:5.920000pt;}
.y4{bottom:6.240000pt;}
.ye6{bottom:8.480000pt;}
.yf5{bottom:9.600000pt;}
.yfb{bottom:11.520000pt;}
.y5{bottom:16.800000pt;}
.y34{bottom:17.760000pt;}
.y42{bottom:17.786667pt;}
.y3b{bottom:17.800000pt;}
.y36{bottom:17.920000pt;}
.y7b{bottom:20.000000pt;}
.y96{bottom:20.026667pt;}
.y78{bottom:20.160000pt;}
.y8a{bottom:20.186667pt;}
.yd0{bottom:20.200000pt;}
.yfe{bottom:20.640000pt;}
.y3{bottom:30.560000pt;}
.y39{bottom:32.480000pt;}
.y75{bottom:32.506667pt;}
.yf7{bottom:32.520000pt;}
.y66{bottom:32.640000pt;}
.y20{bottom:33.760000pt;}
.y83{bottom:35.840000pt;}
.y95{bottom:35.866667pt;}
.y80{bottom:36.000000pt;}
.y89{bottom:36.026667pt;}
.y47{bottom:47.040000pt;}
.y74{bottom:47.066667pt;}
.y6d{bottom:47.080000pt;}
.y38{bottom:47.200000pt;}
.ybd{bottom:47.226667pt;}
.y7f{bottom:51.680000pt;}
.y7e{bottom:51.840000pt;}
.ye0{bottom:61.760000pt;}
.y1f{bottom:69.760000pt;}
.y99{bottom:98.240000pt;}
.y1e{bottom:99.680000pt;}
.y103{bottom:126.080000pt;}
.y98{bottom:128.160000pt;}
.y1d{bottom:129.760000pt;}
.y52{bottom:135.520000pt;}
.y116{bottom:138.560000pt;}
.y97{bottom:142.720000pt;}
.ye4{bottom:143.200000pt;}
.y102{bottom:157.280000pt;}
.ye3{bottom:157.760000pt;}
.y1c{bottom:159.680000pt;}
.y51{bottom:165.600000pt;}
.y115{bottom:170.240000pt;}
.yca{bottom:171.520000pt;}
.y101{bottom:171.840000pt;}
.y50{bottom:180.160000pt;}
.y114{bottom:186.240000pt;}
.y100{bottom:187.200000pt;}
.yb9{bottom:187.680000pt;}
.ye2{bottom:187.840000pt;}
.y1b{bottom:189.600000pt;}
.y94{bottom:190.880000pt;}
.y6b{bottom:196.640000pt;}
.yc9{bottom:203.200000pt;}
.y4f{bottom:210.106667pt;}
.y113{bottom:216.186667pt;}
.yfd{bottom:217.146667pt;}
.yc8{bottom:219.226667pt;}
.yb8{bottom:219.386667pt;}
.y1a{bottom:219.706667pt;}
.y6a{bottom:226.586667pt;}
.yb7{bottom:235.226667pt;}
.y93{bottom:238.906667pt;}
.y4e{bottom:240.186667pt;}
.y69{bottom:241.306667pt;}
.ye1{bottom:247.066667pt;}
.y19{bottom:249.626667pt;}
.yfc{bottom:249.786667pt;}
.y112{bottom:260.826667pt;}
.yb6{bottom:265.306667pt;}
.yc7{bottom:267.226667pt;}
.y4d{bottom:270.106667pt;}
.y68{bottom:271.226667pt;}
.ydf{bottom:276.986667pt;}
.y18{bottom:279.706667pt;}
.y111{bottom:290.746667pt;}
.yfa{bottom:294.426667pt;}
.yb5{bottom:295.226667pt;}
.y67{bottom:301.146667pt;}
.y17{bottom:309.626667pt;}
.yc6{bottom:315.386667pt;}
.yf9{bottom:318.106667pt;}
.yb4{bottom:325.146667pt;}
.y4c{bottom:329.306667pt;}
.y65{bottom:331.066667pt;}
.y92{bottom:335.226667pt;}
.y16{bottom:339.706667pt;}
.yc5{bottom:347.706667pt;}
.y110{bottom:349.946667pt;}
.yde{bottom:350.906667pt;}
.y4b{bottom:359.386667pt;}
.y2f{bottom:361.146667pt;}
.yf8{bottom:362.746667pt;}
.y91{bottom:367.386667pt;}
.y15{bottom:369.626667pt;}
.y10f{bottom:380.026667pt;}
.ydd{bottom:380.826667pt;}
.yb3{bottom:384.506667pt;}
.y64{bottom:390.426667pt;}
.y4a{bottom:390.586667pt;}
.y2e{bottom:392.346667pt;}
.yf6{bottom:392.666667pt;}
.y14{bottom:399.546667pt;}
.y10e{bottom:400.666667pt;}
.y90{bottom:400.986667pt;}
.yc4{bottom:411.586667pt;}
.ydc{bottom:412.226667pt;}
.yb2{bottom:414.466667pt;}
.y63{bottom:420.386667pt;}
.y49{bottom:421.986667pt;}
.y2d{bottom:422.466667pt;}
.y13{bottom:429.666667pt;}
.y10d{bottom:430.626667pt;}
.y8f{bottom:432.546667pt;}
.y48{bottom:436.546667pt;}
.yf4{bottom:437.346667pt;}
.yc3{bottom:443.906667pt;}
.ydb{bottom:444.066667pt;}
.ya5{bottom:445.346667pt;}
.yb1{bottom:445.666667pt;}
.y8e{bottom:447.106667pt;}
.y62{bottom:451.746667pt;}
.y2c{bottom:452.386667pt;}
.yf3{bottom:458.946667pt;}
.y12{bottom:459.586667pt;}
.yda{bottom:459.906667pt;}
.y46{bottom:466.626667pt;}
.y10c{bottom:475.266667pt;}
.ya4{bottom:477.026667pt;}
.yc2{bottom:477.506667pt;}
.yb0{bottom:477.666667pt;}
.y8d{bottom:479.266667pt;}
.y2b{bottom:482.466667pt;}
.y61{bottom:483.106667pt;}
.y11{bottom:489.666667pt;}
.yd9{bottom:492.226667pt;}
.ya3{bottom:492.866667pt;}
.yaf{bottom:493.506667pt;}
.y60{bottom:497.666667pt;}
.yf2{bottom:503.586667pt;}
.y10b{bottom:505.186667pt;}
.yc1{bottom:509.346667pt;}
.y8c{bottom:511.586667pt;}
.y2a{bottom:512.386667pt;}
.ya2{bottom:522.786667pt;}
.yae{bottom:523.426667pt;}
.y10{bottom:523.906667pt;}
.yd8{bottom:524.546667pt;}
.yc0{bottom:525.186667pt;}
.y45{bottom:525.826667pt;}
.y5f{bottom:527.586667pt;}
.yf1{bottom:533.666667pt;}
.y29{bottom:542.466667pt;}
.y8b{bottom:543.906667pt;}
.ya1{bottom:552.866667pt;}
.yad{bottom:553.346667pt;}
.ybf{bottom:555.106667pt;}
.y44{bottom:555.746667pt;}
.yd7{bottom:556.866667pt;}
.y76{bottom:557.666667pt;}
.y28{bottom:561.666667pt;}
.y10a{bottom:564.386667pt;}
.yf{bottom:569.666667pt;}
.yf0{bottom:578.146667pt;}
.yac{bottom:583.426667pt;}
.ybe{bottom:585.186667pt;}
.y5e{bottom:586.946667pt;}
.y73{bottom:587.586667pt;}
.y11d{bottom:587.906667pt;}
.y27{bottom:591.746667pt;}
.y109{bottom:594.466667pt;}
.ya0{bottom:597.506667pt;}
.y88{bottom:607.746667pt;}
.yef{bottom:608.226667pt;}
.y26{bottom:611.106667pt;}
.y41{bottom:615.106667pt;}
.ye{bottom:615.426667pt;}
.y5d{bottom:616.893333pt;}
.y11c{bottom:617.853333pt;}
.yd6{bottom:620.733333pt;}
.y11b{bottom:632.413333pt;}
.y9e{bottom:642.013333pt;}
.y25{bottom:642.493333pt;}
.yab{bottom:642.653333pt;}
.y40{bottom:645.053333pt;}
.y108{bottom:646.493333pt;}
.y72{bottom:646.813333pt;}
.yee{bottom:652.733333pt;}
.y87{bottom:655.933333pt;}
.yd{bottom:661.373333pt;}
.y11a{bottom:662.333333pt;}
.yd5{bottom:668.893333pt;}
.yaa{bottom:672.573333pt;}
.y9d{bottom:674.333333pt;}
.y5c{bottom:676.093333pt;}
.y3f{bottom:676.413333pt;}
.y71{bottom:676.733333pt;}
.y24{bottom:677.693333pt;}
.y107{bottom:678.333333pt;}
.yed{bottom:682.813333pt;}
.y86{bottom:689.533333pt;}
.y119{bottom:692.413333pt;}
.y106{bottom:694.173333pt;}
.yd4{bottom:702.493333pt;}
.ya9{bottom:703.933333pt;}
.ybc{bottom:704.413333pt;}
.y9c{bottom:705.693333pt;}
.y5b{bottom:706.173333pt;}
.yc{bottom:707.133333pt;}
.y23{bottom:707.613333pt;}
.y3e{bottom:707.773333pt;}
.y70{bottom:708.093333pt;}
.y85{bottom:720.893333pt;}
.y3d{bottom:722.333333pt;}
.y105{bottom:724.093333pt;}
.yec{bottom:727.453333pt;}
.yd3{bottom:734.333333pt;}
.y84{bottom:735.453333pt;}
.ybb{bottom:735.613333pt;}
.ya8{bottom:735.773333pt;}
.y5a{bottom:737.373333pt;}
.y9b{bottom:737.533333pt;}
.y6f{bottom:739.453333pt;}
.yd2{bottom:750.173333pt;}
.ya7{bottom:751.613333pt;}
.y3c{bottom:752.253333pt;}
.yb{bottom:752.893333pt;}
.y6e{bottom:754.013333pt;}
.yeb{bottom:757.373333pt;}
.y118{bottom:766.973333pt;}
.yba{bottom:767.453333pt;}
.y59{bottom:768.733333pt;}
.ya6{bottom:781.533333pt;}
.yd1{bottom:782.493333pt;}
.y58{bottom:783.293333pt;}
.y82{bottom:783.613333pt;}
.y6c{bottom:784.093333pt;}
.ya{bottom:798.653333pt;}
.yea{bottom:802.013333pt;}
.y3a{bottom:811.613333pt;}
.y57{bottom:813.373333pt;}
.ycf{bottom:814.653333pt;}
.y104{bottom:828.613333pt;}
.y81{bottom:831.813333pt;}
.ye9{bottom:831.973333pt;}
.y37{bottom:841.573333pt;}
.y56{bottom:843.333333pt;}
.y9{bottom:844.613333pt;}
.yce{bottom:847.013333pt;}
.y117{bottom:856.133333pt;}
.y7d{bottom:863.973333pt;}
.y55{bottom:873.253333pt;}
.ye8{bottom:876.613333pt;}
.y8{bottom:890.373333pt;}
.ye7{bottom:897.253333pt;}
.y35{bottom:900.773333pt;}
.ycd{bottom:911.013333pt;}
.y9a{bottom:917.893333pt;}
.y7a{bottom:927.973333pt;}
.y33{bottom:930.853333pt;}
.y54{bottom:932.613333pt;}
.y7{bottom:936.133333pt;}
.ye5{bottom:941.893333pt;}
.y22{bottom:956.133333pt;}
.ycc{bottom:959.013333pt;}
.y77{bottom:960.133333pt;}
.y31{bottom:962.053333pt;}
.y53{bottom:962.533333pt;}
.y6{bottom:981.893333pt;}
.y21{bottom:991.333333pt;}
.ycb{bottom:992.613333pt;}
.y30{bottom:993.893333pt;}
.y2{bottom:1011.333333pt;}
.y1{bottom:1025.253333pt;}
.hf{height:14.560000pt;}
.ha{height:14.720000pt;}
.h19{height:14.752000pt;}
.h1f{height:15.840000pt;}
.h3{height:20.000000pt;}
.h23{height:20.960000pt;}
.h25{height:23.040000pt;}
.hc{height:29.280000pt;}
.he{height:29.312000pt;}
.h11{height:29.440000pt;}
.h14{height:31.520000pt;}
.h13{height:31.680000pt;}
.h20{height:31.712000pt;}
.h26{height:32.000000pt;}
.h1b{height:36.656250pt;}
.h1d{height:43.840000pt;}
.h1c{height:43.872000pt;}
.h1a{height:44.000000pt;}
.h24{height:44.032000pt;}
.h8{height:47.322500pt;}
.h1e{height:47.360000pt;}
.h16{height:47.392000pt;}
.h17{height:47.520000pt;}
.h18{height:47.552000pt;}
.h6{height:47.742188pt;}
.hb{height:49.148438pt;}
.h9{height:51.437500pt;}
.hd{height:58.560000pt;}
.h2{height:58.563750pt;}
.h12{height:58.592000pt;}
.h10{height:58.720000pt;}
.h15{height:63.200000pt;}
.h21{height:63.232000pt;}
.h22{height:73.280000pt;}
.h7{height:76.671562pt;}
.h4{height:106.305937pt;}
.h5{height:109.437187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:24.480000pt;}
.w19{width:24.640000pt;}
.w6{width:25.280000pt;}
.w12{width:37.472000pt;}
.w15{width:64.352000pt;}
.wf{width:70.912000pt;}
.w17{width:77.952000pt;}
.w1c{width:90.272000pt;}
.w14{width:97.280000pt;}
.w8{width:103.232000pt;}
.w9{width:103.392000pt;}
.w11{width:114.112000pt;}
.wd{width:118.592000pt;}
.w1b{width:119.072000pt;}
.w1d{width:120.352000pt;}
.we{width:122.592000pt;}
.w1a{width:124.352000pt;}
.wb{width:141.146667pt;}
.w7{width:143.066667pt;}
.w13{width:157.306667pt;}
.wa{width:169.466667pt;}
.w10{width:235.066667pt;}
.w4{width:239.386667pt;}
.w3{width:239.426667pt;}
.w16{width:251.386667pt;}
.w5{width:689.120000pt;}
.w1e{width:691.680000pt;}
.w18{width:716.960000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.880000pt;}
.x2{left:37.759988pt;}
.x13{left:54.080000pt;}
.x14{left:63.520000pt;}
.xe{left:64.480000pt;}
.x19{left:76.512000pt;}
.x9{left:112.191988pt;}
.x4{left:119.706667pt;}
.x15{left:182.746667pt;}
.x1d{left:188.666667pt;}
.xf{left:208.346667pt;}
.xb{left:209.786655pt;}
.x1{left:223.266655pt;}
.x1a{left:234.466667pt;}
.x6{left:239.866667pt;}
.xa{left:273.186655pt;}
.x3{left:277.186667pt;}
.x16{left:306.146667pt;}
.x1e{left:308.386667pt;}
.x10{left:312.226667pt;}
.x1b{left:332.546667pt;}
.x8{left:336.386655pt;}
.x17{left:377.693333pt;}
.x7{left:396.893322pt;}
.x1f{left:399.293333pt;}
.x11{left:416.253333pt;}
.x5{left:516.613333pt;}
.x12{left:586.373333pt;}
.x18{left:613.413333pt;}
.x20{left:635.013333pt;}
.x1c{left:649.573333pt;}
.xc{left:750.879988pt;}
}




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