
    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_4f42da86712bf0339dd7557d.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_52b31cf9afbc8026a96591e4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b6f71316308205244080e27c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_596144bd436c14e662500be0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.773926;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_bae089d39f54eb6ef16a33c6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.978027;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c0c1135ad9759bedf0decc29.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6311455e726631090cdd75f7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.748047;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;}
.ls2{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.720000px;}
.ls8{letter-spacing:8.640000px;}
.ls4{letter-spacing:64.421280px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.ws3{word-spacing:-21.060000px;}
.ws7{word-spacing:-18.720000px;}
.ws5{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.712000px;}
.ws2{word-spacing:0.000000px;}
._1a{margin-left:-4.765440px;}
._4{margin-left:-3.552000px;}
._5{margin-left:-2.492160px;}
._0{margin-left:-1.457280px;}
._1{width:1.149120px;}
._19{width:2.304000px;}
._b{width:3.312000px;}
._c{width:4.464000px;}
._d{width:5.916000px;}
._13{width:7.908000px;}
._14{width:9.216000px;}
._17{width:10.224000px;}
._15{width:11.969280px;}
._9{width:13.320000px;}
._a{width:14.328000px;}
._6{width:15.480000px;}
._7{width:16.634880px;}
._8{width:19.224000px;}
._12{width:20.316000px;}
._16{width:21.432000px;}
._18{width:23.472000px;}
._23{width:26.747040px;}
._11{width:28.721280px;}
._10{width:30.000000px;}
._f{width:31.008000px;}
._e{width:32.016000px;}
._2{width:33.132960px;}
._1c{width:34.632000px;}
._1b{width:35.904000px;}
._1e{width:43.776000px;}
._1d{width:52.056000px;}
._28{width:59.616000px;}
._29{width:61.488000px;}
._22{width:79.776000px;}
._3{width:90.876240px;}
._26{width:102.660000px;}
._27{width:106.992000px;}
._2a{width:139.536000px;}
._1f{width:163.464000px;}
._24{width:193.752000px;}
._25{width:195.050880px;}
._20{width:227.088000px;}
._21{width:228.096000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:82.116000px;}
.y4{bottom:102.636000px;}
.y3{bottom:121.536000px;}
.y2{bottom:146.376000px;}
.y7b{bottom:174.270000px;}
.y69{bottom:178.770000px;}
.y30{bottom:178.950000px;}
.y95{bottom:182.550000px;}
.y4d{bottom:183.450000px;}
.yc9{bottom:189.390000px;}
.y101{bottom:196.050000px;}
.y2f{bottom:199.650000px;}
.y7a{bottom:205.410000px;}
.ya1{bottom:207.570000px;}
.y68{bottom:209.910000px;}
.ydd{bottom:210.270000px;}
.y94{bottom:213.690000px;}
.y4c{bottom:214.590000px;}
.y2e{bottom:220.350000px;}
.y100{bottom:222.690000px;}
.yc8{bottom:226.470000px;}
.yb4{bottom:227.010000px;}
.y79{bottom:236.370000px;}
.ya0{bottom:238.530000px;}
.y67{bottom:240.870000px;}
.y2d{bottom:241.050000px;}
.yff{bottom:243.390000px;}
.y93{bottom:244.650000px;}
.y4b{bottom:245.550000px;}
.ybb{bottom:250.590000px;}
.ydc{bottom:253.290000px;}
.yc7{bottom:257.430000px;}
.yb3{bottom:258.150000px;}
.y78{bottom:259.050000px;}
.y2c{bottom:261.750000px;}
.yfe{bottom:264.090000px;}
.y9f{bottom:269.670000px;}
.y66{bottom:272.010000px;}
.y4a{bottom:276.690000px;}
.yba{bottom:281.550000px;}
.y92{bottom:281.730000px;}
.y2b{bottom:282.450000px;}
.ydb{bottom:284.430000px;}
.yc6{bottom:288.570000px;}
.yb2{bottom:289.110000px;}
.yfd{bottom:290.910000px;}
.y65{bottom:302.970000px;}
.y2a{bottom:303.150000px;}
.y9e{bottom:306.750000px;}
.y49{bottom:307.650000px;}
.y91{bottom:312.690000px;}
.yda{bottom:315.390000px;}
.yfc{bottom:317.550000px;}
.yc5{bottom:319.530000px;}
.y29{bottom:323.850000px;}
.yb1{bottom:326.190000px;}
.y64{bottom:334.110000px;}
.y9d{bottom:337.755000px;}
.yfb{bottom:338.295000px;}
.yb9{bottom:343.695000px;}
.y90{bottom:343.875000px;}
.y28{bottom:344.595000px;}
.y48{bottom:344.775000px;}
.yd9{bottom:346.575000px;}
.yc4{bottom:350.715000px;}
.yb0{bottom:357.375000px;}
.y63{bottom:361.335000px;}
.yfa{bottom:364.935000px;}
.y27{bottom:365.295000px;}
.y9c{bottom:368.895000px;}
.yc3{bottom:373.395000px;}
.y8f{bottom:374.835000px;}
.y47{bottom:375.735000px;}
.yd8{bottom:377.535000px;}
.y26{bottom:385.995000px;}
.yaf{bottom:388.335000px;}
.yf9{bottom:391.755000px;}
.y62{bottom:393.915000px;}
.y9b{bottom:399.855000px;}
.y8e{bottom:405.975000px;}
.y25{bottom:406.695000px;}
.y46{bottom:406.875000px;}
.yd7{bottom:408.675000px;}
.yb8{bottom:411.915000px;}
.yf8{bottom:412.455000px;}
.yae{bottom:425.415000px;}
.y24{bottom:427.395000px;}
.y61{bottom:430.995000px;}
.yf7{bottom:433.155000px;}
.y8d{bottom:436.935000px;}
.y45{bottom:437.835000px;}
.yd6{bottom:439.635000px;}
.yb7{bottom:442.875000px;}
.y23{bottom:448.095000px;}
.yf6{bottom:453.855000px;}
.yad{bottom:456.555000px;}
.y60{bottom:461.955000px;}
.y22{bottom:468.795000px;}
.y44{bottom:468.975000px;}
.yd5{bottom:470.775000px;}
.y8c{bottom:474.015000px;}
.yf5{bottom:480.495000px;}
.y77{bottom:484.275000px;}
.yac{bottom:487.515000px;}
.y21{bottom:489.495000px;}
.y9a{bottom:492.915000px;}
.y5f{bottom:493.095000px;}
.yb6{bottom:496.695000px;}
.y43{bottom:499.935000px;}
.yd4{bottom:501.735000px;}
.y8b{bottom:505.155000px;}
.yf4{bottom:507.135000px;}
.y20{bottom:510.195000px;}
.yab{bottom:518.475000px;}
.y76{bottom:521.355000px;}
.y5e{bottom:524.055000px;}
.yf3{bottom:527.835000px;}
.y1f{bottom:530.895000px;}
.y42{bottom:531.075000px;}
.yd3{bottom:532.875000px;}
.y8a{bottom:536.115000px;}
.yf2{bottom:548.535000px;}
.yaa{bottom:549.615000px;}
.y1e{bottom:551.595000px;}
.y75{bottom:552.315000px;}
.y5d{bottom:561.135000px;}
.yd2{bottom:563.835000px;}
.y89{bottom:567.255000px;}
.y41{bottom:568.155000px;}
.y1d{bottom:572.295000px;}
.yf1{bottom:575.355000px;}
.y74{bottom:583.455000px;}
.yd1{bottom:591.015000px;}
.y99{bottom:592.095000px;}
.y5c{bottom:592.275000px;}
.y1c{bottom:592.995000px;}
.y88{bottom:598.215000px;}
.y40{bottom:599.115000px;}
.yf0{bottom:601.995000px;}
.y1b{bottom:613.725000px;}
.y73{bottom:614.445000px;}
.yef{bottom:622.725000px;}
.y5b{bottom:623.265000px;}
.yd0{bottom:623.805000px;}
.y87{bottom:629.385000px;}
.y3f{bottom:630.285000px;}
.y1a{bottom:634.425000px;}
.yee{bottom:643.425000px;}
.y72{bottom:645.585000px;}
.y98{bottom:654.225000px;}
.y5a{bottom:654.405000px;}
.y19{bottom:655.125000px;}
.y86{bottom:660.345000px;}
.yc2{bottom:660.705000px;}
.y3e{bottom:667.185000px;}
.yed{bottom:670.065000px;}
.y18{bottom:675.825000px;}
.y71{bottom:676.545000px;}
.y97{bottom:691.305000px;}
.y59{bottom:691.485000px;}
.ycf{bottom:691.845000px;}
.y17{bottom:696.525000px;}
.yec{bottom:696.705000px;}
.y85{bottom:697.425000px;}
.yc1{bottom:697.785000px;}
.y3d{bottom:698.325000px;}
.y70{bottom:707.685000px;}
.y16{bottom:717.225000px;}
.yeb{bottom:717.405000px;}
.y58{bottom:722.445000px;}
.yce{bottom:722.805000px;}
.y84{bottom:728.385000px;}
.yc0{bottom:728.925000px;}
.y3c{bottom:729.285000px;}
.y15{bottom:737.925000px;}
.yea{bottom:744.225000px;}
.y6f{bottom:744.765000px;}
.y57{bottom:753.405000px;}
.ycd{bottom:753.945000px;}
.y14{bottom:758.625000px;}
.y83{bottom:759.525000px;}
.ybf{bottom:759.885000px;}
.y3b{bottom:760.425000px;}
.ye9{bottom:770.865000px;}
.y6e{bottom:775.725000px;}
.y13{bottom:779.325000px;}
.ya9{bottom:782.385000px;}
.y56{bottom:784.545000px;}
.ycc{bottom:784.905000px;}
.yb5{bottom:788.865000px;}
.y96{bottom:790.305000px;}
.y82{bottom:790.485000px;}
.ybe{bottom:791.025000px;}
.y3a{bottom:791.385000px;}
.ye8{bottom:791.565000px;}
.y12{bottom:800.025000px;}
.y6d{bottom:806.865000px;}
.y107{bottom:812.265000px;}
.y55{bottom:815.505000px;}
.ycb{bottom:816.045000px;}
.ye7{bottom:818.205000px;}
.ya8{bottom:819.465000px;}
.y11{bottom:820.725000px;}
.y81{bottom:821.625000px;}
.ybd{bottom:821.985000px;}
.y39{bottom:822.525000px;}
.y6c{bottom:837.825000px;}
.yca{bottom:838.725000px;}
.y106{bottom:838.905000px;}
.y10{bottom:841.425000px;}
.ybc{bottom:844.665000px;}
.ye6{bottom:845.025000px;}
.ya7{bottom:850.605000px;}
.y54{bottom:852.585000px;}
.y38{bottom:853.485000px;}
.yf{bottom:862.125000px;}
.ye5{bottom:865.725000px;}
.y6b{bottom:868.965000px;}
.ya6{bottom:881.610000px;}
.ye{bottom:882.870000px;}
.y53{bottom:883.770000px;}
.ye4{bottom:886.470000px;}
.y80{bottom:889.710000px;}
.y37{bottom:890.610000px;}
.y6a{bottom:891.690000px;}
.yd{bottom:903.570000px;}
.y105{bottom:907.170000px;}
.ya5{bottom:912.750000px;}
.ye3{bottom:913.110000px;}
.y52{bottom:914.730000px;}
.y7f{bottom:920.850000px;}
.y36{bottom:921.750000px;}
.yc{bottom:924.270000px;}
.y104{bottom:933.810000px;}
.ye2{bottom:939.750000px;}
.ya4{bottom:943.710000px;}
.y51{bottom:945.870000px;}
.yb{bottom:946.230000px;}
.y7e{bottom:951.810000px;}
.y35{bottom:952.710000px;}
.ye1{bottom:960.450000px;}
.ya{bottom:973.770000px;}
.ya3{bottom:974.850000px;}
.y50{bottom:976.830000px;}
.ye0{bottom:981.150000px;}
.y7d{bottom:982.950000px;}
.y34{bottom:983.850000px;}
.y9{bottom:1000.050000px;}
.y103{bottom:1001.850000px;}
.ya2{bottom:1002.030000px;}
.y4f{bottom:1007.970000px;}
.y7c{bottom:1013.910000px;}
.y33{bottom:1014.810000px;}
.y8{bottom:1022.190000px;}
.y102{bottom:1028.670000px;}
.ydf{bottom:1034.610000px;}
.y4e{bottom:1045.050000px;}
.y32{bottom:1045.950000px;}
.y7{bottom:1049.730000px;}
.yde{bottom:1055.310000px;}
.y31{bottom:1073.130000px;}
.y6{bottom:1076.010000px;}
.y1{bottom:1233.900000px;}
.h5{height:54.878906px;}
.h3{height:59.383125px;}
.h2{height:64.546875px;}
.h6{height:74.820586px;}
.h4{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:106.415987px;}
.x5{left:114.695987px;}
.x6{left:135.395987px;}
.x2{left:148.895987px;}
.xc{left:164.189987px;}
.x7{left:250.769987px;}
.xe{left:267.509987px;}
.xa{left:301.754987px;}
.x10{left:331.094987px;}
.x12{left:346.214987px;}
.x8{left:373.934987px;}
.x1{left:467.744987px;}
.xb{left:544.244987px;}
.xf{left:547.124987px;}
.x9{left:598.604987px;}
.xd{left:601.124987px;}
.x11{left:647.924987px;}
.x13{left:669.209987px;}
.x3{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls8{letter-spacing:7.680000pt;}
.ls4{letter-spacing:57.263360pt;}
.ws1{word-spacing:-64.000000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws7{word-spacing:-16.640000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws2{word-spacing:0.000000pt;}
._1a{margin-left:-4.235947pt;}
._4{margin-left:-3.157333pt;}
._5{margin-left:-2.215253pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.021440pt;}
._19{width:2.048000pt;}
._b{width:2.944000pt;}
._c{width:3.968000pt;}
._d{width:5.258667pt;}
._13{width:7.029333pt;}
._14{width:8.192000pt;}
._17{width:9.088000pt;}
._15{width:10.639360pt;}
._9{width:11.840000pt;}
._a{width:12.736000pt;}
._6{width:13.760000pt;}
._7{width:14.786560pt;}
._8{width:17.088000pt;}
._12{width:18.058667pt;}
._16{width:19.050667pt;}
._18{width:20.864000pt;}
._23{width:23.775147pt;}
._11{width:25.530027pt;}
._10{width:26.666667pt;}
._f{width:27.562667pt;}
._e{width:28.458667pt;}
._2{width:29.451520pt;}
._1c{width:30.784000pt;}
._1b{width:31.914667pt;}
._1e{width:38.912000pt;}
._1d{width:46.272000pt;}
._28{width:52.992000pt;}
._29{width:54.656000pt;}
._22{width:70.912000pt;}
._3{width:80.778880pt;}
._26{width:91.253333pt;}
._27{width:95.104000pt;}
._2a{width:124.032000pt;}
._1f{width:145.301333pt;}
._24{width:172.224000pt;}
._25{width:173.378560pt;}
._20{width:201.856000pt;}
._21{width:202.752000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:72.992000pt;}
.y4{bottom:91.232000pt;}
.y3{bottom:108.032000pt;}
.y2{bottom:130.112000pt;}
.y7b{bottom:154.906667pt;}
.y69{bottom:158.906667pt;}
.y30{bottom:159.066667pt;}
.y95{bottom:162.266667pt;}
.y4d{bottom:163.066667pt;}
.yc9{bottom:168.346667pt;}
.y101{bottom:174.266667pt;}
.y2f{bottom:177.466667pt;}
.y7a{bottom:182.586667pt;}
.ya1{bottom:184.506667pt;}
.y68{bottom:186.586667pt;}
.ydd{bottom:186.906667pt;}
.y94{bottom:189.946667pt;}
.y4c{bottom:190.746667pt;}
.y2e{bottom:195.866667pt;}
.y100{bottom:197.946667pt;}
.yc8{bottom:201.306667pt;}
.yb4{bottom:201.786667pt;}
.y79{bottom:210.106667pt;}
.ya0{bottom:212.026667pt;}
.y67{bottom:214.106667pt;}
.y2d{bottom:214.266667pt;}
.yff{bottom:216.346667pt;}
.y93{bottom:217.466667pt;}
.y4b{bottom:218.266667pt;}
.ybb{bottom:222.746667pt;}
.ydc{bottom:225.146667pt;}
.yc7{bottom:228.826667pt;}
.yb3{bottom:229.466667pt;}
.y78{bottom:230.266667pt;}
.y2c{bottom:232.666667pt;}
.yfe{bottom:234.746667pt;}
.y9f{bottom:239.706667pt;}
.y66{bottom:241.786667pt;}
.y4a{bottom:245.946667pt;}
.yba{bottom:250.266667pt;}
.y92{bottom:250.426667pt;}
.y2b{bottom:251.066667pt;}
.ydb{bottom:252.826667pt;}
.yc6{bottom:256.506667pt;}
.yb2{bottom:256.986667pt;}
.yfd{bottom:258.586667pt;}
.y65{bottom:269.306667pt;}
.y2a{bottom:269.466667pt;}
.y9e{bottom:272.666667pt;}
.y49{bottom:273.466667pt;}
.y91{bottom:277.946667pt;}
.yda{bottom:280.346667pt;}
.yfc{bottom:282.266667pt;}
.yc5{bottom:284.026667pt;}
.y29{bottom:287.866667pt;}
.yb1{bottom:289.946667pt;}
.y64{bottom:296.986667pt;}
.y9d{bottom:300.226667pt;}
.yfb{bottom:300.706667pt;}
.yb9{bottom:305.506667pt;}
.y90{bottom:305.666667pt;}
.y28{bottom:306.306667pt;}
.y48{bottom:306.466667pt;}
.yd9{bottom:308.066667pt;}
.yc4{bottom:311.746667pt;}
.yb0{bottom:317.666667pt;}
.y63{bottom:321.186667pt;}
.yfa{bottom:324.386667pt;}
.y27{bottom:324.706667pt;}
.y9c{bottom:327.906667pt;}
.yc3{bottom:331.906667pt;}
.y8f{bottom:333.186667pt;}
.y47{bottom:333.986667pt;}
.yd8{bottom:335.586667pt;}
.y26{bottom:343.106667pt;}
.yaf{bottom:345.186667pt;}
.yf9{bottom:348.226667pt;}
.y62{bottom:350.146667pt;}
.y9b{bottom:355.426667pt;}
.y8e{bottom:360.866667pt;}
.y25{bottom:361.506667pt;}
.y46{bottom:361.666667pt;}
.yd7{bottom:363.266667pt;}
.yb8{bottom:366.146667pt;}
.yf8{bottom:366.626667pt;}
.yae{bottom:378.146667pt;}
.y24{bottom:379.906667pt;}
.y61{bottom:383.106667pt;}
.yf7{bottom:385.026667pt;}
.y8d{bottom:388.386667pt;}
.y45{bottom:389.186667pt;}
.yd6{bottom:390.786667pt;}
.yb7{bottom:393.666667pt;}
.y23{bottom:398.306667pt;}
.yf6{bottom:403.426667pt;}
.yad{bottom:405.826667pt;}
.y60{bottom:410.626667pt;}
.y22{bottom:416.706667pt;}
.y44{bottom:416.866667pt;}
.yd5{bottom:418.466667pt;}
.y8c{bottom:421.346667pt;}
.yf5{bottom:427.106667pt;}
.y77{bottom:430.466667pt;}
.yac{bottom:433.346667pt;}
.y21{bottom:435.106667pt;}
.y9a{bottom:438.146667pt;}
.y5f{bottom:438.306667pt;}
.yb6{bottom:441.506667pt;}
.y43{bottom:444.386667pt;}
.yd4{bottom:445.986667pt;}
.y8b{bottom:449.026667pt;}
.yf4{bottom:450.786667pt;}
.y20{bottom:453.506667pt;}
.yab{bottom:460.866667pt;}
.y76{bottom:463.426667pt;}
.y5e{bottom:465.826667pt;}
.yf3{bottom:469.186667pt;}
.y1f{bottom:471.906667pt;}
.y42{bottom:472.066667pt;}
.yd3{bottom:473.666667pt;}
.y8a{bottom:476.546667pt;}
.yf2{bottom:487.586667pt;}
.yaa{bottom:488.546667pt;}
.y1e{bottom:490.306667pt;}
.y75{bottom:490.946667pt;}
.y5d{bottom:498.786667pt;}
.yd2{bottom:501.186667pt;}
.y89{bottom:504.226667pt;}
.y41{bottom:505.026667pt;}
.y1d{bottom:508.706667pt;}
.yf1{bottom:511.426667pt;}
.y74{bottom:518.626667pt;}
.yd1{bottom:525.346667pt;}
.y99{bottom:526.306667pt;}
.y5c{bottom:526.466667pt;}
.y1c{bottom:527.106667pt;}
.y88{bottom:531.746667pt;}
.y40{bottom:532.546667pt;}
.yf0{bottom:535.106667pt;}
.y1b{bottom:545.533333pt;}
.y73{bottom:546.173333pt;}
.yef{bottom:553.533333pt;}
.y5b{bottom:554.013333pt;}
.yd0{bottom:554.493333pt;}
.y87{bottom:559.453333pt;}
.y3f{bottom:560.253333pt;}
.y1a{bottom:563.933333pt;}
.yee{bottom:571.933333pt;}
.y72{bottom:573.853333pt;}
.y98{bottom:581.533333pt;}
.y5a{bottom:581.693333pt;}
.y19{bottom:582.333333pt;}
.y86{bottom:586.973333pt;}
.yc2{bottom:587.293333pt;}
.y3e{bottom:593.053333pt;}
.yed{bottom:595.613333pt;}
.y18{bottom:600.733333pt;}
.y71{bottom:601.373333pt;}
.y97{bottom:614.493333pt;}
.y59{bottom:614.653333pt;}
.ycf{bottom:614.973333pt;}
.y17{bottom:619.133333pt;}
.yec{bottom:619.293333pt;}
.y85{bottom:619.933333pt;}
.yc1{bottom:620.253333pt;}
.y3d{bottom:620.733333pt;}
.y70{bottom:629.053333pt;}
.y16{bottom:637.533333pt;}
.yeb{bottom:637.693333pt;}
.y58{bottom:642.173333pt;}
.yce{bottom:642.493333pt;}
.y84{bottom:647.453333pt;}
.yc0{bottom:647.933333pt;}
.y3c{bottom:648.253333pt;}
.y15{bottom:655.933333pt;}
.yea{bottom:661.533333pt;}
.y6f{bottom:662.013333pt;}
.y57{bottom:669.693333pt;}
.ycd{bottom:670.173333pt;}
.y14{bottom:674.333333pt;}
.y83{bottom:675.133333pt;}
.ybf{bottom:675.453333pt;}
.y3b{bottom:675.933333pt;}
.ye9{bottom:685.213333pt;}
.y6e{bottom:689.533333pt;}
.y13{bottom:692.733333pt;}
.ya9{bottom:695.453333pt;}
.y56{bottom:697.373333pt;}
.ycc{bottom:697.693333pt;}
.yb5{bottom:701.213333pt;}
.y96{bottom:702.493333pt;}
.y82{bottom:702.653333pt;}
.ybe{bottom:703.133333pt;}
.y3a{bottom:703.453333pt;}
.ye8{bottom:703.613333pt;}
.y12{bottom:711.133333pt;}
.y6d{bottom:717.213333pt;}
.y107{bottom:722.013333pt;}
.y55{bottom:724.893333pt;}
.ycb{bottom:725.373333pt;}
.ye7{bottom:727.293333pt;}
.ya8{bottom:728.413333pt;}
.y11{bottom:729.533333pt;}
.y81{bottom:730.333333pt;}
.ybd{bottom:730.653333pt;}
.y39{bottom:731.133333pt;}
.y6c{bottom:744.733333pt;}
.yca{bottom:745.533333pt;}
.y106{bottom:745.693333pt;}
.y10{bottom:747.933333pt;}
.ybc{bottom:750.813333pt;}
.ye6{bottom:751.133333pt;}
.ya7{bottom:756.093333pt;}
.y54{bottom:757.853333pt;}
.y38{bottom:758.653333pt;}
.yf{bottom:766.333333pt;}
.ye5{bottom:769.533333pt;}
.y6b{bottom:772.413333pt;}
.ya6{bottom:783.653333pt;}
.ye{bottom:784.773333pt;}
.y53{bottom:785.573333pt;}
.ye4{bottom:787.973333pt;}
.y80{bottom:790.853333pt;}
.y37{bottom:791.653333pt;}
.y6a{bottom:792.613333pt;}
.yd{bottom:803.173333pt;}
.y105{bottom:806.373333pt;}
.ya5{bottom:811.333333pt;}
.ye3{bottom:811.653333pt;}
.y52{bottom:813.093333pt;}
.y7f{bottom:818.533333pt;}
.y36{bottom:819.333333pt;}
.yc{bottom:821.573333pt;}
.y104{bottom:830.053333pt;}
.ye2{bottom:835.333333pt;}
.ya4{bottom:838.853333pt;}
.y51{bottom:840.773333pt;}
.yb{bottom:841.093333pt;}
.y7e{bottom:846.053333pt;}
.y35{bottom:846.853333pt;}
.ye1{bottom:853.733333pt;}
.ya{bottom:865.573333pt;}
.ya3{bottom:866.533333pt;}
.y50{bottom:868.293333pt;}
.ye0{bottom:872.133333pt;}
.y7d{bottom:873.733333pt;}
.y34{bottom:874.533333pt;}
.y9{bottom:888.933333pt;}
.y103{bottom:890.533333pt;}
.ya2{bottom:890.693333pt;}
.y4f{bottom:895.973333pt;}
.y7c{bottom:901.253333pt;}
.y33{bottom:902.053333pt;}
.y8{bottom:908.613333pt;}
.y102{bottom:914.373333pt;}
.ydf{bottom:919.653333pt;}
.y4e{bottom:928.933333pt;}
.y32{bottom:929.733333pt;}
.y7{bottom:933.093333pt;}
.yde{bottom:938.053333pt;}
.y31{bottom:953.893333pt;}
.y6{bottom:956.453333pt;}
.y1{bottom:1096.800000pt;}
.h5{height:48.781250pt;}
.h3{height:52.785000pt;}
.h2{height:57.375000pt;}
.h6{height:66.507188pt;}
.h4{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:94.591988pt;}
.x5{left:101.951988pt;}
.x6{left:120.351988pt;}
.x2{left:132.351988pt;}
.xc{left:145.946655pt;}
.x7{left:222.906655pt;}
.xe{left:237.786655pt;}
.xa{left:268.226655pt;}
.x10{left:294.306655pt;}
.x12{left:307.746655pt;}
.x8{left:332.386655pt;}
.x1{left:415.773322pt;}
.xb{left:483.773322pt;}
.xf{left:486.333322pt;}
.x9{left:532.093322pt;}
.xd{left:534.333322pt;}
.x11{left:575.933322pt;}
.x13{left:594.853322pt;}
.x3{left:699.333322pt;}
}




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