
    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_38810a04319779ce56d9f151.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_bdeba0a761ce227af44fe3a3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ac606f781d88c1113848deed.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_0dbd1482133bdf2133d48c2c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.975098;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_c38be11894307c7d8d8ff8b9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d648d80c179d89f77d66b4fa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a6ca63b38caa815094061469.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.049805;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_d9a7fa141a01fd4f6451b4bc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_04794b4c62810c056a838b6f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_a25ed282e8411da16a5155e9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_44673cb21067672c6b9f8280.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.965820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e13bd5407f56e1b36d0f5f70.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6afdb67200440109935bfe39.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.960938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_91efe1d647b2d5d1001bec19.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.960938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_c7383c92d0372e5450ec4531.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_45d1e884a2baef1bd20bde38.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_00d7fe890dff82f53798b416.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.965820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_254382afb70cfe9eac9b8664.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.873535;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_7c0b1efe8e56d9f446fec32c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_957c4ab014207cdb636ef5da.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.843750;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;}
.m3{transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249888,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v4{vertical-align:-1.374780px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.620000px;}
.v3{vertical-align:28.170000px;}
.v1{vertical-align:30.381600px;}
.ls56{letter-spacing:-1.776000px;}
.ls41{letter-spacing:-1.020000px;}
.lsd{letter-spacing:-0.780000px;}
.ls10{letter-spacing:-0.495000px;}
.lse{letter-spacing:-0.450000px;}
.lsa2{letter-spacing:-0.432000px;}
.ls64{letter-spacing:-0.300000px;}
.ls65{letter-spacing:-0.240000px;}
.lsa3{letter-spacing:-0.192000px;}
.ls4e{letter-spacing:-0.180000px;}
.ls9b{letter-spacing:-0.144000px;}
.ls59{letter-spacing:-0.120000px;}
.ls77{letter-spacing:-0.096000px;}
.lsf{letter-spacing:-0.060000px;}
.ls50{letter-spacing:-0.048997px;}
.ls85{letter-spacing:-0.048000px;}
.lsc{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.003540px;}
.ls86{letter-spacing:0.048000px;}
.lsb{letter-spacing:0.060000px;}
.ls67{letter-spacing:0.096000px;}
.ls1f{letter-spacing:0.120000px;}
.ls55{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.180000px;}
.ls5a{letter-spacing:0.192000px;}
.ls1d{letter-spacing:0.240000px;}
.ls6e{letter-spacing:0.288000px;}
.ls38{letter-spacing:0.300000px;}
.ls4f{letter-spacing:0.336000px;}
.ls7{letter-spacing:0.360000px;}
.ls73{letter-spacing:0.384000px;}
.ls1e{letter-spacing:0.420000px;}
.ls69{letter-spacing:0.432000px;}
.ls11{letter-spacing:0.480000px;}
.ls60{letter-spacing:0.528000px;}
.ls31{letter-spacing:0.540000px;}
.ls6f{letter-spacing:0.576000px;}
.ls3{letter-spacing:0.600000px;}
.ls88{letter-spacing:0.624000px;}
.ls47{letter-spacing:0.660000px;}
.ls7c{letter-spacing:0.672000px;}
.ls35{letter-spacing:0.720000px;}
.ls6b{letter-spacing:0.768000px;}
.ls1c{letter-spacing:0.780000px;}
.ls8f{letter-spacing:0.816000px;}
.ls39{letter-spacing:0.840000px;}
.ls87{letter-spacing:0.864000px;}
.ls34{letter-spacing:0.900000px;}
.ls5d{letter-spacing:0.912000px;}
.ls29{letter-spacing:0.960000px;}
.ls90{letter-spacing:1.008000px;}
.ls8{letter-spacing:1.020000px;}
.ls5e{letter-spacing:1.056000px;}
.ls37{letter-spacing:1.080000px;}
.ls81{letter-spacing:1.104000px;}
.ls3c{letter-spacing:1.106400px;}
.ls17{letter-spacing:1.140000px;}
.ls96{letter-spacing:1.152000px;}
.ls4{letter-spacing:1.200000px;}
.ls94{letter-spacing:1.248000px;}
.ls3a{letter-spacing:1.260000px;}
.ls74{letter-spacing:1.296000px;}
.ls3b{letter-spacing:1.320000px;}
.ls6a{letter-spacing:1.344000px;}
.ls1b{letter-spacing:1.380000px;}
.ls1a{letter-spacing:1.440000px;}
.ls8e{letter-spacing:1.488000px;}
.ls12{letter-spacing:1.500000px;}
.ls9d{letter-spacing:1.536000px;}
.ls13{letter-spacing:1.560000px;}
.ls7e{letter-spacing:1.584000px;}
.ls3d{letter-spacing:1.620000px;}
.ls72{letter-spacing:1.632000px;}
.ls42{letter-spacing:1.680000px;}
.ls6c{letter-spacing:1.728000px;}
.ls2e{letter-spacing:1.740000px;}
.lsa0{letter-spacing:1.776000px;}
.ls25{letter-spacing:1.800000px;}
.ls6d{letter-spacing:1.824000px;}
.ls4c{letter-spacing:1.860000px;}
.ls92{letter-spacing:1.872000px;}
.ls2a{letter-spacing:1.920000px;}
.ls89{letter-spacing:1.968000px;}
.ls20{letter-spacing:1.980000px;}
.ls98{letter-spacing:2.016000px;}
.ls6{letter-spacing:2.040000px;}
.ls95{letter-spacing:2.064000px;}
.ls9{letter-spacing:2.100000px;}
.ls9e{letter-spacing:2.112000px;}
.ls44{letter-spacing:2.160000px;}
.ls84{letter-spacing:2.208000px;}
.ls24{letter-spacing:2.220000px;}
.ls14{letter-spacing:2.280000px;}
.ls61{letter-spacing:2.304000px;}
.ls43{letter-spacing:2.340000px;}
.ls15{letter-spacing:2.400000px;}
.ls7f{letter-spacing:2.448000px;}
.ls18{letter-spacing:2.460000px;}
.ls9a{letter-spacing:2.496000px;}
.ls22{letter-spacing:2.520000px;}
.ls16{letter-spacing:2.580000px;}
.ls68{letter-spacing:2.592000px;}
.ls49{letter-spacing:2.640000px;}
.ls97{letter-spacing:2.688000px;}
.ls3f{letter-spacing:2.696400px;}
.ls4b{letter-spacing:2.700000px;}
.ls36{letter-spacing:2.760000px;}
.ls70{letter-spacing:2.784000px;}
.ls5{letter-spacing:2.820000px;}
.ls48{letter-spacing:2.880000px;}
.ls83{letter-spacing:2.928000px;}
.ls4a{letter-spacing:2.940000px;}
.ls9f{letter-spacing:2.976000px;}
.ls23{letter-spacing:3.000000px;}
.ls7d{letter-spacing:3.024000px;}
.ls30{letter-spacing:3.060000px;}
.ls8d{letter-spacing:3.072000px;}
.ls2d{letter-spacing:3.120000px;}
.ls9c{letter-spacing:3.216000px;}
.ls2b{letter-spacing:3.240000px;}
.ls71{letter-spacing:3.264000px;}
.ls66{letter-spacing:3.300000px;}
.ls8a{letter-spacing:3.312000px;}
.ls32{letter-spacing:3.360000px;}
.ls2f{letter-spacing:3.420000px;}
.ls99{letter-spacing:3.504000px;}
.ls26{letter-spacing:3.540000px;}
.ls8b{letter-spacing:3.552000px;}
.ls63{letter-spacing:3.600000px;}
.ls45{letter-spacing:3.660000px;}
.ls21{letter-spacing:3.720000px;}
.ls7b{letter-spacing:3.744000px;}
.ls28{letter-spacing:3.780000px;}
.ls27{letter-spacing:3.840000px;}
.ls40{letter-spacing:3.960000px;}
.ls33{letter-spacing:4.020000px;}
.ls46{letter-spacing:4.080000px;}
.ls62{letter-spacing:4.140000px;}
.ls93{letter-spacing:4.176000px;}
.ls80{letter-spacing:4.224000px;}
.ls91{letter-spacing:4.272000px;}
.ls4d{letter-spacing:4.320000px;}
.lsa{letter-spacing:4.380000px;}
.ls78{letter-spacing:4.440000px;}
.ls75{letter-spacing:4.500000px;}
.lsa1{letter-spacing:4.608000px;}
.ls3e{letter-spacing:4.620000px;}
.ls76{letter-spacing:4.680000px;}
.ls82{letter-spacing:4.752000px;}
.ls58{letter-spacing:5.040000px;}
.ls57{letter-spacing:5.280000px;}
.ls5f{letter-spacing:5.460000px;}
.ls2c{letter-spacing:5.640000px;}
.ls5c{letter-spacing:5.700000px;}
.lsa4{letter-spacing:6.060000px;}
.ls5b{letter-spacing:6.240000px;}
.ls79{letter-spacing:7.020000px;}
.ls8c{letter-spacing:7.536000px;}
.ls7a{letter-spacing:7.620000px;}
.ls1{letter-spacing:59.532876px;}
.ls0{letter-spacing:59.533476px;}
.ls52{letter-spacing:150.096000px;}
.ls51{letter-spacing:151.008000px;}
.ls53{letter-spacing:162.096000px;}
.ls54{letter-spacing:181.440000px;}
.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;}
}
.ws31{word-spacing:-19.620000px;}
.wsb1{word-spacing:-19.356902px;}
.ws46{word-spacing:-18.660000px;}
.wsb3{word-spacing:-18.642017px;}
.ws18{word-spacing:-18.420000px;}
.wsaa{word-spacing:-18.240000px;}
.wsc6{word-spacing:-18.120000px;}
.ws91{word-spacing:-17.640000px;}
.ws9c{word-spacing:-17.460000px;}
.ws62{word-spacing:-17.246803px;}
.ws33{word-spacing:-17.220000px;}
.wsec{word-spacing:-16.980000px;}
.ws30{word-spacing:-16.920000px;}
.ws53{word-spacing:-16.800000px;}
.ws2{word-spacing:-16.680000px;}
.wsa9{word-spacing:-16.560000px;}
.ws86{word-spacing:-16.440000px;}
.ws17{word-spacing:-16.380000px;}
.ws9d{word-spacing:-16.260000px;}
.ws45{word-spacing:-16.080000px;}
.ws19{word-spacing:-15.960000px;}
.wsb8{word-spacing:-15.900000px;}
.ws9b{word-spacing:-15.840000px;}
.wsee{word-spacing:-15.744000px;}
.ws32{word-spacing:-15.720000px;}
.wsab{word-spacing:-15.660000px;}
.ws51{word-spacing:-15.600000px;}
.wsfc{word-spacing:-15.552000px;}
.ws50{word-spacing:-15.540000px;}
.ws103{word-spacing:-15.504000px;}
.ws15{word-spacing:-15.480000px;}
.ws52{word-spacing:-15.420000px;}
.ws60{word-spacing:-15.300000px;}
.wsc3{word-spacing:-15.264000px;}
.wseb{word-spacing:-15.240000px;}
.ws16{word-spacing:-15.180000px;}
.wsb9{word-spacing:-15.120000px;}
.ws6{word-spacing:-15.060000px;}
.ws5{word-spacing:-15.000000px;}
.ws4{word-spacing:-14.940000px;}
.wsf0{word-spacing:-14.448000px;}
.wsfd{word-spacing:-14.160000px;}
.ws102{word-spacing:-14.064000px;}
.ws101{word-spacing:-14.016000px;}
.ws12a{word-spacing:-13.968000px;}
.ws129{word-spacing:-13.920000px;}
.wsfe{word-spacing:-13.728000px;}
.wsff{word-spacing:-13.680000px;}
.ws54{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.344000px;}
.ws12b{word-spacing:-13.200000px;}
.ws126{word-spacing:-13.056000px;}
.ws104{word-spacing:-13.008000px;}
.ws105{word-spacing:-12.912000px;}
.wsfb{word-spacing:-12.864000px;}
.wsef{word-spacing:-12.768000px;}
.ws127{word-spacing:-12.576000px;}
.ws3{word-spacing:-12.510000px;}
.ws125{word-spacing:-12.480000px;}
.ws124{word-spacing:-12.432000px;}
.wsc4{word-spacing:-12.384000px;}
.ws61{word-spacing:-12.336000px;}
.ws100{word-spacing:-12.288000px;}
.wsc5{word-spacing:-12.096000px;}
.ws49{word-spacing:-12.000000px;}
.wsed{word-spacing:-11.952000px;}
.ws128{word-spacing:-11.904000px;}
.wscf{word-spacing:-11.760000px;}
.ws0{word-spacing:-10.210662px;}
.wsca{word-spacing:-8.928000px;}
.wsd6{word-spacing:-7.824000px;}
.wscc{word-spacing:-7.680000px;}
.ws1{word-spacing:-7.293330px;}
.wscb{word-spacing:-6.528000px;}
.wse0{word-spacing:-6.384000px;}
.wsd2{word-spacing:-6.288000px;}
.wse5{word-spacing:-6.192000px;}
.ws138{word-spacing:-6.060000px;}
.ws12e{word-spacing:-4.752000px;}
.ws136{word-spacing:-4.608000px;}
.wsf5{word-spacing:-4.380000px;}
.ws110{word-spacing:-4.176000px;}
.wsd7{word-spacing:-3.840000px;}
.wsd9{word-spacing:-3.696000px;}
.ws4d{word-spacing:-3.660000px;}
.wsdd{word-spacing:-3.600000px;}
.ws2b{word-spacing:-3.420000px;}
.wse2{word-spacing:-3.168000px;}
.wse3{word-spacing:-3.072000px;}
.ws9{word-spacing:-2.886000px;}
.wse6{word-spacing:-2.784000px;}
.wsf6{word-spacing:-2.700000px;}
.ws11f{word-spacing:-2.688000px;}
.ws4f{word-spacing:-2.640000px;}
.ws130{word-spacing:-2.496000px;}
.ws1d{word-spacing:-2.460000px;}
.wsce{word-spacing:-2.448000px;}
.wsae{word-spacing:-2.340000px;}
.wsdc{word-spacing:-2.256000px;}
.ws2a{word-spacing:-2.220000px;}
.wsd8{word-spacing:-2.064000px;}
.ws120{word-spacing:-1.968000px;}
.ws11b{word-spacing:-1.920000px;}
.ws10f{word-spacing:-1.872000px;}
.wsd5{word-spacing:-1.776000px;}
.ws112{word-spacing:-1.728000px;}
.wsad{word-spacing:-1.680000px;}
.wse7{word-spacing:-1.632000px;}
.wsaf{word-spacing:-1.620000px;}
.wsc9{word-spacing:-1.536000px;}
.ws3f{word-spacing:-1.500000px;}
.ws20{word-spacing:-1.440000px;}
.ws9e{word-spacing:-1.380000px;}
.wsc7{word-spacing:-1.260000px;}
.wsbe{word-spacing:-1.200000px;}
.ws118{word-spacing:-1.152000px;}
.ws28{word-spacing:-1.140000px;}
.wsde{word-spacing:-1.104000px;}
.ws9f{word-spacing:-1.080000px;}
.ws122{word-spacing:-1.056000px;}
.ws43{word-spacing:-1.020000px;}
.ws3d{word-spacing:-0.960000px;}
.wsbf{word-spacing:-0.900000px;}
.ws4e{word-spacing:-0.864000px;}
.ws3a{word-spacing:-0.780000px;}
.ws5c{word-spacing:-0.720000px;}
.ws11a{word-spacing:-0.672000px;}
.ws5a{word-spacing:-0.600000px;}
.ws106{word-spacing:-0.576000px;}
.ws63{word-spacing:-0.540000px;}
.wsd1{word-spacing:-0.528000px;}
.ws1a{word-spacing:-0.480000px;}
.ws12c{word-spacing:-0.432000px;}
.ws25{word-spacing:-0.420000px;}
.ws115{word-spacing:-0.384000px;}
.ws57{word-spacing:-0.360000px;}
.ws116{word-spacing:-0.336000px;}
.ws44{word-spacing:-0.300000px;}
.ws119{word-spacing:-0.288000px;}
.ws99{word-spacing:-0.240000px;}
.ws109{word-spacing:-0.192000px;}
.wsbc{word-spacing:-0.180000px;}
.ws8d{word-spacing:-0.120000px;}
.ws11e{word-spacing:-0.096000px;}
.wsb2{word-spacing:-0.082487px;}
.ws41{word-spacing:-0.060000px;}
.wsb4{word-spacing:-0.054991px;}
.ws69{word-spacing:-0.048997px;}
.ws132{word-spacing:-0.048000px;}
.ws8{word-spacing:0.000000px;}
.wse8{word-spacing:0.048000px;}
.ws6a{word-spacing:0.048997px;}
.wsa{word-spacing:0.060000px;}
.ws8b{word-spacing:0.096000px;}
.ws6b{word-spacing:0.097993px;}
.ws1b{word-spacing:0.120000px;}
.ws135{word-spacing:0.144000px;}
.ws88{word-spacing:0.180000px;}
.wsdf{word-spacing:0.192000px;}
.ws68{word-spacing:0.240000px;}
.ws2e{word-spacing:0.300000px;}
.ws90{word-spacing:0.336000px;}
.ws4a{word-spacing:0.360000px;}
.ws108{word-spacing:0.384000px;}
.wsc2{word-spacing:0.420000px;}
.ws10d{word-spacing:0.432000px;}
.wscd{word-spacing:0.480000px;}
.wsb6{word-spacing:0.528000px;}
.wsf2{word-spacing:0.540000px;}
.ws134{word-spacing:0.576000px;}
.ws2d{word-spacing:0.600000px;}
.wsda{word-spacing:0.624000px;}
.ws10{word-spacing:0.660000px;}
.ws94{word-spacing:0.672000px;}
.wsf{word-spacing:0.720000px;}
.ws8a{word-spacing:0.768000px;}
.ws98{word-spacing:0.816000px;}
.ws26{word-spacing:0.840000px;}
.ws12d{word-spacing:0.864000px;}
.ws113{word-spacing:0.912000px;}
.ws3e{word-spacing:0.960000px;}
.ws87{word-spacing:1.080000px;}
.ws11c{word-spacing:1.104000px;}
.ws23{word-spacing:1.140000px;}
.wsb0{word-spacing:1.152000px;}
.ws29{word-spacing:1.200000px;}
.wsc0{word-spacing:1.260000px;}
.wsb7{word-spacing:1.296000px;}
.ws40{word-spacing:1.380000px;}
.ws10c{word-spacing:1.392000px;}
.wsd4{word-spacing:1.440000px;}
.ws131{word-spacing:1.488000px;}
.ws58{word-spacing:1.500000px;}
.ws12{word-spacing:1.560000px;}
.wsfa{word-spacing:1.584000px;}
.wsd{word-spacing:1.620000px;}
.ws11d{word-spacing:1.632000px;}
.ws3b{word-spacing:1.680000px;}
.ws12f{word-spacing:1.728000px;}
.wse{word-spacing:1.740000px;}
.wse1{word-spacing:1.776000px;}
.ws1f{word-spacing:1.800000px;}
.wse9{word-spacing:1.872000px;}
.wsa1{word-spacing:1.920000px;}
.ws4b{word-spacing:2.040000px;}
.wsdb{word-spacing:2.064000px;}
.ws92{word-spacing:2.100000px;}
.ws27{word-spacing:2.160000px;}
.ws133{word-spacing:2.208000px;}
.ws95{word-spacing:2.220000px;}
.ws111{word-spacing:2.256000px;}
.ws21{word-spacing:2.280000px;}
.wsc8{word-spacing:2.340000px;}
.wsf8{word-spacing:2.352000px;}
.ws3c{word-spacing:2.400000px;}
.ws114{word-spacing:2.448000px;}
.ws24{word-spacing:2.460000px;}
.ws10a{word-spacing:2.496000px;}
.ws93{word-spacing:2.520000px;}
.ws117{word-spacing:2.544000px;}
.wsac{word-spacing:2.580000px;}
.wse4{word-spacing:2.592000px;}
.wsba{word-spacing:2.640000px;}
.ws1c{word-spacing:2.700000px;}
.ws97{word-spacing:2.736000px;}
.ws1e{word-spacing:2.760000px;}
.wsf7{word-spacing:2.784000px;}
.ws5f{word-spacing:2.820000px;}
.ws137{word-spacing:2.832000px;}
.ws5e{word-spacing:2.880000px;}
.ws139{word-spacing:2.940000px;}
.ws8f{word-spacing:3.000000px;}
.ws8c{word-spacing:3.060000px;}
.ws121{word-spacing:3.072000px;}
.ws89{word-spacing:3.120000px;}
.ws10b{word-spacing:3.168000px;}
.ws84{word-spacing:3.180000px;}
.ws85{word-spacing:3.240000px;}
.ws10e{word-spacing:3.264000px;}
.ws2f{word-spacing:3.300000px;}
.ws55{word-spacing:3.360000px;}
.ws123{word-spacing:3.408000px;}
.ws5b{word-spacing:3.420000px;}
.wsf9{word-spacing:3.456000px;}
.ws96{word-spacing:3.504000px;}
.ws8e{word-spacing:3.540000px;}
.wsa8{word-spacing:3.600000px;}
.ws11{word-spacing:3.660000px;}
.ws107{word-spacing:3.696000px;}
.wsbd{word-spacing:3.720000px;}
.ws2c{word-spacing:3.780000px;}
.ws59{word-spacing:3.840000px;}
.ws56{word-spacing:3.900000px;}
.ws9a{word-spacing:3.936000px;}
.ws65{word-spacing:3.960000px;}
.ws67{word-spacing:3.984000px;}
.ws22{word-spacing:4.020000px;}
.ws13{word-spacing:4.080000px;}
.ws14{word-spacing:4.140000px;}
.wsea{word-spacing:4.200000px;}
.ws66{word-spacing:4.260000px;}
.ws39{word-spacing:4.320000px;}
.wsb5{word-spacing:4.380000px;}
.ws64{word-spacing:4.500000px;}
.wsf1{word-spacing:4.560000px;}
.wsbb{word-spacing:4.620000px;}
.ws5d{word-spacing:4.680000px;}
.wsc1{word-spacing:4.740000px;}
.ws4c{word-spacing:4.800000px;}
.ws42{word-spacing:4.860000px;}
.wsa0{word-spacing:4.896000px;}
.wsb{word-spacing:4.920000px;}
.wsc{word-spacing:4.980000px;}
.wsf4{word-spacing:5.460000px;}
.wsf3{word-spacing:5.520000px;}
.wsd0{word-spacing:43.296000px;}
.wsd3{word-spacing:63.840000px;}
.wsa5{word-spacing:92.064000px;}
.wsa4{word-spacing:104.064000px;}
.ws7f{word-spacing:106.128000px;}
.ws75{word-spacing:108.096000px;}
.ws7c{word-spacing:108.960000px;}
.ws82{word-spacing:110.544000px;}
.ws76{word-spacing:120.096000px;}
.ws7d{word-spacing:121.008000px;}
.ws79{word-spacing:121.872000px;}
.wsa7{word-spacing:122.064000px;}
.ws77{word-spacing:132.096000px;}
.ws73{word-spacing:138.096000px;}
.ws72{word-spacing:138.960000px;}
.ws6f{word-spacing:140.928000px;}
.ws6c{word-spacing:147.456000px;}
.ws7e{word-spacing:150.096000px;}
.ws81{word-spacing:151.440000px;}
.ws74{word-spacing:156.144000px;}
.ws7b{word-spacing:157.008000px;}
.ws80{word-spacing:168.144000px;}
.ws78{word-spacing:169.920000px;}
.ws83{word-spacing:170.160000px;}
.ws7a{word-spacing:181.920000px;}
.ws36{word-spacing:212.928000px;}
.wsa3{word-spacing:224.064000px;}
.ws34{word-spacing:231.936000px;}
.ws38{word-spacing:235.632000px;}
.wsa6{word-spacing:242.064000px;}
.ws6e{word-spacing:242.976000px;}
.ws35{word-spacing:259.584000px;}
.ws47{word-spacing:281.856000px;}
.ws6d{word-spacing:310.992000px;}
.ws71{word-spacing:324.192000px;}
.wsa2{word-spacing:327.888000px;}
.ws70{word-spacing:328.608000px;}
.ws48{word-spacing:358.608000px;}
.ws37{word-spacing:420.480000px;}
._b{margin-left:-2898.096000px;}
._22{margin-left:-2874.288000px;}
._78{margin-left:-39.329940px;}
._2{margin-left:-9.368400px;}
._72{margin-left:-7.740000px;}
._5{margin-left:-6.660000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.481200px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.038060px;}
._7{width:1.020000px;}
._9{width:2.460000px;}
._6{width:4.020000px;}
._8{width:5.520000px;}
._c{width:6.540000px;}
._a{width:8.400000px;}
._7b{width:9.490200px;}
._7c{width:15.078000px;}
._7d{width:16.645200px;}
._75{width:38.748120px;}
._76{width:42.672000px;}
._73{width:43.824000px;}
._79{width:58.201200px;}
._7a{width:59.424000px;}
._77{width:62.544000px;}
._74{width:63.840000px;}
._62{width:89.040000px;}
._5d{width:99.744000px;}
._6f{width:101.568000px;}
._61{width:104.137200px;}
._60{width:113.088000px;}
._69{width:116.064000px;}
._4f{width:118.128000px;}
._6b{width:128.112000px;}
._4d{width:130.128000px;}
._55{width:142.128000px;}
._32{width:143.280000px;}
._51{width:150.096000px;}
._e{width:162.240000px;}
._31{width:175.200000px;}
._46{width:177.888000px;}
._20{width:181.071600px;}
._53{width:182.160000px;}
._2c{width:183.679200px;}
._28{width:185.856000px;}
._24{width:187.200000px;}
._29{width:189.264000px;}
._5a{width:194.160000px;}
._47{width:198.672000px;}
._42{width:201.024000px;}
._56{width:207.936000px;}
._37{width:210.624000px;}
._67{width:213.648000px;}
._52{width:218.160000px;}
._1a{width:220.896000px;}
._71{width:232.524000px;}
._6c{width:237.600000px;}
._12{width:240.073200px;}
._1e{width:243.600000px;}
._25{width:246.528000px;}
._50{width:252.214800px;}
._21{width:253.392000px;}
._54{width:260.976000px;}
._5c{width:265.056000px;}
._d{width:266.089200px;}
._15{width:267.190800px;}
._57{width:268.944000px;}
._13{width:270.384000px;}
._3c{width:276.096000px;}
._5f{width:278.400000px;}
._3b{width:286.249200px;}
._4b{width:288.192000px;}
._1c{width:292.105200px;}
._1f{width:297.408000px;}
._33{width:301.440000px;}
._11{width:307.488000px;}
._30{width:309.408000px;}
._34{width:312.096000px;}
._35{width:315.648000px;}
._5e{width:321.121800px;}
._4a{width:322.848000px;}
._18{width:324.720000px;}
._16{width:326.592000px;}
._1b{width:329.328000px;}
._14{width:335.449200px;}
._17{width:341.977200px;}
._65{width:351.744000px;}
._f{width:352.752000px;}
._1d{width:356.544000px;}
._58{width:364.932000px;}
._19{width:380.496000px;}
._45{width:382.656000px;}
._64{width:389.088000px;}
._38{width:397.440000px;}
._3f{width:399.625200px;}
._4e{width:416.928000px;}
._5b{width:423.648000px;}
._10{width:426.480000px;}
._40{width:445.392000px;}
._41{width:472.944000px;}
._59{width:474.288000px;}
._26{width:479.184000px;}
._2d{width:537.456000px;}
._36{width:558.816000px;}
._2b{width:561.504000px;}
._43{width:563.280000px;}
._4c{width:564.864000px;}
._2e{width:566.352000px;}
._3d{width:569.040000px;}
._2a{width:576.096000px;}
._44{width:577.359600px;}
._27{width:578.454000px;}
._39{width:582.336000px;}
._3e{width:593.808000px;}
._2f{width:599.136000px;}
._3a{width:604.416000px;}
._48{width:620.976000px;}
._49{width:666.384000px;}
._23{width:681.577200px;}
._6e{width:791.328000px;}
._70{width:848.736000px;}
._6d{width:903.312000px;}
._66{width:917.616000px;}
._68{width:933.552000px;}
._6a{width:989.952000px;}
._63{width:1088.688000px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,187);}
.fc3{color:rgb(247,5,5);}
.fc2{color:rgb(0,128,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsc{font-size:28.821600px;}
.fse{font-size:34.586400px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsd{font-size:48.996600px;}
.fsb{font-size:54.000000px;}
.fsf{font-size:54.991200px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs10{font-size:82.486800px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y23a{bottom:24.388950px;}
.y1{bottom:46.264950px;}
.y2e{bottom:47.777250px;}
.y2dc{bottom:77.121900px;}
.y1ad{bottom:83.023350px;}
.y2a2{bottom:83.365350px;}
.y264{bottom:83.405250px;}
.y1f0{bottom:83.413500px;}
.y29d{bottom:83.630850px;}
.y64{bottom:83.770350px;}
.y142{bottom:83.862150px;}
.y1b0{bottom:83.873850px;}
.y19f{bottom:83.885550px;}
.y6d{bottom:83.920350px;}
.y1b6{bottom:84.051300px;}
.y11a{bottom:84.070350px;}
.y244{bottom:84.192750px;}
.y1fb{bottom:84.237300px;}
.y19c{bottom:84.835950px;}
.y23f{bottom:85.054800px;}
.y1e{bottom:88.029450px;}
.yf8{bottom:90.627450px;}
.y13b{bottom:91.112100px;}
.y2db{bottom:92.121900px;}
.yac{bottom:92.710050px;}
.y238{bottom:94.669500px;}
.y304{bottom:95.263500px;}
.y263{bottom:98.405250px;}
.y1ac{bottom:98.767350px;}
.y1ef{bottom:99.157500px;}
.y141{bottom:99.606150px;}
.y1af{bottom:99.617850px;}
.y19e{bottom:99.629550px;}
.y1b5{bottom:99.795300px;}
.y243{bottom:99.936750px;}
.y23e{bottom:100.798800px;}
.y19b{bottom:101.335950px;}
.y29c{bottom:101.630850px;}
.y63{bottom:101.770350px;}
.y6c{bottom:101.920350px;}
.y231{bottom:101.922600px;}
.y119{bottom:102.070350px;}
.y1d{bottom:103.023000px;}
.y1ea{bottom:104.172600px;}
.y239{bottom:105.448500px;}
.yf7{bottom:106.875450px;}
.y2da{bottom:107.121900px;}
.yab{bottom:108.958050px;}
.y13a{bottom:109.112100px;}
.y1fa{bottom:109.749300px;}
.y303{bottom:110.263500px;}
.y237{bottom:110.413500px;}
.y262{bottom:113.405250px;}
.y1ab{bottom:114.511350px;}
.y1ee{bottom:114.901500px;}
.y140{bottom:115.350150px;}
.y1ae{bottom:115.361850px;}
.y1b4{bottom:115.539300px;}
.y242{bottom:115.680750px;}
.y29b{bottom:119.630850px;}
.y62{bottom:119.770350px;}
.y6b{bottom:119.920350px;}
.y230{bottom:119.922600px;}
.y118{bottom:120.070350px;}
.y2d9{bottom:122.121900px;}
.y1e9{bottom:122.172600px;}
.yf6{bottom:123.123450px;}
.yaa{bottom:125.206050px;}
.y302{bottom:125.263500px;}
.y1f9{bottom:125.997300px;}
.y236{bottom:126.157500px;}
.y19a{bottom:126.847950px;}
.y139{bottom:127.112100px;}
.y261{bottom:128.405250px;}
.y1ed{bottom:130.645500px;}
.y13f{bottom:131.094150px;}
.y1b3{bottom:131.283300px;}
.y2d8{bottom:137.121900px;}
.y29a{bottom:137.630850px;}
.y61{bottom:137.770350px;}
.y6a{bottom:137.920350px;}
.y22f{bottom:137.922600px;}
.yf5{bottom:139.371450px;}
.y1e8{bottom:140.172600px;}
.y301{bottom:140.263500px;}
.ya9{bottom:141.454050px;}
.y235{bottom:141.901500px;}
.y1f8{bottom:142.245300px;}
.y199{bottom:143.095950px;}
.y260{bottom:143.405250px;}
.y138{bottom:145.112100px;}
.y1ec{bottom:146.389500px;}
.y1b2{bottom:147.027300px;}
.y2d7{bottom:152.121900px;}
.y155{bottom:154.918500px;}
.y300{bottom:155.263500px;}
.yf4{bottom:155.619450px;}
.y299{bottom:155.630850px;}
.y117{bottom:155.665350px;}
.y60{bottom:155.770350px;}
.y69{bottom:155.920350px;}
.y22e{bottom:155.922600px;}
.y234{bottom:157.645500px;}
.ya8{bottom:157.702050px;}
.y1e7{bottom:158.172600px;}
.y25f{bottom:158.405250px;}
.y1f7{bottom:158.493300px;}
.y158{bottom:158.613444px;}
.y198{bottom:159.343950px;}
.y1eb{bottom:162.133500px;}
.y1b1{bottom:162.771300px;}
.y137{bottom:163.112100px;}
.y2d6{bottom:167.121900px;}
.y29{bottom:168.599400px;}
.y2ff{bottom:170.263500px;}
.yf3{bottom:171.867450px;}
.y233{bottom:173.389500px;}
.y25e{bottom:173.405250px;}
.y298{bottom:173.630850px;}
.y5f{bottom:173.770350px;}
.y68{bottom:173.920350px;}
.y22d{bottom:173.922600px;}
.ya7{bottom:173.950050px;}
.y1f6{bottom:174.741300px;}
.y197{bottom:175.591950px;}
.y1e6{bottom:176.172600px;}
.y136{bottom:181.112100px;}
.y145{bottom:181.375352px;}
.y2d5{bottom:182.121900px;}
.y166{bottom:184.527314px;}
.y2fe{bottom:185.263500px;}
.y28{bottom:186.599400px;}
.yf2{bottom:188.190750px;}
.y25d{bottom:188.405250px;}
.y232{bottom:189.133500px;}
.ya6{bottom:190.450050px;}
.y1f5{bottom:190.989300px;}
.y116{bottom:191.530350px;}
.y297{bottom:191.630850px;}
.y5e{bottom:191.770350px;}
.y196{bottom:191.839950px;}
.y22c{bottom:191.922600px;}
.y1e5{bottom:194.172600px;}
.y2d4{bottom:197.121900px;}
.y135{bottom:199.112100px;}
.y2fd{bottom:200.263500px;}
.y168{bottom:201.664876px;}
.y25c{bottom:203.405250px;}
.y14d{bottom:204.109774px;}
.yf1{bottom:204.438750px;}
.y27{bottom:204.599400px;}
.ya5{bottom:206.698050px;}
.y1f4{bottom:207.237300px;}
.y195{bottom:208.087950px;}
.y67{bottom:209.515350px;}
.y296{bottom:209.630850px;}
.y5d{bottom:209.770350px;}
.y22b{bottom:209.922600px;}
.y2d3{bottom:212.121900px;}
.y1e4{bottom:212.172600px;}
.y2fc{bottom:215.263500px;}
.y134{bottom:217.112100px;}
.y25b{bottom:218.405250px;}
.yf0{bottom:220.686750px;}
.y26{bottom:222.599400px;}
.y194{bottom:224.335950px;}
.y152{bottom:226.844197px;}
.y2d2{bottom:227.121900px;}
.y295{bottom:227.630850px;}
.y5c{bottom:227.770350px;}
.y22a{bottom:227.922600px;}
.y1e3{bottom:230.172600px;}
.y2fb{bottom:230.263500px;}
.y25a{bottom:233.405250px;}
.y133{bottom:235.112100px;}
.yef{bottom:236.934750px;}
.y1f3{bottom:238.749300px;}
.ya4{bottom:239.446050px;}
.y193{bottom:240.583950px;}
.y25{bottom:240.599400px;}
.y2d1{bottom:242.121900px;}
.y2fa{bottom:245.263500px;}
.y294{bottom:245.630850px;}
.y5b{bottom:245.770350px;}
.y229{bottom:245.922600px;}
.y115{bottom:246.070350px;}
.y160{bottom:247.068172px;}
.y1e2{bottom:248.172600px;}
.y259{bottom:248.405250px;}
.y15d{bottom:249.587881px;}
.y132{bottom:253.112100px;}
.yee{bottom:253.182750px;}
.y192{bottom:256.891500px;}
.y2d0{bottom:257.121900px;}
.y24{bottom:258.599400px;}
.y2f9{bottom:260.263500px;}
.y258{bottom:263.405250px;}
.y293{bottom:263.630850px;}
.y5a{bottom:263.770350px;}
.y228{bottom:263.922600px;}
.y114{bottom:264.070350px;}
.y1e1{bottom:266.172600px;}
.yed{bottom:269.430750px;}
.ya3{bottom:270.958050px;}
.y131{bottom:271.112100px;}
.y2cf{bottom:272.121900px;}
.y148{bottom:272.325291px;}
.y191{bottom:273.139500px;}
.y1f2{bottom:273.644400px;}
.y2f8{bottom:275.263500px;}
.y23{bottom:276.599400px;}
.y257{bottom:278.405250px;}
.y164{bottom:280.184650px;}
.y2a1{bottom:281.365350px;}
.y292{bottom:281.630850px;}
.y59{bottom:281.770350px;}
.y227{bottom:281.922600px;}
.y113{bottom:282.070350px;}
.y1e0{bottom:284.172600px;}
.yec{bottom:285.678750px;}
.y2ce{bottom:287.121900px;}
.y130{bottom:289.112100px;}
.y190{bottom:289.387500px;}
.y2f7{bottom:290.263500px;}
.y1f1{bottom:293.144400px;}
.y256{bottom:293.405250px;}
.y22{bottom:294.599400px;}
.y146{bottom:295.071962px;}
.y291{bottom:299.630850px;}
.y58{bottom:299.770350px;}
.y226{bottom:299.922600px;}
.y112{bottom:300.070350px;}
.yeb{bottom:301.926750px;}
.y2cd{bottom:302.121900px;}
.y1df{bottom:302.172600px;}
.y2f6{bottom:305.263500px;}
.y18f{bottom:305.635500px;}
.ya2{bottom:305.852100px;}
.y12f{bottom:307.112100px;}
.y255{bottom:308.405250px;}
.y16c{bottom:310.707148px;}
.y21{bottom:312.599400px;}
.y2cc{bottom:317.121900px;}
.y290{bottom:317.630850px;}
.y57{bottom:317.770350px;}
.y154{bottom:317.806384px;}
.y225{bottom:317.922600px;}
.y111{bottom:318.070350px;}
.yea{bottom:318.174750px;}
.y1de{bottom:320.172600px;}
.y2f5{bottom:320.263500px;}
.y18e{bottom:321.883500px;}
.y23d{bottom:323.186918px;}
.y254{bottom:323.405250px;}
.y12e{bottom:325.112100px;}
.ya1{bottom:325.352100px;}
.y20{bottom:330.599400px;}
.y2cb{bottom:332.121900px;}
.ye9{bottom:334.422750px;}
.y2f4{bottom:335.263500px;}
.y2a0{bottom:335.365350px;}
.y56{bottom:335.770350px;}
.y224{bottom:335.922600px;}
.y110{bottom:336.070350px;}
.y169{bottom:337.286797px;}
.y18d{bottom:338.131500px;}
.y1dd{bottom:338.172600px;}
.y253{bottom:338.405250px;}
.y159{bottom:340.537820px;}
.y1ff{bottom:341.121300px;}
.y12d{bottom:343.112100px;}
.y2ca{bottom:347.121900px;}
.y2b{bottom:348.599400px;}
.y2f3{bottom:350.263500px;}
.ye8{bottom:350.670750px;}
.y28f{bottom:353.225850px;}
.y252{bottom:353.405250px;}
.y55{bottom:353.770350px;}
.y223{bottom:353.922600px;}
.y10f{bottom:354.070350px;}
.y18c{bottom:354.379500px;}
.y1dc{bottom:356.172600px;}
.y1fe{bottom:356.865300px;}
.y12c{bottom:361.112100px;}
.y2c9{bottom:362.121900px;}
.y14c{bottom:363.287478px;}
.y2f2{bottom:365.263500px;}
.y1f{bottom:366.194400px;}
.y2a{bottom:366.599400px;}
.ye7{bottom:366.918750px;}
.y251{bottom:368.405250px;}
.y18b{bottom:370.627500px;}
.y54{bottom:371.770350px;}
.ya0{bottom:371.912100px;}
.y7c{bottom:371.920350px;}
.y222{bottom:371.922600px;}
.y10e{bottom:372.070350px;}
.y1fd{bottom:372.609300px;}
.y15f{bottom:374.026200px;}
.y1db{bottom:374.172600px;}
.y2c8{bottom:377.121900px;}
.y12b{bottom:379.112100px;}
.y2f1{bottom:380.263500px;}
.ye6{bottom:383.166750px;}
.y250{bottom:383.405250px;}
.y144{bottom:386.034150px;}
.y18a{bottom:386.875500px;}
.y1fc{bottom:388.353300px;}
.y53{bottom:389.770350px;}
.y9f{bottom:389.912100px;}
.y7b{bottom:389.920350px;}
.y221{bottom:389.922600px;}
.y10d{bottom:390.070350px;}
.y2c7{bottom:392.121900px;}
.y1da{bottom:392.172600px;}
.y2f0{bottom:395.263500px;}
.y24f{bottom:398.405250px;}
.y161{bottom:399.040814px;}
.ye5{bottom:399.414750px;}
.y189{bottom:403.123500px;}
.y2c6{bottom:407.121900px;}
.y28e{bottom:407.263500px;}
.y52{bottom:407.770350px;}
.y9e{bottom:407.912100px;}
.y7a{bottom:407.920350px;}
.y220{bottom:407.922600px;}
.y10c{bottom:408.070350px;}
.y147{bottom:408.768572px;}
.y1d9{bottom:410.172600px;}
.y2ef{bottom:410.263500px;}
.y24e{bottom:413.405250px;}
.y12a{bottom:413.952750px;}
.ye4{bottom:415.662750px;}
.y188{bottom:419.371500px;}
.y2c5{bottom:422.121900px;}
.y28d{bottom:422.263500px;}
.y2ee{bottom:425.263500px;}
.y51{bottom:425.770350px;}
.y9d{bottom:425.912100px;}
.y79{bottom:425.920350px;}
.y21f{bottom:425.922600px;}
.y10b{bottom:426.070350px;}
.y1d8{bottom:428.172600px;}
.y24d{bottom:428.405250px;}
.y129{bottom:429.558750px;}
.y14e{bottom:431.515244px;}
.ye3{bottom:431.910750px;}
.y187{bottom:435.619500px;}
.y2c4{bottom:437.121900px;}
.y28c{bottom:437.263500px;}
.y2ed{bottom:440.263500px;}
.y1c{bottom:441.364200px;}
.y24c{bottom:443.405250px;}
.y50{bottom:443.770350px;}
.y9c{bottom:443.912100px;}
.y78{bottom:443.920350px;}
.y21e{bottom:443.922600px;}
.y128{bottom:443.935350px;}
.y10a{bottom:444.070350px;}
.y1d7{bottom:446.172600px;}
.ye2{bottom:448.158750px;}
.y186{bottom:451.867500px;}
.y2c3{bottom:452.121900px;}
.y28b{bottom:452.263500px;}
.y153{bottom:454.249666px;}
.y2ec{bottom:455.263500px;}
.y24b{bottom:458.405250px;}
.y29f{bottom:461.365350px;}
.y127{bottom:461.530350px;}
.y4f{bottom:461.770350px;}
.y9b{bottom:461.912100px;}
.y77{bottom:461.920350px;}
.y21d{bottom:461.922600px;}
.y109{bottom:462.070350px;}
.y162{bottom:463.838434px;}
.y1d6{bottom:464.172600px;}
.ye1{bottom:464.406750px;}
.y2c2{bottom:467.121900px;}
.y28a{bottom:467.263500px;}
.y185{bottom:468.115500px;}
.y1b{bottom:468.709200px;}
.y2eb{bottom:470.263500px;}
.y24a{bottom:473.405250px;}
.y150{bottom:476.996338px;}
.y4e{bottom:479.770350px;}
.y9a{bottom:479.912100px;}
.y76{bottom:479.920350px;}
.y21c{bottom:479.922600px;}
.y108{bottom:480.070350px;}
.ye0{bottom:480.654750px;}
.y2c1{bottom:482.121900px;}
.y1d5{bottom:482.172600px;}
.y289{bottom:482.263500px;}
.y184{bottom:484.363500px;}
.y2ea{bottom:485.263500px;}
.y1a{bottom:486.709200px;}
.y249{bottom:488.405250px;}
.ydf{bottom:496.902750px;}
.y2c0{bottom:497.121900px;}
.y288{bottom:497.263500px;}
.y126{bottom:497.380350px;}
.y4d{bottom:497.770350px;}
.y99{bottom:497.912100px;}
.y75{bottom:497.920350px;}
.y21b{bottom:497.922600px;}
.y107{bottom:498.070350px;}
.y14a{bottom:499.730760px;}
.y1d4{bottom:500.172600px;}
.y2e9{bottom:500.263500px;}
.y183{bottom:500.678850px;}
.y248{bottom:503.405250px;}
.y19{bottom:504.709200px;}
.y2bf{bottom:512.121900px;}
.y287{bottom:512.263500px;}
.y2e8{bottom:515.263500px;}
.y125{bottom:515.380350px;}
.y4c{bottom:515.770350px;}
.y98{bottom:515.912100px;}
.y74{bottom:515.920350px;}
.y21a{bottom:515.922600px;}
.y106{bottom:516.070350px;}
.y16d{bottom:516.781566px;}
.y182{bottom:516.926850px;}
.y1d3{bottom:518.172600px;}
.y247{bottom:518.405250px;}
.y14f{bottom:522.477432px;}
.y18{bottom:522.709200px;}
.y2be{bottom:527.121900px;}
.y286{bottom:527.263500px;}
.yde{bottom:528.414750px;}
.y2e7{bottom:530.263500px;}
.y181{bottom:533.174850px;}
.y124{bottom:533.380350px;}
.y4b{bottom:533.770350px;}
.y97{bottom:533.912100px;}
.y73{bottom:533.920350px;}
.y219{bottom:533.922600px;}
.y105{bottom:534.070350px;}
.y1d2{bottom:536.172600px;}
.y17{bottom:540.709200px;}
.y2bd{bottom:542.121900px;}
.y285{bottom:542.263500px;}
.y14b{bottom:545.211854px;}
.y2e6{bottom:545.263500px;}
.y180{bottom:549.422850px;}
.y123{bottom:551.380350px;}
.y4a{bottom:551.770350px;}
.y96{bottom:551.912100px;}
.y72{bottom:551.920350px;}
.y218{bottom:551.922600px;}
.y104{bottom:552.070350px;}
.y1d1{bottom:554.172600px;}
.y2bc{bottom:557.121900px;}
.y284{bottom:557.263500px;}
.y16{bottom:558.709200px;}
.y2e5{bottom:560.263500px;}
.ydd{bottom:563.328300px;}
.y17f{bottom:565.670850px;}
.y149{bottom:567.946277px;}
.y122{bottom:569.380350px;}
.y49{bottom:569.770350px;}
.y95{bottom:569.912100px;}
.y71{bottom:569.920350px;}
.y217{bottom:569.922600px;}
.y167{bottom:570.468305px;}
.y2bb{bottom:572.121900px;}
.y1d0{bottom:572.172600px;}
.y156{bottom:572.202450px;}
.y283{bottom:572.263500px;}
.y2e4{bottom:575.263500px;}
.y15{bottom:576.709200px;}
.y16a{bottom:577.662277px;}
.y17e{bottom:581.918850px;}
.ydc{bottom:582.828300px;}
.y2ba{bottom:587.121900px;}
.y282{bottom:587.263500px;}
.y121{bottom:587.380350px;}
.y103{bottom:587.665350px;}
.y48{bottom:587.770350px;}
.y94{bottom:587.912100px;}
.y70{bottom:587.920350px;}
.y216{bottom:587.922600px;}
.y1cf{bottom:590.172600px;}
.y2e3{bottom:590.263500px;}
.y151{bottom:590.692948px;}
.y14{bottom:594.709200px;}
.y17d{bottom:598.166850px;}
.y2b9{bottom:602.121900px;}
.y281{bottom:602.263500px;}
.y2e2{bottom:605.263500px;}
.y120{bottom:605.380350px;}
.y47{bottom:605.770350px;}
.y93{bottom:605.912100px;}
.y246{bottom:605.920350px;}
.y215{bottom:605.922600px;}
.y1ce{bottom:608.172600px;}
.y13{bottom:612.709200px;}
.y15e{bottom:613.436633px;}
.y17c{bottom:614.414850px;}
.y2b8{bottom:617.121900px;}
.y280{bottom:617.263500px;}
.y2e1{bottom:620.263500px;}
.y6f{bottom:623.515350px;}
.y46{bottom:623.770350px;}
.y92{bottom:623.912100px;}
.y102{bottom:623.920350px;}
.y214{bottom:623.922600px;}
.ydb{bottom:624.423300px;}
.yc3{bottom:624.558300px;}
.y1cd{bottom:626.172600px;}
.y23c{bottom:627.728184px;}
.y16b{bottom:629.386238px;}
.y17b{bottom:630.662850px;}
.y12{bottom:630.709200px;}
.y2b7{bottom:632.121900px;}
.y27f{bottom:632.263500px;}
.y2e0{bottom:635.263500px;}
.y15a{bottom:636.158806px;}
.y11f{bottom:641.245350px;}
.y45{bottom:641.770350px;}
.y1aa{bottom:641.785350px;}
.y91{bottom:641.912100px;}
.y101{bottom:641.920350px;}
.y213{bottom:641.922600px;}
.yda{bottom:642.423300px;}
.yc2{bottom:642.558300px;}
.y1cc{bottom:644.172600px;}
.y17a{bottom:646.910850px;}
.y2b6{bottom:647.121900px;}
.y27e{bottom:647.263500px;}
.y11{bottom:648.709200px;}
.y2df{bottom:650.263500px;}
.y16e{bottom:656.354983px;}
.y15c{bottom:658.905478px;}
.y44{bottom:659.770350px;}
.y1a9{bottom:659.785350px;}
.y90{bottom:659.912100px;}
.y100{bottom:659.920350px;}
.y212{bottom:659.922600px;}
.yd9{bottom:660.423300px;}
.yc1{bottom:660.558300px;}
.y2b5{bottom:662.121900px;}
.y1cb{bottom:662.172600px;}
.y179{bottom:663.158850px;}
.y2de{bottom:665.263500px;}
.y2b4{bottom:677.121900px;}
.y245{bottom:677.515350px;}
.y43{bottom:677.770350px;}
.y1a8{bottom:677.785350px;}
.yff{bottom:677.920350px;}
.y211{bottom:677.922600px;}
.y8f{bottom:677.935350px;}
.yd8{bottom:678.423300px;}
.yc0{bottom:678.558300px;}
.y178{bottom:679.406850px;}
.y1ca{bottom:680.172600px;}
.y27d{bottom:680.263500px;}
.y157{bottom:681.639900px;}
.y165{bottom:682.087265px;}
.y143{bottom:682.670400px;}
.y2b3{bottom:692.121900px;}
.y10{bottom:693.867300px;}
.y27c{bottom:695.263500px;}
.y177{bottom:695.654850px;}
.y42{bottom:695.770350px;}
.y11e{bottom:695.785350px;}
.yfe{bottom:695.920350px;}
.y210{bottom:695.922600px;}
.y8e{bottom:695.935350px;}
.yd7{bottom:696.423300px;}
.ybf{bottom:696.558300px;}
.y1c9{bottom:698.172600px;}
.y15b{bottom:704.386572px;}
.yf{bottom:706.318050px;}
.y2b2{bottom:707.121900px;}
.y16f{bottom:708.260523px;}
.y27b{bottom:710.263500px;}
.y176{bottom:711.902850px;}
.y41{bottom:713.770350px;}
.y11d{bottom:713.785350px;}
.yfd{bottom:713.920350px;}
.y20f{bottom:713.922600px;}
.yd6{bottom:714.423300px;}
.ybe{bottom:714.558300px;}
.y1c8{bottom:716.172600px;}
.ye{bottom:718.018050px;}
.y2b1{bottom:722.121900px;}
.y163{bottom:724.948461px;}
.y27a{bottom:725.263500px;}
.y175{bottom:728.150850px;}
.y29e{bottom:731.365350px;}
.y8d{bottom:731.530350px;}
.y40{bottom:731.770350px;}
.y11c{bottom:731.785350px;}
.yfc{bottom:731.920350px;}
.y20e{bottom:731.922600px;}
.yd5{bottom:732.423300px;}
.ybd{bottom:732.558300px;}
.y1c7{bottom:734.172600px;}
.y2b0{bottom:737.121900px;}
.y279{bottom:740.263500px;}
.y174{bottom:744.398850px;}
.yd{bottom:749.733600px;}
.y3f{bottom:749.770350px;}
.y30f{bottom:749.772600px;}
.y11b{bottom:749.785350px;}
.yfb{bottom:749.920350px;}
.y20d{bottom:749.922600px;}
.yd4{bottom:750.423300px;}
.ybc{bottom:750.558300px;}
.y2af{bottom:752.121900px;}
.y1c6{bottom:752.172600px;}
.y278{bottom:755.263500px;}
.y2ae{bottom:767.121900px;}
.y3e{bottom:767.770350px;}
.y30e{bottom:767.772600px;}
.y8c{bottom:767.785350px;}
.y13e{bottom:767.920350px;}
.y20c{bottom:767.922600px;}
.yd3{bottom:768.423300px;}
.ybb{bottom:768.558300px;}
.yc{bottom:768.658950px;}
.y1c5{bottom:770.172600px;}
.y277{bottom:770.263500px;}
.y173{bottom:773.402850px;}
.y2ad{bottom:782.121900px;}
.yb{bottom:782.158950px;}
.y276{bottom:785.263500px;}
.yfa{bottom:785.515350px;}
.y3d{bottom:785.770350px;}
.y8b{bottom:785.785350px;}
.y13d{bottom:785.920350px;}
.y20b{bottom:785.922600px;}
.yd2{bottom:786.423300px;}
.yba{bottom:786.558300px;}
.y1c4{bottom:788.172600px;}
.ya{bottom:795.658950px;}
.y2ac{bottom:797.121900px;}
.y275{bottom:800.263500px;}
.y172{bottom:802.406850px;}
.y9{bottom:803.733600px;}
.y3c{bottom:803.770350px;}
.y30d{bottom:803.772600px;}
.y8a{bottom:803.785350px;}
.y1a7{bottom:803.920350px;}
.y20a{bottom:803.922600px;}
.yd1{bottom:804.423300px;}
.yb9{bottom:804.558300px;}
.y1c3{bottom:806.172600px;}
.y2ab{bottom:812.121900px;}
.y274{bottom:815.263500px;}
.y13c{bottom:821.515350px;}
.y3b{bottom:821.770350px;}
.y30c{bottom:821.772600px;}
.y89{bottom:821.785350px;}
.y1a6{bottom:821.920350px;}
.y209{bottom:821.922600px;}
.yd0{bottom:822.423300px;}
.yb8{bottom:822.558300px;}
.y8{bottom:822.658950px;}
.y1c2{bottom:824.172600px;}
.y2aa{bottom:827.121900px;}
.y273{bottom:830.263500px;}
.y171{bottom:834.805350px;}
.y3a{bottom:839.770350px;}
.y88{bottom:839.785350px;}
.y1a5{bottom:839.920350px;}
.y208{bottom:839.922600px;}
.ycf{bottom:840.423300px;}
.yb7{bottom:840.558300px;}
.y2a9{bottom:842.121900px;}
.y1c1{bottom:842.172600px;}
.y272{bottom:845.263500px;}
.y7{bottom:851.380950px;}
.y170{bottom:854.305350px;}
.y2a8{bottom:857.121900px;}
.y39{bottom:857.770350px;}
.y30b{bottom:857.772600px;}
.y87{bottom:857.785350px;}
.y1a4{bottom:857.920350px;}
.y207{bottom:857.922600px;}
.yce{bottom:858.423300px;}
.yb6{bottom:858.558300px;}
.y1c0{bottom:860.172600px;}
.y271{bottom:860.263500px;}
.y2a7{bottom:872.121900px;}
.y270{bottom:875.263500px;}
.y38{bottom:875.770350px;}
.y30a{bottom:875.772600px;}
.y86{bottom:875.785350px;}
.y1a3{bottom:875.920350px;}
.y206{bottom:875.922600px;}
.ycd{bottom:876.423300px;}
.yb5{bottom:876.558300px;}
.y1bf{bottom:878.172600px;}
.y2a6{bottom:887.121900px;}
.y26f{bottom:890.263500px;}
.y37{bottom:893.770350px;}
.y85{bottom:893.785350px;}
.y1a2{bottom:893.920350px;}
.y205{bottom:893.922600px;}
.ycc{bottom:894.423300px;}
.yb4{bottom:894.558300px;}
.y1be{bottom:896.172600px;}
.y6{bottom:897.543600px;}
.y2a5{bottom:902.121900px;}
.y26e{bottom:905.263500px;}
.y36{bottom:911.770350px;}
.y309{bottom:911.772600px;}
.y84{bottom:911.785350px;}
.y204{bottom:911.922600px;}
.ycb{bottom:912.423300px;}
.yb3{bottom:912.558300px;}
.y1bd{bottom:914.172600px;}
.y2a4{bottom:917.121900px;}
.y26d{bottom:920.263500px;}
.y66{bottom:929.365350px;}
.y1a1{bottom:929.515350px;}
.y23b{bottom:929.609250px;}
.y35{bottom:929.770350px;}
.y308{bottom:929.772600px;}
.y83{bottom:929.785350px;}
.y203{bottom:929.922600px;}
.yca{bottom:930.423300px;}
.y2a3{bottom:932.121900px;}
.y1bc{bottom:932.172600px;}
.y5{bottom:934.004400px;}
.y26c{bottom:935.263500px;}
.y34{bottom:947.770350px;}
.y307{bottom:947.772600px;}
.y82{bottom:947.785350px;}
.y202{bottom:947.922600px;}
.yb2{bottom:948.153300px;}
.yc9{bottom:948.423300px;}
.y1bb{bottom:950.172600px;}
.y26b{bottom:950.263500px;}
.y65{bottom:965.230350px;}
.y26a{bottom:965.263500px;}
.y33{bottom:965.770350px;}
.y81{bottom:965.785350px;}
.y201{bottom:965.922600px;}
.yc8{bottom:966.423300px;}
.y4{bottom:970.465200px;}
.y269{bottom:980.263500px;}
.y32{bottom:983.770350px;}
.y1ba{bottom:983.772600px;}
.y80{bottom:983.785350px;}
.yb1{bottom:984.408300px;}
.yc7{bottom:984.423300px;}
.y268{bottom:995.263500px;}
.y1b9{bottom:1001.367600px;}
.y200{bottom:1001.517600px;}
.y31{bottom:1001.770350px;}
.y306{bottom:1001.772600px;}
.y7f{bottom:1001.785350px;}
.yb0{bottom:1002.408300px;}
.yc6{bottom:1002.423300px;}
.y3{bottom:1006.926000px;}
.y267{bottom:1010.263500px;}
.y1b8{bottom:1019.367600px;}
.y30{bottom:1019.770350px;}
.y7e{bottom:1019.785350px;}
.yaf{bottom:1020.408300px;}
.yc5{bottom:1020.423300px;}
.y266{bottom:1025.263500px;}
.y241{bottom:1037.365350px;}
.y1b7{bottom:1037.367600px;}
.y2f{bottom:1037.770350px;}
.y7d{bottom:1037.785350px;}
.yae{bottom:1038.408300px;}
.yc4{bottom:1038.423300px;}
.y265{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y2dd{bottom:1132.413900px;}
.y6e{bottom:1132.418700px;}
.y1a0{bottom:1132.421700px;}
.y305{bottom:1132.423500px;}
.y240{bottom:1132.426800px;}
.yf9{bottom:1132.443450px;}
.y19d{bottom:1132.447950px;}
.yad{bottom:1132.450050px;}
.y2d{bottom:1136.092500px;}
.y2c{bottom:1150.492500px;}
.h6{height:20.060552px;}
.h15{height:22.038391px;}
.h19{height:26.446437px;}
.h8{height:28.393066px;}
.h2{height:30.577148px;}
.hc{height:32.761230px;}
.h1a{height:33.351562px;}
.h7{height:34.409180px;}
.hb{height:34.419980px;}
.hf{height:34.945312px;}
.he{height:36.703125px;}
.h17{height:37.225932px;}
.h16{height:37.465174px;}
.h13{height:40.031250px;}
.h10{height:41.689453px;}
.h1c{height:41.780423px;}
.ha{height:43.681641px;}
.h14{height:45.035156px;}
.h9{height:45.878906px;}
.hd{height:50.039062px;}
.h1e{height:51.659062px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h11{height:57.342773px;}
.h1d{height:57.354103px;}
.h12{height:57.435773px;}
.h4{height:92.168262px;}
.h18{height:582.796500px;}
.h1b{height:955.386000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w3{width:578.247000px;}
.w2{width:707.731500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4a{left:40.020284px;}
.x49{left:41.360100px;}
.x42{left:70.582650px;}
.xb{left:76.535400px;}
.x1a{left:78.661350px;}
.x2f{left:81.705000px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x14{left:99.921300px;}
.x4e{left:102.047400px;}
.x4{left:106.299300px;}
.xc{left:110.570400px;}
.x50{left:123.307350px;}
.x3{left:125.427900px;}
.x6{left:131.816400px;}
.x48{left:135.703650px;}
.x47{left:146.703000px;}
.x26{left:150.468900px;}
.x37{left:195.380009px;}
.x3b{left:196.494008px;}
.x5{left:212.876400px;}
.x40{left:220.786092px;}
.x18{left:222.345300px;}
.x15{left:227.109300px;}
.x1b{left:232.360350px;}
.x17{left:233.997300px;}
.x3c{left:248.981489px;}
.x38{left:255.415048px;}
.x30{left:273.094800px;}
.x36{left:282.772787px;}
.x3f{left:286.779729px;}
.x2d{left:288.974806px;}
.x3a{left:302.444798px;}
.x41{left:324.577969px;}
.x3e{left:327.021858px;}
.x2c{left:328.306634px;}
.x2a{left:331.462967px;}
.x39{left:338.420916px;}
.x34{left:342.627094px;}
.x2e{left:346.926554px;}
.x2b{left:349.544598px;}
.x3d{left:351.028965px;}
.x33{left:354.812008px;}
.x32{left:357.772600px;}
.x31{left:360.537450px;}
.x28{left:369.033121px;}
.xa{left:455.041500px;}
.xd{left:457.085400px;}
.x12{left:478.345350px;}
.x8{left:480.476400px;}
.x4f{left:482.603250px;}
.xf{left:491.090400px;}
.x1f{left:499.015350px;}
.x24{left:501.067200px;}
.x4d{left:503.858400px;}
.x21{left:508.585350px;}
.x13{left:512.365350px;}
.x7{left:514.496400px;}
.x1e{left:523.570350px;}
.xe{left:525.260400px;}
.x1d{left:529.135350px;}
.x22{left:558.610350px;}
.x1c{left:562.795350px;}
.x4b{left:570.683700px;}
.x20{left:572.350350px;}
.x23{left:578.260350px;}
.x4c{left:596.050350px;}
.x29{left:598.185365px;}
.x46{left:600.688650px;}
.x25{left:605.719200px;}
.x45{left:607.231950px;}
.x35{left:609.234900px;}
.x27{left:631.375800px;}
.x11{left:663.492300px;}
.x2{left:693.365400px;}
.x16{left:696.657300px;}
.x43{left:721.717650px;}
.x10{left:728.391600px;}
.x44{left:743.868150px;}
.x19{left:749.625300px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v4{vertical-align:-1.222027pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.440000pt;}
.v3{vertical-align:25.040000pt;}
.v1{vertical-align:27.005867pt;}
.ls56{letter-spacing:-1.578667pt;}
.ls41{letter-spacing:-0.906667pt;}
.lsd{letter-spacing:-0.693333pt;}
.ls10{letter-spacing:-0.440000pt;}
.lse{letter-spacing:-0.400000pt;}
.lsa2{letter-spacing:-0.384000pt;}
.ls64{letter-spacing:-0.266667pt;}
.ls65{letter-spacing:-0.213333pt;}
.lsa3{letter-spacing:-0.170667pt;}
.ls4e{letter-spacing:-0.160000pt;}
.ls9b{letter-spacing:-0.128000pt;}
.ls59{letter-spacing:-0.106667pt;}
.ls77{letter-spacing:-0.085333pt;}
.lsf{letter-spacing:-0.053333pt;}
.ls50{letter-spacing:-0.043553pt;}
.ls85{letter-spacing:-0.042667pt;}
.lsc{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003147pt;}
.ls86{letter-spacing:0.042667pt;}
.lsb{letter-spacing:0.053333pt;}
.ls67{letter-spacing:0.085333pt;}
.ls1f{letter-spacing:0.106667pt;}
.ls55{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.160000pt;}
.ls5a{letter-spacing:0.170667pt;}
.ls1d{letter-spacing:0.213333pt;}
.ls6e{letter-spacing:0.256000pt;}
.ls38{letter-spacing:0.266667pt;}
.ls4f{letter-spacing:0.298667pt;}
.ls7{letter-spacing:0.320000pt;}
.ls73{letter-spacing:0.341333pt;}
.ls1e{letter-spacing:0.373333pt;}
.ls69{letter-spacing:0.384000pt;}
.ls11{letter-spacing:0.426667pt;}
.ls60{letter-spacing:0.469333pt;}
.ls31{letter-spacing:0.480000pt;}
.ls6f{letter-spacing:0.512000pt;}
.ls3{letter-spacing:0.533333pt;}
.ls88{letter-spacing:0.554667pt;}
.ls47{letter-spacing:0.586667pt;}
.ls7c{letter-spacing:0.597333pt;}
.ls35{letter-spacing:0.640000pt;}
.ls6b{letter-spacing:0.682667pt;}
.ls1c{letter-spacing:0.693333pt;}
.ls8f{letter-spacing:0.725333pt;}
.ls39{letter-spacing:0.746667pt;}
.ls87{letter-spacing:0.768000pt;}
.ls34{letter-spacing:0.800000pt;}
.ls5d{letter-spacing:0.810667pt;}
.ls29{letter-spacing:0.853333pt;}
.ls90{letter-spacing:0.896000pt;}
.ls8{letter-spacing:0.906667pt;}
.ls5e{letter-spacing:0.938667pt;}
.ls37{letter-spacing:0.960000pt;}
.ls81{letter-spacing:0.981333pt;}
.ls3c{letter-spacing:0.983467pt;}
.ls17{letter-spacing:1.013333pt;}
.ls96{letter-spacing:1.024000pt;}
.ls4{letter-spacing:1.066667pt;}
.ls94{letter-spacing:1.109333pt;}
.ls3a{letter-spacing:1.120000pt;}
.ls74{letter-spacing:1.152000pt;}
.ls3b{letter-spacing:1.173333pt;}
.ls6a{letter-spacing:1.194667pt;}
.ls1b{letter-spacing:1.226667pt;}
.ls1a{letter-spacing:1.280000pt;}
.ls8e{letter-spacing:1.322667pt;}
.ls12{letter-spacing:1.333333pt;}
.ls9d{letter-spacing:1.365333pt;}
.ls13{letter-spacing:1.386667pt;}
.ls7e{letter-spacing:1.408000pt;}
.ls3d{letter-spacing:1.440000pt;}
.ls72{letter-spacing:1.450667pt;}
.ls42{letter-spacing:1.493333pt;}
.ls6c{letter-spacing:1.536000pt;}
.ls2e{letter-spacing:1.546667pt;}
.lsa0{letter-spacing:1.578667pt;}
.ls25{letter-spacing:1.600000pt;}
.ls6d{letter-spacing:1.621333pt;}
.ls4c{letter-spacing:1.653333pt;}
.ls92{letter-spacing:1.664000pt;}
.ls2a{letter-spacing:1.706667pt;}
.ls89{letter-spacing:1.749333pt;}
.ls20{letter-spacing:1.760000pt;}
.ls98{letter-spacing:1.792000pt;}
.ls6{letter-spacing:1.813333pt;}
.ls95{letter-spacing:1.834667pt;}
.ls9{letter-spacing:1.866667pt;}
.ls9e{letter-spacing:1.877333pt;}
.ls44{letter-spacing:1.920000pt;}
.ls84{letter-spacing:1.962667pt;}
.ls24{letter-spacing:1.973333pt;}
.ls14{letter-spacing:2.026667pt;}
.ls61{letter-spacing:2.048000pt;}
.ls43{letter-spacing:2.080000pt;}
.ls15{letter-spacing:2.133333pt;}
.ls7f{letter-spacing:2.176000pt;}
.ls18{letter-spacing:2.186667pt;}
.ls9a{letter-spacing:2.218667pt;}
.ls22{letter-spacing:2.240000pt;}
.ls16{letter-spacing:2.293333pt;}
.ls68{letter-spacing:2.304000pt;}
.ls49{letter-spacing:2.346667pt;}
.ls97{letter-spacing:2.389333pt;}
.ls3f{letter-spacing:2.396800pt;}
.ls4b{letter-spacing:2.400000pt;}
.ls36{letter-spacing:2.453333pt;}
.ls70{letter-spacing:2.474667pt;}
.ls5{letter-spacing:2.506667pt;}
.ls48{letter-spacing:2.560000pt;}
.ls83{letter-spacing:2.602667pt;}
.ls4a{letter-spacing:2.613333pt;}
.ls9f{letter-spacing:2.645333pt;}
.ls23{letter-spacing:2.666667pt;}
.ls7d{letter-spacing:2.688000pt;}
.ls30{letter-spacing:2.720000pt;}
.ls8d{letter-spacing:2.730667pt;}
.ls2d{letter-spacing:2.773333pt;}
.ls9c{letter-spacing:2.858667pt;}
.ls2b{letter-spacing:2.880000pt;}
.ls71{letter-spacing:2.901333pt;}
.ls66{letter-spacing:2.933333pt;}
.ls8a{letter-spacing:2.944000pt;}
.ls32{letter-spacing:2.986667pt;}
.ls2f{letter-spacing:3.040000pt;}
.ls99{letter-spacing:3.114667pt;}
.ls26{letter-spacing:3.146667pt;}
.ls8b{letter-spacing:3.157333pt;}
.ls63{letter-spacing:3.200000pt;}
.ls45{letter-spacing:3.253333pt;}
.ls21{letter-spacing:3.306667pt;}
.ls7b{letter-spacing:3.328000pt;}
.ls28{letter-spacing:3.360000pt;}
.ls27{letter-spacing:3.413333pt;}
.ls40{letter-spacing:3.520000pt;}
.ls33{letter-spacing:3.573333pt;}
.ls46{letter-spacing:3.626667pt;}
.ls62{letter-spacing:3.680000pt;}
.ls93{letter-spacing:3.712000pt;}
.ls80{letter-spacing:3.754667pt;}
.ls91{letter-spacing:3.797333pt;}
.ls4d{letter-spacing:3.840000pt;}
.lsa{letter-spacing:3.893333pt;}
.ls78{letter-spacing:3.946667pt;}
.ls75{letter-spacing:4.000000pt;}
.lsa1{letter-spacing:4.096000pt;}
.ls3e{letter-spacing:4.106667pt;}
.ls76{letter-spacing:4.160000pt;}
.ls82{letter-spacing:4.224000pt;}
.ls58{letter-spacing:4.480000pt;}
.ls57{letter-spacing:4.693333pt;}
.ls5f{letter-spacing:4.853333pt;}
.ls2c{letter-spacing:5.013333pt;}
.ls5c{letter-spacing:5.066667pt;}
.lsa4{letter-spacing:5.386667pt;}
.ls5b{letter-spacing:5.546667pt;}
.ls79{letter-spacing:6.240000pt;}
.ls8c{letter-spacing:6.698667pt;}
.ls7a{letter-spacing:6.773333pt;}
.ls1{letter-spacing:52.918112pt;}
.ls0{letter-spacing:52.918645pt;}
.ls52{letter-spacing:133.418667pt;}
.ls51{letter-spacing:134.229333pt;}
.ls53{letter-spacing:144.085333pt;}
.ls54{letter-spacing:161.280000pt;}
.ws31{word-spacing:-17.440000pt;}
.wsb1{word-spacing:-17.206135pt;}
.ws46{word-spacing:-16.586667pt;}
.wsb3{word-spacing:-16.570682pt;}
.ws18{word-spacing:-16.373333pt;}
.wsaa{word-spacing:-16.213333pt;}
.wsc6{word-spacing:-16.106667pt;}
.ws91{word-spacing:-15.680000pt;}
.ws9c{word-spacing:-15.520000pt;}
.ws62{word-spacing:-15.330492pt;}
.ws33{word-spacing:-15.306667pt;}
.wsec{word-spacing:-15.093333pt;}
.ws30{word-spacing:-15.040000pt;}
.ws53{word-spacing:-14.933333pt;}
.ws2{word-spacing:-14.826667pt;}
.wsa9{word-spacing:-14.720000pt;}
.ws86{word-spacing:-14.613333pt;}
.ws17{word-spacing:-14.560000pt;}
.ws9d{word-spacing:-14.453333pt;}
.ws45{word-spacing:-14.293333pt;}
.ws19{word-spacing:-14.186667pt;}
.wsb8{word-spacing:-14.133333pt;}
.ws9b{word-spacing:-14.080000pt;}
.wsee{word-spacing:-13.994667pt;}
.ws32{word-spacing:-13.973333pt;}
.wsab{word-spacing:-13.920000pt;}
.ws51{word-spacing:-13.866667pt;}
.wsfc{word-spacing:-13.824000pt;}
.ws50{word-spacing:-13.813333pt;}
.ws103{word-spacing:-13.781333pt;}
.ws15{word-spacing:-13.760000pt;}
.ws52{word-spacing:-13.706667pt;}
.ws60{word-spacing:-13.600000pt;}
.wsc3{word-spacing:-13.568000pt;}
.wseb{word-spacing:-13.546667pt;}
.ws16{word-spacing:-13.493333pt;}
.wsb9{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.386667pt;}
.ws5{word-spacing:-13.333333pt;}
.ws4{word-spacing:-13.280000pt;}
.wsf0{word-spacing:-12.842667pt;}
.wsfd{word-spacing:-12.586667pt;}
.ws102{word-spacing:-12.501333pt;}
.ws101{word-spacing:-12.458667pt;}
.ws12a{word-spacing:-12.416000pt;}
.ws129{word-spacing:-12.373333pt;}
.wsfe{word-spacing:-12.202667pt;}
.wsff{word-spacing:-12.160000pt;}
.ws54{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.861333pt;}
.ws12b{word-spacing:-11.733333pt;}
.ws126{word-spacing:-11.605333pt;}
.ws104{word-spacing:-11.562667pt;}
.ws105{word-spacing:-11.477333pt;}
.wsfb{word-spacing:-11.434667pt;}
.wsef{word-spacing:-11.349333pt;}
.ws127{word-spacing:-11.178667pt;}
.ws3{word-spacing:-11.120000pt;}
.ws125{word-spacing:-11.093333pt;}
.ws124{word-spacing:-11.050667pt;}
.wsc4{word-spacing:-11.008000pt;}
.ws61{word-spacing:-10.965333pt;}
.ws100{word-spacing:-10.922667pt;}
.wsc5{word-spacing:-10.752000pt;}
.ws49{word-spacing:-10.666667pt;}
.wsed{word-spacing:-10.624000pt;}
.ws128{word-spacing:-10.581333pt;}
.wscf{word-spacing:-10.453333pt;}
.ws0{word-spacing:-9.076144pt;}
.wsca{word-spacing:-7.936000pt;}
.wsd6{word-spacing:-6.954667pt;}
.wscc{word-spacing:-6.826667pt;}
.ws1{word-spacing:-6.482960pt;}
.wscb{word-spacing:-5.802667pt;}
.wse0{word-spacing:-5.674667pt;}
.wsd2{word-spacing:-5.589333pt;}
.wse5{word-spacing:-5.504000pt;}
.ws138{word-spacing:-5.386667pt;}
.ws12e{word-spacing:-4.224000pt;}
.ws136{word-spacing:-4.096000pt;}
.wsf5{word-spacing:-3.893333pt;}
.ws110{word-spacing:-3.712000pt;}
.wsd7{word-spacing:-3.413333pt;}
.wsd9{word-spacing:-3.285333pt;}
.ws4d{word-spacing:-3.253333pt;}
.wsdd{word-spacing:-3.200000pt;}
.ws2b{word-spacing:-3.040000pt;}
.wse2{word-spacing:-2.816000pt;}
.wse3{word-spacing:-2.730667pt;}
.ws9{word-spacing:-2.565333pt;}
.wse6{word-spacing:-2.474667pt;}
.wsf6{word-spacing:-2.400000pt;}
.ws11f{word-spacing:-2.389333pt;}
.ws4f{word-spacing:-2.346667pt;}
.ws130{word-spacing:-2.218667pt;}
.ws1d{word-spacing:-2.186667pt;}
.wsce{word-spacing:-2.176000pt;}
.wsae{word-spacing:-2.080000pt;}
.wsdc{word-spacing:-2.005333pt;}
.ws2a{word-spacing:-1.973333pt;}
.wsd8{word-spacing:-1.834667pt;}
.ws120{word-spacing:-1.749333pt;}
.ws11b{word-spacing:-1.706667pt;}
.ws10f{word-spacing:-1.664000pt;}
.wsd5{word-spacing:-1.578667pt;}
.ws112{word-spacing:-1.536000pt;}
.wsad{word-spacing:-1.493333pt;}
.wse7{word-spacing:-1.450667pt;}
.wsaf{word-spacing:-1.440000pt;}
.wsc9{word-spacing:-1.365333pt;}
.ws3f{word-spacing:-1.333333pt;}
.ws20{word-spacing:-1.280000pt;}
.ws9e{word-spacing:-1.226667pt;}
.wsc7{word-spacing:-1.120000pt;}
.wsbe{word-spacing:-1.066667pt;}
.ws118{word-spacing:-1.024000pt;}
.ws28{word-spacing:-1.013333pt;}
.wsde{word-spacing:-0.981333pt;}
.ws9f{word-spacing:-0.960000pt;}
.ws122{word-spacing:-0.938667pt;}
.ws43{word-spacing:-0.906667pt;}
.ws3d{word-spacing:-0.853333pt;}
.wsbf{word-spacing:-0.800000pt;}
.ws4e{word-spacing:-0.768000pt;}
.ws3a{word-spacing:-0.693333pt;}
.ws5c{word-spacing:-0.640000pt;}
.ws11a{word-spacing:-0.597333pt;}
.ws5a{word-spacing:-0.533333pt;}
.ws106{word-spacing:-0.512000pt;}
.ws63{word-spacing:-0.480000pt;}
.wsd1{word-spacing:-0.469333pt;}
.ws1a{word-spacing:-0.426667pt;}
.ws12c{word-spacing:-0.384000pt;}
.ws25{word-spacing:-0.373333pt;}
.ws115{word-spacing:-0.341333pt;}
.ws57{word-spacing:-0.320000pt;}
.ws116{word-spacing:-0.298667pt;}
.ws44{word-spacing:-0.266667pt;}
.ws119{word-spacing:-0.256000pt;}
.ws99{word-spacing:-0.213333pt;}
.ws109{word-spacing:-0.170667pt;}
.wsbc{word-spacing:-0.160000pt;}
.ws8d{word-spacing:-0.106667pt;}
.ws11e{word-spacing:-0.085333pt;}
.wsb2{word-spacing:-0.073322pt;}
.ws41{word-spacing:-0.053333pt;}
.wsb4{word-spacing:-0.048881pt;}
.ws69{word-spacing:-0.043553pt;}
.ws132{word-spacing:-0.042667pt;}
.ws8{word-spacing:0.000000pt;}
.wse8{word-spacing:0.042667pt;}
.ws6a{word-spacing:0.043553pt;}
.wsa{word-spacing:0.053333pt;}
.ws8b{word-spacing:0.085333pt;}
.ws6b{word-spacing:0.087105pt;}
.ws1b{word-spacing:0.106667pt;}
.ws135{word-spacing:0.128000pt;}
.ws88{word-spacing:0.160000pt;}
.wsdf{word-spacing:0.170667pt;}
.ws68{word-spacing:0.213333pt;}
.ws2e{word-spacing:0.266667pt;}
.ws90{word-spacing:0.298667pt;}
.ws4a{word-spacing:0.320000pt;}
.ws108{word-spacing:0.341333pt;}
.wsc2{word-spacing:0.373333pt;}
.ws10d{word-spacing:0.384000pt;}
.wscd{word-spacing:0.426667pt;}
.wsb6{word-spacing:0.469333pt;}
.wsf2{word-spacing:0.480000pt;}
.ws134{word-spacing:0.512000pt;}
.ws2d{word-spacing:0.533333pt;}
.wsda{word-spacing:0.554667pt;}
.ws10{word-spacing:0.586667pt;}
.ws94{word-spacing:0.597333pt;}
.wsf{word-spacing:0.640000pt;}
.ws8a{word-spacing:0.682667pt;}
.ws98{word-spacing:0.725333pt;}
.ws26{word-spacing:0.746667pt;}
.ws12d{word-spacing:0.768000pt;}
.ws113{word-spacing:0.810667pt;}
.ws3e{word-spacing:0.853333pt;}
.ws87{word-spacing:0.960000pt;}
.ws11c{word-spacing:0.981333pt;}
.ws23{word-spacing:1.013333pt;}
.wsb0{word-spacing:1.024000pt;}
.ws29{word-spacing:1.066667pt;}
.wsc0{word-spacing:1.120000pt;}
.wsb7{word-spacing:1.152000pt;}
.ws40{word-spacing:1.226667pt;}
.ws10c{word-spacing:1.237333pt;}
.wsd4{word-spacing:1.280000pt;}
.ws131{word-spacing:1.322667pt;}
.ws58{word-spacing:1.333333pt;}
.ws12{word-spacing:1.386667pt;}
.wsfa{word-spacing:1.408000pt;}
.wsd{word-spacing:1.440000pt;}
.ws11d{word-spacing:1.450667pt;}
.ws3b{word-spacing:1.493333pt;}
.ws12f{word-spacing:1.536000pt;}
.wse{word-spacing:1.546667pt;}
.wse1{word-spacing:1.578667pt;}
.ws1f{word-spacing:1.600000pt;}
.wse9{word-spacing:1.664000pt;}
.wsa1{word-spacing:1.706667pt;}
.ws4b{word-spacing:1.813333pt;}
.wsdb{word-spacing:1.834667pt;}
.ws92{word-spacing:1.866667pt;}
.ws27{word-spacing:1.920000pt;}
.ws133{word-spacing:1.962667pt;}
.ws95{word-spacing:1.973333pt;}
.ws111{word-spacing:2.005333pt;}
.ws21{word-spacing:2.026667pt;}
.wsc8{word-spacing:2.080000pt;}
.wsf8{word-spacing:2.090667pt;}
.ws3c{word-spacing:2.133333pt;}
.ws114{word-spacing:2.176000pt;}
.ws24{word-spacing:2.186667pt;}
.ws10a{word-spacing:2.218667pt;}
.ws93{word-spacing:2.240000pt;}
.ws117{word-spacing:2.261333pt;}
.wsac{word-spacing:2.293333pt;}
.wse4{word-spacing:2.304000pt;}
.wsba{word-spacing:2.346667pt;}
.ws1c{word-spacing:2.400000pt;}
.ws97{word-spacing:2.432000pt;}
.ws1e{word-spacing:2.453333pt;}
.wsf7{word-spacing:2.474667pt;}
.ws5f{word-spacing:2.506667pt;}
.ws137{word-spacing:2.517333pt;}
.ws5e{word-spacing:2.560000pt;}
.ws139{word-spacing:2.613333pt;}
.ws8f{word-spacing:2.666667pt;}
.ws8c{word-spacing:2.720000pt;}
.ws121{word-spacing:2.730667pt;}
.ws89{word-spacing:2.773333pt;}
.ws10b{word-spacing:2.816000pt;}
.ws84{word-spacing:2.826667pt;}
.ws85{word-spacing:2.880000pt;}
.ws10e{word-spacing:2.901333pt;}
.ws2f{word-spacing:2.933333pt;}
.ws55{word-spacing:2.986667pt;}
.ws123{word-spacing:3.029333pt;}
.ws5b{word-spacing:3.040000pt;}
.wsf9{word-spacing:3.072000pt;}
.ws96{word-spacing:3.114667pt;}
.ws8e{word-spacing:3.146667pt;}
.wsa8{word-spacing:3.200000pt;}
.ws11{word-spacing:3.253333pt;}
.ws107{word-spacing:3.285333pt;}
.wsbd{word-spacing:3.306667pt;}
.ws2c{word-spacing:3.360000pt;}
.ws59{word-spacing:3.413333pt;}
.ws56{word-spacing:3.466667pt;}
.ws9a{word-spacing:3.498667pt;}
.ws65{word-spacing:3.520000pt;}
.ws67{word-spacing:3.541333pt;}
.ws22{word-spacing:3.573333pt;}
.ws13{word-spacing:3.626667pt;}
.ws14{word-spacing:3.680000pt;}
.wsea{word-spacing:3.733333pt;}
.ws66{word-spacing:3.786667pt;}
.ws39{word-spacing:3.840000pt;}
.wsb5{word-spacing:3.893333pt;}
.ws64{word-spacing:4.000000pt;}
.wsf1{word-spacing:4.053333pt;}
.wsbb{word-spacing:4.106667pt;}
.ws5d{word-spacing:4.160000pt;}
.wsc1{word-spacing:4.213333pt;}
.ws4c{word-spacing:4.266667pt;}
.ws42{word-spacing:4.320000pt;}
.wsa0{word-spacing:4.352000pt;}
.wsb{word-spacing:4.373333pt;}
.wsc{word-spacing:4.426667pt;}
.wsf4{word-spacing:4.853333pt;}
.wsf3{word-spacing:4.906667pt;}
.wsd0{word-spacing:38.485333pt;}
.wsd3{word-spacing:56.746667pt;}
.wsa5{word-spacing:81.834667pt;}
.wsa4{word-spacing:92.501333pt;}
.ws7f{word-spacing:94.336000pt;}
.ws75{word-spacing:96.085333pt;}
.ws7c{word-spacing:96.853333pt;}
.ws82{word-spacing:98.261333pt;}
.ws76{word-spacing:106.752000pt;}
.ws7d{word-spacing:107.562667pt;}
.ws79{word-spacing:108.330667pt;}
.wsa7{word-spacing:108.501333pt;}
.ws77{word-spacing:117.418667pt;}
.ws73{word-spacing:122.752000pt;}
.ws72{word-spacing:123.520000pt;}
.ws6f{word-spacing:125.269333pt;}
.ws6c{word-spacing:131.072000pt;}
.ws7e{word-spacing:133.418667pt;}
.ws81{word-spacing:134.613333pt;}
.ws74{word-spacing:138.794667pt;}
.ws7b{word-spacing:139.562667pt;}
.ws80{word-spacing:149.461333pt;}
.ws78{word-spacing:151.040000pt;}
.ws83{word-spacing:151.253333pt;}
.ws7a{word-spacing:161.706667pt;}
.ws36{word-spacing:189.269333pt;}
.wsa3{word-spacing:199.168000pt;}
.ws34{word-spacing:206.165333pt;}
.ws38{word-spacing:209.450667pt;}
.wsa6{word-spacing:215.168000pt;}
.ws6e{word-spacing:215.978667pt;}
.ws35{word-spacing:230.741333pt;}
.ws47{word-spacing:250.538667pt;}
.ws6d{word-spacing:276.437333pt;}
.ws71{word-spacing:288.170667pt;}
.wsa2{word-spacing:291.456000pt;}
.ws70{word-spacing:292.096000pt;}
.ws48{word-spacing:318.762667pt;}
.ws37{word-spacing:373.760000pt;}
._b{margin-left:-2576.085333pt;}
._22{margin-left:-2554.922667pt;}
._78{margin-left:-34.959947pt;}
._2{margin-left:-8.327467pt;}
._72{margin-left:-6.880000pt;}
._5{margin-left:-5.920000pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.094400pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.922720pt;}
._7{width:0.906667pt;}
._9{width:2.186667pt;}
._6{width:3.573333pt;}
._8{width:4.906667pt;}
._c{width:5.813333pt;}
._a{width:7.466667pt;}
._7b{width:8.435733pt;}
._7c{width:13.402667pt;}
._7d{width:14.795733pt;}
._75{width:34.442773pt;}
._76{width:37.930667pt;}
._73{width:38.954667pt;}
._79{width:51.734400pt;}
._7a{width:52.821333pt;}
._77{width:55.594667pt;}
._74{width:56.746667pt;}
._62{width:79.146667pt;}
._5d{width:88.661333pt;}
._6f{width:90.282667pt;}
._61{width:92.566400pt;}
._60{width:100.522667pt;}
._69{width:103.168000pt;}
._4f{width:105.002667pt;}
._6b{width:113.877333pt;}
._4d{width:115.669333pt;}
._55{width:126.336000pt;}
._32{width:127.360000pt;}
._51{width:133.418667pt;}
._e{width:144.213333pt;}
._31{width:155.733333pt;}
._46{width:158.122667pt;}
._20{width:160.952533pt;}
._53{width:161.920000pt;}
._2c{width:163.270400pt;}
._28{width:165.205333pt;}
._24{width:166.400000pt;}
._29{width:168.234667pt;}
._5a{width:172.586667pt;}
._47{width:176.597333pt;}
._42{width:178.688000pt;}
._56{width:184.832000pt;}
._37{width:187.221333pt;}
._67{width:189.909333pt;}
._52{width:193.920000pt;}
._1a{width:196.352000pt;}
._71{width:206.688000pt;}
._6c{width:211.200000pt;}
._12{width:213.398400pt;}
._1e{width:216.533333pt;}
._25{width:219.136000pt;}
._50{width:224.190933pt;}
._21{width:225.237333pt;}
._54{width:231.978667pt;}
._5c{width:235.605333pt;}
._d{width:236.523733pt;}
._15{width:237.502933pt;}
._57{width:239.061333pt;}
._13{width:240.341333pt;}
._3c{width:245.418667pt;}
._5f{width:247.466667pt;}
._3b{width:254.443733pt;}
._4b{width:256.170667pt;}
._1c{width:259.649067pt;}
._1f{width:264.362667pt;}
._33{width:267.946667pt;}
._11{width:273.322667pt;}
._30{width:275.029333pt;}
._34{width:277.418667pt;}
._35{width:280.576000pt;}
._5e{width:285.441600pt;}
._4a{width:286.976000pt;}
._18{width:288.640000pt;}
._16{width:290.304000pt;}
._1b{width:292.736000pt;}
._14{width:298.177067pt;}
._17{width:303.979733pt;}
._65{width:312.661333pt;}
._f{width:313.557333pt;}
._1d{width:316.928000pt;}
._58{width:324.384000pt;}
._19{width:338.218667pt;}
._45{width:340.138667pt;}
._64{width:345.856000pt;}
._38{width:353.280000pt;}
._3f{width:355.222400pt;}
._4e{width:370.602667pt;}
._5b{width:376.576000pt;}
._10{width:379.093333pt;}
._40{width:395.904000pt;}
._41{width:420.394667pt;}
._59{width:421.589333pt;}
._26{width:425.941333pt;}
._2d{width:477.738667pt;}
._36{width:496.725333pt;}
._2b{width:499.114667pt;}
._43{width:500.693333pt;}
._4c{width:502.101333pt;}
._2e{width:503.424000pt;}
._3d{width:505.813333pt;}
._2a{width:512.085333pt;}
._44{width:513.208533pt;}
._27{width:514.181333pt;}
._39{width:517.632000pt;}
._3e{width:527.829333pt;}
._2f{width:532.565333pt;}
._3a{width:537.258667pt;}
._48{width:551.978667pt;}
._49{width:592.341333pt;}
._23{width:605.846400pt;}
._6e{width:703.402667pt;}
._70{width:754.432000pt;}
._6d{width:802.944000pt;}
._66{width:815.658667pt;}
._68{width:829.824000pt;}
._6a{width:879.957333pt;}
._63{width:967.722667pt;}
.fs5{font-size:23.320000pt;}
.fsc{font-size:25.619200pt;}
.fse{font-size:30.743467pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsd{font-size:43.552533pt;}
.fsb{font-size:48.000000pt;}
.fsf{font-size:48.881067pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs10{font-size:73.321600pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y23a{bottom:21.679067pt;}
.y1{bottom:41.124400pt;}
.y2e{bottom:42.468667pt;}
.y2dc{bottom:68.552800pt;}
.y1ad{bottom:73.798533pt;}
.y2a2{bottom:74.102533pt;}
.y264{bottom:74.138000pt;}
.y1f0{bottom:74.145333pt;}
.y29d{bottom:74.338533pt;}
.y64{bottom:74.462533pt;}
.y142{bottom:74.544133pt;}
.y1b0{bottom:74.554533pt;}
.y19f{bottom:74.564933pt;}
.y6d{bottom:74.595867pt;}
.y1b6{bottom:74.712267pt;}
.y11a{bottom:74.729200pt;}
.y244{bottom:74.838000pt;}
.y1fb{bottom:74.877600pt;}
.y19c{bottom:75.409733pt;}
.y23f{bottom:75.604267pt;}
.y1e{bottom:78.248400pt;}
.yf8{bottom:80.557733pt;}
.y13b{bottom:80.988533pt;}
.y2db{bottom:81.886133pt;}
.yac{bottom:82.408933pt;}
.y238{bottom:84.150667pt;}
.y304{bottom:84.678667pt;}
.y263{bottom:87.471333pt;}
.y1ac{bottom:87.793200pt;}
.y1ef{bottom:88.140000pt;}
.y141{bottom:88.538800pt;}
.y1af{bottom:88.549200pt;}
.y19e{bottom:88.559600pt;}
.y1b5{bottom:88.706933pt;}
.y243{bottom:88.832667pt;}
.y23e{bottom:89.598933pt;}
.y19b{bottom:90.076400pt;}
.y29c{bottom:90.338533pt;}
.y63{bottom:90.462533pt;}
.y6c{bottom:90.595867pt;}
.y231{bottom:90.597867pt;}
.y119{bottom:90.729200pt;}
.y1d{bottom:91.576000pt;}
.y1ea{bottom:92.597867pt;}
.y239{bottom:93.732000pt;}
.yf7{bottom:95.000400pt;}
.y2da{bottom:95.219467pt;}
.yab{bottom:96.851600pt;}
.y13a{bottom:96.988533pt;}
.y1fa{bottom:97.554933pt;}
.y303{bottom:98.012000pt;}
.y237{bottom:98.145333pt;}
.y262{bottom:100.804667pt;}
.y1ab{bottom:101.787867pt;}
.y1ee{bottom:102.134667pt;}
.y140{bottom:102.533467pt;}
.y1ae{bottom:102.543867pt;}
.y1b4{bottom:102.701600pt;}
.y242{bottom:102.827333pt;}
.y29b{bottom:106.338533pt;}
.y62{bottom:106.462533pt;}
.y6b{bottom:106.595867pt;}
.y230{bottom:106.597867pt;}
.y118{bottom:106.729200pt;}
.y2d9{bottom:108.552800pt;}
.y1e9{bottom:108.597867pt;}
.yf6{bottom:109.443067pt;}
.yaa{bottom:111.294267pt;}
.y302{bottom:111.345333pt;}
.y1f9{bottom:111.997600pt;}
.y236{bottom:112.140000pt;}
.y19a{bottom:112.753733pt;}
.y139{bottom:112.988533pt;}
.y261{bottom:114.138000pt;}
.y1ed{bottom:116.129333pt;}
.y13f{bottom:116.528133pt;}
.y1b3{bottom:116.696267pt;}
.y2d8{bottom:121.886133pt;}
.y29a{bottom:122.338533pt;}
.y61{bottom:122.462533pt;}
.y6a{bottom:122.595867pt;}
.y22f{bottom:122.597867pt;}
.yf5{bottom:123.885733pt;}
.y1e8{bottom:124.597867pt;}
.y301{bottom:124.678667pt;}
.ya9{bottom:125.736933pt;}
.y235{bottom:126.134667pt;}
.y1f8{bottom:126.440267pt;}
.y199{bottom:127.196400pt;}
.y260{bottom:127.471333pt;}
.y138{bottom:128.988533pt;}
.y1ec{bottom:130.124000pt;}
.y1b2{bottom:130.690933pt;}
.y2d7{bottom:135.219467pt;}
.y155{bottom:137.705333pt;}
.y300{bottom:138.012000pt;}
.yf4{bottom:138.328400pt;}
.y299{bottom:138.338533pt;}
.y117{bottom:138.369200pt;}
.y60{bottom:138.462533pt;}
.y69{bottom:138.595867pt;}
.y22e{bottom:138.597867pt;}
.y234{bottom:140.129333pt;}
.ya8{bottom:140.179600pt;}
.y1e7{bottom:140.597867pt;}
.y25f{bottom:140.804667pt;}
.y1f7{bottom:140.882933pt;}
.y158{bottom:140.989728pt;}
.y198{bottom:141.639067pt;}
.y1eb{bottom:144.118667pt;}
.y1b1{bottom:144.685600pt;}
.y137{bottom:144.988533pt;}
.y2d6{bottom:148.552800pt;}
.y29{bottom:149.866133pt;}
.y2ff{bottom:151.345333pt;}
.yf3{bottom:152.771067pt;}
.y233{bottom:154.124000pt;}
.y25e{bottom:154.138000pt;}
.y298{bottom:154.338533pt;}
.y5f{bottom:154.462533pt;}
.y68{bottom:154.595867pt;}
.y22d{bottom:154.597867pt;}
.ya7{bottom:154.622267pt;}
.y1f6{bottom:155.325600pt;}
.y197{bottom:156.081733pt;}
.y1e6{bottom:156.597867pt;}
.y136{bottom:160.988533pt;}
.y145{bottom:161.222535pt;}
.y2d5{bottom:161.886133pt;}
.y166{bottom:164.024279pt;}
.y2fe{bottom:164.678667pt;}
.y28{bottom:165.866133pt;}
.yf2{bottom:167.280667pt;}
.y25d{bottom:167.471333pt;}
.y232{bottom:168.118667pt;}
.ya6{bottom:169.288933pt;}
.y1f5{bottom:169.768267pt;}
.y116{bottom:170.249200pt;}
.y297{bottom:170.338533pt;}
.y5e{bottom:170.462533pt;}
.y196{bottom:170.524400pt;}
.y22c{bottom:170.597867pt;}
.y1e5{bottom:172.597867pt;}
.y2d4{bottom:175.219467pt;}
.y135{bottom:176.988533pt;}
.y2fd{bottom:178.012000pt;}
.y168{bottom:179.257667pt;}
.y25c{bottom:180.804667pt;}
.y14d{bottom:181.430910pt;}
.yf1{bottom:181.723333pt;}
.y27{bottom:181.866133pt;}
.ya5{bottom:183.731600pt;}
.y1f4{bottom:184.210933pt;}
.y195{bottom:184.967067pt;}
.y67{bottom:186.235867pt;}
.y296{bottom:186.338533pt;}
.y5d{bottom:186.462533pt;}
.y22b{bottom:186.597867pt;}
.y2d3{bottom:188.552800pt;}
.y1e4{bottom:188.597867pt;}
.y2fc{bottom:191.345333pt;}
.y134{bottom:192.988533pt;}
.y25b{bottom:194.138000pt;}
.yf0{bottom:196.166000pt;}
.y26{bottom:197.866133pt;}
.y194{bottom:199.409733pt;}
.y152{bottom:201.639286pt;}
.y2d2{bottom:201.886133pt;}
.y295{bottom:202.338533pt;}
.y5c{bottom:202.462533pt;}
.y22a{bottom:202.597867pt;}
.y1e3{bottom:204.597867pt;}
.y2fb{bottom:204.678667pt;}
.y25a{bottom:207.471333pt;}
.y133{bottom:208.988533pt;}
.yef{bottom:210.608667pt;}
.y1f3{bottom:212.221600pt;}
.ya4{bottom:212.840933pt;}
.y193{bottom:213.852400pt;}
.y25{bottom:213.866133pt;}
.y2d1{bottom:215.219467pt;}
.y2fa{bottom:218.012000pt;}
.y294{bottom:218.338533pt;}
.y5b{bottom:218.462533pt;}
.y229{bottom:218.597867pt;}
.y115{bottom:218.729200pt;}
.y160{bottom:219.616153pt;}
.y1e2{bottom:220.597867pt;}
.y259{bottom:220.804667pt;}
.y15d{bottom:221.855894pt;}
.y132{bottom:224.988533pt;}
.yee{bottom:225.051333pt;}
.y192{bottom:228.348000pt;}
.y2d0{bottom:228.552800pt;}
.y24{bottom:229.866133pt;}
.y2f9{bottom:231.345333pt;}
.y258{bottom:234.138000pt;}
.y293{bottom:234.338533pt;}
.y5a{bottom:234.462533pt;}
.y228{bottom:234.597867pt;}
.y114{bottom:234.729200pt;}
.y1e1{bottom:236.597867pt;}
.yed{bottom:239.494000pt;}
.ya3{bottom:240.851600pt;}
.y131{bottom:240.988533pt;}
.y2cf{bottom:241.886133pt;}
.y148{bottom:242.066925pt;}
.y191{bottom:242.790667pt;}
.y1f2{bottom:243.239467pt;}
.y2f8{bottom:244.678667pt;}
.y23{bottom:245.866133pt;}
.y257{bottom:247.471333pt;}
.y164{bottom:249.053022pt;}
.y2a1{bottom:250.102533pt;}
.y292{bottom:250.338533pt;}
.y59{bottom:250.462533pt;}
.y227{bottom:250.597867pt;}
.y113{bottom:250.729200pt;}
.y1e0{bottom:252.597867pt;}
.yec{bottom:253.936667pt;}
.y2ce{bottom:255.219467pt;}
.y130{bottom:256.988533pt;}
.y190{bottom:257.233333pt;}
.y2f7{bottom:258.012000pt;}
.y1f1{bottom:260.572800pt;}
.y256{bottom:260.804667pt;}
.y22{bottom:261.866133pt;}
.y146{bottom:262.286189pt;}
.y291{bottom:266.338533pt;}
.y58{bottom:266.462533pt;}
.y226{bottom:266.597867pt;}
.y112{bottom:266.729200pt;}
.yeb{bottom:268.379333pt;}
.y2cd{bottom:268.552800pt;}
.y1df{bottom:268.597867pt;}
.y2f6{bottom:271.345333pt;}
.y18f{bottom:271.676000pt;}
.ya2{bottom:271.868533pt;}
.y12f{bottom:272.988533pt;}
.y255{bottom:274.138000pt;}
.y16c{bottom:276.184132pt;}
.y21{bottom:277.866133pt;}
.y2cc{bottom:281.886133pt;}
.y290{bottom:282.338533pt;}
.y57{bottom:282.462533pt;}
.y154{bottom:282.494564pt;}
.y225{bottom:282.597867pt;}
.y111{bottom:282.729200pt;}
.yea{bottom:282.822000pt;}
.y1de{bottom:284.597867pt;}
.y2f5{bottom:284.678667pt;}
.y18e{bottom:286.118667pt;}
.y23d{bottom:287.277261pt;}
.y254{bottom:287.471333pt;}
.y12e{bottom:288.988533pt;}
.ya1{bottom:289.201867pt;}
.y20{bottom:293.866133pt;}
.y2cb{bottom:295.219467pt;}
.ye9{bottom:297.264667pt;}
.y2f4{bottom:298.012000pt;}
.y2a0{bottom:298.102533pt;}
.y56{bottom:298.462533pt;}
.y224{bottom:298.597867pt;}
.y110{bottom:298.729200pt;}
.y169{bottom:299.810486pt;}
.y18d{bottom:300.561333pt;}
.y1dd{bottom:300.597867pt;}
.y253{bottom:300.804667pt;}
.y159{bottom:302.700284pt;}
.y1ff{bottom:303.218933pt;}
.y12d{bottom:304.988533pt;}
.y2ca{bottom:308.552800pt;}
.y2b{bottom:309.866133pt;}
.y2f3{bottom:311.345333pt;}
.ye8{bottom:311.707333pt;}
.y28f{bottom:313.978533pt;}
.y252{bottom:314.138000pt;}
.y55{bottom:314.462533pt;}
.y223{bottom:314.597867pt;}
.y10f{bottom:314.729200pt;}
.y18c{bottom:315.004000pt;}
.y1dc{bottom:316.597867pt;}
.y1fe{bottom:317.213600pt;}
.y12c{bottom:320.988533pt;}
.y2c9{bottom:321.886133pt;}
.y14c{bottom:322.922203pt;}
.y2f2{bottom:324.678667pt;}
.y1f{bottom:325.506133pt;}
.y2a{bottom:325.866133pt;}
.ye7{bottom:326.150000pt;}
.y251{bottom:327.471333pt;}
.y18b{bottom:329.446667pt;}
.y54{bottom:330.462533pt;}
.ya0{bottom:330.588533pt;}
.y7c{bottom:330.595867pt;}
.y222{bottom:330.597867pt;}
.y10e{bottom:330.729200pt;}
.y1fd{bottom:331.208267pt;}
.y15f{bottom:332.467733pt;}
.y1db{bottom:332.597867pt;}
.y2c8{bottom:335.219467pt;}
.y12b{bottom:336.988533pt;}
.y2f1{bottom:338.012000pt;}
.ye6{bottom:340.592667pt;}
.y250{bottom:340.804667pt;}
.y144{bottom:343.141467pt;}
.y18a{bottom:343.889333pt;}
.y1fc{bottom:345.202933pt;}
.y53{bottom:346.462533pt;}
.y9f{bottom:346.588533pt;}
.y7b{bottom:346.595867pt;}
.y221{bottom:346.597867pt;}
.y10d{bottom:346.729200pt;}
.y2c7{bottom:348.552800pt;}
.y1da{bottom:348.597867pt;}
.y2f0{bottom:351.345333pt;}
.y24f{bottom:354.138000pt;}
.y161{bottom:354.702946pt;}
.ye5{bottom:355.035333pt;}
.y189{bottom:358.332000pt;}
.y2c6{bottom:361.886133pt;}
.y28e{bottom:362.012000pt;}
.y52{bottom:362.462533pt;}
.y9e{bottom:362.588533pt;}
.y7a{bottom:362.595867pt;}
.y220{bottom:362.597867pt;}
.y10c{bottom:362.729200pt;}
.y147{bottom:363.349842pt;}
.y1d9{bottom:364.597867pt;}
.y2ef{bottom:364.678667pt;}
.y24e{bottom:367.471333pt;}
.y12a{bottom:367.958000pt;}
.ye4{bottom:369.478000pt;}
.y188{bottom:372.774667pt;}
.y2c5{bottom:375.219467pt;}
.y28d{bottom:375.345333pt;}
.y2ee{bottom:378.012000pt;}
.y51{bottom:378.462533pt;}
.y9d{bottom:378.588533pt;}
.y79{bottom:378.595867pt;}
.y21f{bottom:378.597867pt;}
.y10b{bottom:378.729200pt;}
.y1d8{bottom:380.597867pt;}
.y24d{bottom:380.804667pt;}
.y129{bottom:381.830000pt;}
.y14e{bottom:383.569106pt;}
.ye3{bottom:383.920667pt;}
.y187{bottom:387.217333pt;}
.y2c4{bottom:388.552800pt;}
.y28c{bottom:388.678667pt;}
.y2ed{bottom:391.345333pt;}
.y1c{bottom:392.323733pt;}
.y24c{bottom:394.138000pt;}
.y50{bottom:394.462533pt;}
.y9c{bottom:394.588533pt;}
.y78{bottom:394.595867pt;}
.y21e{bottom:394.597867pt;}
.y128{bottom:394.609200pt;}
.y10a{bottom:394.729200pt;}
.y1d7{bottom:396.597867pt;}
.ye2{bottom:398.363333pt;}
.y186{bottom:401.660000pt;}
.y2c3{bottom:401.886133pt;}
.y28b{bottom:402.012000pt;}
.y153{bottom:403.777481pt;}
.y2ec{bottom:404.678667pt;}
.y24b{bottom:407.471333pt;}
.y29f{bottom:410.102533pt;}
.y127{bottom:410.249200pt;}
.y4f{bottom:410.462533pt;}
.y9b{bottom:410.588533pt;}
.y77{bottom:410.595867pt;}
.y21d{bottom:410.597867pt;}
.y109{bottom:410.729200pt;}
.y162{bottom:412.300830pt;}
.y1d6{bottom:412.597867pt;}
.ye1{bottom:412.806000pt;}
.y2c2{bottom:415.219467pt;}
.y28a{bottom:415.345333pt;}
.y185{bottom:416.102667pt;}
.y1b{bottom:416.630400pt;}
.y2eb{bottom:418.012000pt;}
.y24a{bottom:420.804667pt;}
.y150{bottom:423.996745pt;}
.y4e{bottom:426.462533pt;}
.y9a{bottom:426.588533pt;}
.y76{bottom:426.595867pt;}
.y21c{bottom:426.597867pt;}
.y108{bottom:426.729200pt;}
.ye0{bottom:427.248667pt;}
.y2c1{bottom:428.552800pt;}
.y1d5{bottom:428.597867pt;}
.y289{bottom:428.678667pt;}
.y184{bottom:430.545333pt;}
.y2ea{bottom:431.345333pt;}
.y1a{bottom:432.630400pt;}
.y249{bottom:434.138000pt;}
.ydf{bottom:441.691333pt;}
.y2c0{bottom:441.886133pt;}
.y288{bottom:442.012000pt;}
.y126{bottom:442.115867pt;}
.y4d{bottom:442.462533pt;}
.y99{bottom:442.588533pt;}
.y75{bottom:442.595867pt;}
.y21b{bottom:442.597867pt;}
.y107{bottom:442.729200pt;}
.y14a{bottom:444.205120pt;}
.y1d4{bottom:444.597867pt;}
.y2e9{bottom:444.678667pt;}
.y183{bottom:445.047867pt;}
.y248{bottom:447.471333pt;}
.y19{bottom:448.630400pt;}
.y2bf{bottom:455.219467pt;}
.y287{bottom:455.345333pt;}
.y2e8{bottom:458.012000pt;}
.y125{bottom:458.115867pt;}
.y4c{bottom:458.462533pt;}
.y98{bottom:458.588533pt;}
.y74{bottom:458.595867pt;}
.y21a{bottom:458.597867pt;}
.y106{bottom:458.729200pt;}
.y16d{bottom:459.361392pt;}
.y182{bottom:459.490533pt;}
.y1d3{bottom:460.597867pt;}
.y247{bottom:460.804667pt;}
.y14f{bottom:464.424384pt;}
.y18{bottom:464.630400pt;}
.y2be{bottom:468.552800pt;}
.y286{bottom:468.678667pt;}
.yde{bottom:469.702000pt;}
.y2e7{bottom:471.345333pt;}
.y181{bottom:473.933200pt;}
.y124{bottom:474.115867pt;}
.y4b{bottom:474.462533pt;}
.y97{bottom:474.588533pt;}
.y73{bottom:474.595867pt;}
.y219{bottom:474.597867pt;}
.y105{bottom:474.729200pt;}
.y1d2{bottom:476.597867pt;}
.y17{bottom:480.630400pt;}
.y2bd{bottom:481.886133pt;}
.y285{bottom:482.012000pt;}
.y14b{bottom:484.632759pt;}
.y2e6{bottom:484.678667pt;}
.y180{bottom:488.375867pt;}
.y123{bottom:490.115867pt;}
.y4a{bottom:490.462533pt;}
.y96{bottom:490.588533pt;}
.y72{bottom:490.595867pt;}
.y218{bottom:490.597867pt;}
.y104{bottom:490.729200pt;}
.y1d1{bottom:492.597867pt;}
.y2bc{bottom:495.219467pt;}
.y284{bottom:495.345333pt;}
.y16{bottom:496.630400pt;}
.y2e5{bottom:498.012000pt;}
.ydd{bottom:500.736267pt;}
.y17f{bottom:502.818533pt;}
.y149{bottom:504.841135pt;}
.y122{bottom:506.115867pt;}
.y49{bottom:506.462533pt;}
.y95{bottom:506.588533pt;}
.y71{bottom:506.595867pt;}
.y217{bottom:506.597867pt;}
.y167{bottom:507.082938pt;}
.y2bb{bottom:508.552800pt;}
.y1d0{bottom:508.597867pt;}
.y156{bottom:508.624400pt;}
.y283{bottom:508.678667pt;}
.y2e4{bottom:511.345333pt;}
.y15{bottom:512.630400pt;}
.y16a{bottom:513.477579pt;}
.y17e{bottom:517.261200pt;}
.ydc{bottom:518.069600pt;}
.y2ba{bottom:521.886133pt;}
.y282{bottom:522.012000pt;}
.y121{bottom:522.115867pt;}
.y103{bottom:522.369200pt;}
.y48{bottom:522.462533pt;}
.y94{bottom:522.588533pt;}
.y70{bottom:522.595867pt;}
.y216{bottom:522.597867pt;}
.y1cf{bottom:524.597867pt;}
.y2e3{bottom:524.678667pt;}
.y151{bottom:525.060398pt;}
.y14{bottom:528.630400pt;}
.y17d{bottom:531.703867pt;}
.y2b9{bottom:535.219467pt;}
.y281{bottom:535.345333pt;}
.y2e2{bottom:538.012000pt;}
.y120{bottom:538.115867pt;}
.y47{bottom:538.462533pt;}
.y93{bottom:538.588533pt;}
.y246{bottom:538.595867pt;}
.y215{bottom:538.597867pt;}
.y1ce{bottom:540.597867pt;}
.y13{bottom:544.630400pt;}
.y15e{bottom:545.277007pt;}
.y17c{bottom:546.146533pt;}
.y2b8{bottom:548.552800pt;}
.y280{bottom:548.678667pt;}
.y2e1{bottom:551.345333pt;}
.y6f{bottom:554.235867pt;}
.y46{bottom:554.462533pt;}
.y92{bottom:554.588533pt;}
.y102{bottom:554.595867pt;}
.y214{bottom:554.597867pt;}
.ydb{bottom:555.042933pt;}
.yc3{bottom:555.162933pt;}
.y1cd{bottom:556.597867pt;}
.y23c{bottom:557.980608pt;}
.y16b{bottom:559.454434pt;}
.y17b{bottom:560.589200pt;}
.y12{bottom:560.630400pt;}
.y2b7{bottom:561.886133pt;}
.y27f{bottom:562.012000pt;}
.y2e0{bottom:564.678667pt;}
.y15a{bottom:565.474494pt;}
.y11f{bottom:569.995867pt;}
.y45{bottom:570.462533pt;}
.y1aa{bottom:570.475867pt;}
.y91{bottom:570.588533pt;}
.y101{bottom:570.595867pt;}
.y213{bottom:570.597867pt;}
.yda{bottom:571.042933pt;}
.yc2{bottom:571.162933pt;}
.y1cc{bottom:572.597867pt;}
.y17a{bottom:575.031867pt;}
.y2b6{bottom:575.219467pt;}
.y27e{bottom:575.345333pt;}
.y11{bottom:576.630400pt;}
.y2df{bottom:578.012000pt;}
.y16e{bottom:583.426652pt;}
.y15c{bottom:585.693758pt;}
.y44{bottom:586.462533pt;}
.y1a9{bottom:586.475867pt;}
.y90{bottom:586.588533pt;}
.y100{bottom:586.595867pt;}
.y212{bottom:586.597867pt;}
.yd9{bottom:587.042933pt;}
.yc1{bottom:587.162933pt;}
.y2b5{bottom:588.552800pt;}
.y1cb{bottom:588.597867pt;}
.y179{bottom:589.474533pt;}
.y2de{bottom:591.345333pt;}
.y2b4{bottom:601.886133pt;}
.y245{bottom:602.235867pt;}
.y43{bottom:602.462533pt;}
.y1a8{bottom:602.475867pt;}
.yff{bottom:602.595867pt;}
.y211{bottom:602.597867pt;}
.y8f{bottom:602.609200pt;}
.yd8{bottom:603.042933pt;}
.yc0{bottom:603.162933pt;}
.y178{bottom:603.917200pt;}
.y1ca{bottom:604.597867pt;}
.y27d{bottom:604.678667pt;}
.y157{bottom:605.902133pt;}
.y165{bottom:606.299791pt;}
.y143{bottom:606.818133pt;}
.y2b3{bottom:615.219467pt;}
.y10{bottom:616.770933pt;}
.y27c{bottom:618.012000pt;}
.y177{bottom:618.359867pt;}
.y42{bottom:618.462533pt;}
.y11e{bottom:618.475867pt;}
.yfe{bottom:618.595867pt;}
.y210{bottom:618.597867pt;}
.y8e{bottom:618.609200pt;}
.yd7{bottom:619.042933pt;}
.ybf{bottom:619.162933pt;}
.y1c9{bottom:620.597867pt;}
.y15b{bottom:626.121397pt;}
.yf{bottom:627.838267pt;}
.y2b2{bottom:628.552800pt;}
.y16f{bottom:629.564909pt;}
.y27b{bottom:631.345333pt;}
.y176{bottom:632.802533pt;}
.y41{bottom:634.462533pt;}
.y11d{bottom:634.475867pt;}
.yfd{bottom:634.595867pt;}
.y20f{bottom:634.597867pt;}
.yd6{bottom:635.042933pt;}
.ybe{bottom:635.162933pt;}
.y1c8{bottom:636.597867pt;}
.ye{bottom:638.238267pt;}
.y2b1{bottom:641.886133pt;}
.y163{bottom:644.398632pt;}
.y27a{bottom:644.678667pt;}
.y175{bottom:647.245200pt;}
.y29e{bottom:650.102533pt;}
.y8d{bottom:650.249200pt;}
.y40{bottom:650.462533pt;}
.y11c{bottom:650.475867pt;}
.yfc{bottom:650.595867pt;}
.y20e{bottom:650.597867pt;}
.yd5{bottom:651.042933pt;}
.ybd{bottom:651.162933pt;}
.y1c7{bottom:652.597867pt;}
.y2b0{bottom:655.219467pt;}
.y279{bottom:658.012000pt;}
.y174{bottom:661.687867pt;}
.yd{bottom:666.429867pt;}
.y3f{bottom:666.462533pt;}
.y30f{bottom:666.464533pt;}
.y11b{bottom:666.475867pt;}
.yfb{bottom:666.595867pt;}
.y20d{bottom:666.597867pt;}
.yd4{bottom:667.042933pt;}
.ybc{bottom:667.162933pt;}
.y2af{bottom:668.552800pt;}
.y1c6{bottom:668.597867pt;}
.y278{bottom:671.345333pt;}
.y2ae{bottom:681.886133pt;}
.y3e{bottom:682.462533pt;}
.y30e{bottom:682.464533pt;}
.y8c{bottom:682.475867pt;}
.y13e{bottom:682.595867pt;}
.y20c{bottom:682.597867pt;}
.yd3{bottom:683.042933pt;}
.ybb{bottom:683.162933pt;}
.yc{bottom:683.252400pt;}
.y1c5{bottom:684.597867pt;}
.y277{bottom:684.678667pt;}
.y173{bottom:687.469200pt;}
.y2ad{bottom:695.219467pt;}
.yb{bottom:695.252400pt;}
.y276{bottom:698.012000pt;}
.yfa{bottom:698.235867pt;}
.y3d{bottom:698.462533pt;}
.y8b{bottom:698.475867pt;}
.y13d{bottom:698.595867pt;}
.y20b{bottom:698.597867pt;}
.yd2{bottom:699.042933pt;}
.yba{bottom:699.162933pt;}
.y1c4{bottom:700.597867pt;}
.ya{bottom:707.252400pt;}
.y2ac{bottom:708.552800pt;}
.y275{bottom:711.345333pt;}
.y172{bottom:713.250533pt;}
.y9{bottom:714.429867pt;}
.y3c{bottom:714.462533pt;}
.y30d{bottom:714.464533pt;}
.y8a{bottom:714.475867pt;}
.y1a7{bottom:714.595867pt;}
.y20a{bottom:714.597867pt;}
.yd1{bottom:715.042933pt;}
.yb9{bottom:715.162933pt;}
.y1c3{bottom:716.597867pt;}
.y2ab{bottom:721.886133pt;}
.y274{bottom:724.678667pt;}
.y13c{bottom:730.235867pt;}
.y3b{bottom:730.462533pt;}
.y30c{bottom:730.464533pt;}
.y89{bottom:730.475867pt;}
.y1a6{bottom:730.595867pt;}
.y209{bottom:730.597867pt;}
.yd0{bottom:731.042933pt;}
.yb8{bottom:731.162933pt;}
.y8{bottom:731.252400pt;}
.y1c2{bottom:732.597867pt;}
.y2aa{bottom:735.219467pt;}
.y273{bottom:738.012000pt;}
.y171{bottom:742.049200pt;}
.y3a{bottom:746.462533pt;}
.y88{bottom:746.475867pt;}
.y1a5{bottom:746.595867pt;}
.y208{bottom:746.597867pt;}
.ycf{bottom:747.042933pt;}
.yb7{bottom:747.162933pt;}
.y2a9{bottom:748.552800pt;}
.y1c1{bottom:748.597867pt;}
.y272{bottom:751.345333pt;}
.y7{bottom:756.783067pt;}
.y170{bottom:759.382533pt;}
.y2a8{bottom:761.886133pt;}
.y39{bottom:762.462533pt;}
.y30b{bottom:762.464533pt;}
.y87{bottom:762.475867pt;}
.y1a4{bottom:762.595867pt;}
.y207{bottom:762.597867pt;}
.yce{bottom:763.042933pt;}
.yb6{bottom:763.162933pt;}
.y1c0{bottom:764.597867pt;}
.y271{bottom:764.678667pt;}
.y2a7{bottom:775.219467pt;}
.y270{bottom:778.012000pt;}
.y38{bottom:778.462533pt;}
.y30a{bottom:778.464533pt;}
.y86{bottom:778.475867pt;}
.y1a3{bottom:778.595867pt;}
.y206{bottom:778.597867pt;}
.ycd{bottom:779.042933pt;}
.yb5{bottom:779.162933pt;}
.y1bf{bottom:780.597867pt;}
.y2a6{bottom:788.552800pt;}
.y26f{bottom:791.345333pt;}
.y37{bottom:794.462533pt;}
.y85{bottom:794.475867pt;}
.y1a2{bottom:794.595867pt;}
.y205{bottom:794.597867pt;}
.ycc{bottom:795.042933pt;}
.yb4{bottom:795.162933pt;}
.y1be{bottom:796.597867pt;}
.y6{bottom:797.816533pt;}
.y2a5{bottom:801.886133pt;}
.y26e{bottom:804.678667pt;}
.y36{bottom:810.462533pt;}
.y309{bottom:810.464533pt;}
.y84{bottom:810.475867pt;}
.y204{bottom:810.597867pt;}
.ycb{bottom:811.042933pt;}
.yb3{bottom:811.162933pt;}
.y1bd{bottom:812.597867pt;}
.y2a4{bottom:815.219467pt;}
.y26d{bottom:818.012000pt;}
.y66{bottom:826.102533pt;}
.y1a1{bottom:826.235867pt;}
.y23b{bottom:826.319333pt;}
.y35{bottom:826.462533pt;}
.y308{bottom:826.464533pt;}
.y83{bottom:826.475867pt;}
.y203{bottom:826.597867pt;}
.yca{bottom:827.042933pt;}
.y2a3{bottom:828.552800pt;}
.y1bc{bottom:828.597867pt;}
.y5{bottom:830.226133pt;}
.y26c{bottom:831.345333pt;}
.y34{bottom:842.462533pt;}
.y307{bottom:842.464533pt;}
.y82{bottom:842.475867pt;}
.y202{bottom:842.597867pt;}
.yb2{bottom:842.802933pt;}
.yc9{bottom:843.042933pt;}
.y1bb{bottom:844.597867pt;}
.y26b{bottom:844.678667pt;}
.y65{bottom:857.982533pt;}
.y26a{bottom:858.012000pt;}
.y33{bottom:858.462533pt;}
.y81{bottom:858.475867pt;}
.y201{bottom:858.597867pt;}
.yc8{bottom:859.042933pt;}
.y4{bottom:862.635733pt;}
.y269{bottom:871.345333pt;}
.y32{bottom:874.462533pt;}
.y1ba{bottom:874.464533pt;}
.y80{bottom:874.475867pt;}
.yb1{bottom:875.029600pt;}
.yc7{bottom:875.042933pt;}
.y268{bottom:884.678667pt;}
.y1b9{bottom:890.104533pt;}
.y200{bottom:890.237867pt;}
.y31{bottom:890.462533pt;}
.y306{bottom:890.464533pt;}
.y7f{bottom:890.475867pt;}
.yb0{bottom:891.029600pt;}
.yc6{bottom:891.042933pt;}
.y3{bottom:895.045333pt;}
.y267{bottom:898.012000pt;}
.y1b8{bottom:906.104533pt;}
.y30{bottom:906.462533pt;}
.y7e{bottom:906.475867pt;}
.yaf{bottom:907.029600pt;}
.yc5{bottom:907.042933pt;}
.y266{bottom:911.345333pt;}
.y241{bottom:922.102533pt;}
.y1b7{bottom:922.104533pt;}
.y2f{bottom:922.462533pt;}
.y7d{bottom:922.475867pt;}
.yae{bottom:923.029600pt;}
.yc4{bottom:923.042933pt;}
.y265{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y2dd{bottom:1006.590133pt;}
.y6e{bottom:1006.594400pt;}
.y1a0{bottom:1006.597067pt;}
.y305{bottom:1006.598667pt;}
.y240{bottom:1006.601600pt;}
.yf9{bottom:1006.616400pt;}
.y19d{bottom:1006.620400pt;}
.yad{bottom:1006.622267pt;}
.y2d{bottom:1009.860000pt;}
.y2c{bottom:1022.660000pt;}
.h6{height:17.831602pt;}
.h15{height:19.589681pt;}
.h19{height:23.507944pt;}
.h8{height:25.238281pt;}
.h2{height:27.179688pt;}
.hc{height:29.121094pt;}
.h1a{height:29.645833pt;}
.h7{height:30.585938pt;}
.hb{height:30.595538pt;}
.hf{height:31.062500pt;}
.he{height:32.625000pt;}
.h17{height:33.089718pt;}
.h16{height:33.302377pt;}
.h13{height:35.583333pt;}
.h10{height:37.057292pt;}
.h1c{height:37.138154pt;}
.ha{height:38.828125pt;}
.h14{height:40.031250pt;}
.h9{height:40.781250pt;}
.hd{height:44.479167pt;}
.h1e{height:45.919167pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h11{height:50.971354pt;}
.h1d{height:50.981425pt;}
.h12{height:51.054021pt;}
.h4{height:81.927344pt;}
.h18{height:518.041333pt;}
.h1b{height:849.232000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w3{width:513.997333pt;}
.w2{width:629.094667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4a{left:35.573586pt;}
.x49{left:36.764533pt;}
.x42{left:62.740133pt;}
.xb{left:68.031467pt;}
.x1a{left:69.921200pt;}
.x2f{left:72.626667pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x14{left:88.818933pt;}
.x4e{left:90.708800pt;}
.x4{left:94.488267pt;}
.xc{left:98.284800pt;}
.x50{left:109.606533pt;}
.x3{left:111.491467pt;}
.x6{left:117.170133pt;}
.x48{left:120.625467pt;}
.x47{left:130.402667pt;}
.x26{left:133.750133pt;}
.x37{left:173.671119pt;}
.x3b{left:174.661341pt;}
.x5{left:189.223467pt;}
.x40{left:196.254304pt;}
.x18{left:197.640267pt;}
.x15{left:201.874933pt;}
.x1b{left:206.542533pt;}
.x17{left:207.997600pt;}
.x3c{left:221.316879pt;}
.x38{left:227.035598pt;}
.x30{left:242.750933pt;}
.x36{left:251.353589pt;}
.x3f{left:254.915315pt;}
.x2d{left:256.866494pt;}
.x3a{left:268.839821pt;}
.x41{left:288.513750pt;}
.x3e{left:290.686096pt;}
.x2c{left:291.828119pt;}
.x2a{left:294.633749pt;}
.x39{left:300.818592pt;}
.x34{left:304.557417pt;}
.x2e{left:308.379159pt;}
.x2b{left:310.706309pt;}
.x3d{left:312.025747pt;}
.x33{left:315.388452pt;}
.x32{left:318.020089pt;}
.x31{left:320.477733pt;}
.x28{left:328.029441pt;}
.xa{left:404.481333pt;}
.xd{left:406.298133pt;}
.x12{left:425.195867pt;}
.x8{left:427.090133pt;}
.x4f{left:428.980667pt;}
.xf{left:436.524800pt;}
.x1f{left:443.569200pt;}
.x24{left:445.393067pt;}
.x4d{left:447.874133pt;}
.x21{left:452.075867pt;}
.x13{left:455.435867pt;}
.x7{left:457.330133pt;}
.x1e{left:465.395867pt;}
.xe{left:466.898133pt;}
.x1d{left:470.342533pt;}
.x22{left:496.542533pt;}
.x1c{left:500.262533pt;}
.x4b{left:507.274400pt;}
.x20{left:508.755867pt;}
.x23{left:514.009200pt;}
.x4c{left:529.822533pt;}
.x29{left:531.720324pt;}
.x46{left:533.945467pt;}
.x25{left:538.417067pt;}
.x45{left:539.761733pt;}
.x35{left:541.542133pt;}
.x27{left:561.222933pt;}
.x11{left:589.770933pt;}
.x2{left:616.324800pt;}
.x16{left:619.250933pt;}
.x43{left:641.526800pt;}
.x10{left:647.459200pt;}
.x44{left:661.216133pt;}
.x19{left:666.333600pt;}
}




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