
    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_4b82030989b656f5d10d7baa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.736000;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_d0c6562702f94ed1f3977945.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.660000;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_ae3d30b173e585783f2d5020.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.885000;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_280a104997920cf3bb13520b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_97d96fb4d2a6056878720f82.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9ce80a2920804f79c6e68a73.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0cce36c9720519b7567514ca.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_263e328084979bce95057820.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_028f91869cba9227041dd898.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{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);}
.m22{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);}
.m20{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);}
.m23{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);}
.m26{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);}
.m1b{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);}
.m25{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);}
.m2{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);}
.ma{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);}
.m15{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);}
.m1a{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);}
.m7{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);}
.me{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);}
.m1d{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);}
.m9{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);}
.m12{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);}
.m1c{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);}
.mc{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);}
.m4{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);}
.m14{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);}
.m10{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);}
.m13{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);}
.md{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);}
.m8{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);}
.m16{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);}
.m27{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);}
.mb{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);}
.m18{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);}
.m5{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);}
.m19{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);}
.m29{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);}
.m11{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);}
.m28{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);}
.m24{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);}
.m3{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);}
.m17{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);}
.m1f{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);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:28.692000px;}
.ls5{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000435px;}
.ls13{letter-spacing:0.000810px;}
.ls17{letter-spacing:0.004800px;}
.ls4{letter-spacing:1.275394px;}
.lsd{letter-spacing:1.420741px;}
.lsa{letter-spacing:1.467483px;}
.ls10{letter-spacing:1.491634px;}
.ls0{letter-spacing:1.861130px;}
.ls1{letter-spacing:10.461300px;}
.ls3{letter-spacing:11.954850px;}
.ls6{letter-spacing:12.373549px;}
.lsc{letter-spacing:13.089483px;}
.lse{letter-spacing:13.114200px;}
.lsb{letter-spacing:13.114766px;}
.ls16{letter-spacing:13.448400px;}
.ls1a{letter-spacing:13.454400px;}
.ls18{letter-spacing:13.541318px;}
.lsf{letter-spacing:13.989483px;}
.ls7{letter-spacing:14.824349px;}
.ls15{letter-spacing:16.139412px;}
.ls14{letter-spacing:16.199188px;}
.ls19{letter-spacing:16.285694px;}
.ls9{letter-spacing:18.069483px;}
.ls8{letter-spacing:18.101675px;}
.ls2{letter-spacing:28.453654px;}
.ls11{letter-spacing:875.500741px;}
.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;}
}
.wsa3{word-spacing:-14.943900px;}
.wsb5{word-spacing:-13.449600px;}
.ws2d{word-spacing:-11.955150px;}
.ws6{word-spacing:-10.460700px;}
.ws3a{word-spacing:-3.227882px;}
.ws51{word-spacing:-3.108331px;}
.ws3c{word-spacing:-3.048556px;}
.wsb0{word-spacing:-2.988780px;}
.ws50{word-spacing:-2.869229px;}
.wscb{word-spacing:-2.689920px;}
.wsca{word-spacing:-2.636122px;}
.ws65{word-spacing:-2.570351px;}
.ws71{word-spacing:-2.391024px;}
.wsa4{word-spacing:-2.331248px;}
.ws7c{word-spacing:-2.211697px;}
.ws8c{word-spacing:-2.092146px;}
.wsae{word-spacing:-1.990541px;}
.ws8f{word-spacing:-1.912819px;}
.ws1{word-spacing:-1.908367px;}
.wsb4{word-spacing:-1.775347px;}
.wsa0{word-spacing:-1.733492px;}
.wsaf{word-spacing:-1.721549px;}
.ws6f{word-spacing:-1.613941px;}
.ws44{word-spacing:-1.554166px;}
.ws83{word-spacing:-1.494390px;}
.ws5f{word-spacing:-1.434614px;}
.wsa7{word-spacing:-1.374839px;}
.ws0{word-spacing:-1.322630px;}
.ws58{word-spacing:-1.315063px;}
.ws36{word-spacing:-1.195512px;}
.ws8{word-spacing:-1.171598px;}
.ws6b{word-spacing:-1.135736px;}
.ws7b{word-spacing:-1.075961px;}
.wsa{word-spacing:-1.046070px;}
.ws5e{word-spacing:-1.016185px;}
.wsb1{word-spacing:-0.956410px;}
.ws8a{word-spacing:-0.896634px;}
.ws73{word-spacing:-0.777083px;}
.ws9f{word-spacing:-0.717307px;}
.ws60{word-spacing:-0.657532px;}
.ws9b{word-spacing:-0.597756px;}
.ws4a{word-spacing:-0.537980px;}
.wsc1{word-spacing:-0.484186px;}
.ws3b{word-spacing:-0.478205px;}
.ws86{word-spacing:-0.418429px;}
.wsbc{word-spacing:-0.376589px;}
.ws79{word-spacing:-0.358654px;}
.wscf{word-spacing:-0.322790px;}
.ws3f{word-spacing:-0.298878px;}
.wsc3{word-spacing:-0.268992px;}
.ws3e{word-spacing:-0.239102px;}
.ws1c{word-spacing:-0.215194px;}
.ws3d{word-spacing:-0.179327px;}
.ws18{word-spacing:-0.161395px;}
.ws20{word-spacing:-0.119551px;}
.wsab{word-spacing:-0.107597px;}
.ws33{word-spacing:-0.059776px;}
.wsac{word-spacing:-0.053798px;}
.wscc{word-spacing:-0.009638px;}
.wsbf{word-spacing:-0.007296px;}
.ws1e{word-spacing:-0.004867px;}
.wsbd{word-spacing:-0.003859px;}
.wsce{word-spacing:-0.001910px;}
.ws5{word-spacing:-0.001129px;}
.ws3{word-spacing:0.000000px;}
.ws2c{word-spacing:0.000727px;}
.ws19{word-spacing:0.053798px;}
.ws21{word-spacing:0.059776px;}
.ws1d{word-spacing:0.107597px;}
.ws25{word-spacing:0.119551px;}
.ws64{word-spacing:0.161395px;}
.ws29{word-spacing:0.179327px;}
.ws16{word-spacing:0.215194px;}
.ws48{word-spacing:0.239102px;}
.wsad{word-spacing:0.268992px;}
.ws49{word-spacing:0.298878px;}
.wsbb{word-spacing:0.322790px;}
.ws46{word-spacing:0.358654px;}
.ws70{word-spacing:0.418429px;}
.wsc2{word-spacing:0.430387px;}
.ws7d{word-spacing:0.478205px;}
.ws9c{word-spacing:0.537980px;}
.wsc0{word-spacing:0.591782px;}
.ws72{word-spacing:0.597756px;}
.ws14{word-spacing:0.645581px;}
.ws26{word-spacing:0.657532px;}
.ws15{word-spacing:0.699379px;}
.ws78{word-spacing:0.717307px;}
.ws56{word-spacing:0.777083px;}
.ws63{word-spacing:0.806976px;}
.ws68{word-spacing:0.836858px;}
.wsa8{word-spacing:0.860774px;}
.ws4c{word-spacing:0.896634px;}
.ws75{word-spacing:0.956410px;}
.ws1a{word-spacing:0.968371px;}
.ws9{word-spacing:1.004227px;}
.ws43{word-spacing:1.016185px;}
.ws59{word-spacing:1.075961px;}
.ws62{word-spacing:1.075968px;}
.wsa5{word-spacing:1.135736px;}
.ws1b{word-spacing:1.183565px;}
.ws80{word-spacing:1.195512px;}
.ws40{word-spacing:1.255288px;}
.ws76{word-spacing:1.315063px;}
.wsaa{word-spacing:1.344960px;}
.ws94{word-spacing:1.374839px;}
.ws55{word-spacing:1.434614px;}
.wsa6{word-spacing:1.494390px;}
.wsa1{word-spacing:1.554166px;}
.ws2a{word-spacing:1.613941px;}
.wsc8{word-spacing:1.667750px;}
.ws30{word-spacing:1.673717px;}
.ws34{word-spacing:1.733492px;}
.wsb2{word-spacing:1.775347px;}
.ws22{word-spacing:1.793268px;}
.ws52{word-spacing:1.853044px;}
.wsb3{word-spacing:1.882944px;}
.ws27{word-spacing:1.912819px;}
.ws6e{word-spacing:1.972595px;}
.ws6d{word-spacing:2.032370px;}
.ws7e{word-spacing:2.092146px;}
.ws91{word-spacing:2.098138px;}
.ws39{word-spacing:2.151922px;}
.wsc7{word-spacing:2.205734px;}
.ws81{word-spacing:2.271473px;}
.ws4e{word-spacing:2.331248px;}
.ws82{word-spacing:2.391024px;}
.ws90{word-spacing:2.420928px;}
.ws41{word-spacing:2.450800px;}
.ws4{word-spacing:2.510299px;}
.ws2{word-spacing:2.511541px;}
.ws31{word-spacing:2.570351px;}
.ws5b{word-spacing:2.630126px;}
.ws8d{word-spacing:2.689902px;}
.wsa9{word-spacing:2.749678px;}
.ws99{word-spacing:2.809453px;}
.ws84{word-spacing:2.869229px;}
.ws12{word-spacing:2.869236px;}
.wsbe{word-spacing:2.905114px;}
.ws2b{word-spacing:2.988780px;}
.ws5d{word-spacing:3.048556px;}
.ws28{word-spacing:3.108331px;}
.ws69{word-spacing:3.227882px;}
.wsc6{word-spacing:3.227904px;}
.wsd0{word-spacing:3.281702px;}
.ws74{word-spacing:3.287658px;}
.wsb6{word-spacing:3.335501px;}
.ws35{word-spacing:3.347434px;}
.ws7a{word-spacing:3.407209px;}
.wsc9{word-spacing:3.443098px;}
.wsa2{word-spacing:3.466985px;}
.ws57{word-spacing:3.526760px;}
.ws1f{word-spacing:3.586536px;}
.ws88{word-spacing:3.604493px;}
.ws89{word-spacing:3.646312px;}
.ws13{word-spacing:3.658291px;}
.ws6c{word-spacing:3.706087px;}
.ws96{word-spacing:3.765863px;}
.ws6a{word-spacing:3.825638px;}
.wsba{word-spacing:3.873485px;}
.ws32{word-spacing:3.885414px;}
.ws4f{word-spacing:3.945190px;}
.ws87{word-spacing:3.981082px;}
.ws23{word-spacing:4.004965px;}
.ws5c{word-spacing:4.124516px;}
.ws97{word-spacing:4.184292px;}
.ws4d{word-spacing:4.303843px;}
.ws4b{word-spacing:4.363619px;}
.ws38{word-spacing:4.483170px;}
.ws47{word-spacing:4.542946px;}
.ws9d{word-spacing:4.602721px;}
.ws10{word-spacing:4.770079px;}
.ws95{word-spacing:4.782048px;}
.wsb8{word-spacing:4.841856px;}
.ws11{word-spacing:4.853765px;}
.wscd{word-spacing:4.895654px;}
.ws77{word-spacing:4.961375px;}
.ws67{word-spacing:5.140702px;}
.ws17{word-spacing:5.595034px;}
.ws37{word-spacing:5.798233px;}
.ws92{word-spacing:5.917824px;}
.ws9a{word-spacing:6.156887px;}
.ws54{word-spacing:6.216662px;}
.ws2e{word-spacing:6.395989px;}
.ws2f{word-spacing:6.814418px;}
.wsb9{word-spacing:6.886195px;}
.ws45{word-spacing:6.933970px;}
.ws66{word-spacing:7.053521px;}
.ws42{word-spacing:7.292623px;}
.ws7f{word-spacing:7.531726px;}
.ws85{word-spacing:7.651277px;}
.ws8b{word-spacing:7.770828px;}
.wse{word-spacing:7.782761px;}
.ws8e{word-spacing:7.890379px;}
.ws98{word-spacing:8.009930px;}
.ws53{word-spacing:8.249033px;}
.ws9e{word-spacing:8.428360px;}
.wsc4{word-spacing:9.142147px;}
.wsc5{word-spacing:9.143184px;}
.wsc{word-spacing:12.176255px;}
.wsb7{word-spacing:13.449600px;}
.ws5a{word-spacing:14.286368px;}
.ws61{word-spacing:14.346144px;}
.ws7{word-spacing:15.481836px;}
.ws24{word-spacing:16.019861px;}
.wsd{word-spacing:16.109478px;}
.wsf{word-spacing:26.109907px;}
.wsb{word-spacing:26.840252px;}
.ws93{word-spacing:1009.923251px;}
._8{margin-left:-11.943245px;}
._1f{margin-left:-7.591501px;}
._2{margin-left:-6.150892px;}
._1d{margin-left:-5.100322px;}
._3{margin-left:-3.849538px;}
._19{margin-left:-2.546452px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._5{width:2.301354px;}
._34{width:3.564122px;}
._22{width:4.602721px;}
._23{width:9.026116px;}
._6{width:11.398711px;}
._4{width:12.971268px;}
._11{width:14.822586px;}
._b{width:16.085722px;}
._e{width:17.892300px;}
._c{width:18.937037px;}
._d{width:20.497190px;}
._1a{width:22.116972px;}
._17{width:23.192933px;}
._15{width:24.328669px;}
._16{width:25.942610px;}
._10{width:27.437000px;}
._f{width:28.759631px;}
._7{width:30.587087px;}
._1b{width:31.999194px;}
._18{width:33.115682px;}
._26{width:35.076557px;}
._30{width:36.690509px;}
._1e{width:37.718404px;}
._14{width:39.451896px;}
._24{width:41.850487px;}
._1c{width:43.576412px;}
._33{width:48.364762px;}
._9{width:54.422983px;}
._32{width:61.868160px;}
._a{width:69.368375px;}
._31{width:88.767360px;}
._20{width:96.537594px;}
._28{width:557.731658px;}
._2e{width:655.134208px;}
._2f{width:662.834441px;}
._12{width:721.230289px;}
._27{width:737.773778px;}
._2c{width:766.683307px;}
._2d{width:819.691577px;}
._2a{width:857.829434px;}
._29{width:1021.878401px;}
._2b{width:1593.037554px;}
._25{width:2430.362700px;}
._13{width:2454.272700px;}
._21{width:3932.252700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(50,38,27);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fs0{font-size:47.236800px;}
.fs6{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs8{font-size:62.286600px;}
.fs5{font-size:107.596800px;}
.fs3{font-size:113.389200px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.425340px;}
.y2{bottom:14.151273px;}
.y1e{bottom:18.595167px;}
.y4b{bottom:31.890000px;}
.yb8{bottom:94.174500px;}
.y1cb{bottom:94.654500px;}
.y128{bottom:97.248000px;}
.y1d9{bottom:98.428500px;}
.y1a0{bottom:101.664000px;}
.y149{bottom:101.841000px;}
.y204{bottom:102.546000px;}
.y4a{bottom:104.209500px;}
.y1c{bottom:104.646000px;}
.y104{bottom:105.093000px;}
.y81{bottom:107.193000px;}
.y250{bottom:107.491500px;}
.y184{bottom:110.181000px;}
.y219{bottom:110.182500px;}
.y16a{bottom:110.559000px;}
.yb7{bottom:113.004000px;}
.y1ca{bottom:113.484000px;}
.y127{bottom:116.077500px;}
.y1d8{bottom:117.258000px;}
.y19f{bottom:120.493500px;}
.y148{bottom:120.670500px;}
.y203{bottom:121.375500px;}
.yde{bottom:121.987500px;}
.y1e9{bottom:122.083500px;}
.y1b{bottom:122.535000px;}
.y49{bottom:123.039000px;}
.y24f{bottom:124.752000px;}
.y169{bottom:124.755000px;}
.y80{bottom:126.022500px;}
.y218{bottom:127.443000px;}
.y183{bottom:129.010500px;}
.yb6{bottom:131.833500px;}
.y1c9{bottom:132.313500px;}
.y126{bottom:134.907000px;}
.y1d7{bottom:136.087500px;}
.y168{bottom:138.952500px;}
.y19e{bottom:139.323000px;}
.y147{bottom:139.500000px;}
.y202{bottom:140.205000px;}
.y1a{bottom:140.422500px;}
.ydd{bottom:140.817000px;}
.y1e8{bottom:140.911500px;}
.y48{bottom:141.868500px;}
.y24e{bottom:142.012500px;}
.y217{bottom:144.702000px;}
.y7f{bottom:144.852000px;}
.y182{bottom:147.840000px;}
.yb5{bottom:150.663000px;}
.y1c8{bottom:151.143000px;}
.y125{bottom:153.736500px;}
.y1d6{bottom:154.917000px;}
.y19d{bottom:158.152500px;}
.y19{bottom:158.310000px;}
.y146{bottom:158.329500px;}
.y201{bottom:159.034500px;}
.y24d{bottom:159.273000px;}
.ydc{bottom:159.646500px;}
.y1e7{bottom:159.741000px;}
.y167{bottom:160.650000px;}
.y47{bottom:160.698000px;}
.y216{bottom:161.962500px;}
.y7e{bottom:163.681500px;}
.y181{bottom:166.669500px;}
.yb4{bottom:169.492500px;}
.y1c7{bottom:169.972500px;}
.y124{bottom:172.566000px;}
.y1d5{bottom:173.746500px;}
.y166{bottom:174.847500px;}
.y18{bottom:176.199000px;}
.y24c{bottom:176.533500px;}
.y19c{bottom:176.982000px;}
.y145{bottom:177.159000px;}
.y200{bottom:177.864000px;}
.ydb{bottom:178.476000px;}
.y1e6{bottom:178.570500px;}
.y215{bottom:179.223000px;}
.y46{bottom:179.527500px;}
.y1b2{bottom:180.607500px;}
.y7d{bottom:182.511000px;}
.y180{bottom:185.499000px;}
.yb3{bottom:188.322000px;}
.y1c6{bottom:188.802000px;}
.y165{bottom:189.043500px;}
.y123{bottom:191.395500px;}
.y1d4{bottom:192.576000px;}
.y24b{bottom:193.794000px;}
.y17{bottom:194.086500px;}
.y19b{bottom:195.811500px;}
.y144{bottom:195.988500px;}
.y214{bottom:196.483500px;}
.y1ff{bottom:196.693500px;}
.yda{bottom:197.305500px;}
.y1e5{bottom:197.400000px;}
.y45{bottom:198.357000px;}
.y1b1{bottom:199.437000px;}
.y7c{bottom:201.340500px;}
.y17f{bottom:204.328500px;}
.yb2{bottom:207.150000px;}
.y1c5{bottom:207.631500px;}
.y122{bottom:210.225000px;}
.y164{bottom:210.742500px;}
.y24a{bottom:211.053000px;}
.y16{bottom:211.974000px;}
.y213{bottom:213.744000px;}
.y19a{bottom:214.639500px;}
.y1fe{bottom:215.523000px;}
.yd9{bottom:216.135000px;}
.y1e4{bottom:216.229500px;}
.y44{bottom:217.186500px;}
.y1b0{bottom:218.266500px;}
.y7b{bottom:220.170000px;}
.y17e{bottom:223.158000px;}
.y163{bottom:224.938500px;}
.yb1{bottom:225.979500px;}
.y1d3{bottom:226.141500px;}
.y1c4{bottom:226.461000px;}
.y249{bottom:228.313500px;}
.y121{bottom:229.054500px;}
.y143{bottom:229.554000px;}
.y15{bottom:229.863000px;}
.y212{bottom:231.004500px;}
.y199{bottom:233.469000px;}
.y1fd{bottom:234.352500px;}
.yd8{bottom:234.964500px;}
.y1e3{bottom:235.059000px;}
.y43{bottom:236.016000px;}
.y1af{bottom:237.096000px;}
.y7a{bottom:238.999500px;}
.y17d{bottom:241.987500px;}
.yb0{bottom:244.809000px;}
.y1c3{bottom:245.290500px;}
.y1d2{bottom:245.374500px;}
.y248{bottom:245.574000px;}
.y162{bottom:246.636000px;}
.y120{bottom:247.884000px;}
.y142{bottom:248.787000px;}
.y198{bottom:252.298500px;}
.y211{bottom:252.748500px;}
.y1fc{bottom:253.182000px;}
.yd7{bottom:253.794000px;}
.y1e2{bottom:253.888500px;}
.y42{bottom:254.845500px;}
.y1ae{bottom:255.925500px;}
.y79{bottom:257.829000px;}
.y17c{bottom:260.817000px;}
.y161{bottom:260.833500px;}
.y247{bottom:262.834500px;}
.yaf{bottom:263.638500px;}
.y1c2{bottom:264.120000px;}
.y1d1{bottom:264.607500px;}
.y11f{bottom:266.713500px;}
.y197{bottom:271.128000px;}
.y1fb{bottom:272.011500px;}
.yd6{bottom:272.623500px;}
.y1e1{bottom:272.718000px;}
.y41{bottom:273.675000px;}
.y1ad{bottom:274.755000px;}
.y78{bottom:276.658500px;}
.y17b{bottom:279.646500px;}
.y246{bottom:280.095000px;}
.yae{bottom:282.468000px;}
.y160{bottom:282.531000px;}
.y1c1{bottom:282.949500px;}
.y1d0{bottom:283.840500px;}
.y11e{bottom:285.543000px;}
.y210{bottom:286.371000px;}
.y196{bottom:289.957500px;}
.ye1{bottom:290.190000px;}
.y1fa{bottom:290.841000px;}
.yd5{bottom:291.453000px;}
.y40{bottom:292.504500px;}
.y1ac{bottom:293.584500px;}
.y93{bottom:295.488000px;}
.y15f{bottom:296.728500px;}
.y245{bottom:297.355500px;}
.y17a{bottom:298.476000px;}
.y77{bottom:299.970000px;}
.y14{bottom:300.154500px;}
.yad{bottom:301.297500px;}
.y1c0{bottom:301.779000px;}
.y1cf{bottom:303.073500px;}
.y11d{bottom:304.372500px;}
.y1e0{bottom:306.283500px;}
.y195{bottom:308.787000px;}
.ye0{bottom:309.423000px;}
.y1f9{bottom:309.670500px;}
.yd4{bottom:310.282500px;}
.y3f{bottom:311.334000px;}
.y1ab{bottom:312.414000px;}
.y20f{bottom:312.912000px;}
.y92{bottom:314.317500px;}
.y244{bottom:314.616000px;}
.y179{bottom:317.305500px;}
.y13{bottom:318.043500px;}
.y15e{bottom:318.426000px;}
.yac{bottom:320.127000px;}
.y1bf{bottom:320.607000px;}
.y11c{bottom:323.202000px;}
.y1df{bottom:325.516500px;}
.y194{bottom:327.616500px;}
.y1f8{bottom:328.500000px;}
.yd3{bottom:329.112000px;}
.y3e{bottom:330.163500px;}
.y1aa{bottom:331.242000px;}
.y243{bottom:331.876500px;}
.y15d{bottom:332.623500px;}
.y91{bottom:333.145500px;}
.y76{bottom:333.594000px;}
.y12{bottom:335.931000px;}
.y178{bottom:336.135000px;}
.yab{bottom:338.956500px;}
.y1be{bottom:339.436500px;}
.y20e{bottom:339.453000px;}
.y11b{bottom:342.031500px;}
.y1de{bottom:344.749500px;}
.y193{bottom:346.446000px;}
.yd2{bottom:347.940000px;}
.y3d{bottom:348.991500px;}
.y242{bottom:349.135500px;}
.y1a9{bottom:350.071500px;}
.y1f7{bottom:351.813000px;}
.y90{bottom:351.975000px;}
.y75{bottom:352.423500px;}
.y11{bottom:353.818500px;}
.y15c{bottom:354.321000px;}
.y177{bottom:354.964500px;}
.y1bd{bottom:358.266000px;}
.y11a{bottom:360.861000px;}
.yaa{bottom:362.269500px;}
.y1dd{bottom:363.982500px;}
.y192{bottom:365.275500px;}
.y20d{bottom:365.994000px;}
.y241{bottom:366.396000px;}
.yd1{bottom:366.769500px;}
.y3c{bottom:367.821000px;}
.y15b{bottom:368.517000px;}
.y1a8{bottom:368.901000px;}
.y8f{bottom:370.804500px;}
.y74{bottom:371.253000px;}
.y176{bottom:373.794000px;}
.y1bc{bottom:377.095500px;}
.y119{bottom:379.690500px;}
.y10{bottom:380.673000px;}
.y141{bottom:381.024000px;}
.y1dc{bottom:383.215500px;}
.y240{bottom:383.656500px;}
.y191{bottom:384.105000px;}
.yd0{bottom:385.599000px;}
.y3b{bottom:386.650500px;}
.y1a7{bottom:387.730500px;}
.y8e{bottom:389.634000px;}
.y73{bottom:390.082500px;}
.y15a{bottom:390.216000px;}
.y1f6{bottom:391.206000px;}
.y20c{bottom:392.533500px;}
.y175{bottom:392.623500px;}
.ya9{bottom:395.893500px;}
.y1bb{bottom:395.925000px;}
.y118{bottom:398.520000px;}
.yf{bottom:398.562000px;}
.y140{bottom:399.853500px;}
.y23f{bottom:400.917000px;}
.y1db{bottom:402.448500px;}
.y190{bottom:402.934500px;}
.y159{bottom:404.412000px;}
.ycf{bottom:404.428500px;}
.y3a{bottom:405.480000px;}
.y1a6{bottom:406.560000px;}
.y8d{bottom:408.463500px;}
.y72{bottom:408.912000px;}
.y20b{bottom:410.107500px;}
.y1f5{bottom:410.439000px;}
.y174{bottom:411.453000px;}
.ya8{bottom:414.723000px;}
.y1ba{bottom:414.754500px;}
.ye{bottom:416.449500px;}
.y23e{bottom:418.177500px;}
.y13f{bottom:418.683000px;}
.y1da{bottom:421.681500px;}
.y18f{bottom:421.764000px;}
.y117{bottom:421.831500px;}
.yce{bottom:423.258000px;}
.y158{bottom:426.109500px;}
.y8c{bottom:427.293000px;}
.y71{bottom:427.741500px;}
.y39{bottom:428.793000px;}
.y1f4{bottom:429.672000px;}
.y173{bottom:430.282500px;}
.ya7{bottom:433.552500px;}
.y1b9{bottom:433.584000px;}
.y23d{bottom:435.438000px;}
.y20a{bottom:436.648500px;}
.y13e{bottom:437.512500px;}
.y1a5{bottom:440.125500px;}
.y18e{bottom:440.593500px;}
.ycd{bottom:442.087500px;}
.yd{bottom:444.798000px;}
.y8b{bottom:446.122500px;}
.y70{bottom:446.571000px;}
.y155{bottom:447.808500px;}
.y1f3{bottom:448.905000px;}
.y172{bottom:449.112000px;}
.ya6{bottom:452.382000px;}
.y1b8{bottom:452.413500px;}
.y23c{bottom:452.698500px;}
.y209{bottom:454.222500px;}
.y116{bottom:455.455500px;}
.y157{bottom:458.455500px;}
.ycc{bottom:460.917000px;}
.y154{bottom:462.004500px;}
.y18d{bottom:463.906500px;}
.y8a{bottom:464.952000px;}
.y6f{bottom:465.400500px;}
.y171{bottom:467.941500px;}
.y1f2{bottom:468.138000px;}
.y153{bottom:469.029000px;}
.y23b{bottom:469.959000px;}
.y13d{bottom:471.078000px;}
.ya5{bottom:471.211500px;}
.yc{bottom:471.652500px;}
.y208{bottom:471.796500px;}
.y156{bottom:472.653000px;}
.y115{bottom:474.285000px;}
.y1b7{bottom:475.726500px;}
.y103{bottom:476.458500px;}
.ycb{bottom:479.746500px;}
.y18c{bottom:482.736000px;}
.y89{bottom:483.781500px;}
.y6e{bottom:484.230000px;}
.y170{bottom:486.771000px;}
.y23a{bottom:487.219500px;}
.y1f1{bottom:487.371000px;}
.y207{bottom:489.370500px;}
.yb{bottom:489.540000px;}
.ya4{bottom:490.041000px;}
.y13c{bottom:490.311000px;}
.y114{bottom:493.114500px;}
.y102{bottom:495.288000px;}
.yca{bottom:498.576000px;}
.y18b{bottom:501.565500px;}
.y38{bottom:502.356000px;}
.y88{bottom:502.611000px;}
.y6d{bottom:503.059500px;}
.y239{bottom:504.478500px;}
.y1b6{bottom:504.972000px;}
.y16f{bottom:505.600500px;}
.ya{bottom:507.429000px;}
.ya3{bottom:508.870500px;}
.y152{bottom:509.241000px;}
.y113{bottom:511.944000px;}
.y101{bottom:514.117500px;}
.yc9{bottom:517.405500px;}
.y18a{bottom:520.395000px;}
.y87{bottom:521.440500px;}
.y238{bottom:521.739000px;}
.y6c{bottom:521.889000px;}
.y1b5{bottom:524.205000px;}
.y16e{bottom:524.430000px;}
.y206{bottom:524.877000px;}
.y9{bottom:525.316500px;}
.ya2{bottom:527.700000px;}
.y151{bottom:528.474000px;}
.y112{bottom:530.773500px;}
.y100{bottom:532.947000px;}
.yc8{bottom:536.235000px;}
.y237{bottom:538.999500px;}
.y189{bottom:539.224500px;}
.y37{bottom:539.746500px;}
.y86{bottom:540.270000px;}
.y6b{bottom:540.718500px;}
.y8{bottom:543.204000px;}
.y16d{bottom:543.259500px;}
.y205{bottom:543.706500px;}
.ya1{bottom:546.529500px;}
.y150{bottom:547.707000px;}
.y111{bottom:549.603000px;}
.yff{bottom:551.776500px;}
.yc7{bottom:555.064500px;}
.y236{bottom:556.260000px;}
.y188{bottom:558.054000px;}
.y85{bottom:559.099500px;}
.y36{bottom:559.203000px;}
.y6a{bottom:559.548000px;}
.y7{bottom:561.093000px;}
.y16c{bottom:562.089000px;}
.y1ce{bottom:562.536000px;}
.ya0{bottom:565.359000px;}
.y110{bottom:568.432500px;}
.yfe{bottom:570.606000px;}
.y235{bottom:573.520500px;}
.yc6{bottom:573.894000px;}
.y187{bottom:576.883500px;}
.y84{bottom:577.929000px;}
.y69{bottom:578.377500px;}
.y6{bottom:578.980500px;}
.y14f{bottom:580.918500px;}
.y1cd{bottom:581.365500px;}
.y10f{bottom:587.262000px;}
.yfd{bottom:589.435500px;}
.y234{bottom:590.781000px;}
.yc5{bottom:592.723500px;}
.y186{bottom:595.713000px;}
.y35{bottom:596.593500px;}
.y83{bottom:596.758500px;}
.y5{bottom:596.868000px;}
.y68{bottom:597.207000px;}
.y9f{bottom:598.924500px;}
.y14e{bottom:599.746500px;}
.y1cc{bottom:600.195000px;}
.y16b{bottom:604.230000px;}
.y10e{bottom:606.091500px;}
.y233{bottom:608.041500px;}
.yfc{bottom:608.265000px;}
.yc4{bottom:611.553000px;}
.y185{bottom:614.541000px;}
.y4{bottom:614.757000px;}
.y67{bottom:616.036500px;}
.y34{bottom:616.050000px;}
.y9e{bottom:618.157500px;}
.y14d{bottom:618.576000px;}
.y13b{bottom:619.024500px;}
.y82{bottom:620.071500px;}
.y232{bottom:625.302000px;}
.yfb{bottom:627.094500px;}
.yc3{bottom:630.382500px;}
.y1{bottom:632.644464px;}
.y66{bottom:634.866000px;}
.y33{bottom:635.506500px;}
.y9d{bottom:637.390500px;}
.y14c{bottom:637.405500px;}
.y13a{bottom:637.854000px;}
.y10d{bottom:639.657000px;}
.y231{bottom:642.561000px;}
.yfa{bottom:645.924000px;}
.yc2{bottom:649.212000px;}
.y65{bottom:653.695500px;}
.y32{bottom:654.964500px;}
.y14b{bottom:656.235000px;}
.y9c{bottom:656.622000px;}
.y139{bottom:656.683500px;}
.y230{bottom:659.821500px;}
.yf9{bottom:664.753500px;}
.yc1{bottom:668.041500px;}
.y64{bottom:672.525000px;}
.y31{bottom:674.421000px;}
.y138{bottom:675.513000px;}
.y9b{bottom:675.855000px;}
.y22f{bottom:677.082000px;}
.y14a{bottom:679.548000px;}
.yf8{bottom:683.583000px;}
.yc0{bottom:686.871000px;}
.y63{bottom:691.354500px;}
.y30{bottom:693.877500px;}
.y137{bottom:694.342500px;}
.yf7{bottom:702.412500px;}
.ybf{bottom:705.700500px;}
.y62{bottom:710.184000px;}
.y22e{bottom:711.603000px;}
.y136{bottom:713.172000px;}
.y2f{bottom:713.335500px;}
.yf6{bottom:721.242000px;}
.ybe{bottom:724.530000px;}
.y22d{bottom:728.863500px;}
.y61{bottom:729.013500px;}
.y135{bottom:732.001500px;}
.y2e{bottom:732.792000px;}
.yf5{bottom:740.071500px;}
.ybd{bottom:743.359500px;}
.y22c{bottom:746.124000px;}
.y1f0{bottom:746.833500px;}
.y60{bottom:747.843000px;}
.y134{bottom:750.831000px;}
.y2d{bottom:752.250000px;}
.yf4{bottom:758.901000px;}
.ybc{bottom:762.189000px;}
.y22b{bottom:763.384500px;}
.y1ef{bottom:765.663000px;}
.y5f{bottom:766.671000px;}
.y133{bottom:769.660500px;}
.y2c{bottom:771.706500px;}
.yf3{bottom:777.730500px;}
.y22a{bottom:780.645000px;}
.ybb{bottom:781.018500px;}
.y1ee{bottom:784.492500px;}
.y5e{bottom:785.500500px;}
.y132{bottom:788.490000px;}
.y2b{bottom:791.163000px;}
.yf2{bottom:796.560000px;}
.y229{bottom:797.904000px;}
.yba{bottom:799.848000px;}
.ydf{bottom:801.433500px;}
.y5d{bottom:804.330000px;}
.y131{bottom:807.319500px;}
.y2a{bottom:810.621000px;}
.y228{bottom:815.164500px;}
.yf1{bottom:815.389500px;}
.y1ed{bottom:818.058000px;}
.yb9{bottom:818.677500px;}
.y5c{bottom:823.159500px;}
.y1b4{bottom:825.054000px;}
.y130{bottom:826.149000px;}
.y29{bottom:830.077500px;}
.y227{bottom:832.425000px;}
.yf0{bottom:834.219000px;}
.y1ec{bottom:837.291000px;}
.y5b{bottom:841.989000px;}
.y1b3{bottom:844.287000px;}
.y12f{bottom:844.978500px;}
.y226{bottom:849.685500px;}
.yef{bottom:853.048500px;}
.y1eb{bottom:856.524000px;}
.y5a{bottom:860.818500px;}
.y12e{bottom:863.808000px;}
.y225{bottom:866.946000px;}
.y28{bottom:868.663500px;}
.yee{bottom:871.878000px;}
.y1ea{bottom:875.757000px;}
.y59{bottom:879.648000px;}
.y12d{bottom:882.637500px;}
.y224{bottom:884.206500px;}
.y27{bottom:884.802000px;}
.yed{bottom:890.707500px;}
.y9a{bottom:898.029000px;}
.y58{bottom:898.477500px;}
.y26{bottom:900.942000px;}
.y12c{bottom:901.467000px;}
.yec{bottom:909.537000px;}
.y99{bottom:916.858500px;}
.y25{bottom:917.082000px;}
.y57{bottom:917.307000px;}
.y223{bottom:918.727500px;}
.y12b{bottom:920.296500px;}
.yeb{bottom:932.848500px;}
.y98{bottom:935.688000px;}
.y222{bottom:935.986500px;}
.y56{bottom:936.136500px;}
.y12a{bottom:939.126000px;}
.y24{bottom:946.671000px;}
.y221{bottom:953.247000px;}
.y97{bottom:954.517500px;}
.y55{bottom:954.966000px;}
.y129{bottom:957.955500px;}
.y23{bottom:965.500500px;}
.yea{bottom:966.472500px;}
.y1a4{bottom:967.369500px;}
.y220{bottom:970.507500px;}
.y96{bottom:973.347000px;}
.y54{bottom:973.795500px;}
.y10c{bottom:976.785000px;}
.ye9{bottom:985.302000px;}
.y1a3{bottom:986.199000px;}
.y21f{bottom:987.768000px;}
.y95{bottom:992.176500px;}
.y53{bottom:992.625000px;}
.y10b{bottom:995.614500px;}
.ye8{bottom:1004.131500px;}
.y1a2{bottom:1005.028500px;}
.y22{bottom:1008.240000px;}
.y52{bottom:1011.454500px;}
.y10a{bottom:1014.444000px;}
.y94{bottom:1015.489500px;}
.y21e{bottom:1022.289000px;}
.y1a1{bottom:1023.858000px;}
.ye7{bottom:1027.444500px;}
.y51{bottom:1030.284000px;}
.y109{bottom:1033.272000px;}
.y21{bottom:1036.485000px;}
.y21d{bottom:1039.549500px;}
.y50{bottom:1049.113500px;}
.y108{bottom:1052.101500px;}
.y21c{bottom:1056.810000px;}
.ye6{bottom:1061.068500px;}
.y20{bottom:1064.728500px;}
.y4f{bottom:1067.943000px;}
.y107{bottom:1070.931000px;}
.y21b{bottom:1074.070500px;}
.ye5{bottom:1079.898000px;}
.y4e{bottom:1086.772500px;}
.y106{bottom:1089.760500px;}
.y21a{bottom:1091.329500px;}
.y1f{bottom:1092.972000px;}
.ye4{bottom:1098.727500px;}
.y4d{bottom:1105.602000px;}
.y105{bottom:1108.590000px;}
.ye3{bottom:1117.557000px;}
.y1d{bottom:1136.460000px;}
.y4c{bottom:1168.366500px;}
.ye2{bottom:1171.354500px;}
.h2{height:25.508090px;}
.h5{height:30.461558px;}
.h6{height:30.670772px;}
.h4{height:33.112997px;}
.h3{height:34.199443px;}
.h15{height:34.430832px;}
.hc{height:34.813397px;}
.h10{height:35.052500px;}
.hd{height:38.734848px;}
.he{height:39.165235px;}
.h19{height:39.434227px;}
.h13{height:41.482876px;}
.hb{height:43.038432px;}
.hf{height:43.516637px;}
.h9{height:43.815515px;}
.h18{height:46.714950px;}
.h7{height:50.930649px;}
.h14{height:63.122832px;}
.h16{height:63.205397px;}
.h17{height:63.211397px;}
.h8{height:76.877878px;}
.ha{height:77.469696px;}
.h11{height:892.914000px;}
.h12{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:204.673175px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w4{width:1262.835000px;}
.w5{width:1263.000000px;}
.x0{left:0.000000px;}
.x2{left:29.274117px;}
.x4{left:52.525500px;}
.x1{left:53.574073px;}
.x3{left:56.639606px;}
.x54{left:62.533500px;}
.x51{left:65.487000px;}
.x5f{left:71.034000px;}
.x57{left:72.354000px;}
.x5c{left:76.246500px;}
.x5e{left:77.578500px;}
.x59{left:82.116000px;}
.x55{left:85.786500px;}
.x52{left:88.254000px;}
.x5a{left:89.839500px;}
.x5b{left:91.764000px;}
.x5d{left:109.977000px;}
.x56{left:117.723000px;}
.x58{left:130.975500px;}
.x4e{left:135.967500px;}
.x53{left:140.509500px;}
.x60{left:168.270000px;}
.x48{left:247.348500px;}
.x6{left:248.526000px;}
.x5{left:249.591000px;}
.x24{left:278.364000px;}
.x9{left:281.479500px;}
.x1d{left:284.496000px;}
.x34{left:297.421500px;}
.x40{left:298.548000px;}
.x4d{left:302.820000px;}
.x1e{left:305.649000px;}
.x4c{left:306.873000px;}
.x41{left:307.906500px;}
.x7{left:310.131000px;}
.x35{left:312.366000px;}
.x17{left:314.200500px;}
.x3a{left:317.761500px;}
.x8{left:320.368500px;}
.x18{left:331.624500px;}
.x32{left:332.928000px;}
.x2d{left:337.681500px;}
.x3b{left:342.658500px;}
.x33{left:347.872500px;}
.x2a{left:359.226000px;}
.x10{left:360.660000px;}
.xc{left:382.999500px;}
.xd{left:390.471000px;}
.x62{left:392.025000px;}
.x30{left:393.609000px;}
.x26{left:406.012500px;}
.x31{left:408.553500px;}
.x1f{left:412.611000px;}
.x4f{left:415.035000px;}
.x25{left:420.795000px;}
.x27{left:434.647500px;}
.x2b{left:441.390000px;}
.x36{left:443.824500px;}
.x37{left:458.769000px;}
.x38{left:462.489000px;}
.x28{left:466.114500px;}
.x13{left:468.192000px;}
.x2c{left:471.195000px;}
.x14{left:475.665000px;}
.x39{left:477.433500px;}
.x15{left:479.374500px;}
.x11{left:483.186000px;}
.x16{left:486.846000px;}
.x29{left:494.539500px;}
.x12{left:506.275500px;}
.x46{left:573.088500px;}
.x47{left:588.031500px;}
.x4a{left:620.679000px;}
.x4b{left:635.622000px;}
.x3c{left:646.180500px;}
.x3d{left:661.125000px;}
.xe{left:662.929500px;}
.x61{left:664.105500px;}
.x42{left:665.362500px;}
.xf{left:670.402500px;}
.x50{left:671.694000px;}
.x20{left:679.935000px;}
.x43{left:695.073000px;}
.x21{left:708.582000px;}
.x49{left:710.845500px;}
.x3e{left:718.279500px;}
.x3f{left:733.222500px;}
.x63{left:734.680500px;}
.x22{left:737.175000px;}
.x44{left:743.151000px;}
.x45{left:758.094000px;}
.x19{left:761.929500px;}
.x1a{left:769.401000px;}
.x1b{left:773.130000px;}
.x1c{left:780.601500px;}
.xa{left:785.542500px;}
.xb{left:793.014000px;}
.x64{left:795.394500px;}
.x65{left:810.366000px;}
.x23{left:814.017000px;}
.x2e{left:818.893500px;}
.x2f{left:833.838000px;}
.x66{left:837.265500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.504000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000387pt;}
.ls13{letter-spacing:0.000720pt;}
.ls17{letter-spacing:0.004267pt;}
.ls4{letter-spacing:1.133683pt;}
.lsd{letter-spacing:1.262881pt;}
.lsa{letter-spacing:1.304429pt;}
.ls10{letter-spacing:1.325897pt;}
.ls0{letter-spacing:1.654338pt;}
.ls1{letter-spacing:9.298933pt;}
.ls3{letter-spacing:10.626533pt;}
.ls6{letter-spacing:10.998710pt;}
.lsc{letter-spacing:11.635096pt;}
.lse{letter-spacing:11.657067pt;}
.lsb{letter-spacing:11.657570pt;}
.ls16{letter-spacing:11.954133pt;}
.ls1a{letter-spacing:11.959467pt;}
.ls18{letter-spacing:12.036727pt;}
.lsf{letter-spacing:12.435096pt;}
.ls7{letter-spacing:13.177199pt;}
.ls15{letter-spacing:14.346144pt;}
.ls14{letter-spacing:14.399278pt;}
.ls19{letter-spacing:14.476173pt;}
.ls9{letter-spacing:16.061762pt;}
.ls8{letter-spacing:16.090378pt;}
.ls2{letter-spacing:25.292137pt;}
.ls11{letter-spacing:778.222881pt;}
.wsa3{word-spacing:-13.283467pt;}
.wsb5{word-spacing:-11.955200pt;}
.ws2d{word-spacing:-10.626800pt;}
.ws6{word-spacing:-9.298400pt;}
.ws3a{word-spacing:-2.869229pt;}
.ws51{word-spacing:-2.762961pt;}
.ws3c{word-spacing:-2.709827pt;}
.wsb0{word-spacing:-2.656693pt;}
.ws50{word-spacing:-2.550426pt;}
.wscb{word-spacing:-2.391040pt;}
.wsca{word-spacing:-2.343219pt;}
.ws65{word-spacing:-2.284756pt;}
.ws71{word-spacing:-2.125355pt;}
.wsa4{word-spacing:-2.072221pt;}
.ws7c{word-spacing:-1.965953pt;}
.ws8c{word-spacing:-1.859685pt;}
.wsae{word-spacing:-1.769370pt;}
.ws8f{word-spacing:-1.700284pt;}
.ws1{word-spacing:-1.696326pt;}
.wsb4{word-spacing:-1.578086pt;}
.wsa0{word-spacing:-1.540882pt;}
.wsaf{word-spacing:-1.530266pt;}
.ws6f{word-spacing:-1.434614pt;}
.ws44{word-spacing:-1.381481pt;}
.ws83{word-spacing:-1.328347pt;}
.ws5f{word-spacing:-1.275213pt;}
.wsa7{word-spacing:-1.222079pt;}
.ws0{word-spacing:-1.175671pt;}
.ws58{word-spacing:-1.168945pt;}
.ws36{word-spacing:-1.062677pt;}
.ws8{word-spacing:-1.041421pt;}
.ws6b{word-spacing:-1.009543pt;}
.ws7b{word-spacing:-0.956410pt;}
.wsa{word-spacing:-0.929840pt;}
.ws5e{word-spacing:-0.903276pt;}
.wsb1{word-spacing:-0.850142pt;}
.ws8a{word-spacing:-0.797008pt;}
.ws73{word-spacing:-0.690740pt;}
.ws9f{word-spacing:-0.637606pt;}
.ws60{word-spacing:-0.584473pt;}
.ws9b{word-spacing:-0.531339pt;}
.ws4a{word-spacing:-0.478205pt;}
.wsc1{word-spacing:-0.430387pt;}
.ws3b{word-spacing:-0.425071pt;}
.ws86{word-spacing:-0.371937pt;}
.wsbc{word-spacing:-0.334746pt;}
.ws79{word-spacing:-0.318803pt;}
.wscf{word-spacing:-0.286925pt;}
.ws3f{word-spacing:-0.265669pt;}
.wsc3{word-spacing:-0.239104pt;}
.ws3e{word-spacing:-0.212535pt;}
.ws1c{word-spacing:-0.191283pt;}
.ws3d{word-spacing:-0.159402pt;}
.ws18{word-spacing:-0.143462pt;}
.ws20{word-spacing:-0.106268pt;}
.wsab{word-spacing:-0.095642pt;}
.ws33{word-spacing:-0.053134pt;}
.wsac{word-spacing:-0.047821pt;}
.wscc{word-spacing:-0.008567pt;}
.wsbf{word-spacing:-0.006485pt;}
.ws1e{word-spacing:-0.004326pt;}
.wsbd{word-spacing:-0.003430pt;}
.wsce{word-spacing:-0.001698pt;}
.ws5{word-spacing:-0.001004pt;}
.ws3{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.000646pt;}
.ws19{word-spacing:0.047821pt;}
.ws21{word-spacing:0.053134pt;}
.ws1d{word-spacing:0.095642pt;}
.ws25{word-spacing:0.106268pt;}
.ws64{word-spacing:0.143462pt;}
.ws29{word-spacing:0.159402pt;}
.ws16{word-spacing:0.191283pt;}
.ws48{word-spacing:0.212535pt;}
.wsad{word-spacing:0.239104pt;}
.ws49{word-spacing:0.265669pt;}
.wsbb{word-spacing:0.286925pt;}
.ws46{word-spacing:0.318803pt;}
.ws70{word-spacing:0.371937pt;}
.wsc2{word-spacing:0.382566pt;}
.ws7d{word-spacing:0.425071pt;}
.ws9c{word-spacing:0.478205pt;}
.wsc0{word-spacing:0.526029pt;}
.ws72{word-spacing:0.531339pt;}
.ws14{word-spacing:0.573850pt;}
.ws26{word-spacing:0.584473pt;}
.ws15{word-spacing:0.621670pt;}
.ws78{word-spacing:0.637606pt;}
.ws56{word-spacing:0.690740pt;}
.ws63{word-spacing:0.717312pt;}
.ws68{word-spacing:0.743874pt;}
.wsa8{word-spacing:0.765133pt;}
.ws4c{word-spacing:0.797008pt;}
.ws75{word-spacing:0.850142pt;}
.ws1a{word-spacing:0.860774pt;}
.ws9{word-spacing:0.892646pt;}
.ws43{word-spacing:0.903276pt;}
.ws59{word-spacing:0.956410pt;}
.ws62{word-spacing:0.956416pt;}
.wsa5{word-spacing:1.009543pt;}
.ws1b{word-spacing:1.052058pt;}
.ws80{word-spacing:1.062677pt;}
.ws40{word-spacing:1.115811pt;}
.ws76{word-spacing:1.168945pt;}
.wsaa{word-spacing:1.195520pt;}
.ws94{word-spacing:1.222079pt;}
.ws55{word-spacing:1.275213pt;}
.wsa6{word-spacing:1.328347pt;}
.wsa1{word-spacing:1.381481pt;}
.ws2a{word-spacing:1.434614pt;}
.wsc8{word-spacing:1.482445pt;}
.ws30{word-spacing:1.487748pt;}
.ws34{word-spacing:1.540882pt;}
.wsb2{word-spacing:1.578086pt;}
.ws22{word-spacing:1.594016pt;}
.ws52{word-spacing:1.647150pt;}
.wsb3{word-spacing:1.673728pt;}
.ws27{word-spacing:1.700284pt;}
.ws6e{word-spacing:1.753418pt;}
.ws6d{word-spacing:1.806551pt;}
.ws7e{word-spacing:1.859685pt;}
.ws91{word-spacing:1.865011pt;}
.ws39{word-spacing:1.912819pt;}
.wsc7{word-spacing:1.960653pt;}
.ws81{word-spacing:2.019087pt;}
.ws4e{word-spacing:2.072221pt;}
.ws82{word-spacing:2.125355pt;}
.ws90{word-spacing:2.151936pt;}
.ws41{word-spacing:2.178489pt;}
.ws4{word-spacing:2.231377pt;}
.ws2{word-spacing:2.232481pt;}
.ws31{word-spacing:2.284756pt;}
.ws5b{word-spacing:2.337890pt;}
.ws8d{word-spacing:2.391024pt;}
.wsa9{word-spacing:2.444158pt;}
.ws99{word-spacing:2.497292pt;}
.ws84{word-spacing:2.550426pt;}
.ws12{word-spacing:2.550432pt;}
.wsbe{word-spacing:2.582323pt;}
.ws2b{word-spacing:2.656693pt;}
.ws5d{word-spacing:2.709827pt;}
.ws28{word-spacing:2.762961pt;}
.ws69{word-spacing:2.869229pt;}
.wsc6{word-spacing:2.869248pt;}
.wsd0{word-spacing:2.917069pt;}
.ws74{word-spacing:2.922363pt;}
.wsb6{word-spacing:2.964890pt;}
.ws35{word-spacing:2.975497pt;}
.ws7a{word-spacing:3.028630pt;}
.wsc9{word-spacing:3.060531pt;}
.wsa2{word-spacing:3.081764pt;}
.ws57{word-spacing:3.134898pt;}
.ws1f{word-spacing:3.188032pt;}
.ws88{word-spacing:3.203994pt;}
.ws89{word-spacing:3.241166pt;}
.ws13{word-spacing:3.251814pt;}
.ws6c{word-spacing:3.294300pt;}
.ws96{word-spacing:3.347434pt;}
.ws6a{word-spacing:3.400567pt;}
.wsba{word-spacing:3.443098pt;}
.ws32{word-spacing:3.453701pt;}
.ws4f{word-spacing:3.506835pt;}
.ws87{word-spacing:3.538739pt;}
.ws23{word-spacing:3.559969pt;}
.ws5c{word-spacing:3.666237pt;}
.ws97{word-spacing:3.719371pt;}
.ws4d{word-spacing:3.825638pt;}
.ws4b{word-spacing:3.878772pt;}
.ws38{word-spacing:3.985040pt;}
.ws47{word-spacing:4.038174pt;}
.ws9d{word-spacing:4.091308pt;}
.ws10{word-spacing:4.240070pt;}
.ws95{word-spacing:4.250709pt;}
.wsb8{word-spacing:4.303872pt;}
.ws11{word-spacing:4.314458pt;}
.wscd{word-spacing:4.351693pt;}
.ws77{word-spacing:4.410111pt;}
.ws67{word-spacing:4.569513pt;}
.ws17{word-spacing:4.973363pt;}
.ws37{word-spacing:5.153985pt;}
.ws92{word-spacing:5.260288pt;}
.ws9a{word-spacing:5.472788pt;}
.ws54{word-spacing:5.525922pt;}
.ws2e{word-spacing:5.685324pt;}
.ws2f{word-spacing:6.057261pt;}
.wsb9{word-spacing:6.121062pt;}
.ws45{word-spacing:6.163529pt;}
.ws66{word-spacing:6.269796pt;}
.ws42{word-spacing:6.482332pt;}
.ws7f{word-spacing:6.694867pt;}
.ws85{word-spacing:6.801135pt;}
.ws8b{word-spacing:6.907403pt;}
.wse{word-spacing:6.918010pt;}
.ws8e{word-spacing:7.013670pt;}
.ws98{word-spacing:7.119938pt;}
.ws53{word-spacing:7.332474pt;}
.ws9e{word-spacing:7.491875pt;}
.wsc4{word-spacing:8.126353pt;}
.wsc5{word-spacing:8.127275pt;}
.wsc{word-spacing:10.823338pt;}
.wsb7{word-spacing:11.955200pt;}
.ws5a{word-spacing:12.698994pt;}
.ws61{word-spacing:12.752128pt;}
.ws7{word-spacing:13.761632pt;}
.ws24{word-spacing:14.239876pt;}
.wsd{word-spacing:14.319536pt;}
.wsf{word-spacing:23.208806pt;}
.wsb{word-spacing:23.858002pt;}
.ws93{word-spacing:897.709557pt;}
._8{margin-left:-10.616218pt;}
._1f{margin-left:-6.748001pt;}
._2{margin-left:-5.467459pt;}
._1d{margin-left:-4.533619pt;}
._3{margin-left:-3.421811pt;}
._19{margin-left:-2.263513pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._5{width:2.045648pt;}
._34{width:3.168109pt;}
._22{width:4.091308pt;}
._23{width:8.023214pt;}
._6{width:10.132188pt;}
._4{width:11.530016pt;}
._11{width:13.175632pt;}
._b{width:14.298419pt;}
._e{width:15.904267pt;}
._c{width:16.832922pt;}
._d{width:18.219725pt;}
._1a{width:19.659531pt;}
._17{width:20.615940pt;}
._15{width:21.625484pt;}
._16{width:23.060098pt;}
._10{width:24.388445pt;}
._f{width:25.564116pt;}
._7{width:27.188522pt;}
._1b{width:28.443728pt;}
._18{width:29.436162pt;}
._26{width:31.179162pt;}
._30{width:32.613786pt;}
._1e{width:33.527470pt;}
._14{width:35.068352pt;}
._24{width:37.200433pt;}
._1c{width:38.734589pt;}
._33{width:42.990899pt;}
._9{width:48.375985pt;}
._32{width:54.993920pt;}
._a{width:61.660778pt;}
._31{width:78.904320pt;}
._20{width:85.811195pt;}
._28{width:495.761474pt;}
._2e{width:582.341518pt;}
._2f{width:589.186170pt;}
._12{width:641.093590pt;}
._27{width:655.798914pt;}
._2c{width:681.496273pt;}
._2d{width:728.614735pt;}
._2a{width:762.515052pt;}
._29{width:908.336357pt;}
._2b{width:1416.033381pt;}
._25{width:2160.322400pt;}
._13{width:2181.575733pt;}
._21{width:3495.335733pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fs0{font-size:41.988267pt;}
.fs6{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs8{font-size:55.365867pt;}
.fs5{font-size:95.641600pt;}
.fs3{font-size:100.790400pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.044747pt;}
.y2{bottom:12.578910pt;}
.y1e{bottom:16.529038pt;}
.y4b{bottom:28.346667pt;}
.yb8{bottom:83.710667pt;}
.y1cb{bottom:84.137333pt;}
.y128{bottom:86.442667pt;}
.y1d9{bottom:87.492000pt;}
.y1a0{bottom:90.368000pt;}
.y149{bottom:90.525333pt;}
.y204{bottom:91.152000pt;}
.y4a{bottom:92.630667pt;}
.y1c{bottom:93.018667pt;}
.y104{bottom:93.416000pt;}
.y81{bottom:95.282667pt;}
.y250{bottom:95.548000pt;}
.y184{bottom:97.938667pt;}
.y219{bottom:97.940000pt;}
.y16a{bottom:98.274667pt;}
.yb7{bottom:100.448000pt;}
.y1ca{bottom:100.874667pt;}
.y127{bottom:103.180000pt;}
.y1d8{bottom:104.229333pt;}
.y19f{bottom:107.105333pt;}
.y148{bottom:107.262667pt;}
.y203{bottom:107.889333pt;}
.yde{bottom:108.433333pt;}
.y1e9{bottom:108.518667pt;}
.y1b{bottom:108.920000pt;}
.y49{bottom:109.368000pt;}
.y24f{bottom:110.890667pt;}
.y169{bottom:110.893333pt;}
.y80{bottom:112.020000pt;}
.y218{bottom:113.282667pt;}
.y183{bottom:114.676000pt;}
.yb6{bottom:117.185333pt;}
.y1c9{bottom:117.612000pt;}
.y126{bottom:119.917333pt;}
.y1d7{bottom:120.966667pt;}
.y168{bottom:123.513333pt;}
.y19e{bottom:123.842667pt;}
.y147{bottom:124.000000pt;}
.y202{bottom:124.626667pt;}
.y1a{bottom:124.820000pt;}
.ydd{bottom:125.170667pt;}
.y1e8{bottom:125.254667pt;}
.y48{bottom:126.105333pt;}
.y24e{bottom:126.233333pt;}
.y217{bottom:128.624000pt;}
.y7f{bottom:128.757333pt;}
.y182{bottom:131.413333pt;}
.yb5{bottom:133.922667pt;}
.y1c8{bottom:134.349333pt;}
.y125{bottom:136.654667pt;}
.y1d6{bottom:137.704000pt;}
.y19d{bottom:140.580000pt;}
.y19{bottom:140.720000pt;}
.y146{bottom:140.737333pt;}
.y201{bottom:141.364000pt;}
.y24d{bottom:141.576000pt;}
.ydc{bottom:141.908000pt;}
.y1e7{bottom:141.992000pt;}
.y167{bottom:142.800000pt;}
.y47{bottom:142.842667pt;}
.y216{bottom:143.966667pt;}
.y7e{bottom:145.494667pt;}
.y181{bottom:148.150667pt;}
.yb4{bottom:150.660000pt;}
.y1c7{bottom:151.086667pt;}
.y124{bottom:153.392000pt;}
.y1d5{bottom:154.441333pt;}
.y166{bottom:155.420000pt;}
.y18{bottom:156.621333pt;}
.y24c{bottom:156.918667pt;}
.y19c{bottom:157.317333pt;}
.y145{bottom:157.474667pt;}
.y200{bottom:158.101333pt;}
.ydb{bottom:158.645333pt;}
.y1e6{bottom:158.729333pt;}
.y215{bottom:159.309333pt;}
.y46{bottom:159.580000pt;}
.y1b2{bottom:160.540000pt;}
.y7d{bottom:162.232000pt;}
.y180{bottom:164.888000pt;}
.yb3{bottom:167.397333pt;}
.y1c6{bottom:167.824000pt;}
.y165{bottom:168.038667pt;}
.y123{bottom:170.129333pt;}
.y1d4{bottom:171.178667pt;}
.y24b{bottom:172.261333pt;}
.y17{bottom:172.521333pt;}
.y19b{bottom:174.054667pt;}
.y144{bottom:174.212000pt;}
.y214{bottom:174.652000pt;}
.y1ff{bottom:174.838667pt;}
.yda{bottom:175.382667pt;}
.y1e5{bottom:175.466667pt;}
.y45{bottom:176.317333pt;}
.y1b1{bottom:177.277333pt;}
.y7c{bottom:178.969333pt;}
.y17f{bottom:181.625333pt;}
.yb2{bottom:184.133333pt;}
.y1c5{bottom:184.561333pt;}
.y122{bottom:186.866667pt;}
.y164{bottom:187.326667pt;}
.y24a{bottom:187.602667pt;}
.y16{bottom:188.421333pt;}
.y213{bottom:189.994667pt;}
.y19a{bottom:190.790667pt;}
.y1fe{bottom:191.576000pt;}
.yd9{bottom:192.120000pt;}
.y1e4{bottom:192.204000pt;}
.y44{bottom:193.054667pt;}
.y1b0{bottom:194.014667pt;}
.y7b{bottom:195.706667pt;}
.y17e{bottom:198.362667pt;}
.y163{bottom:199.945333pt;}
.yb1{bottom:200.870667pt;}
.y1d3{bottom:201.014667pt;}
.y1c4{bottom:201.298667pt;}
.y249{bottom:202.945333pt;}
.y121{bottom:203.604000pt;}
.y143{bottom:204.048000pt;}
.y15{bottom:204.322667pt;}
.y212{bottom:205.337333pt;}
.y199{bottom:207.528000pt;}
.y1fd{bottom:208.313333pt;}
.yd8{bottom:208.857333pt;}
.y1e3{bottom:208.941333pt;}
.y43{bottom:209.792000pt;}
.y1af{bottom:210.752000pt;}
.y7a{bottom:212.444000pt;}
.y17d{bottom:215.100000pt;}
.yb0{bottom:217.608000pt;}
.y1c3{bottom:218.036000pt;}
.y1d2{bottom:218.110667pt;}
.y248{bottom:218.288000pt;}
.y162{bottom:219.232000pt;}
.y120{bottom:220.341333pt;}
.y142{bottom:221.144000pt;}
.y198{bottom:224.265333pt;}
.y211{bottom:224.665333pt;}
.y1fc{bottom:225.050667pt;}
.yd7{bottom:225.594667pt;}
.y1e2{bottom:225.678667pt;}
.y42{bottom:226.529333pt;}
.y1ae{bottom:227.489333pt;}
.y79{bottom:229.181333pt;}
.y17c{bottom:231.837333pt;}
.y161{bottom:231.852000pt;}
.y247{bottom:233.630667pt;}
.yaf{bottom:234.345333pt;}
.y1c2{bottom:234.773333pt;}
.y1d1{bottom:235.206667pt;}
.y11f{bottom:237.078667pt;}
.y197{bottom:241.002667pt;}
.y1fb{bottom:241.788000pt;}
.yd6{bottom:242.332000pt;}
.y1e1{bottom:242.416000pt;}
.y41{bottom:243.266667pt;}
.y1ad{bottom:244.226667pt;}
.y78{bottom:245.918667pt;}
.y17b{bottom:248.574667pt;}
.y246{bottom:248.973333pt;}
.yae{bottom:251.082667pt;}
.y160{bottom:251.138667pt;}
.y1c1{bottom:251.510667pt;}
.y1d0{bottom:252.302667pt;}
.y11e{bottom:253.816000pt;}
.y210{bottom:254.552000pt;}
.y196{bottom:257.740000pt;}
.ye1{bottom:257.946667pt;}
.y1fa{bottom:258.525333pt;}
.yd5{bottom:259.069333pt;}
.y40{bottom:260.004000pt;}
.y1ac{bottom:260.964000pt;}
.y93{bottom:262.656000pt;}
.y15f{bottom:263.758667pt;}
.y245{bottom:264.316000pt;}
.y17a{bottom:265.312000pt;}
.y77{bottom:266.640000pt;}
.y14{bottom:266.804000pt;}
.yad{bottom:267.820000pt;}
.y1c0{bottom:268.248000pt;}
.y1cf{bottom:269.398667pt;}
.y11d{bottom:270.553333pt;}
.y1e0{bottom:272.252000pt;}
.y195{bottom:274.477333pt;}
.ye0{bottom:275.042667pt;}
.y1f9{bottom:275.262667pt;}
.yd4{bottom:275.806667pt;}
.y3f{bottom:276.741333pt;}
.y1ab{bottom:277.701333pt;}
.y20f{bottom:278.144000pt;}
.y92{bottom:279.393333pt;}
.y244{bottom:279.658667pt;}
.y179{bottom:282.049333pt;}
.y13{bottom:282.705333pt;}
.y15e{bottom:283.045333pt;}
.yac{bottom:284.557333pt;}
.y1bf{bottom:284.984000pt;}
.y11c{bottom:287.290667pt;}
.y1df{bottom:289.348000pt;}
.y194{bottom:291.214667pt;}
.y1f8{bottom:292.000000pt;}
.yd3{bottom:292.544000pt;}
.y3e{bottom:293.478667pt;}
.y1aa{bottom:294.437333pt;}
.y243{bottom:295.001333pt;}
.y15d{bottom:295.665333pt;}
.y91{bottom:296.129333pt;}
.y76{bottom:296.528000pt;}
.y12{bottom:298.605333pt;}
.y178{bottom:298.786667pt;}
.yab{bottom:301.294667pt;}
.y1be{bottom:301.721333pt;}
.y20e{bottom:301.736000pt;}
.y11b{bottom:304.028000pt;}
.y1de{bottom:306.444000pt;}
.y193{bottom:307.952000pt;}
.yd2{bottom:309.280000pt;}
.y3d{bottom:310.214667pt;}
.y242{bottom:310.342667pt;}
.y1a9{bottom:311.174667pt;}
.y1f7{bottom:312.722667pt;}
.y90{bottom:312.866667pt;}
.y75{bottom:313.265333pt;}
.y11{bottom:314.505333pt;}
.y15c{bottom:314.952000pt;}
.y177{bottom:315.524000pt;}
.y1bd{bottom:318.458667pt;}
.y11a{bottom:320.765333pt;}
.yaa{bottom:322.017333pt;}
.y1dd{bottom:323.540000pt;}
.y192{bottom:324.689333pt;}
.y20d{bottom:325.328000pt;}
.y241{bottom:325.685333pt;}
.yd1{bottom:326.017333pt;}
.y3c{bottom:326.952000pt;}
.y15b{bottom:327.570667pt;}
.y1a8{bottom:327.912000pt;}
.y8f{bottom:329.604000pt;}
.y74{bottom:330.002667pt;}
.y176{bottom:332.261333pt;}
.y1bc{bottom:335.196000pt;}
.y119{bottom:337.502667pt;}
.y10{bottom:338.376000pt;}
.y141{bottom:338.688000pt;}
.y1dc{bottom:340.636000pt;}
.y240{bottom:341.028000pt;}
.y191{bottom:341.426667pt;}
.yd0{bottom:342.754667pt;}
.y3b{bottom:343.689333pt;}
.y1a7{bottom:344.649333pt;}
.y8e{bottom:346.341333pt;}
.y73{bottom:346.740000pt;}
.y15a{bottom:346.858667pt;}
.y1f6{bottom:347.738667pt;}
.y20c{bottom:348.918667pt;}
.y175{bottom:348.998667pt;}
.ya9{bottom:351.905333pt;}
.y1bb{bottom:351.933333pt;}
.y118{bottom:354.240000pt;}
.yf{bottom:354.277333pt;}
.y140{bottom:355.425333pt;}
.y23f{bottom:356.370667pt;}
.y1db{bottom:357.732000pt;}
.y190{bottom:358.164000pt;}
.y159{bottom:359.477333pt;}
.ycf{bottom:359.492000pt;}
.y3a{bottom:360.426667pt;}
.y1a6{bottom:361.386667pt;}
.y8d{bottom:363.078667pt;}
.y72{bottom:363.477333pt;}
.y20b{bottom:364.540000pt;}
.y1f5{bottom:364.834667pt;}
.y174{bottom:365.736000pt;}
.ya8{bottom:368.642667pt;}
.y1ba{bottom:368.670667pt;}
.ye{bottom:370.177333pt;}
.y23e{bottom:371.713333pt;}
.y13f{bottom:372.162667pt;}
.y1da{bottom:374.828000pt;}
.y18f{bottom:374.901333pt;}
.y117{bottom:374.961333pt;}
.yce{bottom:376.229333pt;}
.y158{bottom:378.764000pt;}
.y8c{bottom:379.816000pt;}
.y71{bottom:380.214667pt;}
.y39{bottom:381.149333pt;}
.y1f4{bottom:381.930667pt;}
.y173{bottom:382.473333pt;}
.ya7{bottom:385.380000pt;}
.y1b9{bottom:385.408000pt;}
.y23d{bottom:387.056000pt;}
.y20a{bottom:388.132000pt;}
.y13e{bottom:388.900000pt;}
.y1a5{bottom:391.222667pt;}
.y18e{bottom:391.638667pt;}
.ycd{bottom:392.966667pt;}
.yd{bottom:395.376000pt;}
.y8b{bottom:396.553333pt;}
.y70{bottom:396.952000pt;}
.y155{bottom:398.052000pt;}
.y1f3{bottom:399.026667pt;}
.y172{bottom:399.210667pt;}
.ya6{bottom:402.117333pt;}
.y1b8{bottom:402.145333pt;}
.y23c{bottom:402.398667pt;}
.y209{bottom:403.753333pt;}
.y116{bottom:404.849333pt;}
.y157{bottom:407.516000pt;}
.ycc{bottom:409.704000pt;}
.y154{bottom:410.670667pt;}
.y18d{bottom:412.361333pt;}
.y8a{bottom:413.290667pt;}
.y6f{bottom:413.689333pt;}
.y171{bottom:415.948000pt;}
.y1f2{bottom:416.122667pt;}
.y153{bottom:416.914667pt;}
.y23b{bottom:417.741333pt;}
.y13d{bottom:418.736000pt;}
.ya5{bottom:418.854667pt;}
.yc{bottom:419.246667pt;}
.y208{bottom:419.374667pt;}
.y156{bottom:420.136000pt;}
.y115{bottom:421.586667pt;}
.y1b7{bottom:422.868000pt;}
.y103{bottom:423.518667pt;}
.ycb{bottom:426.441333pt;}
.y18c{bottom:429.098667pt;}
.y89{bottom:430.028000pt;}
.y6e{bottom:430.426667pt;}
.y170{bottom:432.685333pt;}
.y23a{bottom:433.084000pt;}
.y1f1{bottom:433.218667pt;}
.y207{bottom:434.996000pt;}
.yb{bottom:435.146667pt;}
.ya4{bottom:435.592000pt;}
.y13c{bottom:435.832000pt;}
.y114{bottom:438.324000pt;}
.y102{bottom:440.256000pt;}
.yca{bottom:443.178667pt;}
.y18b{bottom:445.836000pt;}
.y38{bottom:446.538667pt;}
.y88{bottom:446.765333pt;}
.y6d{bottom:447.164000pt;}
.y239{bottom:448.425333pt;}
.y1b6{bottom:448.864000pt;}
.y16f{bottom:449.422667pt;}
.ya{bottom:451.048000pt;}
.ya3{bottom:452.329333pt;}
.y152{bottom:452.658667pt;}
.y113{bottom:455.061333pt;}
.y101{bottom:456.993333pt;}
.yc9{bottom:459.916000pt;}
.y18a{bottom:462.573333pt;}
.y87{bottom:463.502667pt;}
.y238{bottom:463.768000pt;}
.y6c{bottom:463.901333pt;}
.y1b5{bottom:465.960000pt;}
.y16e{bottom:466.160000pt;}
.y206{bottom:466.557333pt;}
.y9{bottom:466.948000pt;}
.ya2{bottom:469.066667pt;}
.y151{bottom:469.754667pt;}
.y112{bottom:471.798667pt;}
.y100{bottom:473.730667pt;}
.yc8{bottom:476.653333pt;}
.y237{bottom:479.110667pt;}
.y189{bottom:479.310667pt;}
.y37{bottom:479.774667pt;}
.y86{bottom:480.240000pt;}
.y6b{bottom:480.638667pt;}
.y8{bottom:482.848000pt;}
.y16d{bottom:482.897333pt;}
.y205{bottom:483.294667pt;}
.ya1{bottom:485.804000pt;}
.y150{bottom:486.850667pt;}
.y111{bottom:488.536000pt;}
.yff{bottom:490.468000pt;}
.yc7{bottom:493.390667pt;}
.y236{bottom:494.453333pt;}
.y188{bottom:496.048000pt;}
.y85{bottom:496.977333pt;}
.y36{bottom:497.069333pt;}
.y6a{bottom:497.376000pt;}
.y7{bottom:498.749333pt;}
.y16c{bottom:499.634667pt;}
.y1ce{bottom:500.032000pt;}
.ya0{bottom:502.541333pt;}
.y110{bottom:505.273333pt;}
.yfe{bottom:507.205333pt;}
.y235{bottom:509.796000pt;}
.yc6{bottom:510.128000pt;}
.y187{bottom:512.785333pt;}
.y84{bottom:513.714667pt;}
.y69{bottom:514.113333pt;}
.y6{bottom:514.649333pt;}
.y14f{bottom:516.372000pt;}
.y1cd{bottom:516.769333pt;}
.y10f{bottom:522.010667pt;}
.yfd{bottom:523.942667pt;}
.y234{bottom:525.138667pt;}
.yc5{bottom:526.865333pt;}
.y186{bottom:529.522667pt;}
.y35{bottom:530.305333pt;}
.y83{bottom:530.452000pt;}
.y5{bottom:530.549333pt;}
.y68{bottom:530.850667pt;}
.y9f{bottom:532.377333pt;}
.y14e{bottom:533.108000pt;}
.y1cc{bottom:533.506667pt;}
.y16b{bottom:537.093333pt;}
.y10e{bottom:538.748000pt;}
.y233{bottom:540.481333pt;}
.yfc{bottom:540.680000pt;}
.yc4{bottom:543.602667pt;}
.y185{bottom:546.258667pt;}
.y4{bottom:546.450667pt;}
.y67{bottom:547.588000pt;}
.y34{bottom:547.600000pt;}
.y9e{bottom:549.473333pt;}
.y14d{bottom:549.845333pt;}
.y13b{bottom:550.244000pt;}
.y82{bottom:551.174667pt;}
.y232{bottom:555.824000pt;}
.yfb{bottom:557.417333pt;}
.yc3{bottom:560.340000pt;}
.y1{bottom:562.350634pt;}
.y66{bottom:564.325333pt;}
.y33{bottom:564.894667pt;}
.y9d{bottom:566.569333pt;}
.y14c{bottom:566.582667pt;}
.y13a{bottom:566.981333pt;}
.y10d{bottom:568.584000pt;}
.y231{bottom:571.165333pt;}
.yfa{bottom:574.154667pt;}
.yc2{bottom:577.077333pt;}
.y65{bottom:581.062667pt;}
.y32{bottom:582.190667pt;}
.y14b{bottom:583.320000pt;}
.y9c{bottom:583.664000pt;}
.y139{bottom:583.718667pt;}
.y230{bottom:586.508000pt;}
.yf9{bottom:590.892000pt;}
.yc1{bottom:593.814667pt;}
.y64{bottom:597.800000pt;}
.y31{bottom:599.485333pt;}
.y138{bottom:600.456000pt;}
.y9b{bottom:600.760000pt;}
.y22f{bottom:601.850667pt;}
.y14a{bottom:604.042667pt;}
.yf8{bottom:607.629333pt;}
.yc0{bottom:610.552000pt;}
.y63{bottom:614.537333pt;}
.y30{bottom:616.780000pt;}
.y137{bottom:617.193333pt;}
.yf7{bottom:624.366667pt;}
.ybf{bottom:627.289333pt;}
.y62{bottom:631.274667pt;}
.y22e{bottom:632.536000pt;}
.y136{bottom:633.930667pt;}
.y2f{bottom:634.076000pt;}
.yf6{bottom:641.104000pt;}
.ybe{bottom:644.026667pt;}
.y22d{bottom:647.878667pt;}
.y61{bottom:648.012000pt;}
.y135{bottom:650.668000pt;}
.y2e{bottom:651.370667pt;}
.yf5{bottom:657.841333pt;}
.ybd{bottom:660.764000pt;}
.y22c{bottom:663.221333pt;}
.y1f0{bottom:663.852000pt;}
.y60{bottom:664.749333pt;}
.y134{bottom:667.405333pt;}
.y2d{bottom:668.666667pt;}
.yf4{bottom:674.578667pt;}
.ybc{bottom:677.501333pt;}
.y22b{bottom:678.564000pt;}
.y1ef{bottom:680.589333pt;}
.y5f{bottom:681.485333pt;}
.y133{bottom:684.142667pt;}
.y2c{bottom:685.961333pt;}
.yf3{bottom:691.316000pt;}
.y22a{bottom:693.906667pt;}
.ybb{bottom:694.238667pt;}
.y1ee{bottom:697.326667pt;}
.y5e{bottom:698.222667pt;}
.y132{bottom:700.880000pt;}
.y2b{bottom:703.256000pt;}
.yf2{bottom:708.053333pt;}
.y229{bottom:709.248000pt;}
.yba{bottom:710.976000pt;}
.ydf{bottom:712.385333pt;}
.y5d{bottom:714.960000pt;}
.y131{bottom:717.617333pt;}
.y2a{bottom:720.552000pt;}
.y228{bottom:724.590667pt;}
.yf1{bottom:724.790667pt;}
.y1ed{bottom:727.162667pt;}
.yb9{bottom:727.713333pt;}
.y5c{bottom:731.697333pt;}
.y1b4{bottom:733.381333pt;}
.y130{bottom:734.354667pt;}
.y29{bottom:737.846667pt;}
.y227{bottom:739.933333pt;}
.yf0{bottom:741.528000pt;}
.y1ec{bottom:744.258667pt;}
.y5b{bottom:748.434667pt;}
.y1b3{bottom:750.477333pt;}
.y12f{bottom:751.092000pt;}
.y226{bottom:755.276000pt;}
.yef{bottom:758.265333pt;}
.y1eb{bottom:761.354667pt;}
.y5a{bottom:765.172000pt;}
.y12e{bottom:767.829333pt;}
.y225{bottom:770.618667pt;}
.y28{bottom:772.145333pt;}
.yee{bottom:775.002667pt;}
.y1ea{bottom:778.450667pt;}
.y59{bottom:781.909333pt;}
.y12d{bottom:784.566667pt;}
.y224{bottom:785.961333pt;}
.y27{bottom:786.490667pt;}
.yed{bottom:791.740000pt;}
.y9a{bottom:798.248000pt;}
.y58{bottom:798.646667pt;}
.y26{bottom:800.837333pt;}
.y12c{bottom:801.304000pt;}
.yec{bottom:808.477333pt;}
.y99{bottom:814.985333pt;}
.y25{bottom:815.184000pt;}
.y57{bottom:815.384000pt;}
.y223{bottom:816.646667pt;}
.y12b{bottom:818.041333pt;}
.yeb{bottom:829.198667pt;}
.y98{bottom:831.722667pt;}
.y222{bottom:831.988000pt;}
.y56{bottom:832.121333pt;}
.y12a{bottom:834.778667pt;}
.y24{bottom:841.485333pt;}
.y221{bottom:847.330667pt;}
.y97{bottom:848.460000pt;}
.y55{bottom:848.858667pt;}
.y129{bottom:851.516000pt;}
.y23{bottom:858.222667pt;}
.yea{bottom:859.086667pt;}
.y1a4{bottom:859.884000pt;}
.y220{bottom:862.673333pt;}
.y96{bottom:865.197333pt;}
.y54{bottom:865.596000pt;}
.y10c{bottom:868.253333pt;}
.ye9{bottom:875.824000pt;}
.y1a3{bottom:876.621333pt;}
.y21f{bottom:878.016000pt;}
.y95{bottom:881.934667pt;}
.y53{bottom:882.333333pt;}
.y10b{bottom:884.990667pt;}
.ye8{bottom:892.561333pt;}
.y1a2{bottom:893.358667pt;}
.y22{bottom:896.213333pt;}
.y52{bottom:899.070667pt;}
.y10a{bottom:901.728000pt;}
.y94{bottom:902.657333pt;}
.y21e{bottom:908.701333pt;}
.y1a1{bottom:910.096000pt;}
.ye7{bottom:913.284000pt;}
.y51{bottom:915.808000pt;}
.y109{bottom:918.464000pt;}
.y21{bottom:921.320000pt;}
.y21d{bottom:924.044000pt;}
.y50{bottom:932.545333pt;}
.y108{bottom:935.201333pt;}
.y21c{bottom:939.386667pt;}
.ye6{bottom:943.172000pt;}
.y20{bottom:946.425333pt;}
.y4f{bottom:949.282667pt;}
.y107{bottom:951.938667pt;}
.y21b{bottom:954.729333pt;}
.ye5{bottom:959.909333pt;}
.y4e{bottom:966.020000pt;}
.y106{bottom:968.676000pt;}
.y21a{bottom:970.070667pt;}
.y1f{bottom:971.530667pt;}
.ye4{bottom:976.646667pt;}
.y4d{bottom:982.757333pt;}
.y105{bottom:985.413333pt;}
.ye3{bottom:993.384000pt;}
.y1d{bottom:1010.186667pt;}
.y4c{bottom:1038.548000pt;}
.ye2{bottom:1041.204000pt;}
.h2{height:22.673858pt;}
.h5{height:27.076941pt;}
.h6{height:27.262909pt;}
.h4{height:29.433775pt;}
.h3{height:30.399505pt;}
.h15{height:30.605184pt;}
.hc{height:30.945242pt;}
.h10{height:31.157778pt;}
.hd{height:34.430976pt;}
.he{height:34.813542pt;}
.h19{height:35.052646pt;}
.h13{height:36.873667pt;}
.hb{height:38.256384pt;}
.hf{height:38.681455pt;}
.h9{height:38.947124pt;}
.h18{height:41.524400pt;}
.h7{height:45.271688pt;}
.h14{height:56.109184pt;}
.h16{height:56.182575pt;}
.h17{height:56.187908pt;}
.h8{height:68.335891pt;}
.ha{height:68.861952pt;}
.h11{height:793.701333pt;}
.h12{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:181.931712pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w4{width:1122.520000pt;}
.w5{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2{left:26.021437pt;}
.x4{left:46.689333pt;}
.x1{left:47.621398pt;}
.x3{left:50.346317pt;}
.x54{left:55.585333pt;}
.x51{left:58.210667pt;}
.x5f{left:63.141333pt;}
.x57{left:64.314667pt;}
.x5c{left:67.774667pt;}
.x5e{left:68.958667pt;}
.x59{left:72.992000pt;}
.x55{left:76.254667pt;}
.x52{left:78.448000pt;}
.x5a{left:79.857333pt;}
.x5b{left:81.568000pt;}
.x5d{left:97.757333pt;}
.x56{left:104.642667pt;}
.x58{left:116.422667pt;}
.x4e{left:120.860000pt;}
.x53{left:124.897333pt;}
.x60{left:149.573333pt;}
.x48{left:219.865333pt;}
.x6{left:220.912000pt;}
.x5{left:221.858667pt;}
.x24{left:247.434667pt;}
.x9{left:250.204000pt;}
.x1d{left:252.885333pt;}
.x34{left:264.374667pt;}
.x40{left:265.376000pt;}
.x4d{left:269.173333pt;}
.x1e{left:271.688000pt;}
.x4c{left:272.776000pt;}
.x41{left:273.694667pt;}
.x7{left:275.672000pt;}
.x35{left:277.658667pt;}
.x17{left:279.289333pt;}
.x3a{left:282.454667pt;}
.x8{left:284.772000pt;}
.x18{left:294.777333pt;}
.x32{left:295.936000pt;}
.x2d{left:300.161333pt;}
.x3b{left:304.585333pt;}
.x33{left:309.220000pt;}
.x2a{left:319.312000pt;}
.x10{left:320.586667pt;}
.xc{left:340.444000pt;}
.xd{left:347.085333pt;}
.x62{left:348.466667pt;}
.x30{left:349.874667pt;}
.x26{left:360.900000pt;}
.x31{left:363.158667pt;}
.x1f{left:366.765333pt;}
.x4f{left:368.920000pt;}
.x25{left:374.040000pt;}
.x27{left:386.353333pt;}
.x2b{left:392.346667pt;}
.x36{left:394.510667pt;}
.x37{left:407.794667pt;}
.x38{left:411.101333pt;}
.x28{left:414.324000pt;}
.x13{left:416.170667pt;}
.x2c{left:418.840000pt;}
.x14{left:422.813333pt;}
.x39{left:424.385333pt;}
.x15{left:426.110667pt;}
.x11{left:429.498667pt;}
.x16{left:432.752000pt;}
.x29{left:439.590667pt;}
.x12{left:450.022667pt;}
.x46{left:509.412000pt;}
.x47{left:522.694667pt;}
.x4a{left:551.714667pt;}
.x4b{left:564.997333pt;}
.x3c{left:574.382667pt;}
.x3d{left:587.666667pt;}
.xe{left:589.270667pt;}
.x61{left:590.316000pt;}
.x42{left:591.433333pt;}
.xf{left:595.913333pt;}
.x50{left:597.061333pt;}
.x20{left:604.386667pt;}
.x43{left:617.842667pt;}
.x21{left:629.850667pt;}
.x49{left:631.862667pt;}
.x3e{left:638.470667pt;}
.x3f{left:651.753333pt;}
.x63{left:653.049333pt;}
.x22{left:655.266667pt;}
.x44{left:660.578667pt;}
.x45{left:673.861333pt;}
.x19{left:677.270667pt;}
.x1a{left:683.912000pt;}
.x1b{left:687.226667pt;}
.x1c{left:693.868000pt;}
.xa{left:698.260000pt;}
.xb{left:704.901333pt;}
.x64{left:707.017333pt;}
.x65{left:720.325333pt;}
.x23{left:723.570667pt;}
.x2e{left:727.905333pt;}
.x2f{left:741.189333pt;}
.x66{left:744.236000pt;}
}




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