
    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_19968630384fae72b3a835ae.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_7ed5e0a8536982748a04be08.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933105;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_4557a6eadeeee4011dcf57a5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.956055;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_3fb687beac11883016e8bc0c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_9edb7e1da85254ebc5c5a471.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_86b42d88500c3ba1e4c98e46.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.885254;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_a26e176001279a10299313ca.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_806cb29d71e1fc008dde12d7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.935059;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_6615362373d0716ecdf2900f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.717285;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_7d61f549e05830712214ea6f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_a34f3684e4752a5c2567a473.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_86b3f4cc106a68a4442035eb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_9cb08baba952304020240bed.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.925293;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:ffe;src:url('chunks/assets/font_14a8b81be9ca976391c9ad21.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.675781;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:fff;src:url('chunks/assets/font_21aa1b7ee634a8da3938c12e.woff2')format("woff");}.fff{font-family:fff;line-height:0.877000;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:ff10;src:url('chunks/assets/font_376f2d5012a12d13e7dfc03f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.949707;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:ff11;src:url('chunks/assets/font_aa503dc38a2cf03e8f491c6e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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:ff12;src:url('chunks/assets/font_9b42a1f986abc7e8ad8bb7c8.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;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:ff13;src:url('chunks/assets/font_810dc74ab62ca0f28237221c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;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(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v2{vertical-align:-18.720000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls13{letter-spacing:-0.399168px;}
.ls14{letter-spacing:-0.338688px;}
.ls11{letter-spacing:-0.241920px;}
.ls2d{letter-spacing:-0.198720px;}
.ls16{letter-spacing:-0.158976px;}
.ls17{letter-spacing:-0.014400px;}
.ls18{letter-spacing:-0.007200px;}
.lsd{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.042768px;}
.ls1{letter-spacing:0.072576px;}
.lsf{letter-spacing:0.073872px;}
.lse{letter-spacing:0.097200px;}
.ls7{letter-spacing:0.110016px;}
.ls20{letter-spacing:0.123552px;}
.ls24{letter-spacing:0.126000px;}
.ls9{letter-spacing:0.155520px;}
.ls27{letter-spacing:0.161568px;}
.ls29{letter-spacing:0.194832px;}
.ls1b{letter-spacing:0.199584px;}
.ls1e{letter-spacing:0.218592px;}
.ls25{letter-spacing:0.223344px;}
.ls19{letter-spacing:0.232848px;}
.lsa{letter-spacing:0.233280px;}
.ls22{letter-spacing:0.237600px;}
.lsc{letter-spacing:0.240048px;}
.ls23{letter-spacing:0.240480px;}
.ls1c{letter-spacing:0.242352px;}
.lsb{letter-spacing:0.251856px;}
.ls1a{letter-spacing:0.266112px;}
.ls2{letter-spacing:0.270864px;}
.ls1f{letter-spacing:0.275616px;}
.ls2b{letter-spacing:0.285120px;}
.ls4{letter-spacing:0.290880px;}
.ls1d{letter-spacing:0.313632px;}
.ls15{letter-spacing:0.318384px;}
.ls21{letter-spacing:0.346896px;}
.ls2a{letter-spacing:0.356400px;}
.ls12{letter-spacing:0.389664px;}
.ls26{letter-spacing:0.399168px;}
.ls28{letter-spacing:0.432432px;}
.ls8{letter-spacing:0.474048px;}
.ls6{letter-spacing:0.719424px;}
.ls5{letter-spacing:1.256400px;}
.ls10{letter-spacing:1.800000px;}
.ls3{letter-spacing:5.001120px;}
.ls2c{letter-spacing:54.866880px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws13{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.992800px;}
.ws4{word-spacing:-17.985600px;}
.ws0{word-spacing:-16.414272px;}
.ws2{word-spacing:-13.481424px;}
.ws10{word-spacing:-12.236400px;}
.ws11{word-spacing:-12.155616px;}
.wsf{word-spacing:-12.074832px;}
.wse{word-spacing:-12.041568px;}
.wsa{word-spacing:-0.361152px;}
.wsc{word-spacing:-0.323136px;}
.ws6{word-spacing:-0.313632px;}
.ws9{word-spacing:-0.299376px;}
.ws8{word-spacing:-0.289872px;}
.ws5{word-spacing:-0.280368px;}
.wsb{word-spacing:-0.266112px;}
.ws7{word-spacing:-0.247104px;}
.ws12{word-spacing:-0.072000px;}
.wsd{word-spacing:0.000000px;}
.ws1{word-spacing:0.338688px;}
._1{margin-left:-1.033200px;}
._0{width:1.010880px;}
._9{width:2.138400px;}
._b{width:3.344400px;}
._6{width:4.356000px;}
._7{width:5.515200px;}
._8{width:7.142400px;}
._10{width:8.575200px;}
._f{width:9.684000px;}
._11{width:10.987200px;}
._c{width:12.996000px;}
._12{width:14.558400px;}
._4{width:16.214400px;}
._a{width:19.116000px;}
._13{width:20.167200px;}
._d{width:22.176000px;}
._3{width:25.624800px;}
._5{width:26.992800px;}
._e{width:29.995200px;}
._2{width:31.155264px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs6{font-size:36.000000px;}
.fs1{font-size:38.880000px;}
.fs2{font-size:46.588234px;}
.fs4{font-size:47.520000px;}
.fs3{font-size:60.480000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y6d{bottom:2.700000px;}
.y6f{bottom:3.900000px;}
.y69{bottom:5.700000px;}
.y67{bottom:5.820000px;}
.y65{bottom:5.940000px;}
.y75{bottom:6.420000px;}
.y73{bottom:6.540000px;}
.y71{bottom:6.660000px;}
.y33{bottom:111.960000px;}
.y4{bottom:113.040000px;}
.y3{bottom:127.440000px;}
.y51{bottom:131.040000px;}
.y32{bottom:132.840000px;}
.y2{bottom:142.200000px;}
.y31{bottom:151.920000px;}
.y2e{bottom:159.840000px;}
.y8b{bottom:169.920000px;}
.y2d{bottom:178.560000px;}
.y2c{bottom:187.920000px;}
.y8a{bottom:191.880000px;}
.y2b{bottom:206.640000px;}
.y89{bottom:213.840000px;}
.y2a{bottom:218.880000px;}
.y50{bottom:219.240000px;}
.y29{bottom:235.440000px;}
.y4f{bottom:239.760000px;}
.y4e{bottom:260.640000px;}
.y88{bottom:277.200000px;}
.y4d{bottom:281.160000px;}
.y87{bottom:299.160000px;}
.y4c{bottom:302.040000px;}
.y86{bottom:321.120000px;}
.y4b{bottom:322.560000px;}
.y85{bottom:343.080000px;}
.y4a{bottom:343.440000px;}
.y49{bottom:363.960000px;}
.y84{bottom:365.400000px;}
.y48{bottom:384.840000px;}
.y83{bottom:385.920000px;}
.y28{bottom:388.080000px;}
.y47{bottom:405.360000px;}
.y82{bottom:407.880000px;}
.y27{bottom:408.600000px;}
.y76{bottom:423.000000px;}
.y46{bottom:426.240000px;}
.y26{bottom:429.480000px;}
.y81{bottom:429.840000px;}
.y74{bottom:442.500000px;}
.y45{bottom:446.760000px;}
.y25{bottom:450.000000px;}
.y80{bottom:451.800000px;}
.y44{bottom:467.640000px;}
.y24{bottom:470.520000px;}
.y7f{bottom:473.760000px;}
.y72{bottom:475.500000px;}
.y43{bottom:488.160000px;}
.y23{bottom:491.400000px;}
.y7e{bottom:496.080000px;}
.y70{bottom:508.500000px;}
.y42{bottom:509.040000px;}
.y22{bottom:511.920000px;}
.y7d{bottom:516.600000px;}
.y41{bottom:529.560000px;}
.y21{bottom:532.800000px;}
.y7c{bottom:537.480000px;}
.y6e{bottom:541.500000px;}
.y40{bottom:550.080000px;}
.y20{bottom:553.320000px;}
.y7b{bottom:558.000000px;}
.y3f{bottom:570.960000px;}
.y6c{bottom:571.500000px;}
.y1f{bottom:574.200000px;}
.y7a{bottom:582.480000px;}
.y3e{bottom:591.480000px;}
.y1e{bottom:594.720000px;}
.y6b{bottom:601.500000px;}
.y3d{bottom:612.360000px;}
.y1d{bottom:615.600000px;}
.y79{bottom:618.840000px;}
.y3c{bottom:632.880000px;}
.y78{bottom:633.240000px;}
.y6a{bottom:634.500000px;}
.y1c{bottom:636.120000px;}
.y77{bottom:645.120000px;}
.y3b{bottom:653.760000px;}
.y1b{bottom:657.000000px;}
.y68{bottom:667.500000px;}
.y3a{bottom:674.280000px;}
.y1a{bottom:677.520000px;}
.y39{bottom:695.160000px;}
.y19{bottom:698.400000px;}
.y66{bottom:700.500000px;}
.y38{bottom:715.680000px;}
.y18{bottom:718.920000px;}
.y64{bottom:733.500000px;}
.y37{bottom:736.560000px;}
.y17{bottom:739.800000px;}
.y16{bottom:760.320000px;}
.y36{bottom:761.040000px;}
.y63{bottom:762.120000px;}
.y62{bottom:778.320000px;}
.y15{bottom:781.200000px;}
.y35{bottom:797.040000px;}
.y61{bottom:798.840000px;}
.y14{bottom:801.720000px;}
.y34{bottom:809.280000px;}
.y60{bottom:819.720000px;}
.y13{bottom:822.600000px;}
.y5f{bottom:840.240000px;}
.y12{bottom:843.120000px;}
.y5e{bottom:861.120000px;}
.y11{bottom:864.000000px;}
.y5d{bottom:881.640000px;}
.y10{bottom:884.520000px;}
.y5c{bottom:902.520000px;}
.y95{bottom:905.040000px;}
.yf{bottom:905.400000px;}
.y5b{bottom:923.040000px;}
.y94{bottom:925.560000px;}
.ye{bottom:925.920000px;}
.y5a{bottom:943.920000px;}
.y93{bottom:946.440000px;}
.yd{bottom:946.800000px;}
.y59{bottom:964.440000px;}
.y92{bottom:966.960000px;}
.yc{bottom:967.320000px;}
.y58{bottom:985.320000px;}
.y91{bottom:987.840000px;}
.yb{bottom:992.160000px;}
.y57{bottom:1005.840000px;}
.y90{bottom:1008.360000px;}
.y56{bottom:1026.720000px;}
.ya{bottom:1028.160000px;}
.y8f{bottom:1029.240000px;}
.y9{bottom:1043.640000px;}
.y55{bottom:1047.240000px;}
.y8e{bottom:1049.760000px;}
.y8{bottom:1061.640000px;}
.y54{bottom:1068.120000px;}
.y8d{bottom:1074.600000px;}
.y7{bottom:1079.640000px;}
.y53{bottom:1088.640000px;}
.y52{bottom:1109.520000px;}
.y8c{bottom:1111.320000px;}
.y5{bottom:1116.000000px;}
.y6{bottom:1122.324696px;}
.y30{bottom:1128.960000px;}
.y1{bottom:1138.320000px;}
.y2f{bottom:1143.000000px;}
.h12{height:15.000000px;}
.h11{height:18.000000px;}
.hd{height:20.435625px;}
.hb{height:23.994141px;}
.h3{height:28.704375px;}
.h5{height:31.051240px;}
.hf{height:32.994844px;}
.hc{height:33.598125px;}
.he{height:34.943906px;}
.h8{height:35.175938px;}
.h10{height:40.310156px;}
.h7{height:44.562656px;}
.h6{height:47.988281px;}
.h9{height:48.224531px;}
.h2{height:50.027344px;}
.h4{height:53.332031px;}
.ha{height:57.474844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:135.000000px;}
.w3{width:237.000000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x9{left:6.840072px;}
.x1{left:80.640000px;}
.x6{left:104.360580px;}
.xe{left:107.640000px;}
.xf{left:134.640036px;}
.x8{left:261.000000px;}
.x2{left:316.800000px;}
.x3{left:320.403420px;}
.x7{left:357.591060px;}
.xc{left:390.131280px;}
.xa{left:396.000000px;}
.xd{left:446.152680px;}
.xb{left:652.252320px;}
.x5{left:735.052320px;}
.x4{left:811.665000px;}
@media print{
.v2{vertical-align:-16.640000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls13{letter-spacing:-0.354816pt;}
.ls14{letter-spacing:-0.301056pt;}
.ls11{letter-spacing:-0.215040pt;}
.ls2d{letter-spacing:-0.176640pt;}
.ls16{letter-spacing:-0.141312pt;}
.ls17{letter-spacing:-0.012800pt;}
.ls18{letter-spacing:-0.006400pt;}
.lsd{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.038016pt;}
.ls1{letter-spacing:0.064512pt;}
.lsf{letter-spacing:0.065664pt;}
.lse{letter-spacing:0.086400pt;}
.ls7{letter-spacing:0.097792pt;}
.ls20{letter-spacing:0.109824pt;}
.ls24{letter-spacing:0.112000pt;}
.ls9{letter-spacing:0.138240pt;}
.ls27{letter-spacing:0.143616pt;}
.ls29{letter-spacing:0.173184pt;}
.ls1b{letter-spacing:0.177408pt;}
.ls1e{letter-spacing:0.194304pt;}
.ls25{letter-spacing:0.198528pt;}
.ls19{letter-spacing:0.206976pt;}
.lsa{letter-spacing:0.207360pt;}
.ls22{letter-spacing:0.211200pt;}
.lsc{letter-spacing:0.213376pt;}
.ls23{letter-spacing:0.213760pt;}
.ls1c{letter-spacing:0.215424pt;}
.lsb{letter-spacing:0.223872pt;}
.ls1a{letter-spacing:0.236544pt;}
.ls2{letter-spacing:0.240768pt;}
.ls1f{letter-spacing:0.244992pt;}
.ls2b{letter-spacing:0.253440pt;}
.ls4{letter-spacing:0.258560pt;}
.ls1d{letter-spacing:0.278784pt;}
.ls15{letter-spacing:0.283008pt;}
.ls21{letter-spacing:0.308352pt;}
.ls2a{letter-spacing:0.316800pt;}
.ls12{letter-spacing:0.346368pt;}
.ls26{letter-spacing:0.354816pt;}
.ls28{letter-spacing:0.384384pt;}
.ls8{letter-spacing:0.421376pt;}
.ls6{letter-spacing:0.639488pt;}
.ls5{letter-spacing:1.116800pt;}
.ls10{letter-spacing:1.600000pt;}
.ls3{letter-spacing:4.445440pt;}
.ls2c{letter-spacing:48.770560pt;}
.ws13{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.993600pt;}
.ws4{word-spacing:-15.987200pt;}
.ws0{word-spacing:-14.590464pt;}
.ws2{word-spacing:-11.983488pt;}
.ws10{word-spacing:-10.876800pt;}
.ws11{word-spacing:-10.804992pt;}
.wsf{word-spacing:-10.733184pt;}
.wse{word-spacing:-10.703616pt;}
.wsa{word-spacing:-0.321024pt;}
.wsc{word-spacing:-0.287232pt;}
.ws6{word-spacing:-0.278784pt;}
.ws9{word-spacing:-0.266112pt;}
.ws8{word-spacing:-0.257664pt;}
.ws5{word-spacing:-0.249216pt;}
.wsb{word-spacing:-0.236544pt;}
.ws7{word-spacing:-0.219648pt;}
.ws12{word-spacing:-0.064000pt;}
.wsd{word-spacing:0.000000pt;}
.ws1{word-spacing:0.301056pt;}
._1{margin-left:-0.918400pt;}
._0{width:0.898560pt;}
._9{width:1.900800pt;}
._b{width:2.972800pt;}
._6{width:3.872000pt;}
._7{width:4.902400pt;}
._8{width:6.348800pt;}
._10{width:7.622400pt;}
._f{width:8.608000pt;}
._11{width:9.766400pt;}
._c{width:11.552000pt;}
._12{width:12.940800pt;}
._4{width:14.412800pt;}
._a{width:16.992000pt;}
._13{width:17.926400pt;}
._d{width:19.712000pt;}
._3{width:22.777600pt;}
._5{width:23.993600pt;}
._e{width:26.662400pt;}
._2{width:27.693568pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:32.000000pt;}
.fs1{font-size:34.560000pt;}
.fs2{font-size:41.411763pt;}
.fs4{font-size:42.240000pt;}
.fs3{font-size:53.760000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y6d{bottom:2.400000pt;}
.y6f{bottom:3.466667pt;}
.y69{bottom:5.066667pt;}
.y67{bottom:5.173333pt;}
.y65{bottom:5.280000pt;}
.y75{bottom:5.706667pt;}
.y73{bottom:5.813333pt;}
.y71{bottom:5.920000pt;}
.y33{bottom:99.520000pt;}
.y4{bottom:100.480000pt;}
.y3{bottom:113.280000pt;}
.y51{bottom:116.480000pt;}
.y32{bottom:118.080000pt;}
.y2{bottom:126.400000pt;}
.y31{bottom:135.040000pt;}
.y2e{bottom:142.080000pt;}
.y8b{bottom:151.040000pt;}
.y2d{bottom:158.720000pt;}
.y2c{bottom:167.040000pt;}
.y8a{bottom:170.560000pt;}
.y2b{bottom:183.680000pt;}
.y89{bottom:190.080000pt;}
.y2a{bottom:194.560000pt;}
.y50{bottom:194.880000pt;}
.y29{bottom:209.280000pt;}
.y4f{bottom:213.120000pt;}
.y4e{bottom:231.680000pt;}
.y88{bottom:246.400000pt;}
.y4d{bottom:249.920000pt;}
.y87{bottom:265.920000pt;}
.y4c{bottom:268.480000pt;}
.y86{bottom:285.440000pt;}
.y4b{bottom:286.720000pt;}
.y85{bottom:304.960000pt;}
.y4a{bottom:305.280000pt;}
.y49{bottom:323.520000pt;}
.y84{bottom:324.800000pt;}
.y48{bottom:342.080000pt;}
.y83{bottom:343.040000pt;}
.y28{bottom:344.960000pt;}
.y47{bottom:360.320000pt;}
.y82{bottom:362.560000pt;}
.y27{bottom:363.200000pt;}
.y76{bottom:376.000000pt;}
.y46{bottom:378.880000pt;}
.y26{bottom:381.760000pt;}
.y81{bottom:382.080000pt;}
.y74{bottom:393.333333pt;}
.y45{bottom:397.120000pt;}
.y25{bottom:400.000000pt;}
.y80{bottom:401.600000pt;}
.y44{bottom:415.680000pt;}
.y24{bottom:418.240000pt;}
.y7f{bottom:421.120000pt;}
.y72{bottom:422.666667pt;}
.y43{bottom:433.920000pt;}
.y23{bottom:436.800000pt;}
.y7e{bottom:440.960000pt;}
.y70{bottom:452.000000pt;}
.y42{bottom:452.480000pt;}
.y22{bottom:455.040000pt;}
.y7d{bottom:459.200000pt;}
.y41{bottom:470.720000pt;}
.y21{bottom:473.600000pt;}
.y7c{bottom:477.760000pt;}
.y6e{bottom:481.333333pt;}
.y40{bottom:488.960000pt;}
.y20{bottom:491.840000pt;}
.y7b{bottom:496.000000pt;}
.y3f{bottom:507.520000pt;}
.y6c{bottom:508.000000pt;}
.y1f{bottom:510.400000pt;}
.y7a{bottom:517.760000pt;}
.y3e{bottom:525.760000pt;}
.y1e{bottom:528.640000pt;}
.y6b{bottom:534.666667pt;}
.y3d{bottom:544.320000pt;}
.y1d{bottom:547.200000pt;}
.y79{bottom:550.080000pt;}
.y3c{bottom:562.560000pt;}
.y78{bottom:562.880000pt;}
.y6a{bottom:564.000000pt;}
.y1c{bottom:565.440000pt;}
.y77{bottom:573.440000pt;}
.y3b{bottom:581.120000pt;}
.y1b{bottom:584.000000pt;}
.y68{bottom:593.333333pt;}
.y3a{bottom:599.360000pt;}
.y1a{bottom:602.240000pt;}
.y39{bottom:617.920000pt;}
.y19{bottom:620.800000pt;}
.y66{bottom:622.666667pt;}
.y38{bottom:636.160000pt;}
.y18{bottom:639.040000pt;}
.y64{bottom:652.000000pt;}
.y37{bottom:654.720000pt;}
.y17{bottom:657.600000pt;}
.y16{bottom:675.840000pt;}
.y36{bottom:676.480000pt;}
.y63{bottom:677.440000pt;}
.y62{bottom:691.840000pt;}
.y15{bottom:694.400000pt;}
.y35{bottom:708.480000pt;}
.y61{bottom:710.080000pt;}
.y14{bottom:712.640000pt;}
.y34{bottom:719.360000pt;}
.y60{bottom:728.640000pt;}
.y13{bottom:731.200000pt;}
.y5f{bottom:746.880000pt;}
.y12{bottom:749.440000pt;}
.y5e{bottom:765.440000pt;}
.y11{bottom:768.000000pt;}
.y5d{bottom:783.680000pt;}
.y10{bottom:786.240000pt;}
.y5c{bottom:802.240000pt;}
.y95{bottom:804.480000pt;}
.yf{bottom:804.800000pt;}
.y5b{bottom:820.480000pt;}
.y94{bottom:822.720000pt;}
.ye{bottom:823.040000pt;}
.y5a{bottom:839.040000pt;}
.y93{bottom:841.280000pt;}
.yd{bottom:841.600000pt;}
.y59{bottom:857.280000pt;}
.y92{bottom:859.520000pt;}
.yc{bottom:859.840000pt;}
.y58{bottom:875.840000pt;}
.y91{bottom:878.080000pt;}
.yb{bottom:881.920000pt;}
.y57{bottom:894.080000pt;}
.y90{bottom:896.320000pt;}
.y56{bottom:912.640000pt;}
.ya{bottom:913.920000pt;}
.y8f{bottom:914.880000pt;}
.y9{bottom:927.680000pt;}
.y55{bottom:930.880000pt;}
.y8e{bottom:933.120000pt;}
.y8{bottom:943.680000pt;}
.y54{bottom:949.440000pt;}
.y8d{bottom:955.200000pt;}
.y7{bottom:959.680000pt;}
.y53{bottom:967.680000pt;}
.y52{bottom:986.240000pt;}
.y8c{bottom:987.840000pt;}
.y5{bottom:992.000000pt;}
.y6{bottom:997.621952pt;}
.y30{bottom:1003.520000pt;}
.y1{bottom:1011.840000pt;}
.y2f{bottom:1016.000000pt;}
.h12{height:13.333333pt;}
.h11{height:16.000000pt;}
.hd{height:18.165000pt;}
.hb{height:21.328125pt;}
.h3{height:25.515000pt;}
.h5{height:27.601102pt;}
.hf{height:29.328750pt;}
.hc{height:29.865000pt;}
.he{height:31.061250pt;}
.h8{height:31.267500pt;}
.h10{height:35.831250pt;}
.h7{height:39.611250pt;}
.h6{height:42.656250pt;}
.h9{height:42.866250pt;}
.h2{height:44.468750pt;}
.h4{height:47.406250pt;}
.ha{height:51.088750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:120.000000pt;}
.w3{width:210.666667pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x9{left:6.080064pt;}
.x1{left:71.680000pt;}
.x6{left:92.764960pt;}
.xe{left:95.680000pt;}
.xf{left:119.680032pt;}
.x8{left:232.000000pt;}
.x2{left:281.600000pt;}
.x3{left:284.803040pt;}
.x7{left:317.858720pt;}
.xc{left:346.783360pt;}
.xa{left:352.000000pt;}
.xd{left:396.580160pt;}
.xb{left:579.779840pt;}
.x5{left:653.379840pt;}
.x4{left:721.480000pt;}
}




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