
    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_68ee8e322a05e59146f28334.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_4879fb7d2ed102915c448405.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_a564e038780d212e686a0c94.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.945813;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_257bd70885819485c8c4d2e4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900485;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_1e62422f9c2b0d2a906fe6a1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.990000;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_aa815dc84f4739da3545d375.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_b577882a0edb38ace34a8bb8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.971000;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_96c4e01bb2c0a08bff743a45.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.707000;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_72f42c7dd885774e04ec34dd.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_dc0eb5116b401dab0a14a1e0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.707000;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_83fd9669a123dc81cbcff010.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.940000;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_7dbb6e30c4960f7342142a60.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.692871;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_68ee8e322a05e59146f28334.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.969000;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_4879fb7d2ed102915c448405.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;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_685ad1567fe068a9f84aa4ec.woff2')format("woff");}.fff{font-family:fff;line-height:0.720000;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_aef565e031d360e857ca1bb5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.969000;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;}
.m13{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.240001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240001,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m12{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);}
.v3{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.619400px;}
.v2{vertical-align:23.976000px;}
.ls2{letter-spacing:-0.768000px;}
.ls5{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.144000px;}
.ls1{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws7{word-spacing:-71.928000px;}
.ws12{word-spacing:-71.856000px;}
.ws16{word-spacing:-71.784000px;}
.ws22{word-spacing:-71.712000px;}
.wsf{word-spacing:-60.552000px;}
.ws6{word-spacing:-60.336000px;}
.ws11{word-spacing:-59.616000px;}
.ws31{word-spacing:-58.752000px;}
.ws4{word-spacing:-56.088000px;}
.ws25{word-spacing:-55.872000px;}
.ws1e{word-spacing:-54.360000px;}
.ws15{word-spacing:-53.496000px;}
.ws21{word-spacing:-52.488000px;}
.ws33{word-spacing:-52.200000px;}
.ws14{word-spacing:-47.448000px;}
.ws20{word-spacing:-44.352000px;}
.wsc{word-spacing:-43.848000px;}
.ws29{word-spacing:-43.272000px;}
.ws1b{word-spacing:-40.032000px;}
.ws32{word-spacing:-39.312000px;}
.ws28{word-spacing:-33.768000px;}
.ws30{word-spacing:-33.264000px;}
.ws1a{word-spacing:-31.752000px;}
.ws10{word-spacing:-31.536000px;}
.ws17{word-spacing:-31.176000px;}
.ws2e{word-spacing:-30.384000px;}
.ws2c{word-spacing:-28.944000px;}
.ws13{word-spacing:-27.144000px;}
.ws2a{word-spacing:-25.776000px;}
.ws2f{word-spacing:-25.056000px;}
.wse{word-spacing:-21.960000px;}
.ws19{word-spacing:-21.672000px;}
.ws24{word-spacing:-20.592000px;}
.ws18{word-spacing:-20.232000px;}
.ws8{word-spacing:-15.000000px;}
.ws5{word-spacing:-13.500000px;}
.ws1d{word-spacing:-10.913760px;}
.ws23{word-spacing:-9.936000px;}
.wsd{word-spacing:-9.360000px;}
.ws2b{word-spacing:-7.920000px;}
.ws2{word-spacing:-5.680800px;}
.ws26{word-spacing:-3.168000px;}
.ws9{word-spacing:0.000000px;}
.wsb{word-spacing:0.720000px;}
.ws27{word-spacing:11.160000px;}
.ws1c{word-spacing:16.344000px;}
.ws2d{word-spacing:26.928000px;}
.ws1f{word-spacing:32.688000px;}
.ws0{word-spacing:33.621000px;}
.ws1{word-spacing:386.314800px;}
.wsa{word-spacing:1699.977600px;}
._11{margin-left:-18.297231px;}
._b{margin-left:-15.048000px;}
._e{margin-left:-13.759200px;}
._2{margin-left:-12.744000px;}
._5{margin-left:-11.304000px;}
._6{margin-left:-9.936000px;}
._13{margin-left:-8.928000px;}
._4{margin-left:-7.920000px;}
._3{margin-left:-6.624000px;}
._7{margin-left:-5.184000px;}
._a{margin-left:-4.032000px;}
._c{margin-left:-2.664000px;}
._9{margin-left:-1.080000px;}
._1{width:1.152000px;}
._f{width:2.304000px;}
._10{width:4.320000px;}
._0{width:6.256800px;}
._d{width:7.848000px;}
._12{width:9.936000px;}
._8{width:66.319200px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.976000px;}
.fs7{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.438750px;}
.y30{bottom:64.760550px;}
.y2f{bottom:65.586600px;}
.y83{bottom:93.960150px;}
.y5b{bottom:94.351200px;}
.y82{bottom:116.460150px;}
.y5a{bottom:116.851200px;}
.y25{bottom:135.493050px;}
.y81{bottom:138.960150px;}
.y59{bottom:139.351200px;}
.y24{bottom:157.993050px;}
.y80{bottom:161.460150px;}
.y58{bottom:161.851200px;}
.y23{bottom:180.493050px;}
.y7f{bottom:183.960150px;}
.y57{bottom:184.351200px;}
.y22{bottom:202.993050px;}
.y7e{bottom:206.460150px;}
.y56{bottom:206.851200px;}
.y21{bottom:225.493050px;}
.y7d{bottom:228.960150px;}
.y55{bottom:229.351200px;}
.y20{bottom:247.993050px;}
.y7c{bottom:251.460150px;}
.y54{bottom:251.851200px;}
.y1f{bottom:270.493050px;}
.y7b{bottom:273.960150px;}
.y53{bottom:274.351200px;}
.y1e{bottom:292.993050px;}
.y7a{bottom:296.460150px;}
.y52{bottom:296.851200px;}
.y1d{bottom:315.493050px;}
.y79{bottom:318.960150px;}
.y51{bottom:319.351200px;}
.y1c{bottom:337.993050px;}
.y78{bottom:341.460150px;}
.y50{bottom:341.851200px;}
.y1b{bottom:360.493050px;}
.y77{bottom:363.960150px;}
.y4f{bottom:364.351200px;}
.y1a{bottom:382.993050px;}
.y76{bottom:386.460150px;}
.y4e{bottom:386.851200px;}
.y19{bottom:405.493050px;}
.y75{bottom:408.960150px;}
.y4d{bottom:409.351200px;}
.y18{bottom:427.993050px;}
.y74{bottom:431.460150px;}
.y4c{bottom:431.851200px;}
.y17{bottom:450.493050px;}
.y73{bottom:453.960150px;}
.y4b{bottom:454.351200px;}
.y2e{bottom:456.139950px;}
.y72{bottom:476.460150px;}
.y4a{bottom:476.851200px;}
.y2d{bottom:478.639950px;}
.y16{bottom:495.493050px;}
.y71{bottom:498.960150px;}
.y49{bottom:499.351200px;}
.y2c{bottom:501.139950px;}
.y15{bottom:517.993050px;}
.y85{bottom:521.460150px;}
.y48{bottom:521.851200px;}
.y14{bottom:540.493050px;}
.y2b{bottom:541.639950px;}
.y70{bottom:543.960150px;}
.y47{bottom:544.351200px;}
.y86{bottom:544.860150px;}
.y13{bottom:562.993050px;}
.y6f{bottom:566.460150px;}
.y46{bottom:566.851200px;}
.y12{bottom:585.493050px;}
.y2a{bottom:586.639950px;}
.y6e{bottom:588.960150px;}
.y45{bottom:589.351200px;}
.y11{bottom:607.993050px;}
.y6d{bottom:611.460150px;}
.y44{bottom:611.851200px;}
.y29{bottom:627.139950px;}
.y10{bottom:630.493050px;}
.y6c{bottom:633.960150px;}
.y43{bottom:634.351200px;}
.yf{bottom:652.993050px;}
.y6b{bottom:656.460150px;}
.y42{bottom:656.851200px;}
.y28{bottom:663.139950px;}
.ye{bottom:675.493050px;}
.y6a{bottom:678.960150px;}
.y41{bottom:679.351200px;}
.yd{bottom:697.993050px;}
.y27{bottom:699.139950px;}
.y69{bottom:701.460150px;}
.y40{bottom:701.851200px;}
.yc{bottom:720.493050px;}
.y68{bottom:723.960150px;}
.y3f{bottom:724.351200px;}
.y26{bottom:735.139950px;}
.yb{bottom:742.993050px;}
.y67{bottom:746.460150px;}
.y3e{bottom:746.851200px;}
.ya{bottom:765.493050px;}
.y66{bottom:768.960150px;}
.y3d{bottom:769.351200px;}
.y9{bottom:787.993050px;}
.y65{bottom:791.460150px;}
.y3c{bottom:791.851200px;}
.y8{bottom:810.493050px;}
.y64{bottom:813.960150px;}
.y3b{bottom:814.351200px;}
.y7{bottom:832.993050px;}
.y63{bottom:836.460150px;}
.y3a{bottom:836.851200px;}
.y62{bottom:858.960150px;}
.y39{bottom:859.351200px;}
.y6{bottom:877.988550px;}
.y61{bottom:881.460150px;}
.y38{bottom:881.851200px;}
.y84{bottom:887.454000px;}
.y5{bottom:898.993050px;}
.y60{bottom:903.960150px;}
.y37{bottom:904.351200px;}
.y4{bottom:919.993050px;}
.y5f{bottom:926.460150px;}
.y36{bottom:926.851200px;}
.y5e{bottom:948.960150px;}
.y35{bottom:949.351200px;}
.y3{bottom:969.493050px;}
.y5d{bottom:971.460150px;}
.y34{bottom:971.851200px;}
.y5c{bottom:993.960150px;}
.y33{bottom:994.351200px;}
.y32{bottom:1024.374150px;}
.y2{bottom:1027.506750px;}
.y31{bottom:1039.374150px;}
.h11{height:29.383200px;}
.he{height:34.176000px;}
.hd{height:34.560000px;}
.hf{height:37.494141px;}
.h9{height:40.634766px;}
.ha{height:41.660156px;}
.hc{height:42.000000px;}
.hb{height:42.720000px;}
.h6{height:46.200000px;}
.h7{height:50.400000px;}
.h3{height:52.492611px;}
.h10{height:53.358600px;}
.h8{height:53.359200px;}
.h2{height:53.467611px;}
.h5{height:54.600000px;}
.h4{height:63.000000px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.xa{left:63.779550px;}
.x2{left:65.202600px;}
.x1{left:71.253150px;}
.x9{left:73.559100px;}
.x14{left:76.987200px;}
.xe{left:78.103800px;}
.xf{left:85.039350px;}
.x7{left:224.187900px;}
.x8{left:245.447700px;}
.x3{left:264.735600px;}
.x10{left:399.935850px;}
.xd{left:412.272150px;}
.x11{left:421.195650px;}
.x12{left:427.187700px;}
.x4{left:470.033700px;}
.x6{left:475.810500px;}
.x5{left:498.547500px;}
.xc{left:614.196150px;}
.xb{left:632.875800px;}
.x15{left:704.461200px;}
.x13{left:710.580450px;}
@media print{
.v3{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.439467pt;}
.v2{vertical-align:21.312000pt;}
.ls2{letter-spacing:-0.682667pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws7{word-spacing:-63.936000pt;}
.ws12{word-spacing:-63.872000pt;}
.ws16{word-spacing:-63.808000pt;}
.ws22{word-spacing:-63.744000pt;}
.wsf{word-spacing:-53.824000pt;}
.ws6{word-spacing:-53.632000pt;}
.ws11{word-spacing:-52.992000pt;}
.ws31{word-spacing:-52.224000pt;}
.ws4{word-spacing:-49.856000pt;}
.ws25{word-spacing:-49.664000pt;}
.ws1e{word-spacing:-48.320000pt;}
.ws15{word-spacing:-47.552000pt;}
.ws21{word-spacing:-46.656000pt;}
.ws33{word-spacing:-46.400000pt;}
.ws14{word-spacing:-42.176000pt;}
.ws20{word-spacing:-39.424000pt;}
.wsc{word-spacing:-38.976000pt;}
.ws29{word-spacing:-38.464000pt;}
.ws1b{word-spacing:-35.584000pt;}
.ws32{word-spacing:-34.944000pt;}
.ws28{word-spacing:-30.016000pt;}
.ws30{word-spacing:-29.568000pt;}
.ws1a{word-spacing:-28.224000pt;}
.ws10{word-spacing:-28.032000pt;}
.ws17{word-spacing:-27.712000pt;}
.ws2e{word-spacing:-27.008000pt;}
.ws2c{word-spacing:-25.728000pt;}
.ws13{word-spacing:-24.128000pt;}
.ws2a{word-spacing:-22.912000pt;}
.ws2f{word-spacing:-22.272000pt;}
.wse{word-spacing:-19.520000pt;}
.ws19{word-spacing:-19.264000pt;}
.ws24{word-spacing:-18.304000pt;}
.ws18{word-spacing:-17.984000pt;}
.ws8{word-spacing:-13.333333pt;}
.ws5{word-spacing:-12.000000pt;}
.ws1d{word-spacing:-9.701120pt;}
.ws23{word-spacing:-8.832000pt;}
.wsd{word-spacing:-8.320000pt;}
.ws2b{word-spacing:-7.040000pt;}
.ws2{word-spacing:-5.049600pt;}
.ws26{word-spacing:-2.816000pt;}
.ws9{word-spacing:0.000000pt;}
.wsb{word-spacing:0.640000pt;}
.ws27{word-spacing:9.920000pt;}
.ws1c{word-spacing:14.528000pt;}
.ws2d{word-spacing:23.936000pt;}
.ws1f{word-spacing:29.056000pt;}
.ws0{word-spacing:29.885333pt;}
.ws1{word-spacing:343.390933pt;}
.wsa{word-spacing:1511.091200pt;}
._11{margin-left:-16.264205pt;}
._b{margin-left:-13.376000pt;}
._e{margin-left:-12.230400pt;}
._2{margin-left:-11.328000pt;}
._5{margin-left:-10.048000pt;}
._6{margin-left:-8.832000pt;}
._13{margin-left:-7.936000pt;}
._4{margin-left:-7.040000pt;}
._3{margin-left:-5.888000pt;}
._7{margin-left:-4.608000pt;}
._a{margin-left:-3.584000pt;}
._c{margin-left:-2.368000pt;}
._9{margin-left:-0.960000pt;}
._1{width:1.024000pt;}
._f{width:2.048000pt;}
._10{width:3.840000pt;}
._0{width:5.561600pt;}
._d{width:6.976000pt;}
._12{width:8.832000pt;}
._8{width:58.950400pt;}
.fs6{font-size:37.312000pt;}
.fs7{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.390000pt;}
.y30{bottom:57.564933pt;}
.y2f{bottom:58.299200pt;}
.y83{bottom:83.520133pt;}
.y5b{bottom:83.867733pt;}
.y82{bottom:103.520133pt;}
.y5a{bottom:103.867733pt;}
.y25{bottom:120.438267pt;}
.y81{bottom:123.520133pt;}
.y59{bottom:123.867733pt;}
.y24{bottom:140.438267pt;}
.y80{bottom:143.520133pt;}
.y58{bottom:143.867733pt;}
.y23{bottom:160.438267pt;}
.y7f{bottom:163.520133pt;}
.y57{bottom:163.867733pt;}
.y22{bottom:180.438267pt;}
.y7e{bottom:183.520133pt;}
.y56{bottom:183.867733pt;}
.y21{bottom:200.438267pt;}
.y7d{bottom:203.520133pt;}
.y55{bottom:203.867733pt;}
.y20{bottom:220.438267pt;}
.y7c{bottom:223.520133pt;}
.y54{bottom:223.867733pt;}
.y1f{bottom:240.438267pt;}
.y7b{bottom:243.520133pt;}
.y53{bottom:243.867733pt;}
.y1e{bottom:260.438267pt;}
.y7a{bottom:263.520133pt;}
.y52{bottom:263.867733pt;}
.y1d{bottom:280.438267pt;}
.y79{bottom:283.520133pt;}
.y51{bottom:283.867733pt;}
.y1c{bottom:300.438267pt;}
.y78{bottom:303.520133pt;}
.y50{bottom:303.867733pt;}
.y1b{bottom:320.438267pt;}
.y77{bottom:323.520133pt;}
.y4f{bottom:323.867733pt;}
.y1a{bottom:340.438267pt;}
.y76{bottom:343.520133pt;}
.y4e{bottom:343.867733pt;}
.y19{bottom:360.438267pt;}
.y75{bottom:363.520133pt;}
.y4d{bottom:363.867733pt;}
.y18{bottom:380.438267pt;}
.y74{bottom:383.520133pt;}
.y4c{bottom:383.867733pt;}
.y17{bottom:400.438267pt;}
.y73{bottom:403.520133pt;}
.y4b{bottom:403.867733pt;}
.y2e{bottom:405.457733pt;}
.y72{bottom:423.520133pt;}
.y4a{bottom:423.867733pt;}
.y2d{bottom:425.457733pt;}
.y16{bottom:440.438267pt;}
.y71{bottom:443.520133pt;}
.y49{bottom:443.867733pt;}
.y2c{bottom:445.457733pt;}
.y15{bottom:460.438267pt;}
.y85{bottom:463.520133pt;}
.y48{bottom:463.867733pt;}
.y14{bottom:480.438267pt;}
.y2b{bottom:481.457733pt;}
.y70{bottom:483.520133pt;}
.y47{bottom:483.867733pt;}
.y86{bottom:484.320133pt;}
.y13{bottom:500.438267pt;}
.y6f{bottom:503.520133pt;}
.y46{bottom:503.867733pt;}
.y12{bottom:520.438267pt;}
.y2a{bottom:521.457733pt;}
.y6e{bottom:523.520133pt;}
.y45{bottom:523.867733pt;}
.y11{bottom:540.438267pt;}
.y6d{bottom:543.520133pt;}
.y44{bottom:543.867733pt;}
.y29{bottom:557.457733pt;}
.y10{bottom:560.438267pt;}
.y6c{bottom:563.520133pt;}
.y43{bottom:563.867733pt;}
.yf{bottom:580.438267pt;}
.y6b{bottom:583.520133pt;}
.y42{bottom:583.867733pt;}
.y28{bottom:589.457733pt;}
.ye{bottom:600.438267pt;}
.y6a{bottom:603.520133pt;}
.y41{bottom:603.867733pt;}
.yd{bottom:620.438267pt;}
.y27{bottom:621.457733pt;}
.y69{bottom:623.520133pt;}
.y40{bottom:623.867733pt;}
.yc{bottom:640.438267pt;}
.y68{bottom:643.520133pt;}
.y3f{bottom:643.867733pt;}
.y26{bottom:653.457733pt;}
.yb{bottom:660.438267pt;}
.y67{bottom:663.520133pt;}
.y3e{bottom:663.867733pt;}
.ya{bottom:680.438267pt;}
.y66{bottom:683.520133pt;}
.y3d{bottom:683.867733pt;}
.y9{bottom:700.438267pt;}
.y65{bottom:703.520133pt;}
.y3c{bottom:703.867733pt;}
.y8{bottom:720.438267pt;}
.y64{bottom:723.520133pt;}
.y3b{bottom:723.867733pt;}
.y7{bottom:740.438267pt;}
.y63{bottom:743.520133pt;}
.y3a{bottom:743.867733pt;}
.y62{bottom:763.520133pt;}
.y39{bottom:763.867733pt;}
.y6{bottom:780.434267pt;}
.y61{bottom:783.520133pt;}
.y38{bottom:783.867733pt;}
.y84{bottom:788.848000pt;}
.y5{bottom:799.104933pt;}
.y60{bottom:803.520133pt;}
.y37{bottom:803.867733pt;}
.y4{bottom:817.771600pt;}
.y5f{bottom:823.520133pt;}
.y36{bottom:823.867733pt;}
.y5e{bottom:843.520133pt;}
.y35{bottom:843.867733pt;}
.y3{bottom:861.771600pt;}
.y5d{bottom:863.520133pt;}
.y34{bottom:863.867733pt;}
.y5c{bottom:883.520133pt;}
.y33{bottom:883.867733pt;}
.y32{bottom:910.554800pt;}
.y2{bottom:913.339333pt;}
.y31{bottom:923.888133pt;}
.h11{height:26.118400pt;}
.he{height:30.378667pt;}
.hd{height:30.720000pt;}
.hf{height:33.328125pt;}
.h9{height:36.119792pt;}
.ha{height:37.031250pt;}
.hc{height:37.333333pt;}
.hb{height:37.973333pt;}
.h6{height:41.066667pt;}
.h7{height:44.800000pt;}
.h3{height:46.660099pt;}
.h10{height:47.429867pt;}
.h8{height:47.430400pt;}
.h2{height:47.526765pt;}
.h5{height:48.533333pt;}
.h4{height:56.000000pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.xa{left:56.692933pt;}
.x2{left:57.957867pt;}
.x1{left:63.336133pt;}
.x9{left:65.385867pt;}
.x14{left:68.433067pt;}
.xe{left:69.425600pt;}
.xf{left:75.590533pt;}
.x7{left:199.278133pt;}
.x8{left:218.175733pt;}
.x3{left:235.320533pt;}
.x10{left:355.498533pt;}
.xd{left:366.464133pt;}
.x11{left:374.396133pt;}
.x12{left:379.722400pt;}
.x4{left:417.807733pt;}
.x6{left:422.942667pt;}
.x5{left:443.153333pt;}
.xc{left:545.952133pt;}
.xb{left:562.556267pt;}
.x15{left:626.187733pt;}
.x13{left:631.627067pt;}
}




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