
    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_5892d9ec63ac1551a7bd1814.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bea0b19fb4a9b7dc115e7a60.woff')format("woff");}.ff2{font-family:ff2;line-height:0.936035;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_997daa3e00868b211086590f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.923828;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_39e51815acb84753e71aa4c3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.923828;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_dfb963657a2fcb02dd480764.woff')format("woff");}.ff5{font-family:ff5;line-height:0.928711;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_0e284efb52ba3d29e84ac8d9.woff')format("woff");}.ff6{font-family:ff6;line-height:0.750000;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_e745e1a5dd332778aeae7ddf.woff')format("woff");}.ff7{font-family:ff7;line-height:0.916504;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_37c676efac8b42299192aec1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.973145;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_a7cc34659ad226d88c402bff.woff')format("woff");}.ff9{font-family:ff9;line-height:0.936035;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_67bddbe1996465cb913dc7bb.woff')format("woff");}.ffa{font-family:ffa;line-height:0.909180;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_e06a0b0da26cec14d6fdeae2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.973145;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_e8394b3a906e343307077539.woff')format("woff");}.ffc{font-family:ffc;line-height:0.928223;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_7786f66dd8854f5246600384.woff')format("woff");}.ffd{font-family:ffd;line-height:0.916504;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_df631eb9c1b601e4f9c81a7a.woff')format("woff");}.ffe{font-family:ffe;line-height:0.916504;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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(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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:69.120000px;}
.v1{vertical-align:155.520000px;}
.ls1b{letter-spacing:-16.200003px;}
.lsd{letter-spacing:-8.784002px;}
.ls16{letter-spacing:-5.784001px;}
.ls1f{letter-spacing:-5.520001px;}
.ls1c{letter-spacing:-4.056001px;}
.ls14{letter-spacing:-3.912001px;}
.ls11{letter-spacing:-3.624001px;}
.ls23{letter-spacing:-3.148799px;}
.ls20{letter-spacing:-3.000001px;}
.lsb{letter-spacing:-0.456000px;}
.lsf{letter-spacing:-0.408000px;}
.ls12{letter-spacing:-0.336000px;}
.ls2e{letter-spacing:-0.302400px;}
.ls13{letter-spacing:-0.288000px;}
.ls2d{letter-spacing:-0.273600px;}
.ls22{letter-spacing:-0.268800px;}
.ls15{letter-spacing:-0.264000px;}
.lsa{letter-spacing:-0.216000px;}
.ls25{letter-spacing:-0.211200px;}
.ls19{letter-spacing:-0.198000px;}
.ls32{letter-spacing:-0.180000px;}
.ls31{letter-spacing:-0.172800px;}
.ls18{letter-spacing:-0.118800px;}
.ls17{letter-spacing:-0.098400px;}
.lsc{letter-spacing:-0.096000px;}
.ls9{letter-spacing:-0.024000px;}
.ls8{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000012px;}
.lse{letter-spacing:0.096000px;}
.ls2{letter-spacing:0.098400px;}
.ls2f{letter-spacing:0.162000px;}
.ls2c{letter-spacing:0.187200px;}
.ls1e{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.230400px;}
.ls7{letter-spacing:0.282000px;}
.ls1d{letter-spacing:0.288000px;}
.ls30{letter-spacing:0.300000px;}
.ls10{letter-spacing:0.432000px;}
.ls29{letter-spacing:1.176471px;}
.ls26{letter-spacing:3.519999px;}
.ls4{letter-spacing:3.821175px;}
.ls21{letter-spacing:3.952940px;}
.ls24{letter-spacing:4.141175px;}
.ls6{letter-spacing:4.411752px;}
.ls1a{letter-spacing:4.494118px;}
.ls28{letter-spacing:4.564706px;}
.ls2a{letter-spacing:4.611765px;}
.ls27{letter-spacing:4.941177px;}
.ls2b{letter-spacing:4.988236px;}
.ls0{letter-spacing:185.999683px;}
.ls1{letter-spacing:185.999983px;}
.sc_{text-shadow:none;}
.sc6{text-shadow:-0.015em 0 rgb(29,228,104),0 0.015em rgb(29,228,104),0.015em 0 rgb(29,228,104),0 -0.015em  rgb(29,228,104);}
.sc5{text-shadow:-0.015em 0 rgb(243,137,0),0 0.015em rgb(243,137,0),0.015em 0 rgb(243,137,0),0 -0.015em  rgb(243,137,0);}
.sc4{text-shadow:-0.015em 0 rgb(62,81,100),0 0.015em rgb(62,81,100),0.015em 0 rgb(62,81,100),0 -0.015em  rgb(62,81,100);}
.sc3{text-shadow:-0.015em 0 rgb(94,185,155),0 0.015em rgb(94,185,155),0.015em 0 rgb(94,185,155),0 -0.015em  rgb(94,185,155);}
.sc2{text-shadow:-0.015em 0 rgb(33,143,255),0 0.015em rgb(33,143,255),0.015em 0 rgb(33,143,255),0 -0.015em  rgb(33,143,255);}
.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;}
.sc6{-webkit-text-stroke:0.015em rgb(29,228,104);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(243,137,0);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(62,81,100);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(94,185,155);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(33,143,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10{word-spacing:-123.000012px;}
.ws11{word-spacing:-95.238000px;}
.ws1f{word-spacing:-63.764709px;}
.ws12{word-spacing:-63.317650px;}
.ws8{word-spacing:-60.432012px;}
.ws15{word-spacing:-60.288012px;}
.ws16{word-spacing:-60.216012px;}
.ws6{word-spacing:-60.096012px;}
.ws3{word-spacing:-60.000012px;}
.ws20{word-spacing:-60.000003px;}
.ws0{word-spacing:-59.976012px;}
.ws4{word-spacing:-59.904012px;}
.ws1{word-spacing:-59.784012px;}
.wsd{word-spacing:-59.736012px;}
.wsb{word-spacing:-59.712012px;}
.wsa{word-spacing:-59.664012px;}
.ws7{word-spacing:-59.592012px;}
.ws2{word-spacing:-59.544012px;}
.ws18{word-spacing:-57.000011px;}
.ws9{word-spacing:-56.376011px;}
.wsc{word-spacing:-56.088011px;}
.ws14{word-spacing:-55.944011px;}
.ws17{word-spacing:-54.480011px;}
.wse{word-spacing:-54.216011px;}
.ws5{word-spacing:-51.216010px;}
.ws1b{word-spacing:-51.199979px;}
.ws19{word-spacing:-51.011744px;}
.ws1d{word-spacing:-50.879979px;}
.ws1e{word-spacing:-50.578803px;}
.ws24{word-spacing:-47.999988px;}
.ws23{word-spacing:-47.827188px;}
.ws1c{word-spacing:-47.788788px;}
.ws25{word-spacing:-47.711988px;}
.ws1a{word-spacing:-44.851189px;}
.ws13{word-spacing:-43.800009px;}
.wsf{word-spacing:-0.354000px;}
.ws21{word-spacing:-0.331200px;}
.ws27{word-spacing:0.000000px;}
.ws22{word-spacing:0.129600px;}
.ws26{word-spacing:2166.957616px;}
._f{margin-left:-16.200003px;}
._6{margin-left:-14.616517px;}
._a{margin-left:-9.552942px;}
._5{margin-left:-8.202540px;}
._3{margin-left:-6.288001px;}
._1{margin-left:-4.944001px;}
._9{margin-left:-3.942624px;}
._4{margin-left:-2.928001px;}
._0{margin-left:-1.248000px;}
._2{width:1.176000px;}
._d{width:3.153882px;}
._b{width:4.400000px;}
._c{width:5.552941px;}
._e{width:6.708078px;}
._8{width:7.920002px;}
._7{width:9.120002px;}
._10{width:15.840003px;}
.fc7{color:rgb(29,228,104);}
.fc6{color:rgb(243,137,0);}
.fc5{color:rgb(62,81,100);}
.fc4{color:rgb(94,185,155);}
.fc3{color:rgb(33,143,255);}
.fc2{color:rgb(229,38,26);}
.fc1{color:rgb(228,37,27);}
.fc8{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:65.999995px;}
.fs9{font-size:108.000000px;}
.fsa{font-size:119.999995px;}
.fs8{font-size:144.000000px;}
.fs6{font-size:188.235216px;}
.fs7{font-size:191.999952px;}
.fs1{font-size:235.294128px;}
.fs0{font-size:240.000048px;}
.fs4{font-size:353.999952px;}
.fs5{font-size:396.000000px;}
.fs3{font-size:492.000048px;}
.fs2{font-size:600.000048px;}
.y0{bottom:0.000000px;}
.y2f{bottom:68.700000px;}
.y36{bottom:70.140000px;}
.y2e{bottom:140.700000px;}
.y35{bottom:142.140000px;}
.y2d{bottom:212.700000px;}
.y34{bottom:214.140000px;}
.y2c{bottom:284.700000px;}
.y33{bottom:286.140000px;}
.y2b{bottom:356.700000px;}
.y32{bottom:358.140000px;}
.y31{bottom:430.140000px;}
.y54{bottom:449.896800px;}
.y30{bottom:502.140000px;}
.y53{bottom:521.896800px;}
.y1f{bottom:624.900000px;}
.y7{bottom:835.140000px;}
.y6{bottom:907.140000px;}
.y5{bottom:979.140000px;}
.y4{bottom:1051.140000px;}
.y3{bottom:1123.140000px;}
.y2{bottom:1195.140000px;}
.y1{bottom:1267.140000px;}
.y58{bottom:1336.216800px;}
.y1e{bottom:1379.460000px;}
.y57{bottom:1408.216800px;}
.yf{bottom:1565.220000px;}
.y17{bottom:1565.580000px;}
.y5b{bottom:1594.380000px;}
.ye{bottom:1637.220000px;}
.y16{bottom:1637.580000px;}
.yd{bottom:1709.220000px;}
.y15{bottom:1709.580000px;}
.yc{bottom:1781.220000px;}
.y14{bottom:1781.580000px;}
.yb{bottom:1853.220000px;}
.y13{bottom:1853.580000px;}
.y52{bottom:1922.656800px;}
.ya{bottom:1925.220000px;}
.y12{bottom:1925.580000px;}
.y51{bottom:1994.656800px;}
.y9{bottom:1997.220000px;}
.y11{bottom:1997.580000px;}
.y50{bottom:2066.656800px;}
.y8{bottom:2069.896800px;}
.y10{bottom:2070.256800px;}
.y1d{bottom:2167.140000px;}
.y5c{bottom:2332.020000px;}
.y2a{bottom:2376.660000px;}
.y29{bottom:2377.336800px;}
.y27{bottom:2448.660000px;}
.y28{bottom:2449.336800px;}
.y26{bottom:2520.660000px;}
.y25{bottom:2592.660000px;}
.y24{bottom:2664.660000px;}
.y23{bottom:2736.660000px;}
.y22{bottom:2808.660000px;}
.y21{bottom:2880.660000px;}
.y20{bottom:2952.660000px;}
.y56{bottom:3068.536800px;}
.y55{bottom:3140.536800px;}
.y1c{bottom:3252.180000px;}
.y44{bottom:3430.380000px;}
.y43{bottom:3488.700000px;}
.y42{bottom:3545.940000px;}
.y41{bottom:3604.260150px;}
.y5f{bottom:3609.300150px;}
.y5e{bottom:3645.300150px;}
.y40{bottom:3661.140150px;}
.y3f{bottom:3661.698150px;}
.y5d{bottom:3681.300150px;}
.y3e{bottom:3819.540150px;}
.y3d{bottom:3876.780150px;}
.y3c{bottom:3933.660150px;}
.y3b{bottom:3991.980150px;}
.y4f{bottom:4031.940150px;}
.y3a{bottom:4049.220150px;}
.y4e{bottom:4089.180150px;}
.y39{bottom:4107.540150px;}
.y4a{bottom:4141.020150px;}
.y4d{bottom:4147.500150px;}
.y38{bottom:4164.780150px;}
.y37{bottom:4165.338150px;}
.y47{bottom:4193.940150px;}
.y49{bottom:4198.260150px;}
.y48{bottom:4198.818150px;}
.y4c{bottom:4204.380150px;}
.y4b{bottom:4204.938150px;}
.y46{bottom:4250.820150px;}
.y45{bottom:4251.378150px;}
.y1b{bottom:4332.180150px;}
.y5a{bottom:4517.220150px;}
.y1a{bottom:4523.700150px;}
.y59{bottom:4551.780150px;}
.y19{bottom:4692.540150px;}
.y18{bottom:4872.540150px;}
.ha{height:81.685547px;}
.hb{height:89.999996px;}
.h9{height:108.914063px;}
.hc{height:118.619996px;}
.h7{height:141.176412px;}
.h8{height:143.999964px;}
.h2{height:176.470596px;}
.h1{height:180.000036px;}
.h6{height:369.000036px;}
.h5{height:371.882849px;}
.h4{height:421.019964px;}
.h3{height:450.000036px;}
.h0{height:5056.500000px;}
.w0{width:3576.000000px;}
.x0{left:0.000000px;}
.x1e{left:24.288960px;}
.xd{left:72.788850px;}
.x1{left:87.419175px;}
.x1c{left:99.528960px;}
.x1d{left:118.458945px;}
.x14{left:128.451675px;}
.x15{left:141.419160px;}
.x2d{left:150.473100px;}
.x2{left:154.919100px;}
.x19{left:156.719100px;}
.x18{left:178.874100px;}
.x17{left:208.851750px;}
.x1f{left:212.568900px;}
.x16{left:260.106600px;}
.x1a{left:272.096400px;}
.x2e{left:282.990600px;}
.x12{left:308.856600px;}
.x1b{left:402.596400px;}
.x13{left:409.544100px;}
.x30{left:422.452950px;}
.x2f{left:548.317950px;}
.xb{left:611.807400px;}
.xc{left:620.807400px;}
.x22{left:1269.819000px;}
.x20{left:1294.246500px;}
.xe{left:1368.254100px;}
.x37{left:1428.372600px;}
.x2b{left:1525.654500px;}
.x2c{left:1616.839500px;}
.x21{left:1684.014000px;}
.x2a{left:1692.574500px;}
.x34{left:1782.696000px;}
.x10{left:1854.748500px;}
.x11{left:1922.248500px;}
.x25{left:2063.025000px;}
.xf{left:2111.241000px;}
.x31{left:2218.977000px;}
.x33{left:2289.255000px;}
.x23{left:2301.787500px;}
.x5{left:2305.359000px;}
.x7{left:2310.144000px;}
.xa{left:2340.031500px;}
.x35{left:2343.249000px;}
.x9{left:2352.301500px;}
.x36{left:2400.249000px;}
.x4{left:2463.541500px;}
.x24{left:2468.475000px;}
.x32{left:2475.439500px;}
.x6{left:2816.919000px;}
.x28{left:2860.792500px;}
.x29{left:2875.042500px;}
.x8{left:2876.529000px;}
.x3{left:2907.924000px;}
.x26{left:3027.442500px;}
.x27{left:3264.817500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:61.440000pt;}
.v1{vertical-align:138.240000pt;}
.ls1b{letter-spacing:-14.400003pt;}
.lsd{letter-spacing:-7.808002pt;}
.ls16{letter-spacing:-5.141334pt;}
.ls1f{letter-spacing:-4.906668pt;}
.ls1c{letter-spacing:-3.605334pt;}
.ls14{letter-spacing:-3.477334pt;}
.ls11{letter-spacing:-3.221334pt;}
.ls23{letter-spacing:-2.798933pt;}
.ls20{letter-spacing:-2.666667pt;}
.lsb{letter-spacing:-0.405333pt;}
.lsf{letter-spacing:-0.362667pt;}
.ls12{letter-spacing:-0.298667pt;}
.ls2e{letter-spacing:-0.268800pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls2d{letter-spacing:-0.243200pt;}
.ls22{letter-spacing:-0.238933pt;}
.ls15{letter-spacing:-0.234667pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls25{letter-spacing:-0.187733pt;}
.ls19{letter-spacing:-0.176000pt;}
.ls32{letter-spacing:-0.160000pt;}
.ls31{letter-spacing:-0.153600pt;}
.ls18{letter-spacing:-0.105600pt;}
.ls17{letter-spacing:-0.087467pt;}
.lsc{letter-spacing:-0.085333pt;}
.ls9{letter-spacing:-0.021333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000011pt;}
.lse{letter-spacing:0.085333pt;}
.ls2{letter-spacing:0.087467pt;}
.ls2f{letter-spacing:0.144000pt;}
.ls2c{letter-spacing:0.166400pt;}
.ls1e{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.204800pt;}
.ls7{letter-spacing:0.250667pt;}
.ls1d{letter-spacing:0.256000pt;}
.ls30{letter-spacing:0.266667pt;}
.ls10{letter-spacing:0.384000pt;}
.ls29{letter-spacing:1.045752pt;}
.ls26{letter-spacing:3.128888pt;}
.ls4{letter-spacing:3.396600pt;}
.ls21{letter-spacing:3.513724pt;}
.ls24{letter-spacing:3.681044pt;}
.ls6{letter-spacing:3.921558pt;}
.ls1a{letter-spacing:3.994771pt;}
.ls28{letter-spacing:4.057517pt;}
.ls2a{letter-spacing:4.099347pt;}
.ls27{letter-spacing:4.392157pt;}
.ls2b{letter-spacing:4.433987pt;}
.ls0{letter-spacing:165.333052pt;}
.ls1{letter-spacing:165.333318pt;}
.ws10{word-spacing:-109.333344pt;}
.ws11{word-spacing:-84.656000pt;}
.ws1f{word-spacing:-56.679741pt;}
.ws12{word-spacing:-56.282355pt;}
.ws8{word-spacing:-53.717344pt;}
.ws15{word-spacing:-53.589344pt;}
.ws16{word-spacing:-53.525344pt;}
.ws6{word-spacing:-53.418677pt;}
.ws3{word-spacing:-53.333344pt;}
.ws20{word-spacing:-53.333336pt;}
.ws0{word-spacing:-53.312011pt;}
.ws4{word-spacing:-53.248011pt;}
.ws1{word-spacing:-53.141344pt;}
.wsd{word-spacing:-53.098677pt;}
.wsb{word-spacing:-53.077344pt;}
.wsa{word-spacing:-53.034677pt;}
.ws7{word-spacing:-52.970677pt;}
.ws2{word-spacing:-52.928011pt;}
.ws18{word-spacing:-50.666677pt;}
.ws9{word-spacing:-50.112010pt;}
.wsc{word-spacing:-49.856010pt;}
.ws14{word-spacing:-49.728010pt;}
.ws17{word-spacing:-48.426676pt;}
.wse{word-spacing:-48.192010pt;}
.ws5{word-spacing:-45.525342pt;}
.ws1b{word-spacing:-45.511092pt;}
.ws19{word-spacing:-45.343772pt;}
.ws1d{word-spacing:-45.226648pt;}
.ws1e{word-spacing:-44.958936pt;}
.ws24{word-spacing:-42.666656pt;}
.ws23{word-spacing:-42.513056pt;}
.ws1c{word-spacing:-42.478923pt;}
.ws25{word-spacing:-42.410656pt;}
.ws1a{word-spacing:-39.867723pt;}
.ws13{word-spacing:-38.933341pt;}
.wsf{word-spacing:-0.314667pt;}
.ws21{word-spacing:-0.294400pt;}
.ws27{word-spacing:0.000000pt;}
.ws22{word-spacing:0.115200pt;}
.ws26{word-spacing:1926.184547pt;}
._f{margin-left:-14.400003pt;}
._6{margin-left:-12.992460pt;}
._a{margin-left:-8.491504pt;}
._5{margin-left:-7.291147pt;}
._3{margin-left:-5.589334pt;}
._1{margin-left:-4.394668pt;}
._9{margin-left:-3.504555pt;}
._4{margin-left:-2.602667pt;}
._0{margin-left:-1.109334pt;}
._2{width:1.045334pt;}
._d{width:2.803451pt;}
._b{width:3.911111pt;}
._c{width:4.935948pt;}
._e{width:5.962736pt;}
._8{width:7.040001pt;}
._7{width:8.106668pt;}
._10{width:14.080003pt;}
.fsb{font-size:58.666662pt;}
.fs9{font-size:96.000000pt;}
.fsa{font-size:106.666662pt;}
.fs8{font-size:128.000000pt;}
.fs6{font-size:167.320192pt;}
.fs7{font-size:170.666624pt;}
.fs1{font-size:209.150336pt;}
.fs0{font-size:213.333376pt;}
.fs4{font-size:314.666624pt;}
.fs5{font-size:352.000000pt;}
.fs3{font-size:437.333376pt;}
.fs2{font-size:533.333376pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:61.066667pt;}
.y36{bottom:62.346667pt;}
.y2e{bottom:125.066667pt;}
.y35{bottom:126.346667pt;}
.y2d{bottom:189.066667pt;}
.y34{bottom:190.346667pt;}
.y2c{bottom:253.066667pt;}
.y33{bottom:254.346667pt;}
.y2b{bottom:317.066667pt;}
.y32{bottom:318.346667pt;}
.y31{bottom:382.346667pt;}
.y54{bottom:399.908267pt;}
.y30{bottom:446.346667pt;}
.y53{bottom:463.908267pt;}
.y1f{bottom:555.466667pt;}
.y7{bottom:742.346667pt;}
.y6{bottom:806.346667pt;}
.y5{bottom:870.346667pt;}
.y4{bottom:934.346667pt;}
.y3{bottom:998.346667pt;}
.y2{bottom:1062.346667pt;}
.y1{bottom:1126.346667pt;}
.y58{bottom:1187.748267pt;}
.y1e{bottom:1226.186667pt;}
.y57{bottom:1251.748267pt;}
.yf{bottom:1391.306667pt;}
.y17{bottom:1391.626667pt;}
.y5b{bottom:1417.226667pt;}
.ye{bottom:1455.306667pt;}
.y16{bottom:1455.626667pt;}
.yd{bottom:1519.306667pt;}
.y15{bottom:1519.626667pt;}
.yc{bottom:1583.306667pt;}
.y14{bottom:1583.626667pt;}
.yb{bottom:1647.306667pt;}
.y13{bottom:1647.626667pt;}
.y52{bottom:1709.028267pt;}
.ya{bottom:1711.306667pt;}
.y12{bottom:1711.626667pt;}
.y51{bottom:1773.028267pt;}
.y9{bottom:1775.306667pt;}
.y11{bottom:1775.626667pt;}
.y50{bottom:1837.028267pt;}
.y8{bottom:1839.908267pt;}
.y10{bottom:1840.228267pt;}
.y1d{bottom:1926.346667pt;}
.y5c{bottom:2072.906667pt;}
.y2a{bottom:2112.586667pt;}
.y29{bottom:2113.188267pt;}
.y27{bottom:2176.586667pt;}
.y28{bottom:2177.188267pt;}
.y26{bottom:2240.586667pt;}
.y25{bottom:2304.586667pt;}
.y24{bottom:2368.586667pt;}
.y23{bottom:2432.586667pt;}
.y22{bottom:2496.586667pt;}
.y21{bottom:2560.586667pt;}
.y20{bottom:2624.586667pt;}
.y56{bottom:2727.588267pt;}
.y55{bottom:2791.588267pt;}
.y1c{bottom:2890.826667pt;}
.y44{bottom:3049.226667pt;}
.y43{bottom:3101.066667pt;}
.y42{bottom:3151.946667pt;}
.y41{bottom:3203.786800pt;}
.y5f{bottom:3208.266800pt;}
.y5e{bottom:3240.266800pt;}
.y40{bottom:3254.346800pt;}
.y3f{bottom:3254.842800pt;}
.y5d{bottom:3272.266800pt;}
.y3e{bottom:3395.146800pt;}
.y3d{bottom:3446.026800pt;}
.y3c{bottom:3496.586800pt;}
.y3b{bottom:3548.426800pt;}
.y4f{bottom:3583.946800pt;}
.y3a{bottom:3599.306800pt;}
.y4e{bottom:3634.826800pt;}
.y39{bottom:3651.146800pt;}
.y4a{bottom:3680.906800pt;}
.y4d{bottom:3686.666800pt;}
.y38{bottom:3702.026800pt;}
.y37{bottom:3702.522800pt;}
.y47{bottom:3727.946800pt;}
.y49{bottom:3731.786800pt;}
.y48{bottom:3732.282800pt;}
.y4c{bottom:3737.226800pt;}
.y4b{bottom:3737.722800pt;}
.y46{bottom:3778.506800pt;}
.y45{bottom:3779.002800pt;}
.y1b{bottom:3850.826800pt;}
.y5a{bottom:4015.306800pt;}
.y1a{bottom:4021.066800pt;}
.y59{bottom:4046.026800pt;}
.y19{bottom:4171.146800pt;}
.y18{bottom:4331.146800pt;}
.ha{height:72.609375pt;}
.hb{height:79.999997pt;}
.h9{height:96.812500pt;}
.hc{height:105.439997pt;}
.h7{height:125.490144pt;}
.h8{height:127.999968pt;}
.h2{height:156.862752pt;}
.h1{height:160.000032pt;}
.h6{height:328.000032pt;}
.h5{height:330.562532pt;}
.h4{height:374.239968pt;}
.h3{height:400.000032pt;}
.h0{height:4494.666667pt;}
.w0{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x1e{left:21.590187pt;}
.xd{left:64.701200pt;}
.x1{left:77.705933pt;}
.x1c{left:88.470187pt;}
.x1d{left:105.296840pt;}
.x14{left:114.179267pt;}
.x15{left:125.705920pt;}
.x2d{left:133.753867pt;}
.x2{left:137.705867pt;}
.x19{left:139.305867pt;}
.x18{left:158.999200pt;}
.x17{left:185.646000pt;}
.x1f{left:188.950133pt;}
.x16{left:231.205867pt;}
.x1a{left:241.863467pt;}
.x2e{left:251.547200pt;}
.x12{left:274.539200pt;}
.x1b{left:357.863467pt;}
.x13{left:364.039200pt;}
.x30{left:375.513733pt;}
.x2f{left:487.393733pt;}
.xb{left:543.828800pt;}
.xc{left:551.828800pt;}
.x22{left:1128.728000pt;}
.x20{left:1150.441333pt;}
.xe{left:1216.225867pt;}
.x37{left:1269.664533pt;}
.x2b{left:1356.137333pt;}
.x2c{left:1437.190667pt;}
.x21{left:1496.901333pt;}
.x2a{left:1504.510667pt;}
.x34{left:1584.618667pt;}
.x10{left:1648.665333pt;}
.x11{left:1708.665333pt;}
.x25{left:1833.800000pt;}
.xf{left:1876.658667pt;}
.x31{left:1972.424000pt;}
.x33{left:2034.893333pt;}
.x23{left:2046.033333pt;}
.x5{left:2049.208000pt;}
.x7{left:2053.461333pt;}
.xa{left:2080.028000pt;}
.x35{left:2082.888000pt;}
.x9{left:2090.934667pt;}
.x36{left:2133.554667pt;}
.x4{left:2189.814667pt;}
.x24{left:2194.200000pt;}
.x32{left:2200.390667pt;}
.x6{left:2503.928000pt;}
.x28{left:2542.926667pt;}
.x29{left:2555.593333pt;}
.x8{left:2556.914667pt;}
.x3{left:2584.821333pt;}
.x26{left:2691.060000pt;}
.x27{left:2902.060000pt;}
}




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