
    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_5b4e49a478619e15f55c93c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904785;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_0f8739d337cf83bce5df5ce8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.734000;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_780d239ae5c12d4db40a1857.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.951000;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_4be17550384c2768d68a8a0f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.135000;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_6f26514fdc2817d0564909cf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.931000;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_166f569822fe5b2e1ffdab07.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.700000;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_237dffb5bd0966cee1bc6295.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.141000;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_7af2f582cca3f3dde1959557.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.158000;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_3f73e6dbdd99aa89f524eefa.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.158000;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_603a41961319404839e822fa.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.166000;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_f3efd0855daa6bbbe5df9ade.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.725000;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_91f0fa42eaac66b05b23739d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.744000;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_3f73e6dbdd99aa89f524eefa.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.158000;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_116c9c3cde999264496679b6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.904785;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_63c59040b164f7b9c5047689.woff2')format("woff");}.fff{font-family:fff;line-height:0.888672;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_f3efd0855daa6bbbe5df9ade.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.725000;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_d5b23199a4562e1b18b5fabb.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.166000;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_7af2f582cca3f3dde1959557.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.158000;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_3f73e6dbdd99aa89f524eefa.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.158000;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:ff14;src:url('chunks/assets/font_e1367d9e81f085ac1d3bdc9c.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.904785;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:ff15;src:url('chunks/assets/font_7af2f582cca3f3dde1959557.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.158000;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,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);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.200000px;}
.ls9{letter-spacing:-21.384000px;}
.ls7{letter-spacing:-20.736000px;}
.ls8{letter-spacing:-19.926000px;}
.ls6{letter-spacing:-16.767000px;}
.ls16{letter-spacing:-12.276000px;}
.lsb{letter-spacing:-10.044000px;}
.ls1b{letter-spacing:-1.320000px;}
.lsa{letter-spacing:-1.080000px;}
.lsd{letter-spacing:-0.972000px;}
.lsc{letter-spacing:-0.702000px;}
.ls4{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.066000px;}
.ls19{letter-spacing:0.132000px;}
.ls1{letter-spacing:0.162000px;}
.ls0{letter-spacing:0.192000px;}
.ls13{letter-spacing:0.198000px;}
.ls12{letter-spacing:0.264000px;}
.ls15{letter-spacing:0.330000px;}
.ls18{letter-spacing:0.396000px;}
.ls2{letter-spacing:0.432000px;}
.ls17{letter-spacing:0.462000px;}
.lsf{letter-spacing:0.594000px;}
.ls11{letter-spacing:0.660000px;}
.ls1d{letter-spacing:0.858000px;}
.ls1a{letter-spacing:0.990000px;}
.ls1c{letter-spacing:2.640000px;}
.ls5{letter-spacing:10.656000px;}
.ls14{letter-spacing:2071.568400px;}
.lse{letter-spacing:2192.518800px;}
.ls3{letter-spacing:2848.575000px;}
.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;}
}
.ws0{word-spacing:-22.680000px;}
.ws9{word-spacing:-16.500000px;}
.wsa{word-spacing:-14.058000px;}
.wsb{word-spacing:-12.750000px;}
.ws5{word-spacing:-11.340000px;}
.ws7{word-spacing:-6.669000px;}
.ws8{word-spacing:0.000000px;}
.ws1{word-spacing:16.524000px;}
.ws6{word-spacing:20.047500px;}
.ws3{word-spacing:22.842000px;}
.ws2{word-spacing:24.462000px;}
.wsc{word-spacing:24.501900px;}
.wsd{word-spacing:24.502500px;}
.ws4{word-spacing:25.758000px;}
._3{margin-left:-24.000000px;}
._4{margin-left:-22.689600px;}
._5{margin-left:-17.640000px;}
._c{margin-left:-2.202000px;}
._6{margin-left:-1.080000px;}
._8{width:1.572000px;}
._1{width:2.640000px;}
._a{width:3.792000px;}
._2{width:5.328000px;}
._9{width:6.354000px;}
._b{width:7.506000px;}
._d{width:9.618000px;}
._0{width:13.344000px;}
._7{width:15.660000px;}
.fc2{color:rgb(91,136,153);}
.fc1{color:rgb(147,189,232);}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(51,51,51);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:35.100000px;}
.fs7{font-size:40.500000px;}
.fs1{font-size:48.000000px;}
.fsb{font-size:49.500000px;}
.fs9{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fsa{font-size:66.000000px;}
.fsc{font-size:78.000000px;}
.fs3{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y82{bottom:85.039200px;}
.y1{bottom:85.039350px;}
.y2c{bottom:85.039500px;}
.y8{bottom:140.316450px;}
.y5a{bottom:149.223000px;}
.y80{bottom:149.244750px;}
.y7{bottom:153.108450px;}
.ya8{bottom:153.229200px;}
.y59{bottom:170.013000px;}
.y7f{bottom:170.034750px;}
.y6{bottom:172.273800px;}
.ya7{bottom:174.019200px;}
.y58{bottom:190.803000px;}
.y7e{bottom:190.824750px;}
.y5{bottom:191.449800px;}
.y4{bottom:204.241800px;}
.ya6{bottom:205.204200px;}
.y57{bottom:211.593000px;}
.y7d{bottom:211.614750px;}
.y3{bottom:223.417800px;}
.ya5{bottom:225.994200px;}
.y56{bottom:232.383000px;}
.y7c{bottom:232.404750px;}
.y2{bottom:236.209800px;}
.y55{bottom:253.173000px;}
.y7b{bottom:253.194750px;}
.ya4{bottom:257.179200px;}
.y54{bottom:273.963000px;}
.y7a{bottom:273.984750px;}
.ya3{bottom:277.969200px;}
.y53{bottom:294.753000px;}
.y79{bottom:294.774750px;}
.ya2{bottom:309.154200px;}
.y78{bottom:315.564750px;}
.y52{bottom:325.938000px;}
.ya1{bottom:329.944200px;}
.y77{bottom:336.354750px;}
.y51{bottom:346.728000px;}
.ya0{bottom:350.734200px;}
.y76{bottom:357.144750px;}
.y50{bottom:367.518000px;}
.y9f{bottom:381.919200px;}
.y4f{bottom:388.308000px;}
.y75{bottom:388.329750px;}
.y9e{bottom:402.709200px;}
.y4e{bottom:409.098000px;}
.y74{bottom:409.119750px;}
.y4d{bottom:429.888000px;}
.y73{bottom:429.909750px;}
.y9d{bottom:433.894200px;}
.y4c{bottom:450.678000px;}
.y72{bottom:450.699750px;}
.y9c{bottom:454.684200px;}
.y4b{bottom:471.468000px;}
.y71{bottom:471.489750px;}
.y9b{bottom:485.869200px;}
.y4a{bottom:492.258000px;}
.y70{bottom:492.279750px;}
.y9a{bottom:506.659200px;}
.y49{bottom:513.048000px;}
.y6f{bottom:513.069750px;}
.y2a{bottom:524.863200px;}
.y21{bottom:524.872200px;}
.y99{bottom:527.449200px;}
.y48{bottom:533.838000px;}
.y6e{bottom:533.859750px;}
.y29{bottom:540.847200px;}
.y20{bottom:540.856200px;}
.y47{bottom:554.628000px;}
.y6d{bottom:554.649750px;}
.y28{bottom:556.831200px;}
.y98{bottom:558.634200px;}
.y1f{bottom:564.832200px;}
.y27{bottom:572.815200px;}
.y46{bottom:575.418000px;}
.y97{bottom:579.424200px;}
.y6c{bottom:585.834750px;}
.y26{bottom:588.799200px;}
.y45{bottom:596.208000px;}
.y25{bottom:604.783200px;}
.y6b{bottom:606.624750px;}
.y96{bottom:610.609200px;}
.y24{bottom:620.767200px;}
.yb2{bottom:627.392850px;}
.y44{bottom:627.393000px;}
.y6a{bottom:627.414750px;}
.y95{bottom:631.399200px;}
.y23{bottom:636.751200px;}
.yb1{bottom:648.182850px;}
.y43{bottom:648.183000px;}
.y69{bottom:648.204750px;}
.y22{bottom:652.735200px;}
.y42{bottom:668.973000px;}
.y68{bottom:668.994750px;}
.y94{bottom:677.461950px;}
.yb0{bottom:679.367850px;}
.y41{bottom:689.763000px;}
.y67{bottom:689.784750px;}
.y14{bottom:697.153350px;}
.y1e{bottom:697.172700px;}
.yaf{bottom:700.157850px;}
.y40{bottom:710.553000px;}
.y66{bottom:710.574750px;}
.y13{bottom:713.137350px;}
.y1d{bottom:713.156700px;}
.y1c{bottom:729.140700px;}
.yae{bottom:731.342850px;}
.y3f{bottom:731.343000px;}
.y65{bottom:731.364750px;}
.y12{bottom:737.113350px;}
.y1b{bottom:745.124700px;}
.yad{bottom:752.132850px;}
.y3e{bottom:752.133000px;}
.y1a{bottom:761.108700px;}
.y93{bottom:762.527850px;}
.y64{bottom:762.549750px;}
.y3d{bottom:772.923000px;}
.y19{bottom:777.092700px;}
.y92{bottom:783.317850px;}
.y63{bottom:783.339750px;}
.y18{bottom:793.076700px;}
.y3c{bottom:793.713000px;}
.y91{bottom:804.107850px;}
.y62{bottom:804.129750px;}
.y17{bottom:809.060700px;}
.y3b{bottom:814.503000px;}
.y90{bottom:824.897850px;}
.y61{bottom:824.919750px;}
.y16{bottom:825.044700px;}
.yac{bottom:835.292850px;}
.y3a{bottom:835.293000px;}
.y15{bottom:841.028700px;}
.y8f{bottom:845.687850px;}
.y60{bottom:845.709750px;}
.yab{bottom:856.082850px;}
.y39{bottom:856.083000px;}
.y8e{bottom:866.477850px;}
.y5f{bottom:866.499750px;}
.y38{bottom:876.873000px;}
.y8d{bottom:887.267850px;}
.y5e{bottom:887.289750px;}
.y37{bottom:897.663000px;}
.y8c{bottom:908.057850px;}
.y5d{bottom:908.079750px;}
.y36{bottom:918.453000px;}
.y5c{bottom:928.869750px;}
.y11{bottom:930.321300px;}
.y8b{bottom:939.242850px;}
.y35{bottom:939.243000px;}
.y5b{bottom:949.638000px;}
.y10{bottom:951.099150px;}
.y8a{bottom:960.032850px;}
.y34{bottom:960.033000px;}
.y89{bottom:980.822850px;}
.y33{bottom:980.823000px;}
.yaa{bottom:991.217850px;}
.yf{bottom:995.493150px;}
.y88{bottom:1001.612850px;}
.y32{bottom:1001.613000px;}
.ya9{bottom:1012.007850px;}
.ye{bottom:1020.693150px;}
.y87{bottom:1022.402850px;}
.y31{bottom:1022.403000px;}
.y86{bottom:1043.192850px;}
.y30{bottom:1043.193000px;}
.y85{bottom:1063.982850px;}
.y2f{bottom:1063.983000px;}
.yd{bottom:1065.078000px;}
.y84{bottom:1084.772850px;}
.y2e{bottom:1084.773000px;}
.yc{bottom:1097.478000px;}
.y83{bottom:1105.562850px;}
.y2d{bottom:1105.563000px;}
.yb{bottom:1162.740450px;}
.y81{bottom:1172.229900px;}
.y2b{bottom:1172.230050px;}
.ya{bottom:1193.880450px;}
.y9{bottom:1207.380450px;}
.h4{height:35.328000px;}
.h2{height:39.159668px;}
.h3{height:43.872000px;}
.hc{height:45.342773px;}
.hb{height:48.042000px;}
.h9{height:50.868000px;}
.h8{height:50.976000px;}
.h7{height:56.520000px;}
.hd{height:62.172000px;}
.he{height:62.259000px;}
.hf{height:73.632000px;}
.h6{height:79.128000px;}
.h5{height:101.952000px;}
.ha{height:1262.834931px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:892.912500px;}
.w0{width:892.914000px;}
.w2{width:892.914002px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.xb{left:93.730800px;}
.x2{left:110.551350px;}
.xf{left:136.057350px;}
.x3{left:145.195650px;}
.x4{left:151.195650px;}
.xc{left:221.289750px;}
.xd{left:290.345850px;}
.x7{left:323.764200px;}
.x9{left:480.863850px;}
.xa{left:628.829850px;}
.x6{left:636.257850px;}
.x8{left:679.313850px;}
.xe{left:704.014050px;}
.x5{left:733.915650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.400000pt;}
.ls9{letter-spacing:-19.008000pt;}
.ls7{letter-spacing:-18.432000pt;}
.ls8{letter-spacing:-17.712000pt;}
.ls6{letter-spacing:-14.904000pt;}
.ls16{letter-spacing:-10.912000pt;}
.lsb{letter-spacing:-8.928000pt;}
.ls1b{letter-spacing:-1.173333pt;}
.lsa{letter-spacing:-0.960000pt;}
.lsd{letter-spacing:-0.864000pt;}
.lsc{letter-spacing:-0.624000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.058667pt;}
.ls19{letter-spacing:0.117333pt;}
.ls1{letter-spacing:0.144000pt;}
.ls0{letter-spacing:0.170667pt;}
.ls13{letter-spacing:0.176000pt;}
.ls12{letter-spacing:0.234667pt;}
.ls15{letter-spacing:0.293333pt;}
.ls18{letter-spacing:0.352000pt;}
.ls2{letter-spacing:0.384000pt;}
.ls17{letter-spacing:0.410667pt;}
.lsf{letter-spacing:0.528000pt;}
.ls11{letter-spacing:0.586667pt;}
.ls1d{letter-spacing:0.762667pt;}
.ls1a{letter-spacing:0.880000pt;}
.ls1c{letter-spacing:2.346667pt;}
.ls5{letter-spacing:9.472000pt;}
.ls14{letter-spacing:1841.394133pt;}
.lse{letter-spacing:1948.905600pt;}
.ls3{letter-spacing:2532.066667pt;}
.ws0{word-spacing:-20.160000pt;}
.ws9{word-spacing:-14.666667pt;}
.wsa{word-spacing:-12.496000pt;}
.wsb{word-spacing:-11.333333pt;}
.ws5{word-spacing:-10.080000pt;}
.ws7{word-spacing:-5.928000pt;}
.ws8{word-spacing:0.000000pt;}
.ws1{word-spacing:14.688000pt;}
.ws6{word-spacing:17.820000pt;}
.ws3{word-spacing:20.304000pt;}
.ws2{word-spacing:21.744000pt;}
.wsc{word-spacing:21.779467pt;}
.wsd{word-spacing:21.780000pt;}
.ws4{word-spacing:22.896000pt;}
._3{margin-left:-21.333333pt;}
._4{margin-left:-20.168533pt;}
._5{margin-left:-15.680000pt;}
._c{margin-left:-1.957333pt;}
._6{margin-left:-0.960000pt;}
._8{width:1.397333pt;}
._1{width:2.346667pt;}
._a{width:3.370667pt;}
._2{width:4.736000pt;}
._9{width:5.648000pt;}
._b{width:6.672000pt;}
._d{width:8.549333pt;}
._0{width:11.861333pt;}
._7{width:13.920000pt;}
.fs8{font-size:31.200000pt;}
.fs7{font-size:36.000000pt;}
.fs1{font-size:42.666667pt;}
.fsb{font-size:44.000000pt;}
.fs9{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fsa{font-size:58.666667pt;}
.fsc{font-size:69.333333pt;}
.fs3{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y82{bottom:75.590400pt;}
.y1{bottom:75.590533pt;}
.y2c{bottom:75.590667pt;}
.y8{bottom:124.725733pt;}
.y5a{bottom:132.642667pt;}
.y80{bottom:132.662000pt;}
.y7{bottom:136.096400pt;}
.ya8{bottom:136.203733pt;}
.y59{bottom:151.122667pt;}
.y7f{bottom:151.142000pt;}
.y6{bottom:153.132267pt;}
.ya7{bottom:154.683733pt;}
.y58{bottom:169.602667pt;}
.y7e{bottom:169.622000pt;}
.y5{bottom:170.177600pt;}
.y4{bottom:181.548267pt;}
.ya6{bottom:182.403733pt;}
.y57{bottom:188.082667pt;}
.y7d{bottom:188.102000pt;}
.y3{bottom:198.593600pt;}
.ya5{bottom:200.883733pt;}
.y56{bottom:206.562667pt;}
.y7c{bottom:206.582000pt;}
.y2{bottom:209.964267pt;}
.y55{bottom:225.042667pt;}
.y7b{bottom:225.062000pt;}
.ya4{bottom:228.603733pt;}
.y54{bottom:243.522667pt;}
.y7a{bottom:243.542000pt;}
.ya3{bottom:247.083733pt;}
.y53{bottom:262.002667pt;}
.y79{bottom:262.022000pt;}
.ya2{bottom:274.803733pt;}
.y78{bottom:280.502000pt;}
.y52{bottom:289.722667pt;}
.ya1{bottom:293.283733pt;}
.y77{bottom:298.982000pt;}
.y51{bottom:308.202667pt;}
.ya0{bottom:311.763733pt;}
.y76{bottom:317.462000pt;}
.y50{bottom:326.682667pt;}
.y9f{bottom:339.483733pt;}
.y4f{bottom:345.162667pt;}
.y75{bottom:345.182000pt;}
.y9e{bottom:357.963733pt;}
.y4e{bottom:363.642667pt;}
.y74{bottom:363.662000pt;}
.y4d{bottom:382.122667pt;}
.y73{bottom:382.142000pt;}
.y9d{bottom:385.683733pt;}
.y4c{bottom:400.602667pt;}
.y72{bottom:400.622000pt;}
.y9c{bottom:404.163733pt;}
.y4b{bottom:419.082667pt;}
.y71{bottom:419.102000pt;}
.y9b{bottom:431.883733pt;}
.y4a{bottom:437.562667pt;}
.y70{bottom:437.582000pt;}
.y9a{bottom:450.363733pt;}
.y49{bottom:456.042667pt;}
.y6f{bottom:456.062000pt;}
.y2a{bottom:466.545067pt;}
.y21{bottom:466.553067pt;}
.y99{bottom:468.843733pt;}
.y48{bottom:474.522667pt;}
.y6e{bottom:474.542000pt;}
.y29{bottom:480.753067pt;}
.y20{bottom:480.761067pt;}
.y47{bottom:493.002667pt;}
.y6d{bottom:493.022000pt;}
.y28{bottom:494.961067pt;}
.y98{bottom:496.563733pt;}
.y1f{bottom:502.073067pt;}
.y27{bottom:509.169067pt;}
.y46{bottom:511.482667pt;}
.y97{bottom:515.043733pt;}
.y6c{bottom:520.742000pt;}
.y26{bottom:523.377067pt;}
.y45{bottom:529.962667pt;}
.y25{bottom:537.585067pt;}
.y6b{bottom:539.222000pt;}
.y96{bottom:542.763733pt;}
.y24{bottom:551.793067pt;}
.yb2{bottom:557.682533pt;}
.y44{bottom:557.682667pt;}
.y6a{bottom:557.702000pt;}
.y95{bottom:561.243733pt;}
.y23{bottom:566.001067pt;}
.yb1{bottom:576.162533pt;}
.y43{bottom:576.162667pt;}
.y69{bottom:576.182000pt;}
.y22{bottom:580.209067pt;}
.y42{bottom:594.642667pt;}
.y68{bottom:594.662000pt;}
.y94{bottom:602.188400pt;}
.yb0{bottom:603.882533pt;}
.y41{bottom:613.122667pt;}
.y67{bottom:613.142000pt;}
.y14{bottom:619.691867pt;}
.y1e{bottom:619.709067pt;}
.yaf{bottom:622.362533pt;}
.y40{bottom:631.602667pt;}
.y66{bottom:631.622000pt;}
.y13{bottom:633.899867pt;}
.y1d{bottom:633.917067pt;}
.y1c{bottom:648.125067pt;}
.yae{bottom:650.082533pt;}
.y3f{bottom:650.082667pt;}
.y65{bottom:650.102000pt;}
.y12{bottom:655.211867pt;}
.y1b{bottom:662.333067pt;}
.yad{bottom:668.562533pt;}
.y3e{bottom:668.562667pt;}
.y1a{bottom:676.541067pt;}
.y93{bottom:677.802533pt;}
.y64{bottom:677.822000pt;}
.y3d{bottom:687.042667pt;}
.y19{bottom:690.749067pt;}
.y92{bottom:696.282533pt;}
.y63{bottom:696.302000pt;}
.y18{bottom:704.957067pt;}
.y3c{bottom:705.522667pt;}
.y91{bottom:714.762533pt;}
.y62{bottom:714.782000pt;}
.y17{bottom:719.165067pt;}
.y3b{bottom:724.002667pt;}
.y90{bottom:733.242533pt;}
.y61{bottom:733.262000pt;}
.y16{bottom:733.373067pt;}
.yac{bottom:742.482533pt;}
.y3a{bottom:742.482667pt;}
.y15{bottom:747.581067pt;}
.y8f{bottom:751.722533pt;}
.y60{bottom:751.742000pt;}
.yab{bottom:760.962533pt;}
.y39{bottom:760.962667pt;}
.y8e{bottom:770.202533pt;}
.y5f{bottom:770.222000pt;}
.y38{bottom:779.442667pt;}
.y8d{bottom:788.682533pt;}
.y5e{bottom:788.702000pt;}
.y37{bottom:797.922667pt;}
.y8c{bottom:807.162533pt;}
.y5d{bottom:807.182000pt;}
.y36{bottom:816.402667pt;}
.y5c{bottom:825.662000pt;}
.y11{bottom:826.952267pt;}
.y8b{bottom:834.882533pt;}
.y35{bottom:834.882667pt;}
.y5b{bottom:844.122667pt;}
.y10{bottom:845.421467pt;}
.y8a{bottom:853.362533pt;}
.y34{bottom:853.362667pt;}
.y89{bottom:871.842533pt;}
.y33{bottom:871.842667pt;}
.yaa{bottom:881.082533pt;}
.yf{bottom:884.882800pt;}
.y88{bottom:890.322533pt;}
.y32{bottom:890.322667pt;}
.ya9{bottom:899.562533pt;}
.ye{bottom:907.282800pt;}
.y87{bottom:908.802533pt;}
.y31{bottom:908.802667pt;}
.y86{bottom:927.282533pt;}
.y30{bottom:927.282667pt;}
.y85{bottom:945.762533pt;}
.y2f{bottom:945.762667pt;}
.yd{bottom:946.736000pt;}
.y84{bottom:964.242533pt;}
.y2e{bottom:964.242667pt;}
.yc{bottom:975.536000pt;}
.y83{bottom:982.722533pt;}
.y2d{bottom:982.722667pt;}
.yb{bottom:1033.547067pt;}
.y81{bottom:1041.982133pt;}
.y2b{bottom:1041.982267pt;}
.ya{bottom:1061.227067pt;}
.y9{bottom:1073.227067pt;}
.h4{height:31.402667pt;}
.h2{height:34.808594pt;}
.h3{height:38.997333pt;}
.hc{height:40.304688pt;}
.hb{height:42.704000pt;}
.h9{height:45.216000pt;}
.h8{height:45.312000pt;}
.h7{height:50.240000pt;}
.hd{height:55.264000pt;}
.he{height:55.341333pt;}
.hf{height:65.450667pt;}
.h6{height:70.336000pt;}
.h5{height:90.624000pt;}
.ha{height:1122.519939pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.700000pt;}
.w0{width:793.701333pt;}
.w2{width:793.701335pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.xb{left:83.316267pt;}
.x2{left:98.267867pt;}
.xf{left:120.939867pt;}
.x3{left:129.062800pt;}
.x4{left:134.396133pt;}
.xc{left:196.702000pt;}
.xd{left:258.085200pt;}
.x7{left:287.790400pt;}
.x9{left:427.434533pt;}
.xa{left:558.959867pt;}
.x6{left:565.562533pt;}
.x8{left:603.834533pt;}
.xe{left:625.790267pt;}
.x5{left:652.369467pt;}
}




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