
    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_bed877526a4eaeddcc4fd932.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.011000;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_43b53cf45b8fd12c9afc9e4b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.989000;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_e1df3872937a00cd93bb5b4f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_36949aadacf1dfc8b7a5b68b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666000;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_f6984f055cc7eebd836d5da0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011230;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);}
.m4{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);}
.m1e{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);}
.m12{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);}
.m1b{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);}
.m11{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);}
.m29{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);}
.m1c{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);}
.m1d{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);}
.m19{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);}
.m17{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);}
.m24{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);}
.m1{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);}
.m1a{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);}
.m2{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);}
.m26{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);}
.m8{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);}
.m21{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);}
.m15{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);}
.m16{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);}
.m2a{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m7{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);}
.ma{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,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);}
.m1f{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);}
.m27{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);}
.m25{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);}
.m14{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);}
.m20{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);}
.mc{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);}
.m23{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);}
.m6{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m13{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);}
.m28{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);}
.m9{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);}
.m22{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);}
.mf{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);}
.mb{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);}
.m3{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);}
.md{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);}
.v1{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.030060px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.004416px;}
.lsd{letter-spacing:0.018036px;}
.ls2{letter-spacing:11.954850px;}
.lsb{letter-spacing:12.014896px;}
.lsf{letter-spacing:14.645022px;}
.ls5{letter-spacing:14.704798px;}
.ls7{letter-spacing:14.884124px;}
.ls1{letter-spacing:14.943900px;}
.ls6{letter-spacing:15.003676px;}
.ls9{letter-spacing:15.362329px;}
.ls4{letter-spacing:15.720983px;}
.lsc{letter-spacing:16.019861px;}
.ls8{letter-spacing:16.199188px;}
.ls0{letter-spacing:28.453654px;}
.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;}
}
.wsa0{word-spacing:-13.449600px;}
.ws20{word-spacing:-11.955150px;}
.ws5{word-spacing:-10.460700px;}
.ws6a{word-spacing:-3.227882px;}
.ws7e{word-spacing:-3.048556px;}
.ws68{word-spacing:-2.929004px;}
.ws4f{word-spacing:-2.630126px;}
.ws30{word-spacing:-2.510575px;}
.ws3a{word-spacing:-2.450800px;}
.ws86{word-spacing:-2.092146px;}
.ws8d{word-spacing:-1.673717px;}
.ws3c{word-spacing:-1.613941px;}
.ws99{word-spacing:-1.560154px;}
.ws4d{word-spacing:-1.494390px;}
.wsc{word-spacing:-1.374839px;}
.ws45{word-spacing:-1.315063px;}
.ws1d{word-spacing:-1.195512px;}
.ws84{word-spacing:-1.075961px;}
.ws55{word-spacing:-1.016185px;}
.ws50{word-spacing:-0.956410px;}
.wsae{word-spacing:-0.914573px;}
.ws44{word-spacing:-0.896634px;}
.ws24{word-spacing:-0.836858px;}
.ws1a{word-spacing:-0.777083px;}
.wsa3{word-spacing:-0.753178px;}
.ws27{word-spacing:-0.717307px;}
.ws53{word-spacing:-0.657532px;}
.ws46{word-spacing:-0.597756px;}
.ws90{word-spacing:-0.591782px;}
.ws5e{word-spacing:-0.537980px;}
.wsa8{word-spacing:-0.430387px;}
.ws18{word-spacing:-0.418429px;}
.ws17{word-spacing:-0.358654px;}
.ws19{word-spacing:-0.298878px;}
.ws1c{word-spacing:-0.239102px;}
.ws9d{word-spacing:-0.215194px;}
.wsd{word-spacing:-0.179327px;}
.ws73{word-spacing:-0.161395px;}
.ws10{word-spacing:-0.119551px;}
.wsa5{word-spacing:-0.107597px;}
.ws25{word-spacing:-0.059776px;}
.ws9e{word-spacing:-0.053798px;}
.wsa7{word-spacing:-0.010666px;}
.wsa6{word-spacing:-0.009370px;}
.wsbd{word-spacing:-0.007814px;}
.wsb2{word-spacing:-0.007651px;}
.wsb5{word-spacing:-0.005578px;}
.ws3{word-spacing:-0.003098px;}
.wsb0{word-spacing:-0.002429px;}
.ws1f{word-spacing:-0.000785px;}
.ws0{word-spacing:0.000000px;}
.ws98{word-spacing:0.053798px;}
.ws8{word-spacing:0.059776px;}
.ws70{word-spacing:0.078156px;}
.ws97{word-spacing:0.107597px;}
.ws16{word-spacing:0.119551px;}
.ws71{word-spacing:0.126252px;}
.ws8e{word-spacing:0.161395px;}
.ws37{word-spacing:0.179327px;}
.ws8f{word-spacing:0.215194px;}
.wsb{word-spacing:0.239102px;}
.wsa9{word-spacing:0.268992px;}
.ws21{word-spacing:0.298878px;}
.wsb4{word-spacing:0.322790px;}
.ws23{word-spacing:0.358654px;}
.ws26{word-spacing:0.418429px;}
.wsab{word-spacing:0.430387px;}
.ws63{word-spacing:0.478205px;}
.ws36{word-spacing:0.537980px;}
.ws81{word-spacing:0.597756px;}
.wsb9{word-spacing:0.645581px;}
.ws9{word-spacing:0.657532px;}
.ws2c{word-spacing:0.717307px;}
.wsaa{word-spacing:0.753178px;}
.ws41{word-spacing:0.777083px;}
.ws29{word-spacing:0.836858px;}
.wsb7{word-spacing:0.860774px;}
.ws3d{word-spacing:0.896634px;}
.wsb3{word-spacing:0.914573px;}
.ws47{word-spacing:0.956410px;}
.wsaf{word-spacing:0.968371px;}
.ws59{word-spacing:1.016185px;}
.ws69{word-spacing:1.075961px;}
.ws74{word-spacing:1.135736px;}
.ws79{word-spacing:1.195512px;}
.ws87{word-spacing:1.255288px;}
.ws3f{word-spacing:1.315063px;}
.ws32{word-spacing:1.374839px;}
.ws38{word-spacing:1.434614px;}
.ws11{word-spacing:1.494390px;}
.ws65{word-spacing:1.554166px;}
.ws51{word-spacing:1.613941px;}
.ws7c{word-spacing:1.673717px;}
.ws7d{word-spacing:1.733492px;}
.ws34{word-spacing:1.793268px;}
.ws2d{word-spacing:1.853044px;}
.wsf{word-spacing:1.912819px;}
.ws52{word-spacing:1.972595px;}
.ws91{word-spacing:1.990541px;}
.ws33{word-spacing:2.032370px;}
.wsba{word-spacing:2.044339px;}
.wsb1{word-spacing:2.151936px;}
.ws9c{word-spacing:2.205734px;}
.ws42{word-spacing:2.211697px;}
.wsbb{word-spacing:2.259533px;}
.ws76{word-spacing:2.271473px;}
.ws3b{word-spacing:2.331248px;}
.ws67{word-spacing:2.391024px;}
.ws39{word-spacing:2.450800px;}
.ws6{word-spacing:2.510252px;}
.ws2{word-spacing:2.510568px;}
.ws40{word-spacing:2.570351px;}
.ws49{word-spacing:2.630126px;}
.ws57{word-spacing:2.749678px;}
.ws56{word-spacing:2.797517px;}
.wsa{word-spacing:2.869229px;}
.ws7{word-spacing:2.869236px;}
.ws5b{word-spacing:2.929004px;}
.wsa4{word-spacing:2.958912px;}
.ws2b{word-spacing:2.988780px;}
.ws1b{word-spacing:3.048556px;}
.ws6e{word-spacing:3.066509px;}
.ws8a{word-spacing:3.108331px;}
.ws6d{word-spacing:3.120307px;}
.wsbc{word-spacing:3.174106px;}
.ws7a{word-spacing:3.227882px;}
.ws9f{word-spacing:3.227904px;}
.ws4e{word-spacing:3.287658px;}
.ws6c{word-spacing:3.407209px;}
.ws80{word-spacing:3.466985px;}
.wsbe{word-spacing:3.496896px;}
.ws12{word-spacing:3.526760px;}
.ws58{word-spacing:3.706087px;}
.ws2f{word-spacing:3.765863px;}
.ws28{word-spacing:3.885414px;}
.wsac{word-spacing:3.927283px;}
.ws5a{word-spacing:4.004965px;}
.ws92{word-spacing:4.034880px;}
.ws22{word-spacing:4.064741px;}
.ws96{word-spacing:4.088678px;}
.ws5d{word-spacing:4.124516px;}
.ws66{word-spacing:4.184292px;}
.ws3e{word-spacing:4.303843px;}
.ws15{word-spacing:4.303872px;}
.ws85{word-spacing:4.423394px;}
.ws5f{word-spacing:4.483170px;}
.ws2a{word-spacing:4.542946px;}
.ws62{word-spacing:4.662497px;}
.ws4c{word-spacing:4.782048px;}
.ws88{word-spacing:4.901599px;}
.ws60{word-spacing:4.961375px;}
.ws8c{word-spacing:5.080926px;}
.wsa1{word-spacing:5.110848px;}
.ws64{word-spacing:5.200477px;}
.wsb8{word-spacing:5.218445px;}
.ws35{word-spacing:5.379804px;}
.ws9b{word-spacing:5.379840px;}
.ws77{word-spacing:5.439580px;}
.wsb6{word-spacing:5.541235px;}
.ws48{word-spacing:5.618906px;}
.ws5c{word-spacing:5.798233px;}
.ws4a{word-spacing:5.917784px;}
.wse{word-spacing:5.977560px;}
.ws8b{word-spacing:6.455765px;}
.wsa2{word-spacing:6.509606px;}
.ws78{word-spacing:6.575316px;}
.ws75{word-spacing:6.694867px;}
.ws7b{word-spacing:6.754643px;}
.ws9a{word-spacing:6.778598px;}
.ws6f{word-spacing:6.814418px;}
.ws61{word-spacing:6.874194px;}
.ws1e{word-spacing:6.933970px;}
.ws72{word-spacing:7.155187px;}
.ws54{word-spacing:7.173072px;}
.ws6b{word-spacing:7.412174px;}
.ws83{word-spacing:7.830604px;}
.ws82{word-spacing:7.890379px;}
.ws31{word-spacing:7.950155px;}
.ws89{word-spacing:8.308808px;}
.ws43{word-spacing:8.428360px;}
.ws7f{word-spacing:8.488135px;}
.ws2e{word-spacing:9.683647px;}
.wsad{word-spacing:11.297664px;}
.ws4{word-spacing:15.481836px;}
.ws95{word-spacing:15.978125px;}
.ws94{word-spacing:16.623706px;}
.ws14{word-spacing:22.714728px;}
.ws1{word-spacing:28.455541px;}
.ws13{word-spacing:33.851240px;}
.ws93{word-spacing:36.649411px;}
.ws4b{word-spacing:116.442869px;}
._4{margin-left:-9.683712px;}
._2e{margin-left:-8.535960px;}
._f{margin-left:-6.575316px;}
._8{margin-left:-5.320028px;}
._3{margin-left:-3.765852px;}
._1{margin-left:-1.506341px;}
._46{width:2.958912px;}
._c{width:4.016916px;}
._2{width:10.460700px;}
._0{width:12.971268px;}
._11{width:14.824386px;}
._b{width:15.840534px;}
._15{width:17.382749px;}
._a{width:18.590212px;}
._d{width:19.618348px;}
._7{width:21.471391px;}
._16{width:22.535401px;}
._10{width:23.611362px;}
._2d{width:25.297030px;}
._14{width:26.540366px;}
._42{width:28.094532px;}
._e{width:29.887800px;}
._2c{width:31.262639px;}
._5{width:33.355008px;}
._47{width:34.383403px;}
._9{width:37.001096px;}
._31{width:39.254106px;}
._45{width:41.077788px;}
._44{width:42.679778px;}
._43{width:44.473046px;}
._6{width:54.430559px;}
._2b{width:116.442869px;}
._23{width:131.386769px;}
._1b{width:146.330669px;}
._20{width:153.802619px;}
._34{width:185.184809px;}
._3d{width:213.004364px;}
._25{width:251.069471px;}
._22{width:298.650848px;}
._3f{width:323.517498px;}
._3e{width:338.162520px;}
._35{width:339.884062px;}
._32{width:343.231495px;}
._40{width:344.976938px;}
._1a{width:356.035424px;}
._3b{width:359.203531px;}
._3a{width:381.081401px;}
._38{width:388.971780px;}
._1f{width:398.822803px;}
._33{width:418.907405px;}
._41{width:419.995316px;}
._26{width:423.880730px;}
._3c{width:427.108613px;}
._36{width:438.585528px;}
._39{width:441.992737px;}
._37{width:466.799611px;}
._24{width:471.462108px;}
._2a{width:476.961463px;}
._17{width:478.145024px;}
._27{width:491.905363px;}
._1c{width:513.902784px;}
._29{width:556.690163px;}
._2f{width:570.590225px;}
._21{width:571.634063px;}
._1d{width:600.804556px;}
._28{width:664.716623px;}
._18{width:698.418110px;}
._1e{width:773.615815px;}
._19{width:871.229370px;}
._12{width:1844.799000px;}
._30{width:2540.781000px;}
._13{width:2564.691000px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs7{font-size:60.120000px;}
.fs6{font-size:62.286600px;}
.fs4{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y119{bottom:4.805894px;}
.y118{bottom:20.555831px;}
.y3f{bottom:45.921000px;}
.y16{bottom:100.260000px;}
.yd4{bottom:101.044500px;}
.y14d{bottom:104.218500px;}
.y180{bottom:110.616000px;}
.y3e{bottom:111.270000px;}
.y13b{bottom:111.744000px;}
.y122{bottom:114.148500px;}
.y8c{bottom:114.882000px;}
.y72{bottom:116.407500px;}
.y15{bottom:118.147500px;}
.ybb{bottom:118.240500px;}
.yff{bottom:118.365000px;}
.yd3{bottom:121.936500px;}
.y14c{bottom:123.717000px;}
.y17f{bottom:129.766500px;}
.y3d{bottom:132.160500px;}
.y13a{bottom:132.636000px;}
.y121{bottom:135.039000px;}
.y8b{bottom:135.774000px;}
.y14{bottom:136.035000px;}
.y71{bottom:137.298000px;}
.yba{bottom:139.131000px;}
.yfe{bottom:139.255500px;}
.y14b{bottom:143.217000px;}
.y17e{bottom:148.917000px;}
.y3c{bottom:153.052500px;}
.y139{bottom:153.526500px;}
.y13{bottom:153.922500px;}
.y120{bottom:155.931000px;}
.y8a{bottom:156.666000px;}
.yd2{bottom:157.563000px;}
.y70{bottom:158.190000px;}
.yb9{bottom:160.023000px;}
.yfd{bottom:160.147500px;}
.y14a{bottom:162.715500px;}
.y17d{bottom:168.067500px;}
.y12{bottom:171.811500px;}
.y3b{bottom:173.944500px;}
.y138{bottom:174.418500px;}
.yd1{bottom:176.796000px;}
.y11f{bottom:176.823000px;}
.y89{bottom:177.556500px;}
.y6f{bottom:179.082000px;}
.yb8{bottom:180.915000px;}
.yfc{bottom:181.039500px;}
.y149{bottom:182.214000px;}
.y17c{bottom:187.218000px;}
.y11{bottom:189.699000px;}
.y3a{bottom:194.835000px;}
.y137{bottom:195.310500px;}
.y1ad{bottom:196.984500px;}
.y11e{bottom:197.713500px;}
.y88{bottom:198.448500px;}
.y6e{bottom:199.972500px;}
.yb7{bottom:201.805500px;}
.yfb{bottom:201.930000px;}
.y17b{bottom:206.368500px;}
.y10{bottom:207.586500px;}
.y148{bottom:210.679500px;}
.y39{bottom:215.727000px;}
.y1ac{bottom:216.135000px;}
.y136{bottom:216.201000px;}
.y11d{bottom:218.605500px;}
.y87{bottom:219.340500px;}
.y6d{bottom:220.864500px;}
.yb6{bottom:222.697500px;}
.yfa{bottom:222.822000px;}
.yf{bottom:225.475500px;}
.y17a{bottom:225.519000px;}
.y147{bottom:230.178000px;}
.y1ab{bottom:235.285500px;}
.y38{bottom:236.619000px;}
.y11c{bottom:239.497500px;}
.y86{bottom:240.232500px;}
.y135{bottom:241.576500px;}
.y6c{bottom:241.756500px;}
.yb5{bottom:243.589500px;}
.yf9{bottom:243.714000px;}
.y179{bottom:244.669500px;}
.y146{bottom:249.676500px;}
.ye{bottom:252.330000px;}
.y37{bottom:257.511000px;}
.y85{bottom:261.123000px;}
.y6b{bottom:262.647000px;}
.y178{bottom:263.820000px;}
.yb4{bottom:264.480000px;}
.yf8{bottom:264.606000px;}
.y145{bottom:269.175000px;}
.yd{bottom:270.217500px;}
.y134{bottom:273.721500px;}
.y11b{bottom:275.125500px;}
.y1aa{bottom:278.316000px;}
.y36{bottom:278.401500px;}
.y84{bottom:282.015000px;}
.y177{bottom:282.970500px;}
.y6a{bottom:283.539000px;}
.yb3{bottom:285.372000px;}
.yf7{bottom:285.496500px;}
.yc{bottom:288.105000px;}
.y144{bottom:288.673500px;}
.y133{bottom:292.954500px;}
.y11a{bottom:294.358500px;}
.y1a9{bottom:297.466500px;}
.y35{bottom:299.293500px;}
.y176{bottom:302.122500px;}
.y83{bottom:302.907000px;}
.y69{bottom:304.431000px;}
.yb{bottom:305.994000px;}
.yb2{bottom:306.264000px;}
.yf6{bottom:306.388500px;}
.y1a8{bottom:316.617000px;}
.y117{bottom:316.786500px;}
.y143{bottom:317.139000px;}
.y34{bottom:320.185500px;}
.y175{bottom:321.273000px;}
.y82{bottom:323.797500px;}
.ya{bottom:323.881500px;}
.y68{bottom:325.323000px;}
.yb1{bottom:327.154500px;}
.yf5{bottom:327.280500px;}
.y1a7{bottom:335.767500px;}
.y142{bottom:336.637500px;}
.y174{bottom:340.423500px;}
.y33{bottom:341.076000px;}
.y9{bottom:341.769000px;}
.y81{bottom:344.689500px;}
.y67{bottom:346.213500px;}
.yb0{bottom:348.046500px;}
.yf4{bottom:348.171000px;}
.y1a6{bottom:354.918000px;}
.y141{bottom:356.136000px;}
.y173{bottom:359.574000px;}
.y8{bottom:359.658000px;}
.y32{bottom:361.968000px;}
.y80{bottom:365.581500px;}
.y66{bottom:367.105500px;}
.yaf{bottom:368.938500px;}
.yf3{bottom:369.063000px;}
.y1a5{bottom:374.070000px;}
.y140{bottom:375.636000px;}
.y7{bottom:377.545500px;}
.y172{bottom:378.724500px;}
.y31{bottom:382.860000px;}
.y7f{bottom:386.472000px;}
.y65{bottom:387.997500px;}
.yf2{bottom:389.955000px;}
.y1a4{bottom:393.220500px;}
.yae{bottom:394.312500px;}
.y13f{bottom:395.134500px;}
.y171{bottom:397.875000px;}
.y6{bottom:401.410500px;}
.y7e{bottom:407.364000px;}
.y30{bottom:408.234000px;}
.y64{bottom:408.888000px;}
.yf1{bottom:410.845500px;}
.y1a3{bottom:412.371000px;}
.y13e{bottom:414.633000px;}
.y170{bottom:417.025500px;}
.yad{bottom:418.744500px;}
.y5{bottom:419.299500px;}
.y7d{bottom:428.256000px;}
.y63{bottom:429.780000px;}
.y1a2{bottom:431.521500px;}
.yf0{bottom:431.737500px;}
.y13d{bottom:434.131500px;}
.y16f{bottom:436.176000px;}
.y4{bottom:437.187000px;}
.y7c{bottom:449.146500px;}
.y62{bottom:450.672000px;}
.yef{bottom:452.629500px;}
.y3{bottom:455.074500px;}
.y16e{bottom:455.326500px;}
.yac{bottom:457.569000px;}
.y1a1{bottom:469.822500px;}
.y7b{bottom:470.038500px;}
.y61{bottom:471.562500px;}
.yee{bottom:473.520000px;}
.y16d{bottom:474.477000px;}
.yab{bottom:478.461000px;}
.y2{bottom:478.941000px;}
.y2f{bottom:487.446000px;}
.y1a0{bottom:488.973000px;}
.y7a{bottom:490.930500px;}
.y60{bottom:492.454500px;}
.y16c{bottom:493.627500px;}
.yed{bottom:494.412000px;}
.y1{bottom:496.828500px;}
.yaa{bottom:499.351500px;}
.yd0{bottom:506.133000px;}
.y19f{bottom:508.123500px;}
.y2e{bottom:508.338000px;}
.y79{bottom:511.822500px;}
.y16b{bottom:512.778000px;}
.y5f{bottom:513.346500px;}
.yec{bottom:515.304000px;}
.ya9{bottom:520.243500px;}
.ycf{bottom:527.023500px;}
.y19e{bottom:527.274000px;}
.y16a{bottom:531.928500px;}
.y78{bottom:532.713000px;}
.y5e{bottom:534.237000px;}
.yeb{bottom:536.194500px;}
.ya8{bottom:541.135500px;}
.y19d{bottom:546.424500px;}
.y2d{bottom:547.162500px;}
.yce{bottom:547.915500px;}
.y169{bottom:551.079000px;}
.y77{bottom:553.605000px;}
.y5d{bottom:555.129000px;}
.yea{bottom:557.086500px;}
.ya7{bottom:562.027500px;}
.y19c{bottom:565.575000px;}
.y2c{bottom:568.053000px;}
.ycd{bottom:568.807500px;}
.y168{bottom:570.229500px;}
.y76{bottom:574.497000px;}
.y5c{bottom:576.021000px;}
.ye9{bottom:577.978500px;}
.y19b{bottom:584.725500px;}
.y2b{bottom:588.945000px;}
.y167{bottom:589.380000px;}
.ycc{bottom:589.698000px;}
.y75{bottom:595.387500px;}
.y5b{bottom:596.913000px;}
.ye8{bottom:598.870500px;}
.ya6{bottom:601.108500px;}
.y19a{bottom:603.876000px;}
.y166{bottom:608.530500px;}
.y2a{bottom:609.837000px;}
.ycb{bottom:610.590000px;}
.y74{bottom:616.279500px;}
.y5a{bottom:617.803500px;}
.ye7{bottom:619.761000px;}
.y199{bottom:623.026500px;}
.ya5{bottom:623.389500px;}
.y165{bottom:627.681000px;}
.y29{bottom:630.727500px;}
.yca{bottom:631.482000px;}
.y8f{bottom:637.171500px;}
.y59{bottom:638.695500px;}
.ye6{bottom:640.653000px;}
.y73{bottom:641.653500px;}
.y198{bottom:642.177000px;}
.y164{bottom:646.831500px;}
.ya4{bottom:648.523500px;}
.y28{bottom:651.619500px;}
.yc9{bottom:652.372500px;}
.y116{bottom:655.104000px;}
.y8e{bottom:658.062000px;}
.y58{bottom:659.587500px;}
.y197{bottom:661.327500px;}
.ye5{bottom:661.545000px;}
.y13c{bottom:662.545500px;}
.y163{bottom:665.982000px;}
.y27{bottom:672.511500px;}
.yc8{bottom:673.264500px;}
.ya3{bottom:673.659000px;}
.y115{bottom:675.996000px;}
.y57{bottom:680.478000px;}
.ye4{bottom:682.435500px;}
.y8d{bottom:683.437500px;}
.y162{bottom:685.134000px;}
.y26{bottom:693.402000px;}
.yc7{bottom:694.156500px;}
.y114{bottom:696.886500px;}
.ya2{bottom:698.794500px;}
.y196{bottom:699.628500px;}
.y56{bottom:701.370000px;}
.ye3{bottom:703.327500px;}
.y161{bottom:704.284500px;}
.y9d{bottom:708.012000px;}
.y25{bottom:714.294000px;}
.yc6{bottom:715.048500px;}
.y113{bottom:717.778500px;}
.y195{bottom:718.779000px;}
.y55{bottom:722.262000px;}
.y160{bottom:723.435000px;}
.ya1{bottom:723.930000px;}
.ye2{bottom:724.219500px;}
.y9c{bottom:725.944500px;}
.y24{bottom:735.186000px;}
.yc5{bottom:735.939000px;}
.y194{bottom:737.929500px;}
.y112{bottom:738.670500px;}
.y15f{bottom:742.585500px;}
.y54{bottom:743.152500px;}
.ye1{bottom:745.110000px;}
.ya0{bottom:749.064000px;}
.y23{bottom:756.076500px;}
.yc4{bottom:756.831000px;}
.y193{bottom:757.081500px;}
.y111{bottom:759.561000px;}
.y15e{bottom:761.736000px;}
.y53{bottom:764.044500px;}
.ye0{bottom:766.002000px;}
.y9f{bottom:774.199500px;}
.y192{bottom:776.232000px;}
.y22{bottom:776.968500px;}
.yc3{bottom:777.723000px;}
.y110{bottom:780.453000px;}
.y15d{bottom:780.886500px;}
.y52{bottom:784.936500px;}
.ydf{bottom:786.894000px;}
.y132{bottom:787.918500px;}
.y191{bottom:795.382500px;}
.y21{bottom:797.860500px;}
.yc2{bottom:798.613500px;}
.y9e{bottom:799.335000px;}
.y15c{bottom:800.037000px;}
.y10f{bottom:801.345000px;}
.y51{bottom:805.827000px;}
.yde{bottom:807.784500px;}
.y131{bottom:810.199500px;}
.y190{bottom:814.533000px;}
.y20{bottom:818.751000px;}
.y15b{bottom:819.187500px;}
.yc1{bottom:819.505500px;}
.y10e{bottom:822.235500px;}
.y9b{bottom:824.469000px;}
.y50{bottom:826.719000px;}
.ydd{bottom:828.676500px;}
.y18f{bottom:833.683500px;}
.y130{bottom:835.335000px;}
.y15a{bottom:838.338000px;}
.yc0{bottom:840.397500px;}
.y10d{bottom:843.127500px;}
.y4f{bottom:847.611000px;}
.y1f{bottom:848.610000px;}
.ydc{bottom:849.568500px;}
.y9a{bottom:849.604500px;}
.y18e{bottom:852.834000px;}
.y159{bottom:857.488500px;}
.y12f{bottom:860.470500px;}
.ybf{bottom:861.288000px;}
.y10c{bottom:864.019500px;}
.y4e{bottom:868.503000px;}
.ydb{bottom:870.460500px;}
.y18d{bottom:871.984500px;}
.y99{bottom:874.740000px;}
.y158{bottom:876.639000px;}
.ybe{bottom:882.180000px;}
.y10b{bottom:884.910000px;}
.y12e{bottom:885.604500px;}
.y1e{bottom:888.630000px;}
.y4d{bottom:889.393500px;}
.y18c{bottom:891.135000px;}
.yda{bottom:891.351000px;}
.y157{bottom:895.789500px;}
.y98{bottom:899.875500px;}
.y93{bottom:900.126000px;}
.ybd{bottom:903.072000px;}
.y1d{bottom:904.768500px;}
.y10a{bottom:905.802000px;}
.y4c{bottom:910.285500px;}
.y12d{bottom:910.740000px;}
.yd9{bottom:912.243000px;}
.y156{bottom:914.940000px;}
.y92{bottom:918.060000px;}
.y1c{bottom:920.908500px;}
.y97{bottom:925.009500px;}
.y109{bottom:926.694000px;}
.y18b{bottom:929.436000px;}
.y4b{bottom:931.177500px;}
.yd8{bottom:933.135000px;}
.y155{bottom:934.090500px;}
.y12a{bottom:934.548000px;}
.y12c{bottom:935.875500px;}
.ybc{bottom:938.700000px;}
.y108{bottom:947.584500px;}
.y18a{bottom:948.586500px;}
.y96{bottom:950.145000px;}
.y4a{bottom:952.068000px;}
.y154{bottom:953.241000px;}
.yd7{bottom:954.025500px;}
.y12b{bottom:961.011000px;}
.y189{bottom:967.737000px;}
.y107{bottom:968.476500px;}
.y1b{bottom:969.925500px;}
.y49{bottom:972.960000px;}
.yd6{bottom:974.917500px;}
.y95{bottom:975.280500px;}
.y153{bottom:976.875000px;}
.y129{bottom:986.145000px;}
.y188{bottom:986.887500px;}
.y106{bottom:989.368500px;}
.y48{bottom:993.852000px;}
.yd5{bottom:1000.291500px;}
.y94{bottom:1000.416000px;}
.y187{bottom:1006.038000px;}
.y1a{bottom:1008.748500px;}
.y105{bottom:1010.260500px;}
.y128{bottom:1011.280500px;}
.y47{bottom:1014.742500px;}
.y152{bottom:1015.699500px;}
.y186{bottom:1025.188500px;}
.y91{bottom:1025.550000px;}
.y104{bottom:1031.151000px;}
.y46{bottom:1035.634500px;}
.y127{bottom:1036.416000px;}
.y19{bottom:1040.086500px;}
.y151{bottom:1044.165000px;}
.y185{bottom:1044.339000px;}
.y103{bottom:1052.043000px;}
.y45{bottom:1056.526500px;}
.y90{bottom:1061.205000px;}
.y126{bottom:1061.551500px;}
.y184{bottom:1063.489500px;}
.y18{bottom:1071.424500px;}
.y150{bottom:1072.629000px;}
.y102{bottom:1072.935000px;}
.y44{bottom:1077.417000px;}
.y183{bottom:1082.640000px;}
.y125{bottom:1086.685500px;}
.y101{bottom:1093.825500px;}
.y43{bottom:1098.309000px;}
.y14f{bottom:1101.094500px;}
.y182{bottom:1101.790500px;}
.y17{bottom:1102.761000px;}
.y100{bottom:1114.717500px;}
.y42{bottom:1119.201000px;}
.y14e{bottom:1120.593000px;}
.y181{bottom:1120.941000px;}
.y124{bottom:1122.340500px;}
.y41{bottom:1140.091500px;}
.y123{bottom:1141.573500px;}
.y40{bottom:1200.196500px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h7{height:34.813397px;}
.ha{height:35.052500px;}
.hb{height:39.165235px;}
.hf{height:39.434227px;}
.hc{height:41.482876px;}
.h6{height:43.217759px;}
.h8{height:43.516637px;}
.h4{height:43.815515px;}
.he{height:43.886426px;}
.h9{height:51.861658px;}
.h5{height:77.792486px;}
.hd{height:314.676000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:565.952100px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:52.525500px;}
.x1{left:53.574000px;}
.x10{left:57.418508px;}
.x14{left:63.223500px;}
.x7{left:65.910000px;}
.xb{left:69.459000px;}
.x1a{left:70.582500px;}
.x13{left:82.978500px;}
.x16{left:85.078500px;}
.xc{left:89.535000px;}
.x8{left:93.645000px;}
.x15{left:94.843500px;}
.x9{left:219.523500px;}
.x4{left:248.526000px;}
.x3{left:249.591000px;}
.x6{left:264.439500px;}
.xd{left:266.236500px;}
.xe{left:278.527500px;}
.x5{left:281.479500px;}
.xf{left:284.217794px;}
.x11{left:356.578500px;}
.x18{left:373.612500px;}
.x1b{left:380.061000px;}
.x19{left:394.444500px;}
.x17{left:405.369000px;}
.xa{left:511.888500px;}
.x12{left:730.128000px;}
@media print{
.v1{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.026720pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.003925pt;}
.lsd{letter-spacing:0.016032pt;}
.ls2{letter-spacing:10.626533pt;}
.lsb{letter-spacing:10.679907pt;}
.lsf{letter-spacing:13.017797pt;}
.ls5{letter-spacing:13.070931pt;}
.ls7{letter-spacing:13.230333pt;}
.ls1{letter-spacing:13.283467pt;}
.ls6{letter-spacing:13.336601pt;}
.ls9{letter-spacing:13.655404pt;}
.ls4{letter-spacing:13.974207pt;}
.lsc{letter-spacing:14.239876pt;}
.ls8{letter-spacing:14.399278pt;}
.ls0{letter-spacing:25.292137pt;}
.wsa0{word-spacing:-11.955200pt;}
.ws20{word-spacing:-10.626800pt;}
.ws5{word-spacing:-9.298400pt;}
.ws6a{word-spacing:-2.869229pt;}
.ws7e{word-spacing:-2.709827pt;}
.ws68{word-spacing:-2.603559pt;}
.ws4f{word-spacing:-2.337890pt;}
.ws30{word-spacing:-2.231622pt;}
.ws3a{word-spacing:-2.178489pt;}
.ws86{word-spacing:-1.859685pt;}
.ws8d{word-spacing:-1.487748pt;}
.ws3c{word-spacing:-1.434614pt;}
.ws99{word-spacing:-1.386803pt;}
.ws4d{word-spacing:-1.328347pt;}
.wsc{word-spacing:-1.222079pt;}
.ws45{word-spacing:-1.168945pt;}
.ws1d{word-spacing:-1.062677pt;}
.ws84{word-spacing:-0.956410pt;}
.ws55{word-spacing:-0.903276pt;}
.ws50{word-spacing:-0.850142pt;}
.wsae{word-spacing:-0.812954pt;}
.ws44{word-spacing:-0.797008pt;}
.ws24{word-spacing:-0.743874pt;}
.ws1a{word-spacing:-0.690740pt;}
.wsa3{word-spacing:-0.669491pt;}
.ws27{word-spacing:-0.637606pt;}
.ws53{word-spacing:-0.584473pt;}
.ws46{word-spacing:-0.531339pt;}
.ws90{word-spacing:-0.526029pt;}
.ws5e{word-spacing:-0.478205pt;}
.wsa8{word-spacing:-0.382566pt;}
.ws18{word-spacing:-0.371937pt;}
.ws17{word-spacing:-0.318803pt;}
.ws19{word-spacing:-0.265669pt;}
.ws1c{word-spacing:-0.212535pt;}
.ws9d{word-spacing:-0.191283pt;}
.wsd{word-spacing:-0.159402pt;}
.ws73{word-spacing:-0.143462pt;}
.ws10{word-spacing:-0.106268pt;}
.wsa5{word-spacing:-0.095642pt;}
.ws25{word-spacing:-0.053134pt;}
.ws9e{word-spacing:-0.047821pt;}
.wsa7{word-spacing:-0.009481pt;}
.wsa6{word-spacing:-0.008329pt;}
.wsbd{word-spacing:-0.006946pt;}
.wsb2{word-spacing:-0.006801pt;}
.wsb5{word-spacing:-0.004958pt;}
.ws3{word-spacing:-0.002754pt;}
.wsb0{word-spacing:-0.002159pt;}
.ws1f{word-spacing:-0.000698pt;}
.ws0{word-spacing:0.000000pt;}
.ws98{word-spacing:0.047821pt;}
.ws8{word-spacing:0.053134pt;}
.ws70{word-spacing:0.069472pt;}
.ws97{word-spacing:0.095642pt;}
.ws16{word-spacing:0.106268pt;}
.ws71{word-spacing:0.112224pt;}
.ws8e{word-spacing:0.143462pt;}
.ws37{word-spacing:0.159402pt;}
.ws8f{word-spacing:0.191283pt;}
.wsb{word-spacing:0.212535pt;}
.wsa9{word-spacing:0.239104pt;}
.ws21{word-spacing:0.265669pt;}
.wsb4{word-spacing:0.286925pt;}
.ws23{word-spacing:0.318803pt;}
.ws26{word-spacing:0.371937pt;}
.wsab{word-spacing:0.382566pt;}
.ws63{word-spacing:0.425071pt;}
.ws36{word-spacing:0.478205pt;}
.ws81{word-spacing:0.531339pt;}
.wsb9{word-spacing:0.573850pt;}
.ws9{word-spacing:0.584473pt;}
.ws2c{word-spacing:0.637606pt;}
.wsaa{word-spacing:0.669491pt;}
.ws41{word-spacing:0.690740pt;}
.ws29{word-spacing:0.743874pt;}
.wsb7{word-spacing:0.765133pt;}
.ws3d{word-spacing:0.797008pt;}
.wsb3{word-spacing:0.812954pt;}
.ws47{word-spacing:0.850142pt;}
.wsaf{word-spacing:0.860774pt;}
.ws59{word-spacing:0.903276pt;}
.ws69{word-spacing:0.956410pt;}
.ws74{word-spacing:1.009543pt;}
.ws79{word-spacing:1.062677pt;}
.ws87{word-spacing:1.115811pt;}
.ws3f{word-spacing:1.168945pt;}
.ws32{word-spacing:1.222079pt;}
.ws38{word-spacing:1.275213pt;}
.ws11{word-spacing:1.328347pt;}
.ws65{word-spacing:1.381481pt;}
.ws51{word-spacing:1.434614pt;}
.ws7c{word-spacing:1.487748pt;}
.ws7d{word-spacing:1.540882pt;}
.ws34{word-spacing:1.594016pt;}
.ws2d{word-spacing:1.647150pt;}
.wsf{word-spacing:1.700284pt;}
.ws52{word-spacing:1.753418pt;}
.ws91{word-spacing:1.769370pt;}
.ws33{word-spacing:1.806551pt;}
.wsba{word-spacing:1.817190pt;}
.wsb1{word-spacing:1.912832pt;}
.ws9c{word-spacing:1.960653pt;}
.ws42{word-spacing:1.965953pt;}
.wsbb{word-spacing:2.008474pt;}
.ws76{word-spacing:2.019087pt;}
.ws3b{word-spacing:2.072221pt;}
.ws67{word-spacing:2.125355pt;}
.ws39{word-spacing:2.178489pt;}
.ws6{word-spacing:2.231335pt;}
.ws2{word-spacing:2.231616pt;}
.ws40{word-spacing:2.284756pt;}
.ws49{word-spacing:2.337890pt;}
.ws57{word-spacing:2.444158pt;}
.ws56{word-spacing:2.486682pt;}
.wsa{word-spacing:2.550426pt;}
.ws7{word-spacing:2.550432pt;}
.ws5b{word-spacing:2.603559pt;}
.wsa4{word-spacing:2.630144pt;}
.ws2b{word-spacing:2.656693pt;}
.ws1b{word-spacing:2.709827pt;}
.ws6e{word-spacing:2.725786pt;}
.ws8a{word-spacing:2.762961pt;}
.ws6d{word-spacing:2.773606pt;}
.wsbc{word-spacing:2.821427pt;}
.ws7a{word-spacing:2.869229pt;}
.ws9f{word-spacing:2.869248pt;}
.ws4e{word-spacing:2.922363pt;}
.ws6c{word-spacing:3.028630pt;}
.ws80{word-spacing:3.081764pt;}
.wsbe{word-spacing:3.108352pt;}
.ws12{word-spacing:3.134898pt;}
.ws58{word-spacing:3.294300pt;}
.ws2f{word-spacing:3.347434pt;}
.ws28{word-spacing:3.453701pt;}
.wsac{word-spacing:3.490918pt;}
.ws5a{word-spacing:3.559969pt;}
.ws92{word-spacing:3.586560pt;}
.ws22{word-spacing:3.613103pt;}
.ws96{word-spacing:3.634381pt;}
.ws5d{word-spacing:3.666237pt;}
.ws66{word-spacing:3.719371pt;}
.ws3e{word-spacing:3.825638pt;}
.ws15{word-spacing:3.825664pt;}
.ws85{word-spacing:3.931906pt;}
.ws5f{word-spacing:3.985040pt;}
.ws2a{word-spacing:4.038174pt;}
.ws62{word-spacing:4.144442pt;}
.ws4c{word-spacing:4.250709pt;}
.ws88{word-spacing:4.356977pt;}
.ws60{word-spacing:4.410111pt;}
.ws8c{word-spacing:4.516379pt;}
.wsa1{word-spacing:4.542976pt;}
.ws64{word-spacing:4.622646pt;}
.wsb8{word-spacing:4.638618pt;}
.ws35{word-spacing:4.782048pt;}
.ws9b{word-spacing:4.782080pt;}
.ws77{word-spacing:4.835182pt;}
.wsb6{word-spacing:4.925542pt;}
.ws48{word-spacing:4.994583pt;}
.ws5c{word-spacing:5.153985pt;}
.ws4a{word-spacing:5.260253pt;}
.wse{word-spacing:5.313387pt;}
.ws8b{word-spacing:5.738458pt;}
.wsa2{word-spacing:5.786317pt;}
.ws78{word-spacing:5.844725pt;}
.ws75{word-spacing:5.950993pt;}
.ws7b{word-spacing:6.004127pt;}
.ws9a{word-spacing:6.025421pt;}
.ws6f{word-spacing:6.057261pt;}
.ws61{word-spacing:6.110395pt;}
.ws1e{word-spacing:6.163529pt;}
.ws72{word-spacing:6.360166pt;}
.ws54{word-spacing:6.376064pt;}
.ws6b{word-spacing:6.588599pt;}
.ws83{word-spacing:6.960537pt;}
.ws82{word-spacing:7.013670pt;}
.ws31{word-spacing:7.066804pt;}
.ws89{word-spacing:7.385607pt;}
.ws43{word-spacing:7.491875pt;}
.ws7f{word-spacing:7.545009pt;}
.ws2e{word-spacing:8.607686pt;}
.wsad{word-spacing:10.042368pt;}
.ws4{word-spacing:13.761632pt;}
.ws95{word-spacing:14.202778pt;}
.ws94{word-spacing:14.776627pt;}
.ws14{word-spacing:20.190869pt;}
.ws1{word-spacing:25.293814pt;}
.ws13{word-spacing:30.089991pt;}
.ws93{word-spacing:32.577254pt;}
.ws4b{word-spacing:103.504772pt;}
._4{margin-left:-8.607744pt;}
._2e{margin-left:-7.587520pt;}
._f{margin-left:-5.844725pt;}
._8{margin-left:-4.728914pt;}
._3{margin-left:-3.347424pt;}
._1{margin-left:-1.338970pt;}
._46{width:2.630144pt;}
._c{width:3.570592pt;}
._2{width:9.298400pt;}
._0{width:11.530016pt;}
._11{width:13.177232pt;}
._b{width:14.080475pt;}
._15{width:15.451332pt;}
._a{width:16.524633pt;}
._d{width:17.438531pt;}
._7{width:19.085681pt;}
._16{width:20.031468pt;}
._10{width:20.987877pt;}
._2d{width:22.486249pt;}
._14{width:23.591437pt;}
._42{width:24.972917pt;}
._e{width:26.566933pt;}
._2c{width:27.789012pt;}
._5{width:29.648896pt;}
._47{width:30.563025pt;}
._9{width:32.889863pt;}
._31{width:34.892539pt;}
._45{width:36.513589pt;}
._44{width:37.937581pt;}
._43{width:39.531597pt;}
._6{width:48.382719pt;}
._2b{width:103.504772pt;}
._23{width:116.788239pt;}
._1b{width:130.071706pt;}
._20{width:136.713439pt;}
._34{width:164.608719pt;}
._3d{width:189.337213pt;}
._25{width:223.172863pt;}
._22{width:265.467421pt;}
._3f{width:287.571109pt;}
._3e{width:300.588907pt;}
._35{width:302.119166pt;}
._32{width:305.094662pt;}
._40{width:306.646167pt;}
._1a{width:316.475933pt;}
._3b{width:319.292028pt;}
._3a{width:338.739023pt;}
._38{width:345.752693pt;}
._1f{width:354.509158pt;}
._33{width:372.362138pt;}
._41{width:373.329170pt;}
._26{width:376.782871pt;}
._3c{width:379.652100pt;}
._36{width:389.853803pt;}
._39{width:392.882433pt;}
._37{width:414.932988pt;}
._24{width:419.077429pt;}
._2a{width:423.965745pt;}
._17{width:425.017799pt;}
._27{width:437.249212pt;}
._1c{width:456.802475pt;}
._29{width:494.835700pt;}
._2f{width:507.191311pt;}
._21{width:508.119167pt;}
._1d{width:534.048494pt;}
._28{width:590.859220pt;}
._18{width:620.816098pt;}
._1e{width:687.658502pt;}
._19{width:774.426107pt;}
._12{width:1639.821333pt;}
._30{width:2258.472000pt;}
._13{width:2279.725333pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs7{font-size:53.440000pt;}
.fs6{font-size:55.365867pt;}
.fs4{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y119{bottom:4.271905pt;}
.y118{bottom:18.271849pt;}
.y3f{bottom:40.818667pt;}
.y16{bottom:89.120000pt;}
.yd4{bottom:89.817333pt;}
.y14d{bottom:92.638667pt;}
.y180{bottom:98.325333pt;}
.y3e{bottom:98.906667pt;}
.y13b{bottom:99.328000pt;}
.y122{bottom:101.465333pt;}
.y8c{bottom:102.117333pt;}
.y72{bottom:103.473333pt;}
.y15{bottom:105.020000pt;}
.ybb{bottom:105.102667pt;}
.yff{bottom:105.213333pt;}
.yd3{bottom:108.388000pt;}
.y14c{bottom:109.970667pt;}
.y17f{bottom:115.348000pt;}
.y3d{bottom:117.476000pt;}
.y13a{bottom:117.898667pt;}
.y121{bottom:120.034667pt;}
.y8b{bottom:120.688000pt;}
.y14{bottom:120.920000pt;}
.y71{bottom:122.042667pt;}
.yba{bottom:123.672000pt;}
.yfe{bottom:123.782667pt;}
.y14b{bottom:127.304000pt;}
.y17e{bottom:132.370667pt;}
.y3c{bottom:136.046667pt;}
.y139{bottom:136.468000pt;}
.y13{bottom:136.820000pt;}
.y120{bottom:138.605333pt;}
.y8a{bottom:139.258667pt;}
.yd2{bottom:140.056000pt;}
.y70{bottom:140.613333pt;}
.yb9{bottom:142.242667pt;}
.yfd{bottom:142.353333pt;}
.y14a{bottom:144.636000pt;}
.y17d{bottom:149.393333pt;}
.y12{bottom:152.721333pt;}
.y3b{bottom:154.617333pt;}
.y138{bottom:155.038667pt;}
.yd1{bottom:157.152000pt;}
.y11f{bottom:157.176000pt;}
.y89{bottom:157.828000pt;}
.y6f{bottom:159.184000pt;}
.yb8{bottom:160.813333pt;}
.yfc{bottom:160.924000pt;}
.y149{bottom:161.968000pt;}
.y17c{bottom:166.416000pt;}
.y11{bottom:168.621333pt;}
.y3a{bottom:173.186667pt;}
.y137{bottom:173.609333pt;}
.y1ad{bottom:175.097333pt;}
.y11e{bottom:175.745333pt;}
.y88{bottom:176.398667pt;}
.y6e{bottom:177.753333pt;}
.yb7{bottom:179.382667pt;}
.yfb{bottom:179.493333pt;}
.y17b{bottom:183.438667pt;}
.y10{bottom:184.521333pt;}
.y148{bottom:187.270667pt;}
.y39{bottom:191.757333pt;}
.y1ac{bottom:192.120000pt;}
.y136{bottom:192.178667pt;}
.y11d{bottom:194.316000pt;}
.y87{bottom:194.969333pt;}
.y6d{bottom:196.324000pt;}
.yb6{bottom:197.953333pt;}
.yfa{bottom:198.064000pt;}
.yf{bottom:200.422667pt;}
.y17a{bottom:200.461333pt;}
.y147{bottom:204.602667pt;}
.y1ab{bottom:209.142667pt;}
.y38{bottom:210.328000pt;}
.y11c{bottom:212.886667pt;}
.y86{bottom:213.540000pt;}
.y135{bottom:214.734667pt;}
.y6c{bottom:214.894667pt;}
.yb5{bottom:216.524000pt;}
.yf9{bottom:216.634667pt;}
.y179{bottom:217.484000pt;}
.y146{bottom:221.934667pt;}
.ye{bottom:224.293333pt;}
.y37{bottom:228.898667pt;}
.y85{bottom:232.109333pt;}
.y6b{bottom:233.464000pt;}
.y178{bottom:234.506667pt;}
.yb4{bottom:235.093333pt;}
.yf8{bottom:235.205333pt;}
.y145{bottom:239.266667pt;}
.yd{bottom:240.193333pt;}
.y134{bottom:243.308000pt;}
.y11b{bottom:244.556000pt;}
.y1aa{bottom:247.392000pt;}
.y36{bottom:247.468000pt;}
.y84{bottom:250.680000pt;}
.y177{bottom:251.529333pt;}
.y6a{bottom:252.034667pt;}
.yb3{bottom:253.664000pt;}
.yf7{bottom:253.774667pt;}
.yc{bottom:256.093333pt;}
.y144{bottom:256.598667pt;}
.y133{bottom:260.404000pt;}
.y11a{bottom:261.652000pt;}
.y1a9{bottom:264.414667pt;}
.y35{bottom:266.038667pt;}
.y176{bottom:268.553333pt;}
.y83{bottom:269.250667pt;}
.y69{bottom:270.605333pt;}
.yb{bottom:271.994667pt;}
.yb2{bottom:272.234667pt;}
.yf6{bottom:272.345333pt;}
.y1a8{bottom:281.437333pt;}
.y117{bottom:281.588000pt;}
.y143{bottom:281.901333pt;}
.y34{bottom:284.609333pt;}
.y175{bottom:285.576000pt;}
.y82{bottom:287.820000pt;}
.ya{bottom:287.894667pt;}
.y68{bottom:289.176000pt;}
.yb1{bottom:290.804000pt;}
.yf5{bottom:290.916000pt;}
.y1a7{bottom:298.460000pt;}
.y142{bottom:299.233333pt;}
.y174{bottom:302.598667pt;}
.y33{bottom:303.178667pt;}
.y9{bottom:303.794667pt;}
.y81{bottom:306.390667pt;}
.y67{bottom:307.745333pt;}
.yb0{bottom:309.374667pt;}
.yf4{bottom:309.485333pt;}
.y1a6{bottom:315.482667pt;}
.y141{bottom:316.565333pt;}
.y173{bottom:319.621333pt;}
.y8{bottom:319.696000pt;}
.y32{bottom:321.749333pt;}
.y80{bottom:324.961333pt;}
.y66{bottom:326.316000pt;}
.yaf{bottom:327.945333pt;}
.yf3{bottom:328.056000pt;}
.y1a5{bottom:332.506667pt;}
.y140{bottom:333.898667pt;}
.y7{bottom:335.596000pt;}
.y172{bottom:336.644000pt;}
.y31{bottom:340.320000pt;}
.y7f{bottom:343.530667pt;}
.y65{bottom:344.886667pt;}
.yf2{bottom:346.626667pt;}
.y1a4{bottom:349.529333pt;}
.yae{bottom:350.500000pt;}
.y13f{bottom:351.230667pt;}
.y171{bottom:353.666667pt;}
.y6{bottom:356.809333pt;}
.y7e{bottom:362.101333pt;}
.y30{bottom:362.874667pt;}
.y64{bottom:363.456000pt;}
.yf1{bottom:365.196000pt;}
.y1a3{bottom:366.552000pt;}
.y13e{bottom:368.562667pt;}
.y170{bottom:370.689333pt;}
.yad{bottom:372.217333pt;}
.y5{bottom:372.710667pt;}
.y7d{bottom:380.672000pt;}
.y63{bottom:382.026667pt;}
.y1a2{bottom:383.574667pt;}
.yf0{bottom:383.766667pt;}
.y13d{bottom:385.894667pt;}
.y16f{bottom:387.712000pt;}
.y4{bottom:388.610667pt;}
.y7c{bottom:399.241333pt;}
.y62{bottom:400.597333pt;}
.yef{bottom:402.337333pt;}
.y3{bottom:404.510667pt;}
.y16e{bottom:404.734667pt;}
.yac{bottom:406.728000pt;}
.y1a1{bottom:417.620000pt;}
.y7b{bottom:417.812000pt;}
.y61{bottom:419.166667pt;}
.yee{bottom:420.906667pt;}
.y16d{bottom:421.757333pt;}
.yab{bottom:425.298667pt;}
.y2{bottom:425.725333pt;}
.y2f{bottom:433.285333pt;}
.y1a0{bottom:434.642667pt;}
.y7a{bottom:436.382667pt;}
.y60{bottom:437.737333pt;}
.y16c{bottom:438.780000pt;}
.yed{bottom:439.477333pt;}
.y1{bottom:441.625333pt;}
.yaa{bottom:443.868000pt;}
.yd0{bottom:449.896000pt;}
.y19f{bottom:451.665333pt;}
.y2e{bottom:451.856000pt;}
.y79{bottom:454.953333pt;}
.y16b{bottom:455.802667pt;}
.y5f{bottom:456.308000pt;}
.yec{bottom:458.048000pt;}
.ya9{bottom:462.438667pt;}
.ycf{bottom:468.465333pt;}
.y19e{bottom:468.688000pt;}
.y16a{bottom:472.825333pt;}
.y78{bottom:473.522667pt;}
.y5e{bottom:474.877333pt;}
.yeb{bottom:476.617333pt;}
.ya8{bottom:481.009333pt;}
.y19d{bottom:485.710667pt;}
.y2d{bottom:486.366667pt;}
.yce{bottom:487.036000pt;}
.y169{bottom:489.848000pt;}
.y77{bottom:492.093333pt;}
.y5d{bottom:493.448000pt;}
.yea{bottom:495.188000pt;}
.ya7{bottom:499.580000pt;}
.y19c{bottom:502.733333pt;}
.y2c{bottom:504.936000pt;}
.ycd{bottom:505.606667pt;}
.y168{bottom:506.870667pt;}
.y76{bottom:510.664000pt;}
.y5c{bottom:512.018667pt;}
.ye9{bottom:513.758667pt;}
.y19b{bottom:519.756000pt;}
.y2b{bottom:523.506667pt;}
.y167{bottom:523.893333pt;}
.ycc{bottom:524.176000pt;}
.y75{bottom:529.233333pt;}
.y5b{bottom:530.589333pt;}
.ye8{bottom:532.329333pt;}
.ya6{bottom:534.318667pt;}
.y19a{bottom:536.778667pt;}
.y166{bottom:540.916000pt;}
.y2a{bottom:542.077333pt;}
.ycb{bottom:542.746667pt;}
.y74{bottom:547.804000pt;}
.y5a{bottom:549.158667pt;}
.ye7{bottom:550.898667pt;}
.y199{bottom:553.801333pt;}
.ya5{bottom:554.124000pt;}
.y165{bottom:557.938667pt;}
.y29{bottom:560.646667pt;}
.yca{bottom:561.317333pt;}
.y8f{bottom:566.374667pt;}
.y59{bottom:567.729333pt;}
.ye6{bottom:569.469333pt;}
.y73{bottom:570.358667pt;}
.y198{bottom:570.824000pt;}
.y164{bottom:574.961333pt;}
.ya4{bottom:576.465333pt;}
.y28{bottom:579.217333pt;}
.yc9{bottom:579.886667pt;}
.y116{bottom:582.314667pt;}
.y8e{bottom:584.944000pt;}
.y58{bottom:586.300000pt;}
.y197{bottom:587.846667pt;}
.ye5{bottom:588.040000pt;}
.y13c{bottom:588.929333pt;}
.y163{bottom:591.984000pt;}
.y27{bottom:597.788000pt;}
.yc8{bottom:598.457333pt;}
.ya3{bottom:598.808000pt;}
.y115{bottom:600.885333pt;}
.y57{bottom:604.869333pt;}
.ye4{bottom:606.609333pt;}
.y8d{bottom:607.500000pt;}
.y162{bottom:609.008000pt;}
.y26{bottom:616.357333pt;}
.yc7{bottom:617.028000pt;}
.y114{bottom:619.454667pt;}
.ya2{bottom:621.150667pt;}
.y196{bottom:621.892000pt;}
.y56{bottom:623.440000pt;}
.ye3{bottom:625.180000pt;}
.y161{bottom:626.030667pt;}
.y9d{bottom:629.344000pt;}
.y25{bottom:634.928000pt;}
.yc6{bottom:635.598667pt;}
.y113{bottom:638.025333pt;}
.y195{bottom:638.914667pt;}
.y55{bottom:642.010667pt;}
.y160{bottom:643.053333pt;}
.ya1{bottom:643.493333pt;}
.ye2{bottom:643.750667pt;}
.y9c{bottom:645.284000pt;}
.y24{bottom:653.498667pt;}
.yc5{bottom:654.168000pt;}
.y194{bottom:655.937333pt;}
.y112{bottom:656.596000pt;}
.y15f{bottom:660.076000pt;}
.y54{bottom:660.580000pt;}
.ye1{bottom:662.320000pt;}
.ya0{bottom:665.834667pt;}
.y23{bottom:672.068000pt;}
.yc4{bottom:672.738667pt;}
.y193{bottom:672.961333pt;}
.y111{bottom:675.165333pt;}
.y15e{bottom:677.098667pt;}
.y53{bottom:679.150667pt;}
.ye0{bottom:680.890667pt;}
.y9f{bottom:688.177333pt;}
.y192{bottom:689.984000pt;}
.y22{bottom:690.638667pt;}
.yc3{bottom:691.309333pt;}
.y110{bottom:693.736000pt;}
.y15d{bottom:694.121333pt;}
.y52{bottom:697.721333pt;}
.ydf{bottom:699.461333pt;}
.y132{bottom:700.372000pt;}
.y191{bottom:707.006667pt;}
.y21{bottom:709.209333pt;}
.yc2{bottom:709.878667pt;}
.y9e{bottom:710.520000pt;}
.y15c{bottom:711.144000pt;}
.y10f{bottom:712.306667pt;}
.y51{bottom:716.290667pt;}
.yde{bottom:718.030667pt;}
.y131{bottom:720.177333pt;}
.y190{bottom:724.029333pt;}
.y20{bottom:727.778667pt;}
.y15b{bottom:728.166667pt;}
.yc1{bottom:728.449333pt;}
.y10e{bottom:730.876000pt;}
.y9b{bottom:732.861333pt;}
.y50{bottom:734.861333pt;}
.ydd{bottom:736.601333pt;}
.y18f{bottom:741.052000pt;}
.y130{bottom:742.520000pt;}
.y15a{bottom:745.189333pt;}
.yc0{bottom:747.020000pt;}
.y10d{bottom:749.446667pt;}
.y4f{bottom:753.432000pt;}
.y1f{bottom:754.320000pt;}
.ydc{bottom:755.172000pt;}
.y9a{bottom:755.204000pt;}
.y18e{bottom:758.074667pt;}
.y159{bottom:762.212000pt;}
.y12f{bottom:764.862667pt;}
.ybf{bottom:765.589333pt;}
.y10c{bottom:768.017333pt;}
.y4e{bottom:772.002667pt;}
.ydb{bottom:773.742667pt;}
.y18d{bottom:775.097333pt;}
.y99{bottom:777.546667pt;}
.y158{bottom:779.234667pt;}
.ybe{bottom:784.160000pt;}
.y10b{bottom:786.586667pt;}
.y12e{bottom:787.204000pt;}
.y1e{bottom:789.893333pt;}
.y4d{bottom:790.572000pt;}
.y18c{bottom:792.120000pt;}
.yda{bottom:792.312000pt;}
.y157{bottom:796.257333pt;}
.y98{bottom:799.889333pt;}
.y93{bottom:800.112000pt;}
.ybd{bottom:802.730667pt;}
.y1d{bottom:804.238667pt;}
.y10a{bottom:805.157333pt;}
.y4c{bottom:809.142667pt;}
.y12d{bottom:809.546667pt;}
.yd9{bottom:810.882667pt;}
.y156{bottom:813.280000pt;}
.y92{bottom:816.053333pt;}
.y1c{bottom:818.585333pt;}
.y97{bottom:822.230667pt;}
.y109{bottom:823.728000pt;}
.y18b{bottom:826.165333pt;}
.y4b{bottom:827.713333pt;}
.yd8{bottom:829.453333pt;}
.y155{bottom:830.302667pt;}
.y12a{bottom:830.709333pt;}
.y12c{bottom:831.889333pt;}
.ybc{bottom:834.400000pt;}
.y108{bottom:842.297333pt;}
.y18a{bottom:843.188000pt;}
.y96{bottom:844.573333pt;}
.y4a{bottom:846.282667pt;}
.y154{bottom:847.325333pt;}
.yd7{bottom:848.022667pt;}
.y12b{bottom:854.232000pt;}
.y189{bottom:860.210667pt;}
.y107{bottom:860.868000pt;}
.y1b{bottom:862.156000pt;}
.y49{bottom:864.853333pt;}
.yd6{bottom:866.593333pt;}
.y95{bottom:866.916000pt;}
.y153{bottom:868.333333pt;}
.y129{bottom:876.573333pt;}
.y188{bottom:877.233333pt;}
.y106{bottom:879.438667pt;}
.y48{bottom:883.424000pt;}
.yd5{bottom:889.148000pt;}
.y94{bottom:889.258667pt;}
.y187{bottom:894.256000pt;}
.y1a{bottom:896.665333pt;}
.y105{bottom:898.009333pt;}
.y128{bottom:898.916000pt;}
.y47{bottom:901.993333pt;}
.y152{bottom:902.844000pt;}
.y186{bottom:911.278667pt;}
.y91{bottom:911.600000pt;}
.y104{bottom:916.578667pt;}
.y46{bottom:920.564000pt;}
.y127{bottom:921.258667pt;}
.y19{bottom:924.521333pt;}
.y151{bottom:928.146667pt;}
.y185{bottom:928.301333pt;}
.y103{bottom:935.149333pt;}
.y45{bottom:939.134667pt;}
.y90{bottom:943.293333pt;}
.y126{bottom:943.601333pt;}
.y184{bottom:945.324000pt;}
.y18{bottom:952.377333pt;}
.y150{bottom:953.448000pt;}
.y102{bottom:953.720000pt;}
.y44{bottom:957.704000pt;}
.y183{bottom:962.346667pt;}
.y125{bottom:965.942667pt;}
.y101{bottom:972.289333pt;}
.y43{bottom:976.274667pt;}
.y14f{bottom:978.750667pt;}
.y182{bottom:979.369333pt;}
.y17{bottom:980.232000pt;}
.y100{bottom:990.860000pt;}
.y42{bottom:994.845333pt;}
.y14e{bottom:996.082667pt;}
.y181{bottom:996.392000pt;}
.y124{bottom:997.636000pt;}
.y41{bottom:1013.414667pt;}
.y123{bottom:1014.732000pt;}
.y40{bottom:1066.841333pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h7{height:30.945242pt;}
.ha{height:31.157778pt;}
.hb{height:34.813542pt;}
.hf{height:35.052646pt;}
.hc{height:36.873667pt;}
.h6{height:38.415786pt;}
.h8{height:38.681455pt;}
.h4{height:38.947124pt;}
.he{height:39.010156pt;}
.h9{height:46.099251pt;}
.h5{height:69.148877pt;}
.hd{height:279.712000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:503.068533pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:46.689333pt;}
.x1{left:47.621333pt;}
.x10{left:51.038674pt;}
.x14{left:56.198667pt;}
.x7{left:58.586667pt;}
.xb{left:61.741333pt;}
.x1a{left:62.740000pt;}
.x13{left:73.758667pt;}
.x16{left:75.625333pt;}
.xc{left:79.586667pt;}
.x8{left:83.240000pt;}
.x15{left:84.305333pt;}
.x9{left:195.132000pt;}
.x4{left:220.912000pt;}
.x3{left:221.858667pt;}
.x6{left:235.057333pt;}
.xd{left:236.654667pt;}
.xe{left:247.580000pt;}
.x5{left:250.204000pt;}
.xf{left:252.638039pt;}
.x11{left:316.958667pt;}
.x18{left:332.100000pt;}
.x1b{left:337.832000pt;}
.x19{left:350.617333pt;}
.x17{left:360.328000pt;}
.xa{left:455.012000pt;}
.x12{left:649.002667pt;}
}




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