
    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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d89834029323f30e6a5db14f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0960b94a9f0d2faca64d9305.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_2ea711367ef47c5277669972.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d0804685c0839206fe41af52.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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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_8f7d077caf096dd10574e7b9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.853516;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_efd8e52451867aa1930c0976.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d5e34ae0114b89e06e0ff7e6.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ae237c401e2ab14592390366.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_358128014e1d505e2a5b3ea2.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a02a67415b03c5a1579239c8.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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;}
.ls3{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000001px;}
.ls5{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.792000px;}
.lse{letter-spacing:2.160000px;}
.lsd{letter-spacing:2.880000px;}
.ls6{letter-spacing:17.280000px;}
.lsa{letter-spacing:26.640000px;}
.ls2{letter-spacing:33.984000px;}
.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;}
}
.ws4{word-spacing:-77.760000px;}
.ws6{word-spacing:-72.000000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws1{word-spacing:0.000000px;}
._1a{margin-left:-4.157280px;}
._f{margin-left:-2.790720px;}
._0{margin-left:-1.457280px;}
._1{width:1.053360px;}
._5{width:2.759280px;}
._a{width:3.888000px;}
._b{width:5.282640px;}
._10{width:6.309360px;}
._11{width:8.189280px;}
._14{width:9.229440px;}
._9{width:10.457280px;}
._8{width:11.952000px;}
._12{width:13.176000px;}
._13{width:14.177280px;}
._e{width:15.552000px;}
._d{width:16.992000px;}
._16{width:19.440000px;}
._19{width:20.550240px;}
._4{width:21.641760px;}
._3{width:22.886640px;}
._1d{width:24.689280px;}
._7{width:25.968000px;}
._c{width:27.024000px;}
._15{width:28.176000px;}
._1b{width:29.376000px;}
._1c{width:32.904000px;}
._17{width:35.280000px;}
._18{width:36.530640px;}
._6{width:42.521520px;}
._1e{width:104.232000px;}
._2{width:148.044960px;}
.fc3{color:transparent;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(204,53,149);}
.fc4{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:5.580000px;}
.y83{bottom:14.220000px;}
.y7e{bottom:14.400000px;}
.y80{bottom:14.580000px;}
.y9a{bottom:14.760000px;}
.y7c{bottom:15.300000px;}
.y7b{bottom:15.660000px;}
.y9e{bottom:45.360000px;}
.y8{bottom:58.860000px;}
.y9d{bottom:76.320000px;}
.y7{bottom:79.596000px;}
.y6{bottom:98.496000px;}
.y9c{bottom:107.460000px;}
.y5{bottom:117.396000px;}
.y4{bottom:132.696000px;}
.y4e{bottom:169.770000px;}
.ycb{bottom:174.990000px;}
.y2f{bottom:175.710000px;}
.yad{bottom:184.890000px;}
.y79{bottom:185.610000px;}
.y6a{bottom:187.050000px;}
.ye5{bottom:190.830000px;}
.y97{bottom:194.610000px;}
.y2e{bottom:196.410000px;}
.y10a{bottom:196.950000px;}
.y4d{bottom:200.910000px;}
.yca{bottom:206.130000px;}
.ye4{bottom:211.530000px;}
.y78{bottom:216.750000px;}
.y109{bottom:217.650000px;}
.y69{bottom:218.010000px;}
.yac{bottom:227.910000px;}
.y4c{bottom:231.870000px;}
.ye3{bottom:232.230000px;}
.y2d{bottom:235.110000px;}
.yc9{bottom:237.090000px;}
.y96{bottom:242.850000px;}
.y108{bottom:247.350000px;}
.y77{bottom:247.710000px;}
.y68{bottom:249.150000px;}
.y2c{bottom:255.810000px;}
.ye2{bottom:261.930000px;}
.y4b{bottom:263.010000px;}
.yc8{bottom:268.050000px;}
.yab{bottom:270.930000px;}
.y2b{bottom:276.510000px;}
.y76{bottom:278.850000px;}
.y67{bottom:280.110000px;}
.ye1{bottom:282.630000px;}
.y95{bottom:291.090000px;}
.y4a{bottom:293.970000px;}
.y2a{bottom:297.210000px;}
.y107{bottom:297.750000px;}
.yc7{bottom:299.190000px;}
.y66{bottom:311.250000px;}
.ye0{bottom:312.330000px;}
.yaa{bottom:314.130000px;}
.y29{bottom:317.910000px;}
.y106{bottom:318.450000px;}
.y75{bottom:324.570000px;}
.y49{bottom:325.110000px;}
.yc6{bottom:330.150000px;}
.ydf{bottom:333.030000px;}
.y28{bottom:338.655000px;}
.y94{bottom:339.375000px;}
.y65{bottom:342.255000px;}
.y105{bottom:348.195000px;}
.y48{bottom:356.115000px;}
.ya9{bottom:357.195000px;}
.y27{bottom:359.355000px;}
.yc5{bottom:361.335000px;}
.yde{bottom:362.775000px;}
.y104{bottom:368.895000px;}
.y64{bottom:373.395000px;}
.y26{bottom:380.055000px;}
.ydd{bottom:383.475000px;}
.y93{bottom:385.275000px;}
.y47{bottom:387.255000px;}
.y103{bottom:389.595000px;}
.yc4{bottom:392.295000px;}
.ya8{bottom:400.215000px;}
.y25{bottom:400.755000px;}
.y63{bottom:404.355000px;}
.y92{bottom:406.335000px;}
.ydc{bottom:413.175000px;}
.y46{bottom:418.215000px;}
.y102{bottom:419.295000px;}
.y24{bottom:421.455000px;}
.y91{bottom:422.715000px;}
.yc3{bottom:423.435000px;}
.ydb{bottom:433.875000px;}
.y62{bottom:435.495000px;}
.y101{bottom:439.995000px;}
.ya7{bottom:445.035000px;}
.y45{bottom:449.355000px;}
.yc2{bottom:454.395000px;}
.y23{bottom:454.575000px;}
.y90{bottom:461.955000px;}
.y61{bottom:466.455000px;}
.y100{bottom:469.695000px;}
.y22{bottom:475.275000px;}
.y44{bottom:480.315000px;}
.yc1{bottom:485.535000px;}
.yda{bottom:487.875000px;}
.ya6{bottom:488.235000px;}
.yff{bottom:490.395000px;}
.y60{bottom:497.595000px;}
.y21{bottom:507.855000px;}
.y8f{bottom:509.835000px;}
.y43{bottom:511.455000px;}
.yc0{bottom:516.495000px;}
.yfe{bottom:519.915000px;}
.yd9{bottom:523.335000px;}
.y20{bottom:528.555000px;}
.ya5{bottom:531.255000px;}
.yfd{bottom:540.615000px;}
.y42{bottom:542.415000px;}
.ybf{bottom:547.635000px;}
.y1f{bottom:549.255000px;}
.yd8{bottom:554.475000px;}
.y8e{bottom:557.355000px;}
.y5f{bottom:559.695000px;}
.ya4{bottom:562.215000px;}
.y1e{bottom:569.955000px;}
.yfc{bottom:570.315000px;}
.y41{bottom:573.555000px;}
.ybe{bottom:578.595000px;}
.y110{bottom:579.135000px;}
.yd7{bottom:585.435000px;}
.y1d{bottom:590.655000px;}
.yfb{bottom:591.015000px;}
.ya3{bottom:593.355000px;}
.y40{bottom:604.545000px;}
.y8d{bottom:605.265000px;}
.ybd{bottom:609.765000px;}
.y1c{bottom:611.385000px;}
.yfa{bottom:611.745000px;}
.yd6{bottom:616.605000px;}
.y5e{bottom:621.645000px;}
.ya2{bottom:624.345000px;}
.y1b{bottom:632.085000px;}
.y3f{bottom:635.685000px;}
.ybc{bottom:640.725000px;}
.yf9{bottom:641.445000px;}
.yd5{bottom:647.565000px;}
.y8c{bottom:650.085000px;}
.y1a{bottom:652.785000px;}
.ya1{bottom:655.485000px;}
.yf8{bottom:662.145000px;}
.y3e{bottom:666.645000px;}
.ybb{bottom:671.865000px;}
.y19{bottom:673.485000px;}
.yd4{bottom:678.705000px;}
.y10f{bottom:682.845000px;}
.y5d{bottom:683.745000px;}
.ya0{bottom:686.445000px;}
.yf7{bottom:691.845000px;}
.y8b{bottom:694.905000px;}
.y3d{bottom:697.785000px;}
.yba{bottom:702.825000px;}
.y18{bottom:706.245000px;}
.yd3{bottom:709.665000px;}
.y9f{bottom:710.385000px;}
.yf6{bottom:712.545000px;}
.y5c{bottom:714.885000px;}
.y9b{bottom:719.565000px;}
.y8a{bottom:725.865000px;}
.y3c{bottom:728.745000px;}
.yf5{bottom:733.245000px;}
.yb9{bottom:733.965000px;}
.y17{bottom:735.945000px;}
.y74{bottom:736.665000px;}
.yd2{bottom:740.805000px;}
.y5b{bottom:745.845000px;}
.y10e{bottom:753.945000px;}
.y16{bottom:756.645000px;}
.y89{bottom:757.005000px;}
.y3b{bottom:759.705000px;}
.yf4{bottom:762.945000px;}
.yb8{bottom:764.925000px;}
.y73{bottom:766.545000px;}
.yd1{bottom:771.765000px;}
.y5a{bottom:776.985000px;}
.y15{bottom:777.345000px;}
.yf3{bottom:783.645000px;}
.y88{bottom:787.965000px;}
.y3a{bottom:790.845000px;}
.yb7{bottom:796.065000px;}
.y14{bottom:798.045000px;}
.yd0{bottom:802.905000px;}
.y10d{bottom:804.345000px;}
.y59{bottom:807.945000px;}
.y72{bottom:809.565000px;}
.yf2{bottom:813.345000px;}
.y87{bottom:819.105000px;}
.y39{bottom:821.805000px;}
.yb6{bottom:827.025000px;}
.y13{bottom:833.865000px;}
.yf1{bottom:834.045000px;}
.y58{bottom:839.085000px;}
.y71{bottom:840.525000px;}
.y99{bottom:844.485000px;}
.y86{bottom:850.065000px;}
.y38{bottom:852.945000px;}
.yf0{bottom:854.745000px;}
.y12{bottom:857.625000px;}
.yb5{bottom:858.165000px;}
.y10c{bottom:863.745000px;}
.ycf{bottom:865.005000px;}
.y57{bottom:870.045000px;}
.y70{bottom:871.710000px;}
.y11{bottom:879.630000px;}
.y85{bottom:881.250000px;}
.y37{bottom:883.950000px;}
.yef{bottom:884.490000px;}
.yb4{bottom:889.170000px;}
.yce{bottom:896.010000px;}
.y56{bottom:901.230000px;}
.y6f{bottom:902.670000px;}
.y98{bottom:903.030000px;}
.yee{bottom:905.190000px;}
.y10{bottom:907.350000px;}
.y84{bottom:912.210000px;}
.y36{bottom:915.090000px;}
.yb3{bottom:920.310000px;}
.yed{bottom:925.890000px;}
.ycd{bottom:927.150000px;}
.y82{bottom:930.570000px;}
.y55{bottom:932.190000px;}
.y6e{bottom:933.810000px;}
.yf{bottom:934.890000px;}
.y35{bottom:946.050000px;}
.yb2{bottom:951.270000px;}
.yec{bottom:955.590000px;}
.ycc{bottom:960.450000px;}
.y81{bottom:961.530000px;}
.ye{bottom:962.430000px;}
.y54{bottom:963.330000px;}
.y6d{bottom:964.770000px;}
.yeb{bottom:976.290000px;}
.y34{bottom:977.190000px;}
.yb1{bottom:982.410000px;}
.yd{bottom:990.150000px;}
.y7f{bottom:993.030000px;}
.y53{bottom:994.290000px;}
.yea{bottom:1005.990000px;}
.y6c{bottom:1007.790000px;}
.y33{bottom:1008.150000px;}
.yb0{bottom:1013.370000px;}
.yc{bottom:1017.690000px;}
.y7d{bottom:1024.530000px;}
.y52{bottom:1025.430000px;}
.ye9{bottom:1026.690000px;}
.y32{bottom:1039.290000px;}
.yaf{bottom:1044.510000px;}
.yb{bottom:1045.230000px;}
.ye8{bottom:1047.390000px;}
.y51{bottom:1056.390000px;}
.y7a{bottom:1057.110000px;}
.y6b{bottom:1059.270000px;}
.y10b{bottom:1068.090000px;}
.y31{bottom:1070.250000px;}
.ya{bottom:1072.950000px;}
.yae{bottom:1075.470000px;}
.ye7{bottom:1077.090000px;}
.y50{bottom:1087.530000px;}
.ye6{bottom:1097.790000px;}
.y9{bottom:1115.430000px;}
.y30{bottom:1115.610000px;}
.y4f{bottom:1118.490000px;}
.y3{bottom:1169.460000px;}
.y1{bottom:1186.380000px;}
.h2{height:22.500000px;}
.h12{height:30.427734px;}
.h11{height:30.960000px;}
.hf{height:31.140000px;}
.h10{height:31.500000px;}
.h14{height:31.536000px;}
.h16{height:32.273438px;}
.hd{height:33.660000px;}
.hc{height:54.596250px;}
.h8{height:59.343750px;}
.h4{height:59.383125px;}
.h9{height:60.679688px;}
.h3{height:60.855469px;}
.he{height:63.104063px;}
.hb{height:63.949219px;}
.h7{height:64.546875px;}
.ha{height:71.200898px;}
.h5{height:74.820586px;}
.h13{height:75.519844px;}
.h6{height:85.052461px;}
.h15{height:124.200000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:233.670000px;}
.w5{width:322.050000px;}
.w6{width:349.455000px;}
.w8{width:349.590000px;}
.w7{width:349.635000px;}
.w4{width:349.815000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:7.740000px;}
.x15{left:15.480000px;}
.x16{left:36.354000px;}
.x18{left:47.514000px;}
.x17{left:59.220000px;}
.x1a{left:86.574000px;}
.x13{left:92.154000px;}
.x19{left:105.654000px;}
.x3{left:116.850000px;}
.x1{left:127.656000px;}
.x12{left:129.096000px;}
.xa{left:138.455987px;}
.x6{left:141.515987px;}
.xf{left:146.735987px;}
.x1c{left:153.399000px;}
.xd{left:154.649987px;}
.x1f{left:161.280000px;}
.x1e{left:165.780000px;}
.xe{left:170.129987px;}
.x5{left:234.225000px;}
.x8{left:236.009987px;}
.xc{left:279.794987px;}
.x10{left:304.274987px;}
.x9{left:317.234987px;}
.x20{left:331.454987px;}
.x1b{left:338.834987px;}
.x2{left:361.335000px;}
.x7{left:370.154987px;}
.xb{left:433.334987px;}
.x14{left:478.905000px;}
.x4{left:595.005000px;}
.x11{left:769.649987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000001pt;}
.ls5{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.704000pt;}
.lse{letter-spacing:1.920000pt;}
.lsd{letter-spacing:2.560000pt;}
.ls6{letter-spacing:15.360000pt;}
.lsa{letter-spacing:23.680000pt;}
.ls2{letter-spacing:30.208000pt;}
.ws4{word-spacing:-69.120000pt;}
.ws6{word-spacing:-64.000000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws1{word-spacing:0.000000pt;}
._1a{margin-left:-3.695360pt;}
._f{margin-left:-2.480640pt;}
._0{margin-left:-1.295360pt;}
._1{width:0.936320pt;}
._5{width:2.452693pt;}
._a{width:3.456000pt;}
._b{width:4.695680pt;}
._10{width:5.608320pt;}
._11{width:7.279360pt;}
._14{width:8.203947pt;}
._9{width:9.295360pt;}
._8{width:10.624000pt;}
._12{width:11.712000pt;}
._13{width:12.602027pt;}
._e{width:13.824000pt;}
._d{width:15.104000pt;}
._16{width:17.280000pt;}
._19{width:18.266880pt;}
._4{width:19.237120pt;}
._3{width:20.343680pt;}
._1d{width:21.946027pt;}
._7{width:23.082667pt;}
._c{width:24.021333pt;}
._15{width:25.045333pt;}
._1b{width:26.112000pt;}
._1c{width:29.248000pt;}
._17{width:31.360000pt;}
._18{width:32.471680pt;}
._6{width:37.796907pt;}
._1e{width:92.650667pt;}
._2{width:131.595520pt;}
.fs5{font-size:32.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.960000pt;}
.y83{bottom:12.640000pt;}
.y7e{bottom:12.800000pt;}
.y80{bottom:12.960000pt;}
.y9a{bottom:13.120000pt;}
.y7c{bottom:13.600000pt;}
.y7b{bottom:13.920000pt;}
.y9e{bottom:40.320000pt;}
.y8{bottom:52.320000pt;}
.y9d{bottom:67.840000pt;}
.y7{bottom:70.752000pt;}
.y6{bottom:87.552000pt;}
.y9c{bottom:95.520000pt;}
.y5{bottom:104.352000pt;}
.y4{bottom:117.952000pt;}
.y4e{bottom:150.906667pt;}
.ycb{bottom:155.546667pt;}
.y2f{bottom:156.186667pt;}
.yad{bottom:164.346667pt;}
.y79{bottom:164.986667pt;}
.y6a{bottom:166.266667pt;}
.ye5{bottom:169.626667pt;}
.y97{bottom:172.986667pt;}
.y2e{bottom:174.586667pt;}
.y10a{bottom:175.066667pt;}
.y4d{bottom:178.586667pt;}
.yca{bottom:183.226667pt;}
.ye4{bottom:188.026667pt;}
.y78{bottom:192.666667pt;}
.y109{bottom:193.466667pt;}
.y69{bottom:193.786667pt;}
.yac{bottom:202.586667pt;}
.y4c{bottom:206.106667pt;}
.ye3{bottom:206.426667pt;}
.y2d{bottom:208.986667pt;}
.yc9{bottom:210.746667pt;}
.y96{bottom:215.866667pt;}
.y108{bottom:219.866667pt;}
.y77{bottom:220.186667pt;}
.y68{bottom:221.466667pt;}
.y2c{bottom:227.386667pt;}
.ye2{bottom:232.826667pt;}
.y4b{bottom:233.786667pt;}
.yc8{bottom:238.266667pt;}
.yab{bottom:240.826667pt;}
.y2b{bottom:245.786667pt;}
.y76{bottom:247.866667pt;}
.y67{bottom:248.986667pt;}
.ye1{bottom:251.226667pt;}
.y95{bottom:258.746667pt;}
.y4a{bottom:261.306667pt;}
.y2a{bottom:264.186667pt;}
.y107{bottom:264.666667pt;}
.yc7{bottom:265.946667pt;}
.y66{bottom:276.666667pt;}
.ye0{bottom:277.626667pt;}
.yaa{bottom:279.226667pt;}
.y29{bottom:282.586667pt;}
.y106{bottom:283.066667pt;}
.y75{bottom:288.506667pt;}
.y49{bottom:288.986667pt;}
.yc6{bottom:293.466667pt;}
.ydf{bottom:296.026667pt;}
.y28{bottom:301.026667pt;}
.y94{bottom:301.666667pt;}
.y65{bottom:304.226667pt;}
.y105{bottom:309.506667pt;}
.y48{bottom:316.546667pt;}
.ya9{bottom:317.506667pt;}
.y27{bottom:319.426667pt;}
.yc5{bottom:321.186667pt;}
.yde{bottom:322.466667pt;}
.y104{bottom:327.906667pt;}
.y64{bottom:331.906667pt;}
.y26{bottom:337.826667pt;}
.ydd{bottom:340.866667pt;}
.y93{bottom:342.466667pt;}
.y47{bottom:344.226667pt;}
.y103{bottom:346.306667pt;}
.yc4{bottom:348.706667pt;}
.ya8{bottom:355.746667pt;}
.y25{bottom:356.226667pt;}
.y63{bottom:359.426667pt;}
.y92{bottom:361.186667pt;}
.ydc{bottom:367.266667pt;}
.y46{bottom:371.746667pt;}
.y102{bottom:372.706667pt;}
.y24{bottom:374.626667pt;}
.y91{bottom:375.746667pt;}
.yc3{bottom:376.386667pt;}
.ydb{bottom:385.666667pt;}
.y62{bottom:387.106667pt;}
.y101{bottom:391.106667pt;}
.ya7{bottom:395.586667pt;}
.y45{bottom:399.426667pt;}
.yc2{bottom:403.906667pt;}
.y23{bottom:404.066667pt;}
.y90{bottom:410.626667pt;}
.y61{bottom:414.626667pt;}
.y100{bottom:417.506667pt;}
.y22{bottom:422.466667pt;}
.y44{bottom:426.946667pt;}
.yc1{bottom:431.586667pt;}
.yda{bottom:433.666667pt;}
.ya6{bottom:433.986667pt;}
.yff{bottom:435.906667pt;}
.y60{bottom:442.306667pt;}
.y21{bottom:451.426667pt;}
.y8f{bottom:453.186667pt;}
.y43{bottom:454.626667pt;}
.yc0{bottom:459.106667pt;}
.yfe{bottom:462.146667pt;}
.yd9{bottom:465.186667pt;}
.y20{bottom:469.826667pt;}
.ya5{bottom:472.226667pt;}
.yfd{bottom:480.546667pt;}
.y42{bottom:482.146667pt;}
.ybf{bottom:486.786667pt;}
.y1f{bottom:488.226667pt;}
.yd8{bottom:492.866667pt;}
.y8e{bottom:495.426667pt;}
.y5f{bottom:497.506667pt;}
.ya4{bottom:499.746667pt;}
.y1e{bottom:506.626667pt;}
.yfc{bottom:506.946667pt;}
.y41{bottom:509.826667pt;}
.ybe{bottom:514.306667pt;}
.y110{bottom:514.786667pt;}
.yd7{bottom:520.386667pt;}
.y1d{bottom:525.026667pt;}
.yfb{bottom:525.346667pt;}
.ya3{bottom:527.426667pt;}
.y40{bottom:537.373333pt;}
.y8d{bottom:538.013333pt;}
.ybd{bottom:542.013333pt;}
.y1c{bottom:543.453333pt;}
.yfa{bottom:543.773333pt;}
.yd6{bottom:548.093333pt;}
.y5e{bottom:552.573333pt;}
.ya2{bottom:554.973333pt;}
.y1b{bottom:561.853333pt;}
.y3f{bottom:565.053333pt;}
.ybc{bottom:569.533333pt;}
.yf9{bottom:570.173333pt;}
.yd5{bottom:575.613333pt;}
.y8c{bottom:577.853333pt;}
.y1a{bottom:580.253333pt;}
.ya1{bottom:582.653333pt;}
.yf8{bottom:588.573333pt;}
.y3e{bottom:592.573333pt;}
.ybb{bottom:597.213333pt;}
.y19{bottom:598.653333pt;}
.yd4{bottom:603.293333pt;}
.y10f{bottom:606.973333pt;}
.y5d{bottom:607.773333pt;}
.ya0{bottom:610.173333pt;}
.yf7{bottom:614.973333pt;}
.y8b{bottom:617.693333pt;}
.y3d{bottom:620.253333pt;}
.yba{bottom:624.733333pt;}
.y18{bottom:627.773333pt;}
.yd3{bottom:630.813333pt;}
.y9f{bottom:631.453333pt;}
.yf6{bottom:633.373333pt;}
.y5c{bottom:635.453333pt;}
.y9b{bottom:639.613333pt;}
.y8a{bottom:645.213333pt;}
.y3c{bottom:647.773333pt;}
.yf5{bottom:651.773333pt;}
.yb9{bottom:652.413333pt;}
.y17{bottom:654.173333pt;}
.y74{bottom:654.813333pt;}
.yd2{bottom:658.493333pt;}
.y5b{bottom:662.973333pt;}
.y10e{bottom:670.173333pt;}
.y16{bottom:672.573333pt;}
.y89{bottom:672.893333pt;}
.y3b{bottom:675.293333pt;}
.yf4{bottom:678.173333pt;}
.yb8{bottom:679.933333pt;}
.y73{bottom:681.373333pt;}
.yd1{bottom:686.013333pt;}
.y5a{bottom:690.653333pt;}
.y15{bottom:690.973333pt;}
.yf3{bottom:696.573333pt;}
.y88{bottom:700.413333pt;}
.y3a{bottom:702.973333pt;}
.yb7{bottom:707.613333pt;}
.y14{bottom:709.373333pt;}
.yd0{bottom:713.693333pt;}
.y10d{bottom:714.973333pt;}
.y59{bottom:718.173333pt;}
.y72{bottom:719.613333pt;}
.yf2{bottom:722.973333pt;}
.y87{bottom:728.093333pt;}
.y39{bottom:730.493333pt;}
.yb6{bottom:735.133333pt;}
.y13{bottom:741.213333pt;}
.yf1{bottom:741.373333pt;}
.y58{bottom:745.853333pt;}
.y71{bottom:747.133333pt;}
.y99{bottom:750.653333pt;}
.y86{bottom:755.613333pt;}
.y38{bottom:758.173333pt;}
.yf0{bottom:759.773333pt;}
.y12{bottom:762.333333pt;}
.yb5{bottom:762.813333pt;}
.y10c{bottom:767.773333pt;}
.ycf{bottom:768.893333pt;}
.y57{bottom:773.373333pt;}
.y70{bottom:774.853333pt;}
.y11{bottom:781.893333pt;}
.y85{bottom:783.333333pt;}
.y37{bottom:785.733333pt;}
.yef{bottom:786.213333pt;}
.yb4{bottom:790.373333pt;}
.yce{bottom:796.453333pt;}
.y56{bottom:801.093333pt;}
.y6f{bottom:802.373333pt;}
.y98{bottom:802.693333pt;}
.yee{bottom:804.613333pt;}
.y10{bottom:806.533333pt;}
.y84{bottom:810.853333pt;}
.y36{bottom:813.413333pt;}
.yb3{bottom:818.053333pt;}
.yed{bottom:823.013333pt;}
.ycd{bottom:824.133333pt;}
.y82{bottom:827.173333pt;}
.y55{bottom:828.613333pt;}
.y6e{bottom:830.053333pt;}
.yf{bottom:831.013333pt;}
.y35{bottom:840.933333pt;}
.yb2{bottom:845.573333pt;}
.yec{bottom:849.413333pt;}
.ycc{bottom:853.733333pt;}
.y81{bottom:854.693333pt;}
.ye{bottom:855.493333pt;}
.y54{bottom:856.293333pt;}
.y6d{bottom:857.573333pt;}
.yeb{bottom:867.813333pt;}
.y34{bottom:868.613333pt;}
.yb1{bottom:873.253333pt;}
.yd{bottom:880.133333pt;}
.y7f{bottom:882.693333pt;}
.y53{bottom:883.813333pt;}
.yea{bottom:894.213333pt;}
.y6c{bottom:895.813333pt;}
.y33{bottom:896.133333pt;}
.yb0{bottom:900.773333pt;}
.yc{bottom:904.613333pt;}
.y7d{bottom:910.693333pt;}
.y52{bottom:911.493333pt;}
.ye9{bottom:912.613333pt;}
.y32{bottom:923.813333pt;}
.yaf{bottom:928.453333pt;}
.yb{bottom:929.093333pt;}
.ye8{bottom:931.013333pt;}
.y51{bottom:939.013333pt;}
.y7a{bottom:939.653333pt;}
.y6b{bottom:941.573333pt;}
.y10b{bottom:949.413333pt;}
.y31{bottom:951.333333pt;}
.ya{bottom:953.733333pt;}
.yae{bottom:955.973333pt;}
.ye7{bottom:957.413333pt;}
.y50{bottom:966.693333pt;}
.ye6{bottom:975.813333pt;}
.y9{bottom:991.493333pt;}
.y30{bottom:991.653333pt;}
.y4f{bottom:994.213333pt;}
.y3{bottom:1039.520000pt;}
.y1{bottom:1054.560000pt;}
.h2{height:20.000000pt;}
.h12{height:27.046875pt;}
.h11{height:27.520000pt;}
.hf{height:27.680000pt;}
.h10{height:28.000000pt;}
.h14{height:28.032000pt;}
.h16{height:28.687500pt;}
.hd{height:29.920000pt;}
.hc{height:48.530000pt;}
.h8{height:52.750000pt;}
.h4{height:52.785000pt;}
.h9{height:53.937500pt;}
.h3{height:54.093750pt;}
.he{height:56.092500pt;}
.hb{height:56.843750pt;}
.h7{height:57.375000pt;}
.ha{height:63.289687pt;}
.h5{height:66.507188pt;}
.h13{height:67.128750pt;}
.h6{height:75.602187pt;}
.h15{height:110.400000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:207.706667pt;}
.w5{width:286.266667pt;}
.w6{width:310.626667pt;}
.w8{width:310.746667pt;}
.w7{width:310.786667pt;}
.w4{width:310.946667pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.880000pt;}
.x15{left:13.760000pt;}
.x16{left:32.314667pt;}
.x18{left:42.234667pt;}
.x17{left:52.640000pt;}
.x1a{left:76.954667pt;}
.x13{left:81.914667pt;}
.x19{left:93.914667pt;}
.x3{left:103.866667pt;}
.x1{left:113.472000pt;}
.x12{left:114.752000pt;}
.xa{left:123.071988pt;}
.x6{left:125.791988pt;}
.xf{left:130.431988pt;}
.x1c{left:136.354667pt;}
.xd{left:137.466655pt;}
.x1f{left:143.360000pt;}
.x1e{left:147.360000pt;}
.xe{left:151.226655pt;}
.x5{left:208.200000pt;}
.x8{left:209.786655pt;}
.xc{left:248.706655pt;}
.x10{left:270.466655pt;}
.x9{left:281.986655pt;}
.x20{left:294.626655pt;}
.x1b{left:301.186655pt;}
.x2{left:321.186667pt;}
.x7{left:329.026655pt;}
.xb{left:385.186655pt;}
.x14{left:425.693333pt;}
.x4{left:528.893333pt;}
.x11{left:684.133322pt;}
}




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