
    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_4c07dde5685525ccc782dede.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a8c6538e10ae7767b52f811d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.611000;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_f55d3dfb8bcfae0fd1aaa3b7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899000;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_3bf8d5483063f52892113fb4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.106000;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_ac6ccecd9ed5a578a5f6cd3a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.482000;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_33660eb56fccd16d4d9d589b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.889000;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_6d4e52c4e52573328703f9d4.woff')format("woff");}.ff7{font-family:ff7;line-height:0.234000;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_131bfc90e381266905fba6ce.woff')format("woff");}.ff8{font-family:ff8;line-height:0.726190;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;}
.m5{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);}
.m11{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m26{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);}
.m1c{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);}
.m8{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);}
.m7{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);}
.mf{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m1e{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m6{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.me{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);}
.ma{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);}
.m9{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);}
.m18{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m20{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m1f{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);}
.m3{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);}
.m24{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);}
.m25{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m16{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.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.v3{vertical-align:-10.566000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.148000px;}
.v2{vertical-align:21.696000px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.004200px;}
.ls6{letter-spacing:7.794758px;}
.ls8{letter-spacing:8.208538px;}
.ls9{letter-spacing:8.824200px;}
.lsd{letter-spacing:9.114538px;}
.lsc{letter-spacing:9.154200px;}
.ls5{letter-spacing:9.181555px;}
.lsb{letter-spacing:9.570538px;}
.lsa{letter-spacing:9.616200px;}
.lsf{letter-spacing:9.870538px;}
.lse{letter-spacing:10.699832px;}
.ls2{letter-spacing:13.230538px;}
.ls1{letter-spacing:13.276200px;}
.ls10{letter-spacing:20.383480px;}
.ls0{letter-spacing:21.520292px;}
.ls4{letter-spacing:57.395700px;}
.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;}
}
.ws2f{word-spacing:-21.136705px;}
.ws6e{word-spacing:-17.932800px;}
.wse{word-spacing:-14.943900px;}
.ws26{word-spacing:-10.424891px;}
.ws3d{word-spacing:-6.685500px;}
.ws28{word-spacing:-5.308087px;}
.ws29{word-spacing:-5.212445px;}
.ws4a{word-spacing:-5.023500px;}
.ws2c{word-spacing:-3.777827px;}
.ws41{word-spacing:-3.526760px;}
.ws30{word-spacing:-3.347442px;}
.ws4e{word-spacing:-2.929004px;}
.ws3e{word-spacing:-2.570351px;}
.ws18{word-spacing:-2.510575px;}
.ws27{word-spacing:-2.438851px;}
.ws16{word-spacing:-2.391024px;}
.ws40{word-spacing:-2.271473px;}
.ws52{word-spacing:-2.092146px;}
.ws69{word-spacing:-2.032370px;}
.ws68{word-spacing:-1.972595px;}
.ws51{word-spacing:-1.853044px;}
.ws5c{word-spacing:-1.673717px;}
.ws4b{word-spacing:-1.554166px;}
.ws24{word-spacing:-1.482439px;}
.ws4f{word-spacing:-1.434614px;}
.ws20{word-spacing:-1.374839px;}
.ws7b{word-spacing:-1.291162px;}
.ws60{word-spacing:-1.255288px;}
.ws37{word-spacing:-1.075961px;}
.ws62{word-spacing:-0.896634px;}
.ws1e{word-spacing:-0.777083px;}
.ws53{word-spacing:-0.717307px;}
.ws8{word-spacing:-0.358654px;}
.ws3{word-spacing:-0.298878px;}
.ws78{word-spacing:-0.268992px;}
.ws5d{word-spacing:-0.239102px;}
.ws73{word-spacing:-0.215194px;}
.ws17{word-spacing:-0.191282px;}
.ws7{word-spacing:-0.179327px;}
.ws5{word-spacing:-0.119551px;}
.ws1{word-spacing:-0.086077px;}
.wsc{word-spacing:-0.059776px;}
.ws70{word-spacing:-0.053798px;}
.ws0{word-spacing:0.000000px;}
.ws9{word-spacing:0.059776px;}
.ws7f{word-spacing:0.107597px;}
.ws15{word-spacing:0.119551px;}
.ws80{word-spacing:0.161395px;}
.wsa{word-spacing:0.179327px;}
.ws21{word-spacing:0.239102px;}
.ws76{word-spacing:0.268992px;}
.ws39{word-spacing:0.298878px;}
.ws59{word-spacing:0.418429px;}
.ws19{word-spacing:0.537980px;}
.ws2b{word-spacing:0.573847px;}
.ws45{word-spacing:0.717307px;}
.ws3f{word-spacing:0.777083px;}
.wsb{word-spacing:0.836858px;}
.ws44{word-spacing:1.016185px;}
.ws1b{word-spacing:1.075961px;}
.ws4d{word-spacing:1.195512px;}
.ws31{word-spacing:1.386797px;}
.ws7c{word-spacing:1.398758px;}
.ws5e{word-spacing:1.434614px;}
.ws11{word-spacing:1.554166px;}
.ws13{word-spacing:1.613941px;}
.ws58{word-spacing:1.673717px;}
.ws1c{word-spacing:1.733492px;}
.ws46{word-spacing:1.972595px;}
.wsd{word-spacing:2.032370px;}
.ws6a{word-spacing:2.211697px;}
.ws77{word-spacing:2.259533px;}
.ws55{word-spacing:2.450800px;}
.ws5a{word-spacing:2.510575px;}
.ws6{word-spacing:2.570351px;}
.ws12{word-spacing:2.689902px;}
.ws79{word-spacing:2.689920px;}
.wsf{word-spacing:2.869229px;}
.ws48{word-spacing:2.929004px;}
.ws6c{word-spacing:2.988780px;}
.ws4{word-spacing:3.048556px;}
.ws10{word-spacing:3.168107px;}
.ws22{word-spacing:3.407209px;}
.ws3a{word-spacing:3.586536px;}
.ws3c{word-spacing:3.646312px;}
.ws54{word-spacing:3.706087px;}
.ws1f{word-spacing:3.945190px;}
.ws61{word-spacing:4.004965px;}
.ws35{word-spacing:4.064741px;}
.ws43{word-spacing:4.184292px;}
.ws6f{word-spacing:4.196275px;}
.ws49{word-spacing:4.303843px;}
.ws14{word-spacing:4.542946px;}
.ws36{word-spacing:4.782048px;}
.ws38{word-spacing:4.901599px;}
.ws81{word-spacing:4.949453px;}
.ws23{word-spacing:5.021150px;}
.ws3b{word-spacing:5.200477px;}
.ws4c{word-spacing:5.439580px;}
.ws34{word-spacing:5.678682px;}
.ws42{word-spacing:5.738458px;}
.ws6b{word-spacing:5.798233px;}
.ws71{word-spacing:5.892605px;}
.ws50{word-spacing:6.156887px;}
.ws5f{word-spacing:6.336214px;}
.ws32{word-spacing:6.635092px;}
.ws57{word-spacing:6.754643px;}
.ws5b{word-spacing:7.292623px;}
.ws33{word-spacing:7.950155px;}
.ws7a{word-spacing:8.123558px;}
.ws1a{word-spacing:8.189257px;}
.ws63{word-spacing:9.803198px;}
.ws56{word-spacing:11.357364px;}
.ws47{word-spacing:11.417140px;}
.ws64{word-spacing:12.552876px;}
.ws7d{word-spacing:13.395802px;}
.ws7e{word-spacing:13.503398px;}
.ws67{word-spacing:13.509286px;}
.ws83{word-spacing:13.557197px;}
.ws82{word-spacing:15.386342px;}
.ws2e{word-spacing:15.876439px;}
.ws6d{word-spacing:18.291334px;}
.ws2a{word-spacing:25.982270px;}
.ws66{word-spacing:27.915205px;}
.ws2d{word-spacing:29.484356px;}
.ws25{word-spacing:30.620270px;}
.ws65{word-spacing:31.501741px;}
.ws72{word-spacing:32.870822px;}
.ws1d{word-spacing:44.831700px;}
.ws2{word-spacing:53.798400px;}
.ws74{word-spacing:57.295296px;}
.ws75{word-spacing:84.624883px;}
._20{margin-left:-9.097881px;}
._3{margin-left:-7.962163px;}
._2{margin-left:-5.738496px;}
._5{margin-left:-4.722272px;}
._9{margin-left:-3.407209px;}
._1{margin-left:-2.155050px;}
._0{margin-left:-1.032924px;}
._19{width:2.199748px;}
._15{width:4.112572px;}
._1d{width:5.344198px;}
._13{width:6.647063px;}
._16{width:7.794758px;}
._11{width:8.894632px;}
._1c{width:10.711814px;}
._f{width:12.493100px;}
._c{width:13.631965px;}
._24{width:14.701669px;}
._8{width:15.720983px;}
._6{width:16.856719px;}
._d{width:17.872904px;}
._7{width:19.011769px;}
._e{width:20.144377px;}
._a{width:21.343018px;}
._21{width:23.312484px;}
._22{width:24.806874px;}
._29{width:25.879706px;}
._25{width:27.735878px;}
._23{width:29.409595px;}
._1a{width:31.848520px;}
._26{width:35.207828px;}
._1f{width:38.504348px;}
._14{width:41.699563px;}
._27{width:43.217759px;}
._12{width:44.234055px;}
._17{width:46.529444px;}
._2d{width:51.111594px;}
._28{width:53.275235px;}
._18{width:56.428308px;}
._b{width:59.775600px;}
._1e{width:60.971265px;}
._10{width:63.123192px;}
._1b{width:64.940375px;}
._4{width:71.731200px;}
._2c{width:77.093107px;}
._2b{width:80.105818px;}
._2a{width:239.402880px;}
.fc3{color:rgb(0,0,178);}
.fc2{color:rgb(0,204,0);}
.fc1{color:rgb(178,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs5{font-size:44.233800px;}
.fs7{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y2a{bottom:108.000000px;}
.y29{bottom:122.197500px;}
.y42{bottom:125.932500px;}
.y28{bottom:126.537000px;}
.y41{bottom:143.865000px;}
.y27{bottom:154.023000px;}
.y40{bottom:161.799000px;}
.yb9{bottom:162.697500px;}
.yde{bottom:165.631500px;}
.y26{bottom:171.955500px;}
.y3f{bottom:179.731500px;}
.yb8{bottom:180.630000px;}
.ydd{bottom:182.070000px;}
.y25{bottom:189.889500px;}
.y3e{bottom:197.664000px;}
.ydc{bottom:198.508500px;}
.yb7{bottom:198.562500px;}
.y24{bottom:207.822000px;}
.ydb{bottom:214.947000px;}
.y3d{bottom:215.596500px;}
.yb6{bottom:216.496500px;}
.yda{bottom:231.385500px;}
.y3c{bottom:233.529000px;}
.yb5{bottom:234.429000px;}
.y23{bottom:238.084500px;}
.yd9{bottom:247.824000px;}
.y69{bottom:251.461500px;}
.yb4{bottom:252.361500px;}
.y3b{bottom:267.772500px;}
.y22{bottom:268.348500px;}
.y68{bottom:269.395500px;}
.yd8{bottom:270.240000px;}
.yb3{bottom:270.294000px;}
.yd7{bottom:286.677000px;}
.y67{bottom:287.328000px;}
.yb2{bottom:288.226500px;}
.yd6{bottom:303.115500px;}
.y66{bottom:305.260500px;}
.yb1{bottom:306.159000px;}
.y21{bottom:317.620500px;}
.yd5{bottom:319.554000px;}
.y65{bottom:323.193000px;}
.yb0{bottom:324.093000px;}
.y3a{bottom:325.573500px;}
.y20{bottom:335.553000px;}
.yd4{bottom:335.992500px;}
.y64{bottom:341.125500px;}
.yaf{bottom:342.025500px;}
.y39{bottom:343.507500px;}
.y1f{bottom:353.485500px;}
.yd3{bottom:358.408500px;}
.y63{bottom:359.058000px;}
.yae{bottom:359.958000px;}
.y38{bottom:361.440000px;}
.y1e{bottom:371.418000px;}
.yd2{bottom:374.847000px;}
.y62{bottom:376.992000px;}
.yad{bottom:377.890500px;}
.y37{bottom:379.372500px;}
.y1d{bottom:389.350500px;}
.yd1{bottom:391.285500px;}
.y88{bottom:394.924500px;}
.yac{bottom:395.823000px;}
.y36{bottom:397.305000px;}
.y61{bottom:405.456000px;}
.y1c{bottom:407.283000px;}
.yd0{bottom:407.724000px;}
.y87{bottom:412.857000px;}
.yab{bottom:413.755500px;}
.y35{bottom:415.237500px;}
.ycf{bottom:424.162500px;}
.y1b{bottom:425.217000px;}
.y86{bottom:430.789500px;}
.yaa{bottom:431.689500px;}
.y60{bottom:434.416500px;}
.y1a{bottom:443.149500px;}
.yce{bottom:446.578500px;}
.y85{bottom:448.722000px;}
.y34{bottom:449.481000px;}
.ya9{bottom:449.622000px;}
.y19{bottom:461.082000px;}
.ycd{bottom:463.017000px;}
.ya8{bottom:467.554500px;}
.y84{bottom:467.623500px;}
.y18{bottom:479.014500px;}
.y5f{bottom:479.913000px;}
.ycc{bottom:485.433000px;}
.y83{bottom:485.556000px;}
.y17{bottom:496.947000px;}
.ya7{bottom:497.283000px;}
.y5e{bottom:497.845500px;}
.ycb{bottom:501.870000px;}
.y82{bottom:503.488500px;}
.y33{bottom:507.282000px;}
.y16{bottom:514.879500px;}
.y5d{bottom:515.778000px;}
.yca{bottom:518.308500px;}
.y81{bottom:521.422500px;}
.y32{bottom:525.216000px;}
.y15{bottom:532.813500px;}
.y5c{bottom:533.710500px;}
.yc9{bottom:534.747000px;}
.y80{bottom:539.355000px;}
.ya6{bottom:545.005500px;}
.y14{bottom:550.746000px;}
.yc8{bottom:557.163000px;}
.y7f{bottom:557.287500px;}
.y31{bottom:559.458000px;}
.y5b{bottom:562.671000px;}
.ya5{bottom:562.939500px;}
.y13{bottom:568.678500px;}
.yc7{bottom:573.601500px;}
.y7e{bottom:575.220000px;}
.ya4{bottom:580.872000px;}
.y12{bottom:586.611000px;}
.yc6{bottom:590.040000px;}
.ya3{bottom:598.804500px;}
.y11{bottom:604.543500px;}
.y7d{bottom:605.080500px;}
.y5a{bottom:605.179500px;}
.yc5{bottom:612.456000px;}
.ya2{bottom:616.737000px;}
.y30{bottom:617.260500px;}
.y10{bottom:622.476000px;}
.y59{bottom:623.112000px;}
.ya1{bottom:634.669500px;}
.yc4{bottom:634.872000px;}
.y2f{bottom:635.193000px;}
.yf{bottom:640.410000px;}
.y58{bottom:641.044500px;}
.y7c{bottom:650.194500px;}
.yc3{bottom:651.310500px;}
.ya0{bottom:652.602000px;}
.ye{bottom:658.342500px;}
.y57{bottom:658.977000px;}
.y7b{bottom:668.128500px;}
.y2e{bottom:669.435000px;}
.y9f{bottom:670.536000px;}
.yc2{bottom:673.726500px;}
.yd{bottom:676.275000px;}
.y56{bottom:676.909500px;}
.y7a{bottom:686.061000px;}
.y9e{bottom:688.468500px;}
.yc{bottom:694.207500px;}
.y55{bottom:694.843500px;}
.yc1{bottom:696.142500px;}
.y79{bottom:703.993500px;}
.y9d{bottom:706.401000px;}
.yb{bottom:712.140000px;}
.yc0{bottom:712.581000px;}
.y54{bottom:712.776000px;}
.y78{bottom:721.926000px;}
.y9c{bottom:724.333500px;}
.y2d{bottom:727.237500px;}
.y53{bottom:730.708500px;}
.y77{bottom:739.858500px;}
.y9b{bottom:742.266000px;}
.ya{bottom:742.404000px;}
.ybf{bottom:742.939500px;}
.y2c{bottom:745.170000px;}
.y52{bottom:748.641000px;}
.y76{bottom:757.791000px;}
.y9a{bottom:760.198500px;}
.y2b{bottom:763.102500px;}
.y51{bottom:766.573500px;}
.y75{bottom:775.725000px;}
.y99{bottom:778.132500px;}
.y9{bottom:781.036500px;}
.y50{bottom:784.506000px;}
.ybe{bottom:785.043000px;}
.y74{bottom:793.657500px;}
.y98{bottom:796.065000px;}
.ybd{bottom:801.481500px;}
.y73{bottom:811.590000px;}
.y4f{bottom:813.466500px;}
.y97{bottom:813.997500px;}
.ybc{bottom:817.920000px;}
.y72{bottom:829.522500px;}
.y96{bottom:831.930000px;}
.ybb{bottom:834.358500px;}
.y4e{bottom:842.425500px;}
.y71{bottom:847.455000px;}
.y95{bottom:849.862500px;}
.y8{bottom:856.054500px;}
.yba{bottom:860.884500px;}
.y70{bottom:865.387500px;}
.y94{bottom:867.796500px;}
.y7{bottom:876.976500px;}
.y6f{bottom:883.321500px;}
.y93{bottom:885.729000px;}
.y4d{bottom:891.481500px;}
.y6{bottom:897.897000px;}
.y6e{bottom:901.254000px;}
.y92{bottom:903.661500px;}
.y6d{bottom:919.186500px;}
.y91{bottom:921.594000px;}
.y5{bottom:927.786000px;}
.y4c{bottom:933.325500px;}
.y6c{bottom:937.119000px;}
.y90{bottom:939.526500px;}
.y4b{bottom:947.521500px;}
.y4{bottom:948.706500px;}
.y6b{bottom:955.051500px;}
.y8f{bottom:957.459000px;}
.y4a{bottom:961.719000px;}
.y8e{bottom:975.393000px;}
.y49{bottom:975.915000px;}
.y48{bottom:990.112500px;}
.y8d{bottom:993.325500px;}
.y3{bottom:999.516000px;}
.y47{bottom:1004.308500px;}
.y6a{bottom:1005.055500px;}
.y8c{bottom:1011.258000px;}
.y46{bottom:1018.506000px;}
.y2{bottom:1026.415500px;}
.y8b{bottom:1029.190500px;}
.y45{bottom:1032.702000px;}
.y44{bottom:1046.899500px;}
.y8a{bottom:1047.123000px;}
.y1{bottom:1053.315000px;}
.y43{bottom:1061.095500px;}
.y89{bottom:1065.055500px;}
.h9{height:24.675533px;}
.hd{height:30.558955px;}
.ha{height:32.900573px;}
.hb{height:33.187496px;}
.he{height:36.744307px;}
.hc{height:37.013299px;}
.h6{height:41.125613px;}
.h8{height:41.484266px;}
.h4{height:49.351066px;}
.h5{height:49.781453px;}
.h3{height:51.161299px;}
.h7{height:52.128854px;}
.h2{height:59.737577px;}
.h1{height:71.065171px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:81.000000px;}
.x1c{left:83.926500px;}
.x1b{left:89.904000px;}
.x2a{left:95.944500px;}
.x18{left:97.288500px;}
.x19{left:102.519000px;}
.x1e{left:110.887500px;}
.x1d{left:120.960000px;}
.x11{left:124.057500px;}
.x14{left:131.128500px;}
.x21{left:140.553000px;}
.x15{left:161.415000px;}
.x2{left:165.166500px;}
.x4{left:201.600000px;}
.xa{left:209.238000px;}
.x1{left:245.767500px;}
.x16{left:249.262500px;}
.xb{left:266.146500px;}
.x5{left:274.881000px;}
.x17{left:279.546000px;}
.x3{left:305.299500px;}
.x1f{left:309.505500px;}
.x12{left:354.301500px;}
.x20{left:382.080000px;}
.x13{left:399.300000px;}
.xf{left:407.890500px;}
.x10{left:438.585000px;}
.x6{left:449.845500px;}
.x7{left:460.327500px;}
.x1a{left:476.281500px;}
.x2c{left:483.544500px;}
.x22{left:485.724000px;}
.x2b{left:491.764500px;}
.xd{left:496.746000px;}
.x24{left:506.707500px;}
.x27{left:516.780000px;}
.xc{left:535.857000px;}
.x23{left:543.082500px;}
.x2f{left:554.022000px;}
.x8{left:585.421500px;}
.x29{left:600.300000px;}
.x2e{left:625.735500px;}
.x9{left:627.490500px;}
.x31{left:687.468000px;}
.x25{left:729.861000px;}
.x28{left:775.171500px;}
.x2d{left:783.498000px;}
.x26{left:808.156500px;}
.x30{left:835.251000px;}
@media print{
.v3{vertical-align:-9.392000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.576000pt;}
.v2{vertical-align:19.285333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.003733pt;}
.ls6{letter-spacing:6.928674pt;}
.ls8{letter-spacing:7.296479pt;}
.ls9{letter-spacing:7.843733pt;}
.lsd{letter-spacing:8.101812pt;}
.lsc{letter-spacing:8.137067pt;}
.ls5{letter-spacing:8.161382pt;}
.lsb{letter-spacing:8.507145pt;}
.lsa{letter-spacing:8.547733pt;}
.lsf{letter-spacing:8.773812pt;}
.lse{letter-spacing:9.510962pt;}
.ls2{letter-spacing:11.760479pt;}
.ls1{letter-spacing:11.801067pt;}
.ls10{letter-spacing:18.118649pt;}
.ls0{letter-spacing:19.129149pt;}
.ls4{letter-spacing:51.018400pt;}
.ws2f{word-spacing:-18.788182pt;}
.ws6e{word-spacing:-15.940267pt;}
.wse{word-spacing:-13.283467pt;}
.ws26{word-spacing:-9.266570pt;}
.ws3d{word-spacing:-5.942667pt;}
.ws28{word-spacing:-4.718299pt;}
.ws29{word-spacing:-4.633285pt;}
.ws4a{word-spacing:-4.465333pt;}
.ws2c{word-spacing:-3.358069pt;}
.ws41{word-spacing:-3.134898pt;}
.ws30{word-spacing:-2.975504pt;}
.ws4e{word-spacing:-2.603559pt;}
.ws3e{word-spacing:-2.284756pt;}
.ws18{word-spacing:-2.231622pt;}
.ws27{word-spacing:-2.167867pt;}
.ws16{word-spacing:-2.125355pt;}
.ws40{word-spacing:-2.019087pt;}
.ws52{word-spacing:-1.859685pt;}
.ws69{word-spacing:-1.806551pt;}
.ws68{word-spacing:-1.753418pt;}
.ws51{word-spacing:-1.647150pt;}
.ws5c{word-spacing:-1.487748pt;}
.ws4b{word-spacing:-1.381481pt;}
.ws24{word-spacing:-1.317723pt;}
.ws4f{word-spacing:-1.275213pt;}
.ws20{word-spacing:-1.222079pt;}
.ws7b{word-spacing:-1.147699pt;}
.ws60{word-spacing:-1.115811pt;}
.ws37{word-spacing:-0.956410pt;}
.ws62{word-spacing:-0.797008pt;}
.ws1e{word-spacing:-0.690740pt;}
.ws53{word-spacing:-0.637606pt;}
.ws8{word-spacing:-0.318803pt;}
.ws3{word-spacing:-0.265669pt;}
.ws78{word-spacing:-0.239104pt;}
.ws5d{word-spacing:-0.212535pt;}
.ws73{word-spacing:-0.191283pt;}
.ws17{word-spacing:-0.170029pt;}
.ws7{word-spacing:-0.159402pt;}
.ws5{word-spacing:-0.106268pt;}
.ws1{word-spacing:-0.076513pt;}
.wsc{word-spacing:-0.053134pt;}
.ws70{word-spacing:-0.047821pt;}
.ws0{word-spacing:0.000000pt;}
.ws9{word-spacing:0.053134pt;}
.ws7f{word-spacing:0.095642pt;}
.ws15{word-spacing:0.106268pt;}
.ws80{word-spacing:0.143462pt;}
.wsa{word-spacing:0.159402pt;}
.ws21{word-spacing:0.212535pt;}
.ws76{word-spacing:0.239104pt;}
.ws39{word-spacing:0.265669pt;}
.ws59{word-spacing:0.371937pt;}
.ws19{word-spacing:0.478205pt;}
.ws2b{word-spacing:0.510086pt;}
.ws45{word-spacing:0.637606pt;}
.ws3f{word-spacing:0.690740pt;}
.wsb{word-spacing:0.743874pt;}
.ws44{word-spacing:0.903276pt;}
.ws1b{word-spacing:0.956410pt;}
.ws4d{word-spacing:1.062677pt;}
.ws31{word-spacing:1.232709pt;}
.ws7c{word-spacing:1.243341pt;}
.ws5e{word-spacing:1.275213pt;}
.ws11{word-spacing:1.381481pt;}
.ws13{word-spacing:1.434614pt;}
.ws58{word-spacing:1.487748pt;}
.ws1c{word-spacing:1.540882pt;}
.ws46{word-spacing:1.753418pt;}
.wsd{word-spacing:1.806551pt;}
.ws6a{word-spacing:1.965953pt;}
.ws77{word-spacing:2.008474pt;}
.ws55{word-spacing:2.178489pt;}
.ws5a{word-spacing:2.231622pt;}
.ws6{word-spacing:2.284756pt;}
.ws12{word-spacing:2.391024pt;}
.ws79{word-spacing:2.391040pt;}
.wsf{word-spacing:2.550426pt;}
.ws48{word-spacing:2.603559pt;}
.ws6c{word-spacing:2.656693pt;}
.ws4{word-spacing:2.709827pt;}
.ws10{word-spacing:2.816095pt;}
.ws22{word-spacing:3.028630pt;}
.ws3a{word-spacing:3.188032pt;}
.ws3c{word-spacing:3.241166pt;}
.ws54{word-spacing:3.294300pt;}
.ws1f{word-spacing:3.506835pt;}
.ws61{word-spacing:3.559969pt;}
.ws35{word-spacing:3.613103pt;}
.ws43{word-spacing:3.719371pt;}
.ws6f{word-spacing:3.730022pt;}
.ws49{word-spacing:3.825638pt;}
.ws14{word-spacing:4.038174pt;}
.ws36{word-spacing:4.250709pt;}
.ws38{word-spacing:4.356977pt;}
.ws81{word-spacing:4.399514pt;}
.ws23{word-spacing:4.463245pt;}
.ws3b{word-spacing:4.622646pt;}
.ws4c{word-spacing:4.835182pt;}
.ws34{word-spacing:5.047717pt;}
.ws42{word-spacing:5.100851pt;}
.ws6b{word-spacing:5.153985pt;}
.ws71{word-spacing:5.237871pt;}
.ws50{word-spacing:5.472788pt;}
.ws5f{word-spacing:5.632190pt;}
.ws32{word-spacing:5.897859pt;}
.ws57{word-spacing:6.004127pt;}
.ws5b{word-spacing:6.482332pt;}
.ws33{word-spacing:7.066804pt;}
.ws7a{word-spacing:7.220941pt;}
.ws1a{word-spacing:7.279340pt;}
.ws63{word-spacing:8.713954pt;}
.ws56{word-spacing:10.095435pt;}
.ws47{word-spacing:10.148569pt;}
.ws64{word-spacing:11.158112pt;}
.ws7d{word-spacing:11.907379pt;}
.ws7e{word-spacing:12.003021pt;}
.ws67{word-spacing:12.008254pt;}
.ws83{word-spacing:12.050842pt;}
.ws82{word-spacing:13.676749pt;}
.ws2e{word-spacing:14.112390pt;}
.ws6d{word-spacing:16.258963pt;}
.ws2a{word-spacing:23.095351pt;}
.ws66{word-spacing:24.813516pt;}
.ws2d{word-spacing:26.208317pt;}
.ws25{word-spacing:27.218018pt;}
.ws65{word-spacing:28.001548pt;}
.ws72{word-spacing:29.218509pt;}
.ws1d{word-spacing:39.850400pt;}
.ws2{word-spacing:47.820800pt;}
.ws74{word-spacing:50.929152pt;}
.ws75{word-spacing:75.222118pt;}
._20{margin-left:-8.087005pt;}
._3{margin-left:-7.077478pt;}
._2{margin-left:-5.100885pt;}
._5{margin-left:-4.197575pt;}
._9{margin-left:-3.028630pt;}
._1{margin-left:-1.915600pt;}
._0{margin-left:-0.918155pt;}
._19{width:1.955331pt;}
._15{width:3.655619pt;}
._1d{width:4.750398pt;}
._13{width:5.908501pt;}
._16{width:6.928674pt;}
._11{width:7.906339pt;}
._1c{width:9.521613pt;}
._f{width:11.104978pt;}
._c{width:12.117302pt;}
._24{width:13.068150pt;}
._8{width:13.974207pt;}
._6{width:14.983750pt;}
._d{width:15.887026pt;}
._7{width:16.899350pt;}
._e{width:17.906113pt;}
._a{width:18.971571pt;}
._21{width:20.722208pt;}
._22{width:22.050555pt;}
._29{width:23.004183pt;}
._25{width:24.654114pt;}
._23{width:26.141862pt;}
._1a{width:28.309795pt;}
._26{width:31.295847pt;}
._1f{width:34.226087pt;}
._14{width:37.066278pt;}
._27{width:38.415786pt;}
._12{width:39.319160pt;}
._17{width:41.359506pt;}
._2d{width:45.432528pt;}
._28{width:47.355764pt;}
._18{width:50.158496pt;}
._b{width:53.133867pt;}
._1e{width:54.196680pt;}
._10{width:56.109504pt;}
._1b{width:57.724778pt;}
._4{width:63.761067pt;}
._2c{width:68.527206pt;}
._2b{width:71.205171pt;}
._2a{width:212.802560pt;}
.fs6{font-size:31.880533pt;}
.fs5{font-size:39.318933pt;}
.fs7{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:96.000000pt;}
.y29{bottom:108.620000pt;}
.y42{bottom:111.940000pt;}
.y28{bottom:112.477333pt;}
.y41{bottom:127.880000pt;}
.y27{bottom:136.909333pt;}
.y40{bottom:143.821333pt;}
.yb9{bottom:144.620000pt;}
.yde{bottom:147.228000pt;}
.y26{bottom:152.849333pt;}
.y3f{bottom:159.761333pt;}
.yb8{bottom:160.560000pt;}
.ydd{bottom:161.840000pt;}
.y25{bottom:168.790667pt;}
.y3e{bottom:175.701333pt;}
.ydc{bottom:176.452000pt;}
.yb7{bottom:176.500000pt;}
.y24{bottom:184.730667pt;}
.ydb{bottom:191.064000pt;}
.y3d{bottom:191.641333pt;}
.yb6{bottom:192.441333pt;}
.yda{bottom:205.676000pt;}
.y3c{bottom:207.581333pt;}
.yb5{bottom:208.381333pt;}
.y23{bottom:211.630667pt;}
.yd9{bottom:220.288000pt;}
.y69{bottom:223.521333pt;}
.yb4{bottom:224.321333pt;}
.y3b{bottom:238.020000pt;}
.y22{bottom:238.532000pt;}
.y68{bottom:239.462667pt;}
.yd8{bottom:240.213333pt;}
.yb3{bottom:240.261333pt;}
.yd7{bottom:254.824000pt;}
.y67{bottom:255.402667pt;}
.yb2{bottom:256.201333pt;}
.yd6{bottom:269.436000pt;}
.y66{bottom:271.342667pt;}
.yb1{bottom:272.141333pt;}
.y21{bottom:282.329333pt;}
.yd5{bottom:284.048000pt;}
.y65{bottom:287.282667pt;}
.yb0{bottom:288.082667pt;}
.y3a{bottom:289.398667pt;}
.y20{bottom:298.269333pt;}
.yd4{bottom:298.660000pt;}
.y64{bottom:303.222667pt;}
.yaf{bottom:304.022667pt;}
.y39{bottom:305.340000pt;}
.y1f{bottom:314.209333pt;}
.yd3{bottom:318.585333pt;}
.y63{bottom:319.162667pt;}
.yae{bottom:319.962667pt;}
.y38{bottom:321.280000pt;}
.y1e{bottom:330.149333pt;}
.yd2{bottom:333.197333pt;}
.y62{bottom:335.104000pt;}
.yad{bottom:335.902667pt;}
.y37{bottom:337.220000pt;}
.y1d{bottom:346.089333pt;}
.yd1{bottom:347.809333pt;}
.y88{bottom:351.044000pt;}
.yac{bottom:351.842667pt;}
.y36{bottom:353.160000pt;}
.y61{bottom:360.405333pt;}
.y1c{bottom:362.029333pt;}
.yd0{bottom:362.421333pt;}
.y87{bottom:366.984000pt;}
.yab{bottom:367.782667pt;}
.y35{bottom:369.100000pt;}
.ycf{bottom:377.033333pt;}
.y1b{bottom:377.970667pt;}
.y86{bottom:382.924000pt;}
.yaa{bottom:383.724000pt;}
.y60{bottom:386.148000pt;}
.y1a{bottom:393.910667pt;}
.yce{bottom:396.958667pt;}
.y85{bottom:398.864000pt;}
.y34{bottom:399.538667pt;}
.ya9{bottom:399.664000pt;}
.y19{bottom:409.850667pt;}
.ycd{bottom:411.570667pt;}
.ya8{bottom:415.604000pt;}
.y84{bottom:415.665333pt;}
.y18{bottom:425.790667pt;}
.y5f{bottom:426.589333pt;}
.ycc{bottom:431.496000pt;}
.y83{bottom:431.605333pt;}
.y17{bottom:441.730667pt;}
.ya7{bottom:442.029333pt;}
.y5e{bottom:442.529333pt;}
.ycb{bottom:446.106667pt;}
.y82{bottom:447.545333pt;}
.y33{bottom:450.917333pt;}
.y16{bottom:457.670667pt;}
.y5d{bottom:458.469333pt;}
.yca{bottom:460.718667pt;}
.y81{bottom:463.486667pt;}
.y32{bottom:466.858667pt;}
.y15{bottom:473.612000pt;}
.y5c{bottom:474.409333pt;}
.yc9{bottom:475.330667pt;}
.y80{bottom:479.426667pt;}
.ya6{bottom:484.449333pt;}
.y14{bottom:489.552000pt;}
.yc8{bottom:495.256000pt;}
.y7f{bottom:495.366667pt;}
.y31{bottom:497.296000pt;}
.y5b{bottom:500.152000pt;}
.ya5{bottom:500.390667pt;}
.y13{bottom:505.492000pt;}
.yc7{bottom:509.868000pt;}
.y7e{bottom:511.306667pt;}
.ya4{bottom:516.330667pt;}
.y12{bottom:521.432000pt;}
.yc6{bottom:524.480000pt;}
.ya3{bottom:532.270667pt;}
.y11{bottom:537.372000pt;}
.y7d{bottom:537.849333pt;}
.y5a{bottom:537.937333pt;}
.yc5{bottom:544.405333pt;}
.ya2{bottom:548.210667pt;}
.y30{bottom:548.676000pt;}
.y10{bottom:553.312000pt;}
.y59{bottom:553.877333pt;}
.ya1{bottom:564.150667pt;}
.yc4{bottom:564.330667pt;}
.y2f{bottom:564.616000pt;}
.yf{bottom:569.253333pt;}
.y58{bottom:569.817333pt;}
.y7c{bottom:577.950667pt;}
.yc3{bottom:578.942667pt;}
.ya0{bottom:580.090667pt;}
.ye{bottom:585.193333pt;}
.y57{bottom:585.757333pt;}
.y7b{bottom:593.892000pt;}
.y2e{bottom:595.053333pt;}
.y9f{bottom:596.032000pt;}
.yc2{bottom:598.868000pt;}
.yd{bottom:601.133333pt;}
.y56{bottom:601.697333pt;}
.y7a{bottom:609.832000pt;}
.y9e{bottom:611.972000pt;}
.yc{bottom:617.073333pt;}
.y55{bottom:617.638667pt;}
.yc1{bottom:618.793333pt;}
.y79{bottom:625.772000pt;}
.y9d{bottom:627.912000pt;}
.yb{bottom:633.013333pt;}
.yc0{bottom:633.405333pt;}
.y54{bottom:633.578667pt;}
.y78{bottom:641.712000pt;}
.y9c{bottom:643.852000pt;}
.y2d{bottom:646.433333pt;}
.y53{bottom:649.518667pt;}
.y77{bottom:657.652000pt;}
.y9b{bottom:659.792000pt;}
.ya{bottom:659.914667pt;}
.ybf{bottom:660.390667pt;}
.y2c{bottom:662.373333pt;}
.y52{bottom:665.458667pt;}
.y76{bottom:673.592000pt;}
.y9a{bottom:675.732000pt;}
.y2b{bottom:678.313333pt;}
.y51{bottom:681.398667pt;}
.y75{bottom:689.533333pt;}
.y99{bottom:691.673333pt;}
.y9{bottom:694.254667pt;}
.y50{bottom:697.338667pt;}
.ybe{bottom:697.816000pt;}
.y74{bottom:705.473333pt;}
.y98{bottom:707.613333pt;}
.ybd{bottom:712.428000pt;}
.y73{bottom:721.413333pt;}
.y4f{bottom:723.081333pt;}
.y97{bottom:723.553333pt;}
.ybc{bottom:727.040000pt;}
.y72{bottom:737.353333pt;}
.y96{bottom:739.493333pt;}
.ybb{bottom:741.652000pt;}
.y4e{bottom:748.822667pt;}
.y71{bottom:753.293333pt;}
.y95{bottom:755.433333pt;}
.y8{bottom:760.937333pt;}
.yba{bottom:765.230667pt;}
.y70{bottom:769.233333pt;}
.y94{bottom:771.374667pt;}
.y7{bottom:779.534667pt;}
.y6f{bottom:785.174667pt;}
.y93{bottom:787.314667pt;}
.y4d{bottom:792.428000pt;}
.y6{bottom:798.130667pt;}
.y6e{bottom:801.114667pt;}
.y92{bottom:803.254667pt;}
.y6d{bottom:817.054667pt;}
.y91{bottom:819.194667pt;}
.y5{bottom:824.698667pt;}
.y4c{bottom:829.622667pt;}
.y6c{bottom:832.994667pt;}
.y90{bottom:835.134667pt;}
.y4b{bottom:842.241333pt;}
.y4{bottom:843.294667pt;}
.y6b{bottom:848.934667pt;}
.y8f{bottom:851.074667pt;}
.y4a{bottom:854.861333pt;}
.y8e{bottom:867.016000pt;}
.y49{bottom:867.480000pt;}
.y48{bottom:880.100000pt;}
.y8d{bottom:882.956000pt;}
.y3{bottom:888.458667pt;}
.y47{bottom:892.718667pt;}
.y6a{bottom:893.382667pt;}
.y8c{bottom:898.896000pt;}
.y46{bottom:905.338667pt;}
.y2{bottom:912.369333pt;}
.y8b{bottom:914.836000pt;}
.y45{bottom:917.957333pt;}
.y44{bottom:930.577333pt;}
.y8a{bottom:930.776000pt;}
.y1{bottom:936.280000pt;}
.y43{bottom:943.196000pt;}
.y89{bottom:946.716000pt;}
.h9{height:21.933807pt;}
.hd{height:27.163516pt;}
.ha{height:29.244954pt;}
.hb{height:29.499997pt;}
.he{height:32.661606pt;}
.hc{height:32.900710pt;}
.h6{height:36.556100pt;}
.h8{height:36.874903pt;}
.h4{height:43.867614pt;}
.h5{height:44.250180pt;}
.h3{height:45.476710pt;}
.h7{height:46.336759pt;}
.h2{height:53.100068pt;}
.h1{height:63.169041pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:72.000000pt;}
.x1c{left:74.601333pt;}
.x1b{left:79.914667pt;}
.x2a{left:85.284000pt;}
.x18{left:86.478667pt;}
.x19{left:91.128000pt;}
.x1e{left:98.566667pt;}
.x1d{left:107.520000pt;}
.x11{left:110.273333pt;}
.x14{left:116.558667pt;}
.x21{left:124.936000pt;}
.x15{left:143.480000pt;}
.x2{left:146.814667pt;}
.x4{left:179.200000pt;}
.xa{left:185.989333pt;}
.x1{left:218.460000pt;}
.x16{left:221.566667pt;}
.xb{left:236.574667pt;}
.x5{left:244.338667pt;}
.x17{left:248.485333pt;}
.x3{left:271.377333pt;}
.x1f{left:275.116000pt;}
.x12{left:314.934667pt;}
.x20{left:339.626667pt;}
.x13{left:354.933333pt;}
.xf{left:362.569333pt;}
.x10{left:389.853333pt;}
.x6{left:399.862667pt;}
.x7{left:409.180000pt;}
.x1a{left:423.361333pt;}
.x2c{left:429.817333pt;}
.x22{left:431.754667pt;}
.x2b{left:437.124000pt;}
.xd{left:441.552000pt;}
.x24{left:450.406667pt;}
.x27{left:459.360000pt;}
.xc{left:476.317333pt;}
.x23{left:482.740000pt;}
.x2f{left:492.464000pt;}
.x8{left:520.374667pt;}
.x29{left:533.600000pt;}
.x2e{left:556.209333pt;}
.x9{left:557.769333pt;}
.x31{left:611.082667pt;}
.x25{left:648.765333pt;}
.x28{left:689.041333pt;}
.x2d{left:696.442667pt;}
.x26{left:718.361333pt;}
.x30{left:742.445333pt;}
}




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