
    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_0100fa39cf4885c167312277.woff')format("woff");}.ff1{font-family:ff1;line-height:0.701000;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_6b20090a6635177c30b51264.woff')format("woff");}.ff2{font-family:ff2;line-height:0.898000;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_c1ed57bf6811423c209ca41f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.431000;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_7ccafa3babf9a6a854602f6c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.906000;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_3aecd6c43767ae5664852a41.woff')format("woff");}.ff5{font-family:ff5;line-height:0.923000;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_7f64409bf2236428a32b7c7a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.893000;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_cfc8d79a61b044b1fd7d8e28.woff')format("woff");}.ff7{font-family:ff7;line-height:0.431000;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_72d0c4d5a0c43e6f0938161d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.887000;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_4d357108910e0d6b1a6f0dde.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ec30cac2ed36a82cf5fa784f.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c34f377fc9a66a29c38b7e20.woff')format("woff");}.ffb{font-family:ffb;line-height:1.850000;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_1fc39bb85a1a73a10f9878be.woff')format("woff");}.ffc{font-family:ffc;line-height:0.635000;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_b48e51b635c062889e84c862.woff')format("woff");}.ffd{font-family:ffd;line-height:0.794000;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_293d71fbe564a1eaad740e99.woff')format("woff");}.ffe{font-family:ffe;line-height:0.637000;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.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);}
