
    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_8d4911dab4ee5ed1ed39fb3d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7de2c8f443350c603a3f8786.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.025000;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_0a2e55d9361e6e7ac424eb53.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_97e12e93e46fe3adc79c9361.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_d229e7b6b2163a3a9606aba6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.890000;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_e670a83d3e0f30774c0c2a97.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0552661a77f606e2ac33b65a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1d380c1f4a27c01b098cb5a2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.444000;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_35930d11e178dba6c81fa76b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.917000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f2f4df8c61e6a81c9f2fdbe5.woff2')format("woff");}.ffa{font-family:ffa;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5d03fbcafe82673beddd2206.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ba8f2a61c90c0de6b277f5a1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_91e8c38b594123dc4e0bb128.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_8821811a460b18fb2e024961.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_98ae9e72c3942a02d64c108f.woff2')format("woff");}.fff{font-family:fff;line-height:0.678000;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:ff10;src:url('chunks/assets/font_24069ce25124e87028920456.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;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:ff11;src:url('chunks/assets/font_c2784666d05dc040d20e9ad1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.689453;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:ff12;src:url('chunks/assets/font_31caa424a600fa201ae90f68.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.940918;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:ff13;src:url('chunks/assets/font_de8e94b29083b1ba3cb5aba6.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.945312;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:ff14;src:url('chunks/assets/font_3b7421cdc6ca3cbabab097b7.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.717285;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:ff15;src:url('chunks/assets/font_fc9c9af1dc3e330f2e259ad9.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.683000;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:ff16;src:url('chunks/assets/font_75a3466bf69cb25e914ae07d.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.778000;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:ff17;src:url('chunks/assets/font_43e8f9a0226c5e33a48784bf.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.052000;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:ff18;src:url('chunks/assets/font_99acea282f1961979d24e5b6.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.958008;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:ff19;src:url('chunks/assets/font_d7b4598c9db03612e787455e.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.717285;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:ff1a;src:url('chunks/assets/font_3c8fb21ad1b48c1e7f1b82e2.woff2')format("woff");}.ff1a{font-family:ff1a;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v2{vertical-align:-16.878000px;}
.v7{vertical-align:-8.970000px;}
.v9{vertical-align:-5.976000px;}
.va{vertical-align:-1.801686px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.714176px;}
.vd{vertical-align:10.428000px;}
.vb{vertical-align:16.878000px;}
.v1{vertical-align:21.690000px;}
.vc{vertical-align:31.740000px;}
.v5{vertical-align:40.440000px;}
.v3{vertical-align:81.366000px;}
.v4{vertical-align:84.288000px;}
.v6{vertical-align:125.292000px;}
.ls52{letter-spacing:-0.009278px;}
.ls4f{letter-spacing:-0.007615px;}
.ls2{letter-spacing:0.000000px;}
.ls45{letter-spacing:0.000479px;}
.ls5a{letter-spacing:0.000538px;}
.ls59{letter-spacing:0.000993px;}
.ls1c{letter-spacing:0.001140px;}
.ls38{letter-spacing:0.001409px;}
.ls1f{letter-spacing:0.002245px;}
.ls9{letter-spacing:0.002338px;}
.ls5b{letter-spacing:0.003056px;}
.lse{letter-spacing:0.003269px;}
.ls39{letter-spacing:0.004038px;}
.ls6{letter-spacing:0.004188px;}
.ls0{letter-spacing:0.004200px;}
.ls3a{letter-spacing:0.005374px;}
.ls51{letter-spacing:0.013899px;}
.ls50{letter-spacing:0.032430px;}
.ls47{letter-spacing:0.092658px;}
.ls5c{letter-spacing:0.834017px;}
.ls4c{letter-spacing:1.330200px;}
.ls4d{letter-spacing:1.332538px;}
.ls4b{letter-spacing:1.338538px;}
.ls11{letter-spacing:2.144023px;}
.ls1d{letter-spacing:2.420908px;}
.ls13{letter-spacing:2.624368px;}
.ls19{letter-spacing:2.630368px;}
.ls1{letter-spacing:2.964877px;}
.ls5d{letter-spacing:2.987675px;}
.ls49{letter-spacing:2.987864px;}
.ls40{letter-spacing:2.987870px;}
.ls4a{letter-spacing:2.988564px;}
.ls4{letter-spacing:2.988780px;}
.ls21{letter-spacing:2.989140px;}
.ls3{letter-spacing:2.989200px;}
.ls53{letter-spacing:3.682180px;}
.ls55{letter-spacing:3.688180px;}
.ls1e{letter-spacing:4.688646px;}
.ls48{letter-spacing:4.854544px;}
.ls24{letter-spacing:5.402908px;}
.ls20{letter-spacing:5.408908px;}
.ls5{letter-spacing:6.433866px;}
.ls14{letter-spacing:7.173269px;}
.ls17{letter-spacing:9.958896px;}
.ls35{letter-spacing:9.962338px;}
.ls15{letter-spacing:9.963181px;}
.ls12{letter-spacing:9.963269px;}
.lsf{letter-spacing:9.964896px;}
.ls22{letter-spacing:13.281269px;}
.ls2a{letter-spacing:13.284538px;}
.ls5e{letter-spacing:13.364915px;}
.ls3d{letter-spacing:13.605235px;}
.ls43{letter-spacing:13.606038px;}
.ls3c{letter-spacing:13.609140px;}
.ls44{letter-spacing:13.611235px;}
.ls2f{letter-spacing:14.390383px;}
.ls30{letter-spacing:14.391269px;}
.lsd{letter-spacing:14.648646px;}
.ls3b{letter-spacing:14.649954px;}
.ls4e{letter-spacing:14.946538px;}
.ls58{letter-spacing:15.220200px;}
.ls29{letter-spacing:15.986245px;}
.ls3f{letter-spacing:16.589870px;}
.ls3e{letter-spacing:16.595870px;}
.ls18{letter-spacing:17.457269px;}
.ls28{letter-spacing:18.015031px;}
.ls2b{letter-spacing:19.600893px;}
.ls36{letter-spacing:20.920200px;}
.ls37{letter-spacing:21.537634px;}
.ls23{letter-spacing:22.014538px;}
.lsb{letter-spacing:23.066023px;}
.lsa{letter-spacing:23.086200px;}
.lsc{letter-spacing:23.546368px;}
.ls1a{letter-spacing:25.172023px;}
.ls7{letter-spacing:25.629269px;}
.ls1b{letter-spacing:25.652368px;}
.ls31{letter-spacing:26.770120px;}
.ls16{letter-spacing:27.477269px;}
.ls2e{letter-spacing:27.555269px;}
.ls26{letter-spacing:28.280823px;}
.ls32{letter-spacing:29.247269px;}
.ls2c{letter-spacing:29.266120px;}
.ls42{letter-spacing:29.685235px;}
.ls41{letter-spacing:29.686038px;}
.ls8{letter-spacing:30.377915px;}
.ls27{letter-spacing:30.676379px;}
.ls33{letter-spacing:34.456893px;}
.ls34{letter-spacing:37.620921px;}
.ls10{letter-spacing:42.135181px;}
.ls25{letter-spacing:70.551269px;}
.ls2d{letter-spacing:75.393269px;}
.ls56{letter-spacing:99.861427px;}
.ls54{letter-spacing:99.862491px;}
.ls57{letter-spacing:101.062491px;}
.ls46{letter-spacing:421.934230px;}
.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;}
}
.ws169{word-spacing:-50.809387px;}
.ws9b{word-spacing:-38.937826px;}
.wse5{word-spacing:-34.055855px;}
.wsb3{word-spacing:-29.015076px;}
.wsb6{word-spacing:-28.955301px;}
.wsb8{word-spacing:-26.803379px;}
.ws134{word-spacing:-17.661724px;}
.ws137{word-spacing:-15.639724px;}
.ws3{word-spacing:-14.943900px;}
.ws17{word-spacing:-14.920027px;}
.ws130{word-spacing:-13.503724px;}
.ws68{word-spacing:-11.955150px;}
.wsb5{word-spacing:-10.801451px;}
.ws11a{word-spacing:-10.502799px;}
.ws11b{word-spacing:-10.484267px;}
.ws11c{word-spacing:-10.475051px;}
.wse3{word-spacing:-10.460700px;}
.ws147{word-spacing:-1.075961px;}
.ws146{word-spacing:-0.956410px;}
.ws4a{word-spacing:-0.896634px;}
.ws115{word-spacing:-0.836858px;}
.ws18c{word-spacing:-0.812950px;}
.ws98{word-spacing:-0.777083px;}
.wscc{word-spacing:-0.575160px;}
.wscd{word-spacing:-0.537980px;}
.ws1ba{word-spacing:-0.526027px;}
.ws12a{word-spacing:-0.478205px;}
.ws12c{word-spacing:-0.474292px;}
.ws13{word-spacing:-0.376589px;}
.ws18d{word-spacing:-0.334744px;}
.ws132{word-spacing:-0.298878px;}
.ws15d{word-spacing:-0.179327px;}
.ws1c7{word-spacing:-0.095641px;}
.ws96{word-spacing:-0.059776px;}
.ws5{word-spacing:-0.053798px;}
.wsc4{word-spacing:-0.041843px;}
.ws4e{word-spacing:0.000000px;}
.ws94{word-spacing:0.059776px;}
.ws6b{word-spacing:0.119551px;}
.wsff{word-spacing:0.179327px;}
.ws71{word-spacing:0.239102px;}
.ws7b{word-spacing:0.298878px;}
.wsf{word-spacing:0.322790px;}
.ws79{word-spacing:0.358654px;}
.ws19a{word-spacing:0.382565px;}
.ws107{word-spacing:0.418429px;}
.wsda{word-spacing:0.478205px;}
.ws1e9{word-spacing:0.478206px;}
.ws75{word-spacing:0.597756px;}
.ws1c8{word-spacing:0.621668px;}
.ws18{word-spacing:0.777083px;}
.ws99{word-spacing:0.836858px;}
.ws111{word-spacing:0.896634px;}
.ws116{word-spacing:0.956410px;}
.ws89{word-spacing:1.016185px;}
.wsc8{word-spacing:1.041350px;}
.ws69{word-spacing:1.075961px;}
.ws173{word-spacing:1.135736px;}
.ws10c{word-spacing:1.195512px;}
.wse{word-spacing:1.237363px;}
.ws114{word-spacing:1.255288px;}
.ws1c0{word-spacing:1.291156px;}
.ws1bd{word-spacing:1.338977px;}
.ws1d2{word-spacing:1.386797px;}
.ws1d3{word-spacing:1.434618px;}
.ws6d{word-spacing:1.494390px;}
.ws1ce{word-spacing:1.530259px;}
.ws35{word-spacing:1.554166px;}
.ws103{word-spacing:1.613941px;}
.ws1e8{word-spacing:1.673721px;}
.ws105{word-spacing:1.733492px;}
.wsfb{word-spacing:1.912819px;}
.ws1b8{word-spacing:1.912824px;}
.ws87{word-spacing:1.972595px;}
.ws3e{word-spacing:2.032370px;}
.ws13a{word-spacing:2.092146px;}
.ws157{word-spacing:2.151922px;}
.ws106{word-spacing:2.211697px;}
.ws172{word-spacing:2.331248px;}
.ws20{word-spacing:2.391024px;}
.ws74{word-spacing:2.450800px;}
.ws1ab{word-spacing:2.486671px;}
.ws2a{word-spacing:2.510575px;}
.wsbb{word-spacing:2.516134px;}
.ws65{word-spacing:2.570351px;}
.ws19{word-spacing:2.630126px;}
.ws5a{word-spacing:2.749678px;}
.ws104{word-spacing:2.809453px;}
.ws1ad{word-spacing:2.821415px;}
.ws14e{word-spacing:2.869229px;}
.ws1e0{word-spacing:2.869236px;}
.wsce{word-spacing:2.988780px;}
.wsc7{word-spacing:3.048556px;}
.ws38{word-spacing:3.168107px;}
.ws1b1{word-spacing:3.203980px;}
.ws11d{word-spacing:3.227882px;}
.ws122{word-spacing:3.247126px;}
.ws1a3{word-spacing:3.299621px;}
.ws13e{word-spacing:3.347434px;}
.wsa7{word-spacing:3.407209px;}
.wsb1{word-spacing:3.466985px;}
.ws1cc{word-spacing:3.490904px;}
.ws1cb{word-spacing:3.538724px;}
.ws8a{word-spacing:3.586536px;}
.ws1b2{word-spacing:3.586545px;}
.ws2f{word-spacing:3.646312px;}
.ws18e{word-spacing:3.682186px;}
.ws1d0{word-spacing:3.730007px;}
.ws25{word-spacing:3.765863px;}
.wsa8{word-spacing:3.825638px;}
.ws15e{word-spacing:3.885414px;}
.ws1a4{word-spacing:3.921289px;}
.ws17e{word-spacing:3.945190px;}
.wse0{word-spacing:4.004965px;}
.ws1dd{word-spacing:4.016930px;}
.wsd4{word-spacing:4.064741px;}
.ws1de{word-spacing:4.064751px;}
.ws119{word-spacing:4.124516px;}
.wsec{word-spacing:4.181602px;}
.wseb{word-spacing:4.182900px;}
.wsee{word-spacing:4.184114px;}
.wse9{word-spacing:4.184280px;}
.wsdb{word-spacing:4.184292px;}
.wsf2{word-spacing:4.185349px;}
.wsea{word-spacing:4.187068px;}
.wsf3{word-spacing:4.187995px;}
.ws88{word-spacing:4.303843px;}
.ws1c1{word-spacing:4.303854px;}
.ws19d{word-spacing:4.351675px;}
.ws1ec{word-spacing:4.357169px;}
.wsdc{word-spacing:4.363619px;}
.ws1d6{word-spacing:4.399495px;}
.ws153{word-spacing:4.423394px;}
.ws178{word-spacing:4.542946px;}
.ws29{word-spacing:4.602721px;}
.ws1a5{word-spacing:4.779560px;}
.ws1f3{word-spacing:4.780776px;}
.ws198{word-spacing:4.780871px;}
.ws185{word-spacing:4.781548px;}
.wsa6{word-spacing:4.782048px;}
.ws7f{word-spacing:4.782060px;}
.ws4b{word-spacing:4.841824px;}
.ws8c{word-spacing:4.901599px;}
.ws110{word-spacing:4.961375px;}
.ws78{word-spacing:5.021150px;}
.ws6{word-spacing:5.057050px;}
.ws1ed{word-spacing:5.068984px;}
.wsad{word-spacing:5.080926px;}
.ws177{word-spacing:5.140702px;}
.ws151{word-spacing:5.260253px;}
.ws1bc{word-spacing:5.260266px;}
.ws1c3{word-spacing:5.308087px;}
.ws9e{word-spacing:5.379804px;}
.wsfd{word-spacing:5.499355px;}
.ws19c{word-spacing:5.499369px;}
.wsc1{word-spacing:5.559131px;}
.ws1ca{word-spacing:5.595010px;}
.ws3a{word-spacing:5.618906px;}
.ws9a{word-spacing:5.678682px;}
.ws8f{word-spacing:5.738458px;}
.ws193{word-spacing:5.738472px;}
.ws1ea{word-spacing:5.786293px;}
.wsbf{word-spacing:5.798233px;}
.ws1dc{word-spacing:5.834113px;}
.ws179{word-spacing:5.858009px;}
.ws1d7{word-spacing:5.929754px;}
.ws4{word-spacing:5.970575px;}
.ws7c{word-spacing:5.972074px;}
.ws2{word-spacing:5.977560px;}
.ws1a6{word-spacing:5.977575px;}
.wsb2{word-spacing:5.978134px;}
.ws7d{word-spacing:5.978700px;}
.ws1a7{word-spacing:6.025396px;}
.ws183{word-spacing:6.073216px;}
.wsaf{word-spacing:6.097111px;}
.ws158{word-spacing:6.156887px;}
.ws32{word-spacing:6.216662px;}
.ws1bb{word-spacing:6.216678px;}
.ws3d{word-spacing:6.276438px;}
.ws1eb{word-spacing:6.312319px;}
.ws10a{word-spacing:6.336214px;}
.wse4{word-spacing:6.360106px;}
.ws17a{word-spacing:6.395989px;}
.wse8{word-spacing:6.401948px;}
.ws1e7{word-spacing:6.407960px;}
.ws49{word-spacing:6.455765px;}
.ws19b{word-spacing:6.455781px;}
.ws82{word-spacing:6.515540px;}
.ws1be{word-spacing:6.551422px;}
.ws7a{word-spacing:6.575316px;}
.ws1{word-spacing:6.575340px;}
.ws18f{word-spacing:6.599243px;}
.ws148{word-spacing:6.635092px;}
.ws1c9{word-spacing:6.647063px;}
.ws36{word-spacing:6.694867px;}
.ws15{word-spacing:6.724800px;}
.ws1f5{word-spacing:6.742705px;}
.wsa4{word-spacing:6.754643px;}
.ws9f{word-spacing:6.814418px;}
.ws14b{word-spacing:6.874194px;}
.ws1b9{word-spacing:6.886166px;}
.ws100{word-spacing:6.933970px;}
.ws1d8{word-spacing:6.933987px;}
.ws136{word-spacing:7.053521px;}
.ws1d1{word-spacing:7.077449px;}
.ws15b{word-spacing:7.113296px;}
.ws194{word-spacing:7.125269px;}
.ws8e{word-spacing:7.173072px;}
.ws1ee{word-spacing:7.173090px;}
.ws10{word-spacing:7.208986px;}
.ws1d{word-spacing:7.232848px;}
.ws39{word-spacing:7.352399px;}
.ws1c5{word-spacing:7.460014px;}
.wse1{word-spacing:7.471684px;}
.ws2b{word-spacing:7.531726px;}
.ws86{word-spacing:7.591501px;}
.ws190{word-spacing:7.603475px;}
.ws1d9{word-spacing:7.624929px;}
.ws1da{word-spacing:7.651296px;}
.ws1a{word-spacing:7.711052px;}
.wsb0{word-spacing:7.770828px;}
.ws1af{word-spacing:7.778482px;}
.ws1b0{word-spacing:7.794758px;}
.ws6e{word-spacing:7.830604px;}
.ws93{word-spacing:7.890379px;}
.ws1e3{word-spacing:7.938220px;}
.ws113{word-spacing:7.950155px;}
.ws41{word-spacing:8.009930px;}
.wsbc{word-spacing:8.069706px;}
.wsbd{word-spacing:8.084134px;}
.wse7{word-spacing:8.113875px;}
.ws70{word-spacing:8.129482px;}
.ws180{word-spacing:8.129502px;}
.ws6c{word-spacing:8.189257px;}
.ws12f{word-spacing:8.249033px;}
.ws77{word-spacing:8.308808px;}
.wsa3{word-spacing:8.368584px;}
.ws1a2{word-spacing:8.368605px;}
.ws14f{word-spacing:8.428360px;}
.ws1cf{word-spacing:8.464246px;}
.wsfc{word-spacing:8.488135px;}
.ws6a{word-spacing:8.553661px;}
.ws45{word-spacing:8.607686px;}
.ws1ac{word-spacing:8.607708px;}
.ws126{word-spacing:8.667462px;}
.ws171{word-spacing:8.727238px;}
.ws1bf{word-spacing:8.751170px;}
.ws18b{word-spacing:8.798990px;}
.ws192{word-spacing:8.894632px;}
.ws109{word-spacing:8.906564px;}
.ws1e1{word-spacing:8.942452px;}
.wse2{word-spacing:8.962423px;}
.wsfa{word-spacing:8.968123px;}
.ws1e6{word-spacing:8.989345px;}
.ws18a{word-spacing:8.990273px;}
.wsa1{word-spacing:9.026116px;}
.ws83{word-spacing:9.085891px;}
.ws19e{word-spacing:9.133735px;}
.ws1f2{word-spacing:9.181555px;}
.ws197{word-spacing:9.229376px;}
.ws8b{word-spacing:9.265218px;}
.ws5d{word-spacing:9.324994px;}
.ws159{word-spacing:9.384769px;}
.ws8{word-spacing:9.414720px;}
.ws76{word-spacing:9.444545px;}
.ws1c6{word-spacing:9.516299px;}
.ws60{word-spacing:9.564096px;}
.ws1e{word-spacing:9.743423px;}
.ws12{word-spacing:9.791309px;}
.ws6f{word-spacing:9.803198px;}
.ws1f1{word-spacing:9.803223px;}
.ws19f{word-spacing:9.851044px;}
.ws150{word-spacing:9.862974px;}
.wsb7{word-spacing:9.922750px;}
.ws191{word-spacing:9.946685px;}
.ws1f{word-spacing:10.042301px;}
.ws120{word-spacing:10.102076px;}
.wsa5{word-spacing:10.161852px;}
.ws144{word-spacing:10.221628px;}
.wse6{word-spacing:10.239016px;}
.wsf6{word-spacing:10.251486px;}
.ws181{word-spacing:10.377070px;}
.ws117{word-spacing:10.400954px;}
.ws182{word-spacing:10.424891px;}
.ws14{word-spacing:10.436890px;}
.ws17c{word-spacing:10.460730px;}
.wsdd{word-spacing:10.520506px;}
.ws4c{word-spacing:10.580281px;}
.ws1c4{word-spacing:10.616173px;}
.wsa9{word-spacing:10.640057px;}
.ws95{word-spacing:10.699832px;}
.ws1f0{word-spacing:10.711814px;}
.ws97{word-spacing:10.759608px;}
.ws1e4{word-spacing:10.807456px;}
.ws2e{word-spacing:10.819384px;}
.ws33{word-spacing:10.879159px;}
.wsac{word-spacing:10.938935px;}
.ws1a9{word-spacing:10.950917px;}
.ws22{word-spacing:11.058486px;}
.wsae{word-spacing:11.118262px;}
.ws10d{word-spacing:11.178037px;}
.ws11e{word-spacing:11.237813px;}
.wsc6{word-spacing:11.417140px;}
.ws186{word-spacing:11.429123px;}
.wsc5{word-spacing:11.452309px;}
.wsa{word-spacing:11.459059px;}
.ws1a1{word-spacing:11.469849px;}
.ws44{word-spacing:11.476915px;}
.ws196{word-spacing:11.476944px;}
.wsd6{word-spacing:11.536691px;}
.wsa2{word-spacing:11.596466px;}
.ws1f4{word-spacing:11.620406px;}
.ws72{word-spacing:11.656242px;}
.ws42{word-spacing:11.895344px;}
.ws1d4{word-spacing:11.907329px;}
.ws51{word-spacing:11.953769px;}
.ws81{word-spacing:11.955120px;}
.ws141{word-spacing:11.959769px;}
.ws92{word-spacing:12.014896px;}
.ws67{word-spacing:12.134447px;}
.ws62{word-spacing:12.194222px;}
.ws17d{word-spacing:12.253998px;}
.ws73{word-spacing:12.313774px;}
.wsc2{word-spacing:12.433325px;}
.ws14c{word-spacing:12.493100px;}
.wsb9{word-spacing:12.532309px;}
.wsba{word-spacing:12.552876px;}
.wsca{word-spacing:12.610309px;}
.wscb{word-spacing:12.612652px;}
.ws129{word-spacing:12.672427px;}
.ws195{word-spacing:12.720280px;}
.wsd5{word-spacing:12.732203px;}
.ws154{word-spacing:12.851754px;}
.ws43{word-spacing:12.911530px;}
.ws125{word-spacing:12.971305px;}
.ws170{word-spacing:13.031081px;}
.ws1b{word-spacing:13.090856px;}
.ws1a8{word-spacing:13.102844px;}
.ws176{word-spacing:13.150632px;}
.ws184{word-spacing:13.150665px;}
.wsc9{word-spacing:13.210408px;}
.ws1cd{word-spacing:13.246306px;}
.ws12e{word-spacing:13.270183px;}
.ws9d{word-spacing:13.329959px;}
.ws24{word-spacing:13.389734px;}
.ws9{word-spacing:13.395802px;}
.ws145{word-spacing:13.449510px;}
.ws26{word-spacing:13.509286px;}
.wsef{word-spacing:13.557067px;}
.ws3b{word-spacing:13.569061px;}
.ws34{word-spacing:13.628837px;}
.ws1df{word-spacing:13.628871px;}
.ws85{word-spacing:13.867939px;}
.ws199{word-spacing:13.867974px;}
.ws17b{word-spacing:13.927715px;}
.ws175{word-spacing:14.047266px;}
.ws13c{word-spacing:14.107042px;}
.ws8d{word-spacing:14.166817px;}
.wsd7{word-spacing:14.226593px;}
.wscf{word-spacing:14.286368px;}
.wsd0{word-spacing:14.346144px;}
.ws0{word-spacing:14.346180px;}
.ws12b{word-spacing:14.409617px;}
.ws1b7{word-spacing:14.441821px;}
.ws123{word-spacing:14.525471px;}
.ws5f{word-spacing:14.585246px;}
.wsf9{word-spacing:14.597208px;}
.wsf0{word-spacing:14.603208px;}
.ws10e{word-spacing:14.645022px;}
.wsde{word-spacing:14.704798px;}
.ws188{word-spacing:14.728745px;}
.ws187{word-spacing:14.776565px;}
.wsc{word-spacing:14.848358px;}
.ws1e2{word-spacing:14.872207px;}
.ws40{word-spacing:14.884124px;}
.ws131{word-spacing:14.896830px;}
.ws4d{word-spacing:14.943900px;}
.ws27{word-spacing:15.003676px;}
.ws3c{word-spacing:15.123227px;}
.ws112{word-spacing:15.183002px;}
.ws31{word-spacing:15.242778px;}
.ws133{word-spacing:15.422105px;}
.ws90{word-spacing:15.481880px;}
.ws14d{word-spacing:15.601432px;}
.ws13b{word-spacing:15.661207px;}
.ws1c2{word-spacing:15.685157px;}
.wsbe{word-spacing:15.720983px;}
.ws189{word-spacing:15.828619px;}
.ws124{word-spacing:15.840534px;}
.ws2d{word-spacing:15.960085px;}
.ws128{word-spacing:16.079636px;}
.ws3f{word-spacing:16.139412px;}
.ws37{word-spacing:16.199188px;}
.ws2c{word-spacing:16.378514px;}
.ws5e{word-spacing:16.438290px;}
.ws160{word-spacing:16.498066px;}
.wsb4{word-spacing:16.530415px;}
.wsc3{word-spacing:16.557841px;}
.ws149{word-spacing:16.617617px;}
.ws1d5{word-spacing:16.641569px;}
.ws14a{word-spacing:16.737168px;}
.ws91{word-spacing:16.796944px;}
.ws10f{word-spacing:16.916495px;}
.ws11{word-spacing:16.946496px;}
.ws66{word-spacing:17.036046px;}
.ws21{word-spacing:17.095822px;}
.ws15a{word-spacing:17.155597px;}
.ws1aa{word-spacing:17.263237px;}
.ws15c{word-spacing:17.334924px;}
.ws80{word-spacing:17.394700px;}
.ws1c{word-spacing:17.454475px;}
.wsfe{word-spacing:17.574026px;}
.wsd8{word-spacing:17.633802px;}
.ws108{word-spacing:17.753353px;}
.ws46{word-spacing:17.813129px;}
.ws16{word-spacing:17.932680px;}
.ws1b3{word-spacing:17.932725px;}
.ws23{word-spacing:17.992456px;}
.ws63{word-spacing:18.171782px;}
.wsd{word-spacing:18.183859px;}
.ws1ef{word-spacing:18.219649px;}
.ws61{word-spacing:18.231558px;}
.ws1a0{word-spacing:18.315290px;}
.ws135{word-spacing:18.347024px;}
.ws10b{word-spacing:18.351109px;}
.ws1ae{word-spacing:18.363110px;}
.ws127{word-spacing:18.470660px;}
.ws138{word-spacing:18.590212px;}
.ws48{word-spacing:18.649987px;}
.ws1db{word-spacing:18.650034px;}
.ws17f{word-spacing:18.769538px;}
.ws13d{word-spacing:18.829314px;}
.ws1e5{word-spacing:19.128240px;}
.ws5c{word-spacing:19.427070px;}
.wsd2{word-spacing:19.486846px;}
.wsd1{word-spacing:19.514134px;}
.ws15f{word-spacing:19.725948px;}
.ws84{word-spacing:19.785724px;}
.wsab{word-spacing:19.905275px;}
.ws101{word-spacing:19.965050px;}
.ws155{word-spacing:20.204153px;}
.ws5b{word-spacing:20.323704px;}
.ws64{word-spacing:20.383480px;}
.ws30{word-spacing:20.443255px;}
.ws11f{word-spacing:20.503031px;}
.ws12d{word-spacing:21.160562px;}
.ws156{word-spacing:21.399665px;}
.wsc0{word-spacing:21.698543px;}
.ws174{word-spacing:21.818094px;}
.wsb{word-spacing:21.895949px;}
.ws162{word-spacing:21.937645px;}
.ws139{word-spacing:21.959024px;}
.wsd9{word-spacing:21.997421px;}
.ws47{word-spacing:22.356074px;}
.ws7{word-spacing:22.380134px;}
.ws28{word-spacing:22.475626px;}
.ws163{word-spacing:22.834279px;}
.wsa0{word-spacing:22.953830px;}
.wsaa{word-spacing:23.312484px;}
.ws9c{word-spacing:23.556340px;}
.wsdf{word-spacing:24.456824px;}
.ws1b6{word-spacing:27.831589px;}
.ws152{word-spacing:31.729605px;}
.wsd3{word-spacing:34.399694px;}
.ws102{word-spacing:34.830824px;}
.ws1b5{word-spacing:37.155227px;}
.ws121{word-spacing:38.369695px;}
.ws1b4{word-spacing:41.795204px;}
.ws4f{word-spacing:59.775750px;}
.ws161{word-spacing:61.628644px;}
.ws118{word-spacing:63.784711px;}
.wsf8{word-spacing:68.740123px;}
.wsed{word-spacing:68.740423px;}
.ws168{word-spacing:71.730900px;}
.ws50{word-spacing:72.304747px;}
.ws140{word-spacing:73.698670px;}
.ws55{word-spacing:83.660023px;}
.ws165{word-spacing:83.686050px;}
.ws166{word-spacing:95.641200px;}
.ws7e{word-spacing:101.331851px;}
.ws59{word-spacing:101.401208px;}
.ws53{word-spacing:119.975815px;}
.ws57{word-spacing:127.489350px;}
.wsf7{word-spacing:128.518123px;}
.wsf1{word-spacing:128.518423px;}
.ws56{word-spacing:131.457703px;}
.ws16f{word-spacing:132.898017px;}
.ws142{word-spacing:133.247815px;}
.ws58{word-spacing:136.787396px;}
.ws143{word-spacing:138.101396px;}
.ws54{word-spacing:139.447350px;}
.ws52{word-spacing:151.399650px;}
.ws16d{word-spacing:164.794697px;}
.ws16e{word-spacing:167.450784px;}
.ws16a{word-spacing:184.685737px;}
.wsf5{word-spacing:188.290123px;}
.wsf4{word-spacing:188.296123px;}
.ws16b{word-spacing:189.997610px;}
.ws164{word-spacing:200.615956px;}
.ws167{word-spacing:205.945950px;}
.ws16c{word-spacing:213.908210px;}
.ws13f{word-spacing:270.808058px;}
._9{margin-left:-6.694867px;}
._5{margin-left:-4.949453px;}
._0{margin-left:-3.586545px;}
._1{margin-left:-2.151927px;}
._4{margin-left:-1.135731px;}
._1b{width:1.728781px;}
._2{width:3.079199px;}
._3{width:4.985166px;}
._1e{width:6.455765px;}
._20{width:7.769535px;}
._21{width:8.857269px;}
._6{width:13.670758px;}
._10{width:15.422105px;}
._35{width:18.588086px;}
._22{width:20.861690px;}
._1a{width:21.937651px;}
._1d{width:23.615014px;}
._7{width:25.703524px;}
._32{width:27.305563px;}
._2b{width:28.849140px;}
._11{width:30.069395px;}
._8{width:31.920170px;}
._2c{width:35.088283px;}
._36{width:41.696688px;}
._29{width:44.893048px;}
._34{width:47.103197px;}
._2a{width:49.105122px;}
._33{width:53.798175px;}
._2e{width:60.442534px;}
._2f{width:68.692959px;}
._23{width:72.328344px;}
._14{width:77.947578px;}
._24{width:79.272130px;}
._26{width:82.180360px;}
._2d{width:91.227157px;}
._25{width:101.204814px;}
._1c{width:106.850084px;}
._a{width:111.995845px;}
._b{width:114.937393px;}
._1f{width:116.189510px;}
._30{width:141.644617px;}
._31{width:145.613727px;}
._19{width:158.047083px;}
._13{width:161.298884px;}
._15{width:162.682517px;}
._e{width:187.625100px;}
._12{width:188.747908px;}
._f{width:198.551100px;}
._d{width:210.509400px;}
._c{width:211.529400px;}
._16{width:229.800990px;}
._18{width:258.757267px;}
._17{width:302.637691px;}
._27{width:402.367922px;}
._28{width:1040.051457px;}
.fc2{color:transparent;}
.fc1{color:rgb(149,55,53);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:15.316632px;}
.fs11{font-size:18.379958px;}
.fsc{font-size:20.338342px;}
.fsb{font-size:25.384698px;}
.fsa{font-size:29.887800px;}
.fs9{font-size:30.855168px;}
.fsf{font-size:30.886043px;}
.fs7{font-size:30.912307px;}
.fs13{font-size:32.710933px;}
.fs8{font-size:33.426432px;}
.fs6{font-size:35.865600px;}
.fs12{font-size:36.345481px;}
.fs5{font-size:41.842800px;}
.fsd{font-size:46.329064px;}
.fse{font-size:46.390836px;}
.fs4{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y197{bottom:0.538603px;}
.y1de{bottom:4.764019px;}
.y18a{bottom:5.707966px;}
.y18b{bottom:8.867021px;}
.y1ea{bottom:11.578796px;}
.y1df{bottom:12.260274px;}
.y15a{bottom:13.258676px;}
.y116{bottom:15.452934px;}
.y180{bottom:17.211073px;}
.y15b{bottom:18.534412px;}
.y165{bottom:18.610872px;}
.y18c{bottom:18.918561px;}
.y17b{bottom:19.823518px;}
.y175{bottom:21.445035px;}
.y115{bottom:24.738054px;}
.y10d{bottom:27.552159px;}
.y18d{bottom:28.683297px;}
.y1e0{bottom:38.156429px;}
.y18e{bottom:38.447650px;}
.y196{bottom:43.042640px;}
.y15c{bottom:46.595207px;}
.y18f{bottom:48.212003px;}
.y17a{bottom:54.184240px;}
.y17d{bottom:54.403016px;}
.y190{bottom:57.976356px;}
.y1e1{bottom:64.053493px;}
.y191{bottom:68.027895px;}
.y114{bottom:71.733855px;}
.y10c{bottom:73.846815px;}
.y15d{bottom:74.617836px;}
.y192{bottom:77.792248px;}
.y113{bottom:81.018975px;}
.y178{bottom:82.798872px;}
.y10b{bottom:83.846175px;}
.y193{bottom:87.556601px;}
.y1e2{bottom:89.949648px;}
.y194{bottom:97.320954px;}
.y15e{bottom:102.678568px;}
.y195{bottom:107.085307px;}
.y1e9{bottom:107.668070px;}
.y17f{bottom:111.510023px;}
.y37{bottom:113.332500px;}
.y2b8{bottom:113.334000px;}
.y164{bottom:114.071098px;}
.y1e3{bottom:115.845803px;}
.y174{bottom:117.178898px;}
.y85{bottom:117.552000px;}
.y112{bottom:126.771999px;}
.y274{bottom:126.783000px;}
.y15f{bottom:130.701134px;}
.y36{bottom:131.265000px;}
.ydb{bottom:131.266500px;}
.y84{bottom:132.346500px;}
.y111{bottom:136.771359px;}
.y273{bottom:140.232000px;}
.y1e4{bottom:141.741958px;}
.y177{bottom:147.923380px;}
.y51{bottom:149.197500px;}
.y35{bottom:149.199000px;}
.y110{bottom:151.585887px;}
.y272{bottom:153.759000px;}
.y2b7{bottom:154.579500px;}
.y17e{bottom:155.149427px;}
.y179{bottom:156.680860px;}
.y1f2{bottom:158.097424px;}
.y160{bottom:158.761929px;}
.y83{bottom:160.974000px;}
.y22e{bottom:162.123000px;}
.y10f{bottom:166.745631px;}
.y50{bottom:167.130000px;}
.y34{bottom:167.131500px;}
.y271{bottom:167.209500px;}
.y2b6{bottom:168.028500px;}
.y1e5{bottom:168.319591px;}
.y1f1{bottom:169.001069px;}
.y82{bottom:178.906500px;}
.y1f0{bottom:179.904713px;}
.y106{bottom:180.482847px;}
.y270{bottom:180.658500px;}
.y16e{bottom:181.241150px;}
.y2b5{bottom:181.477500px;}
.y17c{bottom:182.142542px;}
.y33{bottom:185.064000px;}
.y161{bottom:186.784495px;}
.y16d{bottom:189.231213px;}
.y1ef{bottom:190.808357px;}
.y1e6{bottom:193.534268px;}
.y26f{bottom:194.185500px;}
.y2b4{bottom:195.823500px;}
.y81{bottom:196.839000px;}
.y16c{bottom:197.183046px;}
.y1ee{bottom:201.030523px;}
.y22d{bottom:201.786000px;}
.y32{bottom:202.996500px;}
.y16b{bottom:205.173109px;}
.y26e{bottom:207.636000px;}
.y10e{bottom:209.040543px;}
.y2b3{bottom:209.274000px;}
.y1ed{bottom:211.934168px;}
.y16a{bottom:213.124942px;}
.y173{bottom:213.852212px;}
.y80{bottom:214.771500px;}
.y162{bottom:214.845290px;}
.y1e7{bottom:219.430423px;}
.y22c{bottom:219.718500px;}
.y31{bottom:220.929000px;}
.y26d{bottom:221.085000px;}
.y169{bottom:221.115005px;}
.y2b2{bottom:222.723000px;}
.y1ec{bottom:222.837812px;}
.y168{bottom:229.066838px;}
.y7f{bottom:232.704000px;}
.y1eb{bottom:233.741456px;}
.y26c{bottom:234.534000px;}
.y2b1{bottom:236.173500px;}
.y167{bottom:237.056901px;}
.y22b{bottom:237.651000px;}
.y30{bottom:238.861500px;}
.yda{bottom:238.863000px;}
.y10a{bottom:241.865823px;}
.y109{bottom:242.824095px;}
.y163{bottom:242.867856px;}
.y166{bottom:242.982418px;}
.y1e8{bottom:245.326578px;}
.y176{bottom:246.108823px;}
.y26b{bottom:248.062500px;}
.y2b0{bottom:250.519500px;}
.y7e{bottom:250.636500px;}
.y22a{bottom:255.583500px;}
.y4f{bottom:256.794000px;}
.y2f{bottom:256.795500px;}
.y104{bottom:257.946000px;}
.y26a{bottom:261.511500px;}
.y2af{bottom:263.968500px;}
.y7d{bottom:268.570500px;}
.y229{bottom:273.516000px;}
.y2e{bottom:274.728000px;}
.y269{bottom:274.960500px;}
.yd9{bottom:275.050500px;}
.y103{bottom:275.878500px;}
.y2ae{bottom:277.417500px;}
.y108{bottom:282.565599px;}
.y107{bottom:283.422687px;}
.y7c{bottom:286.503000px;}
.y268{bottom:288.489000px;}
.y228{bottom:291.448500px;}
.y2ad{bottom:291.765000px;}
.y2d{bottom:292.660500px;}
.yd8{bottom:292.983000px;}
.y102{bottom:293.812500px;}
.y1dd{bottom:299.329500px;}
.y267{bottom:301.938000px;}
.y7b{bottom:304.435500px;}
.y2ac{bottom:305.214000px;}
.y227{bottom:309.382500px;}
.yac{bottom:310.518000px;}
.y2c{bottom:310.593000px;}
.yd7{bottom:310.915500px;}
.y188{bottom:311.134500px;}
.y101{bottom:311.745000px;}
.y266{bottom:315.387000px;}
.y2ab{bottom:318.663000px;}
.y137{bottom:320.542500px;}
.y7a{bottom:322.368000px;}
.y226{bottom:327.315000px;}
.yab{bottom:328.450500px;}
.y2b{bottom:328.525500px;}
.yd6{bottom:328.849500px;}
.y265{bottom:328.915500px;}
.y187{bottom:329.067000px;}
.y100{bottom:329.677500px;}
.y1dc{bottom:332.112000px;}
.y2aa{bottom:332.113500px;}
.y1b9{bottom:333.550500px;}
.y79{bottom:340.809000px;}
.y264{bottom:342.364500px;}
.y225{bottom:345.247500px;}
.y2a9{bottom:345.562500px;}
.y2a{bottom:346.104000px;}
.yaa{bottom:346.383000px;}
.y4e{bottom:346.458000px;}
.y158{bottom:346.459500px;}
.y186{bottom:347.001000px;}
.yff{bottom:347.610000px;}
.y1db{bottom:350.044500px;}
.yd5{bottom:355.524000px;}
.y263{bottom:355.813500px;}
.y78{bottom:358.741500px;}
.y2a8{bottom:359.908500px;}
.y1b8{bottom:362.340000px;}
.y224{bottom:363.180000px;}
.y29{bottom:364.036500px;}
.ya9{bottom:364.315500px;}
.y4d{bottom:364.390500px;}
.y157{bottom:364.392000px;}
.y185{bottom:364.933500px;}
.yfe{bottom:365.542500px;}
.yd4{bottom:365.775000px;}
.y1da{bottom:367.978500px;}
.y262{bottom:369.342000px;}
.y2a7{bottom:373.359000px;}
.y136{bottom:376.111500px;}
.y77{bottom:376.674000px;}
.y1b7{bottom:380.274000px;}
.y223{bottom:381.112500px;}
.y28{bottom:381.969000px;}
.ya8{bottom:382.248000px;}
.y4c{bottom:382.324500px;}
.y261{bottom:382.791000px;}
.y184{bottom:382.866000px;}
.yfd{bottom:383.475000px;}
.y1d9{bottom:385.911000px;}
.y2a6{bottom:386.808000px;}
.y156{bottom:387.831000px;}
.y135{bottom:388.066500px;}
.y205{bottom:392.484000px;}
.y76{bottom:394.608000px;}
.y260{bottom:396.240000px;}
.y1b6{bottom:398.206500px;}
.y222{bottom:399.045000px;}
.y27{bottom:399.901500px;}
.y134{bottom:400.021500px;}
.ya7{bottom:400.180500px;}
.y4b{bottom:400.257000px;}
.yfc{bottom:401.409000px;}
.y1d8{bottom:403.843500px;}
.y25f{bottom:409.690500px;}
.y133{bottom:411.976500px;}
.y75{bottom:412.540500px;}
.y2a5{bottom:414.603000px;}
.y1b5{bottom:416.139000px;}
.yd3{bottom:417.222000px;}
.y155{bottom:417.790500px;}
.y26{bottom:417.835500px;}
.ya6{bottom:418.114500px;}
.y4a{bottom:418.189500px;}
.y221{bottom:418.348500px;}
.yfb{bottom:419.341500px;}
.y1d7{bottom:421.776000px;}
.y25e{bottom:423.139500px;}
.y132{bottom:423.931500px;}
.y2a4{bottom:428.053500px;}
.y204{bottom:428.229000px;}
.y74{bottom:430.473000px;}
.y1b4{bottom:434.071500px;}
.yd2{bottom:435.154500px;}
.y183{bottom:435.418500px;}
.y154{bottom:435.723000px;}
.y25{bottom:435.768000px;}
.y131{bottom:435.886500px;}
.ya5{bottom:436.047000px;}
.y49{bottom:436.122000px;}
.y220{bottom:436.281000px;}
.y25d{bottom:436.666500px;}
.yfa{bottom:437.274000px;}
.y1d6{bottom:439.708500px;}
.y2a3{bottom:441.502500px;}
.y203{bottom:446.161500px;}
.y130{bottom:447.841500px;}
.y73{bottom:448.405500px;}
.y25c{bottom:450.117000px;}
.y1b3{bottom:452.004000px;}
.yd1{bottom:453.087000px;}
.y182{bottom:453.351000px;}
.y153{bottom:453.655500px;}
.y24{bottom:453.700500px;}
.ya4{bottom:453.979500px;}
.y48{bottom:454.054500px;}
.y21f{bottom:454.213500px;}
.y2a2{bottom:454.953000px;}
.yf9{bottom:455.206500px;}
.y1d5{bottom:457.641000px;}
.y12f{bottom:459.796500px;}
.y25b{bottom:463.644000px;}
.y202{bottom:464.094000px;}
.y72{bottom:466.338000px;}
.y2a1{bottom:469.299000px;}
.y1b2{bottom:469.936500px;}
.yd0{bottom:471.019500px;}
.y181{bottom:471.283500px;}
.y152{bottom:471.588000px;}
.y23{bottom:471.633000px;}
.y12e{bottom:471.751500px;}
.ya3{bottom:471.912000px;}
.y47{bottom:471.987000px;}
.y21e{bottom:472.146000px;}
.yf8{bottom:473.139000px;}
.y1d4{bottom:475.575000px;}
.y25a{bottom:477.093000px;}
.y201{bottom:482.026500px;}
.y2a0{bottom:482.748000px;}
.y12d{bottom:483.706500px;}
.y71{bottom:484.272000px;}
.y1b1{bottom:487.870500px;}
.ycf{bottom:489.274500px;}
.y151{bottom:489.522000px;}
.y22{bottom:489.565500px;}
.ya2{bottom:489.769500px;}
.y46{bottom:489.921000px;}
.y21d{bottom:490.078500px;}
.y259{bottom:490.543500px;}
.yf7{bottom:491.071500px;}
.y1d3{bottom:493.507500px;}
.y12c{bottom:495.663000px;}
.y29f{bottom:496.197000px;}
.y172{bottom:498.300758px;}
.y200{bottom:499.959000px;}
.y70{bottom:502.204500px;}
.y258{bottom:504.070500px;}
.y1b0{bottom:505.803000px;}
.yce{bottom:507.208500px;}
.y150{bottom:507.454500px;}
.y21{bottom:507.498000px;}
.y12b{bottom:507.618000px;}
.ya1{bottom:507.702000px;}
.y45{bottom:507.853500px;}
.y21c{bottom:508.012500px;}
.y29e{bottom:510.544500px;}
.y1d2{bottom:511.440000px;}
.y257{bottom:517.519500px;}
.yf6{bottom:517.741500px;}
.y1ff{bottom:517.893000px;}
.y12a{bottom:519.573000px;}
.y6f{bottom:520.137000px;}
.y1af{bottom:523.735500px;}
.y29d{bottom:523.993500px;}
.ycd{bottom:525.141000px;}
.y14f{bottom:525.387000px;}
.ya0{bottom:525.634500px;}
.y44{bottom:525.786000px;}
.y21b{bottom:525.945000px;}
.y1d1{bottom:529.372500px;}
.y20{bottom:529.783500px;}
.y256{bottom:530.970000px;}
.y129{bottom:531.528000px;}
.y1fe{bottom:535.825500px;}
.y29c{bottom:537.442500px;}
.y1ae{bottom:541.668000px;}
.ycc{bottom:543.073500px;}
.y14e{bottom:543.319500px;}
.y128{bottom:543.483000px;}
.y9f{bottom:543.567000px;}
.y43{bottom:543.718500px;}
.y21a{bottom:543.877500px;}
.y255{bottom:544.497000px;}
.y6e{bottom:545.827500px;}
.y1d0{bottom:547.305000px;}
.y29b{bottom:551.788500px;}
.y1fd{bottom:553.758000px;}
.y127{bottom:555.438000px;}
.yf5{bottom:555.549000px;}
.y1f{bottom:555.673500px;}
.y254{bottom:557.946000px;}
.y1ad{bottom:559.600500px;}
.ycb{bottom:561.006000px;}
.y14d{bottom:561.252000px;}
.y9e{bottom:561.499500px;}
.y42{bottom:561.651000px;}
.y219{bottom:561.810000px;}
.y1cf{bottom:565.237500px;}
.y29a{bottom:565.239000px;}
.y126{bottom:567.393000px;}
.y1e{bottom:570.618000px;}
.y253{bottom:571.474500px;}
.y1fc{bottom:571.690500px;}
.yf4{bottom:573.481500px;}
.y1ac{bottom:577.533000px;}
.y6d{bottom:578.169000px;}
.y299{bottom:578.688000px;}
.yca{bottom:578.938500px;}
.y14c{bottom:579.184500px;}
.y125{bottom:579.348000px;}
.y9d{bottom:579.433500px;}
.y41{bottom:579.583500px;}
.y218{bottom:579.742500px;}
.y1ce{bottom:583.171500px;}
.y252{bottom:584.923500px;}
.y1d{bottom:585.562500px;}
.y1fb{bottom:589.623000px;}
.y124{bottom:591.304500px;}
.yf3{bottom:591.414000px;}
.y298{bottom:592.138500px;}
.y1ab{bottom:595.467000px;}
.y6c{bottom:596.101500px;}
.yc9{bottom:596.871000px;}
.y14b{bottom:597.346500px;}
.y9c{bottom:597.366000px;}
.y40{bottom:597.517500px;}
.y217{bottom:597.675000px;}
.y251{bottom:598.372500px;}
.y1c{bottom:600.505500px;}
.y1cd{bottom:601.104000px;}
.y123{bottom:603.259500px;}
.y297{bottom:606.484500px;}
.y1fa{bottom:607.555500px;}
.yf2{bottom:609.346500px;}
.y250{bottom:611.901000px;}
.y1aa{bottom:613.399500px;}
.y6b{bottom:614.034000px;}
.yc8{bottom:614.805000px;}
.y122{bottom:615.214500px;}
.y14a{bottom:615.279000px;}
.y9b{bottom:615.298500px;}
.y1b{bottom:615.450000px;}
.y2d7{bottom:615.451500px;}
.y216{bottom:615.609000px;}
.y1cc{bottom:619.036500px;}
.y296{bottom:619.933500px;}
.y24f{bottom:625.350000px;}
.y1f9{bottom:625.489500px;}
.y121{bottom:627.169500px;}
.yf1{bottom:627.280500px;}
.y2d6{bottom:628.900500px;}
.y1a{bottom:630.394500px;}
.y1a9{bottom:631.332000px;}
.y6a{bottom:631.966500px;}
.yc7{bottom:632.737500px;}
.y149{bottom:633.211500px;}
.y9a{bottom:633.231000px;}
.y3f{bottom:633.382500px;}
.y215{bottom:633.541500px;}
.y1cb{bottom:636.969000px;}
.y24e{bottom:638.799000px;}
.y120{bottom:639.124500px;}
.y2d5{bottom:642.349500px;}
.y1f8{bottom:643.422000px;}
.yf0{bottom:645.213000px;}
.y19{bottom:645.337500px;}
.y295{bottom:646.833000px;}
.y1a8{bottom:649.264500px;}
.y69{bottom:649.899000px;}
.yc6{bottom:650.670000px;}
.y11f{bottom:651.079500px;}
.y148{bottom:651.144000px;}
.y99{bottom:651.163500px;}
.y3e{bottom:651.315000px;}
.y214{bottom:651.474000px;}
.y24d{bottom:652.249500px;}
.y1ca{bottom:654.901500px;}
.y2d4{bottom:655.800000px;}
.y18{bottom:660.282000px;}
.y294{bottom:661.179000px;}
.y1f7{bottom:661.354500px;}
.y11e{bottom:663.034500px;}
.yef{bottom:663.145500px;}
.y24c{bottom:665.776500px;}
.y1a7{bottom:667.197000px;}
.y68{bottom:667.833000px;}
.yc5{bottom:668.602500px;}
.y147{bottom:669.076500px;}
.y98{bottom:669.096000px;}
.y3d{bottom:669.247500px;}
.y2d3{bottom:669.249000px;}
.y213{bottom:669.406500px;}
.y1c9{bottom:672.835500px;}
.y293{bottom:674.628000px;}
.y11d{bottom:674.989500px;}
.y17{bottom:675.226500px;}
.y24b{bottom:679.225500px;}
.y1f6{bottom:680.196000px;}
.yee{bottom:682.230000px;}
.y2d2{bottom:682.698000px;}
.y1a6{bottom:685.129500px;}
.y67{bottom:685.765500px;}
.yc4{bottom:686.535000px;}
.y11c{bottom:686.944500px;}
.y146{bottom:687.009000px;}
.y97{bottom:687.030000px;}
.y3c{bottom:687.181500px;}
.y212{bottom:687.339000px;}
.y292{bottom:688.078500px;}
.y16{bottom:690.169500px;}
.y1c8{bottom:690.768000px;}
.y24a{bottom:692.676000px;}
.y2d1{bottom:696.148500px;}
.y1f5{bottom:698.128500px;}
.y11b{bottom:698.901000px;}
.yed{bottom:700.162500px;}
.y291{bottom:702.424500px;}
.y1a5{bottom:703.063500px;}
.y66{bottom:703.698000px;}
.yc3{bottom:704.467500px;}
.y145{bottom:704.943000px;}
.y96{bottom:704.962500px;}
.y15{bottom:705.114000px;}
.y211{bottom:705.271500px;}
.y249{bottom:706.203000px;}
.y1c7{bottom:708.700500px;}
.y2d0{bottom:709.597500px;}
.y11a{bottom:710.856000px;}
.y290{bottom:715.873500px;}
.y1f4{bottom:716.061000px;}
.yec{bottom:718.095000px;}
.y248{bottom:719.652000px;}
.y14{bottom:720.058500px;}
.y1a4{bottom:720.996000px;}
.y65{bottom:721.630500px;}
.yc2{bottom:722.724000px;}
.y144{bottom:722.875500px;}
.y95{bottom:722.895000px;}
.y3b{bottom:723.046500px;}
.y2cf{bottom:723.048000px;}
.y210{bottom:723.205500px;}
.y1c6{bottom:726.633000px;}
.y28f{bottom:730.219500px;}
.y119{bottom:730.911000px;}
.y247{bottom:733.102500px;}
.y1f3{bottom:733.993500px;}
.y13{bottom:735.001500px;}
.yeb{bottom:736.027500px;}
.y2ce{bottom:736.497000px;}
.y1a3{bottom:738.928500px;}
.y64{bottom:740.071500px;}
.yc1{bottom:740.656500px;}
.y143{bottom:740.808000px;}
.y94{bottom:740.827500px;}
.y3a{bottom:740.979000px;}
.y20f{bottom:741.138000px;}
.y28e{bottom:743.670000px;}
.y1c5{bottom:744.565500px;}
.y246{bottom:746.629500px;}
.y12{bottom:749.946000px;}
.yea{bottom:753.960000px;}
.y1a2{bottom:756.861000px;}
.y28d{bottom:757.119000px;}
.y63{bottom:758.004000px;}
.yc0{bottom:758.589000px;}
.y142{bottom:758.740500px;}
.y39{bottom:758.911500px;}
.y245{bottom:760.078500px;}
.y1c4{bottom:762.498000px;}
.y93{bottom:763.392000px;}
.y2cd{bottom:763.396500px;}
.y11{bottom:764.889000px;}
.y118{bottom:770.008500px;}
.y28c{bottom:770.568000px;}
.ye9{bottom:771.894000px;}
.y244{bottom:773.529000px;}
.y1a1{bottom:774.793500px;}
.y62{bottom:775.938000px;}
.ybf{bottom:776.521500px;}
.y141{bottom:776.673000px;}
.y38{bottom:776.844000px;}
.y2cc{bottom:776.845500px;}
.y10{bottom:779.833500px;}
.y28b{bottom:784.915500px;}
.y92{bottom:785.956500px;}
.y243{bottom:786.978000px;}
.y171{bottom:787.525500px;}
.y117{bottom:787.941000px;}
.ye8{bottom:789.826500px;}
.y2cb{bottom:790.294500px;}
.y61{bottom:793.870500px;}
.ybe{bottom:794.455500px;}
.y140{bottom:794.607000px;}
.yf{bottom:794.778000px;}
.y1a0{bottom:797.751000px;}
.y28a{bottom:798.364500px;}
.y242{bottom:800.427000px;}
.y20e{bottom:802.638000px;}
.y2ca{bottom:803.745000px;}
.y170{bottom:805.459500px;}
.ye7{bottom:807.759000px;}
.y105{bottom:809.460244px;}
.y60{bottom:811.803000px;}
.y289{bottom:811.813500px;}
.ybd{bottom:812.388000px;}
.y13f{bottom:812.539500px;}
.y91{bottom:813.520500px;}
.y241{bottom:813.955500px;}
.y2c9{bottom:817.194000px;}
.y1c3{bottom:818.553000px;}
.y16f{bottom:823.392000px;}
.y20d{bottom:826.101000px;}
.y288{bottom:826.159500px;}
.y240{bottom:827.404500px;}
.y5f{bottom:829.735500px;}
.ybc{bottom:830.320500px;}
.y13e{bottom:830.472000px;}
.y2c8{bottom:830.643000px;}
.y90{bottom:831.453000px;}
.y1c2{bottom:834.081000px;}
.ye6{bottom:835.323000px;}
.y287{bottom:839.610000px;}
.y23f{bottom:840.853500px;}
.y2c7{bottom:844.093500px;}
.ye5{bottom:845.574000px;}
.y5e{bottom:847.668000px;}
.ybb{bottom:848.253000px;}
.y13d{bottom:848.404500px;}
.y19f{bottom:849.100500px;}
.y8f{bottom:849.385500px;}
.y20c{bottom:849.562500px;}
.y159{bottom:850.409258px;}
.y286{bottom:853.059000px;}
.y23e{bottom:854.304000px;}
.y2c6{bottom:857.542500px;}
.ye{bottom:861.822000px;}
.y5d{bottom:865.600500px;}
.y1c1{bottom:866.076000px;}
.yba{bottom:866.185500px;}
.y13c{bottom:866.337000px;}
.y19e{bottom:867.034500px;}
.y285{bottom:867.405000px;}
.y23d{bottom:867.753000px;}
.y2c5{bottom:870.993000px;}
.y20b{bottom:873.024000px;}
.yd{bottom:880.315500px;}
.y284{bottom:880.855500px;}
.y23c{bottom:881.280000px;}
.y1c0{bottom:881.602500px;}
.y5c{bottom:883.534500px;}
.yb9{bottom:884.118000px;}
.y13b{bottom:884.269500px;}
.y2c4{bottom:884.442000px;}
.y19d{bottom:884.967000px;}
.y283{bottom:894.304500px;}
.y23b{bottom:894.730500px;}
.y20a{bottom:896.487000px;}
.y2c3{bottom:897.891000px;}
.yc{bottom:898.809000px;}
.ye4{bottom:900.349500px;}
.y5b{bottom:901.467000px;}
.yb8{bottom:902.052000px;}
.y19c{bottom:902.899500px;}
.y8e{bottom:903.136500px;}
.y282{bottom:907.753500px;}
.y23a{bottom:908.179500px;}
.y13a{bottom:908.280000px;}
.y2c2{bottom:911.341500px;}
.y1bf{bottom:913.597500px;}
.yb{bottom:917.301000px;}
.y7{bottom:918.042000px;}
.ye3{bottom:918.282000px;}
.y5a{bottom:919.399500px;}
.y209{bottom:919.948500px;}
.yb7{bottom:919.984500px;}
.y19b{bottom:920.832000px;}
.y239{bottom:921.706500px;}
.y281{bottom:922.101000px;}
.y2c1{bottom:924.790500px;}
.y8d{bottom:926.598000px;}
.y1be{bottom:929.124000px;}
.y238{bottom:935.157000px;}
.y280{bottom:935.550000px;}
.ya{bottom:935.794500px;}
.ye2{bottom:936.214500px;}
.y6{bottom:936.534000px;}
.yb6{bottom:937.917000px;}
.y139{bottom:938.239500px;}
.y19a{bottom:938.764500px;}
.y208{bottom:943.410000px;}
.y237{bottom:948.606000px;}
.y27f{bottom:948.999000px;}
.y8c{bottom:950.061000px;}
.y2c0{bottom:951.690000px;}
.ye1{bottom:954.147000px;}
.y9{bottom:954.288000px;}
.y5{bottom:955.027500px;}
.yb5{bottom:955.849500px;}
.y138{bottom:956.172000px;}
.y199{bottom:956.698500px;}
.y1bd{bottom:961.119000px;}
.y236{bottom:962.133000px;}
.y27e{bottom:962.449500px;}
.y2bf{bottom:965.139000px;}
.y207{bottom:966.873000px;}
.y59{bottom:972.327000px;}
.y8{bottom:973.003500px;}
.y4{bottom:973.521000px;}
.y8b{bottom:973.522500px;}
.yb4{bottom:974.104500px;}
.y235{bottom:975.583500px;}
.y27d{bottom:976.795500px;}
.y2be{bottom:978.589500px;}
.y198{bottom:982.252500px;}
.ye0{bottom:984.409500px;}
.y1bc{bottom:985.179000px;}
.y234{bottom:989.032500px;}
.y58{bottom:989.811000px;}
.y27c{bottom:990.244500px;}
.ydd{bottom:991.791000px;}
.yb3{bottom:992.038500px;}
.y3{bottom:992.235000px;}
.y8a{bottom:996.984000px;}
.y206{bottom:998.142000px;}
.y189{bottom:1000.000318px;}
.ydc{bottom:1002.042000px;}
.y233{bottom:1002.559500px;}
.y27b{bottom:1003.695000px;}
.y2bd{bottom:1005.487500px;}
.y57{bottom:1007.295000px;}
.yb2{bottom:1009.971000px;}
.y1bb{bottom:1015.350000px;}
.y232{bottom:1016.010000px;}
.ydf{bottom:1016.238000px;}
.y27a{bottom:1018.041000px;}
.y2bc{bottom:1018.938000px;}
.yde{bottom:1020.721500px;}
.y89{bottom:1021.044000px;}
.y56{bottom:1024.780500px;}
.yb1{bottom:1027.903500px;}
.y231{bottom:1029.459000px;}
.y279{bottom:1031.490000px;}
.y2bb{bottom:1032.387000px;}
.y1ba{bottom:1033.284000px;}
.y2{bottom:1039.309500px;}
.y55{bottom:1042.264500px;}
.y278{bottom:1044.939000px;}
.yb0{bottom:1045.836000px;}
.y88{bottom:1051.216500px;}
.y230{bottom:1052.491500px;}
.y277{bottom:1058.389500px;}
.y2ba{bottom:1059.286500px;}
.y54{bottom:1059.748500px;}
.yaf{bottom:1063.768500px;}
.y87{bottom:1069.149000px;}
.y276{bottom:1072.735500px;}
.y53{bottom:1077.831000px;}
.y1{bottom:1081.152000px;}
.yae{bottom:1081.701000px;}
.y275{bottom:1086.184500px;}
.y2b9{bottom:1086.186000px;}
.y86{bottom:1087.081500px;}
.y22f{bottom:1099.633500px;}
.yad{bottom:1099.635000px;}
.y52{bottom:1105.014000px;}
.h16{height:2.391024px;}
.h26{height:11.285546px;}
.h27{height:13.542655px;}
.h22{height:14.806869px;}
.h21{height:18.480754px;}
.h24{height:21.007938px;}
.h1d{height:21.092400px;}
.h1a{height:21.131460px;}
.h1b{height:22.850100px;}
.h2d{height:24.101952px;}
.h1c{height:24.564276px;}
.hd{height:24.675533px;}
.h2c{height:26.779947px;}
.h1f{height:28.787846px;}
.h15{height:29.833916px;}
.h17{height:31.382100px;}
.h23{height:31.511907px;}
.he{height:32.900573px;}
.h2f{height:33.140573px;}
.hb{height:33.187496px;}
.ha{height:33.426599px;}
.h2e{height:35.865450px;}
.h9{height:37.336090px;}
.h8{height:37.605082px;}
.h2a{height:39.796118px;}
.hf{height:40.826735px;}
.h4{height:41.125613px;}
.h5{height:41.419613px;}
.h3{height:41.425613px;}
.h1e{height:41.484266px;}
.h30{height:43.328573px;}
.h10{height:44.831700px;}
.h2{height:45.238339px;}
.h7{height:45.568339px;}
.h6{height:46.326090px;}
.hc{height:50.477846px;}
.h11{height:51.529916px;}
.h29{height:53.072100px;}
.h28{height:53.078100px;}
.h2b{height:64.640573px;}
.h14{height:85.265700px;}
.h18{height:85.835700px;}
.h12{height:86.679024px;}
.h1{height:98.701718px;}
.h25{height:109.830296px;}
.h13{height:127.683024px;}
.h20{height:256.279252px;}
.h19{height:302.723833px;}
.h0{height:1188.000000px;}
.w4{width:140.363905px;}
.w5{width:335.884943px;}
.w3{width:337.250920px;}
.w2{width:367.007795px;}
.w1{width:378.004080px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x69{left:5.538883px;}
.x68{left:8.410751px;}
.x67{left:10.421059px;}
.x66{left:12.431367px;}
.x47{left:14.852323px;}
.x74{left:17.767492px;}
.x5b{left:19.295303px;}
.x6c{left:21.046973px;}
.x5e{left:23.336227px;}
.x73{left:25.263748px;}
.x65{left:29.949765px;}
.x56{left:31.004499px;}
.x72{left:33.441481px;}
.x55{left:35.324486px;}
.x54{left:38.841643px;}
.x5d{left:42.537050px;}
.x57{left:46.831706px;}
.x46{left:56.008022px;}
.x6d{left:62.689066px;}
.x6a{left:66.996869px;}
.x23{left:73.446000px;}
.x53{left:74.930731px;}
.x51{left:76.698000px;}
.x1{left:79.618500px;}
.x8{left:81.820500px;}
.xb{left:86.259000px;}
.x22{left:88.390500px;}
.x4c{left:89.773718px;}
.x4{left:91.488000px;}
.x4a{left:94.249622px;}
.x5a{left:96.323806px;}
.x7f{left:100.834500px;}
.x5c{left:105.403016px;}
.x62{left:108.691093px;}
.x2a{left:110.125500px;}
.x59{left:113.466537px;}
.x28{left:114.835500px;}
.x6{left:116.497500px;}
.x2d{left:117.549000px;}
.x27{left:119.982000px;}
.x29{left:122.194500px;}
.x2c{left:123.408000px;}
.x2b{left:125.062500px;}
.x7b{left:126.711000px;}
.x79{left:132.348000px;}
.x78{left:135.001500px;}
.x3{left:136.939500px;}
.x7a{left:138.325500px;}
.x80{left:148.471500px;}
.x9{left:160.096500px;}
.x45{left:161.697686px;}
.x7{left:167.127000px;}
.x48{left:170.768534px;}
.x83{left:179.205000px;}
.x49{left:180.553622px;}
.x6f{left:181.837500px;}
.x4d{left:187.499606px;}
.x63{left:190.725709px;}
.x70{left:191.940000px;}
.x5{left:201.789000px;}
.x24{left:203.430000px;}
.x61{left:208.131281px;}
.x77{left:210.753000px;}
.x2e{left:217.320000px;}
.xa{left:227.566500px;}
.x5f{left:232.408998px;}
.x2{left:248.184000px;}
.x15{left:255.024000px;}
.x84{left:261.987000px;}
.x60{left:263.835546px;}
.x10{left:265.956000px;}
.x4e{left:269.065814px;}
.x4f{left:272.351318px;}
.x75{left:282.863251px;}
.x36{left:296.518500px;}
.x4b{left:307.218134px;}
.x19{left:312.513000px;}
.x1a{left:320.830500px;}
.x50{left:324.687254px;}
.x44{left:327.859670px;}
.x58{left:331.300887px;}
.xc{left:342.721500px;}
.x12{left:364.122000px;}
.x81{left:372.027000px;}
.xe{left:373.789500px;}
.xd{left:397.419000px;}
.x16{left:420.900000px;}
.x82{left:435.090000px;}
.x13{left:442.398000px;}
.x26{left:467.967000px;}
.x17{left:474.295500px;}
.x25{left:482.910000px;}
.xf{left:484.090500px;}
.x71{left:489.026688px;}
.x7d{left:495.355500px;}
.x64{left:497.605259px;}
.x37{left:503.028000px;}
.x42{left:504.238500px;}
.x14{left:509.869500px;}
.x34{left:533.266500px;}
.x18{left:543.679500px;}
.x32{left:546.805500px;}
.x31{left:552.454500px;}
.x30{left:554.110500px;}
.x33{left:558.438000px;}
.x6b{left:561.153000px;}
.x2f{left:562.521000px;}
.x38{left:574.503000px;}
.x3a{left:585.220500px;}
.x3b{left:586.333500px;}
.x39{left:592.710000px;}
.x76{left:602.641500px;}
.x7e{left:605.931000px;}
.x35{left:609.270000px;}
.x11{left:612.174000px;}
.x52{left:614.052000px;}
.x3d{left:615.544500px;}
.x3c{left:623.035500px;}
.x1f{left:646.423500px;}
.x1d{left:660.298500px;}
.x7c{left:663.934500px;}
.x21{left:665.611500px;}
.x1b{left:674.292000px;}
.x43{left:715.800000px;}
.x3e{left:720.288000px;}
.x40{left:732.822000px;}
.x6e{left:737.763000px;}
.x3f{left:740.313000px;}
.x41{left:756.898500px;}
.x1c{left:791.874000px;}
.x1e{left:808.198500px;}
.x20{left:821.236500px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.v7{vertical-align:-7.973333pt;}
.v9{vertical-align:-5.312000pt;}
.va{vertical-align:-1.601499pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.523712pt;}
.vd{vertical-align:9.269333pt;}
.vb{vertical-align:15.002667pt;}
.v1{vertical-align:19.280000pt;}
.vc{vertical-align:28.213333pt;}
.v5{vertical-align:35.946667pt;}
.v3{vertical-align:72.325333pt;}
.v4{vertical-align:74.922667pt;}
.v6{vertical-align:111.370667pt;}
.ls52{letter-spacing:-0.008247pt;}
.ls4f{letter-spacing:-0.006769pt;}
.ls2{letter-spacing:0.000000pt;}
.ls45{letter-spacing:0.000425pt;}
.ls5a{letter-spacing:0.000479pt;}
.ls59{letter-spacing:0.000882pt;}
.ls1c{letter-spacing:0.001014pt;}
.ls38{letter-spacing:0.001253pt;}
.ls1f{letter-spacing:0.001995pt;}
.ls9{letter-spacing:0.002079pt;}
.ls5b{letter-spacing:0.002717pt;}
.lse{letter-spacing:0.002906pt;}
.ls39{letter-spacing:0.003590pt;}
.ls6{letter-spacing:0.003723pt;}
.ls0{letter-spacing:0.003733pt;}
.ls3a{letter-spacing:0.004777pt;}
.ls51{letter-spacing:0.012354pt;}
.ls50{letter-spacing:0.028827pt;}
.ls47{letter-spacing:0.082363pt;}
.ls5c{letter-spacing:0.741348pt;}
.ls4c{letter-spacing:1.182400pt;}
.ls4d{letter-spacing:1.184479pt;}
.ls4b{letter-spacing:1.189812pt;}
.ls11{letter-spacing:1.905799pt;}
.ls1d{letter-spacing:2.151919pt;}
.ls13{letter-spacing:2.332772pt;}
.ls19{letter-spacing:2.338105pt;}
.ls1{letter-spacing:2.635446pt;}
.ls5d{letter-spacing:2.655711pt;}
.ls49{letter-spacing:2.655879pt;}
.ls40{letter-spacing:2.655884pt;}
.ls4a{letter-spacing:2.656501pt;}
.ls4{letter-spacing:2.656693pt;}
.ls21{letter-spacing:2.657014pt;}
.ls3{letter-spacing:2.657067pt;}
.ls53{letter-spacing:3.273049pt;}
.ls55{letter-spacing:3.278383pt;}
.ls1e{letter-spacing:4.167686pt;}
.ls48{letter-spacing:4.315150pt;}
.ls24{letter-spacing:4.802585pt;}
.ls20{letter-spacing:4.807919pt;}
.ls5{letter-spacing:5.718992pt;}
.ls14{letter-spacing:6.376239pt;}
.ls17{letter-spacing:8.852352pt;}
.ls35{letter-spacing:8.855412pt;}
.ls15{letter-spacing:8.856161pt;}
.ls12{letter-spacing:8.856239pt;}
.lsf{letter-spacing:8.857685pt;}
.ls22{letter-spacing:11.805573pt;}
.ls2a{letter-spacing:11.808479pt;}
.ls5e{letter-spacing:11.879925pt;}
.ls3d{letter-spacing:12.093542pt;}
.ls43{letter-spacing:12.094256pt;}
.ls3c{letter-spacing:12.097014pt;}
.ls44{letter-spacing:12.098876pt;}
.ls2f{letter-spacing:12.791452pt;}
.ls30{letter-spacing:12.792239pt;}
.lsd{letter-spacing:13.021019pt;}
.ls3b{letter-spacing:13.022181pt;}
.ls4e{letter-spacing:13.285812pt;}
.ls58{letter-spacing:13.529067pt;}
.ls29{letter-spacing:14.209995pt;}
.ls3f{letter-spacing:14.746551pt;}
.ls3e{letter-spacing:14.751884pt;}
.ls18{letter-spacing:15.517573pt;}
.ls28{letter-spacing:16.013361pt;}
.ls2b{letter-spacing:17.423016pt;}
.ls36{letter-spacing:18.595733pt;}
.ls37{letter-spacing:19.144563pt;}
.ls23{letter-spacing:19.568479pt;}
.lsb{letter-spacing:20.503132pt;}
.lsa{letter-spacing:20.521067pt;}
.lsc{letter-spacing:20.930105pt;}
.ls1a{letter-spacing:22.375132pt;}
.ls7{letter-spacing:22.781573pt;}
.ls1b{letter-spacing:22.802105pt;}
.ls31{letter-spacing:23.795662pt;}
.ls16{letter-spacing:24.424239pt;}
.ls2e{letter-spacing:24.493573pt;}
.ls26{letter-spacing:25.138509pt;}
.ls32{letter-spacing:25.997573pt;}
.ls2c{letter-spacing:26.014329pt;}
.ls42{letter-spacing:26.386876pt;}
.ls41{letter-spacing:26.387590pt;}
.ls8{letter-spacing:27.002591pt;}
.ls27{letter-spacing:27.267892pt;}
.ls33{letter-spacing:30.628349pt;}
.ls34{letter-spacing:33.440818pt;}
.ls10{letter-spacing:37.453494pt;}
.ls25{letter-spacing:62.712239pt;}
.ls2d{letter-spacing:67.016239pt;}
.ls56{letter-spacing:88.765713pt;}
.ls54{letter-spacing:88.766659pt;}
.ls57{letter-spacing:89.833325pt;}
.ls46{letter-spacing:375.052649pt;}
.ws169{word-spacing:-45.163900pt;}
.ws9b{word-spacing:-34.611401pt;}
.wse5{word-spacing:-30.271871pt;}
.wsb3{word-spacing:-25.791179pt;}
.wsb6{word-spacing:-25.738045pt;}
.wsb8{word-spacing:-23.825226pt;}
.ws134{word-spacing:-15.699310pt;}
.ws137{word-spacing:-13.901977pt;}
.ws3{word-spacing:-13.283467pt;}
.ws17{word-spacing:-13.262246pt;}
.ws130{word-spacing:-12.003310pt;}
.ws68{word-spacing:-10.626800pt;}
.wsb5{word-spacing:-9.601290pt;}
.ws11a{word-spacing:-9.335821pt;}
.ws11b{word-spacing:-9.319349pt;}
.ws11c{word-spacing:-9.311156pt;}
.wse3{word-spacing:-9.298400pt;}
.ws147{word-spacing:-0.956410pt;}
.ws146{word-spacing:-0.850142pt;}
.ws4a{word-spacing:-0.797008pt;}
.ws115{word-spacing:-0.743874pt;}
.ws18c{word-spacing:-0.722622pt;}
.ws98{word-spacing:-0.690740pt;}
.wscc{word-spacing:-0.511253pt;}
.wscd{word-spacing:-0.478205pt;}
.ws1ba{word-spacing:-0.467579pt;}
.ws12a{word-spacing:-0.425071pt;}
.ws12c{word-spacing:-0.421593pt;}
.ws13{word-spacing:-0.334746pt;}
.ws18d{word-spacing:-0.297550pt;}
.ws132{word-spacing:-0.265669pt;}
.ws15d{word-spacing:-0.159402pt;}
.ws1c7{word-spacing:-0.085014pt;}
.ws96{word-spacing:-0.053134pt;}
.ws5{word-spacing:-0.047821pt;}
.wsc4{word-spacing:-0.037194pt;}
.ws4e{word-spacing:0.000000pt;}
.ws94{word-spacing:0.053134pt;}
.ws6b{word-spacing:0.106268pt;}
.wsff{word-spacing:0.159402pt;}
.ws71{word-spacing:0.212535pt;}
.ws7b{word-spacing:0.265669pt;}
.wsf{word-spacing:0.286925pt;}
.ws79{word-spacing:0.318803pt;}
.ws19a{word-spacing:0.340058pt;}
.ws107{word-spacing:0.371937pt;}
.wsda{word-spacing:0.425071pt;}
.ws1e9{word-spacing:0.425072pt;}
.ws75{word-spacing:0.531339pt;}
.ws1c8{word-spacing:0.552594pt;}
.ws18{word-spacing:0.690740pt;}
.ws99{word-spacing:0.743874pt;}
.ws111{word-spacing:0.797008pt;}
.ws116{word-spacing:0.850142pt;}
.ws89{word-spacing:0.903276pt;}
.wsc8{word-spacing:0.925645pt;}
.ws69{word-spacing:0.956410pt;}
.ws173{word-spacing:1.009543pt;}
.ws10c{word-spacing:1.062677pt;}
.wse{word-spacing:1.099878pt;}
.ws114{word-spacing:1.115811pt;}
.ws1c0{word-spacing:1.147694pt;}
.ws1bd{word-spacing:1.190202pt;}
.ws1d2{word-spacing:1.232709pt;}
.ws1d3{word-spacing:1.275216pt;}
.ws6d{word-spacing:1.328347pt;}
.ws1ce{word-spacing:1.360230pt;}
.ws35{word-spacing:1.381481pt;}
.ws103{word-spacing:1.434614pt;}
.ws1e8{word-spacing:1.487752pt;}
.ws105{word-spacing:1.540882pt;}
.wsfb{word-spacing:1.700284pt;}
.ws1b8{word-spacing:1.700288pt;}
.ws87{word-spacing:1.753418pt;}
.ws3e{word-spacing:1.806551pt;}
.ws13a{word-spacing:1.859685pt;}
.ws157{word-spacing:1.912819pt;}
.ws106{word-spacing:1.965953pt;}
.ws172{word-spacing:2.072221pt;}
.ws20{word-spacing:2.125355pt;}
.ws74{word-spacing:2.178489pt;}
.ws1ab{word-spacing:2.210374pt;}
.ws2a{word-spacing:2.231622pt;}
.wsbb{word-spacing:2.236563pt;}
.ws65{word-spacing:2.284756pt;}
.ws19{word-spacing:2.337890pt;}
.ws5a{word-spacing:2.444158pt;}
.ws104{word-spacing:2.497292pt;}
.ws1ad{word-spacing:2.507925pt;}
.ws14e{word-spacing:2.550426pt;}
.ws1e0{word-spacing:2.550432pt;}
.wsce{word-spacing:2.656693pt;}
.wsc7{word-spacing:2.709827pt;}
.ws38{word-spacing:2.816095pt;}
.ws1b1{word-spacing:2.847982pt;}
.ws11d{word-spacing:2.869229pt;}
.ws122{word-spacing:2.886334pt;}
.ws1a3{word-spacing:2.932997pt;}
.ws13e{word-spacing:2.975497pt;}
.wsa7{word-spacing:3.028630pt;}
.wsb1{word-spacing:3.081764pt;}
.ws1cc{word-spacing:3.103026pt;}
.ws1cb{word-spacing:3.145533pt;}
.ws8a{word-spacing:3.188032pt;}
.ws1b2{word-spacing:3.188040pt;}
.ws2f{word-spacing:3.241166pt;}
.ws18e{word-spacing:3.273054pt;}
.ws1d0{word-spacing:3.315562pt;}
.ws25{word-spacing:3.347434pt;}
.wsa8{word-spacing:3.400567pt;}
.ws15e{word-spacing:3.453701pt;}
.ws1a4{word-spacing:3.485590pt;}
.ws17e{word-spacing:3.506835pt;}
.wse0{word-spacing:3.559969pt;}
.ws1dd{word-spacing:3.570605pt;}
.wsd4{word-spacing:3.613103pt;}
.ws1de{word-spacing:3.613112pt;}
.ws119{word-spacing:3.666237pt;}
.wsec{word-spacing:3.716979pt;}
.wseb{word-spacing:3.718133pt;}
.wsee{word-spacing:3.719213pt;}
.wse9{word-spacing:3.719360pt;}
.wsdb{word-spacing:3.719371pt;}
.wsf2{word-spacing:3.720310pt;}
.wsea{word-spacing:3.721838pt;}
.wsf3{word-spacing:3.722662pt;}
.ws88{word-spacing:3.825638pt;}
.ws1c1{word-spacing:3.825648pt;}
.ws19d{word-spacing:3.868155pt;}
.ws1ec{word-spacing:3.873039pt;}
.wsdc{word-spacing:3.878772pt;}
.ws1d6{word-spacing:3.910662pt;}
.ws153{word-spacing:3.931906pt;}
.ws178{word-spacing:4.038174pt;}
.ws29{word-spacing:4.091308pt;}
.ws1a5{word-spacing:4.248498pt;}
.ws1f3{word-spacing:4.249579pt;}
.ws198{word-spacing:4.249663pt;}
.ws185{word-spacing:4.250265pt;}
.wsa6{word-spacing:4.250709pt;}
.ws7f{word-spacing:4.250720pt;}
.ws4b{word-spacing:4.303843pt;}
.ws8c{word-spacing:4.356977pt;}
.ws110{word-spacing:4.410111pt;}
.ws78{word-spacing:4.463245pt;}
.ws6{word-spacing:4.495155pt;}
.ws1ed{word-spacing:4.505763pt;}
.wsad{word-spacing:4.516379pt;}
.ws177{word-spacing:4.569513pt;}
.ws151{word-spacing:4.675780pt;}
.ws1bc{word-spacing:4.675792pt;}
.ws1c3{word-spacing:4.718299pt;}
.ws9e{word-spacing:4.782048pt;}
.wsfd{word-spacing:4.888316pt;}
.ws19c{word-spacing:4.888328pt;}
.wsc1{word-spacing:4.941450pt;}
.ws1ca{word-spacing:4.973342pt;}
.ws3a{word-spacing:4.994583pt;}
.ws9a{word-spacing:5.047717pt;}
.ws8f{word-spacing:5.100851pt;}
.ws193{word-spacing:5.100864pt;}
.ws1ea{word-spacing:5.143371pt;}
.wsbf{word-spacing:5.153985pt;}
.ws1dc{word-spacing:5.185878pt;}
.ws179{word-spacing:5.207119pt;}
.ws1d7{word-spacing:5.270893pt;}
.ws4{word-spacing:5.307178pt;}
.ws7c{word-spacing:5.308510pt;}
.ws2{word-spacing:5.313387pt;}
.ws1a6{word-spacing:5.313400pt;}
.wsb2{word-spacing:5.313897pt;}
.ws7d{word-spacing:5.314400pt;}
.ws1a7{word-spacing:5.355907pt;}
.ws183{word-spacing:5.398414pt;}
.wsaf{word-spacing:5.419654pt;}
.ws158{word-spacing:5.472788pt;}
.ws32{word-spacing:5.525922pt;}
.ws1bb{word-spacing:5.525936pt;}
.ws3d{word-spacing:5.579056pt;}
.ws1eb{word-spacing:5.610950pt;}
.ws10a{word-spacing:5.632190pt;}
.wse4{word-spacing:5.653427pt;}
.ws17a{word-spacing:5.685324pt;}
.wse8{word-spacing:5.690621pt;}
.ws1e7{word-spacing:5.695965pt;}
.ws49{word-spacing:5.738458pt;}
.ws19b{word-spacing:5.738472pt;}
.ws82{word-spacing:5.791591pt;}
.ws1be{word-spacing:5.823486pt;}
.ws7a{word-spacing:5.844725pt;}
.ws1{word-spacing:5.844747pt;}
.ws18f{word-spacing:5.865994pt;}
.ws148{word-spacing:5.897859pt;}
.ws1c9{word-spacing:5.908501pt;}
.ws36{word-spacing:5.950993pt;}
.ws15{word-spacing:5.977600pt;}
.ws1f5{word-spacing:5.993515pt;}
.wsa4{word-spacing:6.004127pt;}
.ws9f{word-spacing:6.057261pt;}
.ws14b{word-spacing:6.110395pt;}
.ws1b9{word-spacing:6.121037pt;}
.ws100{word-spacing:6.163529pt;}
.ws1d8{word-spacing:6.163544pt;}
.ws136{word-spacing:6.269796pt;}
.ws1d1{word-spacing:6.291066pt;}
.ws15b{word-spacing:6.322930pt;}
.ws194{word-spacing:6.333573pt;}
.ws8e{word-spacing:6.376064pt;}
.ws1ee{word-spacing:6.376080pt;}
.ws10{word-spacing:6.407987pt;}
.ws1d{word-spacing:6.429198pt;}
.ws39{word-spacing:6.535466pt;}
.ws1c5{word-spacing:6.631123pt;}
.wse1{word-spacing:6.641497pt;}
.ws2b{word-spacing:6.694867pt;}
.ws86{word-spacing:6.748001pt;}
.ws190{word-spacing:6.758645pt;}
.ws1d9{word-spacing:6.777715pt;}
.ws1da{word-spacing:6.801152pt;}
.ws1a{word-spacing:6.854269pt;}
.wsb0{word-spacing:6.907403pt;}
.ws1af{word-spacing:6.914206pt;}
.ws1b0{word-spacing:6.928674pt;}
.ws6e{word-spacing:6.960537pt;}
.ws93{word-spacing:7.013670pt;}
.ws1e3{word-spacing:7.056195pt;}
.ws113{word-spacing:7.066804pt;}
.ws41{word-spacing:7.119938pt;}
.wsbc{word-spacing:7.173072pt;}
.wsbd{word-spacing:7.185897pt;}
.wse7{word-spacing:7.212334pt;}
.ws70{word-spacing:7.226206pt;}
.ws180{word-spacing:7.226224pt;}
.ws6c{word-spacing:7.279340pt;}
.ws12f{word-spacing:7.332474pt;}
.ws77{word-spacing:7.385607pt;}
.wsa3{word-spacing:7.438741pt;}
.ws1a2{word-spacing:7.438760pt;}
.ws14f{word-spacing:7.491875pt;}
.ws1cf{word-spacing:7.523774pt;}
.wsfc{word-spacing:7.545009pt;}
.ws6a{word-spacing:7.603254pt;}
.ws45{word-spacing:7.651277pt;}
.ws1ac{word-spacing:7.651296pt;}
.ws126{word-spacing:7.704411pt;}
.ws171{word-spacing:7.757545pt;}
.ws1bf{word-spacing:7.778818pt;}
.ws18b{word-spacing:7.821325pt;}
.ws192{word-spacing:7.906339pt;}
.ws109{word-spacing:7.916946pt;}
.ws1e1{word-spacing:7.948846pt;}
.wse2{word-spacing:7.966598pt;}
.wsfa{word-spacing:7.971665pt;}
.ws1e6{word-spacing:7.990529pt;}
.ws18a{word-spacing:7.991354pt;}
.wsa1{word-spacing:8.023214pt;}
.ws83{word-spacing:8.076348pt;}
.ws19e{word-spacing:8.118875pt;}
.ws1f2{word-spacing:8.161382pt;}
.ws197{word-spacing:8.203890pt;}
.ws8b{word-spacing:8.235749pt;}
.ws5d{word-spacing:8.288883pt;}
.ws159{word-spacing:8.342017pt;}
.ws8{word-spacing:8.368640pt;}
.ws76{word-spacing:8.395151pt;}
.ws1c6{word-spacing:8.458933pt;}
.ws60{word-spacing:8.501419pt;}
.ws1e{word-spacing:8.660820pt;}
.ws12{word-spacing:8.703386pt;}
.ws6f{word-spacing:8.713954pt;}
.ws1f1{word-spacing:8.713976pt;}
.ws19f{word-spacing:8.756483pt;}
.ws150{word-spacing:8.767088pt;}
.wsb7{word-spacing:8.820222pt;}
.ws191{word-spacing:8.841498pt;}
.ws1f{word-spacing:8.926490pt;}
.ws120{word-spacing:8.979623pt;}
.wsa5{word-spacing:9.032757pt;}
.ws144{word-spacing:9.085891pt;}
.wse6{word-spacing:9.101347pt;}
.wsf6{word-spacing:9.112432pt;}
.ws181{word-spacing:9.224062pt;}
.ws117{word-spacing:9.245293pt;}
.ws182{word-spacing:9.266570pt;}
.ws14{word-spacing:9.277235pt;}
.ws17c{word-spacing:9.298427pt;}
.wsdd{word-spacing:9.351561pt;}
.ws4c{word-spacing:9.404694pt;}
.ws1c4{word-spacing:9.436598pt;}
.wsa9{word-spacing:9.457828pt;}
.ws95{word-spacing:9.510962pt;}
.ws1f0{word-spacing:9.521613pt;}
.ws97{word-spacing:9.564096pt;}
.ws1e4{word-spacing:9.606627pt;}
.ws2e{word-spacing:9.617230pt;}
.ws33{word-spacing:9.670364pt;}
.wsac{word-spacing:9.723498pt;}
.ws1a9{word-spacing:9.734149pt;}
.ws22{word-spacing:9.829765pt;}
.wsae{word-spacing:9.882899pt;}
.ws10d{word-spacing:9.936033pt;}
.ws11e{word-spacing:9.989167pt;}
.wsc6{word-spacing:10.148569pt;}
.ws186{word-spacing:10.159221pt;}
.wsc5{word-spacing:10.179830pt;}
.wsa{word-spacing:10.185830pt;}
.ws1a1{word-spacing:10.195421pt;}
.ws44{word-spacing:10.201702pt;}
.ws196{word-spacing:10.201728pt;}
.wsd6{word-spacing:10.254836pt;}
.wsa2{word-spacing:10.307970pt;}
.ws1f4{word-spacing:10.329250pt;}
.ws72{word-spacing:10.361104pt;}
.ws42{word-spacing:10.573639pt;}
.ws1d4{word-spacing:10.584293pt;}
.ws51{word-spacing:10.625573pt;}
.ws81{word-spacing:10.626773pt;}
.ws141{word-spacing:10.630906pt;}
.ws92{word-spacing:10.679907pt;}
.ws67{word-spacing:10.786175pt;}
.ws62{word-spacing:10.839309pt;}
.ws17d{word-spacing:10.892443pt;}
.ws73{word-spacing:10.945577pt;}
.wsc2{word-spacing:11.051844pt;}
.ws14c{word-spacing:11.104978pt;}
.wsb9{word-spacing:11.139830pt;}
.wsba{word-spacing:11.158112pt;}
.wsca{word-spacing:11.209164pt;}
.wscb{word-spacing:11.211246pt;}
.ws129{word-spacing:11.264380pt;}
.ws195{word-spacing:11.306915pt;}
.wsd5{word-spacing:11.317514pt;}
.ws154{word-spacing:11.423781pt;}
.ws43{word-spacing:11.476915pt;}
.ws125{word-spacing:11.530049pt;}
.ws170{word-spacing:11.583183pt;}
.ws1b{word-spacing:11.636317pt;}
.ws1a8{word-spacing:11.646973pt;}
.ws176{word-spacing:11.689451pt;}
.ws184{word-spacing:11.689480pt;}
.wsc9{word-spacing:11.742585pt;}
.ws1cd{word-spacing:11.774494pt;}
.ws12e{word-spacing:11.795718pt;}
.ws9d{word-spacing:11.848852pt;}
.ws24{word-spacing:11.901986pt;}
.ws9{word-spacing:11.907379pt;}
.ws145{word-spacing:11.955120pt;}
.ws26{word-spacing:12.008254pt;}
.wsef{word-spacing:12.050726pt;}
.ws3b{word-spacing:12.061388pt;}
.ws34{word-spacing:12.114522pt;}
.ws1df{word-spacing:12.114552pt;}
.ws85{word-spacing:12.327057pt;}
.ws199{word-spacing:12.327088pt;}
.ws17b{word-spacing:12.380191pt;}
.ws175{word-spacing:12.486459pt;}
.ws13c{word-spacing:12.539593pt;}
.ws8d{word-spacing:12.592726pt;}
.wsd7{word-spacing:12.645860pt;}
.wscf{word-spacing:12.698994pt;}
.wsd0{word-spacing:12.752128pt;}
.ws0{word-spacing:12.752160pt;}
.ws12b{word-spacing:12.808548pt;}
.ws1b7{word-spacing:12.837174pt;}
.ws123{word-spacing:12.911530pt;}
.ws5f{word-spacing:12.964663pt;}
.wsf9{word-spacing:12.975296pt;}
.wsf0{word-spacing:12.980629pt;}
.ws10e{word-spacing:13.017797pt;}
.wsde{word-spacing:13.070931pt;}
.ws188{word-spacing:13.092218pt;}
.ws187{word-spacing:13.134725pt;}
.wsc{word-spacing:13.198541pt;}
.ws1e2{word-spacing:13.219739pt;}
.ws40{word-spacing:13.230333pt;}
.ws131{word-spacing:13.241626pt;}
.ws4d{word-spacing:13.283467pt;}
.ws27{word-spacing:13.336601pt;}
.ws3c{word-spacing:13.442868pt;}
.ws112{word-spacing:13.496002pt;}
.ws31{word-spacing:13.549136pt;}
.ws133{word-spacing:13.708538pt;}
.ws90{word-spacing:13.761671pt;}
.ws14d{word-spacing:13.867939pt;}
.ws13b{word-spacing:13.921073pt;}
.ws1c2{word-spacing:13.942362pt;}
.wsbe{word-spacing:13.974207pt;}
.ws189{word-spacing:14.069883pt;}
.ws124{word-spacing:14.080475pt;}
.ws2d{word-spacing:14.186742pt;}
.ws128{word-spacing:14.293010pt;}
.ws3f{word-spacing:14.346144pt;}
.ws37{word-spacing:14.399278pt;}
.ws2c{word-spacing:14.558679pt;}
.ws5e{word-spacing:14.611813pt;}
.ws160{word-spacing:14.664947pt;}
.wsb4{word-spacing:14.693702pt;}
.wsc3{word-spacing:14.718081pt;}
.ws149{word-spacing:14.771215pt;}
.ws1d5{word-spacing:14.792506pt;}
.ws14a{word-spacing:14.877483pt;}
.ws91{word-spacing:14.930617pt;}
.ws10f{word-spacing:15.036884pt;}
.ws11{word-spacing:15.063552pt;}
.ws66{word-spacing:15.143152pt;}
.ws21{word-spacing:15.196286pt;}
.ws15a{word-spacing:15.249420pt;}
.ws1aa{word-spacing:15.345099pt;}
.ws15c{word-spacing:15.408821pt;}
.ws80{word-spacing:15.461955pt;}
.ws1c{word-spacing:15.515089pt;}
.wsfe{word-spacing:15.621357pt;}
.wsd8{word-spacing:15.674491pt;}
.ws108{word-spacing:15.780758pt;}
.ws46{word-spacing:15.833892pt;}
.ws16{word-spacing:15.940160pt;}
.ws1b3{word-spacing:15.940200pt;}
.ws23{word-spacing:15.993294pt;}
.ws63{word-spacing:16.152695pt;}
.wsd{word-spacing:16.163430pt;}
.ws1ef{word-spacing:16.195243pt;}
.ws61{word-spacing:16.205829pt;}
.ws1a0{word-spacing:16.280258pt;}
.ws135{word-spacing:16.308466pt;}
.ws10b{word-spacing:16.312097pt;}
.ws1ae{word-spacing:16.322765pt;}
.ws127{word-spacing:16.418365pt;}
.ws138{word-spacing:16.524633pt;}
.ws48{word-spacing:16.577766pt;}
.ws1db{word-spacing:16.577808pt;}
.ws17f{word-spacing:16.684034pt;}
.ws13d{word-spacing:16.737168pt;}
.ws1e5{word-spacing:17.002880pt;}
.ws5c{word-spacing:17.268507pt;}
.wsd2{word-spacing:17.321641pt;}
.wsd1{word-spacing:17.345897pt;}
.ws15f{word-spacing:17.534176pt;}
.ws84{word-spacing:17.587310pt;}
.wsab{word-spacing:17.693578pt;}
.ws101{word-spacing:17.746711pt;}
.ws155{word-spacing:17.959247pt;}
.ws5b{word-spacing:18.065515pt;}
.ws64{word-spacing:18.118649pt;}
.ws30{word-spacing:18.171782pt;}
.ws11f{word-spacing:18.224916pt;}
.ws12d{word-spacing:18.809389pt;}
.ws156{word-spacing:19.021924pt;}
.wsc0{word-spacing:19.287594pt;}
.ws174{word-spacing:19.393861pt;}
.wsb{word-spacing:19.463066pt;}
.ws162{word-spacing:19.500129pt;}
.ws139{word-spacing:19.519133pt;}
.wsd9{word-spacing:19.553263pt;}
.ws47{word-spacing:19.872066pt;}
.ws7{word-spacing:19.893453pt;}
.ws28{word-spacing:19.978334pt;}
.ws163{word-spacing:20.297137pt;}
.wsa0{word-spacing:20.403405pt;}
.wsaa{word-spacing:20.722208pt;}
.ws9c{word-spacing:20.938969pt;}
.wsdf{word-spacing:21.739399pt;}
.ws1b6{word-spacing:24.739190pt;}
.ws152{word-spacing:28.204093pt;}
.wsd3{word-spacing:30.577505pt;}
.ws102{word-spacing:30.960733pt;}
.ws1b5{word-spacing:33.026868pt;}
.ws121{word-spacing:34.106395pt;}
.ws1b4{word-spacing:37.151293pt;}
.ws4f{word-spacing:53.134000pt;}
.ws161{word-spacing:54.781017pt;}
.ws118{word-spacing:56.697521pt;}
.wsf8{word-spacing:61.102332pt;}
.wsed{word-spacing:61.102598pt;}
.ws168{word-spacing:63.760800pt;}
.ws50{word-spacing:64.270886pt;}
.ws140{word-spacing:65.509929pt;}
.ws55{word-spacing:74.364465pt;}
.ws165{word-spacing:74.387600pt;}
.ws166{word-spacing:85.014400pt;}
.ws7e{word-spacing:90.072757pt;}
.ws59{word-spacing:90.134407pt;}
.ws53{word-spacing:106.645169pt;}
.ws57{word-spacing:113.323867pt;}
.wsf7{word-spacing:114.238332pt;}
.wsf1{word-spacing:114.238598pt;}
.ws56{word-spacing:116.851291pt;}
.ws16f{word-spacing:118.131571pt;}
.ws142{word-spacing:118.442502pt;}
.ws58{word-spacing:121.588797pt;}
.ws143{word-spacing:122.756797pt;}
.ws54{word-spacing:123.953200pt;}
.ws52{word-spacing:134.577467pt;}
.ws16d{word-spacing:146.484175pt;}
.ws16e{word-spacing:148.845141pt;}
.ws16a{word-spacing:164.165099pt;}
.wsf5{word-spacing:167.368998pt;}
.wsf4{word-spacing:167.374332pt;}
.ws16b{word-spacing:168.886764pt;}
.ws164{word-spacing:178.325294pt;}
.ws167{word-spacing:183.063067pt;}
.ws16c{word-spacing:190.140631pt;}
.ws13f{word-spacing:240.718274pt;}
._9{margin-left:-5.950993pt;}
._5{margin-left:-4.399514pt;}
._0{margin-left:-3.188040pt;}
._1{margin-left:-1.912824pt;}
._4{margin-left:-1.009539pt;}
._1b{width:1.536694pt;}
._2{width:2.737066pt;}
._3{width:4.431259pt;}
._1e{width:5.738458pt;}
._20{width:6.906253pt;}
._21{width:7.873128pt;}
._6{width:12.151785pt;}
._10{width:13.708538pt;}
._35{width:16.522743pt;}
._22{width:18.543724pt;}
._1a{width:19.500134pt;}
._1d{width:20.991124pt;}
._7{width:22.847577pt;}
._32{width:24.271611pt;}
._2b{width:25.643680pt;}
._11{width:26.728351pt;}
._8{width:28.373485pt;}
._2c{width:31.189585pt;}
._36{width:37.063723pt;}
._29{width:39.904932pt;}
._34{width:41.869509pt;}
._2a{width:43.648998pt;}
._33{width:47.820600pt;}
._2e{width:53.726697pt;}
._2f{width:61.060408pt;}
._23{width:64.291862pt;}
._14{width:69.286736pt;}
._24{width:70.464115pt;}
._26{width:73.049209pt;}
._2d{width:81.090806pt;}
._25{width:89.959835pt;}
._1c{width:94.977852pt;}
._a{width:99.551862pt;}
._b{width:102.166571pt;}
._1f{width:103.279564pt;}
._30{width:125.906326pt;}
._31{width:129.434424pt;}
._19{width:140.486296pt;}
._13{width:143.376786pt;}
._15{width:144.606682pt;}
._e{width:166.777867pt;}
._12{width:167.775918pt;}
._f{width:176.489867pt;}
._d{width:187.119467pt;}
._c{width:188.026133pt;}
._16{width:204.267547pt;}
._18{width:230.006459pt;}
._17{width:269.011281pt;}
._27{width:357.660375pt;}
._28{width:924.490184pt;}
.fs10{font-size:13.614784pt;}
.fs11{font-size:16.337741pt;}
.fsc{font-size:18.078526pt;}
.fsb{font-size:22.564176pt;}
.fsa{font-size:26.566933pt;}
.fs9{font-size:27.426816pt;}
.fsf{font-size:27.454260pt;}
.fs7{font-size:27.477606pt;}
.fs13{font-size:29.076385pt;}
.fs8{font-size:29.712384pt;}
.fs6{font-size:31.880533pt;}
.fs12{font-size:32.307094pt;}
.fs5{font-size:37.193600pt;}
.fsd{font-size:41.181390pt;}
.fse{font-size:41.236299pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y197{bottom:0.478758pt;}
.y1de{bottom:4.234683pt;}
.y18a{bottom:5.073748pt;}
.y18b{bottom:7.881797pt;}
.y1ea{bottom:10.292263pt;}
.y1df{bottom:10.898022pt;}
.y15a{bottom:11.785490pt;}
.y116{bottom:13.735941pt;}
.y180{bottom:15.298732pt;}
.y15b{bottom:16.475033pt;}
.y165{bottom:16.542997pt;}
.y18c{bottom:16.816499pt;}
.y17b{bottom:17.620905pt;}
.y175{bottom:19.062253pt;}
.y115{bottom:21.989381pt;}
.y10d{bottom:24.490808pt;}
.y18d{bottom:25.496264pt;}
.y1e0{bottom:33.916826pt;}
.y18e{bottom:34.175689pt;}
.y196{bottom:38.260124pt;}
.y15c{bottom:41.417962pt;}
.y18f{bottom:42.855114pt;}
.y17a{bottom:48.163769pt;}
.y17d{bottom:48.358237pt;}
.y190{bottom:51.534538pt;}
.y1e1{bottom:56.936438pt;}
.y191{bottom:60.469240pt;}
.y114{bottom:63.763427pt;}
.y10c{bottom:65.641613pt;}
.y15d{bottom:66.326966pt;}
.y192{bottom:69.148665pt;}
.y113{bottom:72.016867pt;}
.y178{bottom:73.598997pt;}
.y10b{bottom:74.529933pt;}
.y193{bottom:77.828090pt;}
.y1e2{bottom:79.955243pt;}
.y194{bottom:86.507515pt;}
.y15e{bottom:91.269838pt;}
.y195{bottom:95.186940pt;}
.y1e9{bottom:95.704951pt;}
.y17f{bottom:99.120020pt;}
.y37{bottom:100.740000pt;}
.y2b8{bottom:100.741333pt;}
.y164{bottom:101.396532pt;}
.y1e3{bottom:102.974047pt;}
.y174{bottom:104.159021pt;}
.y85{bottom:104.490667pt;}
.y112{bottom:112.686221pt;}
.y274{bottom:112.696000pt;}
.y15f{bottom:116.178786pt;}
.y36{bottom:116.680000pt;}
.ydb{bottom:116.681333pt;}
.y84{bottom:117.641333pt;}
.y111{bottom:121.574541pt;}
.y273{bottom:124.650667pt;}
.y1e4{bottom:125.992852pt;}
.y177{bottom:131.487449pt;}
.y51{bottom:132.620000pt;}
.y35{bottom:132.621333pt;}
.y110{bottom:134.743011pt;}
.y272{bottom:136.674667pt;}
.y2b7{bottom:137.404000pt;}
.y17e{bottom:137.910602pt;}
.y179{bottom:139.271876pt;}
.y1f2{bottom:140.531044pt;}
.y160{bottom:141.121715pt;}
.y83{bottom:143.088000pt;}
.y22e{bottom:144.109333pt;}
.y10f{bottom:148.218339pt;}
.y50{bottom:148.560000pt;}
.y34{bottom:148.561333pt;}
.y271{bottom:148.630667pt;}
.y2b6{bottom:149.358667pt;}
.y1e5{bottom:149.617414pt;}
.y1f1{bottom:150.223172pt;}
.y82{bottom:159.028000pt;}
.y1f0{bottom:159.915300pt;}
.y106{bottom:160.429197pt;}
.y270{bottom:160.585333pt;}
.y16e{bottom:161.103244pt;}
.y2b5{bottom:161.313333pt;}
.y17c{bottom:161.904481pt;}
.y33{bottom:164.501333pt;}
.y161{bottom:166.030662pt;}
.y16d{bottom:168.205522pt;}
.y1ef{bottom:169.607428pt;}
.y1e6{bottom:172.030460pt;}
.y26f{bottom:172.609333pt;}
.y2b4{bottom:174.065333pt;}
.y81{bottom:174.968000pt;}
.y16c{bottom:175.273818pt;}
.y1ee{bottom:178.693799pt;}
.y22d{bottom:179.365333pt;}
.y32{bottom:180.441333pt;}
.y16b{bottom:182.376097pt;}
.y26e{bottom:184.565333pt;}
.y10e{bottom:185.813816pt;}
.y2b3{bottom:186.021333pt;}
.y1ed{bottom:188.385927pt;}
.y16a{bottom:189.444393pt;}
.y173{bottom:190.090855pt;}
.y80{bottom:190.908000pt;}
.y162{bottom:190.973591pt;}
.y1e7{bottom:195.049265pt;}
.y22c{bottom:195.305333pt;}
.y31{bottom:196.381333pt;}
.y26d{bottom:196.520000pt;}
.y169{bottom:196.546671pt;}
.y2b2{bottom:197.976000pt;}
.y1ec{bottom:198.078055pt;}
.y168{bottom:203.614967pt;}
.y7f{bottom:206.848000pt;}
.y1eb{bottom:207.770183pt;}
.y26c{bottom:208.474667pt;}
.y2b1{bottom:209.932000pt;}
.y167{bottom:210.717245pt;}
.y22b{bottom:211.245333pt;}
.y30{bottom:212.321333pt;}
.yda{bottom:212.322667pt;}
.y10a{bottom:214.991843pt;}
.y109{bottom:215.843640pt;}
.y163{bottom:215.882539pt;}
.y166{bottom:215.984372pt;}
.y1e8{bottom:218.068069pt;}
.y176{bottom:218.763398pt;}
.y26b{bottom:220.500000pt;}
.y2b0{bottom:222.684000pt;}
.y7e{bottom:222.788000pt;}
.y22a{bottom:227.185333pt;}
.y4f{bottom:228.261333pt;}
.y2f{bottom:228.262667pt;}
.y104{bottom:229.285333pt;}
.y26a{bottom:232.454667pt;}
.y2af{bottom:234.638667pt;}
.y7d{bottom:238.729333pt;}
.y229{bottom:243.125333pt;}
.y2e{bottom:244.202667pt;}
.y269{bottom:244.409333pt;}
.yd9{bottom:244.489333pt;}
.y103{bottom:245.225333pt;}
.y2ae{bottom:246.593333pt;}
.y108{bottom:251.169421pt;}
.y107{bottom:251.931277pt;}
.y7c{bottom:254.669333pt;}
.y268{bottom:256.434667pt;}
.y228{bottom:259.065333pt;}
.y2ad{bottom:259.346667pt;}
.y2d{bottom:260.142667pt;}
.yd8{bottom:260.429333pt;}
.y102{bottom:261.166667pt;}
.y1dd{bottom:266.070667pt;}
.y267{bottom:268.389333pt;}
.y7b{bottom:270.609333pt;}
.y2ac{bottom:271.301333pt;}
.y227{bottom:275.006667pt;}
.yac{bottom:276.016000pt;}
.y2c{bottom:276.082667pt;}
.yd7{bottom:276.369333pt;}
.y188{bottom:276.564000pt;}
.y101{bottom:277.106667pt;}
.y266{bottom:280.344000pt;}
.y2ab{bottom:283.256000pt;}
.y137{bottom:284.926667pt;}
.y7a{bottom:286.549333pt;}
.y226{bottom:290.946667pt;}
.yab{bottom:291.956000pt;}
.y2b{bottom:292.022667pt;}
.yd6{bottom:292.310667pt;}
.y265{bottom:292.369333pt;}
.y187{bottom:292.504000pt;}
.y100{bottom:293.046667pt;}
.y1dc{bottom:295.210667pt;}
.y2aa{bottom:295.212000pt;}
.y1b9{bottom:296.489333pt;}
.y79{bottom:302.941333pt;}
.y264{bottom:304.324000pt;}
.y225{bottom:306.886667pt;}
.y2a9{bottom:307.166667pt;}
.y2a{bottom:307.648000pt;}
.yaa{bottom:307.896000pt;}
.y4e{bottom:307.962667pt;}
.y158{bottom:307.964000pt;}
.y186{bottom:308.445333pt;}
.yff{bottom:308.986667pt;}
.y1db{bottom:311.150667pt;}
.yd5{bottom:316.021333pt;}
.y263{bottom:316.278667pt;}
.y78{bottom:318.881333pt;}
.y2a8{bottom:319.918667pt;}
.y1b8{bottom:322.080000pt;}
.y224{bottom:322.826667pt;}
.y29{bottom:323.588000pt;}
.ya9{bottom:323.836000pt;}
.y4d{bottom:323.902667pt;}
.y157{bottom:323.904000pt;}
.y185{bottom:324.385333pt;}
.yfe{bottom:324.926667pt;}
.yd4{bottom:325.133333pt;}
.y1da{bottom:327.092000pt;}
.y262{bottom:328.304000pt;}
.y2a7{bottom:331.874667pt;}
.y136{bottom:334.321333pt;}
.y77{bottom:334.821333pt;}
.y1b7{bottom:338.021333pt;}
.y223{bottom:338.766667pt;}
.y28{bottom:339.528000pt;}
.ya8{bottom:339.776000pt;}
.y4c{bottom:339.844000pt;}
.y261{bottom:340.258667pt;}
.y184{bottom:340.325333pt;}
.yfd{bottom:340.866667pt;}
.y1d9{bottom:343.032000pt;}
.y2a6{bottom:343.829333pt;}
.y156{bottom:344.738667pt;}
.y135{bottom:344.948000pt;}
.y205{bottom:348.874667pt;}
.y76{bottom:350.762667pt;}
.y260{bottom:352.213333pt;}
.y1b6{bottom:353.961333pt;}
.y222{bottom:354.706667pt;}
.y27{bottom:355.468000pt;}
.y134{bottom:355.574667pt;}
.ya7{bottom:355.716000pt;}
.y4b{bottom:355.784000pt;}
.yfc{bottom:356.808000pt;}
.y1d8{bottom:358.972000pt;}
.y25f{bottom:364.169333pt;}
.y133{bottom:366.201333pt;}
.y75{bottom:366.702667pt;}
.y2a5{bottom:368.536000pt;}
.y1b5{bottom:369.901333pt;}
.yd3{bottom:370.864000pt;}
.y155{bottom:371.369333pt;}
.y26{bottom:371.409333pt;}
.ya6{bottom:371.657333pt;}
.y4a{bottom:371.724000pt;}
.y221{bottom:371.865333pt;}
.yfb{bottom:372.748000pt;}
.y1d7{bottom:374.912000pt;}
.y25e{bottom:376.124000pt;}
.y132{bottom:376.828000pt;}
.y2a4{bottom:380.492000pt;}
.y204{bottom:380.648000pt;}
.y74{bottom:382.642667pt;}
.y1b4{bottom:385.841333pt;}
.yd2{bottom:386.804000pt;}
.y183{bottom:387.038667pt;}
.y154{bottom:387.309333pt;}
.y25{bottom:387.349333pt;}
.y131{bottom:387.454667pt;}
.ya5{bottom:387.597333pt;}
.y49{bottom:387.664000pt;}
.y220{bottom:387.805333pt;}
.y25d{bottom:388.148000pt;}
.yfa{bottom:388.688000pt;}
.y1d6{bottom:390.852000pt;}
.y2a3{bottom:392.446667pt;}
.y203{bottom:396.588000pt;}
.y130{bottom:398.081333pt;}
.y73{bottom:398.582667pt;}
.y25c{bottom:400.104000pt;}
.y1b3{bottom:401.781333pt;}
.yd1{bottom:402.744000pt;}
.y182{bottom:402.978667pt;}
.y153{bottom:403.249333pt;}
.y24{bottom:403.289333pt;}
.ya4{bottom:403.537333pt;}
.y48{bottom:403.604000pt;}
.y21f{bottom:403.745333pt;}
.y2a2{bottom:404.402667pt;}
.yf9{bottom:404.628000pt;}
.y1d5{bottom:406.792000pt;}
.y12f{bottom:408.708000pt;}
.y25b{bottom:412.128000pt;}
.y202{bottom:412.528000pt;}
.y72{bottom:414.522667pt;}
.y2a1{bottom:417.154667pt;}
.y1b2{bottom:417.721333pt;}
.yd0{bottom:418.684000pt;}
.y181{bottom:418.918667pt;}
.y152{bottom:419.189333pt;}
.y23{bottom:419.229333pt;}
.y12e{bottom:419.334667pt;}
.ya3{bottom:419.477333pt;}
.y47{bottom:419.544000pt;}
.y21e{bottom:419.685333pt;}
.yf8{bottom:420.568000pt;}
.y1d4{bottom:422.733333pt;}
.y25a{bottom:424.082667pt;}
.y201{bottom:428.468000pt;}
.y2a0{bottom:429.109333pt;}
.y12d{bottom:429.961333pt;}
.y71{bottom:430.464000pt;}
.y1b1{bottom:433.662667pt;}
.ycf{bottom:434.910667pt;}
.y151{bottom:435.130667pt;}
.y22{bottom:435.169333pt;}
.ya2{bottom:435.350667pt;}
.y46{bottom:435.485333pt;}
.y21d{bottom:435.625333pt;}
.y259{bottom:436.038667pt;}
.yf7{bottom:436.508000pt;}
.y1d3{bottom:438.673333pt;}
.y12c{bottom:440.589333pt;}
.y29f{bottom:441.064000pt;}
.y172{bottom:442.934007pt;}
.y200{bottom:444.408000pt;}
.y70{bottom:446.404000pt;}
.y258{bottom:448.062667pt;}
.y1b0{bottom:449.602667pt;}
.yce{bottom:450.852000pt;}
.y150{bottom:451.070667pt;}
.y21{bottom:451.109333pt;}
.y12b{bottom:451.216000pt;}
.ya1{bottom:451.290667pt;}
.y45{bottom:451.425333pt;}
.y21c{bottom:451.566667pt;}
.y29e{bottom:453.817333pt;}
.y1d2{bottom:454.613333pt;}
.y257{bottom:460.017333pt;}
.yf6{bottom:460.214667pt;}
.y1ff{bottom:460.349333pt;}
.y12a{bottom:461.842667pt;}
.y6f{bottom:462.344000pt;}
.y1af{bottom:465.542667pt;}
.y29d{bottom:465.772000pt;}
.ycd{bottom:466.792000pt;}
.y14f{bottom:467.010667pt;}
.ya0{bottom:467.230667pt;}
.y44{bottom:467.365333pt;}
.y21b{bottom:467.506667pt;}
.y1d1{bottom:470.553333pt;}
.y20{bottom:470.918667pt;}
.y256{bottom:471.973333pt;}
.y129{bottom:472.469333pt;}
.y1fe{bottom:476.289333pt;}
.y29c{bottom:477.726667pt;}
.y1ae{bottom:481.482667pt;}
.ycc{bottom:482.732000pt;}
.y14e{bottom:482.950667pt;}
.y128{bottom:483.096000pt;}
.y9f{bottom:483.170667pt;}
.y43{bottom:483.305333pt;}
.y21a{bottom:483.446667pt;}
.y255{bottom:483.997333pt;}
.y6e{bottom:485.180000pt;}
.y1d0{bottom:486.493333pt;}
.y29b{bottom:490.478667pt;}
.y1fd{bottom:492.229333pt;}
.y127{bottom:493.722667pt;}
.yf5{bottom:493.821333pt;}
.y1f{bottom:493.932000pt;}
.y254{bottom:495.952000pt;}
.y1ad{bottom:497.422667pt;}
.ycb{bottom:498.672000pt;}
.y14d{bottom:498.890667pt;}
.y9e{bottom:499.110667pt;}
.y42{bottom:499.245333pt;}
.y219{bottom:499.386667pt;}
.y1cf{bottom:502.433333pt;}
.y29a{bottom:502.434667pt;}
.y126{bottom:504.349333pt;}
.y1e{bottom:507.216000pt;}
.y253{bottom:507.977333pt;}
.y1fc{bottom:508.169333pt;}
.yf4{bottom:509.761333pt;}
.y1ac{bottom:513.362667pt;}
.y6d{bottom:513.928000pt;}
.y299{bottom:514.389333pt;}
.yca{bottom:514.612000pt;}
.y14c{bottom:514.830667pt;}
.y125{bottom:514.976000pt;}
.y9d{bottom:515.052000pt;}
.y41{bottom:515.185333pt;}
.y218{bottom:515.326667pt;}
.y1ce{bottom:518.374667pt;}
.y252{bottom:519.932000pt;}
.y1d{bottom:520.500000pt;}
.y1fb{bottom:524.109333pt;}
.y124{bottom:525.604000pt;}
.yf3{bottom:525.701333pt;}
.y298{bottom:526.345333pt;}
.y1ab{bottom:529.304000pt;}
.y6c{bottom:529.868000pt;}
.yc9{bottom:530.552000pt;}
.y14b{bottom:530.974667pt;}
.y9c{bottom:530.992000pt;}
.y40{bottom:531.126667pt;}
.y217{bottom:531.266667pt;}
.y251{bottom:531.886667pt;}
.y1c{bottom:533.782667pt;}
.y1cd{bottom:534.314667pt;}
.y123{bottom:536.230667pt;}
.y297{bottom:539.097333pt;}
.y1fa{bottom:540.049333pt;}
.yf2{bottom:541.641333pt;}
.y250{bottom:543.912000pt;}
.y1aa{bottom:545.244000pt;}
.y6b{bottom:545.808000pt;}
.yc8{bottom:546.493333pt;}
.y122{bottom:546.857333pt;}
.y14a{bottom:546.914667pt;}
.y9b{bottom:546.932000pt;}
.y1b{bottom:547.066667pt;}
.y2d7{bottom:547.068000pt;}
.y216{bottom:547.208000pt;}
.y1cc{bottom:550.254667pt;}
.y296{bottom:551.052000pt;}
.y24f{bottom:555.866667pt;}
.y1f9{bottom:555.990667pt;}
.y121{bottom:557.484000pt;}
.yf1{bottom:557.582667pt;}
.y2d6{bottom:559.022667pt;}
.y1a{bottom:560.350667pt;}
.y1a9{bottom:561.184000pt;}
.y6a{bottom:561.748000pt;}
.yc7{bottom:562.433333pt;}
.y149{bottom:562.854667pt;}
.y9a{bottom:562.872000pt;}
.y3f{bottom:563.006667pt;}
.y215{bottom:563.148000pt;}
.y1cb{bottom:566.194667pt;}
.y24e{bottom:567.821333pt;}
.y120{bottom:568.110667pt;}
.y2d5{bottom:570.977333pt;}
.y1f8{bottom:571.930667pt;}
.yf0{bottom:573.522667pt;}
.y19{bottom:573.633333pt;}
.y295{bottom:574.962667pt;}
.y1a8{bottom:577.124000pt;}
.y69{bottom:577.688000pt;}
.yc6{bottom:578.373333pt;}
.y11f{bottom:578.737333pt;}
.y148{bottom:578.794667pt;}
.y99{bottom:578.812000pt;}
.y3e{bottom:578.946667pt;}
.y214{bottom:579.088000pt;}
.y24d{bottom:579.777333pt;}
.y1ca{bottom:582.134667pt;}
.y2d4{bottom:582.933333pt;}
.y18{bottom:586.917333pt;}
.y294{bottom:587.714667pt;}
.y1f7{bottom:587.870667pt;}
.y11e{bottom:589.364000pt;}
.yef{bottom:589.462667pt;}
.y24c{bottom:591.801333pt;}
.y1a7{bottom:593.064000pt;}
.y68{bottom:593.629333pt;}
.yc5{bottom:594.313333pt;}
.y147{bottom:594.734667pt;}
.y98{bottom:594.752000pt;}
.y3d{bottom:594.886667pt;}
.y2d3{bottom:594.888000pt;}
.y213{bottom:595.028000pt;}
.y1c9{bottom:598.076000pt;}
.y293{bottom:599.669333pt;}
.y11d{bottom:599.990667pt;}
.y17{bottom:600.201333pt;}
.y24b{bottom:603.756000pt;}
.y1f6{bottom:604.618667pt;}
.yee{bottom:606.426667pt;}
.y2d2{bottom:606.842667pt;}
.y1a6{bottom:609.004000pt;}
.y67{bottom:609.569333pt;}
.yc4{bottom:610.253333pt;}
.y11c{bottom:610.617333pt;}
.y146{bottom:610.674667pt;}
.y97{bottom:610.693333pt;}
.y3c{bottom:610.828000pt;}
.y212{bottom:610.968000pt;}
.y292{bottom:611.625333pt;}
.y16{bottom:613.484000pt;}
.y1c8{bottom:614.016000pt;}
.y24a{bottom:615.712000pt;}
.y2d1{bottom:618.798667pt;}
.y1f5{bottom:620.558667pt;}
.y11b{bottom:621.245333pt;}
.yed{bottom:622.366667pt;}
.y291{bottom:624.377333pt;}
.y1a5{bottom:624.945333pt;}
.y66{bottom:625.509333pt;}
.yc3{bottom:626.193333pt;}
.y145{bottom:626.616000pt;}
.y96{bottom:626.633333pt;}
.y15{bottom:626.768000pt;}
.y211{bottom:626.908000pt;}
.y249{bottom:627.736000pt;}
.y1c7{bottom:629.956000pt;}
.y2d0{bottom:630.753333pt;}
.y11a{bottom:631.872000pt;}
.y290{bottom:636.332000pt;}
.y1f4{bottom:636.498667pt;}
.yec{bottom:638.306667pt;}
.y248{bottom:639.690667pt;}
.y14{bottom:640.052000pt;}
.y1a4{bottom:640.885333pt;}
.y65{bottom:641.449333pt;}
.yc2{bottom:642.421333pt;}
.y144{bottom:642.556000pt;}
.y95{bottom:642.573333pt;}
.y3b{bottom:642.708000pt;}
.y2cf{bottom:642.709333pt;}
.y210{bottom:642.849333pt;}
.y1c6{bottom:645.896000pt;}
.y28f{bottom:649.084000pt;}
.y119{bottom:649.698667pt;}
.y247{bottom:651.646667pt;}
.y1f3{bottom:652.438667pt;}
.y13{bottom:653.334667pt;}
.yeb{bottom:654.246667pt;}
.y2ce{bottom:654.664000pt;}
.y1a3{bottom:656.825333pt;}
.y64{bottom:657.841333pt;}
.yc1{bottom:658.361333pt;}
.y143{bottom:658.496000pt;}
.y94{bottom:658.513333pt;}
.y3a{bottom:658.648000pt;}
.y20f{bottom:658.789333pt;}
.y28e{bottom:661.040000pt;}
.y1c5{bottom:661.836000pt;}
.y246{bottom:663.670667pt;}
.y12{bottom:666.618667pt;}
.yea{bottom:670.186667pt;}
.y1a2{bottom:672.765333pt;}
.y28d{bottom:672.994667pt;}
.y63{bottom:673.781333pt;}
.yc0{bottom:674.301333pt;}
.y142{bottom:674.436000pt;}
.y39{bottom:674.588000pt;}
.y245{bottom:675.625333pt;}
.y1c4{bottom:677.776000pt;}
.y93{bottom:678.570667pt;}
.y2cd{bottom:678.574667pt;}
.y11{bottom:679.901333pt;}
.y118{bottom:684.452000pt;}
.y28c{bottom:684.949333pt;}
.ye9{bottom:686.128000pt;}
.y244{bottom:687.581333pt;}
.y1a1{bottom:688.705333pt;}
.y62{bottom:689.722667pt;}
.ybf{bottom:690.241333pt;}
.y141{bottom:690.376000pt;}
.y38{bottom:690.528000pt;}
.y2cc{bottom:690.529333pt;}
.y10{bottom:693.185333pt;}
.y28b{bottom:697.702667pt;}
.y92{bottom:698.628000pt;}
.y243{bottom:699.536000pt;}
.y171{bottom:700.022667pt;}
.y117{bottom:700.392000pt;}
.ye8{bottom:702.068000pt;}
.y2cb{bottom:702.484000pt;}
.y61{bottom:705.662667pt;}
.ybe{bottom:706.182667pt;}
.y140{bottom:706.317333pt;}
.yf{bottom:706.469333pt;}
.y1a0{bottom:709.112000pt;}
.y28a{bottom:709.657333pt;}
.y242{bottom:711.490667pt;}
.y20e{bottom:713.456000pt;}
.y2ca{bottom:714.440000pt;}
.y170{bottom:715.964000pt;}
.ye7{bottom:718.008000pt;}
.y105{bottom:719.520217pt;}
.y60{bottom:721.602667pt;}
.y289{bottom:721.612000pt;}
.ybd{bottom:722.122667pt;}
.y13f{bottom:722.257333pt;}
.y91{bottom:723.129333pt;}
.y241{bottom:723.516000pt;}
.y2c9{bottom:726.394667pt;}
.y1c3{bottom:727.602667pt;}
.y16f{bottom:731.904000pt;}
.y20d{bottom:734.312000pt;}
.y288{bottom:734.364000pt;}
.y240{bottom:735.470667pt;}
.y5f{bottom:737.542667pt;}
.ybc{bottom:738.062667pt;}
.y13e{bottom:738.197333pt;}
.y2c8{bottom:738.349333pt;}
.y90{bottom:739.069333pt;}
.y1c2{bottom:741.405333pt;}
.ye6{bottom:742.509333pt;}
.y287{bottom:746.320000pt;}
.y23f{bottom:747.425333pt;}
.y2c7{bottom:750.305333pt;}
.ye5{bottom:751.621333pt;}
.y5e{bottom:753.482667pt;}
.ybb{bottom:754.002667pt;}
.y13d{bottom:754.137333pt;}
.y19f{bottom:754.756000pt;}
.y8f{bottom:755.009333pt;}
.y20c{bottom:755.166667pt;}
.y159{bottom:755.919341pt;}
.y286{bottom:758.274667pt;}
.y23e{bottom:759.381333pt;}
.y2c6{bottom:762.260000pt;}
.ye{bottom:766.064000pt;}
.y5d{bottom:769.422667pt;}
.y1c1{bottom:769.845333pt;}
.yba{bottom:769.942667pt;}
.y13c{bottom:770.077333pt;}
.y19e{bottom:770.697333pt;}
.y285{bottom:771.026667pt;}
.y23d{bottom:771.336000pt;}
.y2c5{bottom:774.216000pt;}
.y20b{bottom:776.021333pt;}
.yd{bottom:782.502667pt;}
.y284{bottom:782.982667pt;}
.y23c{bottom:783.360000pt;}
.y1c0{bottom:783.646667pt;}
.y5c{bottom:785.364000pt;}
.yb9{bottom:785.882667pt;}
.y13b{bottom:786.017333pt;}
.y2c4{bottom:786.170667pt;}
.y19d{bottom:786.637333pt;}
.y283{bottom:794.937333pt;}
.y23b{bottom:795.316000pt;}
.y20a{bottom:796.877333pt;}
.y2c3{bottom:798.125333pt;}
.yc{bottom:798.941333pt;}
.ye4{bottom:800.310667pt;}
.y5b{bottom:801.304000pt;}
.yb8{bottom:801.824000pt;}
.y19c{bottom:802.577333pt;}
.y8e{bottom:802.788000pt;}
.y282{bottom:806.892000pt;}
.y23a{bottom:807.270667pt;}
.y13a{bottom:807.360000pt;}
.y2c2{bottom:810.081333pt;}
.y1bf{bottom:812.086667pt;}
.yb{bottom:815.378667pt;}
.y7{bottom:816.037333pt;}
.ye3{bottom:816.250667pt;}
.y5a{bottom:817.244000pt;}
.y209{bottom:817.732000pt;}
.yb7{bottom:817.764000pt;}
.y19b{bottom:818.517333pt;}
.y239{bottom:819.294667pt;}
.y281{bottom:819.645333pt;}
.y2c1{bottom:822.036000pt;}
.y8d{bottom:823.642667pt;}
.y1be{bottom:825.888000pt;}
.y238{bottom:831.250667pt;}
.y280{bottom:831.600000pt;}
.ya{bottom:831.817333pt;}
.ye2{bottom:832.190667pt;}
.y6{bottom:832.474667pt;}
.yb6{bottom:833.704000pt;}
.y139{bottom:833.990667pt;}
.y19a{bottom:834.457333pt;}
.y208{bottom:838.586667pt;}
.y237{bottom:843.205333pt;}
.y27f{bottom:843.554667pt;}
.y8c{bottom:844.498667pt;}
.y2c0{bottom:845.946667pt;}
.ye1{bottom:848.130667pt;}
.y9{bottom:848.256000pt;}
.y5{bottom:848.913333pt;}
.yb5{bottom:849.644000pt;}
.y138{bottom:849.930667pt;}
.y199{bottom:850.398667pt;}
.y1bd{bottom:854.328000pt;}
.y236{bottom:855.229333pt;}
.y27e{bottom:855.510667pt;}
.y2bf{bottom:857.901333pt;}
.y207{bottom:859.442667pt;}
.y59{bottom:864.290667pt;}
.y8{bottom:864.892000pt;}
.y4{bottom:865.352000pt;}
.y8b{bottom:865.353333pt;}
.yb4{bottom:865.870667pt;}
.y235{bottom:867.185333pt;}
.y27d{bottom:868.262667pt;}
.y2be{bottom:869.857333pt;}
.y198{bottom:873.113333pt;}
.ye0{bottom:875.030667pt;}
.y1bc{bottom:875.714667pt;}
.y234{bottom:879.140000pt;}
.y58{bottom:879.832000pt;}
.y27c{bottom:880.217333pt;}
.ydd{bottom:881.592000pt;}
.yb3{bottom:881.812000pt;}
.y3{bottom:881.986667pt;}
.y8a{bottom:886.208000pt;}
.y206{bottom:887.237333pt;}
.y189{bottom:888.889171pt;}
.ydc{bottom:890.704000pt;}
.y233{bottom:891.164000pt;}
.y27b{bottom:892.173333pt;}
.y2bd{bottom:893.766667pt;}
.y57{bottom:895.373333pt;}
.yb2{bottom:897.752000pt;}
.y1bb{bottom:902.533333pt;}
.y232{bottom:903.120000pt;}
.ydf{bottom:903.322667pt;}
.y27a{bottom:904.925333pt;}
.y2bc{bottom:905.722667pt;}
.yde{bottom:907.308000pt;}
.y89{bottom:907.594667pt;}
.y56{bottom:910.916000pt;}
.yb1{bottom:913.692000pt;}
.y231{bottom:915.074667pt;}
.y279{bottom:916.880000pt;}
.y2bb{bottom:917.677333pt;}
.y1ba{bottom:918.474667pt;}
.y2{bottom:923.830667pt;}
.y55{bottom:926.457333pt;}
.y278{bottom:928.834667pt;}
.yb0{bottom:929.632000pt;}
.y88{bottom:934.414667pt;}
.y230{bottom:935.548000pt;}
.y277{bottom:940.790667pt;}
.y2ba{bottom:941.588000pt;}
.y54{bottom:941.998667pt;}
.yaf{bottom:945.572000pt;}
.y87{bottom:950.354667pt;}
.y276{bottom:953.542667pt;}
.y53{bottom:958.072000pt;}
.y1{bottom:961.024000pt;}
.yae{bottom:961.512000pt;}
.y275{bottom:965.497333pt;}
.y2b9{bottom:965.498667pt;}
.y86{bottom:966.294667pt;}
.y22f{bottom:977.452000pt;}
.yad{bottom:977.453333pt;}
.y52{bottom:982.234667pt;}
.h16{height:2.125355pt;}
.h26{height:10.031596pt;}
.h27{height:12.037915pt;}
.h22{height:13.161662pt;}
.h21{height:16.427337pt;}
.h24{height:18.673723pt;}
.h1d{height:18.748800pt;}
.h1a{height:18.783520pt;}
.h1b{height:20.311200pt;}
.h2d{height:21.423957pt;}
.h1c{height:21.834912pt;}
.hd{height:21.933807pt;}
.h2c{height:23.804397pt;}
.h1f{height:25.589197pt;}
.h15{height:26.519037pt;}
.h17{height:27.895200pt;}
.h23{height:28.010584pt;}
.he{height:29.244954pt;}
.h2f{height:29.458287pt;}
.hb{height:29.499997pt;}
.ha{height:29.712533pt;}
.h2e{height:31.880400pt;}
.h9{height:33.187635pt;}
.h8{height:33.426739pt;}
.h2a{height:35.374327pt;}
.hf{height:36.290431pt;}
.h4{height:36.556100pt;}
.h5{height:36.817434pt;}
.h3{height:36.822767pt;}
.h1e{height:36.874903pt;}
.h30{height:38.514287pt;}
.h10{height:39.850400pt;}
.h2{height:40.211857pt;}
.h7{height:40.505190pt;}
.h6{height:41.178747pt;}
.hc{height:44.869197pt;}
.h11{height:45.804370pt;}
.h29{height:47.175200pt;}
.h28{height:47.180533pt;}
.h2b{height:57.458287pt;}
.h14{height:75.791733pt;}
.h18{height:76.298400pt;}
.h12{height:77.048021pt;}
.h1{height:87.734861pt;}
.h25{height:97.626930pt;}
.h13{height:113.496021pt;}
.h20{height:227.803779pt;}
.h19{height:269.087851pt;}
.h0{height:1056.000000pt;}
.w4{width:124.767916pt;}
.w5{width:298.564394pt;}
.w3{width:299.778596pt;}
.w2{width:326.229151pt;}
.w1{width:336.003627pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x69{left:4.923451pt;}
.x68{left:7.476223pt;}
.x67{left:9.263164pt;}
.x66{left:11.050104pt;}
.x47{left:13.202065pt;}
.x74{left:15.793327pt;}
.x5b{left:17.151380pt;}
.x6c{left:18.708420pt;}
.x5e{left:20.743313pt;}
.x73{left:22.456665pt;}
.x65{left:26.622013pt;}
.x56{left:27.559555pt;}
.x72{left:29.725761pt;}
.x55{left:31.399543pt;}
.x54{left:34.525904pt;}
.x5d{left:37.810711pt;}
.x57{left:41.628183pt;}
.x46{left:49.784909pt;}
.x6d{left:55.723614pt;}
.x6a{left:59.552772pt;}
.x23{left:65.285333pt;}
.x53{left:66.605094pt;}
.x51{left:68.176000pt;}
.x1{left:70.772000pt;}
.x8{left:72.729333pt;}
.xb{left:76.674667pt;}
.x22{left:78.569333pt;}
.x4c{left:79.798861pt;}
.x4{left:81.322667pt;}
.x4a{left:83.777442pt;}
.x5a{left:85.621161pt;}
.x7f{left:89.630667pt;}
.x5c{left:93.691570pt;}
.x62{left:96.614305pt;}
.x2a{left:97.889333pt;}
.x59{left:100.859144pt;}
.x28{left:102.076000pt;}
.x6{left:103.553333pt;}
.x2d{left:104.488000pt;}
.x27{left:106.650667pt;}
.x29{left:108.617333pt;}
.x2c{left:109.696000pt;}
.x2b{left:111.166667pt;}
.x7b{left:112.632000pt;}
.x79{left:117.642667pt;}
.x78{left:120.001333pt;}
.x3{left:121.724000pt;}
.x7a{left:122.956000pt;}
.x80{left:131.974667pt;}
.x9{left:142.308000pt;}
.x45{left:143.731277pt;}
.x7{left:148.557333pt;}
.x48{left:151.794253pt;}
.x83{left:159.293333pt;}
.x49{left:160.492109pt;}
.x6f{left:161.633333pt;}
.x4d{left:166.666317pt;}
.x63{left:169.533964pt;}
.x70{left:170.613333pt;}
.x5{left:179.368000pt;}
.x24{left:180.826667pt;}
.x61{left:185.005583pt;}
.x77{left:187.336000pt;}
.x2e{left:193.173333pt;}
.xa{left:202.281333pt;}
.x5f{left:206.585776pt;}
.x2{left:220.608000pt;}
.x15{left:226.688000pt;}
.x84{left:232.877333pt;}
.x60{left:234.520486pt;}
.x10{left:236.405333pt;}
.x4e{left:239.169613pt;}
.x4f{left:242.090061pt;}
.x75{left:251.434001pt;}
.x36{left:263.572000pt;}
.x4b{left:273.082786pt;}
.x19{left:277.789333pt;}
.x1a{left:285.182667pt;}
.x50{left:288.610893pt;}
.x44{left:291.430818pt;}
.x58{left:294.489678pt;}
.xc{left:304.641333pt;}
.x12{left:323.664000pt;}
.x81{left:330.690667pt;}
.xe{left:332.257333pt;}
.xd{left:353.261333pt;}
.x16{left:374.133333pt;}
.x82{left:386.746667pt;}
.x13{left:393.242667pt;}
.x26{left:415.970667pt;}
.x17{left:421.596000pt;}
.x25{left:429.253333pt;}
.xf{left:430.302667pt;}
.x71{left:434.690390pt;}
.x7d{left:440.316000pt;}
.x64{left:442.315786pt;}
.x37{left:447.136000pt;}
.x42{left:448.212000pt;}
.x14{left:453.217333pt;}
.x34{left:474.014667pt;}
.x18{left:483.270667pt;}
.x32{left:486.049333pt;}
.x31{left:491.070667pt;}
.x30{left:492.542667pt;}
.x33{left:496.389333pt;}
.x6b{left:498.802667pt;}
.x2f{left:500.018667pt;}
.x38{left:510.669333pt;}
.x3a{left:520.196000pt;}
.x3b{left:521.185333pt;}
.x39{left:526.853333pt;}
.x76{left:535.681333pt;}
.x7e{left:538.605333pt;}
.x35{left:541.573333pt;}
.x11{left:544.154667pt;}
.x52{left:545.824000pt;}
.x3d{left:547.150667pt;}
.x3c{left:553.809333pt;}
.x1f{left:574.598667pt;}
.x1d{left:586.932000pt;}
.x7c{left:590.164000pt;}
.x21{left:591.654667pt;}
.x1b{left:599.370667pt;}
.x43{left:636.266667pt;}
.x3e{left:640.256000pt;}
.x40{left:651.397333pt;}
.x6e{left:655.789333pt;}
.x3f{left:658.056000pt;}
.x41{left:672.798667pt;}
.x1c{left:703.888000pt;}
.x1e{left:718.398667pt;}
.x20{left:729.988000pt;}
}




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