
    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_309ff83209666dc24e9f5c1f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.191000;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_329e6b878d7a099360d14a3e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986000;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_1ec397fcfa7682ed4140c518.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_c43cfdafd4a4403f2a251942.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.388000;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_41cb38e6250d01e5febef99f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916000;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;}
.ma{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);}
.md{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);}
.m1a{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);}
.m10{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);}
.m12{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);}
.m1{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);}
.m18{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);}
.m20{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);}
.mf{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);}
.mc{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);}
.m21{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);}
.m1f{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);}
.m24{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);}
.m17{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);}
.m23{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);}
.m28{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);}
.m19{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);}
.m14{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);}
.m15{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);}
.m16{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.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);}
.m4{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);}
.m7{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);}
.m1c{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);}
.m8{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);}
.m29{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);}
.m9{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);}
.m5{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);}
.m1d{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);}
.m26{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);}
.m3{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);}
.m1e{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);}
.m27{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);}
.m1b{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);}
.m22{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);}
.m13{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);}
.me{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls6{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.000292px;}
.ls1{letter-spacing:0.000600px;}
.ls14{letter-spacing:0.001939px;}
.ls18{letter-spacing:0.003407px;}
.ls10{letter-spacing:0.004800px;}
.ls2{letter-spacing:2.998354px;}
.ls0{letter-spacing:10.461300px;}
.lsb{letter-spacing:11.823447px;}
.ls5{letter-spacing:11.954850px;}
.ls11{letter-spacing:13.281012px;}
.ls13{letter-spacing:13.311831px;}
.ls1c{letter-spacing:13.338635px;}
.lsf{letter-spacing:13.448400px;}
.ls12{letter-spacing:13.454400px;}
.ls15{letter-spacing:13.596085px;}
.ls17{letter-spacing:13.650704px;}
.ls1d{letter-spacing:13.985694px;}
.ls1a{letter-spacing:14.597459px;}
.lse{letter-spacing:16.139412px;}
.ls1b{letter-spacing:18.050400px;}
.lsa{letter-spacing:18.168084px;}
.ls9{letter-spacing:18.647649px;}
.ls8{letter-spacing:18.844335px;}
.ls19{letter-spacing:18.862165px;}
.lsc{letter-spacing:20.109041px;}
.lsd{letter-spacing:22.897276px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls7{letter-spacing:94.286700px;}
.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;}
}
.ws35{word-spacing:-14.943900px;}
.ws94{word-spacing:-13.449600px;}
.ws21{word-spacing:-11.955150px;}
.ws6{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws4d{word-spacing:-4.004965px;}
.ws81{word-spacing:-3.526760px;}
.ws5a{word-spacing:-3.108331px;}
.ws76{word-spacing:-2.689902px;}
.ws41{word-spacing:-2.450800px;}
.ws39{word-spacing:-2.391024px;}
.wsad{word-spacing:-2.259533px;}
.ws4a{word-spacing:-2.032370px;}
.ws1d{word-spacing:-1.912819px;}
.ws1c{word-spacing:-1.853044px;}
.ws38{word-spacing:-1.793268px;}
.ws6b{word-spacing:-1.673717px;}
.ws4c{word-spacing:-1.613941px;}
.ws65{word-spacing:-1.554166px;}
.ws5b{word-spacing:-1.494390px;}
.ws53{word-spacing:-1.434614px;}
.ws72{word-spacing:-1.315063px;}
.ws46{word-spacing:-1.195512px;}
.ws74{word-spacing:-1.135736px;}
.ws73{word-spacing:-1.075961px;}
.ws37{word-spacing:-1.016185px;}
.ws3a{word-spacing:-0.956410px;}
.ws3b{word-spacing:-0.896634px;}
.ws19{word-spacing:-0.836858px;}
.ws36{word-spacing:-0.777083px;}
.ws34{word-spacing:-0.717307px;}
.ws98{word-spacing:-0.699379px;}
.ws3e{word-spacing:-0.657532px;}
.ws3c{word-spacing:-0.597756px;}
.ws8e{word-spacing:-0.537980px;}
.ws31{word-spacing:-0.478205px;}
.ws96{word-spacing:-0.376589px;}
.ws51{word-spacing:-0.358654px;}
.ws12{word-spacing:-0.298878px;}
.ws99{word-spacing:-0.268992px;}
.wsc{word-spacing:-0.239102px;}
.wsde{word-spacing:-0.215194px;}
.wse{word-spacing:-0.179327px;}
.ws9c{word-spacing:-0.161395px;}
.ws11{word-spacing:-0.119551px;}
.wsa7{word-spacing:-0.107597px;}
.ws15{word-spacing:-0.059776px;}
.wsa3{word-spacing:-0.053798px;}
.ws22{word-spacing:-0.047821px;}
.wsbd{word-spacing:-0.027466px;}
.ws0{word-spacing:0.000000px;}
.wsa1{word-spacing:0.053798px;}
.ws1a{word-spacing:0.059776px;}
.wscc{word-spacing:0.107597px;}
.ws1b{word-spacing:0.119551px;}
.wsb8{word-spacing:0.161395px;}
.ws1e{word-spacing:0.179327px;}
.ws9b{word-spacing:0.215194px;}
.ws24{word-spacing:0.239102px;}
.ws9a{word-spacing:0.268992px;}
.ws9{word-spacing:0.298878px;}
.ws29{word-spacing:0.358654px;}
.wsb1{word-spacing:0.376589px;}
.ws10{word-spacing:0.418429px;}
.ws5{word-spacing:0.430387px;}
.wsda{word-spacing:0.537984px;}
.wsf{word-spacing:0.597756px;}
.ws26{word-spacing:0.657532px;}
.ws2f{word-spacing:0.717307px;}
.ws80{word-spacing:0.777083px;}
.ws5f{word-spacing:0.836858px;}
.wscd{word-spacing:0.860774px;}
.ws6c{word-spacing:0.896634px;}
.wsd{word-spacing:0.956410px;}
.ws28{word-spacing:1.016185px;}
.wsdc{word-spacing:1.022170px;}
.wscf{word-spacing:1.129766px;}
.ws4f{word-spacing:1.135736px;}
.ws67{word-spacing:1.195512px;}
.ws60{word-spacing:1.255288px;}
.ws2b{word-spacing:1.315063px;}
.ws71{word-spacing:1.434614px;}
.ws93{word-spacing:1.452557px;}
.ws8d{word-spacing:1.494390px;}
.ws5c{word-spacing:1.554166px;}
.ws33{word-spacing:1.613941px;}
.wsca{word-spacing:1.667750px;}
.ws82{word-spacing:1.721549px;}
.ws84{word-spacing:1.733492px;}
.ws92{word-spacing:1.738917px;}
.ws48{word-spacing:1.912819px;}
.wsb7{word-spacing:1.990541px;}
.ws7f{word-spacing:2.032370px;}
.ws62{word-spacing:2.092146px;}
.ws8c{word-spacing:2.151922px;}
.ws52{word-spacing:2.211697px;}
.ws32{word-spacing:2.271473px;}
.wsaf{word-spacing:2.313331px;}
.ws25{word-spacing:2.391024px;}
.ws7b{word-spacing:2.450800px;}
.ws4{word-spacing:2.510252px;}
.wsb{word-spacing:2.510575px;}
.ws78{word-spacing:2.570351px;}
.ws58{word-spacing:2.809453px;}
.ws16{word-spacing:2.869229px;}
.ws8{word-spacing:2.869236px;}
.wsc0{word-spacing:2.905114px;}
.ws56{word-spacing:2.929004px;}
.ws9d{word-spacing:3.031833px;}
.ws3d{word-spacing:3.048556px;}
.ws2d{word-spacing:3.168107px;}
.wsbf{word-spacing:3.219312px;}
.wsb9{word-spacing:3.220032px;}
.wsa9{word-spacing:3.224131px;}
.ws89{word-spacing:3.227882px;}
.wsc5{word-spacing:3.227904px;}
.ws54{word-spacing:3.287658px;}
.wsbe{word-spacing:3.335501px;}
.ws66{word-spacing:3.347434px;}
.wsd4{word-spacing:3.443098px;}
.ws43{word-spacing:3.466985px;}
.wsdf{word-spacing:3.496896px;}
.wsd6{word-spacing:3.540673px;}
.ws13{word-spacing:3.583475px;}
.wsb4{word-spacing:3.604493px;}
.ws17{word-spacing:3.646312px;}
.ws50{word-spacing:3.706087px;}
.wsa0{word-spacing:3.712090px;}
.ws2e{word-spacing:3.765863px;}
.ws97{word-spacing:3.927283px;}
.ws3f{word-spacing:4.004965px;}
.ws30{word-spacing:4.124516px;}
.ws8b{word-spacing:4.184292px;}
.ws79{word-spacing:4.244068px;}
.wsc7{word-spacing:4.250074px;}
.ws68{word-spacing:4.303843px;}
.ws14{word-spacing:4.303872px;}
.ws64{word-spacing:4.423394px;}
.ws44{word-spacing:4.542946px;}
.wsb6{word-spacing:4.572864px;}
.wsd2{word-spacing:4.626662px;}
.ws77{word-spacing:4.662497px;}
.ws90{word-spacing:4.722272px;}
.ws45{word-spacing:4.782048px;}
.wsbc{word-spacing:4.788058px;}
.ws18{word-spacing:4.841824px;}
.wsd0{word-spacing:4.841856px;}
.ws88{word-spacing:4.901599px;}
.ws2a{word-spacing:5.140702px;}
.wsaa{word-spacing:5.272243px;}
.ws27{word-spacing:5.320028px;}
.ws23{word-spacing:5.379804px;}
.wsc9{word-spacing:5.433638px;}
.ws91{word-spacing:5.439580px;}
.ws85{word-spacing:5.499355px;}
.ws49{word-spacing:5.618906px;}
.ws70{word-spacing:5.678682px;}
.ws8a{word-spacing:5.798233px;}
.ws95{word-spacing:6.079219px;}
.ws69{word-spacing:6.216662px;}
.ws63{word-spacing:6.276438px;}
.ws57{word-spacing:6.395989px;}
.ws86{word-spacing:6.515540px;}
.ws40{word-spacing:6.635092px;}
.ws7d{word-spacing:6.814418px;}
.ws6a{word-spacing:7.471950px;}
.wsc2{word-spacing:7.477978px;}
.ws2c{word-spacing:7.890379px;}
.wsc3{word-spacing:7.962163px;}
.ws8f{word-spacing:8.129482px;}
.ws83{word-spacing:8.308808px;}
.ws6d{word-spacing:8.368584px;}
.ws2{word-spacing:10.417308px;}
.wsc6{word-spacing:11.243866px;}
.ws59{word-spacing:11.775793px;}
.ws20{word-spacing:11.904966px;}
.ws6e{word-spacing:13.031081px;}
.wsdb{word-spacing:13.180608px;}
.wsab{word-spacing:13.233090px;}
.wsba{word-spacing:13.288205px;}
.wscb{word-spacing:13.388314px;}
.wsdd{word-spacing:13.390051px;}
.wsb2{word-spacing:13.395802px;}
.wsb3{word-spacing:13.396051px;}
.wsc1{word-spacing:13.557197px;}
.wsc4{word-spacing:13.582220px;}
.wsd5{word-spacing:13.610995px;}
.ws75{word-spacing:13.748388px;}
.wsd9{word-spacing:13.766909px;}
.wsce{word-spacing:14.263509px;}
.ws9f{word-spacing:14.417971px;}
.ws9e{word-spacing:14.471770px;}
.ws55{word-spacing:14.585246px;}
.ws87{word-spacing:14.645022px;}
.ws47{word-spacing:14.824349px;}
.ws6f{word-spacing:14.878708px;}
.ws7a{word-spacing:14.880372px;}
.ws7e{word-spacing:14.880508px;}
.ws7c{word-spacing:14.883727px;}
.ws4b{word-spacing:14.884124px;}
.ws4e{word-spacing:14.943900px;}
.wsa{word-spacing:15.183002px;}
.ws1f{word-spacing:15.302554px;}
.ws5e{word-spacing:15.541656px;}
.ws5d{word-spacing:15.601432px;}
.wsae{word-spacing:16.616832px;}
.wsa8{word-spacing:16.617322px;}
.wsd8{word-spacing:16.619107px;}
.wsa2{word-spacing:16.620931px;}
.wsbb{word-spacing:16.621814px;}
.wsb0{word-spacing:16.622832px;}
.wsac{word-spacing:16.623322px;}
.wsa4{word-spacing:16.623706px;}
.wsd3{word-spacing:16.657425px;}
.wsa6{word-spacing:16.759153px;}
.wsa5{word-spacing:16.785101px;}
.wsd7{word-spacing:16.946496px;}
.ws61{word-spacing:16.976270px;}
.wsb5{word-spacing:17.000294px;}
.wsc8{word-spacing:17.645875px;}
.ws42{word-spacing:18.470660px;}
.wsd1{word-spacing:27.975168px;}
.ws1{word-spacing:28.455541px;}
.ws7{word-spacing:54.988186px;}
._16{margin-left:-8.189257px;}
._c{margin-left:-6.455765px;}
._6{margin-left:-5.308087px;}
._2{margin-left:-4.196275px;}
._1{margin-left:-2.301354px;}
._7{margin-left:-1.147334px;}
._20{width:2.794264px;}
._4{width:3.900604px;}
._0{width:12.971268px;}
._b{width:14.513874px;}
._1d{width:15.678492px;}
._d{width:16.946376px;}
._9{width:18.470660px;}
._17{width:19.785724px;}
._a{width:21.710140px;}
._15{width:23.503408px;}
._11{width:24.866650px;}
._8{width:26.540366px;}
._12{width:28.692288px;}
._13{width:30.306229px;}
._14{width:31.692665px;}
._3{width:33.785395px;}
._10{width:35.088277px;}
._1c{width:36.654040px;}
._1b{width:38.566859px;}
._22{width:39.972168px;}
._1e{width:46.263870px;}
._21{width:50.839488px;}
._5{width:53.508476px;}
._19{width:58.621566px;}
._1f{width:61.868160px;}
._18{width:93.548814px;}
._e{width:1675.857600px;}
._1a{width:2496.501600px;}
._f{width:2520.411600px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fs5{font-size:47.820600px;}
.fs8{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs7{font-size:62.286600px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y40{bottom:45.921000px;}
.y3f{bottom:99.720000px;}
.y15{bottom:100.260000px;}
.y166{bottom:105.961500px;}
.y134{bottom:112.267500px;}
.y11e{bottom:114.882000px;}
.yb3{bottom:116.407500px;}
.ye7{bottom:116.794500px;}
.y14{bottom:118.147500px;}
.yf9{bottom:120.322500px;}
.y3e{bottom:120.610500px;}
.y165{bottom:125.112000px;}
.y133{bottom:131.418000px;}
.y85{bottom:132.234000px;}
.y110{bottom:133.647000px;}
.y11d{bottom:135.774000px;}
.y13{bottom:136.035000px;}
.y72{bottom:137.298000px;}
.ye6{bottom:137.686500px;}
.yb2{bottom:137.731500px;}
.yf8{bottom:141.213000px;}
.y3d{bottom:141.502500px;}
.y164{bottom:144.262500px;}
.y10f{bottom:152.880000px;}
.y84{bottom:153.126000px;}
.y12{bottom:153.922500px;}
.y132{bottom:155.052000px;}
.y11c{bottom:156.666000px;}
.y71{bottom:158.190000px;}
.yb1{bottom:158.623500px;}
.yf7{bottom:162.105000px;}
.y3c{bottom:162.394500px;}
.ye5{bottom:163.062000px;}
.y163{bottom:163.413000px;}
.y11{bottom:171.811500px;}
.y83{bottom:174.016500px;}
.y11b{bottom:177.556500px;}
.y70{bottom:179.082000px;}
.yb0{bottom:179.514000px;}
.y162{bottom:182.563500px;}
.yf6{bottom:182.997000px;}
.y3b{bottom:183.285000px;}
.y10{bottom:189.699000px;}
.y131{bottom:193.876500px;}
.y82{bottom:194.908500px;}
.ye4{bottom:198.403500px;}
.y11a{bottom:198.448500px;}
.y6f{bottom:199.972500px;}
.yaf{bottom:200.406000px;}
.y161{bottom:201.714000px;}
.yf5{bottom:203.887500px;}
.y3a{bottom:204.177000px;}
.yf{bottom:207.586500px;}
.y130{bottom:213.375000px;}
.y81{bottom:215.800500px;}
.ye3{bottom:219.295500px;}
.y119{bottom:219.340500px;}
.y6e{bottom:220.864500px;}
.yae{bottom:221.298000px;}
.yf4{bottom:224.779500px;}
.y39{bottom:225.069000px;}
.ye{bottom:225.475500px;}
.y80{bottom:236.691000px;}
.y160{bottom:240.015000px;}
.ye2{bottom:240.187500px;}
.y118{bottom:240.232500px;}
.y6d{bottom:241.756500px;}
.y12f{bottom:241.840500px;}
.yad{bottom:242.190000px;}
.yf3{bottom:245.671500px;}
.y38{bottom:245.961000px;}
.yd{bottom:252.330000px;}
.y169{bottom:254.436000px;}
.y7f{bottom:257.583000px;}
.y15f{bottom:259.165500px;}
.ye1{bottom:261.078000px;}
.y117{bottom:261.123000px;}
.y12e{bottom:261.339000px;}
.y6c{bottom:262.647000px;}
.yac{bottom:263.080500px;}
.yf2{bottom:266.563500px;}
.y37{bottom:266.851500px;}
.ybd{bottom:267.564000px;}
.yc{bottom:270.217500px;}
.y168{bottom:273.586500px;}
.y15e{bottom:278.316000px;}
.y7e{bottom:278.475000px;}
.ye0{bottom:281.970000px;}
.y116{bottom:282.015000px;}
.y6b{bottom:283.539000px;}
.yab{bottom:283.972500px;}
.y36{bottom:287.743500px;}
.yb{bottom:288.105000px;}
.y12d{bottom:289.804500px;}
.yf1{bottom:291.937500px;}
.y167{bottom:292.737000px;}
.y15d{bottom:297.466500px;}
.y7d{bottom:299.365500px;}
.ydf{bottom:302.862000px;}
.y115{bottom:302.907000px;}
.y6a{bottom:304.431000px;}
.yaa{bottom:304.864500px;}
.ya{bottom:305.994000px;}
.ybc{bottom:306.388500px;}
.y35{bottom:308.635500px;}
.y15c{bottom:316.617000px;}
.y12c{bottom:318.270000px;}
.y7c{bottom:320.257500px;}
.yde{bottom:323.752500px;}
.y114{bottom:323.797500px;}
.y9{bottom:323.881500px;}
.y69{bottom:325.323000px;}
.ya9{bottom:325.755000px;}
.ybb{bottom:327.280500px;}
.y34{bottom:329.526000px;}
.y15b{bottom:335.767500px;}
.y7b{bottom:341.149500px;}
.y8{bottom:341.769000px;}
.ydd{bottom:344.644500px;}
.y113{bottom:344.689500px;}
.y68{bottom:346.213500px;}
.ya8{bottom:346.647000px;}
.y12b{bottom:346.734000px;}
.yba{bottom:348.171000px;}
.y33{bottom:350.418000px;}
.y15a{bottom:354.918000px;}
.y7{bottom:359.658000px;}
.y7a{bottom:362.041500px;}
.ydc{bottom:365.536500px;}
.y112{bottom:365.581500px;}
.y12a{bottom:366.234000px;}
.y67{bottom:367.105500px;}
.ya7{bottom:367.539000px;}
.yb9{bottom:369.063000px;}
.y32{bottom:371.310000px;}
.y159{bottom:374.070000px;}
.y79{bottom:382.932000px;}
.y6{bottom:383.523000px;}
.ydb{bottom:386.427000px;}
.y66{bottom:387.997500px;}
.ya6{bottom:388.429500px;}
.yb8{bottom:389.955000px;}
.y111{bottom:390.955500px;}
.y31{bottom:392.200500px;}
.y158{bottom:393.220500px;}
.y129{bottom:394.698000px;}
.y5{bottom:401.410500px;}
.y78{bottom:403.824000px;}
.yda{bottom:407.319000px;}
.y65{bottom:408.888000px;}
.ya5{bottom:409.321500px;}
.yb7{bottom:410.845500px;}
.y157{bottom:412.371000px;}
.y30{bottom:413.092500px;}
.y128{bottom:414.198000px;}
.y4{bottom:419.299500px;}
.y77{bottom:424.716000px;}
.yd9{bottom:428.211000px;}
.y64{bottom:429.780000px;}
.ya4{bottom:430.213500px;}
.y156{bottom:431.521500px;}
.yb6{bottom:431.737500px;}
.y127{bottom:433.696500px;}
.y3{bottom:437.187000px;}
.y2f{bottom:438.468000px;}
.y76{bottom:445.606500px;}
.yd8{bottom:449.101500px;}
.y63{bottom:450.672000px;}
.ya3{bottom:451.104000px;}
.yb5{bottom:452.629500px;}
.y126{bottom:453.195000px;}
.y2{bottom:461.052000px;}
.y75{bottom:466.498500px;}
.y155{bottom:469.822500px;}
.yd7{bottom:469.993500px;}
.y62{bottom:471.562500px;}
.ya2{bottom:471.996000px;}
.y125{bottom:472.693500px;}
.yf0{bottom:473.520000px;}
.yb4{bottom:478.003500px;}
.y1{bottom:478.941000px;}
.y154{bottom:488.973000px;}
.yd6{bottom:490.885500px;}
.y74{bottom:491.872500px;}
.y124{bottom:492.192000px;}
.y61{bottom:492.454500px;}
.ya1{bottom:492.888000px;}
.yef{bottom:494.412000px;}
.y10e{bottom:496.369500px;}
.y153{bottom:508.123500px;}
.yd5{bottom:511.777500px;}
.y60{bottom:513.346500px;}
.yee{bottom:515.304000px;}
.y73{bottom:516.304500px;}
.y10d{bottom:517.261500px;}
.y2e{bottom:517.678500px;}
.ya0{bottom:518.262000px;}
.y123{bottom:520.657500px;}
.y152{bottom:527.274000px;}
.y5f{bottom:534.237000px;}
.yed{bottom:536.194500px;}
.yd4{bottom:537.151500px;}
.y10c{bottom:538.152000px;}
.y122{bottom:540.678000px;}
.y151{bottom:546.424500px;}
.y9f{bottom:553.605000px;}
.y5e{bottom:555.129000px;}
.y2d{bottom:556.503000px;}
.yec{bottom:557.086500px;}
.y121{bottom:560.700000px;}
.y10b{bottom:563.527500px;}
.y150{bottom:565.575000px;}
.yd3{bottom:572.494500px;}
.y9e{bottom:574.497000px;}
.y5d{bottom:576.021000px;}
.y2c{bottom:577.395000px;}
.yeb{bottom:577.978500px;}
.y120{bottom:580.720500px;}
.y14f{bottom:584.725500px;}
.yd2{bottom:593.385000px;}
.y9d{bottom:595.387500px;}
.y5c{bottom:596.913000px;}
.y2b{bottom:598.287000px;}
.yea{bottom:598.870500px;}
.y11f{bottom:600.741000px;}
.y14e{bottom:603.876000px;}
.yd1{bottom:614.277000px;}
.y5b{bottom:617.803500px;}
.y2a{bottom:619.177500px;}
.ye9{bottom:619.761000px;}
.y9c{bottom:620.763000px;}
.y14d{bottom:623.026500px;}
.yd0{bottom:635.169000px;}
.y5a{bottom:638.695500px;}
.y29{bottom:640.069500px;}
.y10a{bottom:640.653000px;}
.y9b{bottom:641.653500px;}
.y14c{bottom:642.177000px;}
.ye8{bottom:645.136500px;}
.ycf{bottom:656.059500px;}
.y59{bottom:659.587500px;}
.y28{bottom:660.961500px;}
.y14b{bottom:661.327500px;}
.y109{bottom:661.545000px;}
.y9a{bottom:662.545500px;}
.yce{bottom:676.951500px;}
.y58{bottom:680.478000px;}
.y27{bottom:681.852000px;}
.y108{bottom:682.435500px;}
.y99{bottom:683.437500px;}
.ycd{bottom:697.843500px;}
.y14a{bottom:699.628500px;}
.y57{bottom:701.370000px;}
.y26{bottom:702.744000px;}
.y107{bottom:703.327500px;}
.y98{bottom:704.329500px;}
.ycc{bottom:718.734000px;}
.y149{bottom:718.779000px;}
.y56{bottom:722.262000px;}
.y25{bottom:723.636000px;}
.y106{bottom:724.219500px;}
.y97{bottom:725.220000px;}
.y148{bottom:737.929500px;}
.ycb{bottom:739.626000px;}
.y55{bottom:743.152500px;}
.y24{bottom:744.526500px;}
.y105{bottom:745.110000px;}
.y96{bottom:750.595500px;}
.y147{bottom:757.081500px;}
.yca{bottom:760.518000px;}
.y54{bottom:764.044500px;}
.y23{bottom:765.418500px;}
.y104{bottom:766.002000px;}
.y95{bottom:771.486000px;}
.y146{bottom:776.232000px;}
.yc9{bottom:781.408500px;}
.y53{bottom:784.936500px;}
.y22{bottom:786.310500px;}
.y103{bottom:786.894000px;}
.y145{bottom:795.382500px;}
.y94{bottom:796.861500px;}
.yc8{bottom:802.300500px;}
.y52{bottom:805.827000px;}
.y102{bottom:807.784500px;}
.y144{bottom:814.533000px;}
.y21{bottom:816.168000px;}
.y93{bottom:817.753500px;}
.yc7{bottom:823.192500px;}
.y51{bottom:826.719000px;}
.y101{bottom:828.676500px;}
.y143{bottom:833.683500px;}
.y92{bottom:838.644000px;}
.yc6{bottom:844.084500px;}
.y50{bottom:847.611000px;}
.y100{bottom:849.568500px;}
.y142{bottom:852.834000px;}
.y20{bottom:855.834000px;}
.y91{bottom:859.536000px;}
.yc5{bottom:864.975000px;}
.y4f{bottom:868.503000px;}
.yff{bottom:870.460500px;}
.y1f{bottom:871.974000px;}
.y141{bottom:871.984500px;}
.y90{bottom:880.428000px;}
.yc4{bottom:885.867000px;}
.y4e{bottom:889.393500px;}
.y140{bottom:891.135000px;}
.yfe{bottom:891.351000px;}
.y1e{bottom:892.452000px;}
.y1d{bottom:904.252500px;}
.y8f{bottom:905.802000px;}
.yc3{bottom:906.759000px;}
.y4d{bottom:910.285500px;}
.yfd{bottom:912.243000px;}
.y1c{bottom:924.732000px;}
.y8e{bottom:926.694000px;}
.yc2{bottom:927.649500px;}
.y13f{bottom:929.436000px;}
.y4c{bottom:931.177500px;}
.yfc{bottom:933.135000px;}
.y1b{bottom:936.531000px;}
.y8d{bottom:947.584500px;}
.yc1{bottom:948.541500px;}
.y13e{bottom:948.586500px;}
.y4b{bottom:952.068000px;}
.yfb{bottom:954.025500px;}
.y1a{bottom:957.010500px;}
.y13d{bottom:967.737000px;}
.y8c{bottom:968.476500px;}
.y4a{bottom:972.960000px;}
.yc0{bottom:973.915500px;}
.yfa{bottom:979.401000px;}
.y13c{bottom:986.887500px;}
.y8b{bottom:989.368500px;}
.y49{bottom:993.852000px;}
.ybf{bottom:995.809500px;}
.y19{bottom:1001.332500px;}
.y13b{bottom:1006.038000px;}
.y8a{bottom:1010.260500px;}
.y48{bottom:1014.742500px;}
.y13a{bottom:1025.188500px;}
.y89{bottom:1031.151000px;}
.y47{bottom:1035.634500px;}
.y18{bottom:1040.157000px;}
.y139{bottom:1044.339000px;}
.y88{bottom:1052.043000px;}
.y46{bottom:1056.526500px;}
.y138{bottom:1063.489500px;}
.y17{bottom:1071.495000px;}
.y87{bottom:1072.935000px;}
.y45{bottom:1077.417000px;}
.y137{bottom:1082.640000px;}
.y86{bottom:1093.825500px;}
.y44{bottom:1098.309000px;}
.y136{bottom:1101.790500px;}
.y16{bottom:1102.831500px;}
.ybe{bottom:1114.717500px;}
.y43{bottom:1119.201000px;}
.y135{bottom:1120.941000px;}
.y42{bottom:1140.091500px;}
.y41{bottom:1200.196500px;}
.hb{height:27.655250px;}
.h6{height:32.565965px;}
.h2{height:37.993262px;}
.h8{height:43.038432px;}
.h7{height:43.421105px;}
.h3{height:43.815515px;}
.hc{height:48.848947px;}
.hd{height:49.117939px;}
.ha{height:51.646464px;}
.h9{height:54.276245px;}
.h5{height:54.411312px;}
.h4{height:77.469696px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x58{left:85.848000px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x3{left:269.914500px;}
.x5{left:281.479500px;}
.x32{left:284.184000px;}
.x2a{left:291.027000px;}
.x16{left:304.431000px;}
.x2b{left:305.671500px;}
.x33{left:315.729000px;}
.x17{left:319.375500px;}
.x6{left:324.060000px;}
.x7{left:331.531500px;}
.x20{left:335.284500px;}
.x21{left:350.229000px;}
.x2e{left:352.267500px;}
.xe{left:357.613500px;}
.xf{left:365.085000px;}
.x10{left:367.449000px;}
.x3c{left:373.177500px;}
.x11{left:374.920500px;}
.x12{left:378.582000px;}
.x8{left:383.791500px;}
.x13{left:386.053500px;}
.x9{left:391.263000px;}
.x18{left:394.389000px;}
.x4c{left:398.430000px;}
.x4d{left:419.934000px;}
.x4e{left:434.877000px;}
.x56{left:450.045000px;}
.x57{left:464.989500px;}
.x36{left:466.270500px;}
.x37{left:481.215000px;}
.x52{left:493.479000px;}
.x53{left:508.423500px;}
.x24{left:518.416500px;}
.x2c{left:523.435500px;}
.x25{left:533.061000px;}
.x2d{left:538.080000px;}
.x3f{left:547.368000px;}
.x2f{left:553.867500px;}
.x40{left:562.311000px;}
.xc{left:606.073500px;}
.xd{left:613.545000px;}
.x26{left:618.646500px;}
.x51{left:620.145000px;}
.x22{left:631.086000px;}
.x27{left:633.292500px;}
.x49{left:635.233500px;}
.x23{left:645.732000px;}
.x4a{left:650.178000px;}
.x30{left:666.555000px;}
.x1c{left:667.800000px;}
.x45{left:670.263000px;}
.x1e{left:679.290000px;}
.x31{left:681.499500px;}
.x1d{left:682.744500px;}
.x46{left:685.207500px;}
.x1f{left:694.234500px;}
.x38{left:696.729000px;}
.x4f{left:701.539500px;}
.x54{left:705.627000px;}
.x39{left:711.672000px;}
.x50{left:716.482500px;}
.x55{left:720.571500px;}
.x19{left:726.615000px;}
.x28{left:734.679000px;}
.x1a{left:741.559500px;}
.x29{left:749.325000px;}
.x34{left:757.338000px;}
.x4b{left:764.296500px;}
.xa{left:768.825000px;}
.x35{left:772.281000px;}
.x43{left:773.442000px;}
.xb{left:776.298000px;}
.x47{left:784.162500px;}
.x44{left:788.386500px;}
.x3a{left:790.864500px;}
.x48{left:799.105500px;}
.x41{left:800.125500px;}
.x3b{left:805.807500px;}
.x42{left:814.770000px;}
.x1b{left:817.698000px;}
.x3d{left:818.962500px;}
.x14{left:824.754000px;}
.x15{left:832.225500px;}
.x3e{left:833.907000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.000260pt;}
.ls1{letter-spacing:0.000533pt;}
.ls14{letter-spacing:0.001724pt;}
.ls18{letter-spacing:0.003029pt;}
.ls10{letter-spacing:0.004267pt;}
.ls2{letter-spacing:2.665203pt;}
.ls0{letter-spacing:9.298933pt;}
.lsb{letter-spacing:10.509731pt;}
.ls5{letter-spacing:10.626533pt;}
.ls11{letter-spacing:11.805344pt;}
.ls13{letter-spacing:11.832739pt;}
.ls1c{letter-spacing:11.856565pt;}
.lsf{letter-spacing:11.954133pt;}
.ls12{letter-spacing:11.959467pt;}
.ls15{letter-spacing:12.085409pt;}
.ls17{letter-spacing:12.133959pt;}
.ls1d{letter-spacing:12.431728pt;}
.ls1a{letter-spacing:12.975519pt;}
.lse{letter-spacing:14.346144pt;}
.ls1b{letter-spacing:16.044800pt;}
.lsa{letter-spacing:16.149408pt;}
.ls9{letter-spacing:16.575688pt;}
.ls8{letter-spacing:16.750520pt;}
.ls19{letter-spacing:16.766369pt;}
.lsc{letter-spacing:17.874703pt;}
.lsd{letter-spacing:20.353135pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls7{letter-spacing:83.810400pt;}
.ws35{word-spacing:-13.283467pt;}
.ws94{word-spacing:-11.955200pt;}
.ws21{word-spacing:-10.626800pt;}
.ws6{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws4d{word-spacing:-3.559969pt;}
.ws81{word-spacing:-3.134898pt;}
.ws5a{word-spacing:-2.762961pt;}
.ws76{word-spacing:-2.391024pt;}
.ws41{word-spacing:-2.178489pt;}
.ws39{word-spacing:-2.125355pt;}
.wsad{word-spacing:-2.008474pt;}
.ws4a{word-spacing:-1.806551pt;}
.ws1d{word-spacing:-1.700284pt;}
.ws1c{word-spacing:-1.647150pt;}
.ws38{word-spacing:-1.594016pt;}
.ws6b{word-spacing:-1.487748pt;}
.ws4c{word-spacing:-1.434614pt;}
.ws65{word-spacing:-1.381481pt;}
.ws5b{word-spacing:-1.328347pt;}
.ws53{word-spacing:-1.275213pt;}
.ws72{word-spacing:-1.168945pt;}
.ws46{word-spacing:-1.062677pt;}
.ws74{word-spacing:-1.009543pt;}
.ws73{word-spacing:-0.956410pt;}
.ws37{word-spacing:-0.903276pt;}
.ws3a{word-spacing:-0.850142pt;}
.ws3b{word-spacing:-0.797008pt;}
.ws19{word-spacing:-0.743874pt;}
.ws36{word-spacing:-0.690740pt;}
.ws34{word-spacing:-0.637606pt;}
.ws98{word-spacing:-0.621670pt;}
.ws3e{word-spacing:-0.584473pt;}
.ws3c{word-spacing:-0.531339pt;}
.ws8e{word-spacing:-0.478205pt;}
.ws31{word-spacing:-0.425071pt;}
.ws96{word-spacing:-0.334746pt;}
.ws51{word-spacing:-0.318803pt;}
.ws12{word-spacing:-0.265669pt;}
.ws99{word-spacing:-0.239104pt;}
.wsc{word-spacing:-0.212535pt;}
.wsde{word-spacing:-0.191283pt;}
.wse{word-spacing:-0.159402pt;}
.ws9c{word-spacing:-0.143462pt;}
.ws11{word-spacing:-0.106268pt;}
.wsa7{word-spacing:-0.095642pt;}
.ws15{word-spacing:-0.053134pt;}
.wsa3{word-spacing:-0.047821pt;}
.ws22{word-spacing:-0.042507pt;}
.wsbd{word-spacing:-0.024414pt;}
.ws0{word-spacing:0.000000pt;}
.wsa1{word-spacing:0.047821pt;}
.ws1a{word-spacing:0.053134pt;}
.wscc{word-spacing:0.095642pt;}
.ws1b{word-spacing:0.106268pt;}
.wsb8{word-spacing:0.143462pt;}
.ws1e{word-spacing:0.159402pt;}
.ws9b{word-spacing:0.191283pt;}
.ws24{word-spacing:0.212535pt;}
.ws9a{word-spacing:0.239104pt;}
.ws9{word-spacing:0.265669pt;}
.ws29{word-spacing:0.318803pt;}
.wsb1{word-spacing:0.334746pt;}
.ws10{word-spacing:0.371937pt;}
.ws5{word-spacing:0.382566pt;}
.wsda{word-spacing:0.478208pt;}
.wsf{word-spacing:0.531339pt;}
.ws26{word-spacing:0.584473pt;}
.ws2f{word-spacing:0.637606pt;}
.ws80{word-spacing:0.690740pt;}
.ws5f{word-spacing:0.743874pt;}
.wscd{word-spacing:0.765133pt;}
.ws6c{word-spacing:0.797008pt;}
.wsd{word-spacing:0.850142pt;}
.ws28{word-spacing:0.903276pt;}
.wsdc{word-spacing:0.908595pt;}
.wscf{word-spacing:1.004237pt;}
.ws4f{word-spacing:1.009543pt;}
.ws67{word-spacing:1.062677pt;}
.ws60{word-spacing:1.115811pt;}
.ws2b{word-spacing:1.168945pt;}
.ws71{word-spacing:1.275213pt;}
.ws93{word-spacing:1.291162pt;}
.ws8d{word-spacing:1.328347pt;}
.ws5c{word-spacing:1.381481pt;}
.ws33{word-spacing:1.434614pt;}
.wsca{word-spacing:1.482445pt;}
.ws82{word-spacing:1.530266pt;}
.ws84{word-spacing:1.540882pt;}
.ws92{word-spacing:1.545704pt;}
.ws48{word-spacing:1.700284pt;}
.wsb7{word-spacing:1.769370pt;}
.ws7f{word-spacing:1.806551pt;}
.ws62{word-spacing:1.859685pt;}
.ws8c{word-spacing:1.912819pt;}
.ws52{word-spacing:1.965953pt;}
.ws32{word-spacing:2.019087pt;}
.wsaf{word-spacing:2.056294pt;}
.ws25{word-spacing:2.125355pt;}
.ws7b{word-spacing:2.178489pt;}
.ws4{word-spacing:2.231335pt;}
.wsb{word-spacing:2.231622pt;}
.ws78{word-spacing:2.284756pt;}
.ws58{word-spacing:2.497292pt;}
.ws16{word-spacing:2.550426pt;}
.ws8{word-spacing:2.550432pt;}
.wsc0{word-spacing:2.582323pt;}
.ws56{word-spacing:2.603559pt;}
.ws9d{word-spacing:2.694963pt;}
.ws3d{word-spacing:2.709827pt;}
.ws2d{word-spacing:2.816095pt;}
.wsbf{word-spacing:2.861611pt;}
.wsb9{word-spacing:2.862251pt;}
.wsa9{word-spacing:2.865894pt;}
.ws89{word-spacing:2.869229pt;}
.wsc5{word-spacing:2.869248pt;}
.ws54{word-spacing:2.922363pt;}
.wsbe{word-spacing:2.964890pt;}
.ws66{word-spacing:2.975497pt;}
.wsd4{word-spacing:3.060531pt;}
.ws43{word-spacing:3.081764pt;}
.wsdf{word-spacing:3.108352pt;}
.wsd6{word-spacing:3.147265pt;}
.ws13{word-spacing:3.185311pt;}
.wsb4{word-spacing:3.203994pt;}
.ws17{word-spacing:3.241166pt;}
.ws50{word-spacing:3.294300pt;}
.wsa0{word-spacing:3.299635pt;}
.ws2e{word-spacing:3.347434pt;}
.ws97{word-spacing:3.490918pt;}
.ws3f{word-spacing:3.559969pt;}
.ws30{word-spacing:3.666237pt;}
.ws8b{word-spacing:3.719371pt;}
.ws79{word-spacing:3.772505pt;}
.wsc7{word-spacing:3.777843pt;}
.ws68{word-spacing:3.825638pt;}
.ws14{word-spacing:3.825664pt;}
.ws64{word-spacing:3.931906pt;}
.ws44{word-spacing:4.038174pt;}
.wsb6{word-spacing:4.064768pt;}
.wsd2{word-spacing:4.112589pt;}
.ws77{word-spacing:4.144442pt;}
.ws90{word-spacing:4.197575pt;}
.ws45{word-spacing:4.250709pt;}
.wsbc{word-spacing:4.256051pt;}
.ws18{word-spacing:4.303843pt;}
.wsd0{word-spacing:4.303872pt;}
.ws88{word-spacing:4.356977pt;}
.ws2a{word-spacing:4.569513pt;}
.wsaa{word-spacing:4.686438pt;}
.ws27{word-spacing:4.728914pt;}
.ws23{word-spacing:4.782048pt;}
.wsc9{word-spacing:4.829901pt;}
.ws91{word-spacing:4.835182pt;}
.ws85{word-spacing:4.888316pt;}
.ws49{word-spacing:4.994583pt;}
.ws70{word-spacing:5.047717pt;}
.ws8a{word-spacing:5.153985pt;}
.ws95{word-spacing:5.403750pt;}
.ws69{word-spacing:5.525922pt;}
.ws63{word-spacing:5.579056pt;}
.ws57{word-spacing:5.685324pt;}
.ws86{word-spacing:5.791591pt;}
.ws40{word-spacing:5.897859pt;}
.ws7d{word-spacing:6.057261pt;}
.ws6a{word-spacing:6.641733pt;}
.wsc2{word-spacing:6.647091pt;}
.ws2c{word-spacing:7.013670pt;}
.wsc3{word-spacing:7.077478pt;}
.ws8f{word-spacing:7.226206pt;}
.ws83{word-spacing:7.385607pt;}
.ws6d{word-spacing:7.438741pt;}
.ws2{word-spacing:9.259829pt;}
.wsc6{word-spacing:9.994547pt;}
.ws59{word-spacing:10.467372pt;}
.ws20{word-spacing:10.582192pt;}
.ws6e{word-spacing:11.583183pt;}
.wsdb{word-spacing:11.716096pt;}
.wsab{word-spacing:11.762747pt;}
.wsba{word-spacing:11.811738pt;}
.wscb{word-spacing:11.900723pt;}
.wsdd{word-spacing:11.902268pt;}
.wsb2{word-spacing:11.907379pt;}
.wsb3{word-spacing:11.907601pt;}
.wsc1{word-spacing:12.050842pt;}
.wsc4{word-spacing:12.073084pt;}
.wsd5{word-spacing:12.098662pt;}
.ws75{word-spacing:12.220789pt;}
.wsd9{word-spacing:12.237252pt;}
.wsce{word-spacing:12.678675pt;}
.ws9f{word-spacing:12.815974pt;}
.ws9e{word-spacing:12.863795pt;}
.ws55{word-spacing:12.964663pt;}
.ws87{word-spacing:13.017797pt;}
.ws47{word-spacing:13.177199pt;}
.ws6f{word-spacing:13.225518pt;}
.ws7a{word-spacing:13.226997pt;}
.ws7e{word-spacing:13.227118pt;}
.ws7c{word-spacing:13.229980pt;}
.ws4b{word-spacing:13.230333pt;}
.ws4e{word-spacing:13.283467pt;}
.wsa{word-spacing:13.496002pt;}
.ws1f{word-spacing:13.602270pt;}
.ws5e{word-spacing:13.814805pt;}
.ws5d{word-spacing:13.867939pt;}
.wsae{word-spacing:14.770517pt;}
.wsa8{word-spacing:14.770953pt;}
.wsd8{word-spacing:14.772540pt;}
.wsa2{word-spacing:14.774161pt;}
.wsbb{word-spacing:14.774946pt;}
.wsb0{word-spacing:14.775851pt;}
.wsac{word-spacing:14.776286pt;}
.wsa4{word-spacing:14.776627pt;}
.wsd3{word-spacing:14.806600pt;}
.wsa6{word-spacing:14.897025pt;}
.wsa5{word-spacing:14.920090pt;}
.wsd7{word-spacing:15.063552pt;}
.ws61{word-spacing:15.090018pt;}
.wsb5{word-spacing:15.111373pt;}
.wsc8{word-spacing:15.685222pt;}
.ws42{word-spacing:16.418365pt;}
.wsd1{word-spacing:24.866816pt;}
.ws1{word-spacing:25.293814pt;}
.ws7{word-spacing:48.878387pt;}
._16{margin-left:-7.279340pt;}
._c{margin-left:-5.738458pt;}
._6{margin-left:-4.718299pt;}
._2{margin-left:-3.730022pt;}
._1{margin-left:-2.045648pt;}
._7{margin-left:-1.019852pt;}
._20{width:2.483790pt;}
._4{width:3.467203pt;}
._0{width:11.530016pt;}
._b{width:12.901221pt;}
._1d{width:13.936437pt;}
._d{width:15.063445pt;}
._9{width:16.418365pt;}
._17{width:17.587310pt;}
._a{width:19.297902pt;}
._15{width:20.891918pt;}
._11{width:22.103689pt;}
._8{width:23.591437pt;}
._12{width:25.504256pt;}
._13{width:26.938870pt;}
._14{width:28.171258pt;}
._3{width:30.031462pt;}
._10{width:31.189580pt;}
._1c{width:32.581369pt;}
._1b{width:34.281653pt;}
._22{width:35.530816pt;}
._1e{width:41.123440pt;}
._21{width:45.190656pt;}
._5{width:47.563090pt;}
._19{width:52.108059pt;}
._1f{width:54.993920pt;}
._18{width:83.154501pt;}
._e{width:1489.651200pt;}
._1a{width:2219.112533pt;}
._f{width:2240.365867pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fs5{font-size:42.507200pt;}
.fs8{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs7{font-size:55.365867pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:40.818667pt;}
.y3f{bottom:88.640000pt;}
.y15{bottom:89.120000pt;}
.y166{bottom:94.188000pt;}
.y134{bottom:99.793333pt;}
.y11e{bottom:102.117333pt;}
.yb3{bottom:103.473333pt;}
.ye7{bottom:103.817333pt;}
.y14{bottom:105.020000pt;}
.yf9{bottom:106.953333pt;}
.y3e{bottom:107.209333pt;}
.y165{bottom:111.210667pt;}
.y133{bottom:116.816000pt;}
.y85{bottom:117.541333pt;}
.y110{bottom:118.797333pt;}
.y11d{bottom:120.688000pt;}
.y13{bottom:120.920000pt;}
.y72{bottom:122.042667pt;}
.ye6{bottom:122.388000pt;}
.yb2{bottom:122.428000pt;}
.yf8{bottom:125.522667pt;}
.y3d{bottom:125.780000pt;}
.y164{bottom:128.233333pt;}
.y10f{bottom:135.893333pt;}
.y84{bottom:136.112000pt;}
.y12{bottom:136.820000pt;}
.y132{bottom:137.824000pt;}
.y11c{bottom:139.258667pt;}
.y71{bottom:140.613333pt;}
.yb1{bottom:140.998667pt;}
.yf7{bottom:144.093333pt;}
.y3c{bottom:144.350667pt;}
.ye5{bottom:144.944000pt;}
.y163{bottom:145.256000pt;}
.y11{bottom:152.721333pt;}
.y83{bottom:154.681333pt;}
.y11b{bottom:157.828000pt;}
.y70{bottom:159.184000pt;}
.yb0{bottom:159.568000pt;}
.y162{bottom:162.278667pt;}
.yf6{bottom:162.664000pt;}
.y3b{bottom:162.920000pt;}
.y10{bottom:168.621333pt;}
.y131{bottom:172.334667pt;}
.y82{bottom:173.252000pt;}
.ye4{bottom:176.358667pt;}
.y11a{bottom:176.398667pt;}
.y6f{bottom:177.753333pt;}
.yaf{bottom:178.138667pt;}
.y161{bottom:179.301333pt;}
.yf5{bottom:181.233333pt;}
.y3a{bottom:181.490667pt;}
.yf{bottom:184.521333pt;}
.y130{bottom:189.666667pt;}
.y81{bottom:191.822667pt;}
.ye3{bottom:194.929333pt;}
.y119{bottom:194.969333pt;}
.y6e{bottom:196.324000pt;}
.yae{bottom:196.709333pt;}
.yf4{bottom:199.804000pt;}
.y39{bottom:200.061333pt;}
.ye{bottom:200.422667pt;}
.y80{bottom:210.392000pt;}
.y160{bottom:213.346667pt;}
.ye2{bottom:213.500000pt;}
.y118{bottom:213.540000pt;}
.y6d{bottom:214.894667pt;}
.y12f{bottom:214.969333pt;}
.yad{bottom:215.280000pt;}
.yf3{bottom:218.374667pt;}
.y38{bottom:218.632000pt;}
.yd{bottom:224.293333pt;}
.y169{bottom:226.165333pt;}
.y7f{bottom:228.962667pt;}
.y15f{bottom:230.369333pt;}
.ye1{bottom:232.069333pt;}
.y117{bottom:232.109333pt;}
.y12e{bottom:232.301333pt;}
.y6c{bottom:233.464000pt;}
.yac{bottom:233.849333pt;}
.yf2{bottom:236.945333pt;}
.y37{bottom:237.201333pt;}
.ybd{bottom:237.834667pt;}
.yc{bottom:240.193333pt;}
.y168{bottom:243.188000pt;}
.y15e{bottom:247.392000pt;}
.y7e{bottom:247.533333pt;}
.ye0{bottom:250.640000pt;}
.y116{bottom:250.680000pt;}
.y6b{bottom:252.034667pt;}
.yab{bottom:252.420000pt;}
.y36{bottom:255.772000pt;}
.yb{bottom:256.093333pt;}
.y12d{bottom:257.604000pt;}
.yf1{bottom:259.500000pt;}
.y167{bottom:260.210667pt;}
.y15d{bottom:264.414667pt;}
.y7d{bottom:266.102667pt;}
.ydf{bottom:269.210667pt;}
.y115{bottom:269.250667pt;}
.y6a{bottom:270.605333pt;}
.yaa{bottom:270.990667pt;}
.ya{bottom:271.994667pt;}
.ybc{bottom:272.345333pt;}
.y35{bottom:274.342667pt;}
.y15c{bottom:281.437333pt;}
.y12c{bottom:282.906667pt;}
.y7c{bottom:284.673333pt;}
.yde{bottom:287.780000pt;}
.y114{bottom:287.820000pt;}
.y9{bottom:287.894667pt;}
.y69{bottom:289.176000pt;}
.ya9{bottom:289.560000pt;}
.ybb{bottom:290.916000pt;}
.y34{bottom:292.912000pt;}
.y15b{bottom:298.460000pt;}
.y7b{bottom:303.244000pt;}
.y8{bottom:303.794667pt;}
.ydd{bottom:306.350667pt;}
.y113{bottom:306.390667pt;}
.y68{bottom:307.745333pt;}
.ya8{bottom:308.130667pt;}
.y12b{bottom:308.208000pt;}
.yba{bottom:309.485333pt;}
.y33{bottom:311.482667pt;}
.y15a{bottom:315.482667pt;}
.y7{bottom:319.696000pt;}
.y7a{bottom:321.814667pt;}
.ydc{bottom:324.921333pt;}
.y112{bottom:324.961333pt;}
.y12a{bottom:325.541333pt;}
.y67{bottom:326.316000pt;}
.ya7{bottom:326.701333pt;}
.yb9{bottom:328.056000pt;}
.y32{bottom:330.053333pt;}
.y159{bottom:332.506667pt;}
.y79{bottom:340.384000pt;}
.y6{bottom:340.909333pt;}
.ydb{bottom:343.490667pt;}
.y66{bottom:344.886667pt;}
.ya6{bottom:345.270667pt;}
.yb8{bottom:346.626667pt;}
.y111{bottom:347.516000pt;}
.y31{bottom:348.622667pt;}
.y158{bottom:349.529333pt;}
.y129{bottom:350.842667pt;}
.y5{bottom:356.809333pt;}
.y78{bottom:358.954667pt;}
.yda{bottom:362.061333pt;}
.y65{bottom:363.456000pt;}
.ya5{bottom:363.841333pt;}
.yb7{bottom:365.196000pt;}
.y157{bottom:366.552000pt;}
.y30{bottom:367.193333pt;}
.y128{bottom:368.176000pt;}
.y4{bottom:372.710667pt;}
.y77{bottom:377.525333pt;}
.yd9{bottom:380.632000pt;}
.y64{bottom:382.026667pt;}
.ya4{bottom:382.412000pt;}
.y156{bottom:383.574667pt;}
.yb6{bottom:383.766667pt;}
.y127{bottom:385.508000pt;}
.y3{bottom:388.610667pt;}
.y2f{bottom:389.749333pt;}
.y76{bottom:396.094667pt;}
.yd8{bottom:399.201333pt;}
.y63{bottom:400.597333pt;}
.ya3{bottom:400.981333pt;}
.yb5{bottom:402.337333pt;}
.y126{bottom:402.840000pt;}
.y2{bottom:409.824000pt;}
.y75{bottom:414.665333pt;}
.y155{bottom:417.620000pt;}
.yd7{bottom:417.772000pt;}
.y62{bottom:419.166667pt;}
.ya2{bottom:419.552000pt;}
.y125{bottom:420.172000pt;}
.yf0{bottom:420.906667pt;}
.yb4{bottom:424.892000pt;}
.y1{bottom:425.725333pt;}
.y154{bottom:434.642667pt;}
.yd6{bottom:436.342667pt;}
.y74{bottom:437.220000pt;}
.y124{bottom:437.504000pt;}
.y61{bottom:437.737333pt;}
.ya1{bottom:438.122667pt;}
.yef{bottom:439.477333pt;}
.y10e{bottom:441.217333pt;}
.y153{bottom:451.665333pt;}
.yd5{bottom:454.913333pt;}
.y60{bottom:456.308000pt;}
.yee{bottom:458.048000pt;}
.y73{bottom:458.937333pt;}
.y10d{bottom:459.788000pt;}
.y2e{bottom:460.158667pt;}
.ya0{bottom:460.677333pt;}
.y123{bottom:462.806667pt;}
.y152{bottom:468.688000pt;}
.y5f{bottom:474.877333pt;}
.yed{bottom:476.617333pt;}
.yd4{bottom:477.468000pt;}
.y10c{bottom:478.357333pt;}
.y122{bottom:480.602667pt;}
.y151{bottom:485.710667pt;}
.y9f{bottom:492.093333pt;}
.y5e{bottom:493.448000pt;}
.y2d{bottom:494.669333pt;}
.yec{bottom:495.188000pt;}
.y121{bottom:498.400000pt;}
.y10b{bottom:500.913333pt;}
.y150{bottom:502.733333pt;}
.yd3{bottom:508.884000pt;}
.y9e{bottom:510.664000pt;}
.y5d{bottom:512.018667pt;}
.y2c{bottom:513.240000pt;}
.yeb{bottom:513.758667pt;}
.y120{bottom:516.196000pt;}
.y14f{bottom:519.756000pt;}
.yd2{bottom:527.453333pt;}
.y9d{bottom:529.233333pt;}
.y5c{bottom:530.589333pt;}
.y2b{bottom:531.810667pt;}
.yea{bottom:532.329333pt;}
.y11f{bottom:533.992000pt;}
.y14e{bottom:536.778667pt;}
.yd1{bottom:546.024000pt;}
.y5b{bottom:549.158667pt;}
.y2a{bottom:550.380000pt;}
.ye9{bottom:550.898667pt;}
.y9c{bottom:551.789333pt;}
.y14d{bottom:553.801333pt;}
.yd0{bottom:564.594667pt;}
.y5a{bottom:567.729333pt;}
.y29{bottom:568.950667pt;}
.y10a{bottom:569.469333pt;}
.y9b{bottom:570.358667pt;}
.y14c{bottom:570.824000pt;}
.ye8{bottom:573.454667pt;}
.ycf{bottom:583.164000pt;}
.y59{bottom:586.300000pt;}
.y28{bottom:587.521333pt;}
.y14b{bottom:587.846667pt;}
.y109{bottom:588.040000pt;}
.y9a{bottom:588.929333pt;}
.yce{bottom:601.734667pt;}
.y58{bottom:604.869333pt;}
.y27{bottom:606.090667pt;}
.y108{bottom:606.609333pt;}
.y99{bottom:607.500000pt;}
.ycd{bottom:620.305333pt;}
.y14a{bottom:621.892000pt;}
.y57{bottom:623.440000pt;}
.y26{bottom:624.661333pt;}
.y107{bottom:625.180000pt;}
.y98{bottom:626.070667pt;}
.ycc{bottom:638.874667pt;}
.y149{bottom:638.914667pt;}
.y56{bottom:642.010667pt;}
.y25{bottom:643.232000pt;}
.y106{bottom:643.750667pt;}
.y97{bottom:644.640000pt;}
.y148{bottom:655.937333pt;}
.ycb{bottom:657.445333pt;}
.y55{bottom:660.580000pt;}
.y24{bottom:661.801333pt;}
.y105{bottom:662.320000pt;}
.y96{bottom:667.196000pt;}
.y147{bottom:672.961333pt;}
.yca{bottom:676.016000pt;}
.y54{bottom:679.150667pt;}
.y23{bottom:680.372000pt;}
.y104{bottom:680.890667pt;}
.y95{bottom:685.765333pt;}
.y146{bottom:689.984000pt;}
.yc9{bottom:694.585333pt;}
.y53{bottom:697.721333pt;}
.y22{bottom:698.942667pt;}
.y103{bottom:699.461333pt;}
.y145{bottom:707.006667pt;}
.y94{bottom:708.321333pt;}
.yc8{bottom:713.156000pt;}
.y52{bottom:716.290667pt;}
.y102{bottom:718.030667pt;}
.y144{bottom:724.029333pt;}
.y21{bottom:725.482667pt;}
.y93{bottom:726.892000pt;}
.yc7{bottom:731.726667pt;}
.y51{bottom:734.861333pt;}
.y101{bottom:736.601333pt;}
.y143{bottom:741.052000pt;}
.y92{bottom:745.461333pt;}
.yc6{bottom:750.297333pt;}
.y50{bottom:753.432000pt;}
.y100{bottom:755.172000pt;}
.y142{bottom:758.074667pt;}
.y20{bottom:760.741333pt;}
.y91{bottom:764.032000pt;}
.yc5{bottom:768.866667pt;}
.y4f{bottom:772.002667pt;}
.yff{bottom:773.742667pt;}
.y1f{bottom:775.088000pt;}
.y141{bottom:775.097333pt;}
.y90{bottom:782.602667pt;}
.yc4{bottom:787.437333pt;}
.y4e{bottom:790.572000pt;}
.y140{bottom:792.120000pt;}
.yfe{bottom:792.312000pt;}
.y1e{bottom:793.290667pt;}
.y1d{bottom:803.780000pt;}
.y8f{bottom:805.157333pt;}
.yc3{bottom:806.008000pt;}
.y4d{bottom:809.142667pt;}
.yfd{bottom:810.882667pt;}
.y1c{bottom:821.984000pt;}
.y8e{bottom:823.728000pt;}
.yc2{bottom:824.577333pt;}
.y13f{bottom:826.165333pt;}
.y4c{bottom:827.713333pt;}
.yfc{bottom:829.453333pt;}
.y1b{bottom:832.472000pt;}
.y8d{bottom:842.297333pt;}
.yc1{bottom:843.148000pt;}
.y13e{bottom:843.188000pt;}
.y4b{bottom:846.282667pt;}
.yfb{bottom:848.022667pt;}
.y1a{bottom:850.676000pt;}
.y13d{bottom:860.210667pt;}
.y8c{bottom:860.868000pt;}
.y4a{bottom:864.853333pt;}
.yc0{bottom:865.702667pt;}
.yfa{bottom:870.578667pt;}
.y13c{bottom:877.233333pt;}
.y8b{bottom:879.438667pt;}
.y49{bottom:883.424000pt;}
.ybf{bottom:885.164000pt;}
.y19{bottom:890.073333pt;}
.y13b{bottom:894.256000pt;}
.y8a{bottom:898.009333pt;}
.y48{bottom:901.993333pt;}
.y13a{bottom:911.278667pt;}
.y89{bottom:916.578667pt;}
.y47{bottom:920.564000pt;}
.y18{bottom:924.584000pt;}
.y139{bottom:928.301333pt;}
.y88{bottom:935.149333pt;}
.y46{bottom:939.134667pt;}
.y138{bottom:945.324000pt;}
.y17{bottom:952.440000pt;}
.y87{bottom:953.720000pt;}
.y45{bottom:957.704000pt;}
.y137{bottom:962.346667pt;}
.y86{bottom:972.289333pt;}
.y44{bottom:976.274667pt;}
.y136{bottom:979.369333pt;}
.y16{bottom:980.294667pt;}
.ybe{bottom:990.860000pt;}
.y43{bottom:994.845333pt;}
.y135{bottom:996.392000pt;}
.y42{bottom:1013.414667pt;}
.y41{bottom:1066.841333pt;}
.hb{height:24.582445pt;}
.h6{height:28.947524pt;}
.h2{height:33.771789pt;}
.h8{height:38.256384pt;}
.h7{height:38.596538pt;}
.h3{height:38.947124pt;}
.hc{height:43.421286pt;}
.hd{height:43.660390pt;}
.ha{height:45.907968pt;}
.h9{height:48.245551pt;}
.h5{height:48.365611pt;}
.h4{height:68.861952pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x58{left:76.309333pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x3{left:239.924000pt;}
.x5{left:250.204000pt;}
.x32{left:252.608000pt;}
.x2a{left:258.690667pt;}
.x16{left:270.605333pt;}
.x2b{left:271.708000pt;}
.x33{left:280.648000pt;}
.x17{left:283.889333pt;}
.x6{left:288.053333pt;}
.x7{left:294.694667pt;}
.x20{left:298.030667pt;}
.x21{left:311.314667pt;}
.x2e{left:313.126667pt;}
.xe{left:317.878667pt;}
.xf{left:324.520000pt;}
.x10{left:326.621333pt;}
.x3c{left:331.713333pt;}
.x11{left:333.262667pt;}
.x12{left:336.517333pt;}
.x8{left:341.148000pt;}
.x13{left:343.158667pt;}
.x9{left:347.789333pt;}
.x18{left:350.568000pt;}
.x4c{left:354.160000pt;}
.x4d{left:373.274667pt;}
.x4e{left:386.557333pt;}
.x56{left:400.040000pt;}
.x57{left:413.324000pt;}
.x36{left:414.462667pt;}
.x37{left:427.746667pt;}
.x52{left:438.648000pt;}
.x53{left:451.932000pt;}
.x24{left:460.814667pt;}
.x2c{left:465.276000pt;}
.x25{left:473.832000pt;}
.x2d{left:478.293333pt;}
.x3f{left:486.549333pt;}
.x2f{left:492.326667pt;}
.x40{left:499.832000pt;}
.xc{left:538.732000pt;}
.xd{left:545.373333pt;}
.x26{left:549.908000pt;}
.x51{left:551.240000pt;}
.x22{left:560.965333pt;}
.x27{left:562.926667pt;}
.x49{left:564.652000pt;}
.x23{left:573.984000pt;}
.x4a{left:577.936000pt;}
.x30{left:592.493333pt;}
.x1c{left:593.600000pt;}
.x45{left:595.789333pt;}
.x1e{left:603.813333pt;}
.x31{left:605.777333pt;}
.x1d{left:606.884000pt;}
.x46{left:609.073333pt;}
.x1f{left:617.097333pt;}
.x38{left:619.314667pt;}
.x4f{left:623.590667pt;}
.x54{left:627.224000pt;}
.x39{left:632.597333pt;}
.x50{left:636.873333pt;}
.x55{left:640.508000pt;}
.x19{left:645.880000pt;}
.x28{left:653.048000pt;}
.x1a{left:659.164000pt;}
.x29{left:666.066667pt;}
.x34{left:673.189333pt;}
.x4b{left:679.374667pt;}
.xa{left:683.400000pt;}
.x35{left:686.472000pt;}
.x43{left:687.504000pt;}
.xb{left:690.042667pt;}
.x47{left:697.033333pt;}
.x44{left:700.788000pt;}
.x3a{left:702.990667pt;}
.x48{left:710.316000pt;}
.x41{left:711.222667pt;}
.x3b{left:716.273333pt;}
.x42{left:724.240000pt;}
.x1b{left:726.842667pt;}
.x3d{left:727.966667pt;}
.x14{left:733.114667pt;}
.x15{left:739.756000pt;}
.x3e{left:741.250667pt;}
}




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