
    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_af5ab54f763b0ffd394f2fef.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_5013a62f76c24c78bdcf5940.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_3621e4532e65df02fa5919df.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_21fcfff4252188b27591c279.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.346191;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_432af8cca9c20040e34df75d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_4374de3a4141fdd181187a5d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.575000;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_d16286ea5a98ff9d8ab6caa7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.592000;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_f749f00f4dadc798ae7f079c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.755371;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;}
.m13{transform:matrix(0.000000,-0.249117,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249117,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249117,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.249182,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249182,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249182,0.250000,0.000000,0,0);}
.m10{transform:matrix(0.000000,-0.249502,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249502,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249502,0.250000,0.000000,0,0);}
.m14{transform:matrix(0.000000,-0.249568,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249568,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249568,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.249633,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249633,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249633,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.249655,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249655,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249655,0.250000,0.000000,0,0);}
.m17{transform:matrix(0.000000,-0.249715,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249715,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249715,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.249782,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249782,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249782,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250037,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250218,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250283,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250285,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250296,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250346,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250433,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250499,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250573,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250821,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250886,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vd{vertical-align:-56.328733px;}
.v2{vertical-align:-27.360000px;}
.v6{vertical-align:-11.998165px;}
.v5{vertical-align:-5.300460px;}
.vb{vertical-align:-3.758461px;}
.v9{vertical-align:-1.734674px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:12.769131px;}
.va{vertical-align:16.672148px;}
.v1{vertical-align:23.760000px;}
.v3{vertical-align:25.408251px;}
.v4{vertical-align:37.777824px;}
.vc{vertical-align:48.667254px;}
.v8{vertical-align:55.557766px;}
.ls76{letter-spacing:-1.457280px;}
.ls77{letter-spacing:-1.324800px;}
.ls2c{letter-spacing:-1.192320px;}
.ls18{letter-spacing:-1.126080px;}
.ls15{letter-spacing:-1.059840px;}
.ls2a{letter-spacing:-0.993600px;}
.ls29{letter-spacing:-0.861120px;}
.ls12{letter-spacing:-0.728640px;}
.lsf{letter-spacing:-0.596160px;}
.ls85{letter-spacing:-0.530640px;}
.ls71{letter-spacing:-0.530501px;}
.ls30{letter-spacing:-0.530343px;}
.ls3d{letter-spacing:-0.530046px;}
.ls68{letter-spacing:-0.530039px;}
.ls61{letter-spacing:-0.529736px;}
.ls72{letter-spacing:-0.529723px;}
.ls7e{letter-spacing:-0.529445px;}
.ls5c{letter-spacing:-0.478080px;}
.ls55{letter-spacing:-0.463680px;}
.ls3e{letter-spacing:-0.433674px;}
.ls6e{letter-spacing:-0.433669px;}
.ls11{letter-spacing:-0.397440px;}
.ls5d{letter-spacing:-0.378000px;}
.lsb{letter-spacing:-0.358560px;}
.ls2f{letter-spacing:-0.337491px;}
.ls3a{letter-spacing:-0.337302px;}
.ls67{letter-spacing:-0.337298px;}
.ls32{letter-spacing:-0.337252px;}
.ls5f{letter-spacing:-0.337105px;}
.ls70{letter-spacing:-0.337096px;}
.ls7d{letter-spacing:-0.336920px;}
.ls78{letter-spacing:-0.336487px;}
.ls89{letter-spacing:-0.334698px;}
.ls14{letter-spacing:-0.331200px;}
.ls6f{letter-spacing:-0.298800px;}
.ls69{letter-spacing:-0.289112px;}
.ls60{letter-spacing:-0.288947px;}
.ls38{letter-spacing:-0.264960px;}
.ls8a{letter-spacing:-0.239070px;}
.ls83{letter-spacing:-0.239040px;}
.ls17{letter-spacing:-0.216000px;}
.ls84{letter-spacing:-0.179280px;}
.ls47{letter-spacing:-0.162000px;}
.ls16{letter-spacing:-0.132480px;}
.ls4e{letter-spacing:-0.119520px;}
.ls2b{letter-spacing:-0.059760px;}
.lsc{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.011520px;}
.ls13{letter-spacing:0.054000px;}
.ls1a{letter-spacing:0.066240px;}
.ls3{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.108000px;}
.ls44{letter-spacing:0.118080px;}
.lse{letter-spacing:0.119520px;}
.ls86{letter-spacing:0.131472px;}
.ls10{letter-spacing:0.132480px;}
.ls63{letter-spacing:0.137448px;}
.ls4d{letter-spacing:0.149400px;}
.ls4c{letter-spacing:0.179280px;}
.ls8d{letter-spacing:0.190080px;}
.ls8c{letter-spacing:0.192526px;}
.ls3c{letter-spacing:0.192744px;}
.ls1{letter-spacing:0.239040px;}
.ls2d{letter-spacing:0.264960px;}
.ls79{letter-spacing:0.288418px;}
.ls90{letter-spacing:0.291456px;}
.ls26{letter-spacing:0.331200px;}
.lsd{letter-spacing:0.358560px;}
.ls5b{letter-spacing:0.361183px;}
.ls37{letter-spacing:0.361395px;}
.ls28{letter-spacing:0.361598px;}
.ls97{letter-spacing:0.374400px;}
.ls88{letter-spacing:0.382512px;}
.ls8b{letter-spacing:0.382949px;}
.ls7a{letter-spacing:0.384557px;}
.ls7f{letter-spacing:0.385051px;}
.ls73{letter-spacing:0.385253px;}
.ls5e{letter-spacing:0.385262px;}
.ls31{letter-spacing:0.385430px;}
.ls66{letter-spacing:0.385483px;}
.ls39{letter-spacing:0.385488px;}
.ls2e{letter-spacing:0.385704px;}
.ls6d{letter-spacing:0.385819px;}
.ls80{letter-spacing:0.385920px;}
.ls3b{letter-spacing:0.386021px;}
.ls56{letter-spacing:0.388800px;}
.ls65{letter-spacing:0.418320px;}
.ls25{letter-spacing:0.609408px;}
.ls24{letter-spacing:0.728640px;}
.ls0{letter-spacing:0.896400px;}
.ls9{letter-spacing:0.972000px;}
.ls23{letter-spacing:1.457280px;}
.ls93{letter-spacing:2.046816px;}
.ls96{letter-spacing:2.119680px;}
.ls36{letter-spacing:2.179296px;}
.ls35{letter-spacing:2.185920px;}
.ls7{letter-spacing:2.848320px;}
.ls1c{letter-spacing:2.901312px;}
.ls1b{letter-spacing:2.941056px;}
.lsa{letter-spacing:3.576960px;}
.ls7b{letter-spacing:4.179744px;}
.ls49{letter-spacing:4.252608px;}
.ls48{letter-spacing:4.305600px;}
.ls8e{letter-spacing:4.378464px;}
.ls6b{letter-spacing:5.034240px;}
.ls1e{letter-spacing:5.060736px;}
.ls34{letter-spacing:5.762880px;}
.ls42{letter-spacing:6.491520px;}
.ls95{letter-spacing:7.889184px;}
.ls20{letter-spacing:7.948800px;}
.ls1f{letter-spacing:9.339840px;}
.ls94{letter-spacing:9.540000px;}
.ls59{letter-spacing:10.068480px;}
.ls51{letter-spacing:10.797120px;}
.ls64{letter-spacing:10.810368px;}
.ls33{letter-spacing:11.399904px;}
.ls22{letter-spacing:11.512512px;}
.ls21{letter-spacing:11.525760px;}
.ls1d{letter-spacing:12.983040px;}
.ls40{letter-spacing:13.632192px;}
.ls6{letter-spacing:13.711680px;}
.ls8f{letter-spacing:14.433696px;}
.ls27{letter-spacing:14.696721px;}
.ls41{letter-spacing:15.831360px;}
.ls54{letter-spacing:16.560000px;}
.ls4b{letter-spacing:18.017280px;}
.ls45{letter-spacing:19.408320px;}
.ls46{letter-spacing:19.441440px;}
.ls43{letter-spacing:21.594240px;}
.ls53{letter-spacing:22.316256px;}
.ls58{letter-spacing:22.322880px;}
.ls62{letter-spacing:25.171200px;}
.ls74{letter-spacing:28.601412px;}
.ls5{letter-spacing:30.271680px;}
.ls8{letter-spacing:30.934080px;}
.ls4a{letter-spacing:36.299520px;}
.ls3f{letter-spacing:37.425600px;}
.ls6a{letter-spacing:46.831680px;}
.ls81{letter-spacing:49.680000px;}
.ls82{letter-spacing:50.408640px;}
.ls92{letter-spacing:56.900160px;}
.ls91{letter-spacing:57.628800px;}
.ls5a{letter-spacing:58.291200px;}
.ls6c{letter-spacing:84.661748px;}
.ls57{letter-spacing:89.221680px;}
.ls19{letter-spacing:104.725440px;}
.ls52{letter-spacing:125.988480px;}
.ls50{letter-spacing:173.548800px;}
.ls75{letter-spacing:192.086122px;}
.ls7c{letter-spacing:193.528210px;}
.ls4f{letter-spacing:195.871680px;}
.ls87{letter-spacing:214.350162px;}
.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;}
}
.ws9b{word-spacing:-66.240000px;}
.ws3{word-spacing:-37.044000px;}
.wsd{word-spacing:-22.654080px;}
.wsc7{word-spacing:-21.453840px;}
.wse4{word-spacing:-21.394080px;}
.wse3{word-spacing:-21.274560px;}
.wsb1{word-spacing:-21.214800px;}
.wsc6{word-spacing:-21.155040px;}
.wsb0{word-spacing:-20.916000px;}
.ws7{word-spacing:-18.522000px;}
.ws7b{word-spacing:-18.306000px;}
.wse{word-spacing:-18.252000px;}
.ws38{word-spacing:-16.891200px;}
.wsf1{word-spacing:-16.824960px;}
.ws8{word-spacing:-16.692480px;}
.wsc{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.427520px;}
.ws5f{word-spacing:-16.295040px;}
.ws35{word-spacing:-16.228800px;}
.ws6{word-spacing:-16.162560px;}
.wsa6{word-spacing:-16.096320px;}
.ws4{word-spacing:-15.963840px;}
.wsa{word-spacing:-15.831360px;}
.ws34{word-spacing:-15.698880px;}
.ws36{word-spacing:-15.566400px;}
.ws9{word-spacing:-15.500160px;}
.ws9a{word-spacing:-15.433920px;}
.wsc5{word-spacing:-15.367680px;}
.ws2{word-spacing:-15.298560px;}
.ws9c{word-spacing:-15.059520px;}
.ws1{word-spacing:-14.940000px;}
.ws37{word-spacing:-14.880240px;}
.ws0{word-spacing:-14.581440px;}
.wsf0{word-spacing:-14.461920px;}
.wsfd{word-spacing:-12.445920px;}
.wsd9{word-spacing:-12.442669px;}
.ws3a{word-spacing:-12.438954px;}
.ws60{word-spacing:-12.431988px;}
.wsc8{word-spacing:-12.431833px;}
.ws3c{word-spacing:-12.430130px;}
.wsb2{word-spacing:-12.424712px;}
.ws3b{word-spacing:-12.414848px;}
.ws66{word-spacing:-12.407895px;}
.wsb5{word-spacing:-12.400633px;}
.ws10d{word-spacing:-12.350099px;}
.ws10c{word-spacing:-12.336012px;}
.ws63{word-spacing:-12.239244px;}
.ws10e{word-spacing:-12.225376px;}
.ws39{word-spacing:-11.715759px;}
.ws62{word-spacing:-11.709198px;}
.wscc{word-spacing:-11.709052px;}
.wsb3{word-spacing:-11.702345px;}
.wse5{word-spacing:-11.702054px;}
.wsf9{word-spacing:-11.695930px;}
.ws64{word-spacing:-11.612826px;}
.wsda{word-spacing:-11.612681px;}
.ws65{word-spacing:-11.516454px;}
.wsce{word-spacing:-11.516311px;}
.wsb6{word-spacing:-11.509714px;}
.wse7{word-spacing:-11.509427px;}
.wsfb{word-spacing:-11.503405px;}
.ws5{word-spacing:-10.440000px;}
.ws5a{word-spacing:-4.438080px;}
.ws59{word-spacing:-4.305600px;}
.ws8b{word-spacing:-3.908160px;}
.ws2f{word-spacing:-3.709440px;}
.ws30{word-spacing:-3.576960px;}
.ws8c{word-spacing:-2.980800px;}
.ws45{word-spacing:-2.848320px;}
.wsb4{word-spacing:-2.480127px;}
.ws5b{word-spacing:-2.362437px;}
.wsd6{word-spacing:-2.361085px;}
.wsc2{word-spacing:-2.359732px;}
.ws10b{word-spacing:-2.359673px;}
.ws103{word-spacing:-2.355410px;}
.ws117{word-spacing:-2.342886px;}
.ws2d{word-spacing:-2.318400px;}
.ws4d{word-spacing:-2.252160px;}
.ws2a{word-spacing:-2.185920px;}
.ws46{word-spacing:-2.119680px;}
.wsd4{word-spacing:-1.788480px;}
.ws79{word-spacing:-1.638324px;}
.wsd7{word-spacing:-1.638304px;}
.wsc1{word-spacing:-1.637365px;}
.wsef{word-spacing:-1.637324px;}
.ws102{word-spacing:-1.636468px;}
.wsf8{word-spacing:-1.634366px;}
.ws116{word-spacing:-1.625676px;}
.ws2b{word-spacing:-1.589760px;}
.ws42{word-spacing:-1.457280px;}
.ws43{word-spacing:-1.059840px;}
.wsd0{word-spacing:-0.993600px;}
.wse2{word-spacing:-0.915523px;}
.ws24{word-spacing:-0.861120px;}
.wsf7{word-spacing:-0.817183px;}
.ws15{word-spacing:-0.728640px;}
.wscf{word-spacing:-0.478080px;}
.wsb8{word-spacing:-0.397440px;}
.ws5c{word-spacing:-0.385704px;}
.ws100{word-spacing:-0.385051px;}
.wsa5{word-spacing:-0.358560px;}
.ws47{word-spacing:-0.331200px;}
.ws13{word-spacing:-0.324000px;}
.wsea{word-spacing:-0.298800px;}
.ws115{word-spacing:-0.286884px;}
.ws53{word-spacing:-0.264960px;}
.ws10f{word-spacing:-0.239040px;}
.ws77{word-spacing:-0.193010px;}
.ws5e{word-spacing:-0.192715px;}
.ws10a{word-spacing:-0.192626px;}
.ws114{word-spacing:-0.191256px;}
.ws11{word-spacing:-0.179280px;}
.ws14{word-spacing:-0.132480px;}
.wsd2{word-spacing:-0.119520px;}
.ws10{word-spacing:0.000000px;}
.wsa2{word-spacing:0.059760px;}
.ws87{word-spacing:0.132480px;}
.ws8f{word-spacing:0.162000px;}
.wsa3{word-spacing:0.239040px;}
.wsa4{word-spacing:0.298800px;}
.ws17{word-spacing:0.331200px;}
.wsfe{word-spacing:0.358560px;}
.wsba{word-spacing:0.378000px;}
.ws41{word-spacing:0.397440px;}
.ws8e{word-spacing:0.432000px;}
.wsbd{word-spacing:0.463680px;}
.wsbf{word-spacing:0.481578px;}
.wsd5{word-spacing:0.481854px;}
.wsb9{word-spacing:0.486000px;}
.ws113{word-spacing:0.525954px;}
.ws101{word-spacing:0.529445px;}
.ws109{word-spacing:0.529723px;}
.wsc3{word-spacing:0.529736px;}
.ws5d{word-spacing:0.530343px;}
.wsf{word-spacing:0.537840px;}
.ws2c{word-spacing:0.596160px;}
.ws112{word-spacing:0.657360px;}
.wsc4{word-spacing:0.722367px;}
.ws78{word-spacing:0.722790px;}
.wsee{word-spacing:0.723411px;}
.ws108{word-spacing:0.723600px;}
.ws16{word-spacing:0.728640px;}
.ws12{word-spacing:0.776880px;}
.wsa8{word-spacing:0.861120px;}
.ws84{word-spacing:1.059840px;}
.ws31{word-spacing:1.126080px;}
.ws4c{word-spacing:1.192320px;}
.ws52{word-spacing:1.324800px;}
.wsb7{word-spacing:1.374480px;}
.ws44{word-spacing:1.457280px;}
.ws76{word-spacing:1.854720px;}
.ws32{word-spacing:2.053440px;}
.ws33{word-spacing:2.185920px;}
.wsd3{word-spacing:2.583360px;}
.ws1f{word-spacing:2.782080px;}
.wsc0{word-spacing:2.889468px;}
.ws7a{word-spacing:2.891160px;}
.ws25{word-spacing:2.914560px;}
.ws3f{word-spacing:3.245760px;}
.wsec{word-spacing:3.312000px;}
.ws29{word-spacing:3.444480px;}
.ws2e{word-spacing:3.576960px;}
.ws83{word-spacing:3.709440px;}
.ws9d{word-spacing:4.173120px;}
.ws98{word-spacing:4.305600px;}
.ws55{word-spacing:4.703040px;}
.ws26{word-spacing:4.901760px;}
.ws27{word-spacing:5.034240px;}
.wsdf{word-spacing:5.166720px;}
.wseb{word-spacing:5.431680px;}
.ws28{word-spacing:5.630400px;}
.ws54{word-spacing:5.762880px;}
.ws6d{word-spacing:6.359040px;}
.ws6e{word-spacing:6.491520px;}
.wsa1{word-spacing:6.888960px;}
.ws4a{word-spacing:7.087680px;}
.wsf6{word-spacing:7.220160px;}
.ws110{word-spacing:7.352640px;}
.wsa0{word-spacing:7.551360px;}
.ws4b{word-spacing:7.816320px;}
.ws80{word-spacing:7.948800px;}
.wsed{word-spacing:8.280000px;}
.ws22{word-spacing:8.478720px;}
.ws6c{word-spacing:8.611200px;}
.ws48{word-spacing:9.207360px;}
.ws49{word-spacing:9.339840px;}
.ws72{word-spacing:9.737280px;}
.ws58{word-spacing:9.936000px;}
.ws7f{word-spacing:10.068480px;}
.ws51{word-spacing:10.532160px;}
.ws56{word-spacing:10.664640px;}
.ws57{word-spacing:10.797120px;}
.ws4e{word-spacing:11.194560px;}
.ws50{word-spacing:11.393280px;}
.ws4f{word-spacing:11.525760px;}
.ws91{word-spacing:12.121920px;}
.ws90{word-spacing:12.254400px;}
.ws40{word-spacing:12.850560px;}
.ws1b{word-spacing:12.983040px;}
.ws85{word-spacing:13.115520px;}
.ws61{word-spacing:13.545085px;}
.ws19{word-spacing:13.579200px;}
.ws1c{word-spacing:13.711680px;}
.ws111{word-spacing:14.042880px;}
.wsaa{word-spacing:14.241600px;}
.wsa7{word-spacing:14.374080px;}
.ws1a{word-spacing:14.440320px;}
.ws118{word-spacing:15.102720px;}
.ws11c{word-spacing:15.698880px;}
.ws86{word-spacing:15.831360px;}
.wsa9{word-spacing:16.427520px;}
.wsaf{word-spacing:16.560000px;}
.ws70{word-spacing:16.957440px;}
.ws6f{word-spacing:17.288640px;}
.ws8d{word-spacing:17.884800px;}
.ws71{word-spacing:18.017280px;}
.ws6b{word-spacing:18.613440px;}
.ws106{word-spacing:19.342080px;}
.ws93{word-spacing:19.474560px;}
.ws95{word-spacing:19.805760px;}
.ws75{word-spacing:20.004480px;}
.ws74{word-spacing:20.136960px;}
.ws94{word-spacing:20.203200px;}
.ws81{word-spacing:20.733120px;}
.ws82{word-spacing:20.865600px;}
.ws9e{word-spacing:21.461760px;}
.ws9f{word-spacing:21.594240px;}
.wsbe{word-spacing:21.991680px;}
.ws89{word-spacing:22.190400px;}
.ws8a{word-spacing:22.322880px;}
.ws88{word-spacing:23.051520px;}
.wsde{word-spacing:23.647680px;}
.wsdd{word-spacing:23.780160px;}
.wsd1{word-spacing:24.376320px;}
.wsac{word-spacing:24.840000px;}
.ws1e{word-spacing:25.038720px;}
.ws1d{word-spacing:25.171200px;}
.wse0{word-spacing:25.568640px;}
.ws6a{word-spacing:25.767360px;}
.wsad{word-spacing:25.899840px;}
.wse1{word-spacing:26.231040px;}
.wsae{word-spacing:26.628480px;}
.ws107{word-spacing:27.357120px;}
.ws96{word-spacing:28.483200px;}
.ws97{word-spacing:28.814400px;}
.ws99{word-spacing:29.410560px;}
.wsff{word-spacing:29.543040px;}
.ws18{word-spacing:30.139200px;}
.wse8{word-spacing:30.271680px;}
.ws23{word-spacing:30.801600px;}
.wsbb{word-spacing:32.258880px;}
.wsdb{word-spacing:32.391360px;}
.wsbc{word-spacing:32.987520px;}
.ws20{word-spacing:35.305920px;}
.ws21{word-spacing:35.902080px;}
.ws7d{word-spacing:36.696960px;}
.ws73{word-spacing:37.293120px;}
.wse9{word-spacing:37.425600px;}
.ws119{word-spacing:38.154240px;}
.ws7e{word-spacing:38.882880px;}
.wsf4{word-spacing:40.936320px;}
.wsf3{word-spacing:41.068800px;}
.wsf5{word-spacing:41.664960px;}
.ws92{word-spacing:44.645760px;}
.wsdc{word-spacing:46.699200px;}
.wsab{word-spacing:46.831680px;}
.ws104{word-spacing:50.276160px;}
.ws105{word-spacing:50.408640px;}
.wsd8{word-spacing:52.671461px;}
.ws67{word-spacing:56.767680px;}
.ws68{word-spacing:56.900160px;}
.ws11d{word-spacing:57.496320px;}
.ws69{word-spacing:58.291200px;}
.ws7c{word-spacing:59.748480px;}
.ws11b{word-spacing:73.327680px;}
.ws11a{word-spacing:73.460160px;}
.wse6{word-spacing:75.321738px;}
.wsfa{word-spacing:95.112460px;}
.wsfc{word-spacing:122.601515px;}
.wsf2{word-spacing:169.036748px;}
.ws3e{word-spacing:189.256089px;}
.ws3d{word-spacing:218.736697px;}
.wscd{word-spacing:277.600908px;}
.wsc9{word-spacing:298.947040px;}
.wscb{word-spacing:311.157221px;}
.wsca{word-spacing:323.396312px;}
._21{margin-left:-1117.228066px;}
._1c{margin-left:-16.688880px;}
._14{margin-left:-5.348736px;}
._a{margin-left:-4.135680px;}
._9{margin-left:-2.928240px;}
._1{margin-left:-1.613520px;}
._0{width:1.434240px;}
._8{width:2.739600px;}
._7{width:3.872160px;}
._12{width:5.660640px;}
._6{width:7.731360px;}
._e{width:8.987760px;}
._f{width:11.417040px;}
._3{width:12.755520px;}
._4{width:14.469120px;}
._15{width:15.470640px;}
._29{width:16.932593px;}
._13{width:19.593360px;}
._2a{width:20.690640px;}
._39{width:22.042080px;}
._25{width:23.367600px;}
._1b{width:25.313760px;}
._28{width:27.958854px;}
._2{width:29.897280px;}
._1d{width:33.631200px;}
._5{width:36.365760px;}
._2d{width:38.641680px;}
._2e{width:41.452560px;}
._1a{width:46.221120px;}
._17{width:51.449760px;}
._27{width:52.803482px;}
._11{width:56.489040px;}
._19{width:67.697280px;}
._38{width:74.003760px;}
._2c{width:75.430989px;}
._26{width:76.903898px;}
._10{width:88.133364px;}
._31{width:95.218652px;}
._2b{width:99.539692px;}
._22{width:109.432480px;}
._24{width:110.540744px;}
._30{width:119.317741px;}
._16{width:130.052160px;}
._32{width:146.660350px;}
._2f{width:168.536825px;}
._18{width:196.534080px;}
._1e{width:218.829043px;}
._35{width:229.125588px;}
._34{width:275.217744px;}
._20{width:278.175999px;}
._1f{width:301.833346px;}
._36{width:463.388976px;}
._37{width:465.684048px;}
._23{width:520.396120px;}
._c{width:629.631360px;}
._b{width:848.298240px;}
._d{width:1328.584320px;}
._33{width:2556.002880px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs13{font-size:47.814000px;}
.fs14{font-size:47.868600px;}
.fs10{font-size:48.069600px;}
.fs11{font-size:48.131400px;}
.fsf{font-size:48.156600px;}
.fsc{font-size:48.157800px;}
.fs8{font-size:48.178800px;}
.fsd{font-size:48.185400px;}
.fsa{font-size:48.186000px;}
.fs6{font-size:48.213000px;}
.fse{font-size:48.227400px;}
.fs12{font-size:48.240000px;}
.fsb{font-size:48.252600px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:66.156000px;}
.fs7{font-size:66.202800px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y32{bottom:3.237000px;}
.ydf{bottom:3.240000px;}
.ye6{bottom:3.420000px;}
.y1e0{bottom:4.487475px;}
.y28b{bottom:4.498256px;}
.y15f{bottom:5.977350px;}
.y2e4{bottom:6.202770px;}
.y1b9{bottom:6.263850px;}
.ydc{bottom:7.020000px;}
.ya3{bottom:7.839750px;}
.y18f{bottom:8.355703px;}
.y222{bottom:9.996000px;}
.y277{bottom:9.997650px;}
.y66{bottom:12.777300px;}
.y2f2{bottom:14.248478px;}
.y1f2{bottom:15.240058px;}
.y2bb{bottom:15.263987px;}
.y30d{bottom:15.267393px;}
.y261{bottom:15.268443px;}
.y236{bottom:18.158146px;}
.y1e1{bottom:20.126331px;}
.y28a{bottom:21.654045px;}
.y153{bottom:21.920226px;}
.y15e{bottom:22.975650px;}
.y18e{bottom:24.786924px;}
.y2c3{bottom:25.178550px;}
.y1fa{bottom:25.178700px;}
.y315{bottom:25.346850px;}
.y269{bottom:25.348050px;}
.y2f3{bottom:25.787981px;}
.y235{bottom:31.971858px;}
.y149{bottom:35.994343px;}
.y2e1{bottom:38.470359px;}
.y1b7{bottom:38.642660px;}
.y188{bottom:38.893200px;}
.y15d{bottom:39.973650px;}
.y220{bottom:42.324216px;}
.y275{bottom:42.326016px;}
.y65{bottom:43.519050px;}
.y28c{bottom:44.684939px;}
.y1df{bottom:46.299443px;}
.y1f1{bottom:47.757803px;}
.y30c{bottom:47.780154px;}
.y260{bottom:47.781204px;}
.y184{bottom:52.583850px;}
.y187{bottom:52.915200px;}
.y2ba{bottom:55.908157px;}
.y15c{bottom:56.971950px;}
.y237{bottom:57.012219px;}
.y31{bottom:57.059235px;}
.y8{bottom:60.273180px;}
.y34{bottom:60.300000px;}
.y14a{bottom:61.782845px;}
.y17f{bottom:63.022950px;}
.y2f1{bottom:64.966940px;}
.y99{bottom:69.095139px;}
.y1f8{bottom:69.428273px;}
.y313{bottom:69.451317px;}
.y2c1{bottom:69.452201px;}
.y267{bottom:69.452367px;}
.y185{bottom:71.364110px;}
.y28d{bottom:71.508165px;}
.y15b{bottom:73.970100px;}
.y148{bottom:75.050319px;}
.y17e{bottom:75.406983px;}
.y29f{bottom:76.384021px;}
.y295{bottom:79.080791px;}
.y1f0{bottom:80.275547px;}
.y30b{bottom:80.292914px;}
.y25f{bottom:80.293964px;}
.y7{bottom:80.980020px;}
.y1e2{bottom:81.249096px;}
.y189{bottom:81.308398px;}
.y2a0{bottom:81.801639px;}
.y57{bottom:82.362811px;}
.y2f4{bottom:85.278391px;}
.y88{bottom:86.610750px;}
.y221{bottom:87.001650px;}
.y276{bottom:87.003600px;}
.y14b{bottom:87.571347px;}
.y289{bottom:88.579680px;}
.y180{bottom:88.633490px;}
.y1b2{bottom:89.695091px;}
.y2ab{bottom:90.204965px;}
.y234{bottom:90.487608px;}
.y296{bottom:90.999549px;}
.y238{bottom:91.474302px;}
.y2fd{bottom:93.075678px;}
.y29e{bottom:93.720397px;}
.y9a{bottom:94.621673px;}
.y2e0{bottom:96.265531px;}
.y1b6{bottom:96.429001px;}
.y2b9{bottom:96.552328px;}
.y2fc{bottom:97.299208px;}
.y2aa{bottom:98.066530px;}
.y2fe{bottom:98.598756px;}
.y21f{bottom:99.046344px;}
.y274{bottom:99.048144px;}
.y2fb{bottom:101.197852px;}
.y6{bottom:101.686860px;}
.y23f{bottom:102.700951px;}
.y294{bottom:104.278732px;}
.y91{bottom:104.728686px;}
.y159{bottom:104.840057px;}
.y2a9{bottom:104.844572px;}
.y1de{bottom:105.796922px;}
.y297{bottom:106.445779px;}
.y2a1{bottom:106.457818px;}
.y58{bottom:107.421518px;}
.y1ce{bottom:107.590756px;}
.y240{bottom:108.873803px;}
.y89{bottom:109.438868px;}
.y288{bottom:110.250150px;}
.y2ac{bottom:112.417197px;}
.y1ef{bottom:112.793291px;}
.y30a{bottom:112.805675px;}
.y25e{bottom:112.806725px;}
.y2d8{bottom:113.040000px;}
.y1d8{bottom:113.104686px;}
.y14c{bottom:113.359848px;}
.y1b8{bottom:113.725650px;}
.y2e2{bottom:113.867400px;}
.y1cd{bottom:113.935388px;}
.y23e{bottom:115.540002px;}
.y2f0{bottom:116.010290px;}
.y1c8{bottom:116.092800px;}
.y8c{bottom:116.582442px;}
.y1af{bottom:117.720000px;}
.y53{bottom:119.221650px;}
.y1d9{bottom:119.449319px;}
.y9b{bottom:120.148206px;}
.y241{bottom:120.413306px;}
.y233{bottom:120.557700px;}
.y28e{bottom:120.820524px;}
.y1e3{bottom:120.918095px;}
.y1da{bottom:121.243152px;}
.y298{bottom:121.892008px;}
.ya2{bottom:121.972950px;}
.y5{bottom:122.393700px;}
.y1cf{bottom:122.711928px;}
.y1f7{bottom:123.616487px;}
.y312{bottom:123.635240px;}
.y266{bottom:123.636290px;}
.y2c0{bottom:123.640415px;}
.y179{bottom:123.660000px;}
.y18a{bottom:123.723597px;}
.y64{bottom:124.112253px;}
.ycc{bottom:124.372800px;}
.y186{bottom:125.066738px;}
.y143{bottom:125.460000px;}
.y2f5{bottom:125.588439px;}
.y2a2{bottom:126.238141px;}
.y239{bottom:127.560819px;}
.y1cc{bottom:128.081389px;}
.y2ff{bottom:129.162195px;}
.y1d7{bottom:129.526087px;}
.y17d{bottom:129.555326px;}
.y1d0{bottom:131.163411px;}
.y24a{bottom:131.291002px;}
.y2ea{bottom:131.604864px;}
.y242{bottom:131.952809px;}
.yfe{bottom:132.480000px;}
.y59{bottom:132.480225px;}
.y92{bottom:133.471635px;}
.y86{bottom:133.732800px;}
.y327{bottom:134.640000px;}
.y1cb{bottom:134.907587px;}
.y2fa{bottom:135.010160px;}
.y98{bottom:135.097913px;}
.y293{bottom:135.255465px;}
.y158{bottom:136.780718px;}
.y249{bottom:136.814080px;}
.y2eb{bottom:137.127942px;}
.y29d{bottom:137.157650px;}
.y2b8{bottom:137.196498px;}
.y8d{bottom:137.567445px;}
.y23d{bottom:138.137694px;}
.y1c7{bottom:138.780000px;}
.y14d{bottom:139.148350px;}
.y4{bottom:139.500000px;}
.y2d7{bottom:139.503600px;}
.y2e6{bottom:139.960500px;}
.y8a{bottom:140.326094px;}
.y1ae{bottom:140.407200px;}
.y231{bottom:142.920000px;}
.y1b1{bottom:143.132700px;}
.y2ad{bottom:144.742315px;}
.y1ee{bottom:145.311035px;}
.y309{bottom:145.318436px;}
.y25d{bottom:145.319486px;}
.y90{bottom:145.325391px;}
.y2a8{bottom:145.573016px;}
.y9c{bottom:145.674740px;}
.y178{bottom:146.512800px;}
.y24b{bottom:146.608820px;}
.ycb{bottom:147.060000px;}
.y2e9{bottom:147.247569px;}
.y1d6{bottom:147.283833px;}
.y248{bottom:148.064795px;}
.y142{bottom:148.147200px;}
.y253{bottom:148.883029px;}
.y63{bottom:149.598838px;}
.y2a3{bottom:149.630210px;}
.y1d2{bottom:149.727781px;}
.y51{bottom:149.760000px;}
.y2e8{bottom:149.846664px;}
.y1d4{bottom:150.209347px;}
.y1ca{bottom:150.871500px;}
.y292{bottom:150.966555px;}
.y290{bottom:151.243456px;}
.y24c{bottom:151.482124px;}
.y301{bottom:151.783953px;}
.y252{bottom:152.131898px;}
.y23b{bottom:152.300358px;}
.y2f9{bottom:152.758614px;}
.y2ec{bottom:152.770647px;}
.y23c{bottom:152.793705px;}
.y2f6{bottom:152.927074px;}
.y302{bottom:153.083501px;}
.y1d3{bottom:153.303408px;}
.y291{bottom:153.410503px;}
.y23a{bottom:153.443479px;}
.y1db{bottom:153.628465px;}
.y1d1{bottom:153.797013px;}
.y243{bottom:153.924793px;}
.y2ae{bottom:153.952264px;}
.y2df{bottom:154.060704px;}
.y254{bottom:154.081220px;}
.y1b5{bottom:154.215342px;}
.y29a{bottom:154.217126px;}
.y300{bottom:154.551508px;}
.y127{bottom:154.733760px;}
.y28f{bottom:154.770927px;}
.y2a5{bottom:154.782966px;}
.yfd{bottom:155.167200px;}
.y29c{bottom:155.577550px;}
.y2a7{bottom:155.601628px;}
.y1d5{bottom:155.735317px;}
.y21e{bottom:155.768472px;}
.y273{bottom:155.770272px;}
.y245{bottom:156.030542px;}
.y2ef{bottom:156.187976px;}
.y85{bottom:156.420000px;}
.y247{bottom:156.511856px;}
.y8b{bottom:156.516590px;}
.y2e7{bottom:156.837750px;}
.y1e5{bottom:156.879036px;}
.y2a4{bottom:156.950013px;}
.y29b{bottom:157.202835px;}
.y1e7{bottom:157.204093px;}
.y183{bottom:157.237453px;}
.y326{bottom:157.327200px;}
.y251{bottom:157.342122px;}
.y2b2{bottom:157.479735px;}
.y5a{bottom:157.538932px;}
.y299{bottom:157.744597px;}
.y2ed{bottom:157.812411px;}
.y24d{bottom:157.979863px;}
.y2f8{bottom:158.125265px;}
.y255{bottom:158.148323px;}
.y193{bottom:159.316050px;}
.y1c6{bottom:161.632800px;}
.y181{bottom:162.224642px;}
.y1ad{bottom:163.260000px;}
.y2b0{bottom:164.065150px;}
.y2a6{bottom:164.630991px;}
.y14e{bottom:164.936852px;}
.y24f{bottom:165.007048px;}
.y1e4{bottom:165.210128px;}
.y1e6{bottom:165.366637px;}
.y2b1{bottom:165.425574px;}
.y246{bottom:165.488362px;}
.y2f7{bottom:165.633763px;}
.y2ee{bottom:165.645796px;}
.y244{bottom:165.656822px;}
.y2af{bottom:165.690436px;}
.y1dd{bottom:165.691694px;}
.y230{bottom:165.772800px;}
.y256{bottom:165.981709px;}
.y18b{bottom:166.138795px;}
.y250{bottom:166.150169px;}
.y24e{bottom:166.306596px;}
.y1dc{bottom:166.341808px;}
.y93{bottom:166.816347px;}
.y177{bottom:169.200000px;}
.yca{bottom:169.912800px;}
.y30{bottom:170.100000px;}
.y141{bottom:171.000000px;}
.y9d{bottom:171.201273px;}
.y50{bottom:172.612800px;}
.y126{bottom:177.586560px;}
.y1f6{bottom:177.804701px;}
.y311{bottom:177.819164px;}
.y265{bottom:177.820214px;}
.y2bf{bottom:177.828629px;}
.y1ed{bottom:177.828779px;}
.y308{bottom:177.831197px;}
.y25c{bottom:177.832246px;}
.y2b7{bottom:177.840668px;}
.yfc{bottom:178.020000px;}
.y84{bottom:179.272800px;}
.y325{bottom:180.180000px;}
.y5b{bottom:182.597639px;}
.y2dc{bottom:183.179430px;}
.y1c5{bottom:184.320000px;}
.y8f{bottom:184.392191px;}
.y1ac{bottom:185.947200px;}
.y22f{bottom:188.460000px;}
.y192{bottom:189.134550px;}
.y54{bottom:190.046547px;}
.y14f{bottom:190.725354px;}
.y1f9{bottom:191.878467px;}
.y314{bottom:191.885565px;}
.y268{bottom:191.886615px;}
.y2c2{bottom:191.902396px;}
.y176{bottom:192.052800px;}
.yc9{bottom:192.600000px;}
.y2f{bottom:192.787200px;}
.ya8{bottom:193.413450px;}
.y140{bottom:193.687200px;}
.y4f{bottom:195.300000px;}
.y97{bottom:195.812273px;}
.y9e{bottom:196.727807px;}
.y147{bottom:198.237971px;}
.y125{bottom:200.273760px;}
.yfb{bottom:200.707200px;}
.y83{bottom:201.960000px;}
.y145{bottom:202.198950px;}
.y324{bottom:202.867200px;}
.y182{bottom:203.423159px;}
.y2db{bottom:204.552288px;}
.y8e{bottom:205.883147px;}
.y1c4{bottom:207.172800px;}
.y5c{bottom:207.656345px;}
.y157{bottom:208.090380px;}
.y18c{bottom:208.553993px;}
.y1ab{bottom:208.800000px;}
.y307{bottom:210.343957px;}
.y25b{bottom:210.345007px;}
.y1ec{bottom:210.346523px;}
.y55{bottom:210.440646px;}
.y22e{bottom:211.312800px;}
.y2de{bottom:211.855877px;}
.y1b4{bottom:212.001683px;}
.y21d{bottom:212.490600px;}
.y272{bottom:212.492400px;}
.y175{bottom:214.740000px;}
.y317{bottom:215.347650px;}
.y26b{bottom:215.348850px;}
.y2c5{bottom:215.358000px;}
.y1fc{bottom:215.358300px;}
.yc8{bottom:215.452800px;}
.y2e{bottom:215.640000px;}
.y150{bottom:216.513856px;}
.y13f{bottom:216.540000px;}
.y4e{bottom:217.987200px;}
.y2b6{bottom:218.484839px;}
.y94{bottom:218.796994px;}
.ya7{bottom:218.799600px;}
.y191{bottom:218.953050px;}
.y316{bottom:219.364523px;}
.y26a{bottom:219.365723px;}
.y2c4{bottom:219.406157px;}
.y1fb{bottom:219.406307px;}
.y2da{bottom:220.474350px;}
.y9f{bottom:222.254340px;}
.y17c{bottom:222.890446px;}
.y124{bottom:223.126560px;}
.yfa{bottom:223.560000px;}
.y15a{bottom:223.753704px;}
.y82{bottom:224.812800px;}
.y323{bottom:225.720000px;}
.y1c3{bottom:229.860000px;}
.y1aa{bottom:231.487200px;}
.y1f5{bottom:231.992915px;}
.y310{bottom:232.003087px;}
.y264{bottom:232.004137px;}
.y2be{bottom:232.016843px;}
.y5d{bottom:232.715052px;}
.y22d{bottom:234.000000px;}
.y95{bottom:235.132049px;}
.y174{bottom:237.592800px;}
.yc7{bottom:238.140000px;}
.y2d{bottom:238.327200px;}
.y13e{bottom:239.227200px;}
.y223{bottom:239.936932px;}
.y278{bottom:239.950599px;}
.yf3{bottom:240.660000px;}
.y4d{bottom:240.840000px;}
.y56{bottom:241.779096px;}
.y62{bottom:242.174403px;}
.y151{bottom:242.302358px;}
.y306{bottom:242.856718px;}
.y25a{bottom:242.857768px;}
.y1eb{bottom:242.864268px;}
.ya6{bottom:244.185600px;}
.y123{bottom:245.813760px;}
.y81{bottom:247.500000px;}
.ya0{bottom:247.780874px;}
.y322{bottom:248.407200px;}
.y190{bottom:248.771550px;}
.y1bd{bottom:249.145599px;}
.y18d{bottom:250.969192px;}
.y17b{bottom:251.259600px;}
.y146{bottom:251.343985px;}
.yf9{bottom:251.425800px;}
.y156{bottom:251.432400px;}
.y1a9{bottom:254.340000px;}
.y1c2{bottom:255.957480px;}
.y5e{bottom:257.773759px;}
.y61{bottom:258.543150px;}
.y2b5{bottom:259.129009px;}
.y173{bottom:260.280000px;}
.y96{bottom:260.658582px;}
.yc6{bottom:260.992800px;}
.y2c{bottom:261.180000px;}
.y13d{bottom:262.080000px;}
.y4c{bottom:263.527200px;}
.y2e5{bottom:264.888463px;}
.y22c{bottom:264.960000px;}
.y1bb{bottom:267.130800px;}
.y152{bottom:268.090860px;}
.y122{bottom:268.666560px;}
.y21b{bottom:269.272800px;}
.ya5{bottom:269.571600px;}
.y2dd{bottom:269.651049px;}
.y1b3{bottom:269.788024px;}
.y80{bottom:270.352800px;}
.y321{bottom:271.260000px;}
.yf8{bottom:272.132640px;}
.ya1{bottom:273.307407px;}
.y194{bottom:274.671898px;}
.y305{bottom:275.369479px;}
.y259{bottom:275.370529px;}
.y1ea{bottom:275.382012px;}
.y1c1{bottom:277.740000px;}
.y172{bottom:283.132800px;}
.y2b{bottom:283.867200px;}
.y13c{bottom:284.767200px;}
.y1a8{bottom:285.300000px;}
.y1f4{bottom:286.181129px;}
.y30f{bottom:286.187011px;}
.y263{bottom:286.188061px;}
.y2bd{bottom:286.205058px;}
.y4b{bottom:286.380000px;}
.yc5{bottom:287.812800px;}
.y68{bottom:290.754750px;}
.y67{bottom:290.756931px;}
.y121{bottom:291.353760px;}
.y271{bottom:291.511500px;}
.y22b{bottom:291.584880px;}
.y21a{bottom:291.960000px;}
.yf7{bottom:292.839480px;}
.y7f{bottom:293.040000px;}
.y320{bottom:293.947200px;}
.y155{bottom:294.481334px;}
.y1ba{bottom:294.504900px;}
.y60{bottom:294.704548px;}
.ya4{bottom:294.957600px;}
.yaa{bottom:297.013350px;}
.y26f{bottom:297.892950px;}
.y2c9{bottom:297.912450px;}
.y2b4{bottom:299.773180px;}
.y2e3{bottom:302.410500px;}
.yf2{bottom:303.300000px;}
.y1bc{bottom:304.667227px;}
.y195{bottom:304.727541px;}
.y1c0{bottom:305.460000px;}
.y171{bottom:305.820000px;}
.y2a{bottom:306.720000px;}
.y13b{bottom:307.620000px;}
.y304{bottom:307.882239px;}
.y258{bottom:307.883289px;}
.y1e9{bottom:307.899756px;}
.y154{bottom:308.314662px;}
.y4a{bottom:309.067200px;}
.ya9{bottom:311.035476px;}
.y1a7{bottom:311.573520px;}
.y1b0{bottom:312.166500px;}
.y5f{bottom:312.700050px;}
.yf6{bottom:313.546320px;}
.y120{bottom:314.206560px;}
.y219{bottom:314.812800px;}
.y7e{bottom:315.892800px;}
.yc4{bottom:316.792800px;}
.y31f{bottom:316.800000px;}
.y26e{bottom:325.406400px;}
.y2c8{bottom:325.966050px;}
.y170{bottom:328.672800px;}
.y29{bottom:329.407200px;}
.y13a{bottom:330.307200px;}
.y49{bottom:331.920000px;}
.y31a{bottom:332.176800px;}
.y1ff{bottom:332.787600px;}
.yf5{bottom:334.253160px;}
.y1bf{bottom:336.420000px;}
.y11f{bottom:336.893760px;}
.y218{bottom:337.500000px;}
.y7d{bottom:338.580000px;}
.yc3{bottom:339.480000px;}
.y31e{bottom:339.487200px;}
.y1f3{bottom:340.369343px;}
.y30e{bottom:340.370934px;}
.y262{bottom:340.371984px;}
.y2bc{bottom:340.393272px;}
.y303{bottom:340.395000px;}
.y257{bottom:340.396050px;}
.y2b3{bottom:340.417350px;}
.y1e8{bottom:340.417500px;}
.y286{bottom:342.885600px;}
.y16f{bottom:351.360000px;}
.y28{bottom:352.260000px;}
.y139{bottom:353.160000px;}
.y26d{bottom:353.458500px;}
.y2c7{bottom:354.019650px;}
.y48{bottom:354.607200px;}
.yf4{bottom:354.960000px;}
.y319{bottom:357.735900px;}
.y1fe{bottom:358.112700px;}
.y11e{bottom:359.746560px;}
.y217{bottom:360.352800px;}
.y7c{bottom:361.432800px;}
.yc2{bottom:362.332800px;}
.y31d{bottom:362.340000px;}
.y1be{bottom:362.694240px;}
.y1c9{bottom:363.274500px;}
.y285{bottom:365.572800px;}
.yec{bottom:373.140000px;}
.y16e{bottom:374.047200px;}
.y27{bottom:374.947200px;}
.y138{bottom:375.847200px;}
.y47{bottom:377.460000px;}
.y26c{bottom:381.510600px;}
.y2c6{bottom:382.073400px;}
.y11d{bottom:382.433760px;}
.y216{bottom:383.040000px;}
.y318{bottom:383.294850px;}
.y1fd{bottom:383.437800px;}
.y7b{bottom:384.120000px;}
.yc1{bottom:385.020000px;}
.y31c{bottom:385.027200px;}
.y284{bottom:388.425600px;}
.y31b{bottom:390.222000px;}
.y270{bottom:390.223050px;}
.y2ca{bottom:390.241350px;}
.y200{bottom:390.241500px;}
.yf1{bottom:394.172640px;}
.y16d{bottom:396.900000px;}
.y26{bottom:397.800000px;}
.y137{bottom:398.700000px;}
.y46{bottom:400.147200px;}
.y11c{bottom:405.286560px;}
.y215{bottom:405.892800px;}
.y7a{bottom:406.972800px;}
.yc0{bottom:407.872800px;}
.y283{bottom:411.112800px;}
.yf0{bottom:414.879480px;}
.y16c{bottom:419.587200px;}
.y25{bottom:420.487200px;}
.y45{bottom:423.000000px;}
.y136{bottom:424.620000px;}
.y11b{bottom:427.973760px;}
.y214{bottom:428.580000px;}
.y79{bottom:429.660000px;}
.ybf{bottom:430.560000px;}
.y282{bottom:433.965600px;}
.yef{bottom:435.586320px;}
.yeb{bottom:435.600000px;}
.y16b{bottom:442.440000px;}
.y44{bottom:445.687200px;}
.y24{bottom:447.489360px;}
.y11a{bottom:450.826560px;}
.y213{bottom:451.432800px;}
.y135{bottom:451.972800px;}
.y78{bottom:452.512800px;}
.ybe{bottom:453.412800px;}
.yee{bottom:456.293160px;}
.y281{bottom:456.652800px;}
.y16a{bottom:465.127200px;}
.y43{bottom:468.540000px;}
.y119{bottom:473.513760px;}
.y212{bottom:474.120000px;}
.y77{bottom:475.200000px;}
.ybd{bottom:476.100000px;}
.y23{bottom:476.287200px;}
.yed{bottom:477.000000px;}
.y280{bottom:479.340000px;}
.y134{bottom:480.952800px;}
.y169{bottom:487.980000px;}
.y42{bottom:491.227200px;}
.y118{bottom:496.366560px;}
.y211{bottom:496.972800px;}
.y76{bottom:498.052800px;}
.ybc{bottom:498.952800px;}
.y22{bottom:499.140000px;}
.y27f{bottom:502.192800px;}
.y133{bottom:503.640000px;}
.ye5{bottom:505.620000px;}
.y41{bottom:514.080000px;}
.y168{bottom:518.939820px;}
.y117{bottom:519.053760px;}
.y210{bottom:519.660000px;}
.y75{bottom:520.740000px;}
.ybb{bottom:521.640000px;}
.y21{bottom:521.827200px;}
.y27e{bottom:524.880000px;}
.y132{bottom:526.492800px;}
.yea{bottom:537.099480px;}
.y116{bottom:541.906560px;}
.y20f{bottom:542.512800px;}
.y74{bottom:543.592800px;}
.yba{bottom:544.492800px;}
.y20{bottom:544.680000px;}
.y40{bottom:545.040000px;}
.y17a{bottom:545.506500px;}
.y27d{bottom:547.732800px;}
.y131{bottom:549.180000px;}
.y2d6{bottom:554.580000px;}
.y22a{bottom:555.832800px;}
.ye9{bottom:557.806320px;}
.y115{bottom:564.593760px;}
.y20e{bottom:565.200000px;}
.y73{bottom:566.280000px;}
.yb9{bottom:567.180000px;}
.y1f{bottom:567.367200px;}
.ye4{bottom:568.080000px;}
.y27c{bottom:570.420000px;}
.y52{bottom:571.488000px;}
.y3f{bottom:571.502160px;}
.y130{bottom:572.032800px;}
.y2d5{bottom:577.432800px;}
.ye8{bottom:578.513160px;}
.y229{bottom:578.520000px;}
.y114{bottom:587.446560px;}
.y72{bottom:589.132800px;}
.yb8{bottom:590.032800px;}
.y1e{bottom:590.220000px;}
.y12f{bottom:594.720000px;}
.y20d{bottom:596.160000px;}
.y27b{bottom:596.520000px;}
.ye7{bottom:599.220000px;}
.y2d4{bottom:600.120000px;}
.y228{bottom:601.372800px;}
.y113{bottom:610.133760px;}
.y71{bottom:611.820000px;}
.yb7{bottom:612.720000px;}
.y1d{bottom:612.907200px;}
.y12e{bottom:617.572800px;}
.y20c{bottom:622.602000px;}
.y21c{bottom:622.678500px;}
.y2d3{bottom:622.972800px;}
.y227{bottom:624.060000px;}
.y112{bottom:632.820960px;}
.y70{bottom:634.672800px;}
.yb6{bottom:635.572800px;}
.y1c{bottom:635.760000px;}
.yde{bottom:638.100000px;}
.y12d{bottom:640.260000px;}
.y1a6{bottom:641.332800px;}
.y2d2{bottom:645.660000px;}
.y226{bottom:646.912800px;}
.y27a{bottom:655.020000px;}
.y111{bottom:656.948880px;}
.y6f{bottom:657.360000px;}
.yb5{bottom:658.260000px;}
.y1b{bottom:658.447200px;}
.y335{bottom:660.436560px;}
.y12c{bottom:662.947200px;}
.y1a5{bottom:664.020000px;}
.y2d1{bottom:668.347200px;}
.ye3{bottom:669.579480px;}
.y225{bottom:669.600000px;}
.y110{bottom:679.636080px;}
.y6e{bottom:680.047200px;}
.yb4{bottom:681.112800px;}
.y1a{bottom:681.300000px;}
.y279{bottom:681.474240px;}
.y287{bottom:682.027500px;}
.y12b{bottom:685.800000px;}
.y1a4{bottom:686.872800px;}
.y334{bottom:687.429360px;}
.ye2{bottom:690.286320px;}
.y2d0{bottom:691.200000px;}
.ydd{bottom:700.560000px;}
.y6d{bottom:702.900000px;}
.y10f{bottom:703.581840px;}
.yb3{bottom:703.800000px;}
.y19{bottom:703.987200px;}
.y1a3{bottom:709.560000px;}
.ye1{bottom:710.993160px;}
.y2cf{bottom:713.887200px;}
.y333{bottom:716.227200px;}
.y12a{bottom:716.753160px;}
.y6c{bottom:725.587200px;}
.y10e{bottom:726.434640px;}
.yb2{bottom:726.652800px;}
.y18{bottom:726.840000px;}
.y224{bottom:727.020000px;}
.y232{bottom:727.563000px;}
.ye0{bottom:731.700000px;}
.y1a2{bottom:732.412800px;}
.y2ce{bottom:736.740000px;}
.y129{bottom:737.460000px;}
.y332{bottom:739.080000px;}
.y6b{bottom:748.440000px;}
.y10d{bottom:749.121840px;}
.yb1{bottom:749.340000px;}
.y17{bottom:749.527200px;}
.y1a1{bottom:755.100000px;}
.y331{bottom:761.767200px;}
.y128{bottom:763.909920px;}
.y144{bottom:763.927500px;}
.y2cd{bottom:767.693160px;}
.ydb{bottom:772.020000px;}
.yb0{bottom:772.027200px;}
.y16{bottom:772.380000px;}
.y10c{bottom:773.067600px;}
.y1a0{bottom:777.952800px;}
.y6a{bottom:779.400000px;}
.y330{bottom:784.620000px;}
.y2cc{bottom:788.400000px;}
.yaf{bottom:794.880000px;}
.y15{bottom:795.067200px;}
.y10b{bottom:795.920400px;}
.y19f{bottom:800.640000px;}
.y69{bottom:805.860000px;}
.y87{bottom:806.764500px;}
.y32f{bottom:807.307200px;}
.yda{bottom:810.900000px;}
.y2cb{bottom:814.860000px;}
.y2d9{bottom:815.539500px;}
.yae{bottom:817.567200px;}
.y10a{bottom:818.607600px;}
.y14{bottom:822.045600px;}
.y19e{bottom:823.492800px;}
.y32e{bottom:830.160000px;}
.yad{bottom:840.420000px;}
.yd9{bottom:841.460400px;}
.y109{bottom:842.553360px;}
.y19d{bottom:846.180000px;}
.y13{bottom:851.025600px;}
.y32d{bottom:852.847200px;}
.yac{bottom:863.107200px;}
.yd8{bottom:864.147600px;}
.y108{bottom:865.406160px;}
.y19c{bottom:869.032800px;}
.y12{bottom:873.712800px;}
.y32c{bottom:875.700000px;}
.y167{bottom:883.620000px;}
.yab{bottom:885.960000px;}
.yd7{bottom:887.000400px;}
.y20b{bottom:887.015520px;}
.y107{bottom:888.093360px;}
.y19b{bottom:891.720000px;}
.y32b{bottom:898.387200px;}
.y11{bottom:903.240000px;}
.y166{bottom:906.472800px;}
.y3e{bottom:908.647200px;}
.yd6{bottom:909.687600px;}
.y20a{bottom:909.702720px;}
.y106{bottom:910.946160px;}
.y19a{bottom:914.572800px;}
.y10{bottom:919.252800px;}
.y32a{bottom:921.240000px;}
.y165{bottom:929.160000px;}
.y3d{bottom:931.500000px;}
.yd5{bottom:932.540400px;}
.y209{bottom:932.555520px;}
.y105{bottom:933.633360px;}
.y199{bottom:937.260000px;}
.yf{bottom:941.940000px;}
.y329{bottom:943.927200px;}
.y164{bottom:952.012800px;}
.y3c{bottom:954.187200px;}
.yd4{bottom:955.227600px;}
.y208{bottom:955.242720px;}
.y104{bottom:956.486160px;}
.y198{bottom:960.112800px;}
.ye{bottom:964.792800px;}
.y328{bottom:970.929360px;}
.y163{bottom:974.700000px;}
.y3b{bottom:977.040000px;}
.yd3{bottom:977.914800px;}
.y207{bottom:978.095520px;}
.y103{bottom:979.173360px;}
.y197{bottom:982.800000px;}
.yd{bottom:987.480000px;}
.y3a{bottom:999.727200px;}
.y206{bottom:1000.782720px;}
.y162{bottom:1000.800000px;}
.yd2{bottom:1001.860560px;}
.y102{bottom:1002.026160px;}
.y196{bottom:1005.652800px;}
.yc{bottom:1008.189000px;}
.y39{bottom:1022.580000px;}
.y205{bottom:1023.635520px;}
.y101{bottom:1024.713360px;}
.yd1{bottom:1025.806320px;}
.y161{bottom:1028.340000px;}
.yb{bottom:1040.940000px;}
.y38{bottom:1045.267200px;}
.y204{bottom:1046.322720px;}
.y100{bottom:1048.659120px;}
.yd0{bottom:1049.934240px;}
.y160{bottom:1051.192800px;}
.y37{bottom:1068.120000px;}
.y203{bottom:1070.268480px;}
.yff{bottom:1072.604880px;}
.ycf{bottom:1073.880000px;}
.ya{bottom:1076.032800px;}
.y36{bottom:1090.807200px;}
.y202{bottom:1094.214240px;}
.yce{bottom:1096.732800px;}
.y9{bottom:1098.720000px;}
.y35{bottom:1117.800000px;}
.y201{bottom:1118.160000px;}
.ycd{bottom:1119.420000px;}
.y3{bottom:1121.580000px;}
.y33{bottom:1142.280000px;}
.y2{bottom:1143.533160px;}
.y1{bottom:1164.240000px;}
.h8{height:16.500090px;}
.h17{height:20.700000px;}
.h2b{height:32.526298px;}
.h5{height:40.964766px;}
.h30{height:46.926826px;}
.h31{height:46.980413px;}
.h28{height:47.177684px;}
.h2a{height:47.238337px;}
.h26{height:47.263069px;}
.h1d{height:47.264247px;}
.hf{height:47.284857px;}
.h1f{height:47.291335px;}
.h12{height:47.291924px;}
.hb{height:47.318423px;}
.h24{height:47.332556px;}
.h2d{height:47.344922px;}
.h14{height:47.357288px;}
.h2{height:58.651172px;}
.h20{height:60.060466px;}
.h9{height:62.373047px;}
.h1b{height:64.779840px;}
.h10{height:64.928496px;}
.hd{height:64.996037px;}
.h3{height:65.010937px;}
.h33{height:65.039737px;}
.h19{height:65.093017px;}
.h16{height:69.086250px;}
.h7{height:70.678080px;}
.h15{height:70.706880px;}
.h6{height:70.735680px;}
.hc{height:72.726674px;}
.h13{height:85.069748px;}
.h22{height:95.958589px;}
.h21{height:102.849101px;}
.h4{height:115.236000px;}
.h18{height:131.578500px;}
.h1a{height:131.760000px;}
.h27{height:256.441500px;}
.h2c{height:256.500000px;}
.he{height:315.225000px;}
.h2f{height:318.822000px;}
.h23{height:321.253500px;}
.h1e{height:321.300000px;}
.h1c{height:324.892500px;}
.h11{height:327.597000px;}
.ha{height:329.400000px;}
.h25{height:406.765500px;}
.h2e{height:406.791000px;}
.h29{height:406.797000px;}
.h32{height:406.800000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:22.500000px;}
.w6{width:53.100000px;}
.w7{width:223.201500px;}
.w4{width:280.495500px;}
.wa{width:280.800000px;}
.w9{width:356.400000px;}
.w3{width:357.300000px;}
.w8{width:399.600000px;}
.wd{width:634.077000px;}
.w5{width:638.100000px;}
.wc{width:639.000000px;}
.wb{width:639.001500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:2.312735px;}
.x11{left:8.312788px;}
.x13{left:10.869900px;}
.x4c{left:14.249850px;}
.x2f{left:16.615500px;}
.x8d{left:19.351500px;}
.x2e{left:20.539732px;}
.x6f{left:22.127481px;}
.x3f{left:23.822832px;}
.x18{left:26.765400px;}
.x2d{left:38.550015px;}
.x17{left:40.382337px;}
.xe{left:48.626400px;}
.x70{left:52.185208px;}
.x55{left:53.886450px;}
.x33{left:55.260000px;}
.x1c{left:61.011600px;}
.x7d{left:64.088551px;}
.x5f{left:67.450406px;}
.x40{left:69.207900px;}
.x45{left:72.046650px;}
.x83{left:75.795753px;}
.x4d{left:79.602990px;}
.x67{left:81.014362px;}
.x1d{left:82.821775px;}
.xbb{left:84.820183px;}
.x88{left:87.502954px;}
.x49{left:93.008550px;}
.x8f{left:101.027310px;}
.x19{left:103.390809px;}
.x3e{left:104.973744px;}
.x78{left:107.035051px;}
.x4{left:108.540180px;}
.xb1{left:109.669351px;}
.x98{left:111.688350px;}
.x4b{left:113.970600px;}
.x37{left:116.640000px;}
.x15{left:119.672400px;}
.xa0{left:122.349390px;}
.xaf{left:124.934400px;}
.xd{left:126.975000px;}
.x1e{left:129.506166px;}
.x68{left:130.700641px;}
.x75{left:132.300000px;}
.x39{left:135.192968px;}
.x5{left:137.160000px;}
.xbc{left:139.473884px;}
.x36{left:140.583600px;}
.x89{left:142.156655px;}
.x42{left:148.339830px;}
.x90{left:150.726570px;}
.x3b{left:151.866300px;}
.x56{left:153.259008px;}
.x1f{left:154.380381px;}
.x54{left:159.485400px;}
.x32{left:161.640000px;}
.x41{left:163.803780px;}
.x60{left:166.822964px;}
.x76{left:168.480000px;}
.xf{left:170.097361px;}
.xa1{left:172.048650px;}
.x7e{left:173.395953px;}
.xb0{left:174.600000px;}
.xb6{left:179.225319px;}
.x69{left:180.386920px;}
.x20{left:182.318636px;}
.x77{left:185.760000px;}
.x8e{left:187.740000px;}
.x51{left:193.860000px;}
.x3d{left:194.993937px;}
.x16{left:197.673487px;}
.x91{left:200.425830px;}
.x57{left:202.945287px;}
.x21{left:204.128812px;}
.x3c{left:205.733611px;}
.x99{left:211.086870px;}
.x1a{left:214.860900px;}
.x61{left:216.509243px;}
.xb2{left:218.976753px;}
.xc{left:220.320000px;}
.x8{left:222.480000px;}
.x22{left:229.003027px;}
.x6a{left:230.073199px;}
.xa6{left:232.408950px;}
.xb7{left:233.879020px;}
.x1{left:236.340000px;}
.x84{left:239.756856px;}
.x50{left:247.243920px;}
.x43{left:248.654910px;}
.x92{left:250.125090px;}
.x8a{left:251.464057px;}
.x58{left:252.631565px;}
.x23{left:253.877242px;}
.x4e{left:256.511130px;}
.x9a{left:260.786130px;}
.xa{left:266.940000px;}
.x46{left:269.613570px;}
.x79{left:270.996154px;}
.x30{left:273.393000px;}
.x72{left:277.589100px;}
.x24{left:278.751457px;}
.x6b{left:279.759478px;}
.x7f{left:282.703356px;}
.xb8{left:288.532721px;}
.x1b{left:291.960000px;}
.x10{left:294.628589px;}
.x3a{left:297.676844px;}
.x93{left:299.824350px;}
.x59{left:302.317844px;}
.xbd{left:303.434987px;}
.x6{left:307.071000px;}
.x9b{left:310.485390px;}
.x62{left:315.881800px;}
.x7{left:317.874960px;}
.xa2{left:321.146430px;}
.x7a{left:325.649855px;}
.xb3{left:328.284155px;}
.x6c{left:329.445757px;}
.x25{left:331.563928px;}
.x2{left:336.243780px;}
.x80{left:337.357057px;}
.xb9{left:343.186422px;}
.x44{left:348.969990px;}
.x5a{left:352.004123px;}
.x26{left:356.438143px;}
.xbe{left:358.088688px;}
.x8b{left:360.771459px;}
.x63{left:365.568079px;}
.x47{left:369.928650px;}
.x27{left:378.248319px;}
.x7b{left:380.303556px;}
.xa7{left:381.506730px;}
.x38{left:383.408640px;}
.x34{left:384.840000px;}
.x35{left:392.940000px;}
.xba{left:397.840123px;}
.x94{left:399.222870px;}
.xae{left:400.687560px;}
.x5b{left:401.690402px;}
.x28{left:403.122534px;}
.x9c{left:409.883910px;}
.xbf{left:412.742389px;}
.x64{left:415.254358px;}
.xa3{left:420.544950px;}
.x29{left:427.996749px;}
.xa8{left:431.205990px;}
.x7c{left:434.957257px;}
.xb4{left:437.591557px;}
.x81{left:446.664459px;}
.x95{left:448.922130px;}
.x5c{left:451.376681px;}
.x2a{left:452.870965px;}
.x85{left:458.371660px;}
.x9d{left:459.583170px;}
.x65{left:464.940637px;}
.xc0{left:467.396091px;}
.x48{left:470.243730px;}
.x2b{left:477.745180px;}
.xa9{left:480.905250px;}
.x14{left:484.725000px;}
.x73{left:489.513150px;}
.x4a{left:491.205630px;}
.xb5{left:492.245258px;}
.x8c{left:494.539200px;}
.xc3{left:496.964850px;}
.x96{left:498.621390px;}
.x5d{left:501.062960px;}
.x2c{left:505.683435px;}
.xac{left:506.859900px;}
.x9e{left:509.282430px;}
.x86{left:513.025361px;}
.x66{left:514.626916px;}
.xa4{left:519.943470px;}
.xc1{left:522.049792px;}
.x52{left:528.427950px;}
.xaa{left:530.604510px;}
.x31{left:541.624650px;}
.x53{left:543.554700px;}
.x97{left:548.320650px;}
.x5e{left:550.749238px;}
.x82{left:555.971861px;}
.x9f{left:558.981690px;}
.x4f{left:560.478300px;}
.x87{left:567.679062px;}
.xa5{left:569.642730px;}
.xc2{left:576.703493px;}
.x6d{left:577.877151px;}
.xab{left:580.303770px;}
.x6e{left:595.081050px;}
.x71{left:631.287600px;}
.x9{left:762.479645px;}
.xad{left:763.740000px;}
.xb{left:765.879120px;}
.x74{left:771.359040px;}
.x3{left:784.620000px;}
@media print{
.vd{vertical-align:-50.069985pt;}
.v2{vertical-align:-24.320000pt;}
.v6{vertical-align:-10.665035pt;}
.v5{vertical-align:-4.711520pt;}
.vb{vertical-align:-3.340854pt;}
.v9{vertical-align:-1.541933pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:11.350339pt;}
.va{vertical-align:14.819687pt;}
.v1{vertical-align:21.120000pt;}
.v3{vertical-align:22.585112pt;}
.v4{vertical-align:33.580288pt;}
.vc{vertical-align:43.259781pt;}
.v8{vertical-align:49.384681pt;}
.ls76{letter-spacing:-1.295360pt;}
.ls77{letter-spacing:-1.177600pt;}
.ls2c{letter-spacing:-1.059840pt;}
.ls18{letter-spacing:-1.000960pt;}
.ls15{letter-spacing:-0.942080pt;}
.ls2a{letter-spacing:-0.883200pt;}
.ls29{letter-spacing:-0.765440pt;}
.ls12{letter-spacing:-0.647680pt;}
.lsf{letter-spacing:-0.529920pt;}
.ls85{letter-spacing:-0.471680pt;}
.ls71{letter-spacing:-0.471557pt;}
.ls30{letter-spacing:-0.471416pt;}
.ls3d{letter-spacing:-0.471152pt;}
.ls68{letter-spacing:-0.471146pt;}
.ls61{letter-spacing:-0.470876pt;}
.ls72{letter-spacing:-0.470865pt;}
.ls7e{letter-spacing:-0.470618pt;}
.ls5c{letter-spacing:-0.424960pt;}
.ls55{letter-spacing:-0.412160pt;}
.ls3e{letter-spacing:-0.385488pt;}
.ls6e{letter-spacing:-0.385483pt;}
.ls11{letter-spacing:-0.353280pt;}
.ls5d{letter-spacing:-0.336000pt;}
.lsb{letter-spacing:-0.318720pt;}
.ls2f{letter-spacing:-0.299992pt;}
.ls3a{letter-spacing:-0.299824pt;}
.ls67{letter-spacing:-0.299820pt;}
.ls32{letter-spacing:-0.299779pt;}
.ls5f{letter-spacing:-0.299649pt;}
.ls70{letter-spacing:-0.299641pt;}
.ls7d{letter-spacing:-0.299484pt;}
.ls78{letter-spacing:-0.299100pt;}
.ls89{letter-spacing:-0.297509pt;}
.ls14{letter-spacing:-0.294400pt;}
.ls6f{letter-spacing:-0.265600pt;}
.ls69{letter-spacing:-0.256989pt;}
.ls60{letter-spacing:-0.256842pt;}
.ls38{letter-spacing:-0.235520pt;}
.ls8a{letter-spacing:-0.212507pt;}
.ls83{letter-spacing:-0.212480pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls84{letter-spacing:-0.159360pt;}
.ls47{letter-spacing:-0.144000pt;}
.ls16{letter-spacing:-0.117760pt;}
.ls4e{letter-spacing:-0.106240pt;}
.ls2b{letter-spacing:-0.053120pt;}
.lsc{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.010240pt;}
.ls13{letter-spacing:0.048000pt;}
.ls1a{letter-spacing:0.058880pt;}
.ls3{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.096000pt;}
.ls44{letter-spacing:0.104960pt;}
.lse{letter-spacing:0.106240pt;}
.ls86{letter-spacing:0.116864pt;}
.ls10{letter-spacing:0.117760pt;}
.ls63{letter-spacing:0.122176pt;}
.ls4d{letter-spacing:0.132800pt;}
.ls4c{letter-spacing:0.159360pt;}
.ls8d{letter-spacing:0.168960pt;}
.ls8c{letter-spacing:0.171134pt;}
.ls3c{letter-spacing:0.171328pt;}
.ls1{letter-spacing:0.212480pt;}
.ls2d{letter-spacing:0.235520pt;}
.ls79{letter-spacing:0.256371pt;}
.ls90{letter-spacing:0.259072pt;}
.ls26{letter-spacing:0.294400pt;}
.lsd{letter-spacing:0.318720pt;}
.ls5b{letter-spacing:0.321052pt;}
.ls37{letter-spacing:0.321240pt;}
.ls28{letter-spacing:0.321420pt;}
.ls97{letter-spacing:0.332800pt;}
.ls88{letter-spacing:0.340011pt;}
.ls8b{letter-spacing:0.340399pt;}
.ls7a{letter-spacing:0.341828pt;}
.ls7f{letter-spacing:0.342268pt;}
.ls73{letter-spacing:0.342447pt;}
.ls5e{letter-spacing:0.342455pt;}
.ls31{letter-spacing:0.342605pt;}
.ls66{letter-spacing:0.342652pt;}
.ls39{letter-spacing:0.342656pt;}
.ls2e{letter-spacing:0.342848pt;}
.ls6d{letter-spacing:0.342950pt;}
.ls80{letter-spacing:0.343040pt;}
.ls3b{letter-spacing:0.343130pt;}
.ls56{letter-spacing:0.345600pt;}
.ls65{letter-spacing:0.371840pt;}
.ls25{letter-spacing:0.541696pt;}
.ls24{letter-spacing:0.647680pt;}
.ls0{letter-spacing:0.796800pt;}
.ls9{letter-spacing:0.864000pt;}
.ls23{letter-spacing:1.295360pt;}
.ls93{letter-spacing:1.819392pt;}
.ls96{letter-spacing:1.884160pt;}
.ls36{letter-spacing:1.937152pt;}
.ls35{letter-spacing:1.943040pt;}
.ls7{letter-spacing:2.531840pt;}
.ls1c{letter-spacing:2.578944pt;}
.ls1b{letter-spacing:2.614272pt;}
.lsa{letter-spacing:3.179520pt;}
.ls7b{letter-spacing:3.715328pt;}
.ls49{letter-spacing:3.780096pt;}
.ls48{letter-spacing:3.827200pt;}
.ls8e{letter-spacing:3.891968pt;}
.ls6b{letter-spacing:4.474880pt;}
.ls1e{letter-spacing:4.498432pt;}
.ls34{letter-spacing:5.122560pt;}
.ls42{letter-spacing:5.770240pt;}
.ls95{letter-spacing:7.012608pt;}
.ls20{letter-spacing:7.065600pt;}
.ls1f{letter-spacing:8.302080pt;}
.ls94{letter-spacing:8.480000pt;}
.ls59{letter-spacing:8.949760pt;}
.ls51{letter-spacing:9.597440pt;}
.ls64{letter-spacing:9.609216pt;}
.ls33{letter-spacing:10.133248pt;}
.ls22{letter-spacing:10.233344pt;}
.ls21{letter-spacing:10.245120pt;}
.ls1d{letter-spacing:11.540480pt;}
.ls40{letter-spacing:12.117504pt;}
.ls6{letter-spacing:12.188160pt;}
.ls8f{letter-spacing:12.829952pt;}
.ls27{letter-spacing:13.063752pt;}
.ls41{letter-spacing:14.072320pt;}
.ls54{letter-spacing:14.720000pt;}
.ls4b{letter-spacing:16.015360pt;}
.ls45{letter-spacing:17.251840pt;}
.ls46{letter-spacing:17.281280pt;}
.ls43{letter-spacing:19.194880pt;}
.ls53{letter-spacing:19.836672pt;}
.ls58{letter-spacing:19.842560pt;}
.ls62{letter-spacing:22.374400pt;}
.ls74{letter-spacing:25.423477pt;}
.ls5{letter-spacing:26.908160pt;}
.ls8{letter-spacing:27.496960pt;}
.ls4a{letter-spacing:32.266240pt;}
.ls3f{letter-spacing:33.267200pt;}
.ls6a{letter-spacing:41.628160pt;}
.ls81{letter-spacing:44.160000pt;}
.ls82{letter-spacing:44.807680pt;}
.ls92{letter-spacing:50.577920pt;}
.ls91{letter-spacing:51.225600pt;}
.ls5a{letter-spacing:51.814400pt;}
.ls6c{letter-spacing:75.254887pt;}
.ls57{letter-spacing:79.308160pt;}
.ls19{letter-spacing:93.089280pt;}
.ls52{letter-spacing:111.989760pt;}
.ls50{letter-spacing:154.265600pt;}
.ls75{letter-spacing:170.743219pt;}
.ls7c{letter-spacing:172.025075pt;}
.ls4f{letter-spacing:174.108160pt;}
.ls87{letter-spacing:190.533477pt;}
.ws9b{word-spacing:-58.880000pt;}
.ws3{word-spacing:-32.928000pt;}
.wsd{word-spacing:-20.136960pt;}
.wsc7{word-spacing:-19.070080pt;}
.wse4{word-spacing:-19.016960pt;}
.wse3{word-spacing:-18.910720pt;}
.wsb1{word-spacing:-18.857600pt;}
.wsc6{word-spacing:-18.804480pt;}
.wsb0{word-spacing:-18.592000pt;}
.ws7{word-spacing:-16.464000pt;}
.ws7b{word-spacing:-16.272000pt;}
.wse{word-spacing:-16.224000pt;}
.ws38{word-spacing:-15.014400pt;}
.wsf1{word-spacing:-14.955520pt;}
.ws8{word-spacing:-14.837760pt;}
.wsc{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.602240pt;}
.ws5f{word-spacing:-14.484480pt;}
.ws35{word-spacing:-14.425600pt;}
.ws6{word-spacing:-14.366720pt;}
.wsa6{word-spacing:-14.307840pt;}
.ws4{word-spacing:-14.190080pt;}
.wsa{word-spacing:-14.072320pt;}
.ws34{word-spacing:-13.954560pt;}
.ws36{word-spacing:-13.836800pt;}
.ws9{word-spacing:-13.777920pt;}
.ws9a{word-spacing:-13.719040pt;}
.wsc5{word-spacing:-13.660160pt;}
.ws2{word-spacing:-13.598720pt;}
.ws9c{word-spacing:-13.386240pt;}
.ws1{word-spacing:-13.280000pt;}
.ws37{word-spacing:-13.226880pt;}
.ws0{word-spacing:-12.961280pt;}
.wsf0{word-spacing:-12.855040pt;}
.wsfd{word-spacing:-11.063040pt;}
.wsd9{word-spacing:-11.060150pt;}
.ws3a{word-spacing:-11.056848pt;}
.ws60{word-spacing:-11.050656pt;}
.wsc8{word-spacing:-11.050518pt;}
.ws3c{word-spacing:-11.049005pt;}
.wsb2{word-spacing:-11.044189pt;}
.ws3b{word-spacing:-11.035420pt;}
.ws66{word-spacing:-11.029240pt;}
.wsb5{word-spacing:-11.022785pt;}
.ws10d{word-spacing:-10.977866pt;}
.ws10c{word-spacing:-10.965344pt;}
.ws63{word-spacing:-10.879328pt;}
.ws10e{word-spacing:-10.867001pt;}
.ws39{word-spacing:-10.414008pt;}
.ws62{word-spacing:-10.408176pt;}
.wscc{word-spacing:-10.408046pt;}
.wsb3{word-spacing:-10.402085pt;}
.wse5{word-spacing:-10.401826pt;}
.wsf9{word-spacing:-10.396382pt;}
.ws64{word-spacing:-10.322512pt;}
.wsda{word-spacing:-10.322383pt;}
.ws65{word-spacing:-10.236848pt;}
.wsce{word-spacing:-10.236721pt;}
.wsb6{word-spacing:-10.230857pt;}
.wse7{word-spacing:-10.230602pt;}
.wsfb{word-spacing:-10.225249pt;}
.ws5{word-spacing:-9.280000pt;}
.ws5a{word-spacing:-3.944960pt;}
.ws59{word-spacing:-3.827200pt;}
.ws8b{word-spacing:-3.473920pt;}
.ws2f{word-spacing:-3.297280pt;}
.ws30{word-spacing:-3.179520pt;}
.ws8c{word-spacing:-2.649600pt;}
.ws45{word-spacing:-2.531840pt;}
.wsb4{word-spacing:-2.204557pt;}
.ws5b{word-spacing:-2.099944pt;}
.wsd6{word-spacing:-2.098742pt;}
.wsc2{word-spacing:-2.097540pt;}
.ws10b{word-spacing:-2.097487pt;}
.ws103{word-spacing:-2.093698pt;}
.ws117{word-spacing:-2.082565pt;}
.ws2d{word-spacing:-2.060800pt;}
.ws4d{word-spacing:-2.001920pt;}
.ws2a{word-spacing:-1.943040pt;}
.ws46{word-spacing:-1.884160pt;}
.wsd4{word-spacing:-1.589760pt;}
.ws79{word-spacing:-1.456288pt;}
.wsd7{word-spacing:-1.456270pt;}
.wsc1{word-spacing:-1.455436pt;}
.wsef{word-spacing:-1.455399pt;}
.ws102{word-spacing:-1.454638pt;}
.wsf8{word-spacing:-1.452770pt;}
.ws116{word-spacing:-1.445045pt;}
.ws2b{word-spacing:-1.413120pt;}
.ws42{word-spacing:-1.295360pt;}
.ws43{word-spacing:-0.942080pt;}
.wsd0{word-spacing:-0.883200pt;}
.wse2{word-spacing:-0.813798pt;}
.ws24{word-spacing:-0.765440pt;}
.wsf7{word-spacing:-0.726385pt;}
.ws15{word-spacing:-0.647680pt;}
.wscf{word-spacing:-0.424960pt;}
.wsb8{word-spacing:-0.353280pt;}
.ws5c{word-spacing:-0.342848pt;}
.ws100{word-spacing:-0.342268pt;}
.wsa5{word-spacing:-0.318720pt;}
.ws47{word-spacing:-0.294400pt;}
.ws13{word-spacing:-0.288000pt;}
.wsea{word-spacing:-0.265600pt;}
.ws115{word-spacing:-0.255008pt;}
.ws53{word-spacing:-0.235520pt;}
.ws10f{word-spacing:-0.212480pt;}
.ws77{word-spacing:-0.171565pt;}
.ws5e{word-spacing:-0.171302pt;}
.ws10a{word-spacing:-0.171223pt;}
.ws114{word-spacing:-0.170005pt;}
.ws11{word-spacing:-0.159360pt;}
.ws14{word-spacing:-0.117760pt;}
.wsd2{word-spacing:-0.106240pt;}
.ws10{word-spacing:0.000000pt;}
.wsa2{word-spacing:0.053120pt;}
.ws87{word-spacing:0.117760pt;}
.ws8f{word-spacing:0.144000pt;}
.wsa3{word-spacing:0.212480pt;}
.wsa4{word-spacing:0.265600pt;}
.ws17{word-spacing:0.294400pt;}
.wsfe{word-spacing:0.318720pt;}
.wsba{word-spacing:0.336000pt;}
.ws41{word-spacing:0.353280pt;}
.ws8e{word-spacing:0.384000pt;}
.wsbd{word-spacing:0.412160pt;}
.wsbf{word-spacing:0.428069pt;}
.wsd5{word-spacing:0.428315pt;}
.wsb9{word-spacing:0.432000pt;}
.ws113{word-spacing:0.467515pt;}
.ws101{word-spacing:0.470618pt;}
.ws109{word-spacing:0.470865pt;}
.wsc3{word-spacing:0.470876pt;}
.ws5d{word-spacing:0.471416pt;}
.wsf{word-spacing:0.478080pt;}
.ws2c{word-spacing:0.529920pt;}
.ws112{word-spacing:0.584320pt;}
.wsc4{word-spacing:0.642104pt;}
.ws78{word-spacing:0.642480pt;}
.wsee{word-spacing:0.643032pt;}
.ws108{word-spacing:0.643200pt;}
.ws16{word-spacing:0.647680pt;}
.ws12{word-spacing:0.690560pt;}
.wsa8{word-spacing:0.765440pt;}
.ws84{word-spacing:0.942080pt;}
.ws31{word-spacing:1.000960pt;}
.ws4c{word-spacing:1.059840pt;}
.ws52{word-spacing:1.177600pt;}
.wsb7{word-spacing:1.221760pt;}
.ws44{word-spacing:1.295360pt;}
.ws76{word-spacing:1.648640pt;}
.ws32{word-spacing:1.825280pt;}
.ws33{word-spacing:1.943040pt;}
.wsd3{word-spacing:2.296320pt;}
.ws1f{word-spacing:2.472960pt;}
.wsc0{word-spacing:2.568416pt;}
.ws7a{word-spacing:2.569920pt;}
.ws25{word-spacing:2.590720pt;}
.ws3f{word-spacing:2.885120pt;}
.wsec{word-spacing:2.944000pt;}
.ws29{word-spacing:3.061760pt;}
.ws2e{word-spacing:3.179520pt;}
.ws83{word-spacing:3.297280pt;}
.ws9d{word-spacing:3.709440pt;}
.ws98{word-spacing:3.827200pt;}
.ws55{word-spacing:4.180480pt;}
.ws26{word-spacing:4.357120pt;}
.ws27{word-spacing:4.474880pt;}
.wsdf{word-spacing:4.592640pt;}
.wseb{word-spacing:4.828160pt;}
.ws28{word-spacing:5.004800pt;}
.ws54{word-spacing:5.122560pt;}
.ws6d{word-spacing:5.652480pt;}
.ws6e{word-spacing:5.770240pt;}
.wsa1{word-spacing:6.123520pt;}
.ws4a{word-spacing:6.300160pt;}
.wsf6{word-spacing:6.417920pt;}
.ws110{word-spacing:6.535680pt;}
.wsa0{word-spacing:6.712320pt;}
.ws4b{word-spacing:6.947840pt;}
.ws80{word-spacing:7.065600pt;}
.wsed{word-spacing:7.360000pt;}
.ws22{word-spacing:7.536640pt;}
.ws6c{word-spacing:7.654400pt;}
.ws48{word-spacing:8.184320pt;}
.ws49{word-spacing:8.302080pt;}
.ws72{word-spacing:8.655360pt;}
.ws58{word-spacing:8.832000pt;}
.ws7f{word-spacing:8.949760pt;}
.ws51{word-spacing:9.361920pt;}
.ws56{word-spacing:9.479680pt;}
.ws57{word-spacing:9.597440pt;}
.ws4e{word-spacing:9.950720pt;}
.ws50{word-spacing:10.127360pt;}
.ws4f{word-spacing:10.245120pt;}
.ws91{word-spacing:10.775040pt;}
.ws90{word-spacing:10.892800pt;}
.ws40{word-spacing:11.422720pt;}
.ws1b{word-spacing:11.540480pt;}
.ws85{word-spacing:11.658240pt;}
.ws61{word-spacing:12.040075pt;}
.ws19{word-spacing:12.070400pt;}
.ws1c{word-spacing:12.188160pt;}
.ws111{word-spacing:12.482560pt;}
.wsaa{word-spacing:12.659200pt;}
.wsa7{word-spacing:12.776960pt;}
.ws1a{word-spacing:12.835840pt;}
.ws118{word-spacing:13.424640pt;}
.ws11c{word-spacing:13.954560pt;}
.ws86{word-spacing:14.072320pt;}
.wsa9{word-spacing:14.602240pt;}
.wsaf{word-spacing:14.720000pt;}
.ws70{word-spacing:15.073280pt;}
.ws6f{word-spacing:15.367680pt;}
.ws8d{word-spacing:15.897600pt;}
.ws71{word-spacing:16.015360pt;}
.ws6b{word-spacing:16.545280pt;}
.ws106{word-spacing:17.192960pt;}
.ws93{word-spacing:17.310720pt;}
.ws95{word-spacing:17.605120pt;}
.ws75{word-spacing:17.781760pt;}
.ws74{word-spacing:17.899520pt;}
.ws94{word-spacing:17.958400pt;}
.ws81{word-spacing:18.429440pt;}
.ws82{word-spacing:18.547200pt;}
.ws9e{word-spacing:19.077120pt;}
.ws9f{word-spacing:19.194880pt;}
.wsbe{word-spacing:19.548160pt;}
.ws89{word-spacing:19.724800pt;}
.ws8a{word-spacing:19.842560pt;}
.ws88{word-spacing:20.490240pt;}
.wsde{word-spacing:21.020160pt;}
.wsdd{word-spacing:21.137920pt;}
.wsd1{word-spacing:21.667840pt;}
.wsac{word-spacing:22.080000pt;}
.ws1e{word-spacing:22.256640pt;}
.ws1d{word-spacing:22.374400pt;}
.wse0{word-spacing:22.727680pt;}
.ws6a{word-spacing:22.904320pt;}
.wsad{word-spacing:23.022080pt;}
.wse1{word-spacing:23.316480pt;}
.wsae{word-spacing:23.669760pt;}
.ws107{word-spacing:24.317440pt;}
.ws96{word-spacing:25.318400pt;}
.ws97{word-spacing:25.612800pt;}
.ws99{word-spacing:26.142720pt;}
.wsff{word-spacing:26.260480pt;}
.ws18{word-spacing:26.790400pt;}
.wse8{word-spacing:26.908160pt;}
.ws23{word-spacing:27.379200pt;}
.wsbb{word-spacing:28.674560pt;}
.wsdb{word-spacing:28.792320pt;}
.wsbc{word-spacing:29.322240pt;}
.ws20{word-spacing:31.383040pt;}
.ws21{word-spacing:31.912960pt;}
.ws7d{word-spacing:32.619520pt;}
.ws73{word-spacing:33.149440pt;}
.wse9{word-spacing:33.267200pt;}
.ws119{word-spacing:33.914880pt;}
.ws7e{word-spacing:34.562560pt;}
.wsf4{word-spacing:36.387840pt;}
.wsf3{word-spacing:36.505600pt;}
.wsf5{word-spacing:37.035520pt;}
.ws92{word-spacing:39.685120pt;}
.wsdc{word-spacing:41.510400pt;}
.wsab{word-spacing:41.628160pt;}
.ws104{word-spacing:44.689920pt;}
.ws105{word-spacing:44.807680pt;}
.wsd8{word-spacing:46.819076pt;}
.ws67{word-spacing:50.460160pt;}
.ws68{word-spacing:50.577920pt;}
.ws11d{word-spacing:51.107840pt;}
.ws69{word-spacing:51.814400pt;}
.ws7c{word-spacing:53.109760pt;}
.ws11b{word-spacing:65.180160pt;}
.ws11a{word-spacing:65.297920pt;}
.wse6{word-spacing:66.952656pt;}
.wsfa{word-spacing:84.544408pt;}
.wsfc{word-spacing:108.979124pt;}
.wsf2{word-spacing:150.254887pt;}
.ws3e{word-spacing:168.227635pt;}
.ws3d{word-spacing:194.432620pt;}
.wscd{word-spacing:246.756363pt;}
.wsc9{word-spacing:265.730702pt;}
.wscb{word-spacing:276.584196pt;}
.wsca{word-spacing:287.463389pt;}
._21{margin-left:-993.091614pt;}
._1c{margin-left:-14.834560pt;}
._14{margin-left:-4.754432pt;}
._a{margin-left:-3.676160pt;}
._9{margin-left:-2.602880pt;}
._1{margin-left:-1.434240pt;}
._0{width:1.274880pt;}
._8{width:2.435200pt;}
._7{width:3.441920pt;}
._12{width:5.031680pt;}
._6{width:6.872320pt;}
._e{width:7.989120pt;}
._f{width:10.148480pt;}
._3{width:11.338240pt;}
._4{width:12.861440pt;}
._15{width:13.751680pt;}
._29{width:15.051194pt;}
._13{width:17.416320pt;}
._2a{width:18.391680pt;}
._39{width:19.592960pt;}
._25{width:20.771200pt;}
._1b{width:22.501120pt;}
._28{width:24.852315pt;}
._2{width:26.575360pt;}
._1d{width:29.894400pt;}
._5{width:32.325120pt;}
._2d{width:34.348160pt;}
._2e{width:36.846720pt;}
._1a{width:41.085440pt;}
._17{width:45.733120pt;}
._27{width:46.936429pt;}
._11{width:50.212480pt;}
._19{width:60.175360pt;}
._38{width:65.781120pt;}
._2c{width:67.049768pt;}
._26{width:68.359021pt;}
._10{width:78.340768pt;}
._31{width:84.638801pt;}
._2b{width:88.479726pt;}
._22{width:97.273316pt;}
._24{width:98.258439pt;}
._30{width:106.060214pt;}
._16{width:115.601920pt;}
._32{width:130.364755pt;}
._2f{width:149.810511pt;}
._18{width:174.696960pt;}
._1e{width:194.514705pt;}
._35{width:203.667189pt;}
._34{width:244.637995pt;}
._20{width:247.267555pt;}
._1f{width:268.296307pt;}
._36{width:411.901312pt;}
._37{width:413.941376pt;}
._23{width:462.574329pt;}
._c{width:559.672320pt;}
._b{width:754.042880pt;}
._d{width:1180.963840pt;}
._33{width:2272.002560pt;}
.fs3{font-size:37.120000pt;}
.fs13{font-size:42.501333pt;}
.fs14{font-size:42.549867pt;}
.fs10{font-size:42.728533pt;}
.fs11{font-size:42.783467pt;}
.fsf{font-size:42.805867pt;}
.fsc{font-size:42.806933pt;}
.fs8{font-size:42.825600pt;}
.fsd{font-size:42.831467pt;}
.fsa{font-size:42.832000pt;}
.fs6{font-size:42.856000pt;}
.fse{font-size:42.868800pt;}
.fs12{font-size:42.880000pt;}
.fsb{font-size:42.891200pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:58.805333pt;}
.fs7{font-size:58.846933pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:2.877333pt;}
.ydf{bottom:2.880000pt;}
.ye6{bottom:3.040000pt;}
.y1e0{bottom:3.988867pt;}
.y28b{bottom:3.998450pt;}
.y15f{bottom:5.313200pt;}
.y2e4{bottom:5.513573pt;}
.y1b9{bottom:5.567867pt;}
.ydc{bottom:6.240000pt;}
.ya3{bottom:6.968667pt;}
.y18f{bottom:7.427291pt;}
.y222{bottom:8.885333pt;}
.y277{bottom:8.886800pt;}
.y66{bottom:11.357600pt;}
.y2f2{bottom:12.665313pt;}
.y1f2{bottom:13.546719pt;}
.y2bb{bottom:13.567988pt;}
.y30d{bottom:13.571016pt;}
.y261{bottom:13.571949pt;}
.y236{bottom:16.140575pt;}
.y1e1{bottom:17.890072pt;}
.y28a{bottom:19.248040pt;}
.y153{bottom:19.484645pt;}
.y15e{bottom:20.422800pt;}
.y18e{bottom:22.032821pt;}
.y2c3{bottom:22.380933pt;}
.y1fa{bottom:22.381067pt;}
.y315{bottom:22.530533pt;}
.y269{bottom:22.531600pt;}
.y2f3{bottom:22.922649pt;}
.y235{bottom:28.419430pt;}
.y149{bottom:31.994971pt;}
.y2e1{bottom:34.195875pt;}
.y1b7{bottom:34.349031pt;}
.y188{bottom:34.571733pt;}
.y15d{bottom:35.532133pt;}
.y220{bottom:37.621525pt;}
.y275{bottom:37.623125pt;}
.y65{bottom:38.683600pt;}
.y28c{bottom:39.719946pt;}
.y1df{bottom:41.155061pt;}
.y1f1{bottom:42.451380pt;}
.y30c{bottom:42.471248pt;}
.y260{bottom:42.472181pt;}
.y184{bottom:46.741200pt;}
.y187{bottom:47.035733pt;}
.y2ba{bottom:49.696140pt;}
.y15c{bottom:50.641733pt;}
.y237{bottom:50.677528pt;}
.y31{bottom:50.719320pt;}
.y8{bottom:53.576160pt;}
.y34{bottom:53.600000pt;}
.y14a{bottom:54.918084pt;}
.y17f{bottom:56.020400pt;}
.y2f1{bottom:57.748391pt;}
.y99{bottom:61.417901pt;}
.y1f8{bottom:61.714020pt;}
.y313{bottom:61.734504pt;}
.y2c1{bottom:61.735290pt;}
.y267{bottom:61.735437pt;}
.y185{bottom:63.434764pt;}
.y28d{bottom:63.562814pt;}
.y15b{bottom:65.751200pt;}
.y148{bottom:66.711394pt;}
.y17e{bottom:67.028429pt;}
.y29f{bottom:67.896908pt;}
.y295{bottom:70.294036pt;}
.y1f0{bottom:71.356042pt;}
.y30b{bottom:71.371479pt;}
.y25f{bottom:71.372413pt;}
.y7{bottom:71.982240pt;}
.y1e2{bottom:72.221418pt;}
.y189{bottom:72.274132pt;}
.y2a0{bottom:72.712568pt;}
.y57{bottom:73.211388pt;}
.y2f4{bottom:75.803014pt;}
.y88{bottom:76.987333pt;}
.y221{bottom:77.334800pt;}
.y276{bottom:77.336533pt;}
.y14b{bottom:77.841197pt;}
.y289{bottom:78.737493pt;}
.y180{bottom:78.785325pt;}
.y1b2{bottom:79.728970pt;}
.y2ab{bottom:80.182191pt;}
.y234{bottom:80.433429pt;}
.y296{bottom:80.888488pt;}
.y238{bottom:81.310490pt;}
.y2fd{bottom:82.733936pt;}
.y29e{bottom:83.307020pt;}
.y9a{bottom:84.108153pt;}
.y2e0{bottom:85.569361pt;}
.y1b6{bottom:85.714668pt;}
.y2b9{bottom:85.824291pt;}
.y2fc{bottom:86.488185pt;}
.y2aa{bottom:87.170249pt;}
.y2fe{bottom:87.643339pt;}
.y21f{bottom:88.041195pt;}
.y274{bottom:88.042795pt;}
.y2fb{bottom:89.953646pt;}
.y6{bottom:90.388320pt;}
.y23f{bottom:91.289734pt;}
.y294{bottom:92.692206pt;}
.y91{bottom:93.092165pt;}
.y159{bottom:93.191162pt;}
.y2a9{bottom:93.195175pt;}
.y1de{bottom:94.041709pt;}
.y297{bottom:94.618470pt;}
.y2a1{bottom:94.629171pt;}
.y58{bottom:95.485794pt;}
.y1ce{bottom:95.636227pt;}
.y240{bottom:96.776713pt;}
.y89{bottom:97.278993pt;}
.y288{bottom:98.000133pt;}
.y2ac{bottom:99.926397pt;}
.y1ef{bottom:100.260703pt;}
.y30a{bottom:100.271711pt;}
.y25e{bottom:100.272645pt;}
.y2d8{bottom:100.480000pt;}
.y1d8{bottom:100.537499pt;}
.y14c{bottom:100.764310pt;}
.y1b8{bottom:101.089467pt;}
.y2e2{bottom:101.215467pt;}
.y1cd{bottom:101.275900pt;}
.y23e{bottom:102.702224pt;}
.y2f0{bottom:103.120258pt;}
.y1c8{bottom:103.193600pt;}
.y8c{bottom:103.628837pt;}
.y1af{bottom:104.640000pt;}
.y53{bottom:105.974800pt;}
.y1d9{bottom:106.177172pt;}
.y9b{bottom:106.798405pt;}
.y241{bottom:107.034050pt;}
.y233{bottom:107.162400pt;}
.y28e{bottom:107.396021pt;}
.y1e3{bottom:107.482751pt;}
.y1da{bottom:107.771691pt;}
.y298{bottom:108.348452pt;}
.ya2{bottom:108.420400pt;}
.y5{bottom:108.794400pt;}
.y1cf{bottom:109.077269pt;}
.y1f7{bottom:109.881322pt;}
.y312{bottom:109.897991pt;}
.y266{bottom:109.898925pt;}
.y2c0{bottom:109.902591pt;}
.y179{bottom:109.920000pt;}
.y18a{bottom:109.976530pt;}
.y64{bottom:110.322003pt;}
.ycc{bottom:110.553600pt;}
.y186{bottom:111.170434pt;}
.y143{bottom:111.520000pt;}
.y2f5{bottom:111.634168pt;}
.y2a2{bottom:112.211681pt;}
.y239{bottom:113.387394pt;}
.y1cc{bottom:113.850124pt;}
.y2ff{bottom:114.810840pt;}
.y1d7{bottom:115.134300pt;}
.y17d{bottom:115.160290pt;}
.y1d0{bottom:116.589699pt;}
.y24a{bottom:116.703113pt;}
.y2ea{bottom:116.982101pt;}
.y242{bottom:117.291386pt;}
.yfe{bottom:117.760000pt;}
.y59{bottom:117.760200pt;}
.y92{bottom:118.641453pt;}
.y86{bottom:118.873600pt;}
.y327{bottom:119.680000pt;}
.y1cb{bottom:119.917855pt;}
.y2fa{bottom:120.009031pt;}
.y98{bottom:120.087033pt;}
.y293{bottom:120.227080pt;}
.y158{bottom:121.582860pt;}
.y249{bottom:121.612516pt;}
.y2eb{bottom:121.891504pt;}
.y29d{bottom:121.917911pt;}
.y2b8{bottom:121.952443pt;}
.y8d{bottom:122.282173pt;}
.y23d{bottom:122.789061pt;}
.y1c7{bottom:123.360000pt;}
.y14d{bottom:123.687423pt;}
.y4{bottom:124.000000pt;}
.y2d7{bottom:124.003200pt;}
.y2e6{bottom:124.409333pt;}
.y8a{bottom:124.734305pt;}
.y1ae{bottom:124.806400pt;}
.y231{bottom:127.040000pt;}
.y1b1{bottom:127.229067pt;}
.y2ad{bottom:128.659835pt;}
.y1ee{bottom:129.165365pt;}
.y309{bottom:129.171943pt;}
.y25d{bottom:129.172876pt;}
.y90{bottom:129.178125pt;}
.y2a8{bottom:129.398237pt;}
.y9c{bottom:129.488657pt;}
.y178{bottom:130.233600pt;}
.y24b{bottom:130.318951pt;}
.ycb{bottom:130.720000pt;}
.y2e9{bottom:130.886728pt;}
.y1d6{bottom:130.918963pt;}
.y248{bottom:131.613151pt;}
.y142{bottom:131.686400pt;}
.y253{bottom:132.340470pt;}
.y63{bottom:132.976745pt;}
.y2a3{bottom:133.004631pt;}
.y1d2{bottom:133.091361pt;}
.y51{bottom:133.120000pt;}
.y2e8{bottom:133.197035pt;}
.y1d4{bottom:133.519419pt;}
.y1ca{bottom:134.108000pt;}
.y292{bottom:134.192494pt;}
.y290{bottom:134.438627pt;}
.y24c{bottom:134.650777pt;}
.y301{bottom:134.919069pt;}
.y252{bottom:135.228354pt;}
.y23b{bottom:135.378096pt;}
.y2f9{bottom:135.785435pt;}
.y2ec{bottom:135.796130pt;}
.y23c{bottom:135.816627pt;}
.y2f6{bottom:135.935177pt;}
.y302{bottom:136.074223pt;}
.y1d3{bottom:136.269696pt;}
.y291{bottom:136.364891pt;}
.y23a{bottom:136.394204pt;}
.y1db{bottom:136.558636pt;}
.y1d1{bottom:136.708456pt;}
.y243{bottom:136.822038pt;}
.y2ae{bottom:136.846457pt;}
.y2df{bottom:136.942848pt;}
.y254{bottom:136.961085pt;}
.y1b5{bottom:137.080304pt;}
.y29a{bottom:137.081890pt;}
.y300{bottom:137.379119pt;}
.y127{bottom:137.541120pt;}
.y28f{bottom:137.574157pt;}
.y2a5{bottom:137.584859pt;}
.yfd{bottom:137.926400pt;}
.y29c{bottom:138.291155pt;}
.y2a7{bottom:138.312558pt;}
.y1d5{bottom:138.431393pt;}
.y21e{bottom:138.460864pt;}
.y273{bottom:138.462464pt;}
.y245{bottom:138.693815pt;}
.y2ef{bottom:138.833757pt;}
.y85{bottom:139.040000pt;}
.y247{bottom:139.121650pt;}
.y8b{bottom:139.125857pt;}
.y2e7{bottom:139.411333pt;}
.y1e5{bottom:139.448032pt;}
.y2a4{bottom:139.511123pt;}
.y29b{bottom:139.735853pt;}
.y1e7{bottom:139.736971pt;}
.y183{bottom:139.766625pt;}
.y326{bottom:139.846400pt;}
.y251{bottom:139.859664pt;}
.y2b2{bottom:139.981987pt;}
.y5a{bottom:140.034606pt;}
.y299{bottom:140.217419pt;}
.y2ed{bottom:140.277699pt;}
.y24d{bottom:140.426545pt;}
.y2f8{bottom:140.555791pt;}
.y255{bottom:140.576287pt;}
.y193{bottom:141.614267pt;}
.y1c6{bottom:143.673600pt;}
.y181{bottom:144.199682pt;}
.y1ad{bottom:145.120000pt;}
.y2b0{bottom:145.835689pt;}
.y2a6{bottom:146.338658pt;}
.y14e{bottom:146.610535pt;}
.y24f{bottom:146.672931pt;}
.y1e4{bottom:146.853447pt;}
.y1e6{bottom:146.992566pt;}
.y2b1{bottom:147.044955pt;}
.y246{bottom:147.100766pt;}
.y2f7{bottom:147.230012pt;}
.y2ee{bottom:147.240708pt;}
.y244{bottom:147.250508pt;}
.y2af{bottom:147.280387pt;}
.y1dd{bottom:147.281505pt;}
.y230{bottom:147.353600pt;}
.y256{bottom:147.539297pt;}
.y18b{bottom:147.678929pt;}
.y250{bottom:147.689039pt;}
.y24e{bottom:147.828085pt;}
.y1dc{bottom:147.859385pt;}
.y93{bottom:148.281197pt;}
.y177{bottom:150.400000pt;}
.yca{bottom:151.033600pt;}
.y30{bottom:151.200000pt;}
.y141{bottom:152.000000pt;}
.y9d{bottom:152.178909pt;}
.y50{bottom:153.433600pt;}
.y126{bottom:157.854720pt;}
.y1f6{bottom:158.048623pt;}
.y311{bottom:158.061479pt;}
.y265{bottom:158.062412pt;}
.y2bf{bottom:158.069893pt;}
.y1ed{bottom:158.070026pt;}
.y308{bottom:158.072175pt;}
.y25c{bottom:158.073108pt;}
.y2b7{bottom:158.080594pt;}
.yfc{bottom:158.240000pt;}
.y84{bottom:159.353600pt;}
.y325{bottom:160.160000pt;}
.y5b{bottom:162.309012pt;}
.y2dc{bottom:162.826160pt;}
.y1c5{bottom:163.840000pt;}
.y8f{bottom:163.904169pt;}
.y1ac{bottom:165.286400pt;}
.y22f{bottom:167.520000pt;}
.y192{bottom:168.119600pt;}
.y54{bottom:168.930264pt;}
.y14f{bottom:169.533648pt;}
.y1f9{bottom:170.558638pt;}
.y314{bottom:170.564947pt;}
.y268{bottom:170.565880pt;}
.y2c2{bottom:170.579907pt;}
.y176{bottom:170.713600pt;}
.yc9{bottom:171.200000pt;}
.y2f{bottom:171.366400pt;}
.ya8{bottom:171.923067pt;}
.y140{bottom:172.166400pt;}
.y4f{bottom:173.600000pt;}
.y97{bottom:174.055353pt;}
.y9e{bottom:174.869161pt;}
.y147{bottom:176.211530pt;}
.y125{bottom:178.021120pt;}
.yfb{bottom:178.406400pt;}
.y83{bottom:179.520000pt;}
.y145{bottom:179.732400pt;}
.y324{bottom:180.326400pt;}
.y182{bottom:180.820586pt;}
.y2db{bottom:181.824256pt;}
.y8e{bottom:183.007241pt;}
.y1c4{bottom:184.153600pt;}
.y5c{bottom:184.583418pt;}
.y157{bottom:184.969227pt;}
.y18c{bottom:185.381327pt;}
.y1ab{bottom:185.600000pt;}
.y307{bottom:186.972406pt;}
.y25b{bottom:186.973340pt;}
.y1ec{bottom:186.974687pt;}
.y55{bottom:187.058352pt;}
.y22e{bottom:187.833600pt;}
.y2de{bottom:188.316335pt;}
.y1b4{bottom:188.445940pt;}
.y21d{bottom:188.880533pt;}
.y272{bottom:188.882133pt;}
.y175{bottom:190.880000pt;}
.y317{bottom:191.420133pt;}
.y26b{bottom:191.421200pt;}
.y2c5{bottom:191.429333pt;}
.y1fc{bottom:191.429600pt;}
.yc8{bottom:191.513600pt;}
.y2e{bottom:191.680000pt;}
.y150{bottom:192.456761pt;}
.y13f{bottom:192.480000pt;}
.y4e{bottom:193.766400pt;}
.y2b6{bottom:194.208746pt;}
.y94{bottom:194.486217pt;}
.ya7{bottom:194.488533pt;}
.y191{bottom:194.624933pt;}
.y316{bottom:194.990687pt;}
.y26a{bottom:194.991754pt;}
.y2c4{bottom:195.027695pt;}
.y1fb{bottom:195.027828pt;}
.y2da{bottom:195.977200pt;}
.y9f{bottom:197.559413pt;}
.y17c{bottom:198.124841pt;}
.y124{bottom:198.334720pt;}
.yfa{bottom:198.720000pt;}
.y15a{bottom:198.892182pt;}
.y82{bottom:199.833600pt;}
.y323{bottom:200.640000pt;}
.y1c3{bottom:204.320000pt;}
.y1aa{bottom:205.766400pt;}
.y1f5{bottom:206.215925pt;}
.y310{bottom:206.224966pt;}
.y264{bottom:206.225900pt;}
.y2be{bottom:206.237194pt;}
.y5d{bottom:206.857824pt;}
.y22d{bottom:208.000000pt;}
.y95{bottom:209.006265pt;}
.y174{bottom:211.193600pt;}
.yc7{bottom:211.680000pt;}
.y2d{bottom:211.846400pt;}
.y13e{bottom:212.646400pt;}
.y223{bottom:213.277273pt;}
.y278{bottom:213.289421pt;}
.yf3{bottom:213.920000pt;}
.y4d{bottom:214.080000pt;}
.y56{bottom:214.914752pt;}
.y62{bottom:215.266136pt;}
.y151{bottom:215.379874pt;}
.y306{bottom:215.872638pt;}
.y25a{bottom:215.873571pt;}
.y1eb{bottom:215.879349pt;}
.ya6{bottom:217.053867pt;}
.y123{bottom:218.501120pt;}
.y81{bottom:220.000000pt;}
.ya0{bottom:220.249665pt;}
.y322{bottom:220.806400pt;}
.y190{bottom:221.130267pt;}
.y1bd{bottom:221.462755pt;}
.y18d{bottom:223.083726pt;}
.y17b{bottom:223.341867pt;}
.y146{bottom:223.416875pt;}
.yf9{bottom:223.489600pt;}
.y156{bottom:223.495467pt;}
.y1a9{bottom:226.080000pt;}
.y1c2{bottom:227.517760pt;}
.y5e{bottom:229.132230pt;}
.y61{bottom:229.816133pt;}
.y2b5{bottom:230.336897pt;}
.y173{bottom:231.360000pt;}
.y96{bottom:231.696517pt;}
.yc6{bottom:231.993600pt;}
.y2c{bottom:232.160000pt;}
.y13d{bottom:232.960000pt;}
.y4c{bottom:234.246400pt;}
.y2e5{bottom:235.456412pt;}
.y22c{bottom:235.520000pt;}
.y1bb{bottom:237.449600pt;}
.y152{bottom:238.302987pt;}
.y122{bottom:238.814720pt;}
.y21b{bottom:239.353600pt;}
.ya5{bottom:239.619200pt;}
.y2dd{bottom:239.689821pt;}
.y1b3{bottom:239.811577pt;}
.y80{bottom:240.313600pt;}
.y321{bottom:241.120000pt;}
.yf8{bottom:241.895680pt;}
.ya1{bottom:242.939917pt;}
.y194{bottom:244.152798pt;}
.y305{bottom:244.772870pt;}
.y259{bottom:244.773803pt;}
.y1ea{bottom:244.784010pt;}
.y1c1{bottom:246.880000pt;}
.y172{bottom:251.673600pt;}
.y2b{bottom:252.326400pt;}
.y13c{bottom:253.126400pt;}
.y1a8{bottom:253.600000pt;}
.y1f4{bottom:254.383226pt;}
.y30f{bottom:254.388454pt;}
.y263{bottom:254.389387pt;}
.y2bd{bottom:254.404496pt;}
.y4b{bottom:254.560000pt;}
.yc5{bottom:255.833600pt;}
.y68{bottom:258.448667pt;}
.y67{bottom:258.450606pt;}
.y121{bottom:258.981120pt;}
.y271{bottom:259.121333pt;}
.y22b{bottom:259.186560pt;}
.y21a{bottom:259.520000pt;}
.yf7{bottom:260.301760pt;}
.y7f{bottom:260.480000pt;}
.y320{bottom:261.286400pt;}
.y155{bottom:261.761186pt;}
.y1ba{bottom:261.782133pt;}
.y60{bottom:261.959598pt;}
.ya4{bottom:262.184533pt;}
.yaa{bottom:264.011867pt;}
.y26f{bottom:264.793733pt;}
.y2c9{bottom:264.811067pt;}
.y2b4{bottom:266.465049pt;}
.y2e3{bottom:268.809333pt;}
.yf2{bottom:269.600000pt;}
.y1bc{bottom:270.815313pt;}
.y195{bottom:270.868925pt;}
.y1c0{bottom:271.520000pt;}
.y171{bottom:271.840000pt;}
.y2a{bottom:272.640000pt;}
.y13b{bottom:273.440000pt;}
.y304{bottom:273.673102pt;}
.y258{bottom:273.674035pt;}
.y1e9{bottom:273.688672pt;}
.y154{bottom:274.057478pt;}
.y4a{bottom:274.726400pt;}
.ya9{bottom:276.475979pt;}
.y1a7{bottom:276.954240pt;}
.y1b0{bottom:277.481333pt;}
.y5f{bottom:277.955600pt;}
.yf6{bottom:278.707840pt;}
.y120{bottom:279.294720pt;}
.y219{bottom:279.833600pt;}
.y7e{bottom:280.793600pt;}
.yc4{bottom:281.593600pt;}
.y31f{bottom:281.600000pt;}
.y26e{bottom:289.250133pt;}
.y2c8{bottom:289.747600pt;}
.y170{bottom:292.153600pt;}
.y29{bottom:292.806400pt;}
.y13a{bottom:293.606400pt;}
.y49{bottom:295.040000pt;}
.y31a{bottom:295.268267pt;}
.y1ff{bottom:295.811200pt;}
.yf5{bottom:297.113920pt;}
.y1bf{bottom:299.040000pt;}
.y11f{bottom:299.461120pt;}
.y218{bottom:300.000000pt;}
.y7d{bottom:300.960000pt;}
.yc3{bottom:301.760000pt;}
.y31e{bottom:301.766400pt;}
.y1f3{bottom:302.550527pt;}
.y30e{bottom:302.551942pt;}
.y262{bottom:302.552875pt;}
.y2bc{bottom:302.571797pt;}
.y303{bottom:302.573333pt;}
.y257{bottom:302.574267pt;}
.y2b3{bottom:302.593200pt;}
.y1e8{bottom:302.593333pt;}
.y286{bottom:304.787200pt;}
.y16f{bottom:312.320000pt;}
.y28{bottom:313.120000pt;}
.y139{bottom:313.920000pt;}
.y26d{bottom:314.185333pt;}
.y2c7{bottom:314.684133pt;}
.y48{bottom:315.206400pt;}
.yf4{bottom:315.520000pt;}
.y319{bottom:317.987467pt;}
.y1fe{bottom:318.322400pt;}
.y11e{bottom:319.774720pt;}
.y217{bottom:320.313600pt;}
.y7c{bottom:321.273600pt;}
.yc2{bottom:322.073600pt;}
.y31d{bottom:322.080000pt;}
.y1be{bottom:322.394880pt;}
.y1c9{bottom:322.910667pt;}
.y285{bottom:324.953600pt;}
.yec{bottom:331.680000pt;}
.y16e{bottom:332.486400pt;}
.y27{bottom:333.286400pt;}
.y138{bottom:334.086400pt;}
.y47{bottom:335.520000pt;}
.y26c{bottom:339.120533pt;}
.y2c6{bottom:339.620800pt;}
.y11d{bottom:339.941120pt;}
.y216{bottom:340.480000pt;}
.y318{bottom:340.706533pt;}
.y1fd{bottom:340.833600pt;}
.y7b{bottom:341.440000pt;}
.yc1{bottom:342.240000pt;}
.y31c{bottom:342.246400pt;}
.y284{bottom:345.267200pt;}
.y31b{bottom:346.864000pt;}
.y270{bottom:346.864933pt;}
.y2ca{bottom:346.881200pt;}
.y200{bottom:346.881333pt;}
.yf1{bottom:350.375680pt;}
.y16d{bottom:352.800000pt;}
.y26{bottom:353.600000pt;}
.y137{bottom:354.400000pt;}
.y46{bottom:355.686400pt;}
.y11c{bottom:360.254720pt;}
.y215{bottom:360.793600pt;}
.y7a{bottom:361.753600pt;}
.yc0{bottom:362.553600pt;}
.y283{bottom:365.433600pt;}
.yf0{bottom:368.781760pt;}
.y16c{bottom:372.966400pt;}
.y25{bottom:373.766400pt;}
.y45{bottom:376.000000pt;}
.y136{bottom:377.440000pt;}
.y11b{bottom:380.421120pt;}
.y214{bottom:380.960000pt;}
.y79{bottom:381.920000pt;}
.ybf{bottom:382.720000pt;}
.y282{bottom:385.747200pt;}
.yef{bottom:387.187840pt;}
.yeb{bottom:387.200000pt;}
.y16b{bottom:393.280000pt;}
.y44{bottom:396.166400pt;}
.y24{bottom:397.768320pt;}
.y11a{bottom:400.734720pt;}
.y213{bottom:401.273600pt;}
.y135{bottom:401.753600pt;}
.y78{bottom:402.233600pt;}
.ybe{bottom:403.033600pt;}
.yee{bottom:405.593920pt;}
.y281{bottom:405.913600pt;}
.y16a{bottom:413.446400pt;}
.y43{bottom:416.480000pt;}
.y119{bottom:420.901120pt;}
.y212{bottom:421.440000pt;}
.y77{bottom:422.400000pt;}
.ybd{bottom:423.200000pt;}
.y23{bottom:423.366400pt;}
.yed{bottom:424.000000pt;}
.y280{bottom:426.080000pt;}
.y134{bottom:427.513600pt;}
.y169{bottom:433.760000pt;}
.y42{bottom:436.646400pt;}
.y118{bottom:441.214720pt;}
.y211{bottom:441.753600pt;}
.y76{bottom:442.713600pt;}
.ybc{bottom:443.513600pt;}
.y22{bottom:443.680000pt;}
.y27f{bottom:446.393600pt;}
.y133{bottom:447.680000pt;}
.ye5{bottom:449.440000pt;}
.y41{bottom:456.960000pt;}
.y168{bottom:461.279840pt;}
.y117{bottom:461.381120pt;}
.y210{bottom:461.920000pt;}
.y75{bottom:462.880000pt;}
.ybb{bottom:463.680000pt;}
.y21{bottom:463.846400pt;}
.y27e{bottom:466.560000pt;}
.y132{bottom:467.993600pt;}
.yea{bottom:477.421760pt;}
.y116{bottom:481.694720pt;}
.y20f{bottom:482.233600pt;}
.y74{bottom:483.193600pt;}
.yba{bottom:483.993600pt;}
.y20{bottom:484.160000pt;}
.y40{bottom:484.480000pt;}
.y17a{bottom:484.894667pt;}
.y27d{bottom:486.873600pt;}
.y131{bottom:488.160000pt;}
.y2d6{bottom:492.960000pt;}
.y22a{bottom:494.073600pt;}
.ye9{bottom:495.827840pt;}
.y115{bottom:501.861120pt;}
.y20e{bottom:502.400000pt;}
.y73{bottom:503.360000pt;}
.yb9{bottom:504.160000pt;}
.y1f{bottom:504.326400pt;}
.ye4{bottom:504.960000pt;}
.y27c{bottom:507.040000pt;}
.y52{bottom:507.989333pt;}
.y3f{bottom:508.001920pt;}
.y130{bottom:508.473600pt;}
.y2d5{bottom:513.273600pt;}
.ye8{bottom:514.233920pt;}
.y229{bottom:514.240000pt;}
.y114{bottom:522.174720pt;}
.y72{bottom:523.673600pt;}
.yb8{bottom:524.473600pt;}
.y1e{bottom:524.640000pt;}
.y12f{bottom:528.640000pt;}
.y20d{bottom:529.920000pt;}
.y27b{bottom:530.240000pt;}
.ye7{bottom:532.640000pt;}
.y2d4{bottom:533.440000pt;}
.y228{bottom:534.553600pt;}
.y113{bottom:542.341120pt;}
.y71{bottom:543.840000pt;}
.yb7{bottom:544.640000pt;}
.y1d{bottom:544.806400pt;}
.y12e{bottom:548.953600pt;}
.y20c{bottom:553.424000pt;}
.y21c{bottom:553.492000pt;}
.y2d3{bottom:553.753600pt;}
.y227{bottom:554.720000pt;}
.y112{bottom:562.507520pt;}
.y70{bottom:564.153600pt;}
.yb6{bottom:564.953600pt;}
.y1c{bottom:565.120000pt;}
.yde{bottom:567.200000pt;}
.y12d{bottom:569.120000pt;}
.y1a6{bottom:570.073600pt;}
.y2d2{bottom:573.920000pt;}
.y226{bottom:575.033600pt;}
.y27a{bottom:582.240000pt;}
.y111{bottom:583.954560pt;}
.y6f{bottom:584.320000pt;}
.yb5{bottom:585.120000pt;}
.y1b{bottom:585.286400pt;}
.y335{bottom:587.054720pt;}
.y12c{bottom:589.286400pt;}
.y1a5{bottom:590.240000pt;}
.y2d1{bottom:594.086400pt;}
.ye3{bottom:595.181760pt;}
.y225{bottom:595.200000pt;}
.y110{bottom:604.120960pt;}
.y6e{bottom:604.486400pt;}
.yb4{bottom:605.433600pt;}
.y1a{bottom:605.600000pt;}
.y279{bottom:605.754880pt;}
.y287{bottom:606.246667pt;}
.y12b{bottom:609.600000pt;}
.y1a4{bottom:610.553600pt;}
.y334{bottom:611.048320pt;}
.ye2{bottom:613.587840pt;}
.y2d0{bottom:614.400000pt;}
.ydd{bottom:622.720000pt;}
.y6d{bottom:624.800000pt;}
.y10f{bottom:625.406080pt;}
.yb3{bottom:625.600000pt;}
.y19{bottom:625.766400pt;}
.y1a3{bottom:630.720000pt;}
.ye1{bottom:631.993920pt;}
.y2cf{bottom:634.566400pt;}
.y333{bottom:636.646400pt;}
.y12a{bottom:637.113920pt;}
.y6c{bottom:644.966400pt;}
.y10e{bottom:645.719680pt;}
.yb2{bottom:645.913600pt;}
.y18{bottom:646.080000pt;}
.y224{bottom:646.240000pt;}
.y232{bottom:646.722667pt;}
.ye0{bottom:650.400000pt;}
.y1a2{bottom:651.033600pt;}
.y2ce{bottom:654.880000pt;}
.y129{bottom:655.520000pt;}
.y332{bottom:656.960000pt;}
.y6b{bottom:665.280000pt;}
.y10d{bottom:665.886080pt;}
.yb1{bottom:666.080000pt;}
.y17{bottom:666.246400pt;}
.y1a1{bottom:671.200000pt;}
.y331{bottom:677.126400pt;}
.y128{bottom:679.031040pt;}
.y144{bottom:679.046667pt;}
.y2cd{bottom:682.393920pt;}
.ydb{bottom:686.240000pt;}
.yb0{bottom:686.246400pt;}
.y16{bottom:686.560000pt;}
.y10c{bottom:687.171200pt;}
.y1a0{bottom:691.513600pt;}
.y6a{bottom:692.800000pt;}
.y330{bottom:697.440000pt;}
.y2cc{bottom:700.800000pt;}
.yaf{bottom:706.560000pt;}
.y15{bottom:706.726400pt;}
.y10b{bottom:707.484800pt;}
.y19f{bottom:711.680000pt;}
.y69{bottom:716.320000pt;}
.y87{bottom:717.124000pt;}
.y32f{bottom:717.606400pt;}
.yda{bottom:720.800000pt;}
.y2cb{bottom:724.320000pt;}
.y2d9{bottom:724.924000pt;}
.yae{bottom:726.726400pt;}
.y10a{bottom:727.651200pt;}
.y14{bottom:730.707200pt;}
.y19e{bottom:731.993600pt;}
.y32e{bottom:737.920000pt;}
.yad{bottom:747.040000pt;}
.yd9{bottom:747.964800pt;}
.y109{bottom:748.936320pt;}
.y19d{bottom:752.160000pt;}
.y13{bottom:756.467200pt;}
.y32d{bottom:758.086400pt;}
.yac{bottom:767.206400pt;}
.yd8{bottom:768.131200pt;}
.y108{bottom:769.249920pt;}
.y19c{bottom:772.473600pt;}
.y12{bottom:776.633600pt;}
.y32c{bottom:778.400000pt;}
.y167{bottom:785.440000pt;}
.yab{bottom:787.520000pt;}
.yd7{bottom:788.444800pt;}
.y20b{bottom:788.458240pt;}
.y107{bottom:789.416320pt;}
.y19b{bottom:792.640000pt;}
.y32b{bottom:798.566400pt;}
.y11{bottom:802.880000pt;}
.y166{bottom:805.753600pt;}
.y3e{bottom:807.686400pt;}
.yd6{bottom:808.611200pt;}
.y20a{bottom:808.624640pt;}
.y106{bottom:809.729920pt;}
.y19a{bottom:812.953600pt;}
.y10{bottom:817.113600pt;}
.y32a{bottom:818.880000pt;}
.y165{bottom:825.920000pt;}
.y3d{bottom:828.000000pt;}
.yd5{bottom:828.924800pt;}
.y209{bottom:828.938240pt;}
.y105{bottom:829.896320pt;}
.y199{bottom:833.120000pt;}
.yf{bottom:837.280000pt;}
.y329{bottom:839.046400pt;}
.y164{bottom:846.233600pt;}
.y3c{bottom:848.166400pt;}
.yd4{bottom:849.091200pt;}
.y208{bottom:849.104640pt;}
.y104{bottom:850.209920pt;}
.y198{bottom:853.433600pt;}
.ye{bottom:857.593600pt;}
.y328{bottom:863.048320pt;}
.y163{bottom:866.400000pt;}
.y3b{bottom:868.480000pt;}
.yd3{bottom:869.257600pt;}
.y207{bottom:869.418240pt;}
.y103{bottom:870.376320pt;}
.y197{bottom:873.600000pt;}
.yd{bottom:877.760000pt;}
.y3a{bottom:888.646400pt;}
.y206{bottom:889.584640pt;}
.y162{bottom:889.600000pt;}
.yd2{bottom:890.542720pt;}
.y102{bottom:890.689920pt;}
.y196{bottom:893.913600pt;}
.yc{bottom:896.168000pt;}
.y39{bottom:908.960000pt;}
.y205{bottom:909.898240pt;}
.y101{bottom:910.856320pt;}
.yd1{bottom:911.827840pt;}
.y161{bottom:914.080000pt;}
.yb{bottom:925.280000pt;}
.y38{bottom:929.126400pt;}
.y204{bottom:930.064640pt;}
.y100{bottom:932.141440pt;}
.yd0{bottom:933.274880pt;}
.y160{bottom:934.393600pt;}
.y37{bottom:949.440000pt;}
.y203{bottom:951.349760pt;}
.yff{bottom:953.426560pt;}
.ycf{bottom:954.560000pt;}
.ya{bottom:956.473600pt;}
.y36{bottom:969.606400pt;}
.y202{bottom:972.634880pt;}
.yce{bottom:974.873600pt;}
.y9{bottom:976.640000pt;}
.y35{bottom:993.600000pt;}
.y201{bottom:993.920000pt;}
.ycd{bottom:995.040000pt;}
.y3{bottom:996.960000pt;}
.y33{bottom:1015.360000pt;}
.y2{bottom:1016.473920pt;}
.y1{bottom:1034.880000pt;}
.h8{height:14.666747pt;}
.h17{height:18.400000pt;}
.h2b{height:28.912265pt;}
.h5{height:36.413125pt;}
.h30{height:41.712734pt;}
.h31{height:41.760367pt;}
.h28{height:41.935719pt;}
.h2a{height:41.989633pt;}
.h26{height:42.011617pt;}
.h1d{height:42.012664pt;}
.hf{height:42.030984pt;}
.h1f{height:42.036742pt;}
.h12{height:42.037266pt;}
.hb{height:42.060820pt;}
.h24{height:42.073383pt;}
.h2d{height:42.084375pt;}
.h14{height:42.095367pt;}
.h2{height:52.134375pt;}
.h20{height:53.387081pt;}
.h9{height:55.442708pt;}
.h1b{height:57.582080pt;}
.h10{height:57.714219pt;}
.hd{height:57.774255pt;}
.h3{height:57.787500pt;}
.h33{height:57.813100pt;}
.h19{height:57.860460pt;}
.h16{height:61.410000pt;}
.h7{height:62.824960pt;}
.h15{height:62.850560pt;}
.h6{height:62.876160pt;}
.hc{height:64.645932pt;}
.h13{height:75.617554pt;}
.h22{height:85.296524pt;}
.h21{height:91.421423pt;}
.h4{height:102.432000pt;}
.h18{height:116.958667pt;}
.h1a{height:117.120000pt;}
.h27{height:227.948000pt;}
.h2c{height:228.000000pt;}
.he{height:280.200000pt;}
.h2f{height:283.397333pt;}
.h23{height:285.558667pt;}
.h1e{height:285.600000pt;}
.h1c{height:288.793333pt;}
.h11{height:291.197333pt;}
.ha{height:292.800000pt;}
.h25{height:361.569333pt;}
.h2e{height:361.592000pt;}
.h29{height:361.597333pt;}
.h32{height:361.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:20.000000pt;}
.w6{width:47.200000pt;}
.w7{width:198.401333pt;}
.w4{width:249.329333pt;}
.wa{width:249.600000pt;}
.w9{width:316.800000pt;}
.w3{width:317.600000pt;}
.w8{width:355.200000pt;}
.wd{width:563.624000pt;}
.w5{width:567.200000pt;}
.wc{width:568.000000pt;}
.wb{width:568.001333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:2.055764pt;}
.x11{left:7.389145pt;}
.x13{left:9.662133pt;}
.x4c{left:12.666533pt;}
.x2f{left:14.769333pt;}
.x8d{left:17.201333pt;}
.x2e{left:18.257539pt;}
.x6f{left:19.668872pt;}
.x3f{left:21.175851pt;}
.x18{left:23.791467pt;}
.x2d{left:34.266680pt;}
.x17{left:35.895411pt;}
.xe{left:43.223467pt;}
.x70{left:46.386852pt;}
.x55{left:47.899067pt;}
.x33{left:49.120000pt;}
.x1c{left:54.232533pt;}
.x7d{left:56.967601pt;}
.x5f{left:59.955917pt;}
.x40{left:61.518133pt;}
.x45{left:64.041467pt;}
.x83{left:67.374002pt;}
.x4d{left:70.758213pt;}
.x67{left:72.012767pt;}
.x1d{left:73.619356pt;}
.xbb{left:75.395718pt;}
.x88{left:77.780404pt;}
.x49{left:82.674267pt;}
.x8f{left:89.802053pt;}
.x19{left:91.902941pt;}
.x3e{left:93.309994pt;}
.x78{left:95.142268pt;}
.x4{left:96.480160pt;}
.xb1{left:97.483868pt;}
.x98{left:99.278533pt;}
.x4b{left:101.307200pt;}
.x37{left:103.680000pt;}
.x15{left:106.375467pt;}
.xa0{left:108.755013pt;}
.xaf{left:111.052800pt;}
.xd{left:112.866667pt;}
.x1e{left:115.116592pt;}
.x68{left:116.178348pt;}
.x75{left:117.600000pt;}
.x39{left:120.171527pt;}
.x5{left:121.920000pt;}
.xbc{left:123.976786pt;}
.x36{left:124.963200pt;}
.x89{left:126.361471pt;}
.x42{left:131.857627pt;}
.x90{left:133.979173pt;}
.x3b{left:134.992267pt;}
.x56{left:136.230229pt;}
.x1f{left:137.227005pt;}
.x54{left:141.764800pt;}
.x32{left:143.680000pt;}
.x41{left:145.603360pt;}
.x60{left:148.287079pt;}
.x76{left:149.760000pt;}
.xf{left:151.197654pt;}
.xa1{left:152.932133pt;}
.x7e{left:154.129736pt;}
.xb0{left:155.200000pt;}
.xb6{left:159.311394pt;}
.x69{left:160.343929pt;}
.x20{left:162.061010pt;}
.x77{left:165.120000pt;}
.x8e{left:166.880000pt;}
.x51{left:172.320000pt;}
.x3d{left:173.327944pt;}
.x16{left:175.709767pt;}
.x91{left:178.156293pt;}
.x57{left:180.395810pt;}
.x21{left:181.447833pt;}
.x3c{left:182.874321pt;}
.x99{left:187.632773pt;}
.x1a{left:190.987467pt;}
.x61{left:192.452660pt;}
.xb2{left:194.646003pt;}
.xc{left:195.840000pt;}
.x8{left:197.760000pt;}
.x22{left:203.558246pt;}
.x6a{left:204.509510pt;}
.xa6{left:206.585733pt;}
.xb7{left:207.892462pt;}
.x1{left:210.080000pt;}
.x84{left:213.117205pt;}
.x50{left:219.772373pt;}
.x43{left:221.026587pt;}
.x92{left:222.333413pt;}
.x8a{left:223.523606pt;}
.x58{left:224.561391pt;}
.x23{left:225.668660pt;}
.x4e{left:228.009893pt;}
.x9a{left:231.809893pt;}
.xa{left:237.280000pt;}
.x46{left:239.656507pt;}
.x79{left:240.885470pt;}
.x30{left:243.016000pt;}
.x72{left:246.745867pt;}
.x24{left:247.779073pt;}
.x6b{left:248.675091pt;}
.x7f{left:251.291872pt;}
.xb8{left:256.473530pt;}
.x1b{left:259.520000pt;}
.x10{left:261.892079pt;}
.x3a{left:264.601639pt;}
.x93{left:266.510533pt;}
.x59{left:268.726973pt;}
.xbd{left:269.719989pt;}
.x6{left:272.952000pt;}
.x9b{left:275.987013pt;}
.x62{left:280.783823pt;}
.x7{left:282.555520pt;}
.xa2{left:285.463493pt;}
.x7a{left:289.466538pt;}
.xb3{left:291.808138pt;}
.x6c{left:292.840673pt;}
.x25{left:294.723492pt;}
.x2{left:298.883360pt;}
.x80{left:299.872939pt;}
.xb9{left:305.054597pt;}
.x44{left:310.195547pt;}
.x5a{left:312.892554pt;}
.x26{left:316.833905pt;}
.xbe{left:318.301056pt;}
.x8b{left:320.685742pt;}
.x63{left:324.949404pt;}
.x47{left:328.825467pt;}
.x27{left:336.220728pt;}
.x7b{left:338.047606pt;}
.xa7{left:339.117093pt;}
.x38{left:340.807680pt;}
.x34{left:342.080000pt;}
.x35{left:349.280000pt;}
.xba{left:353.635665pt;}
.x94{left:354.864773pt;}
.xae{left:356.166720pt;}
.x5b{left:357.058135pt;}
.x28{left:358.331141pt;}
.x9c{left:364.341253pt;}
.xbf{left:366.882124pt;}
.x64{left:369.114985pt;}
.xa3{left:373.817733pt;}
.x29{left:380.441555pt;}
.xa8{left:383.294213pt;}
.x7c{left:386.628673pt;}
.xb4{left:388.970273pt;}
.x81{left:397.035074pt;}
.x95{left:399.041893pt;}
.x5c{left:401.223716pt;}
.x2a{left:402.551969pt;}
.x85{left:407.441476pt;}
.x9d{left:408.518373pt;}
.x65{left:413.280566pt;}
.xc0{left:415.463192pt;}
.x48{left:417.994427pt;}
.x2b{left:424.662382pt;}
.xa9{left:427.471333pt;}
.x14{left:430.866667pt;}
.x73{left:435.122800pt;}
.x4a{left:436.627227pt;}
.xb5{left:437.551341pt;}
.x8c{left:439.590400pt;}
.xc3{left:441.746533pt;}
.x96{left:443.219013pt;}
.x5d{left:445.389297pt;}
.x2c{left:449.496387pt;}
.xac{left:450.542133pt;}
.x9e{left:452.695493pt;}
.x86{left:456.022543pt;}
.x66{left:457.446147pt;}
.xa4{left:462.171973pt;}
.xc1{left:464.044259pt;}
.x52{left:469.713733pt;}
.xaa{left:471.648453pt;}
.x31{left:481.444133pt;}
.x53{left:483.159733pt;}
.x97{left:487.396133pt;}
.x5e{left:489.554879pt;}
.x82{left:494.197210pt;}
.x9f{left:496.872613pt;}
.x4f{left:498.202933pt;}
.x87{left:504.603611pt;}
.xa5{left:506.349093pt;}
.xc2{left:512.625327pt;}
.x6d{left:513.668579pt;}
.xab{left:515.825573pt;}
.x6e{left:528.960933pt;}
.x71{left:561.144533pt;}
.x9{left:677.759684pt;}
.xad{left:678.880000pt;}
.xb{left:680.781440pt;}
.x74{left:685.652480pt;}
.x3{left:697.440000pt;}
}




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