.me{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.md{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,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);}
.mc{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-22.854000px;}
.v6{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:18.528000px;}
.v5{vertical-align:20.610000px;}
.v1{vertical-align:21.690000px;}
.v3{vertical-align:22.854000px;}
.v7{vertical-align:24.504000px;}
.vb{vertical-align:31.470000px;}
.va{vertical-align:40.440000px;}
.v9{vertical-align:66.354000px;}
.vc{vertical-align:107.358000px;}
.v4{vertical-align:122.538000px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000615px;}
.ls12{letter-spacing:0.002685px;}
.ls3{letter-spacing:2.092146px;}
.ls0{letter-spacing:2.987468px;}
.ls5{letter-spacing:6.395989px;}
.ls11{letter-spacing:7.174438px;}
.ls6{letter-spacing:9.026116px;}
.ls14{letter-spacing:9.958438px;}
.ls7{letter-spacing:9.982525px;}
.lsb{letter-spacing:13.270183px;}
.ls4{letter-spacing:14.704798px;}
.ls2{letter-spacing:16.617617px;}
.lse{letter-spacing:19.952525px;}
.ls15{letter-spacing:23.252708px;}
.lsc{letter-spacing:23.484648px;}
.lsf{letter-spacing:24.926425px;}
.ls10{letter-spacing:33.184425px;}
.ls13{letter-spacing:33.976200px;}
.ls9{letter-spacing:39.068525px;}
.lsa{letter-spacing:59.775600px;}
.ls8{letter-spacing:131.864974px;}
.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;}
}
.ws26{word-spacing:-43.157983px;}
.ws2a{word-spacing:-39.272569px;}
.ws29{word-spacing:-38.937826px;}
.ws2b{word-spacing:-29.015076px;}
.ws34{word-spacing:-17.932800px;}
.ws1{word-spacing:-14.943900px;}
.ws1b{word-spacing:-13.449600px;}
.ws1a{word-spacing:-8.966400px;}
.ws6{word-spacing:-2.151922px;}
.ws24{word-spacing:-1.613941px;}
.ws23{word-spacing:-1.195512px;}
.ws7{word-spacing:-1.016185px;}
.ws1c{word-spacing:-0.657532px;}
.wsc{word-spacing:-0.478205px;}
.ws5{word-spacing:-0.239102px;}
.wse{word-spacing:-0.179327px;}
.ws21{word-spacing:-0.119551px;}
.ws0{word-spacing:-0.103292px;}
.ws3{word-spacing:-0.059776px;}
.ws2{word-spacing:0.000000px;}
.ws20{word-spacing:0.059776px;}
.ws8{word-spacing:0.119551px;}
.ws1d{word-spacing:0.179327px;}
.ws9{word-spacing:0.239102px;}
.ws12{word-spacing:0.298878px;}
.ws22{word-spacing:0.358654px;}
.ws2d{word-spacing:0.478205px;}
.ws1e{word-spacing:1.135736px;}
.ws15{word-spacing:1.195512px;}
.ws2e{word-spacing:1.255288px;}
.ws16{word-spacing:1.733492px;}
.ws28{word-spacing:1.793268px;}
.ws11{word-spacing:2.092146px;}
.ws17{word-spacing:2.151922px;}
.ws30{word-spacing:2.211697px;}
.ws31{word-spacing:2.510575px;}
.wsd{word-spacing:2.570351px;}
.ws32{word-spacing:2.929004px;}
.wsf{word-spacing:3.706087px;}
.ws13{word-spacing:3.885414px;}
.ws14{word-spacing:4.483170px;}
.ws10{word-spacing:4.602721px;}
.ws4{word-spacing:5.559131px;}
.ws36{word-spacing:6.874194px;}
.ws33{word-spacing:7.232848px;}
.ws19{word-spacing:7.470163px;}
.ws1f{word-spacing:7.591501px;}
.ws18{word-spacing:8.249033px;}
.ws35{word-spacing:11.058486px;}
.ws2c{word-spacing:13.210408px;}
.ws27{word-spacing:13.270183px;}
.ws2f{word-spacing:14.884124px;}
.ws25{word-spacing:16.527128px;}
.wsb{word-spacing:44.831700px;}
.wsa{word-spacing:53.798400px;}
._0{margin-left:-8.779854px;}
._12{margin-left:-7.173072px;}
._13{margin-left:-5.977560px;}
._3{margin-left:-4.782048px;}
._4{margin-left:-3.466985px;}
._1{margin-left:-2.211697px;}
._8{margin-left:-1.075961px;}
._11{width:2.978141px;}
._2{width:5.022097px;}
._9{width:13.449510px;}
._6{width:15.123227px;}
._15{width:16.139412px;}
._5{width:18.171782px;}
._7{width:19.187968px;}
._b{width:20.921460px;}
._f{width:22.176748px;}
._c{width:25.225303px;}
._a{width:27.317449px;}
._16{width:28.871615px;}
._e{width:33.115682px;}
._10{width:43.695964px;}
._17{width:57.444352px;}
._d{width:59.775600px;}
._14{width:71.731200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.887800px;}
.fs4{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y46{bottom:63.168000px;}
.y2a{bottom:78.184500px;}
.y29{bottom:93.129000px;}
.y45{bottom:108.000000px;}
.y44{bottom:124.363500px;}
.y43{bottom:140.727000px;}
.y28{bottom:146.460000px;}
.y68{bottom:154.537500px;}
.y42{bottom:157.090500px;}
.y27{bottom:170.277000px;}
.y41{bottom:181.674000px;}
.y26{bottom:186.640500px;}
.y40{bottom:198.037500px;}
.y67{bottom:201.940500px;}
.y25{bottom:203.004000px;}
.y3f{bottom:214.401000px;}
.y24{bottom:227.587500px;}
.y3e{bottom:230.764500px;}
.y23{bottom:243.951000px;}
.y22{bottom:260.314500px;}
.y3d{bottom:268.338000px;}
.y21{bottom:284.898000px;}
.y20{bottom:301.261500px;}
.y1f{bottom:317.625000px;}
.y1e{bottom:333.988500px;}
.y1d{bottom:350.352000px;}
.y7a{bottom:356.413500px;}
.y79{bottom:372.777000px;}
.y1c{bottom:380.968500px;}
.y78{bottom:401.097000px;}
.y1b{bottom:416.620500px;}
.y77{bottom:417.460500px;}
.y76{bottom:445.779000px;}
.y1a{bottom:460.846500px;}
.y75{bottom:474.097500px;}
.y19{bottom:477.210000px;}
.y74{bottom:490.461000px;}
.y18{bottom:493.573500px;}
.y17{bottom:509.937000px;}
.y73{bottom:516.912000px;}
.y66{bottom:517.881000px;}
.y16{bottom:526.300500px;}
.y65{bottom:534.244500px;}
.y15{bottom:542.664000px;}
.y64{bottom:550.608000px;}
.y72{bottom:559.503000px;}
.y63{bottom:566.971500px;}
.y14{bottom:567.247500px;}
.y71{bottom:575.866500px;}
.y62{bottom:583.335000px;}
.y13{bottom:583.611000px;}
.y70{bottom:592.230000px;}
.y61{bottom:599.698500px;}
.y12{bottom:599.974500px;}
.y6f{bottom:608.593500px;}
.y60{bottom:616.062000px;}
.y11{bottom:616.338000px;}
.y6e{bottom:624.957000px;}
.y10{bottom:632.701500px;}
.y5f{bottom:640.645500px;}
.y5e{bottom:657.009000px;}
.y6d{bottom:659.626500px;}
.yf{bottom:663.319500px;}
.y5d{bottom:673.372500px;}
.y3c{bottom:674.202000px;}
.y5c{bottom:689.736000px;}
.y3b{bottom:690.565500px;}
.ye{bottom:698.970000px;}
.y5b{bottom:706.099500px;}
.y3a{bottom:706.929000px;}
.y6c{bottom:711.930000px;}
.y5a{bottom:722.463000px;}
.y39{bottom:723.292500px;}
.y59{bottom:738.826500px;}
.y38{bottom:739.656000px;}
.yd{bottom:751.759500px;}
.y58{bottom:755.190000px;}
.y37{bottom:767.688000px;}
.yc{bottom:768.123000px;}
.y57{bottom:783.348000px;}
.yb{bottom:784.486500px;}
.y36{bottom:797.736000px;}
.ya{bottom:800.850000px;}
.y9{bottom:817.213500px;}
.y56{bottom:818.547000px;}
.y35{bottom:832.534500px;}
.y8{bottom:833.577000px;}
.y55{bottom:841.185000px;}
.y7{bottom:849.940500px;}
.y54{bottom:851.436000px;}
.y6{bottom:866.304000px;}
.y34{bottom:875.340000px;}
.y53{bottom:881.047500px;}
.y52{bottom:886.201500px;}
.y33{bottom:891.703500px;}
.y51{bottom:902.565000px;}
.y5{bottom:902.812500px;}
.y32{bottom:908.067000px;}
.y50{bottom:918.928500px;}
.y31{bottom:932.650500px;}
.y30{bottom:949.014000px;}
.y4f{bottom:964.380000px;}
.y4{bottom:964.585500px;}
.y2f{bottom:965.377500px;}
.y4e{bottom:980.743500px;}
.y3{bottom:980.949000px;}
.y2e{bottom:981.741000px;}
.y6b{bottom:991.383000px;}
.y2{bottom:997.312500px;}
.y6a{bottom:1007.746500px;}
.y2d{bottom:1011.790500px;}
.y4d{bottom:1016.307000px;}
.y49{bottom:1026.420000px;}
.y4c{bottom:1030.789500px;}
.y69{bottom:1032.328500px;}
.y47{bottom:1036.134000px;}
.y4b{bottom:1041.826500px;}
.y1{bottom:1043.239500px;}
.y2c{bottom:1048.692000px;}
.y48{bottom:1053.319500px;}
.y4a{bottom:1055.578500px;}
.y2b{bottom:1065.055500px;}
.hc{height:2.391024px;}
.h7{height:16.677504px;}
.hd{height:28.285733px;}
.h4{height:41.125613px;}
.h3{height:41.364715px;}
.h9{height:41.484266px;}
.h5{height:41.544042px;}
.h2{height:42.078715px;}
.ha{height:44.831700px;}
.h8{height:47.529533px;}
.h6{height:49.637990px;}
.hf{height:50.655750px;}
.h10{height:61.741613px;}
.he{height:65.441700px;}
.h1{height:70.548709px;}
.h11{height:81.924266px;}
.h12{height:109.749024px;}
.hb{height:124.929024px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:162.000000px;}
.x25{left:176.944500px;}
.xa{left:179.733000px;}
.x22{left:185.530500px;}
.x17{left:204.003000px;}
.x6{left:215.335500px;}
.xb{left:246.745500px;}
.x18{left:251.097000px;}
.x1d{left:257.890500px;}
.xd{left:263.536500px;}
.x19{left:266.173500px;}
.x23{left:270.402000px;}
.x1a{left:274.149000px;}
.xe{left:309.609000px;}
.xf{left:329.070000px;}
.x10{left:353.487000px;}
.x11{left:363.171000px;}
.x4{left:375.127500px;}
.x5{left:380.563500px;}
.x1e{left:384.057000px;}
.x20{left:413.620500px;}
.xc{left:414.786000px;}
.x2{left:423.972000px;}
.x1{left:425.946000px;}
.x1f{left:432.879000px;}
.x3{left:438.363000px;}
.x16{left:455.263500px;}
.x14{left:459.165000px;}
.x21{left:460.683000px;}
.x15{left:489.054000px;}
.x1b{left:579.468000px;}
.x12{left:601.966500px;}
.x24{left:608.539500px;}
.x13{left:614.311500px;}
.x26{left:643.836000px;}
.x27{left:667.366500px;}
.x1c{left:673.794000px;}
.x8{left:707.032500px;}
.x9{left:754.095000px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v6{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:16.469333pt;}
.v5{vertical-align:18.320000pt;}
.v1{vertical-align:19.280000pt;}
.v3{vertical-align:20.314667pt;}
.v7{vertical-align:21.781333pt;}
.vb{vertical-align:27.973333pt;}
.va{vertical-align:35.946667pt;}
.v9{vertical-align:58.981333pt;}
.vc{vertical-align:95.429333pt;}
.v4{vertical-align:108.922667pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000546pt;}
.ls12{letter-spacing:0.002387pt;}
.ls3{letter-spacing:1.859685pt;}
.ls0{letter-spacing:2.655527pt;}
.ls5{letter-spacing:5.685324pt;}
.ls11{letter-spacing:6.377279pt;}
.ls6{letter-spacing:8.023214pt;}
.ls14{letter-spacing:8.851945pt;}
.ls7{letter-spacing:8.873356pt;}
.lsb{letter-spacing:11.795718pt;}
.ls4{letter-spacing:13.070931pt;}
.ls2{letter-spacing:14.771215pt;}
.lse{letter-spacing:17.735578pt;}
.ls15{letter-spacing:20.669074pt;}
.lsc{letter-spacing:20.875242pt;}
.lsf{letter-spacing:22.156822pt;}
.ls10{letter-spacing:29.497266pt;}
.ls13{letter-spacing:30.201067pt;}
.ls9{letter-spacing:34.727578pt;}
.lsa{letter-spacing:53.133867pt;}
.ls8{letter-spacing:117.213310pt;}
.ws26{word-spacing:-38.362652pt;}
.ws2a{word-spacing:-34.908950pt;}
.ws29{word-spacing:-34.611401pt;}
.ws2b{word-spacing:-25.791179pt;}
.ws34{word-spacing:-15.940267pt;}
.ws1{word-spacing:-13.283467pt;}
.ws1b{word-spacing:-11.955200pt;}
.ws1a{word-spacing:-7.970133pt;}
.ws6{word-spacing:-1.912819pt;}
.ws24{word-spacing:-1.434614pt;}
.ws23{word-spacing:-1.062677pt;}
.ws7{word-spacing:-0.903276pt;}
.ws1c{word-spacing:-0.584473pt;}
.wsc{word-spacing:-0.425071pt;}
.ws5{word-spacing:-0.212535pt;}
.wse{word-spacing:-0.159402pt;}
.ws21{word-spacing:-0.106268pt;}
.ws0{word-spacing:-0.091815pt;}
.ws3{word-spacing:-0.053134pt;}
.ws2{word-spacing:0.000000pt;}
.ws20{word-spacing:0.053134pt;}
.ws8{word-spacing:0.106268pt;}
.ws1d{word-spacing:0.159402pt;}
.ws9{word-spacing:0.212535pt;}
.ws12{word-spacing:0.265669pt;}
.ws22{word-spacing:0.318803pt;}
.ws2d{word-spacing:0.425071pt;}
.ws1e{word-spacing:1.009543pt;}
.ws15{word-spacing:1.062677pt;}
.ws2e{word-spacing:1.115811pt;}
.ws16{word-spacing:1.540882pt;}
.ws28{word-spacing:1.594016pt;}
.ws11{word-spacing:1.859685pt;}
.ws17{word-spacing:1.912819pt;}
.ws30{word-spacing:1.965953pt;}
.ws31{word-spacing:2.231622pt;}
.wsd{word-spacing:2.284756pt;}
.ws32{word-spacing:2.603559pt;}
.wsf{word-spacing:3.294300pt;}
.ws13{word-spacing:3.453701pt;}
.ws14{word-spacing:3.985040pt;}
.ws10{word-spacing:4.091308pt;}
.ws4{word-spacing:4.941450pt;}
.ws36{word-spacing:6.110395pt;}
.ws33{word-spacing:6.429198pt;}
.ws19{word-spacing:6.640145pt;}
.ws1f{word-spacing:6.748001pt;}
.ws18{word-spacing:7.332474pt;}
.ws35{word-spacing:9.829765pt;}
.ws2c{word-spacing:11.742585pt;}
.ws27{word-spacing:11.795718pt;}
.ws2f{word-spacing:13.230333pt;}
.ws25{word-spacing:14.690780pt;}
.wsb{word-spacing:39.850400pt;}
.wsa{word-spacing:47.820800pt;}
._0{margin-left:-7.804315pt;}
._12{margin-left:-6.376064pt;}
._13{margin-left:-5.313387pt;}
._3{margin-left:-4.250709pt;}
._4{margin-left:-3.081764pt;}
._1{margin-left:-1.965953pt;}
._8{margin-left:-0.956410pt;}
._11{width:2.647236pt;}
._2{width:4.464086pt;}
._9{width:11.955120pt;}
._6{width:13.442868pt;}
._15{width:14.346144pt;}
._5{width:16.152695pt;}
._7{width:17.055971pt;}
._b{width:18.596853pt;}
._f{width:19.712665pt;}
._c{width:22.422492pt;}
._a{width:24.282177pt;}
._16{width:25.663658pt;}
._e{width:29.436162pt;}
._10{width:38.840857pt;}
._17{width:51.061646pt;}
._d{width:53.133867pt;}
._14{width:63.761067pt;}
.fs6{font-size:26.566933pt;}
.fs4{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:56.149333pt;}
.y2a{bottom:69.497333pt;}
.y29{bottom:82.781333pt;}
.y45{bottom:96.000000pt;}
.y44{bottom:110.545333pt;}
.y43{bottom:125.090667pt;}
.y28{bottom:130.186667pt;}
.y68{bottom:137.366667pt;}
.y42{bottom:139.636000pt;}
.y27{bottom:151.357333pt;}
.y41{bottom:161.488000pt;}
.y26{bottom:165.902667pt;}
.y40{bottom:176.033333pt;}
.y67{bottom:179.502667pt;}
.y25{bottom:180.448000pt;}
.y3f{bottom:190.578667pt;}
.y24{bottom:202.300000pt;}
.y3e{bottom:205.124000pt;}
.y23{bottom:216.845333pt;}
.y22{bottom:231.390667pt;}
.y3d{bottom:238.522667pt;}
.y21{bottom:253.242667pt;}
.y20{bottom:267.788000pt;}
.y1f{bottom:282.333333pt;}
.y1e{bottom:296.878667pt;}
.y1d{bottom:311.424000pt;}
.y7a{bottom:316.812000pt;}
.y79{bottom:331.357333pt;}
.y1c{bottom:338.638667pt;}
.y78{bottom:356.530667pt;}
.y1b{bottom:370.329333pt;}
.y77{bottom:371.076000pt;}
.y76{bottom:396.248000pt;}
.y1a{bottom:409.641333pt;}
.y75{bottom:421.420000pt;}
.y19{bottom:424.186667pt;}
.y74{bottom:435.965333pt;}
.y18{bottom:438.732000pt;}
.y17{bottom:453.277333pt;}
.y73{bottom:459.477333pt;}
.y66{bottom:460.338667pt;}
.y16{bottom:467.822667pt;}
.y65{bottom:474.884000pt;}
.y15{bottom:482.368000pt;}
.y64{bottom:489.429333pt;}
.y72{bottom:497.336000pt;}
.y63{bottom:503.974667pt;}
.y14{bottom:504.220000pt;}
.y71{bottom:511.881333pt;}
.y62{bottom:518.520000pt;}
.y13{bottom:518.765333pt;}
.y70{bottom:526.426667pt;}
.y61{bottom:533.065333pt;}
.y12{bottom:533.310667pt;}
.y6f{bottom:540.972000pt;}
.y60{bottom:547.610667pt;}
.y11{bottom:547.856000pt;}
.y6e{bottom:555.517333pt;}
.y10{bottom:562.401333pt;}
.y5f{bottom:569.462667pt;}
.y5e{bottom:584.008000pt;}
.y6d{bottom:586.334667pt;}
.yf{bottom:589.617333pt;}
.y5d{bottom:598.553333pt;}
.y3c{bottom:599.290667pt;}
.y5c{bottom:613.098667pt;}
.y3b{bottom:613.836000pt;}
.ye{bottom:621.306667pt;}
.y5b{bottom:627.644000pt;}
.y3a{bottom:628.381333pt;}
.y6c{bottom:632.826667pt;}
.y5a{bottom:642.189333pt;}
.y39{bottom:642.926667pt;}
.y59{bottom:656.734667pt;}
.y38{bottom:657.472000pt;}
.yd{bottom:668.230667pt;}
.y58{bottom:671.280000pt;}
.y37{bottom:682.389333pt;}
.yc{bottom:682.776000pt;}
.y57{bottom:696.309333pt;}
.yb{bottom:697.321333pt;}
.y36{bottom:709.098667pt;}
.ya{bottom:711.866667pt;}
.y9{bottom:726.412000pt;}
.y56{bottom:727.597333pt;}
.y35{bottom:740.030667pt;}
.y8{bottom:740.957333pt;}
.y55{bottom:747.720000pt;}
.y7{bottom:755.502667pt;}
.y54{bottom:756.832000pt;}
.y6{bottom:770.048000pt;}
.y34{bottom:778.080000pt;}
.y53{bottom:783.153333pt;}
.y52{bottom:787.734667pt;}
.y33{bottom:792.625333pt;}
.y51{bottom:802.280000pt;}
.y5{bottom:802.500000pt;}
.y32{bottom:807.170667pt;}
.y50{bottom:816.825333pt;}
.y31{bottom:829.022667pt;}
.y30{bottom:843.568000pt;}
.y4f{bottom:857.226667pt;}
.y4{bottom:857.409333pt;}
.y2f{bottom:858.113333pt;}
.y4e{bottom:871.772000pt;}
.y3{bottom:871.954667pt;}
.y2e{bottom:872.658667pt;}
.y6b{bottom:881.229333pt;}
.y2{bottom:886.500000pt;}
.y6a{bottom:895.774667pt;}
.y2d{bottom:899.369333pt;}
.y4d{bottom:903.384000pt;}
.y49{bottom:912.373333pt;}
.y4c{bottom:916.257333pt;}
.y69{bottom:917.625333pt;}
.y47{bottom:921.008000pt;}
.y4b{bottom:926.068000pt;}
.y1{bottom:927.324000pt;}
.y2c{bottom:932.170667pt;}
.y48{bottom:936.284000pt;}
.y4a{bottom:938.292000pt;}
.y2b{bottom:946.716000pt;}
.hc{height:2.125355pt;}
.h7{height:14.824448pt;}
.hd{height:25.142874pt;}
.h4{height:36.556100pt;}
.h3{height:36.768636pt;}
.h9{height:36.874903pt;}
.h5{height:36.928037pt;}
.h2{height:37.403302pt;}
.ha{height:39.850400pt;}
.h8{height:42.248474pt;}
.h6{height:44.122658pt;}
.hf{height:45.027333pt;}
.h10{height:54.881434pt;}
.he{height:58.170400pt;}
.h1{height:62.709964pt;}
.h11{height:72.821570pt;}
.h12{height:97.554688pt;}
.hb{height:111.048021pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:144.000000pt;}
.x25{left:157.284000pt;}
.xa{left:159.762667pt;}
.x22{left:164.916000pt;}
.x17{left:181.336000pt;}
.x6{left:191.409333pt;}
.xb{left:219.329333pt;}
.x18{left:223.197333pt;}
.x1d{left:229.236000pt;}
.xd{left:234.254667pt;}
.x19{left:236.598667pt;}
.x23{left:240.357333pt;}
.x1a{left:243.688000pt;}
.xe{left:275.208000pt;}
.xf{left:292.506667pt;}
.x10{left:314.210667pt;}
.x11{left:322.818667pt;}
.x4{left:333.446667pt;}
.x5{left:338.278667pt;}
.x1e{left:341.384000pt;}
.x20{left:367.662667pt;}
.xc{left:368.698667pt;}
.x2{left:376.864000pt;}
.x1{left:378.618667pt;}
.x1f{left:384.781333pt;}
.x3{left:389.656000pt;}
.x16{left:404.678667pt;}
.x14{left:408.146667pt;}
.x21{left:409.496000pt;}
.x15{left:434.714667pt;}
.x1b{left:515.082667pt;}
.x12{left:535.081333pt;}
.x24{left:540.924000pt;}
.x13{left:546.054667pt;}
.x26{left:572.298667pt;}
.x27{left:593.214667pt;}
.x1c{left:598.928000pt;}
.x8{left:628.473333pt;}
.x9{left:670.306667pt;}
}




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