
    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_3da439eea5ddbd755b90bdb9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4f6bab28c86764e839cc0962.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_cae1161c00a40b96fe8df294.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a462c1d03dbd7e333ee705e8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.745117;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_c94146423daaab9f32377b8a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_f05bbce153fbf1579371a26d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.745117;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_7854dea424e9acd34dc6b0bc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084961;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_754970f8fdb3b47828a40fdb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.750977;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsc{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.504000px;}
.ls12{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.259800px;}
.ls6{letter-spacing:0.576000px;}
.ls9{letter-spacing:0.792000px;}
.ls11{letter-spacing:3.600000px;}
.ls1{letter-spacing:5.184000px;}
.lsf{letter-spacing:9.360000px;}
.ls10{letter-spacing:10.800000px;}
.lsa{letter-spacing:11.664000px;}
.lse{letter-spacing:28.080000px;}
.lsb{letter-spacing:34.560000px;}
.ls8{letter-spacing:195.960000px;}
.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;}
}
.ws3{word-spacing:-20.016000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.712000px;}
.ws2{word-spacing:-15.199800px;}
.ws1{word-spacing:0.000000px;}
._6{margin-left:-6.072000px;}
._17{margin-left:-4.680000px;}
._f{margin-left:-3.600000px;}
._16{margin-left:-2.520960px;}
._0{margin-left:-1.457280px;}
._1{width:1.602240px;}
._11{width:2.680320px;}
._7{width:4.104000px;}
._8{width:5.256000px;}
._15{width:6.744000px;}
._14{width:7.776000px;}
._e{width:9.372000px;}
._b{width:11.016000px;}
._18{width:12.131520px;}
._c{width:13.392000px;}
._d{width:14.472000px;}
._12{width:15.480000px;}
._10{width:16.488000px;}
._2{width:19.464960px;}
._3{width:20.779920px;}
._19{width:22.752000px;}
._9{width:24.048000px;}
._a{width:25.217280px;}
._1b{width:26.352000px;}
._1a{width:27.360000px;}
._1e{width:28.420800px;}
._21{width:31.176000px;}
._1c{width:32.832000px;}
._1d{width:33.912000px;}
._13{width:35.280000px;}
._5{width:37.250640px;}
._4{width:38.687040px;}
._1f{width:146.808000px;}
._20{width:147.816000px;}
.fc2{color:rgb(15,71,97);}
.fc1{color:rgb(255,0,0);}
.fc3{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs7{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y8b{bottom:5.220000px;}
.y77{bottom:5.760000px;}
.y8f{bottom:5.790000px;}
.y97{bottom:5.805000px;}
.y7b{bottom:5.940000px;}
.y76{bottom:23.760000px;}
.y8a{bottom:41.220000px;}
.y75{bottom:43.560000px;}
.y89{bottom:54.900000px;}
.y31{bottom:56.340000px;}
.y5{bottom:58.140000px;}
.y74{bottom:61.560000px;}
.y30{bottom:75.276000px;}
.y4{bottom:78.336000px;}
.y3{bottom:95.976000px;}
.y2{bottom:114.876000px;}
.y1{bottom:133.956000px;}
.y2f{bottom:152.490000px;}
.y2e{bottom:155.190000px;}
.y2d{bottom:175.890000px;}
.y53{bottom:178.230000px;}
.ye1{bottom:178.950000px;}
.y6d{bottom:179.850000px;}
.y9b{bottom:182.730000px;}
.yb8{bottom:187.050000px;}
.y86{bottom:192.450000px;}
.yc2{bottom:194.790000px;}
.y103{bottom:196.050000px;}
.y2c{bottom:196.590000px;}
.ye0{bottom:199.650000px;}
.yaa{bottom:200.910000px;}
.y52{bottom:209.190000px;}
.y6c{bottom:210.990000px;}
.y102{bottom:216.750000px;}
.y2b{bottom:217.290000px;}
.yb7{bottom:218.010000px;}
.ydf{bottom:220.350000px;}
.y9a{bottom:220.710000px;}
.y85{bottom:223.590000px;}
.yc1{bottom:225.930000px;}
.ya9{bottom:231.870000px;}
.y2a{bottom:237.990000px;}
.y51{bottom:240.330000px;}
.y6b{bottom:241.950000px;}
.yb6{bottom:249.150000px;}
.y84{bottom:254.550000px;}
.y101{bottom:255.450000px;}
.yc0{bottom:256.890000px;}
.y99{bottom:258.510000px;}
.y29{bottom:258.690000px;}
.yde{bottom:259.050000px;}
.ya8{bottom:263.010000px;}
.y50{bottom:271.290000px;}
.y6a{bottom:273.090000px;}
.y100{bottom:276.150000px;}
.y28{bottom:279.390000px;}
.ydd{bottom:279.750000px;}
.yb5{bottom:280.110000px;}
.y83{bottom:285.510000px;}
.ybf{bottom:288.030000px;}
.ya7{bottom:293.970000px;}
.y98{bottom:296.310000px;}
.yff{bottom:296.850000px;}
.y27{bottom:300.090000px;}
.y4f{bottom:302.430000px;}
.y69{bottom:304.050000px;}
.yb4{bottom:311.250000px;}
.y82{bottom:316.650000px;}
.ydc{bottom:318.450000px;}
.ybe{bottom:318.990000px;}
.ya6{bottom:325.110000px;}
.y4e{bottom:333.390000px;}
.y96{bottom:334.110000px;}
.y68{bottom:335.190000px;}
.yfe{bottom:335.550000px;}
.ydb{bottom:339.195000px;}
.y26{bottom:341.715000px;}
.yb3{bottom:342.255000px;}
.y81{bottom:347.655000px;}
.ybd{bottom:350.175000px;}
.ya5{bottom:356.115000px;}
.yfd{bottom:356.295000px;}
.yda{bottom:359.895000px;}
.y4d{bottom:364.575000px;}
.y67{bottom:366.195000px;}
.y95{bottom:371.955000px;}
.yb2{bottom:373.395000px;}
.yfc{bottom:376.995000px;}
.y25{bottom:380.595000px;}
.ybc{bottom:381.135000px;}
.ya4{bottom:387.255000px;}
.y80{bottom:390.675000px;}
.y4c{bottom:395.535000px;}
.y66{bottom:397.155000px;}
.yfb{bottom:397.695000px;}
.y24{bottom:401.295000px;}
.yb1{bottom:404.355000px;}
.y7f{bottom:407.595000px;}
.y94{bottom:409.935000px;}
.ybb{bottom:412.275000px;}
.ya3{bottom:418.215000px;}
.yd9{bottom:419.295000px;}
.y23{bottom:421.995000px;}
.y4b{bottom:426.675000px;}
.y65{bottom:428.295000px;}
.yb0{bottom:435.495000px;}
.yfa{bottom:436.395000px;}
.yd8{bottom:439.995000px;}
.y22{bottom:442.695000px;}
.yba{bottom:443.235000px;}
.y7e{bottom:445.395000px;}
.y93{bottom:447.735000px;}
.ya2{bottom:449.355000px;}
.yf9{bottom:457.095000px;}
.y4a{bottom:457.635000px;}
.y64{bottom:459.255000px;}
.yd7{bottom:460.695000px;}
.y21{bottom:463.395000px;}
.yaf{bottom:466.455000px;}
.yf8{bottom:477.615000px;}
.ya1{bottom:480.315000px;}
.y7d{bottom:483.195000px;}
.y20{bottom:484.095000px;}
.y92{bottom:485.535000px;}
.y49{bottom:488.775000px;}
.y63{bottom:490.395000px;}
.yb9{bottom:494.715000px;}
.yae{bottom:497.595000px;}
.yd6{bottom:499.395000px;}
.y1f{bottom:504.795000px;}
.ya0{bottom:511.455000px;}
.yf7{bottom:516.315000px;}
.y48{bottom:519.735000px;}
.yd5{bottom:520.095000px;}
.y7c{bottom:520.995000px;}
.y62{bottom:521.355000px;}
.y91{bottom:523.335000px;}
.y1e{bottom:525.495000px;}
.yad{bottom:528.555000px;}
.yf6{bottom:537.015000px;}
.yd4{bottom:540.795000px;}
.y9f{bottom:542.415000px;}
.y1d{bottom:546.195000px;}
.y47{bottom:550.875000px;}
.y61{bottom:552.495000px;}
.yf5{bottom:557.715000px;}
.y7a{bottom:558.795000px;}
.yac{bottom:559.695000px;}
.y90{bottom:561.135000px;}
.y1c{bottom:566.895000px;}
.yd3{bottom:579.495000px;}
.y46{bottom:581.835000px;}
.y60{bottom:583.455000px;}
.y1b{bottom:587.595000px;}
.y9e{bottom:587.775000px;}
.yab{bottom:590.655000px;}
.yf4{bottom:596.415000px;}
.y79{bottom:596.775000px;}
.y8e{bottom:599.115000px;}
.yd2{bottom:600.195000px;}
.y1a{bottom:608.325000px;}
.y45{bottom:613.005000px;}
.yf3{bottom:617.145000px;}
.yd1{bottom:620.925000px;}
.y9d{bottom:621.645000px;}
.y5f{bottom:622.725000px;}
.y19{bottom:629.025000px;}
.y78{bottom:634.605000px;}
.y8d{bottom:636.945000px;}
.y44{bottom:643.965000px;}
.y18{bottom:649.725000px;}
.y9c{bottom:652.785000px;}
.yf2{bottom:655.845000px;}
.yd0{bottom:659.625000px;}
.y17{bottom:670.425000px;}
.y73{bottom:672.405000px;}
.y8c{bottom:674.745000px;}
.y43{bottom:675.105000px;}
.yf1{bottom:676.545000px;}
.ycf{bottom:680.325000px;}
.y5e{bottom:683.745000px;}
.y16{bottom:691.125000px;}
.yf0{bottom:697.245000px;}
.yce{bottom:701.025000px;}
.y42{bottom:706.065000px;}
.y15{bottom:711.825000px;}
.y88{bottom:712.545000px;}
.y5d{bottom:714.885000px;}
.yef{bottom:717.945000px;}
.ycd{bottom:721.725000px;}
.y14{bottom:732.525000px;}
.y41{bottom:737.205000px;}
.y5c{bottom:745.845000px;}
.y13{bottom:753.225000px;}
.yee{bottom:756.645000px;}
.ycc{bottom:760.425000px;}
.y40{bottom:768.165000px;}
.y72{bottom:773.025000px;}
.y12{bottom:773.925000px;}
.y5b{bottom:776.985000px;}
.yed{bottom:777.345000px;}
.ycb{bottom:781.125000px;}
.y11{bottom:794.445000px;}
.yec{bottom:798.045000px;}
.yca{bottom:802.005000px;}
.y71{bottom:802.905000px;}
.y3f{bottom:807.405000px;}
.y5a{bottom:807.945000px;}
.y87{bottom:809.205000px;}
.y10{bottom:826.665000px;}
.y70{bottom:833.865000px;}
.yeb{bottom:836.745000px;}
.y59{bottom:839.085000px;}
.yc9{bottom:840.705000px;}
.yf{bottom:844.665000px;}
.yea{bottom:857.445000px;}
.y3e{bottom:858.165000px;}
.yc8{bottom:861.405000px;}
.y6f{bottom:865.005000px;}
.ye{bottom:865.365000px;}
.y58{bottom:870.045000px;}
.ye9{bottom:878.190000px;}
.yc7{bottom:882.150000px;}
.y3d{bottom:890.790000px;}
.y105{bottom:896.190000px;}
.yd{bottom:897.990000px;}
.y6e{bottom:898.350000px;}
.ye8{bottom:898.890000px;}
.y57{bottom:901.230000px;}
.yc6{bottom:902.850000px;}
.y3c{bottom:911.490000px;}
.y104{bottom:916.890000px;}
.yc5{bottom:923.550000px;}
.yc{bottom:930.750000px;}
.y3b{bottom:932.190000px;}
.ye7{bottom:937.590000px;}
.yc4{bottom:944.250000px;}
.yb{bottom:951.450000px;}
.y3a{bottom:952.890000px;}
.ye6{bottom:958.290000px;}
.y56{bottom:963.330000px;}
.y39{bottom:973.590000px;}
.ye5{bottom:978.990000px;}
.ya{bottom:984.210000px;}
.y38{bottom:994.290000px;}
.yc3{bottom:995.370000px;}
.ye4{bottom:999.690000px;}
.y37{bottom:1014.990000px;}
.y9{bottom:1018.230000px;}
.y55{bottom:1025.430000px;}
.y36{bottom:1035.690000px;}
.ye3{bottom:1038.390000px;}
.y8{bottom:1045.770000px;}
.y35{bottom:1056.390000px;}
.ye2{bottom:1059.090000px;}
.y34{bottom:1077.090000px;}
.y7{bottom:1085.370000px;}
.y54{bottom:1087.530000px;}
.y33{bottom:1097.790000px;}
.y6{bottom:1112.910000px;}
.y32{bottom:1118.490000px;}
.he{height:37.800000px;}
.hf{height:37.836000px;}
.h10{height:37.980000px;}
.h8{height:43.506914px;}
.h13{height:47.961914px;}
.h11{height:52.417969px;}
.hd{height:53.077852px;}
.h3{height:53.573906px;}
.hb{height:54.596250px;}
.h15{height:58.429688px;}
.h9{height:59.343750px;}
.h2{height:59.383125px;}
.h4{height:60.855469px;}
.h16{height:63.949219px;}
.h6{height:64.546875px;}
.h7{height:70.606406px;}
.h12{height:71.820000px;}
.ha{height:74.820586px;}
.hc{height:75.600000px;}
.h5{height:85.052461px;}
.h14{height:118.120781px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:135.180000px;}
.w8{width:135.900000px;}
.w7{width:135.936000px;}
.w6{width:136.080000px;}
.w5{width:136.116000px;}
.w4{width:136.836000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.380000px;}
.x1e{left:12.780000px;}
.xe{left:18.540000px;}
.xb{left:21.285000px;}
.x11{left:22.680000px;}
.x20{left:24.834000px;}
.x1a{left:26.460000px;}
.x16{left:27.714000px;}
.x17{left:30.465000px;}
.x23{left:33.660000px;}
.x14{left:34.740000px;}
.x21{left:36.174000px;}
.x19{left:38.154000px;}
.x1b{left:41.034000px;}
.x24{left:42.474000px;}
.x22{left:44.094000px;}
.x12{left:45.180000px;}
.x1f{left:47.340000px;}
.xf{left:48.960000px;}
.x18{left:51.120000px;}
.xc{left:55.845000px;}
.x15{left:58.500000px;}
.x1c{left:65.520000px;}
.x1{left:127.655987px;}
.x3{left:138.455987px;}
.x7{left:180.749987px;}
.x4{left:232.769987px;}
.xa{left:262.830000px;}
.x6{left:303.554987px;}
.x1d{left:305.354987px;}
.x5{left:320.654987px;}
.x8{left:331.994987px;}
.xd{left:399.675000px;}
.x2{left:467.924987px;}
.x10{left:535.785000px;}
.x13{left:671.910000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsc{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.448000pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.230933pt;}
.ls6{letter-spacing:0.512000pt;}
.ls9{letter-spacing:0.704000pt;}
.ls11{letter-spacing:3.200000pt;}
.ls1{letter-spacing:4.608000pt;}
.lsf{letter-spacing:8.320000pt;}
.ls10{letter-spacing:9.600000pt;}
.lsa{letter-spacing:10.368000pt;}
.lse{letter-spacing:24.960000pt;}
.lsb{letter-spacing:30.720000pt;}
.ls8{letter-spacing:174.186667pt;}
.ws3{word-spacing:-17.792000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws2{word-spacing:-13.510933pt;}
.ws1{word-spacing:0.000000pt;}
._6{margin-left:-5.397333pt;}
._17{margin-left:-4.160000pt;}
._f{margin-left:-3.200000pt;}
._16{margin-left:-2.240853pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.424213pt;}
._11{width:2.382507pt;}
._7{width:3.648000pt;}
._8{width:4.672000pt;}
._15{width:5.994667pt;}
._14{width:6.912000pt;}
._e{width:8.330667pt;}
._b{width:9.792000pt;}
._18{width:10.783573pt;}
._c{width:11.904000pt;}
._d{width:12.864000pt;}
._12{width:13.760000pt;}
._10{width:14.656000pt;}
._2{width:17.302187pt;}
._3{width:18.471040pt;}
._19{width:20.224000pt;}
._9{width:21.376000pt;}
._a{width:22.415360pt;}
._1b{width:23.424000pt;}
._1a{width:24.320000pt;}
._1e{width:25.262933pt;}
._21{width:27.712000pt;}
._1c{width:29.184000pt;}
._1d{width:30.144000pt;}
._13{width:31.360000pt;}
._5{width:33.111680pt;}
._4{width:34.388480pt;}
._1f{width:130.496000pt;}
._20{width:131.392000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs7{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y8b{bottom:4.640000pt;}
.y77{bottom:5.120000pt;}
.y8f{bottom:5.146667pt;}
.y97{bottom:5.160000pt;}
.y7b{bottom:5.280000pt;}
.y76{bottom:21.120000pt;}
.y8a{bottom:36.640000pt;}
.y75{bottom:38.720000pt;}
.y89{bottom:48.800000pt;}
.y31{bottom:50.080000pt;}
.y5{bottom:51.680000pt;}
.y74{bottom:54.720000pt;}
.y30{bottom:66.912000pt;}
.y4{bottom:69.632000pt;}
.y3{bottom:85.312000pt;}
.y2{bottom:102.112000pt;}
.y1{bottom:119.072000pt;}
.y2f{bottom:135.546667pt;}
.y2e{bottom:137.946667pt;}
.y2d{bottom:156.346667pt;}
.y53{bottom:158.426667pt;}
.ye1{bottom:159.066667pt;}
.y6d{bottom:159.866667pt;}
.y9b{bottom:162.426667pt;}
.yb8{bottom:166.266667pt;}
.y86{bottom:171.066667pt;}
.yc2{bottom:173.146667pt;}
.y103{bottom:174.266667pt;}
.y2c{bottom:174.746667pt;}
.ye0{bottom:177.466667pt;}
.yaa{bottom:178.586667pt;}
.y52{bottom:185.946667pt;}
.y6c{bottom:187.546667pt;}
.y102{bottom:192.666667pt;}
.y2b{bottom:193.146667pt;}
.yb7{bottom:193.786667pt;}
.ydf{bottom:195.866667pt;}
.y9a{bottom:196.186667pt;}
.y85{bottom:198.746667pt;}
.yc1{bottom:200.826667pt;}
.ya9{bottom:206.106667pt;}
.y2a{bottom:211.546667pt;}
.y51{bottom:213.626667pt;}
.y6b{bottom:215.066667pt;}
.yb6{bottom:221.466667pt;}
.y84{bottom:226.266667pt;}
.y101{bottom:227.066667pt;}
.yc0{bottom:228.346667pt;}
.y99{bottom:229.786667pt;}
.y29{bottom:229.946667pt;}
.yde{bottom:230.266667pt;}
.ya8{bottom:233.786667pt;}
.y50{bottom:241.146667pt;}
.y6a{bottom:242.746667pt;}
.y100{bottom:245.466667pt;}
.y28{bottom:248.346667pt;}
.ydd{bottom:248.666667pt;}
.yb5{bottom:248.986667pt;}
.y83{bottom:253.786667pt;}
.ybf{bottom:256.026667pt;}
.ya7{bottom:261.306667pt;}
.y98{bottom:263.386667pt;}
.yff{bottom:263.866667pt;}
.y27{bottom:266.746667pt;}
.y4f{bottom:268.826667pt;}
.y69{bottom:270.266667pt;}
.yb4{bottom:276.666667pt;}
.y82{bottom:281.466667pt;}
.ydc{bottom:283.066667pt;}
.ybe{bottom:283.546667pt;}
.ya6{bottom:288.986667pt;}
.y4e{bottom:296.346667pt;}
.y96{bottom:296.986667pt;}
.y68{bottom:297.946667pt;}
.yfe{bottom:298.266667pt;}
.ydb{bottom:301.506667pt;}
.y26{bottom:303.746667pt;}
.yb3{bottom:304.226667pt;}
.y81{bottom:309.026667pt;}
.ybd{bottom:311.266667pt;}
.ya5{bottom:316.546667pt;}
.yfd{bottom:316.706667pt;}
.yda{bottom:319.906667pt;}
.y4d{bottom:324.066667pt;}
.y67{bottom:325.506667pt;}
.y95{bottom:330.626667pt;}
.yb2{bottom:331.906667pt;}
.yfc{bottom:335.106667pt;}
.y25{bottom:338.306667pt;}
.ybc{bottom:338.786667pt;}
.ya4{bottom:344.226667pt;}
.y80{bottom:347.266667pt;}
.y4c{bottom:351.586667pt;}
.y66{bottom:353.026667pt;}
.yfb{bottom:353.506667pt;}
.y24{bottom:356.706667pt;}
.yb1{bottom:359.426667pt;}
.y7f{bottom:362.306667pt;}
.y94{bottom:364.386667pt;}
.ybb{bottom:366.466667pt;}
.ya3{bottom:371.746667pt;}
.yd9{bottom:372.706667pt;}
.y23{bottom:375.106667pt;}
.y4b{bottom:379.266667pt;}
.y65{bottom:380.706667pt;}
.yb0{bottom:387.106667pt;}
.yfa{bottom:387.906667pt;}
.yd8{bottom:391.106667pt;}
.y22{bottom:393.506667pt;}
.yba{bottom:393.986667pt;}
.y7e{bottom:395.906667pt;}
.y93{bottom:397.986667pt;}
.ya2{bottom:399.426667pt;}
.yf9{bottom:406.306667pt;}
.y4a{bottom:406.786667pt;}
.y64{bottom:408.226667pt;}
.yd7{bottom:409.506667pt;}
.y21{bottom:411.906667pt;}
.yaf{bottom:414.626667pt;}
.yf8{bottom:424.546667pt;}
.ya1{bottom:426.946667pt;}
.y7d{bottom:429.506667pt;}
.y20{bottom:430.306667pt;}
.y92{bottom:431.586667pt;}
.y49{bottom:434.466667pt;}
.y63{bottom:435.906667pt;}
.yb9{bottom:439.746667pt;}
.yae{bottom:442.306667pt;}
.yd6{bottom:443.906667pt;}
.y1f{bottom:448.706667pt;}
.ya0{bottom:454.626667pt;}
.yf7{bottom:458.946667pt;}
.y48{bottom:461.986667pt;}
.yd5{bottom:462.306667pt;}
.y7c{bottom:463.106667pt;}
.y62{bottom:463.426667pt;}
.y91{bottom:465.186667pt;}
.y1e{bottom:467.106667pt;}
.yad{bottom:469.826667pt;}
.yf6{bottom:477.346667pt;}
.yd4{bottom:480.706667pt;}
.y9f{bottom:482.146667pt;}
.y1d{bottom:485.506667pt;}
.y47{bottom:489.666667pt;}
.y61{bottom:491.106667pt;}
.yf5{bottom:495.746667pt;}
.y7a{bottom:496.706667pt;}
.yac{bottom:497.506667pt;}
.y90{bottom:498.786667pt;}
.y1c{bottom:503.906667pt;}
.yd3{bottom:515.106667pt;}
.y46{bottom:517.186667pt;}
.y60{bottom:518.626667pt;}
.y1b{bottom:522.306667pt;}
.y9e{bottom:522.466667pt;}
.yab{bottom:525.026667pt;}
.yf4{bottom:530.146667pt;}
.y79{bottom:530.466667pt;}
.y8e{bottom:532.546667pt;}
.yd2{bottom:533.506667pt;}
.y1a{bottom:540.733333pt;}
.y45{bottom:544.893333pt;}
.yf3{bottom:548.573333pt;}
.yd1{bottom:551.933333pt;}
.y9d{bottom:552.573333pt;}
.y5f{bottom:553.533333pt;}
.y19{bottom:559.133333pt;}
.y78{bottom:564.093333pt;}
.y8d{bottom:566.173333pt;}
.y44{bottom:572.413333pt;}
.y18{bottom:577.533333pt;}
.y9c{bottom:580.253333pt;}
.yf2{bottom:582.973333pt;}
.yd0{bottom:586.333333pt;}
.y17{bottom:595.933333pt;}
.y73{bottom:597.693333pt;}
.y8c{bottom:599.773333pt;}
.y43{bottom:600.093333pt;}
.yf1{bottom:601.373333pt;}
.ycf{bottom:604.733333pt;}
.y5e{bottom:607.773333pt;}
.y16{bottom:614.333333pt;}
.yf0{bottom:619.773333pt;}
.yce{bottom:623.133333pt;}
.y42{bottom:627.613333pt;}
.y15{bottom:632.733333pt;}
.y88{bottom:633.373333pt;}
.y5d{bottom:635.453333pt;}
.yef{bottom:638.173333pt;}
.ycd{bottom:641.533333pt;}
.y14{bottom:651.133333pt;}
.y41{bottom:655.293333pt;}
.y5c{bottom:662.973333pt;}
.y13{bottom:669.533333pt;}
.yee{bottom:672.573333pt;}
.ycc{bottom:675.933333pt;}
.y40{bottom:682.813333pt;}
.y72{bottom:687.133333pt;}
.y12{bottom:687.933333pt;}
.y5b{bottom:690.653333pt;}
.yed{bottom:690.973333pt;}
.ycb{bottom:694.333333pt;}
.y11{bottom:706.173333pt;}
.yec{bottom:709.373333pt;}
.yca{bottom:712.893333pt;}
.y71{bottom:713.693333pt;}
.y3f{bottom:717.693333pt;}
.y5a{bottom:718.173333pt;}
.y87{bottom:719.293333pt;}
.y10{bottom:734.813333pt;}
.y70{bottom:741.213333pt;}
.yeb{bottom:743.773333pt;}
.y59{bottom:745.853333pt;}
.yc9{bottom:747.293333pt;}
.yf{bottom:750.813333pt;}
.yea{bottom:762.173333pt;}
.y3e{bottom:762.813333pt;}
.yc8{bottom:765.693333pt;}
.y6f{bottom:768.893333pt;}
.ye{bottom:769.213333pt;}
.y58{bottom:773.373333pt;}
.ye9{bottom:780.613333pt;}
.yc7{bottom:784.133333pt;}
.y3d{bottom:791.813333pt;}
.y105{bottom:796.613333pt;}
.yd{bottom:798.213333pt;}
.y6e{bottom:798.533333pt;}
.ye8{bottom:799.013333pt;}
.y57{bottom:801.093333pt;}
.yc6{bottom:802.533333pt;}
.y3c{bottom:810.213333pt;}
.y104{bottom:815.013333pt;}
.yc5{bottom:820.933333pt;}
.yc{bottom:827.333333pt;}
.y3b{bottom:828.613333pt;}
.ye7{bottom:833.413333pt;}
.yc4{bottom:839.333333pt;}
.yb{bottom:845.733333pt;}
.y3a{bottom:847.013333pt;}
.ye6{bottom:851.813333pt;}
.y56{bottom:856.293333pt;}
.y39{bottom:865.413333pt;}
.ye5{bottom:870.213333pt;}
.ya{bottom:874.853333pt;}
.y38{bottom:883.813333pt;}
.yc3{bottom:884.773333pt;}
.ye4{bottom:888.613333pt;}
.y37{bottom:902.213333pt;}
.y9{bottom:905.093333pt;}
.y55{bottom:911.493333pt;}
.y36{bottom:920.613333pt;}
.ye3{bottom:923.013333pt;}
.y8{bottom:929.573333pt;}
.y35{bottom:939.013333pt;}
.ye2{bottom:941.413333pt;}
.y34{bottom:957.413333pt;}
.y7{bottom:964.773333pt;}
.y54{bottom:966.693333pt;}
.y33{bottom:975.813333pt;}
.y6{bottom:989.253333pt;}
.y32{bottom:994.213333pt;}
.he{height:33.600000pt;}
.hf{height:33.632000pt;}
.h10{height:33.760000pt;}
.h8{height:38.672812pt;}
.h13{height:42.632812pt;}
.h11{height:46.593750pt;}
.hd{height:47.180312pt;}
.h3{height:47.621250pt;}
.hb{height:48.530000pt;}
.h15{height:51.937500pt;}
.h9{height:52.750000pt;}
.h2{height:52.785000pt;}
.h4{height:54.093750pt;}
.h16{height:56.843750pt;}
.h6{height:57.375000pt;}
.h7{height:62.761250pt;}
.h12{height:63.840000pt;}
.ha{height:66.507188pt;}
.hc{height:67.200000pt;}
.h5{height:75.602187pt;}
.h14{height:104.996250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:120.160000pt;}
.w8{width:120.800000pt;}
.w7{width:120.832000pt;}
.w6{width:120.960000pt;}
.w5{width:120.992000pt;}
.w4{width:121.632000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.560000pt;}
.x1e{left:11.360000pt;}
.xe{left:16.480000pt;}
.xb{left:18.920000pt;}
.x11{left:20.160000pt;}
.x20{left:22.074667pt;}
.x1a{left:23.520000pt;}
.x16{left:24.634667pt;}
.x17{left:27.080000pt;}
.x23{left:29.920000pt;}
.x14{left:30.880000pt;}
.x21{left:32.154667pt;}
.x19{left:33.914667pt;}
.x1b{left:36.474667pt;}
.x24{left:37.754667pt;}
.x22{left:39.194667pt;}
.x12{left:40.160000pt;}
.x1f{left:42.080000pt;}
.xf{left:43.520000pt;}
.x18{left:45.440000pt;}
.xc{left:49.640000pt;}
.x15{left:52.000000pt;}
.x1c{left:58.240000pt;}
.x1{left:113.471988pt;}
.x3{left:123.071988pt;}
.x7{left:160.666655pt;}
.x4{left:206.906655pt;}
.xa{left:233.626667pt;}
.x6{left:269.826655pt;}
.x1d{left:271.426655pt;}
.x5{left:285.026655pt;}
.x8{left:295.106655pt;}
.xd{left:355.266667pt;}
.x2{left:415.933322pt;}
.x10{left:476.253333pt;}
.x13{left:597.253333pt;}
}




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