
    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_3ffc02ab635fc50ef89fac7f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.750000;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_8d3942ba46eb6235521b3f00.woff')format("woff");}.ff2{font-family:ff2;line-height:0.964844;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_2444ae1b5268fe8ef51c4940.woff')format("woff");}.ff3{font-family:ff3;line-height:0.964844;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_6934ffc0f07bcc60f749ea72.woff')format("woff");}.ff4{font-family:ff4;line-height:1.034180;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_aa822e114dc7dbd06760b9e1.woff')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_fde58f31d47260f682f65d03.woff')format("woff");}.ff6{font-family:ff6;line-height:1.073242;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_b5038a8c44f1cf07f86fbce8.woff')format("woff");}.ff7{font-family:ff7;line-height:1.034180;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_af55d1d2e691a385551d7103.woff')format("woff");}.ff8{font-family:ff8;line-height:0.973633;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_dc2e98f12efd2715199dad44.woff')format("woff");}.ff9{font-family:ff9;line-height:0.933594;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_a697212935007fce96bea020.woff')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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_e0af2ef0d32a5ab5380915dd.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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_3729fee31c2f0af42335bb02.woff')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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_576ef0529d0b53aad5b7db10.woff')format("woff");}.ffd{font-family:ffd;line-height:1.073242;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_3fafd33bb9bc13eebb46a9af.woff')format("woff");}.ffe{font-family:ffe;line-height:0.708008;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_1e38be1618afe8c52196e863.woff')format("woff");}.fff{font-family:fff;line-height:0.853027;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_631d043ecb637b2f7fa5d4fb.woff')format("woff");}.ff10{font-family:ff10;line-height:0.853027;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_4cacf4d87b051b38a46f778c.woff')format("woff");}.ff11{font-family:ff11;line-height:0.933594;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:12.240000px;}
.v1{vertical-align:15.120000px;}
.v4{vertical-align:23.760000px;}
.v5{vertical-align:27.360000px;}
.ls23{letter-spacing:-0.768000px;}
.lsf{letter-spacing:-0.720000px;}
.ls7e{letter-spacing:-0.672000px;}
.ls25{letter-spacing:-0.660000px;}
.lse{letter-spacing:-0.648000px;}
.ls24{letter-spacing:-0.624000px;}
.ls1d{letter-spacing:-0.612000px;}
.ls7f{letter-spacing:-0.573000px;}
.ls10{letter-spacing:-0.504000px;}
.ls3{letter-spacing:-0.439800px;}
.ls2c{letter-spacing:-0.409200px;}
.ls17{letter-spacing:-0.360000px;}
.ls4d{letter-spacing:-0.327600px;}
.ls34{letter-spacing:-0.322800px;}
.ls42{letter-spacing:-0.317400px;}
.ls30{letter-spacing:-0.305400px;}
.ls1c{letter-spacing:-0.302400px;}
.lsd{letter-spacing:-0.288000px;}
.ls33{letter-spacing:-0.274800px;}
.ls75{letter-spacing:-0.265200px;}
.ls13{letter-spacing:-0.262200px;}
.ls39{letter-spacing:-0.259800px;}
.ls2b{letter-spacing:-0.253200px;}
.ls65{letter-spacing:-0.245390px;}
.ls3c{letter-spacing:-0.237600px;}
.ls64{letter-spacing:-0.232800px;}
.ls35{letter-spacing:-0.212400px;}
.ls67{letter-spacing:-0.184675px;}
.ls18{letter-spacing:-0.180000px;}
.ls48{letter-spacing:-0.175200px;}
.ls3a{letter-spacing:-0.169800px;}
.ls26{letter-spacing:-0.155400px;}
.lsa{letter-spacing:-0.144000px;}
.ls47{letter-spacing:-0.137400px;}
.ls7a{letter-spacing:-0.132600px;}
.ls84{letter-spacing:-0.127200px;}
.ls1a{letter-spacing:-0.126000px;}
.ls12{letter-spacing:-0.106800px;}
.ls77{letter-spacing:-0.100200px;}
.ls59{letter-spacing:-0.090000px;}
.ls66{letter-spacing:-0.079800px;}
.ls31{letter-spacing:-0.075000px;}
.ls19{letter-spacing:-0.072000px;}
.ls72{letter-spacing:-0.057600px;}
.ls22{letter-spacing:-0.048960px;}
.ls2f{letter-spacing:-0.032400px;}
.ls5a{letter-spacing:-0.018000px;}
.ls38{letter-spacing:-0.010080px;}
.ls2e{letter-spacing:-0.005040px;}
.ls11{letter-spacing:-0.000003px;}
.ls2{letter-spacing:0.000000px;}
.ls45{letter-spacing:0.005040px;}
.ls55{letter-spacing:0.015120px;}
.ls69{letter-spacing:0.047520px;}
.ls7c{letter-spacing:0.048960px;}
.ls2a{letter-spacing:0.052560px;}
.ls5f{letter-spacing:0.055403px;}
.ls14{letter-spacing:0.057600px;}
.ls5{letter-spacing:0.072000px;}
.ls44{letter-spacing:0.090000px;}
.ls40{letter-spacing:0.094800px;}
.ls1e{letter-spacing:0.097800px;}
.ls83{letter-spacing:0.097920px;}
.ls6c{letter-spacing:0.099927px;}
.ls74{letter-spacing:0.106800px;}
.ls71{letter-spacing:0.127200px;}
.ls53{letter-spacing:0.132600px;}
.ls37{letter-spacing:0.137400px;}
.ls70{letter-spacing:0.139771px;}
.ls6{letter-spacing:0.144000px;}
.ls57{letter-spacing:0.146880px;}
.ls60{letter-spacing:0.147600px;}
.ls16{letter-spacing:0.162000px;}
.ls41{letter-spacing:0.169800px;}
.ls58{letter-spacing:0.174960px;}
.ls49{letter-spacing:0.175200px;}
.ls82{letter-spacing:0.179280px;}
.ls27{letter-spacing:0.180000px;}
.ls5e{letter-spacing:0.184675px;}
.ls62{letter-spacing:0.189735px;}
.ls68{letter-spacing:0.190200px;}
.ls54{letter-spacing:0.195000px;}
.ls6a{letter-spacing:0.212400px;}
.ls9{letter-spacing:0.216000px;}
.ls29{letter-spacing:0.217200px;}
.ls63{letter-spacing:0.221760px;}
.ls3e{letter-spacing:0.237600px;}
.ls2d{letter-spacing:0.259800px;}
.ls61{letter-spacing:0.259920px;}
.ls28{letter-spacing:0.262080px;}
.ls80{letter-spacing:0.262200px;}
.ls15{letter-spacing:0.270000px;}
.ls6b{letter-spacing:0.273851px;}
.ls36{letter-spacing:0.280200px;}
.lsc{letter-spacing:0.288000px;}
.ls76{letter-spacing:0.300000px;}
.ls78{letter-spacing:0.302400px;}
.ls1b{letter-spacing:0.306000px;}
.ls5c{letter-spacing:0.306600px;}
.ls21{letter-spacing:0.310800px;}
.ls7d{letter-spacing:0.317400px;}
.ls6f{letter-spacing:0.355200px;}
.ls0{letter-spacing:0.360000px;}
.ls85{letter-spacing:0.364800px;}
.ls87{letter-spacing:0.392400px;}
.ls32{letter-spacing:0.397200px;}
.ls46{letter-spacing:0.402600px;}
.ls5d{letter-spacing:0.443520px;}
.ls7b{letter-spacing:0.444960px;}
.ls3b{letter-spacing:0.445200px;}
.ls4f{letter-spacing:0.460200px;}
.ls56{letter-spacing:0.468000px;}
.ls3f{letter-spacing:0.482400px;}
.ls6d{letter-spacing:0.485280px;}
.ls4c{letter-spacing:0.507600px;}
.ls6e{letter-spacing:0.544800px;}
.ls81{letter-spacing:0.550080px;}
.ls3d{letter-spacing:0.550200px;}
.ls73{letter-spacing:0.574560px;}
.ls50{letter-spacing:0.587400px;}
.ls79{letter-spacing:0.587520px;}
.ls52{letter-spacing:0.690000px;}
.ls4b{letter-spacing:0.714000px;}
.lsb{letter-spacing:0.720000px;}
.ls43{letter-spacing:0.726000px;}
.ls5b{letter-spacing:0.774000px;}
.ls51{letter-spacing:0.846000px;}
.ls4a{letter-spacing:0.900000px;}
.ls86{letter-spacing:0.936000px;}
.ls7{letter-spacing:1.440000px;}
.ls8{letter-spacing:2.160000px;}
.ls1f{letter-spacing:3.600000px;}
.ls20{letter-spacing:12.240000px;}
.ls4{letter-spacing:199.440000px;}
.ls1{letter-spacing:817.482720px;}
.ls4e{letter-spacing:847.560000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-120.240000px;}
.ws6c{word-spacing:-59.760000px;}
.ws26{word-spacing:-48.096000px;}
.wsb{word-spacing:-48.024000px;}
.ws10{word-spacing:-46.033920px;}
.ws27{word-spacing:-44.182080px;}
.ws78{word-spacing:-40.447320px;}
.ws77{word-spacing:-40.097520px;}
.ws73{word-spacing:-39.912480px;}
.ws47{word-spacing:-39.859920px;}
.ws76{word-spacing:-39.727320px;}
.ws0{word-spacing:-39.600120px;}
.ws5a{word-spacing:-29.880000px;}
.ws15{word-spacing:-29.790000px;}
.ws17{word-spacing:-22.057920px;}
.ws12{word-spacing:-21.795720px;}
.ws2f{word-spacing:-21.752520px;}
.ws79{word-spacing:-20.360280px;}
.ws60{word-spacing:-20.206680px;}
.ws2a{word-spacing:-20.159880px;}
.ws81{word-spacing:-20.006880px;}
.ws5e{word-spacing:-19.900080px;}
.ws5c{word-spacing:-19.640280px;}
.ws5{word-spacing:-18.720000px;}
.wsf{word-spacing:-18.360000px;}
.ws7{word-spacing:-18.288000px;}
.ws3{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.072000px;}
.wsc{word-spacing:-18.000000px;}
.wse{word-spacing:-17.999997px;}
.ws56{word-spacing:-17.982000px;}
.ws5b{word-spacing:-17.964000px;}
.ws16{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.712000px;}
.ws14{word-spacing:-17.640000px;}
.wsd{word-spacing:-17.496000px;}
.ws9{word-spacing:-17.352000px;}
.wsa{word-spacing:-17.280000px;}
.ws1e{word-spacing:-16.870800px;}
.ws7f{word-spacing:-16.862400px;}
.ws7e{word-spacing:-16.822200px;}
.ws72{word-spacing:-16.666800px;}
.ws20{word-spacing:-16.657800px;}
.ws13{word-spacing:-16.617600px;}
.ws7b{word-spacing:-16.608960px;}
.ws1f{word-spacing:-16.511040px;}
.ws11{word-spacing:-16.453200px;}
.ws25{word-spacing:-16.404600px;}
.ws28{word-spacing:-16.306800px;}
.ws21{word-spacing:-16.297800px;}
.ws1c{word-spacing:-16.257600px;}
.ws29{word-spacing:-16.150800px;}
.ws6b{word-spacing:-16.021836px;}
.ws7d{word-spacing:-15.987000px;}
.ws1d{word-spacing:-15.948000px;}
.ws23{word-spacing:-15.936000px;}
.ws63{word-spacing:-15.932660px;}
.ws24{word-spacing:-15.900000px;}
.ws7c{word-spacing:-15.888000px;}
.ws6f{word-spacing:-15.887757px;}
.ws85{word-spacing:-15.876000px;}
.ws64{word-spacing:-15.803388px;}
.ws22{word-spacing:-15.792000px;}
.ws54{word-spacing:-15.786000px;}
.ws80{word-spacing:-15.747985px;}
.ws5d{word-spacing:-15.714000px;}
.ws45{word-spacing:-15.666000px;}
.ws4e{word-spacing:-15.654000px;}
.ws55{word-spacing:-15.630000px;}
.ws67{word-spacing:-15.563310px;}
.ws53{word-spacing:-15.527400px;}
.ws62{word-spacing:-15.502595px;}
.ws3e{word-spacing:-15.490200px;}
.ws6d{word-spacing:-15.484800px;}
.ws4f{word-spacing:-15.447600px;}
.ws4b{word-spacing:-15.422400px;}
.ws51{word-spacing:-15.400200px;}
.ws3b{word-spacing:-15.385200px;}
.ws49{word-spacing:-15.342600px;}
.ws32{word-spacing:-15.337200px;}
.ws87{word-spacing:-15.332400px;}
.ws84{word-spacing:-15.304800px;}
.ws3d{word-spacing:-15.300000px;}
.ws6e{word-spacing:-15.295200px;}
.ws7a{word-spacing:-15.257400px;}
.ws36{word-spacing:-15.220200px;}
.ws52{word-spacing:-15.199800px;}
.ws3f{word-spacing:-15.177600px;}
.ws31{word-spacing:-15.157200px;}
.ws6a{word-spacing:-15.152400px;}
.ws58{word-spacing:-15.135000px;}
.ws68{word-spacing:-15.130200px;}
.ws82{word-spacing:-15.119280px;}
.ws4d{word-spacing:-15.115200px;}
.ws42{word-spacing:-15.109800px;}
.ws65{word-spacing:-15.087600px;}
.ws37{word-spacing:-15.077400px;}
.ws57{word-spacing:-15.072600px;}
.ws70{word-spacing:-15.067200px;}
.ws41{word-spacing:-15.034800px;}
.ws46{word-spacing:-15.030000px;}
.ws40{word-spacing:-14.992560px;}
.ws69{word-spacing:-14.987520px;}
.ws59{word-spacing:-14.955120px;}
.ws48{word-spacing:-14.945040px;}
.ws2b{word-spacing:-14.940000px;}
.ws2d{word-spacing:-14.934960px;}
.ws38{word-spacing:-14.929920px;}
.ws2e{word-spacing:-14.907600px;}
.ws71{word-spacing:-14.882400px;}
.ws30{word-spacing:-14.865000px;}
.ws66{word-spacing:-14.860200px;}
.ws61{word-spacing:-14.850000px;}
.ws75{word-spacing:-14.839800px;}
.ws83{word-spacing:-14.812800px;}
.ws86{word-spacing:-14.807400px;}
.ws4a{word-spacing:-14.802600px;}
.ws3a{word-spacing:-14.770200px;}
.ws4c{word-spacing:-14.764800px;}
.ws35{word-spacing:-14.727600px;}
.ws5f{word-spacing:-14.707200px;}
.ws3c{word-spacing:-14.702400px;}
.ws39{word-spacing:-14.680200px;}
.ws74{word-spacing:-14.674800px;}
.ws33{word-spacing:-14.665200px;}
.ws44{word-spacing:-14.637600px;}
.ws43{word-spacing:-14.622600px;}
.ws34{word-spacing:-14.617200px;}
.ws50{word-spacing:-14.612400px;}
.ws1a{word-spacing:-13.806000px;}
.ws18{word-spacing:-13.716000px;}
.ws1b{word-spacing:-13.662000px;}
.ws19{word-spacing:-13.374000px;}
.ws2c{word-spacing:-9.720000px;}
.ws2{word-spacing:0.000000px;}
._8{margin-left:-199.140000px;}
._1b{margin-left:-149.760000px;}
._7{margin-left:-129.540000px;}
._18{margin-left:-16.450560px;}
._14{margin-left:-14.662080px;}
._12{margin-left:-11.540160px;}
._13{margin-left:-9.780000px;}
._17{margin-left:-7.678560px;}
._c{margin-left:-5.064000px;}
._b{margin-left:-3.456000px;}
._10{margin-left:-2.183040px;}
._1{margin-left:-1.068480px;}
._0{width:1.413120px;}
._f{width:3.026880px;}
._15{width:4.251360px;}
._d{width:5.256000px;}
._e{width:6.312000px;}
._9{width:7.776000px;}
._a{width:8.904000px;}
._11{width:10.365120px;}
._16{width:13.089600px;}
._1e{width:49.680000px;}
._5{width:66.240000px;}
._3{width:69.900000px;}
._23{width:158.561520px;}
._1f{width:190.106880px;}
._4{width:199.440000px;}
._21{width:211.607280px;}
._20{width:226.504800px;}
._22{width:329.646480px;}
._1a{width:1078.680000px;}
._1c{width:1128.420000px;}
._6{width:1144.920000px;}
._1d{width:1278.120000px;}
._2{width:1344.360000px;}
._19{width:6191.460000px;}
.fc3{color:transparent;}
.fc2{color:rgb(33,33,33);}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fsd{font-size:41.760000px;}
.fs9{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fsc{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:90.000000px;}
.fs1{font-size:120.240000px;}
.fs6{font-size:138.240000px;}
.fs5{font-size:167.760000px;}
.fs3{font-size:239.760000px;}
.y0{bottom:0.000000px;}
.y238{bottom:3.960000px;}
.y263{bottom:4.005000px;}
.y294{bottom:4.680000px;}
.y2a0{bottom:4.860000px;}
.y314{bottom:5.040000px;}
.yf6{bottom:5.220000px;}
.y251{bottom:5.400000px;}
.y225{bottom:5.580000px;}
.y335{bottom:5.625000px;}
.y420{bottom:5.754000px;}
.yf8{bottom:5.760000px;}
.y41b{bottom:5.805000px;}
.y253{bottom:5.940000px;}
.y272{bottom:6.120000px;}
.y463{bottom:6.660000px;}
.y27d{bottom:6.834000px;}
.y278{bottom:6.840000px;}
.y2bd{bottom:6.870000px;}
.y1ae{bottom:7.020000px;}
.y201{bottom:7.914000px;}
.y324{bottom:7.920000px;}
.y18c{bottom:8.100000px;}
.y472{bottom:8.640000px;}
.y319{bottom:8.820000px;}
.y25f{bottom:9.000000px;}
.y55f{bottom:9.174000px;}
.y178{bottom:9.180000px;}
.y4ca{bottom:9.720000px;}
.y4cc{bottom:10.980000px;}
.y4e7{bottom:11.160000px;}
.y478{bottom:11.340000px;}
.y1b4{bottom:11.520000px;}
.y1bb{bottom:12.600000px;}
.y15f{bottom:12.780000px;}
.y15d{bottom:12.960000px;}
.y188{bottom:12.990000px;}
.y16d{bottom:13.005000px;}
.y3bd{bottom:13.320000px;}
.y3ab{bottom:13.500000px;}
.y3d7{bottom:13.545000px;}
.y92{bottom:13.680000px;}
.ya1{bottom:13.860000px;}
.y2dc{bottom:14.754000px;}
.y1ac{bottom:14.760000px;}
.y2e6{bottom:14.790000px;}
.y2d8{bottom:14.805000px;}
.y308{bottom:14.934000px;}
.y2fc{bottom:14.940000px;}
.y88{bottom:15.300000px;}
.y2cc{bottom:15.480000px;}
.y3b4{bottom:15.660000px;}
.y202{bottom:15.834000px;}
.y18d{bottom:15.840000px;}
.y220{bottom:16.020000px;}
.y2f5{bottom:16.425000px;}
.y4ce{bottom:16.734000px;}
.y2f2{bottom:16.740000px;}
.y2f8{bottom:16.920000px;}
.y15b{bottom:17.100000px;}
.y1f5{bottom:17.280000px;}
.y4a9{bottom:17.310000px;}
.y1c3{bottom:17.460000px;}
.y1ca{bottom:17.640000px;}
.y40b{bottom:17.685000px;}
.y3ed{bottom:17.814000px;}
.yfd{bottom:17.820000px;}
.y3e1{bottom:17.850000px;}
.y3f3{bottom:17.865000px;}
.y228{bottom:18.180000px;}
.y3f9{bottom:18.210000px;}
.y3cf{bottom:18.225000px;}
.y7f{bottom:18.360000px;}
.y400{bottom:18.405000px;}
.y46c{bottom:19.074000px;}
.y22a{bottom:19.080000px;}
.y3e0{bottom:19.110000px;}
.y3f2{bottom:19.125000px;}
.y3ec{bottom:19.254000px;}
.y19c{bottom:19.260000px;}
.y486{bottom:19.305000px;}
.y343{bottom:19.440000px;}
.y346{bottom:19.620000px;}
.y4c9{bottom:20.160000px;}
.y4cb{bottom:20.340000px;}
.y146{bottom:20.520000px;}
.y237{bottom:20.694000px;}
.y10c{bottom:20.700000px;}
.y446{bottom:20.730000px;}
.y44c{bottom:20.745000px;}
.y241{bottom:20.880000px;}
.y243{bottom:20.910000px;}
.y262{bottom:20.925000px;}
.y1fa{bottom:21.240000px;}
.y391{bottom:21.774000px;}
.y15e{bottom:21.780000px;}
.y375{bottom:21.810000px;}
.y1a9{bottom:21.954000px;}
.y180{bottom:21.960000px;}
.y33b{bottom:21.990000px;}
.y169{bottom:22.005000px;}
.y3d8{bottom:22.365000px;}
.y223{bottom:22.500000px;}
.y411{bottom:23.040000px;}
.y310{bottom:23.220000px;}
.y334{bottom:23.265000px;}
.y173{bottom:23.400000px;}
.y163{bottom:23.580000px;}
.y27c{bottom:23.754000px;}
.y222{bottom:23.760000px;}
.y284{bottom:23.790000px;}
.y277{bottom:23.805000px;}
.y594{bottom:23.934000px;}
.y1ad{bottom:23.940000px;}
.y258{bottom:23.970000px;}
.y4b3{bottom:23.985000px;}
.y3b1{bottom:24.120000px;}
.y1e1{bottom:24.480000px;}
.y390{bottom:24.654000px;}
.y380{bottom:24.660000px;}
.y384{bottom:24.690000px;}
.y200{bottom:24.834000px;}
.y164{bottom:24.840000px;}
.y38b{bottom:24.885000px;}
.y158{bottom:25.020000px;}
.y412{bottom:25.380000px;}
.y318{bottom:25.560000px;}
.y3a3{bottom:25.914000px;}
.y25e{bottom:25.920000px;}
.y39b{bottom:25.950000px;}
.y38f{bottom:26.094000px;}
.y177{bottom:26.100000px;}
.y383{bottom:26.130000px;}
.y38a{bottom:26.145000px;}
.y2d4{bottom:26.280000px;}
.y3c6{bottom:26.865000px;}
.y5a2{bottom:27.180000px;}
.y483{bottom:27.900000px;}
.y3d3{bottom:28.080000px;}
.y1b3{bottom:28.440000px;}
.y18a{bottom:28.470000px;}
.y550{bottom:28.800000px;}
.y1ba{bottom:29.520000px;}
.y1a7{bottom:29.694000px;}
.y17e{bottom:29.700000px;}
.y171{bottom:29.880000px;}
.y187{bottom:29.910000px;}
.y16c{bottom:29.925000px;}
.y9d{bottom:30.060000px;}
.y20b{bottom:30.240000px;}
.y508{bottom:30.420000px;}
.y1c0{bottom:30.600000px;}
.y518{bottom:31.680000px;}
.y58d{bottom:31.710000px;}
.y3bb{bottom:32.040000px;}
.y4db{bottom:32.400000px;}
.y1fe{bottom:32.754000px;}
.y161{bottom:32.760000px;}
.y59f{bottom:32.940000px;}
.y3af{bottom:33.660000px;}
.y57a{bottom:33.840000px;}
.y15a{bottom:34.020000px;}
.y3cc{bottom:34.740000px;}
.y3b9{bottom:35.100000px;}
.y2cb{bottom:35.280000px;}
.y1f4{bottom:35.460000px;}
.y1fc{bottom:35.505000px;}
.y16f{bottom:36.045000px;}
.y19b{bottom:36.180000px;}
.y87{bottom:37.080000px;}
.y145{bottom:37.440000px;}
.yc9{bottom:37.476000px;}
.y236{bottom:37.614000px;}
.y481{bottom:37.620000px;}
.y5b1{bottom:37.665000px;}
.y426{bottom:37.800000px;}
.y1f9{bottom:38.205000px;}
.y4a2{bottom:38.340000px;}
.y128{bottom:38.514000px;}
.y1a8{bottom:38.694000px;}
.y17f{bottom:38.700000px;}
.y374{bottom:38.730000px;}
.y326{bottom:38.745000px;}
.y332{bottom:38.874000px;}
.y10b{bottom:38.880000px;}
.y32b{bottom:38.910000px;}
.y168{bottom:38.925000px;}
.y425{bottom:39.060000px;}
.y3a6{bottom:39.630000px;}
.y95{bottom:39.780000px;}
.yb0{bottom:39.960000px;}
.y7e{bottom:40.140000px;}
.y51d{bottom:40.680000px;}
.y2c0{bottom:41.220000px;}
.y28c{bottom:41.400000px;}
.y276{bottom:41.445000px;}
.y323{bottom:41.580000px;}
.y1ff{bottom:41.754000px;}
.y162{bottom:41.760000px;}
.y256{bottom:41.940000px;}
.y25d{bottom:42.660000px;}
.y440{bottom:42.840000px;}
.y563{bottom:42.870000px;}
.y55e{bottom:43.014000px;}
.y176{bottom:43.020000px;}
.y4f3{bottom:43.065000px;}
.y1f0{bottom:43.200000px;}
.y2d3{bottom:43.920000px;}
.y5a6{bottom:43.965000px;}
.y118{bottom:44.640000px;}
.y4e6{bottom:44.820000px;}
.y1b2{bottom:45.180000px;}
.y54f{bottom:45.540000px;}
.y134{bottom:46.254000px;}
.y1b9{bottom:46.440000px;}
.y17a{bottom:46.620000px;}
.y189{bottom:46.650000px;}
.y16b{bottom:46.665000px;}
.y17b{bottom:46.800000px;}
.y186{bottom:46.830000px;}
.y510{bottom:47.334000px;}
.y507{bottom:47.340000px;}
.y527{bottom:47.385000px;}
.y14c{bottom:47.520000px;}
.y1c2{bottom:47.700000px;}
.y20a{bottom:48.420000px;}
.y58c{bottom:48.450000px;}
.y4da{bottom:49.320000px;}
.y500{bottom:49.680000px;}
.y55a{bottom:50.400000px;}
.y157{bottom:50.760000px;}
.y159{bottom:50.940000px;}
.y19a{bottom:53.100000px;}
.y1f3{bottom:53.640000px;}
.y1fb{bottom:53.685000px;}
.y144{bottom:54.180000px;}
.y2ca{bottom:54.360000px;}
.y16e{bottom:54.405000px;}
.y56c{bottom:54.540000px;}
.y5b0{bottom:54.585000px;}
.y1e0{bottom:54.720000px;}
.y1f8{bottom:55.125000px;}
.y127{bottom:55.254000px;}
.y33d{bottom:55.620000px;}
.y32a{bottom:55.650000px;}
.y167{bottom:55.665000px;}
.y337{bottom:55.800000px;}
.y33a{bottom:55.830000px;}
.yf0{bottom:56.736000px;}
.y90{bottom:57.240000px;}
.y51c{bottom:58.860000px;}
.y86{bottom:59.040000px;}
.y322{bottom:59.220000px;}
.y25c{bottom:59.580000px;}
.y43f{bottom:59.625000px;}
.y4f5{bottom:59.754000px;}
.y4ef{bottom:59.760000px;}
.y562{bottom:59.790000px;}
.y4f2{bottom:59.805000px;}
.y55d{bottom:59.934000px;}
.y175{bottom:59.940000px;}
.y1a5{bottom:60.840000px;}
.y5a5{bottom:60.885000px;}
.y117{bottom:61.560000px;}
.y4e5{bottom:61.770000px;}
.y7d{bottom:61.920000px;}
.y1b1{bottom:62.100000px;}
.y54e{bottom:62.460000px;}
.y133{bottom:63.174000px;}
.y1b8{bottom:63.180000px;}
.y5ba{bottom:63.360000px;}
.y16a{bottom:63.585000px;}
.y50f{bottom:64.254000px;}
.y506{bottom:64.260000px;}
.y526{bottom:64.305000px;}
.y14b{bottom:64.440000px;}
.y5a1{bottom:64.485000px;}
.y520{bottom:65.340000px;}
.y58b{bottom:65.370000px;}
.y517{bottom:65.385000px;}
.y4d9{bottom:66.240000px;}
.y53f{bottom:66.420000px;}
.y4ff{bottom:66.450000px;}
.y59e{bottom:66.600000px;}
.y579{bottom:67.680000px;}
.y156{bottom:67.710000px;}
.y10a{bottom:69.120000px;}
.y199{bottom:70.020000px;}
.ye8{bottom:71.100000px;}
.y56b{bottom:71.460000px;}
.y5af{bottom:71.505000px;}
.y1f7{bottom:71.865000px;}
.y126{bottom:72.174000px;}
.yc8{bottom:72.540000px;}
.y185{bottom:72.570000px;}
.y166{bottom:72.585000px;}
.y208{bottom:73.125000px;}
.y1ef{bottom:73.440000px;}
.y209{bottom:74.385000px;}
.y1df{bottom:77.040000px;}
.y536{bottom:77.085000px;}
.y25b{bottom:77.220000px;}
.y43e{bottom:77.265000px;}
.y1a4{bottom:77.760000px;}
.y5a4{bottom:77.805000px;}
.y116{bottom:78.300000px;}
.y4e4{bottom:78.690000px;}
.y8f{bottom:79.020000px;}
.y54d{bottom:79.380000px;}
.y132{bottom:80.094000px;}
.y143{bottom:80.100000px;}
.y85{bottom:80.820000px;}
.y50e{bottom:81.174000px;}
.y14a{bottom:81.180000px;}
.y525{bottom:81.225000px;}
.y364{bottom:81.936000px;}
.y51f{bottom:82.260000px;}
.y58a{bottom:82.290000px;}
.y516{bottom:82.305000px;}
.y4d8{bottom:83.160000px;}
.y53e{bottom:83.340000px;}
.y4fe{bottom:83.370000px;}
.y59d{bottom:83.520000px;}
.y7c{bottom:83.880000px;}
.y578{bottom:84.420000px;}
.y155{bottom:84.630000px;}
.y30e{bottom:84.636000px;}
.y4ee{bottom:85.710000px;}
.y49c{bottom:86.616000px;}
.y198{bottom:86.760000px;}
.y48a{bottom:87.156000px;}
.y109{bottom:87.300000px;}
.y559{bottom:88.020000px;}
.y5ae{bottom:88.245000px;}
.y56a{bottom:88.380000px;}
.y174{bottom:88.956000px;}
.y125{bottom:89.094000px;}
.y46f{bottom:89.136000px;}
.y479{bottom:89.496000px;}
.y4d5{bottom:90.900000px;}
.y3ee{bottom:90.936000px;}
.y293{bottom:92.160000px;}
.y29f{bottom:92.340000px;}
.ye7{bottom:92.880000px;}
.y595{bottom:93.096000px;}
.y46d{bottom:93.996000px;}
.y1a3{bottom:94.680000px;}
.y27e{bottom:94.896000px;}
.y2c5{bottom:95.076000px;}
.y115{bottom:95.220000px;}
.y535{bottom:95.265000px;}
.y4e3{bottom:95.430000px;}
.y392{bottom:95.616000px;}
.y3a4{bottom:95.796000px;}
.y1b0{bottom:95.985000px;}
.y2f0{bottom:96.156000px;}
.y54c{bottom:96.300000px;}
.y4cf{bottom:96.336000px;}
.y1ee{bottom:96.690000px;}
.y131{bottom:97.014000px;}
.y1b7{bottom:97.020000px;}
.y4f4{bottom:97.776000px;}
.y50d{bottom:97.914000px;}
.y505{bottom:97.920000px;}
.y45{bottom:97.956000px;}
.y524{bottom:97.965000px;}
.y149{bottom:98.100000px;}
.y56f{bottom:98.145000px;}
.y184{bottom:98.490000px;}
.y2dd{bottom:98.676000px;}
.y52b{bottom:99.180000px;}
.y589{bottom:99.210000px;}
.y515{bottom:99.225000px;}
.y4d7{bottom:99.900000px;}
.y1de{bottom:100.110000px;}
.y207{bottom:100.125000px;}
.y53d{bottom:100.260000px;}
.y4fd{bottom:100.290000px;}
.y585{bottom:100.305000px;}
.y59c{bottom:100.440000px;}
.y8e{bottom:100.980000px;}
.y73{bottom:101.196000px;}
.y577{bottom:101.340000px;}
.y154{bottom:101.550000px;}
.y4ed{bottom:102.630000px;}
.y84{bottom:102.780000px;}
.y197{bottom:103.680000px;}
.y108{bottom:104.220000px;}
.y1b5{bottom:104.760000px;}
.y558{bottom:104.940000px;}
.y569{bottom:105.120000px;}
.y5ad{bottom:105.165000px;}
.y592{bottom:105.300000px;}
.y7b{bottom:105.660000px;}
.y450{bottom:105.696000px;}
.y21a{bottom:105.876000px;}
.y124{bottom:106.014000px;}
.y142{bottom:106.020000px;}
.y309{bottom:106.236000px;}
.y2b7{bottom:107.136000px;}
.y4d4{bottom:107.865000px;}
.y320{bottom:110.196000px;}
.y50a{bottom:111.636000px;}
.y1a2{bottom:111.645000px;}
.yef{bottom:111.810000px;}
.y43c{bottom:111.996000px;}
.y114{bottom:112.140000px;}
.y4e2{bottom:112.350000px;}
.y54b{bottom:113.040000px;}
.y30f{bottom:113.076000px;}
.y421{bottom:113.436000px;}
.y51b{bottom:113.580000px;}
.y534{bottom:113.625000px;}
.y130{bottom:113.754000px;}
.y1b6{bottom:113.940000px;}
.ye6{bottom:114.690000px;}
.y50c{bottom:114.834000px;}
.y504{bottom:114.840000px;}
.y523{bottom:114.885000px;}
.y148{bottom:115.020000px;}
.y1bf{bottom:115.050000px;}
.y56e{bottom:115.065000px;}
.y183{bottom:115.410000px;}
.y52a{bottom:115.920000px;}
.y588{bottom:115.950000px;}
.y514{bottom:115.965000px;}
.y28e{bottom:116.136000px;}
.y4d6{bottom:116.865000px;}
.y206{bottom:117.045000px;}
.y53c{bottom:117.180000px;}
.y4fc{bottom:117.210000px;}
.y584{bottom:117.225000px;}
.y576{bottom:118.260000px;}
.y1dd{bottom:118.290000px;}
.y153{bottom:118.470000px;}
.y267{bottom:119.376000px;}
.y4ec{bottom:119.550000px;}
.y404{bottom:119.556000px;}
.y196{bottom:120.645000px;}
.ydb{bottom:120.816000px;}
.y5b2{bottom:120.825000px;}
.y107{bottom:121.140000px;}
.y1ed{bottom:121.350000px;}
.y557{bottom:121.860000px;}
.y568{bottom:122.040000px;}
.y36e{bottom:122.076000px;}
.y5ac{bottom:122.085000px;}
.y591{bottom:122.265000px;}
.y353{bottom:122.436000px;}
.y123{bottom:122.754000px;}
.y8d{bottom:122.760000px;}
.y1bd{bottom:122.790000px;}
.y45f{bottom:123.336000px;}
.y83{bottom:124.560000px;}
.y30d{bottom:125.136000px;}
.y29a{bottom:125.856000px;}
.y340{bottom:126.216000px;}
.y7a{bottom:127.620000px;}
.y2aa{bottom:127.845000px;}
.y363{bottom:128.376000px;}
.y1a1{bottom:128.565000px;}
.y113{bottom:129.060000px;}
.y4e1{bottom:129.270000px;}
.y235{bottom:129.456000px;}
.y5a8{bottom:129.636000px;}
.y54a{bottom:129.960000px;}
.y530{bottom:130.500000px;}
.y580{bottom:130.545000px;}
.y12f{bottom:130.674000px;}
.y50b{bottom:131.754000px;}
.y503{bottom:131.760000px;}
.y532{bottom:131.790000px;}
.y489{bottom:131.796000px;}
.y141{bottom:131.805000px;}
.y597{bottom:131.940000px;}
.y1be{bottom:131.970000px;}
.y147{bottom:131.985000px;}
.y1a6{bottom:132.156000px;}
.y529{bottom:132.840000px;}
.y587{bottom:132.870000px;}
.y513{bottom:132.885000px;}
.yee{bottom:133.590000px;}
.y53b{bottom:133.920000px;}
.y4fb{bottom:133.950000px;}
.y583{bottom:133.965000px;}
.y59b{bottom:134.130000px;}
.y4bd{bottom:134.136000px;}
.y575{bottom:135.180000px;}
.y152{bottom:135.210000px;}
.y4eb{bottom:136.290000px;}
.ye5{bottom:136.650000px;}
.y477{bottom:137.196000px;}
.y195{bottom:137.565000px;}
.y56d{bottom:137.730000px;}
.y106{bottom:138.060000px;}
.y3eb{bottom:138.456000px;}
.y556{bottom:138.600000px;}
.y567{bottom:138.990000px;}
.y590{bottom:139.005000px;}
.y2db{bottom:139.176000px;}
.y1ec{bottom:139.530000px;}
.y122{bottom:139.674000px;}
.y2ef{bottom:140.256000px;}
.y1dc{bottom:140.610000px;}
.y331{bottom:140.796000px;}
.y2b6{bottom:142.200000px;}
.y119{bottom:142.416000px;}
.y593{bottom:142.596000px;}
.y219{bottom:142.956000px;}
.y46b{bottom:143.496000px;}
.y72{bottom:143.856000px;}
.y27b{bottom:144.396000px;}
.y8c{bottom:144.540000px;}
.y41f{bottom:144.936000px;}
.y1a0{bottom:145.305000px;}
.y112{bottom:145.800000px;}
.y4cd{bottom:145.836000px;}
.y55c{bottom:146.016000px;}
.y4e0{bottom:146.190000px;}
.y82{bottom:146.340000px;}
.y307{bottom:146.736000px;}
.y549{bottom:146.880000px;}
.y38e{bottom:147.456000px;}
.y12e{bottom:147.594000px;}
.y3a2{bottom:147.636000px;}
.y5a7{bottom:148.500000px;}
.y52c{bottom:148.530000px;}
.y519{bottom:148.545000px;}
.y140{bottom:148.725000px;}
.y79{bottom:149.400000px;}
.y57e{bottom:149.760000px;}
.y528{bottom:149.790000px;}
.y512{bottom:149.805000px;}
.y53a{bottom:150.840000px;}
.y4fa{bottom:150.870000px;}
.y582{bottom:150.885000px;}
.y59a{bottom:151.050000px;}
.y49b{bottom:151.410000px;}
.y574{bottom:151.920000px;}
.y151{bottom:152.130000px;}
.y44f{bottom:152.310000px;}
.ybb{bottom:152.670000px;}
.yda{bottom:152.850000px;}
.y4ea{bottom:153.210000px;}
.y46e{bottom:153.570000px;}
.y194{bottom:154.305000px;}
.y105{bottom:154.800000px;}
.yed{bottom:155.370000px;}
.y555{bottom:155.520000px;}
.y58f{bottom:155.925000px;}
.y121{bottom:156.594000px;}
.y2b5{bottom:156.630000px;}
.ye4{bottom:158.430000px;}
.y538{bottom:158.760000px;}
.y37a{bottom:159.510000px;}
.y521{bottom:161.130000px;}
.y43b{bottom:161.490000px;}
.y1eb{bottom:162.030000px;}
.y5bb{bottom:162.210000px;}
.y19f{bottom:162.225000px;}
.y44{bottom:162.390000px;}
.y28d{bottom:162.570000px;}
.y111{bottom:162.750000px;}
.y4df{bottom:162.930000px;}
.y1db{bottom:163.470000px;}
.y548{bottom:163.800000px;}
.y403{bottom:164.370000px;}
.y12d{bottom:164.559000px;}
.y30c{bottom:165.630000px;}
.y13f{bottom:165.645000px;}
.y266{bottom:165.810000px;}
.y488{bottom:166.350000px;}
.y8b{bottom:166.500000px;}
.y501{bottom:166.530000px;}
.y586{bottom:166.545000px;}
.y539{bottom:167.760000px;}
.y4f9{bottom:167.790000px;}
.y581{bottom:167.805000px;}
.y599{bottom:167.970000px;}
.y81{bottom:168.300000px;}
.y36d{bottom:168.510000px;}
.y573{bottom:168.840000px;}
.y150{bottom:169.050000px;}
.y40e{bottom:169.950000px;}
.y352{bottom:170.130000px;}
.y193{bottom:171.225000px;}
.y78{bottom:171.360000px;}
.y104{bottom:171.750000px;}
.y554{bottom:172.440000px;}
.y9f{bottom:172.470000px;}
.y45e{bottom:172.830000px;}
.y120{bottom:173.559000px;}
.y172{bottom:174.450000px;}
.y31f{bottom:174.630000px;}
.y299{bottom:175.350000px;}
.y71{bottom:175.890000px;}
.y362{bottom:176.070000px;}
.y41e{bottom:176.430000px;}
.y14e{bottom:176.970000px;}
.yec{bottom:177.330000px;}
.y476{bottom:177.690000px;}
.yba{bottom:178.770000px;}
.y52e{bottom:179.130000px;}
.y19e{bottom:179.145000px;}
.y110{bottom:179.670000px;}
.y4de{bottom:179.850000px;}
.y218{bottom:180.030000px;}
.y547{bottom:180.540000px;}
.y12c{bottom:181.299000px;}
.y1da{bottom:181.830000px;}
.y13e{bottom:182.565000px;}
.y5b9{bottom:183.090000px;}
.y3ea{bottom:183.270000px;}
.y4bc{bottom:183.630000px;}
.y57b{bottom:184.500000px;}
.yd9{bottom:184.890000px;}
.y572{bottom:185.760000px;}
.y14f{bottom:185.970000px;}
.y3a9{bottom:186.165000px;}
.y4e9{bottom:187.050000px;}
.y306{bottom:187.230000px;}
.y192{bottom:188.145000px;}
.y8a{bottom:188.280000px;}
.y46a{bottom:188.310000px;}
.y103{bottom:188.670000px;}
.y553{bottom:189.360000px;}
.ye2{bottom:189.390000px;}
.y2ee{bottom:189.750000px;}
.y570{bottom:189.930000px;}
.y80{bottom:190.080000px;}
.y11f{bottom:190.299000px;}
.y33f{bottom:190.650000px;}
.y58e{bottom:192.090000px;}
.yac{bottom:192.630000px;}
.y234{bottom:192.810000px;}
.y77{bottom:193.140000px;}
.y27a{bottom:193.890000px;}
.y18f{bottom:195.885000px;}
.y19d{bottom:196.065000px;}
.y10f{bottom:196.590000px;}
.y4dd{bottom:196.770000px;}
.y546{bottom:197.460000px;}
.y3db{bottom:197.865000px;}
.y12b{bottom:198.219000px;}
.y44e{bottom:198.750000px;}
.y38d{bottom:199.110000px;}
.y3da{bottom:199.125000px;}
.y3a1{bottom:199.290000px;}
.y13d{bottom:199.485000px;}
.y1d9{bottom:200.010000px;}
.y3c5{bottom:200.205000px;}
.y3cb{bottom:200.370000px;}
.y3d5{bottom:200.550000px;}
.y3c9{bottom:201.105000px;}
.y3c4{bottom:201.465000px;}
.y565{bottom:201.630000px;}
.y3c2{bottom:201.810000px;}
.y3aa{bottom:201.825000px;}
.y3c8{bottom:202.365000px;}
.y3d2{bottom:202.725000px;}
.y1ea{bottom:203.070000px;}
.y3a8{bottom:203.085000px;}
.y3c0{bottom:203.265000px;}
.y4e8{bottom:203.790000px;}
.yc7{bottom:204.510000px;}
.y3bf{bottom:204.525000px;}
.y3d0{bottom:204.885000px;}
.yb9{bottom:205.050000px;}
.y191{bottom:205.065000px;}
.y330{bottom:205.230000px;}
.y102{bottom:205.590000px;}
.y3ae{bottom:205.605000px;}
.y552{bottom:206.100000px;}
.y30b{bottom:206.130000px;}
.y3ce{bottom:206.145000px;}
.y5b7{bottom:206.850000px;}
.y11e{bottom:207.219000px;}
.y70{bottom:207.930000px;}
.yeb{bottom:208.110000px;}
.y28b{bottom:209.010000px;}
.y402{bottom:209.190000px;}
.y89{bottom:210.240000px;}
.y51e{bottom:210.630000px;}
.y3b2{bottom:210.810000px;}
.y4ad{bottom:210.990000px;}
.ye1{bottom:211.170000px;}
.y1fd{bottom:211.350000px;}
.y43{bottom:211.530000px;}
.y2c4{bottom:212.070000px;}
.y265{bottom:212.430000px;}
.y2a8{bottom:212.790000px;}
.y18e{bottom:212.805000px;}
.y10e{bottom:213.330000px;}
.y545{bottom:214.380000px;}
.y40d{bottom:214.770000px;}
.y9e{bottom:214.950000px;}
.y12a{bottom:215.139000px;}
.y217{bottom:215.310000px;}
.y3b7{bottom:215.325000px;}
.y49a{bottom:216.210000px;}
.y13c{bottom:216.225000px;}
.y351{bottom:216.570000px;}
.y3b6{bottom:216.585000px;}
.yd8{bottom:216.930000px;}
.y36c{bottom:218.010000px;}
.y1d8{bottom:218.190000px;}
.y3bc{bottom:218.205000px;}
.y3ba{bottom:219.465000px;}
.y2da{bottom:220.170000px;}
.y1e9{bottom:221.250000px;}
.y3b0{bottom:221.265000px;}
.y190{bottom:221.805000px;}
.y101{bottom:222.330000px;}
.y361{bottom:222.510000px;}
.y3ad{bottom:222.525000px;}
.y76{bottom:223.380000px;}
.y11d{bottom:224.139000px;}
.y233{bottom:224.310000px;}
.y298{bottom:224.850000px;}
.y551{bottom:226.440000px;}
.y305{bottom:227.730000px;}
.y3e9{bottom:228.090000px;}
.y52d{bottom:228.630000px;}
.y43a{bottom:228.990000px;}
.yea{bottom:230.070000px;}
.y10d{bottom:230.250000px;}
.yc6{bottom:230.610000px;}
.yb8{bottom:231.150000px;}
.y544{bottom:231.300000px;}
.y55b{bottom:231.510000px;}
.y129{bottom:232.059000px;}
.ye0{bottom:232.950000px;}
.y13b{bottom:233.145000px;}
.y2ed{bottom:234.390000px;}
.yab{bottom:235.110000px;}
.y170{bottom:238.890000px;}
.y100{bottom:239.250000px;}
.y41d{bottom:239.430000px;}
.y6f{bottom:239.970000px;}
.y216{bottom:240.150000px;}
.y279{bottom:240.330000px;}
.y1d7{bottom:240.510000px;}
.y469{bottom:240.690000px;}
.y11c{bottom:241.059000px;}
.y9c{bottom:241.230000px;}
.y475{bottom:242.130000px;}
.y1e8{bottom:243.750000px;}
.y75{bottom:244.620000px;}
.y44d{bottom:245.190000px;}
.y30a{bottom:246.630000px;}
.yff{bottom:247.170000px;}
.y499{bottom:247.710000px;}
.y543{bottom:248.040000px;}
.y11a{bottom:248.799000px;}
.yd7{bottom:248.970000px;}
.y13a{bottom:250.065000px;}
.y38c{bottom:250.950000px;}
.y3a0{bottom:251.130000px;}
.ye9{bottom:251.850000px;}
.y20{bottom:252.750000px;}
.y401{bottom:254.010000px;}
.y4bb{bottom:254.190000px;}
.ydf{bottom:254.910000px;}
.y232{bottom:255.810000px;}
.y487{bottom:255.990000px;}
.y42{bottom:256.170000px;}
.y5b6{bottom:256.350000px;}
.yc5{bottom:256.710000px;}
.yb7{bottom:257.250000px;}
.y11b{bottom:257.799000px;}
.y138{bottom:257.985000px;}
.y264{bottom:258.870000px;}
.y40c{bottom:259.590000px;}
.y4c8{bottom:259.770000px;}
.y439{bottom:260.490000px;}
.y2d9{bottom:260.670000px;}
.y3b3{bottom:260.850000px;}
.y4c7{bottom:261.030000px;}
.yaa{bottom:261.210000px;}
.y2c3{bottom:261.570000px;}
.y2a7{bottom:262.290000px;}
.y1c7{bottom:263.370000px;}
.y1d6{bottom:263.550000px;}
.y350{bottom:264.090000px;}
.y36b{bottom:264.630000px;}
.y542{bottom:264.990000px;}
.y1e7{bottom:266.610000px;}
.y139{bottom:266.985000px;}
.y304{bottom:268.230000px;}
.y4f1{bottom:268.770000px;}
.y509{bottom:269.130000px;}
.y32f{bottom:269.850000px;}
.y360{bottom:270.210000px;}
.y41c{bottom:270.930000px;}
.y45d{bottom:271.830000px;}
.y6e{bottom:272.010000px;}
.y3e8{bottom:272.910000px;}
.y297{bottom:274.350000px;}
.y1f6{bottom:275.790000px;}
.yde{bottom:276.150000px;}
.y4c6{bottom:277.950000px;}
.y5a3{bottom:278.130000px;}
.y498{bottom:279.210000px;}
.y28a{bottom:279.570000px;}
.yd6{bottom:281.010000px;}
.y1d5{bottom:281.730000px;}
.y541{bottom:281.910000px;}
.yc4{bottom:282.990000px;}
.yb6{bottom:283.350000px;}
.y9b{bottom:283.710000px;}
.ye3{bottom:285.150000px;}
.y275{bottom:286.770000px;}
.y2ec{bottom:287.130000px;}
.y231{bottom:287.310000px;}
.ya9{bottom:287.490000px;}
.y1e6{bottom:288.930000px;}
.y3c3{bottom:289.470000px;}
.y3cd{bottom:289.650000px;}
.y44b{bottom:291.810000px;}
.y438{bottom:291.990000px;}
.y3d6{bottom:292.530000px;}
.y4c5{bottom:294.870000px;}
.y1c6{bottom:295.410000px;}
.y41{bottom:295.770000px;}
.y3ff{bottom:298.650000px;}
.y485{bottom:300.630000px;}
.y2d7{bottom:301.170000px;}
.y41a{bottom:302.430000px;}
.y389{bottom:302.610000px;}
.y39f{bottom:302.790000px;}
.y165{bottom:303.510000px;}
.y4ba{bottom:303.690000px;}
.y6d{bottom:304.050000px;}
.y40a{bottom:304.410000px;}
.y261{bottom:305.310000px;}
.ydd{bottom:306.390000px;}
.y31e{bottom:306.795000px;}
.y303{bottom:308.775000px;}
.yc3{bottom:309.135000px;}
.yb5{bottom:309.495000px;}
.y9a{bottom:309.855000px;}
.y4ac{bottom:310.035000px;}
.y34f{bottom:310.755000px;}
.y2c2{bottom:311.115000px;}
.y4c4{bottom:311.610000px;}
.y2a6{bottom:311.835000px;}
.y1e5{bottom:311.970000px;}
.yd5{bottom:313.095000px;}
.ya8{bottom:313.635000px;}
.y36a{bottom:314.175000px;}
.y35f{bottom:316.695000px;}
.y1f{bottom:316.875000px;}
.y540{bottom:317.055000px;}
.y3e7{bottom:317.775000px;}
.y502{bottom:318.675000px;}
.y1c5{bottom:320.115000px;}
.y379{bottom:321.195000px;}
.y45c{bottom:321.375000px;}
.y5b8{bottom:322.635000px;}
.y296{bottom:323.895000px;}
.y215{bottom:325.695000px;}
.y2b4{bottom:325.875000px;}
.y437{bottom:326.415000px;}
.y40{bottom:326.595000px;}
.y1d4{bottom:326.910000px;}
.y2eb{bottom:327.675000px;}
.y289{bottom:329.115000px;}
.y1e4{bottom:330.150000px;}
.y230{bottom:331.995000px;}
.y57f{bottom:332.175000px;}
.y468{bottom:333.795000px;}
.y419{bottom:333.975000px;}
.yc2{bottom:335.235000px;}
.yb4{bottom:335.775000px;}
.y99{bottom:335.955000px;}
.y6c{bottom:336.135000px;}
.y33e{bottom:336.675000px;}
.y44a{bottom:338.295000px;}
.ya7{bottom:339.735000px;}
.y2d6{bottom:341.715000px;}
.y497{bottom:342.255000px;}
.yd4{bottom:345.135000px;}
.y1d3{bottom:345.270000px;}
.y484{bottom:345.495000px;}
.y1c4{bottom:346.215000px;}
.y3fe{bottom:346.395000px;}
.y1e3{bottom:348.330000px;}
.y409{bottom:349.095000px;}
.y302{bottom:349.275000px;}
.y32e{bottom:351.255000px;}
.y260{bottom:351.975000px;}
.y4f0{bottom:354.315000px;}
.y388{bottom:354.495000px;}
.y39e{bottom:354.675000px;}
.y4b9{bottom:356.115000px;}
.y274{bottom:357.375000px;}
.y3f{bottom:357.555000px;}
.y436{bottom:357.915000px;}
.y34e{bottom:358.275000px;}
.y4c3{bottom:359.355000px;}
.y4ab{bottom:359.535000px;}
.y2c1{bottom:360.615000px;}
.yc1{bottom:361.335000px;}
.yb3{bottom:361.875000px;}
.y98{bottom:362.235000px;}
.y3e6{bottom:362.415000px;}
.y1d2{bottom:363.495000px;}
.y35e{bottom:364.395000px;}
.y1e{bottom:365.475000px;}
.ya6{bottom:365.835000px;}
.y2ea{bottom:368.175000px;}
.y1e2{bottom:370.695000px;}
.y45b{bottom:370.875000px;}
.y31d{bottom:371.235000px;}
.y6b{bottom:371.775000px;}
.y1f2{bottom:373.395000px;}
.y496{bottom:373.755000px;}
.y2b3{bottom:375.375000px;}
.y288{bottom:375.555000px;}
.y22f{bottom:375.735000px;}
.yd3{bottom:377.175000px;}
.y3e{bottom:379.335000px;}
.y467{bottom:380.235000px;}
.y57d{bottom:381.675000px;}
.y2d5{bottom:382.215000px;}
.y449{bottom:384.735000px;}
.y51a{bottom:386.175000px;}
.y1d{bottom:387.255000px;}
.yc0{bottom:387.615000px;}
.yb2{bottom:387.975000px;}
.y97{bottom:388.335000px;}
.y301{bottom:389.775000px;}
.y214{bottom:390.315000px;}
.y3fd{bottom:391.215000px;}
.ya5{bottom:392.115000px;}
.y435{bottom:392.475000px;}
.y1d1{bottom:393.735000px;}
.y1c1{bottom:393.915000px;}
.y22e{bottom:394.275000px;}
.y25a{bottom:396.795000px;}
.y3e5{bottom:396.975000px;}
.y248{bottom:400.215000px;}
.y160{bottom:401.835000px;}
.y273{bottom:403.815000px;}
.y533{bottom:404.175000px;}
.y34d{bottom:404.895000px;}
.y495{bottom:405.255000px;}
.y4b8{bottom:405.615000px;}
.y387{bottom:406.155000px;}
.y39d{bottom:406.335000px;}
.y2e9{bottom:408.675000px;}
.y4aa{bottom:409.035000px;}
.y1c{bottom:409.215000px;}
.y3d{bottom:410.115000px;}
.y2a5{bottom:410.835000px;}
.y5a0{bottom:411.555000px;}
.y1d0{bottom:411.915000px;}
.y5c{bottom:412.095000px;}
.ybe{bottom:413.715000px;}
.y5b5{bottom:413.895000px;}
.yaf{bottom:414.075000px;}
.y94{bottom:414.435000px;}
.y32d{bottom:415.695000px;}
.y5a9{bottom:417.675000px;}
.y6a{bottom:418.035000px;}
.ya3{bottom:418.215000px;}
.y378{bottom:418.395000px;}
.y45a{bottom:420.375000px;}
.y31c{bottom:420.735000px;}
.y2d2{bottom:422.715000px;}
.y295{bottom:422.895000px;}
.y2b2{bottom:424.875000px;}
.y287{bottom:425.055000px;}
.yfe{bottom:425.955000px;}
.y466{bottom:426.855000px;}
.y418{bottom:428.475000px;}
.y22d{bottom:429.915000px;}
.y300{bottom:430.275000px;}
.y1b{bottom:430.995000px;}
.y1cd{bottom:431.355000px;}
.y3c{bottom:432.075000px;}
.y1cf{bottom:434.235000px;}
.y474{bottom:435.675000px;}
.y3fc{bottom:435.855000px;}
.y494{bottom:436.755000px;}
.y434{bottom:437.295000px;}
.y213{bottom:437.835000px;}
.y408{bottom:438.735000px;}
.ybf{bottom:439.815000px;}
.yb1{bottom:440.355000px;}
.y96{bottom:440.535000px;}
.yd2{bottom:441.255000px;}
.y3e4{bottom:441.795000px;}
.y247{bottom:442.695000px;}
.y5b{bottom:444.135000px;}
.ya4{bottom:444.315000px;}
.y566{bottom:446.475000px;}
.y1cc{bottom:448.275000px;}
.y2e8{bottom:449.175000px;}
.y34c{bottom:452.415000px;}
.y1f1{bottom:452.775000px;}
.y271{bottom:453.315000px;}
.y531{bottom:453.675000px;}
.y3b{bottom:453.855000px;}
.y1a{bottom:455.115000px;}
.y369{bottom:456.555000px;}
.y1ce{bottom:457.095000px;}
.y386{bottom:457.995000px;}
.y39c{bottom:458.175000px;}
.y35d{bottom:458.535000px;}
.y2bf{bottom:459.615000px;}
.y417{bottom:459.975000px;}
.y2a4{bottom:460.335000px;}
.y598{bottom:461.055000px;}
.y246{bottom:461.235000px;}
.y564{bottom:462.675000px;}
.y69{bottom:464.295000px;}
.ybd{bottom:465.915000px;}
.yae{bottom:466.455000px;}
.y93{bottom:466.635000px;}
.y1bc{bottom:467.355000px;}
.y493{bottom:468.255000px;}
.y15c{bottom:469.335000px;}
.y459{bottom:469.875000px;}
.y31b{bottom:470.235000px;}
.ya2{bottom:470.415000px;}
.y2ff{bottom:470.775000px;}
.y292{bottom:472.395000px;}
.yd1{bottom:473.115000px;}
.y465{bottom:473.295000px;}
.y2b1{bottom:474.375000px;}
.y286{bottom:474.555000px;}
.y3a{bottom:475.815000px;}
.y5a{bottom:476.175000px;}
.y448{bottom:477.795000px;}
.y32c{bottom:480.135000px;}
.y3fb{bottom:480.675000px;}
.y245{bottom:482.115000px;}
.y19{bottom:482.475000px;}
.y377{bottom:482.835000px;}
.y407{bottom:483.555000px;}
.y3b8{bottom:485.175000px;}
.y212{bottom:485.535000px;}
.y3e3{bottom:486.615000px;}
.ydc{bottom:488.235000px;}
.y2e7{bottom:489.675000px;}
.y416{bottom:491.475000px;}
.ybc{bottom:492.015000px;}
.yad{bottom:492.555000px;}
.y3a7{bottom:492.735000px;}
.y91{bottom:492.915000px;}
.y433{bottom:494.355000px;}
.y2d1{bottom:495.975000px;}
.ya0{bottom:496.515000px;}
.y39{bottom:497.595000px;}
.y34b{bottom:499.035000px;}
.y33c{bottom:499.395000px;}
.y492{bottom:499.755000px;}
.y1cb{bottom:500.475000px;}
.y259{bottom:503.175000px;}
.y4b7{bottom:504.615000px;}
.y35c{bottom:504.975000px;}
.y482{bottom:505.335000px;}
.y368{bottom:506.055000px;}
.y22c{bottom:507.675000px;}
.y59{bottom:508.215000px;}
.y385{bottom:509.655000px;}
.y18{bottom:509.835000px;}
.y68{bottom:510.555000px;}
.y2fe{bottom:511.275000px;}
.y18b{bottom:511.635000px;}
.y458{bottom:516.315000px;}
.y3c1{bottom:516.675000px;}
.y14d{bottom:516.855000px;}
.y38{bottom:519.375000px;}
.y3d4{bottom:519.735000px;}
.y285{bottom:521.175000px;}
.y3ca{bottom:521.535000px;}
.y415{bottom:522.975000px;}
.y2b0{bottom:523.875000px;}
.y447{bottom:524.235000px;}
.y4dc{bottom:525.315000px;}
.y3fa{bottom:525.495000px;}
.y4f8{bottom:525.675000px;}
.y480{bottom:526.395000px;}
.y432{bottom:527.475000px;}
.y406{bottom:528.195000px;}
.y244{bottom:528.735000px;}
.y2be{bottom:530.175000px;}
.y3e2{bottom:531.255000px;}
.y376{bottom:532.335000px;}
.y31a{bottom:534.675000px;}
.y17{bottom:537.375000px;}
.y58{bottom:537.735000px;}
.y211{bottom:543.675000px;}
.y3a5{bottom:544.575000px;}
.y329{bottom:544.755000px;}
.y2d0{bottom:545.475000px;}
.y34a{bottom:546.555000px;}
.y561{bottom:548.175000px;}
.y37{bottom:550.335000px;}
.y22b{bottom:552.495000px;}
.y35b{bottom:552.675000px;}
.y270{bottom:554.115000px;}
.y67{bottom:556.815000px;}
.y57c{bottom:557.175000px;}
.y2a3{bottom:559.335000px;}
.y2fd{bottom:560.775000px;}
.y382{bottom:561.495000px;}
.y39a{bottom:561.675000px;}
.y491{bottom:562.755000px;}
.y339{bottom:563.835000px;}
.y431{bottom:564.555000px;}
.y16{bottom:564.735000px;}
.y457{bottom:565.815000px;}
.y464{bottom:566.355000px;}
.y4a8{bottom:567.255000px;}
.y57{bottom:568.695000px;}
.y210{bottom:568.875000px;}
.y3f8{bottom:570.315000px;}
.y257{bottom:570.675000px;}
.y445{bottom:570.855000px;}
.y5b4{bottom:571.395000px;}
.y36{bottom:572.115000px;}
.y414{bottom:572.475000px;}
.y405{bottom:573.015000px;}
.y2af{bottom:573.375000px;}
.y242{bottom:575.175000px;}
.y3df{bottom:576.075000px;}
.y182{bottom:579.135000px;}
.y2bc{bottom:579.675000px;}
.y373{bottom:580.035000px;}
.y317{bottom:584.205000px;}
.y430{bottom:589.605000px;}
.y47f{bottom:589.785000px;}
.y56{bottom:589.965000px;}
.y291{bottom:591.585000px;}
.y15{bottom:592.125000px;}
.y349{bottom:593.205000px;}
.y490{bottom:594.285000px;}
.y2cf{bottom:595.005000px;}
.y229{bottom:597.345000px;}
.y35a{bottom:599.145000px;}
.y473{bottom:599.325000px;}
.y26f{bottom:600.585000px;}
.y66{bottom:602.925000px;}
.y35{bottom:603.105000px;}
.y4b6{bottom:603.645000px;}
.y413{bottom:604.005000px;}
.y571{bottom:606.705000px;}
.y74{bottom:606.885000px;}
.y20f{bottom:608.505000px;}
.y2a2{bottom:608.865000px;}
.y55{bottom:609.945000px;}
.y2fb{bottom:610.305000px;}
.y2e5{bottom:611.205000px;}
.y381{bottom:613.185000px;}
.y399{bottom:613.365000px;}
.y456{bottom:615.345000px;}
.y444{bottom:617.325000px;}
.y3f7{bottom:617.865000px;}
.y14{bottom:619.485000px;}
.y255{bottom:620.205000px;}
.y3de{bottom:620.925000px;}
.y42f{bottom:621.105000px;}
.y240{bottom:621.645000px;}
.y2ae{bottom:622.905000px;}
.y537{bottom:624.705000px;}
.y34{bottom:624.885000px;}
.y48f{bottom:625.785000px;}
.y328{bottom:626.145000px;}
.y2bb{bottom:629.205000px;}
.y54{bottom:630.105000px;}
.y560{bottom:633.705000px;}
.y2ce{bottom:635.505000px;}
.y348{bottom:640.725000px;}
.y290{bottom:641.085000px;}
.y227{bottom:642.165000px;}
.y5aa{bottom:642.705000px;}
.y372{bottom:644.505000px;}
.y338{bottom:645.225000px;}
.y65{bottom:645.585000px;}
.y359{bottom:646.665000px;}
.y471{bottom:648.825000px;}
.y53{bottom:650.085000px;}
.y20e{bottom:650.445000px;}
.y2fa{bottom:650.805000px;}
.y2e4{bottom:651.705000px;}
.y13{bottom:652.065000px;}
.y42e{bottom:652.605000px;}
.y4b5{bottom:653.145000px;}
.y47e{bottom:654.225000px;}
.y596{bottom:654.585000px;}
.y33{bottom:655.665000px;}
.y4a7{bottom:656.745000px;}
.y48e{bottom:657.285000px;}
.y2a1{bottom:658.365000px;}
.y52f{bottom:660.705000px;}
.y455{bottom:661.965000px;}
.y3f6{bottom:662.685000px;}
.y443{bottom:663.765000px;}
.y37f{bottom:665.025000px;}
.y398{bottom:665.205000px;}
.y283{bottom:666.645000px;}
.y410{bottom:667.005000px;}
.y23f{bottom:668.265000px;}
.y3dd{bottom:668.445000px;}
.y52{bottom:670.065000px;}
.y2ad{bottom:672.405000px;}
.y20d{bottom:675.285000px;}
.y2cd{bottom:676.005000px;}
.y32{bottom:677.625000px;}
.y2ba{bottom:678.705000px;}
.y462{bottom:681.585000px;}
.y42d{bottom:684.105000px;}
.y51{bottom:686.805000px;}
.y347{bottom:687.165000px;}
.y254{bottom:687.705000px;}
.y28f{bottom:690.585000px;}
.y2e3{bottom:692.205000px;}
.y358{bottom:693.285000px;}
.y371{bottom:694.005000px;}
.y26e{bottom:696.705000px;}
.y31{bottom:699.405000px;}
.y316{bottom:699.945000px;}
.y2f9{bottom:700.305000px;}
.y226{bottom:701.565000px;}
.y47d{bottom:701.925000px;}
.y4b4{bottom:702.645000px;}
.y4a6{bottom:703.185000px;}
.y48d{bottom:706.785000px;}
.y3f5{bottom:707.505000px;}
.yfc{bottom:707.685000px;}
.y29e{bottom:707.865000px;}
.y454{bottom:708.405000px;}
.y64{bottom:709.665000px;}
.y12{bottom:710.205000px;}
.y442{bottom:710.385000px;}
.y23e{bottom:714.705000px;}
.y42c{bottom:715.605000px;}
.y282{bottom:716.145000px;}
.y37e{bottom:716.685000px;}
.y397{bottom:716.865000px;}
.y50{bottom:718.305000px;}
.y252{bottom:719.205000px;}
.y2ac{bottom:721.905000px;}
.y224{bottom:722.445000px;}
.y2c9{bottom:725.505000px;}
.y3ac{bottom:727.485000px;}
.y2b9{bottom:728.205000px;}
.y137{bottom:728.385000px;}
.y181{bottom:729.105000px;}
.y3dc{bottom:729.825000px;}
.y30{bottom:730.365000px;}
.y461{bottom:731.085000px;}
.y40f{bottom:731.265000px;}
.y2e2{bottom:732.705000px;}
.y3b5{bottom:733.425000px;}
.y345{bottom:734.865000px;}
.y4f{bottom:738.285000px;}
.y367{bottom:739.725000px;}
.y357{bottom:740.805000px;}
.y63{bottom:741.705000px;}
.y26d{bottom:743.145000px;}
.y3be{bottom:745.485000px;}
.y4a5{bottom:746.205000px;}
.y42b{bottom:747.105000px;}
.y3d1{bottom:747.285000px;}
.y3c7{bottom:747.645000px;}
.y4c2{bottom:749.265000px;}
.y315{bottom:749.445000px;}
.y2f7{bottom:749.805000px;}
.y250{bottom:750.705000px;}
.y3d9{bottom:750.885000px;}
.y2f{bottom:752.145000px;}
.y20c{bottom:754.665000px;}
.y4d3{bottom:754.845000px;}
.y4e{bottom:755.025000px;}
.y327{bottom:755.205000px;}
.y441{bottom:756.825000px;}
.y37d{bottom:761.505000px;}
.y281{bottom:762.585000px;}
.y23d{bottom:764.205000px;}
.y1af{bottom:764.385000px;}
.y470{bottom:764.565000px;}
.yfb{bottom:765.465000px;}
.y396{bottom:768.705000px;}
.y48c{bottom:769.785000px;}
.y2ab{bottom:771.405000px;}
.y221{bottom:771.945000px;}
.y2e1{bottom:773.205000px;}
.y62{bottom:773.745000px;}
.y2b8{bottom:777.705000px;}
.y5b3{bottom:778.425000px;}
.y42a{bottom:778.605000px;}
.y453{bottom:778.965000px;}
.y460{bottom:780.585000px;}
.y344{bottom:781.305000px;}
.y11{bottom:782.565000px;}
.y2e{bottom:782.925000px;}
.y47c{bottom:783.285000px;}
.y24f{bottom:785.265000px;}
.y4d{bottom:786.525000px;}
.y356{bottom:787.425000px;}
.y26c{bottom:789.585000px;}
.y336{bottom:791.205000px;}
.y2f6{bottom:792.285000px;}
.y17d{bottom:793.725000px;}
.y3f4{bottom:796.965000px;}
.y4c1{bottom:798.765000px;}
.y511{bottom:800.205000px;}
.y48b{bottom:801.285000px;}
.y43d{bottom:801.645000px;}
.yfa{bottom:802.545000px;}
.y205{bottom:804.165000px;}
.y4f7{bottom:804.705000px;}
.y2d{bottom:804.885000px;}
.y10{bottom:805.425000px;}
.y370{bottom:806.145000px;}
.y4c{bottom:806.505000px;}
.y2c8{bottom:809.205000px;}
.y61{bottom:809.385000px;}
.y429{bottom:810.105000px;}
.y280{bottom:812.085000px;}
.y23c{bottom:813.705000px;}
.y313{bottom:814.065000px;}
.y522{bottom:818.205000px;}
.y395{bottom:820.365000px;}
.y2a9{bottom:820.905000px;}
.y21f{bottom:821.445000px;}
.y325{bottom:822.705000px;}
.y452{bottom:825.405000px;}
.y24e{bottom:825.765000px;}
.y37c{bottom:825.945000px;}
.y4b{bottom:826.485000px;}
.y2c{bottom:826.665000px;}
.y29d{bottom:827.205000px;}
.yf9{bottom:827.565000px;}
.y5ab{bottom:827.925000px;}
.yf{bottom:828.105000px;}
.y342{bottom:829.005000px;}
.yd0{bottom:830.085000px;}
.y4a0{bottom:830.625000px;}
.y47b{bottom:830.805000px;}
.y366{bottom:833.865000px;}
.y355{bottom:834.945000px;}
.y26b{bottom:836.205000px;}
.y4a4{bottom:836.745000px;}
.y428{bottom:841.605000px;}
.y2f4{bottom:841.785000px;}
.y4a{bottom:846.645000px;}
.y4c0{bottom:848.265000px;}
.y2b{bottom:848.625000px;}
.ye{bottom:850.965000px;}
.y4b2{bottom:851.145000px;}
.y60{bottom:852.945000px;}
.y2e0{bottom:854.205000px;}
.y333{bottom:855.645000px;}
.y17c{bottom:858.210000px;}
.y2c7{bottom:858.750000px;}
.yf7{bottom:859.110000px;}
.y24d{bottom:860.370000px;}
.y312{bottom:861.630000px;}
.y49{bottom:863.430000px;}
.y21e{bottom:864.510000px;}
.ycf{bottom:865.590000px;}
.y2a{bottom:870.450000px;}
.y394{bottom:872.250000px;}
.y427{bottom:873.150000px;}
.y36f{bottom:873.690000px;}
.yd{bottom:873.870000px;}
.y451{bottom:874.950000px;}
.y341{bottom:875.490000px;}
.y49f{bottom:876.570000px;}
.y29c{bottom:876.750000px;}
.y37b{bottom:878.550000px;}
.y27f{bottom:879.630000px;}
.y47a{bottom:880.350000px;}
.y23b{bottom:881.250000px;}
.y354{bottom:881.610000px;}
.y26a{bottom:882.690000px;}
.y2f3{bottom:883.770000px;}
.y4a1{bottom:884.310000px;}
.y1ab{bottom:885.930000px;}
.y3f1{bottom:886.650000px;}
.y321{bottom:887.190000px;}
.y4f6{bottom:890.250000px;}
.yf5{bottom:890.610000px;}
.y48{bottom:891.510000px;}
.y29{bottom:892.230000px;}
.y2df{bottom:894.750000px;}
.y5f{bottom:895.650000px;}
.yc{bottom:896.730000px;}
.y4d2{bottom:897.450000px;}
.y4bf{bottom:897.810000px;}
.y4b1{bottom:900.690000px;}
.y24c{bottom:905.010000px;}
.y21d{bottom:907.350000px;}
.y2c6{bottom:908.250000px;}
.y311{bottom:911.130000px;}
.yce{bottom:911.850000px;}
.y4a3{bottom:917.430000px;}
.yb{bottom:919.590000px;}
.y28{bottom:923.190000px;}
.y393{bottom:923.910000px;}
.y29b{bottom:926.250000px;}
.y47{bottom:927.690000px;}
.y365{bottom:928.050000px;}
.y269{bottom:929.130000px;}
.y3f0{bottom:931.470000px;}
.y2f1{bottom:933.270000px;}
.y2de{bottom:935.250000px;}
.y1aa{bottom:935.430000px;}
.y424{bottom:937.950000px;}
.y5e{bottom:938.850000px;}
.y179{bottom:939.570000px;}
.y49e{bottom:939.750000px;}
.yf4{bottom:940.470000px;}
.y4d1{bottom:942.090000px;}
.ya{bottom:942.450000px;}
.y27{bottom:944.970000px;}
.y4be{bottom:947.310000px;}
.y23a{bottom:948.750000px;}
.y4b0{bottom:950.190000px;}
.ycd{bottom:951.630000px;}
.y204{bottom:955.950000px;}
.y24b{bottom:962.250000px;}
.y9{bottom:965.130000px;}
.y26{bottom:966.930000px;}
.y21c{bottom:970.350000px;}
.y49d{bottom:971.250000px;}
.ycc{bottom:971.610000px;}
.y268{bottom:975.750000px;}
.y3ef{bottom:976.110000px;}
.y46{bottom:976.470000px;}
.y5d{bottom:980.790000px;}
.yf3{bottom:983.130000px;}
.y1c9{bottom:983.310000px;}
.y8{bottom:987.990000px;}
.y24a{bottom:995.370000px;}
.y4d0{bottom:999.330000px;}
.y4ae{bottom:999.690000px;}
.y25{bottom:1000.230000px;}
.y423{bottom:1002.750000px;}
.yf2{bottom:1003.110000px;}
.ycb{bottom:1007.250000px;}
.y7{bottom:1010.850000px;}
.y239{bottom:1016.250000px;}
.y203{bottom:1020.390000px;}
.y136{bottom:1020.930000px;}
.y21b{bottom:1021.650000px;}
.y24{bottom:1032.090000px;}
.y4af{bottom:1032.810000px;}
.y6{bottom:1033.710000px;}
.y422{bottom:1034.250000px;}
.y249{bottom:1034.970000px;}
.y1c8{bottom:1041.630000px;}
.yf1{bottom:1043.790000px;}
.yca{bottom:1053.510000px;}
.y5{bottom:1056.570000px;}
.y135{bottom:1064.130000px;}
.y4{bottom:1079.250000px;}
.y23{bottom:1082.670000px;}
.y22{bottom:1096.890000px;}
.y3{bottom:1108.590000px;}
.y2{bottom:1154.340000px;}
.y1{bottom:1192.500000px;}
.y21{bottom:1195.740000px;}
.h20{height:18.720000px;}
.h80{height:18.756000px;}
.h88{height:20.160000px;}
.h89{height:20.340000px;}
.h82{height:21.636000px;}
.h1f{height:21.780000px;}
.h8c{height:22.680000px;}
.h8d{height:23.760000px;}
.h14{height:25.380000px;}
.h18{height:25.416000px;}
.h1a{height:25.560000px;}
.h47{height:27.720000px;}
.h59{height:27.756000px;}
.h5f{height:27.900000px;}
.h5d{height:29.196000px;}
.h5c{height:29.700000px;}
.h3f{height:30.240000px;}
.h8a{height:30.276000px;}
.h5b{height:31.320000px;}
.h46{height:31.860000px;}
.h7e{height:31.896000px;}
.h21{height:32.040000px;}
.h40{height:32.076000px;}
.h38{height:32.580000px;}
.h43{height:33.660000px;}
.h45{height:33.696000px;}
.h44{height:33.840000px;}
.h4c{height:33.876000px;}
.h29{height:34.740000px;}
.h7d{height:34.776000px;}
.h36{height:34.920000px;}
.h68{height:34.956000px;}
.h31{height:36.720000px;}
.h48{height:36.756000px;}
.h5e{height:36.900000px;}
.h60{height:36.936000px;}
.h7c{height:38.340000px;}
.h61{height:38.520000px;}
.h6a{height:38.880000px;}
.h6c{height:38.916000px;}
.h6b{height:39.060000px;}
.h6d{height:39.096000px;}
.h7f{height:39.600000px;}
.h8b{height:39.636000px;}
.h51{height:39.780000px;}
.h65{height:39.816000px;}
.h5a{height:39.960000px;}
.h69{height:40.472227px;}
.h84{height:41.400000px;}
.h4d{height:41.580000px;}
.h16{height:41.633789px;}
.h19{height:41.760000px;}
.h15{height:44.428711px;}
.h86{height:44.460000px;}
.h4{height:45.082617px;}
.h25{height:46.074727px;}
.hf{height:48.761719px;}
.h2{height:48.774375px;}
.h9a{height:49.140000px;}
.h24{height:49.167773px;}
.he{height:49.971094px;}
.h8f{height:49.992188px;}
.h41{height:50.580000px;}
.h50{height:50.918203px;}
.h7{height:51.070781px;}
.h17{height:51.480000px;}
.h1b{height:51.660000px;}
.h63{height:51.696000px;}
.h3a{height:51.793945px;}
.h4b{height:51.826866px;}
.h2c{height:51.840000px;}
.h67{height:51.876000px;}
.h81{height:52.020000px;}
.h87{height:53.280000px;}
.h6{height:54.316406px;}
.h22{height:54.499219px;}
.h2a{height:54.720000px;}
.h42{height:54.756000px;}
.h4a{height:54.961172px;}
.ha{height:55.511719px;}
.h6e{height:56.016000px;}
.h13{height:57.410156px;}
.h85{height:57.600000px;}
.h4f{height:57.780000px;}
.h4e{height:57.816000px;}
.hb{height:59.238281px;}
.h57{height:60.480000px;}
.h35{height:60.660000px;}
.h58{height:61.718203px;}
.hc{height:62.402344px;}
.h3b{height:66.600000px;}
.h10{height:67.895508px;}
.h37{height:68.084282px;}
.h2e{height:68.580000px;}
.h64{height:68.616000px;}
.h66{height:68.760000px;}
.h56{height:70.920000px;}
.h1c{height:71.820000px;}
.h2d{height:72.720000px;}
.h91{height:72.756000px;}
.h3e{height:72.936000px;}
.h1e{height:74.004654px;}
.h62{height:75.780000px;}
.h3c{height:84.816000px;}
.h2b{height:85.536000px;}
.h3{height:90.708398px;}
.h9d{height:90.720000px;}
.h9e{height:90.756000px;}
.h49{height:93.600000px;}
.h11{height:93.691406px;}
.h83{height:93.816000px;}
.h9c{height:101.340000px;}
.hd{height:104.287500px;}
.h52{height:106.380000px;}
.h53{height:106.560000px;}
.h32{height:108.756000px;}
.h9{height:126.557227px;}
.h33{height:126.720000px;}
.ha0{height:126.936000px;}
.h8e{height:129.816000px;}
.h9f{height:135.036000px;}
.h2f{height:137.376000px;}
.h3d{height:138.996000px;}
.h54{height:142.056000px;}
.h93{height:144.720000px;}
.h34{height:144.756000px;}
.h97{height:151.950000px;}
.h55{height:156.450000px;}
.h99{height:162.720000px;}
.h94{height:162.750000px;}
.h9b{height:168.870000px;}
.h8{height:172.430844px;}
.h95{height:180.720000px;}
.h92{height:180.750000px;}
.h5{height:180.873633px;}
.h98{height:198.720000px;}
.h28{height:198.750000px;}
.h7b{height:212.070000px;}
.h77{height:213.330000px;}
.h75{height:214.410000px;}
.h7a{height:214.770000px;}
.h76{height:215.310000px;}
.h79{height:215.670000px;}
.h6f{height:216.030000px;}
.h90{height:216.750000px;}
.h74{height:217.470000px;}
.h78{height:219.090000px;}
.h71{height:225.030000px;}
.h72{height:229.530000px;}
.h73{height:232.410000px;}
.h30{height:234.750000px;}
.h70{height:235.470000px;}
.h12{height:262.830000px;}
.h23{height:269.130000px;}
.h26{height:270.750000px;}
.h27{height:279.750000px;}
.h96{height:294.870000px;}
.h1d{height:324.570000px;}
.h39{height:470.055000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w13{width:45.180000px;}
.w1c{width:45.216000px;}
.w9{width:47.880000px;}
.w17{width:49.320000px;}
.w10{width:49.500000px;}
.wd{width:50.400000px;}
.wb{width:50.976000px;}
.w8{width:51.660000px;}
.wa{width:52.200000px;}
.w12{width:52.380000px;}
.w18{width:52.416000px;}
.wf{width:52.956000px;}
.w1b{width:53.100000px;}
.w16{width:53.136000px;}
.w11{width:54.000000px;}
.wc{width:54.900000px;}
.w1d{width:103.320000px;}
.w1e{width:151.410000px;}
.w3f{width:180.750000px;}
.w31{width:183.270000px;}
.we{width:201.960000px;}
.w33{width:212.580000px;}
.w25{width:215.130000px;}
.w2a{width:215.310000px;}
.w27{width:215.670000px;}
.w47{width:246.990000px;}
.w1a{width:256.350000px;}
.w14{width:261.210000px;}
.w4{width:271.650000px;}
.w2{width:278.100000px;}
.w6{width:281.190000px;}
.w5{width:281.370000px;}
.w3{width:291.450000px;}
.w19{width:307.110000px;}
.w38{width:318.990000px;}
.w37{width:329.610000px;}
.w4a{width:350.850000px;}
.w4c{width:353.910000px;}
.w4d{width:354.630000px;}
.w7{width:360.390000px;}
.w15{width:360.435000px;}
.w4b{width:372.090000px;}
.w42{width:392.070000px;}
.w39{width:393.330000px;}
.w43{width:393.510000px;}
.w20{width:400.350000px;}
.w3c{width:402.690000px;}
.w41{width:403.950000px;}
.w3a{width:404.130000px;}
.w23{width:417.270000px;}
.w22{width:421.410000px;}
.w21{width:436.035000px;}
.w34{width:578.595000px;}
.w1f{width:594.360000px;}
.w32{width:648.615000px;}
.w45{width:659.235000px;}
.w2b{width:708.195000px;}
.w49{width:708.555000px;}
.w28{width:708.735000px;}
.w2d{width:712.515000px;}
.w48{width:722.955000px;}
.w2e{width:739.515000px;}
.w2c{width:755.175000px;}
.w29{width:756.075000px;}
.w46{width:786.855000px;}
.w30{width:791.175000px;}
.w3b{width:796.035000px;}
.w36{width:797.475000px;}
.w40{width:829.365000px;}
.w2f{width:831.885000px;}
.w26{width:1460.490000px;}
.w35{width:1623.060000px;}
.w3e{width:1626.840000px;}
.w3d{width:1627.920000px;}
.w44{width:1629.360000px;}
.w24{width:1675.620000px;}
.w1{width:1786.499973px;}
.w0{width:1786.500000px;}
.x0{left:0.000000px;}
.x37{left:5.940000px;}
.xb{left:7.740000px;}
.x31{left:19.980000px;}
.x6{left:53.999973px;}
.x2f{left:57.060000px;}
.x36{left:62.100000px;}
.x72{left:64.620000px;}
.x2e{left:106.560000px;}
.x18{left:112.860000px;}
.x11{left:136.620000px;}
.x20{left:142.965000px;}
.x4f{left:148.710000px;}
.x34{left:158.220000px;}
.x19{left:166.530000px;}
.xa{left:189.930000px;}
.x35{left:208.620000px;}
.x33{left:210.600000px;}
.x1a{left:216.750000px;}
.x32{left:218.025000px;}
.x41{left:223.410000px;}
.x75{left:238.170000px;}
.x76{left:241.950000px;}
.x3d{left:245.370000px;}
.x1b{left:271.470000px;}
.x38{left:277.230000px;}
.x27{left:299.565000px;}
.x63{left:303.525000px;}
.x7d{left:309.270000px;}
.x1c{left:321.690000px;}
.x45{left:338.070000px;}
.x7{left:373.529973px;}
.x1d{left:374.790000px;}
.x50{left:386.490000px;}
.x1e{left:420.870000px;}
.x59{left:425.010000px;}
.x30{left:455.790000px;}
.xc{left:468.750000px;}
.x1f{left:516.090000px;}
.x5a{left:522.255000px;}
.x5{left:549.794973px;}
.x21{left:569.955000px;}
.x3f{left:574.995000px;}
.x53{left:598.395000px;}
.x46{left:614.055000px;}
.x22{left:620.175000px;}
.x7f{left:660.135000px;}
.x23{left:674.895000px;}
.x5f{left:681.915000px;}
.x4{left:701.714973px;}
.x24{left:725.115000px;}
.x57{left:733.395000px;}
.x6f{left:744.195000px;}
.x6d{left:745.635000px;}
.x64{left:748.695000px;}
.x70{left:751.575000px;}
.x6e{left:754.635000px;}
.x71{left:759.135000px;}
.xd{left:760.935000px;}
.x5b{left:765.435000px;}
.x6c{left:766.695000px;}
.x6b{left:769.575000px;}
.x69{left:771.195000px;}
.x6a{left:772.635000px;}
.x68{left:774.075000px;}
.x55{left:775.875000px;}
.x25{left:778.035000px;}
.x7b{left:779.115000px;}
.x65{left:783.075000px;}
.x67{left:792.075000px;}
.x66{left:798.195000px;}
.x61{left:818.925000px;}
.x26{left:824.115000px;}
.x51{left:830.445000px;}
.x54{left:831.705000px;}
.x4d{left:889.485000px;}
.x3{left:893.264973px;}
.x74{left:904.605000px;}
.x8{left:919.904973px;}
.x77{left:928.005000px;}
.x28{left:929.445000px;}
.x4b{left:932.685000px;}
.x3b{left:935.204973px;}
.x3a{left:942.944973px;}
.x9{left:973.904973px;}
.x62{left:977.325000px;}
.x43{left:978.585000px;}
.x29{left:983.265000px;}
.x39{left:986.505000px;}
.x3c{left:989.565000px;}
.x47{left:997.305000px;}
.x5c{left:1006.125000px;}
.x7e{left:1032.225000px;}
.xe{left:1033.485000px;}
.x60{left:1082.445000px;}
.x7c{left:1085.685000px;}
.x2a{left:1088.205000px;}
.x56{left:1096.125000px;}
.x3e{left:1106.565000px;}
.x58{left:1117.365000px;}
.x4e{left:1130.145000px;}
.x2b{left:1138.425000px;}
.x5d{left:1150.845000px;}
.x78{left:1172.850000px;}
.x2c{left:1191.525000px;}
.x49{left:1208.490000px;}
.x2{left:1209.884973px;}
.x44{left:1215.690000px;}
.x79{left:1222.710000px;}
.x7a{left:1230.450000px;}
.x48{left:1233.150000px;}
.x2d{left:1237.470000px;}
.x52{left:1238.550000px;}
.x4c{left:1240.170000px;}
.x40{left:1287.330000px;}
.x73{left:1297.950000px;}
.xf{left:1315.590000px;}
.x10{left:1327.470000px;}
.x12{left:1379.850000px;}
.x42{left:1386.690000px;}
.x13{left:1428.450000px;}
.x5e{left:1454.730000px;}
.x14{left:1481.550000px;}
.x4a{left:1518.300000px;}
.x15{left:1530.150000px;}
.x16{left:1581.840000px;}
.x17{left:1637.460000px;}
.x1{left:1732.679973px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.880000pt;}
.v1{vertical-align:13.440000pt;}
.v4{vertical-align:21.120000pt;}
.v5{vertical-align:24.320000pt;}
.ls23{letter-spacing:-0.682667pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls7e{letter-spacing:-0.597333pt;}
.ls25{letter-spacing:-0.586667pt;}
.lse{letter-spacing:-0.576000pt;}
.ls24{letter-spacing:-0.554667pt;}
.ls1d{letter-spacing:-0.544000pt;}
.ls7f{letter-spacing:-0.509333pt;}
.ls10{letter-spacing:-0.448000pt;}
.ls3{letter-spacing:-0.390933pt;}
.ls2c{letter-spacing:-0.363733pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls4d{letter-spacing:-0.291200pt;}
.ls34{letter-spacing:-0.286933pt;}
.ls42{letter-spacing:-0.282133pt;}
.ls30{letter-spacing:-0.271467pt;}
.ls1c{letter-spacing:-0.268800pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls33{letter-spacing:-0.244267pt;}
.ls75{letter-spacing:-0.235733pt;}
.ls13{letter-spacing:-0.233067pt;}
.ls39{letter-spacing:-0.230933pt;}
.ls2b{letter-spacing:-0.225067pt;}
.ls65{letter-spacing:-0.218125pt;}
.ls3c{letter-spacing:-0.211200pt;}
.ls64{letter-spacing:-0.206933pt;}
.ls35{letter-spacing:-0.188800pt;}
.ls67{letter-spacing:-0.164156pt;}
.ls18{letter-spacing:-0.160000pt;}
.ls48{letter-spacing:-0.155733pt;}
.ls3a{letter-spacing:-0.150933pt;}
.ls26{letter-spacing:-0.138133pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls47{letter-spacing:-0.122133pt;}
.ls7a{letter-spacing:-0.117867pt;}
.ls84{letter-spacing:-0.113067pt;}
.ls1a{letter-spacing:-0.112000pt;}
.ls12{letter-spacing:-0.094933pt;}
.ls77{letter-spacing:-0.089067pt;}
.ls59{letter-spacing:-0.080000pt;}
.ls66{letter-spacing:-0.070933pt;}
.ls31{letter-spacing:-0.066667pt;}
.ls19{letter-spacing:-0.064000pt;}
.ls72{letter-spacing:-0.051200pt;}
.ls22{letter-spacing:-0.043520pt;}
.ls2f{letter-spacing:-0.028800pt;}
.ls5a{letter-spacing:-0.016000pt;}
.ls38{letter-spacing:-0.008960pt;}
.ls2e{letter-spacing:-0.004480pt;}
.ls11{letter-spacing:-0.000003pt;}
.ls2{letter-spacing:0.000000pt;}
.ls45{letter-spacing:0.004480pt;}
.ls55{letter-spacing:0.013440pt;}
.ls69{letter-spacing:0.042240pt;}
.ls7c{letter-spacing:0.043520pt;}
.ls2a{letter-spacing:0.046720pt;}
.ls5f{letter-spacing:0.049247pt;}
.ls14{letter-spacing:0.051200pt;}
.ls5{letter-spacing:0.064000pt;}
.ls44{letter-spacing:0.080000pt;}
.ls40{letter-spacing:0.084267pt;}
.ls1e{letter-spacing:0.086933pt;}
.ls83{letter-spacing:0.087040pt;}
.ls6c{letter-spacing:0.088824pt;}
.ls74{letter-spacing:0.094933pt;}
.ls71{letter-spacing:0.113067pt;}
.ls53{letter-spacing:0.117867pt;}
.ls37{letter-spacing:0.122133pt;}
.ls70{letter-spacing:0.124241pt;}
.ls6{letter-spacing:0.128000pt;}
.ls57{letter-spacing:0.130560pt;}
.ls60{letter-spacing:0.131200pt;}
.ls16{letter-spacing:0.144000pt;}
.ls41{letter-spacing:0.150933pt;}
.ls58{letter-spacing:0.155520pt;}
.ls49{letter-spacing:0.155733pt;}
.ls82{letter-spacing:0.159360pt;}
.ls27{letter-spacing:0.160000pt;}
.ls5e{letter-spacing:0.164156pt;}
.ls62{letter-spacing:0.168653pt;}
.ls68{letter-spacing:0.169067pt;}
.ls54{letter-spacing:0.173333pt;}
.ls6a{letter-spacing:0.188800pt;}
.ls9{letter-spacing:0.192000pt;}
.ls29{letter-spacing:0.193067pt;}
.ls63{letter-spacing:0.197120pt;}
.ls3e{letter-spacing:0.211200pt;}
.ls2d{letter-spacing:0.230933pt;}
.ls61{letter-spacing:0.231040pt;}
.ls28{letter-spacing:0.232960pt;}
.ls80{letter-spacing:0.233067pt;}
.ls15{letter-spacing:0.240000pt;}
.ls6b{letter-spacing:0.243423pt;}
.ls36{letter-spacing:0.249067pt;}
.lsc{letter-spacing:0.256000pt;}
.ls76{letter-spacing:0.266667pt;}
.ls78{letter-spacing:0.268800pt;}
.ls1b{letter-spacing:0.272000pt;}
.ls5c{letter-spacing:0.272533pt;}
.ls21{letter-spacing:0.276267pt;}
.ls7d{letter-spacing:0.282133pt;}
.ls6f{letter-spacing:0.315733pt;}
.ls0{letter-spacing:0.320000pt;}
.ls85{letter-spacing:0.324267pt;}
.ls87{letter-spacing:0.348800pt;}
.ls32{letter-spacing:0.353067pt;}
.ls46{letter-spacing:0.357867pt;}
.ls5d{letter-spacing:0.394240pt;}
.ls7b{letter-spacing:0.395520pt;}
.ls3b{letter-spacing:0.395733pt;}
.ls4f{letter-spacing:0.409067pt;}
.ls56{letter-spacing:0.416000pt;}
.ls3f{letter-spacing:0.428800pt;}
.ls6d{letter-spacing:0.431360pt;}
.ls4c{letter-spacing:0.451200pt;}
.ls6e{letter-spacing:0.484267pt;}
.ls81{letter-spacing:0.488960pt;}
.ls3d{letter-spacing:0.489067pt;}
.ls73{letter-spacing:0.510720pt;}
.ls50{letter-spacing:0.522133pt;}
.ls79{letter-spacing:0.522240pt;}
.ls52{letter-spacing:0.613333pt;}
.ls4b{letter-spacing:0.634667pt;}
.lsb{letter-spacing:0.640000pt;}
.ls43{letter-spacing:0.645333pt;}
.ls5b{letter-spacing:0.688000pt;}
.ls51{letter-spacing:0.752000pt;}
.ls4a{letter-spacing:0.800000pt;}
.ls86{letter-spacing:0.832000pt;}
.ls7{letter-spacing:1.280000pt;}
.ls8{letter-spacing:1.920000pt;}
.ls1f{letter-spacing:3.200000pt;}
.ls20{letter-spacing:10.880000pt;}
.ls4{letter-spacing:177.280000pt;}
.ls1{letter-spacing:726.651307pt;}
.ls4e{letter-spacing:753.386667pt;}
.ws1{word-spacing:-106.880000pt;}
.ws6c{word-spacing:-53.120000pt;}
.ws26{word-spacing:-42.752000pt;}
.wsb{word-spacing:-42.688000pt;}
.ws10{word-spacing:-40.919040pt;}
.ws27{word-spacing:-39.272960pt;}
.ws78{word-spacing:-35.953173pt;}
.ws77{word-spacing:-35.642240pt;}
.ws73{word-spacing:-35.477760pt;}
.ws47{word-spacing:-35.431040pt;}
.ws76{word-spacing:-35.313173pt;}
.ws0{word-spacing:-35.200107pt;}
.ws5a{word-spacing:-26.560000pt;}
.ws15{word-spacing:-26.480000pt;}
.ws17{word-spacing:-19.607040pt;}
.ws12{word-spacing:-19.373973pt;}
.ws2f{word-spacing:-19.335573pt;}
.ws79{word-spacing:-18.098027pt;}
.ws60{word-spacing:-17.961493pt;}
.ws2a{word-spacing:-17.919893pt;}
.ws81{word-spacing:-17.783893pt;}
.ws5e{word-spacing:-17.688960pt;}
.ws5c{word-spacing:-17.458027pt;}
.ws5{word-spacing:-16.640000pt;}
.wsf{word-spacing:-16.320000pt;}
.ws7{word-spacing:-16.256000pt;}
.ws3{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.064000pt;}
.wsc{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.999997pt;}
.ws56{word-spacing:-15.984000pt;}
.ws5b{word-spacing:-15.968000pt;}
.ws16{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws14{word-spacing:-15.680000pt;}
.wsd{word-spacing:-15.552000pt;}
.ws9{word-spacing:-15.424000pt;}
.wsa{word-spacing:-15.360000pt;}
.ws1e{word-spacing:-14.996267pt;}
.ws7f{word-spacing:-14.988800pt;}
.ws7e{word-spacing:-14.953067pt;}
.ws72{word-spacing:-14.814933pt;}
.ws20{word-spacing:-14.806933pt;}
.ws13{word-spacing:-14.771200pt;}
.ws7b{word-spacing:-14.763520pt;}
.ws1f{word-spacing:-14.676480pt;}
.ws11{word-spacing:-14.625067pt;}
.ws25{word-spacing:-14.581867pt;}
.ws28{word-spacing:-14.494933pt;}
.ws21{word-spacing:-14.486933pt;}
.ws1c{word-spacing:-14.451200pt;}
.ws29{word-spacing:-14.356267pt;}
.ws6b{word-spacing:-14.241632pt;}
.ws7d{word-spacing:-14.210667pt;}
.ws1d{word-spacing:-14.176000pt;}
.ws23{word-spacing:-14.165333pt;}
.ws63{word-spacing:-14.162365pt;}
.ws24{word-spacing:-14.133333pt;}
.ws7c{word-spacing:-14.122667pt;}
.ws6f{word-spacing:-14.122450pt;}
.ws85{word-spacing:-14.112000pt;}
.ws64{word-spacing:-14.047456pt;}
.ws22{word-spacing:-14.037333pt;}
.ws54{word-spacing:-14.032000pt;}
.ws80{word-spacing:-13.998209pt;}
.ws5d{word-spacing:-13.968000pt;}
.ws45{word-spacing:-13.925333pt;}
.ws4e{word-spacing:-13.914667pt;}
.ws55{word-spacing:-13.893333pt;}
.ws67{word-spacing:-13.834053pt;}
.ws53{word-spacing:-13.802133pt;}
.ws62{word-spacing:-13.780084pt;}
.ws3e{word-spacing:-13.769067pt;}
.ws6d{word-spacing:-13.764267pt;}
.ws4f{word-spacing:-13.731200pt;}
.ws4b{word-spacing:-13.708800pt;}
.ws51{word-spacing:-13.689067pt;}
.ws3b{word-spacing:-13.675733pt;}
.ws49{word-spacing:-13.637867pt;}
.ws32{word-spacing:-13.633067pt;}
.ws87{word-spacing:-13.628800pt;}
.ws84{word-spacing:-13.604267pt;}
.ws3d{word-spacing:-13.600000pt;}
.ws6e{word-spacing:-13.595733pt;}
.ws7a{word-spacing:-13.562133pt;}
.ws36{word-spacing:-13.529067pt;}
.ws52{word-spacing:-13.510933pt;}
.ws3f{word-spacing:-13.491200pt;}
.ws31{word-spacing:-13.473067pt;}
.ws6a{word-spacing:-13.468800pt;}
.ws58{word-spacing:-13.453333pt;}
.ws68{word-spacing:-13.449067pt;}
.ws82{word-spacing:-13.439360pt;}
.ws4d{word-spacing:-13.435733pt;}
.ws42{word-spacing:-13.430933pt;}
.ws65{word-spacing:-13.411200pt;}
.ws37{word-spacing:-13.402133pt;}
.ws57{word-spacing:-13.397867pt;}
.ws70{word-spacing:-13.393067pt;}
.ws41{word-spacing:-13.364267pt;}
.ws46{word-spacing:-13.360000pt;}
.ws40{word-spacing:-13.326720pt;}
.ws69{word-spacing:-13.322240pt;}
.ws59{word-spacing:-13.293440pt;}
.ws48{word-spacing:-13.284480pt;}
.ws2b{word-spacing:-13.280000pt;}
.ws2d{word-spacing:-13.275520pt;}
.ws38{word-spacing:-13.271040pt;}
.ws2e{word-spacing:-13.251200pt;}
.ws71{word-spacing:-13.228800pt;}
.ws30{word-spacing:-13.213333pt;}
.ws66{word-spacing:-13.209067pt;}
.ws61{word-spacing:-13.200000pt;}
.ws75{word-spacing:-13.190933pt;}
.ws83{word-spacing:-13.166933pt;}
.ws86{word-spacing:-13.162133pt;}
.ws4a{word-spacing:-13.157867pt;}
.ws3a{word-spacing:-13.129067pt;}
.ws4c{word-spacing:-13.124267pt;}
.ws35{word-spacing:-13.091200pt;}
.ws5f{word-spacing:-13.073067pt;}
.ws3c{word-spacing:-13.068800pt;}
.ws39{word-spacing:-13.049067pt;}
.ws74{word-spacing:-13.044267pt;}
.ws33{word-spacing:-13.035733pt;}
.ws44{word-spacing:-13.011200pt;}
.ws43{word-spacing:-12.997867pt;}
.ws34{word-spacing:-12.993067pt;}
.ws50{word-spacing:-12.988800pt;}
.ws1a{word-spacing:-12.272000pt;}
.ws18{word-spacing:-12.192000pt;}
.ws1b{word-spacing:-12.144000pt;}
.ws19{word-spacing:-11.888000pt;}
.ws2c{word-spacing:-8.640000pt;}
.ws2{word-spacing:0.000000pt;}
._8{margin-left:-177.013333pt;}
._1b{margin-left:-133.120000pt;}
._7{margin-left:-115.146667pt;}
._18{margin-left:-14.622720pt;}
._14{margin-left:-13.032960pt;}
._12{margin-left:-10.257920pt;}
._13{margin-left:-8.693333pt;}
._17{margin-left:-6.825387pt;}
._c{margin-left:-4.501333pt;}
._b{margin-left:-3.072000pt;}
._10{margin-left:-1.940480pt;}
._1{margin-left:-0.949760pt;}
._0{width:1.256107pt;}
._f{width:2.690560pt;}
._15{width:3.778987pt;}
._d{width:4.672000pt;}
._e{width:5.610667pt;}
._9{width:6.912000pt;}
._a{width:7.914667pt;}
._11{width:9.213440pt;}
._16{width:11.635200pt;}
._1e{width:44.160000pt;}
._5{width:58.880000pt;}
._3{width:62.133333pt;}
._23{width:140.943573pt;}
._1f{width:168.983893pt;}
._4{width:177.280000pt;}
._21{width:188.095360pt;}
._20{width:201.337600pt;}
._22{width:293.019093pt;}
._1a{width:958.826667pt;}
._1c{width:1003.040000pt;}
._6{width:1017.706667pt;}
._1d{width:1136.106667pt;}
._2{width:1194.986667pt;}
._19{width:5503.520000pt;}
.fsb{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fsd{font-size:37.120000pt;}
.fs9{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fsc{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:80.000000pt;}
.fs1{font-size:106.880000pt;}
.fs6{font-size:122.880000pt;}
.fs5{font-size:149.120000pt;}
.fs3{font-size:213.120000pt;}
.y0{bottom:0.000000pt;}
.y238{bottom:3.520000pt;}
.y263{bottom:3.560000pt;}
.y294{bottom:4.160000pt;}
.y2a0{bottom:4.320000pt;}
.y314{bottom:4.480000pt;}
.yf6{bottom:4.640000pt;}
.y251{bottom:4.800000pt;}
.y225{bottom:4.960000pt;}
.y335{bottom:5.000000pt;}
.y420{bottom:5.114667pt;}
.yf8{bottom:5.120000pt;}
.y41b{bottom:5.160000pt;}
.y253{bottom:5.280000pt;}
.y272{bottom:5.440000pt;}
.y463{bottom:5.920000pt;}
.y27d{bottom:6.074667pt;}
.y278{bottom:6.080000pt;}
.y2bd{bottom:6.106667pt;}
.y1ae{bottom:6.240000pt;}
.y201{bottom:7.034667pt;}
.y324{bottom:7.040000pt;}
.y18c{bottom:7.200000pt;}
.y472{bottom:7.680000pt;}
.y319{bottom:7.840000pt;}
.y25f{bottom:8.000000pt;}
.y55f{bottom:8.154667pt;}
.y178{bottom:8.160000pt;}
.y4ca{bottom:8.640000pt;}
.y4cc{bottom:9.760000pt;}
.y4e7{bottom:9.920000pt;}
.y478{bottom:10.080000pt;}
.y1b4{bottom:10.240000pt;}
.y1bb{bottom:11.200000pt;}
.y15f{bottom:11.360000pt;}
.y15d{bottom:11.520000pt;}
.y188{bottom:11.546667pt;}
.y16d{bottom:11.560000pt;}
.y3bd{bottom:11.840000pt;}
.y3ab{bottom:12.000000pt;}
.y3d7{bottom:12.040000pt;}
.y92{bottom:12.160000pt;}
.ya1{bottom:12.320000pt;}
.y2dc{bottom:13.114667pt;}
.y1ac{bottom:13.120000pt;}
.y2e6{bottom:13.146667pt;}
.y2d8{bottom:13.160000pt;}
.y308{bottom:13.274667pt;}
.y2fc{bottom:13.280000pt;}
.y88{bottom:13.600000pt;}
.y2cc{bottom:13.760000pt;}
.y3b4{bottom:13.920000pt;}
.y202{bottom:14.074667pt;}
.y18d{bottom:14.080000pt;}
.y220{bottom:14.240000pt;}
.y2f5{bottom:14.600000pt;}
.y4ce{bottom:14.874667pt;}
.y2f2{bottom:14.880000pt;}
.y2f8{bottom:15.040000pt;}
.y15b{bottom:15.200000pt;}
.y1f5{bottom:15.360000pt;}
.y4a9{bottom:15.386667pt;}
.y1c3{bottom:15.520000pt;}
.y1ca{bottom:15.680000pt;}
.y40b{bottom:15.720000pt;}
.y3ed{bottom:15.834667pt;}
.yfd{bottom:15.840000pt;}
.y3e1{bottom:15.866667pt;}
.y3f3{bottom:15.880000pt;}
.y228{bottom:16.160000pt;}
.y3f9{bottom:16.186667pt;}
.y3cf{bottom:16.200000pt;}
.y7f{bottom:16.320000pt;}
.y400{bottom:16.360000pt;}
.y46c{bottom:16.954667pt;}
.y22a{bottom:16.960000pt;}
.y3e0{bottom:16.986667pt;}
.y3f2{bottom:17.000000pt;}
.y3ec{bottom:17.114667pt;}
.y19c{bottom:17.120000pt;}
.y486{bottom:17.160000pt;}
.y343{bottom:17.280000pt;}
.y346{bottom:17.440000pt;}
.y4c9{bottom:17.920000pt;}
.y4cb{bottom:18.080000pt;}
.y146{bottom:18.240000pt;}
.y237{bottom:18.394667pt;}
.y10c{bottom:18.400000pt;}
.y446{bottom:18.426667pt;}
.y44c{bottom:18.440000pt;}
.y241{bottom:18.560000pt;}
.y243{bottom:18.586667pt;}
.y262{bottom:18.600000pt;}
.y1fa{bottom:18.880000pt;}
.y391{bottom:19.354667pt;}
.y15e{bottom:19.360000pt;}
.y375{bottom:19.386667pt;}
.y1a9{bottom:19.514667pt;}
.y180{bottom:19.520000pt;}
.y33b{bottom:19.546667pt;}
.y169{bottom:19.560000pt;}
.y3d8{bottom:19.880000pt;}
.y223{bottom:20.000000pt;}
.y411{bottom:20.480000pt;}
.y310{bottom:20.640000pt;}
.y334{bottom:20.680000pt;}
.y173{bottom:20.800000pt;}
.y163{bottom:20.960000pt;}
.y27c{bottom:21.114667pt;}
.y222{bottom:21.120000pt;}
.y284{bottom:21.146667pt;}
.y277{bottom:21.160000pt;}
.y594{bottom:21.274667pt;}
.y1ad{bottom:21.280000pt;}
.y258{bottom:21.306667pt;}
.y4b3{bottom:21.320000pt;}
.y3b1{bottom:21.440000pt;}
.y1e1{bottom:21.760000pt;}
.y390{bottom:21.914667pt;}
.y380{bottom:21.920000pt;}
.y384{bottom:21.946667pt;}
.y200{bottom:22.074667pt;}
.y164{bottom:22.080000pt;}
.y38b{bottom:22.120000pt;}
.y158{bottom:22.240000pt;}
.y412{bottom:22.560000pt;}
.y318{bottom:22.720000pt;}
.y3a3{bottom:23.034667pt;}
.y25e{bottom:23.040000pt;}
.y39b{bottom:23.066667pt;}
.y38f{bottom:23.194667pt;}
.y177{bottom:23.200000pt;}
.y383{bottom:23.226667pt;}
.y38a{bottom:23.240000pt;}
.y2d4{bottom:23.360000pt;}
.y3c6{bottom:23.880000pt;}
.y5a2{bottom:24.160000pt;}
.y483{bottom:24.800000pt;}
.y3d3{bottom:24.960000pt;}
.y1b3{bottom:25.280000pt;}
.y18a{bottom:25.306667pt;}
.y550{bottom:25.600000pt;}
.y1ba{bottom:26.240000pt;}
.y1a7{bottom:26.394667pt;}
.y17e{bottom:26.400000pt;}
.y171{bottom:26.560000pt;}
.y187{bottom:26.586667pt;}
.y16c{bottom:26.600000pt;}
.y9d{bottom:26.720000pt;}
.y20b{bottom:26.880000pt;}
.y508{bottom:27.040000pt;}
.y1c0{bottom:27.200000pt;}
.y518{bottom:28.160000pt;}
.y58d{bottom:28.186667pt;}
.y3bb{bottom:28.480000pt;}
.y4db{bottom:28.800000pt;}
.y1fe{bottom:29.114667pt;}
.y161{bottom:29.120000pt;}
.y59f{bottom:29.280000pt;}
.y3af{bottom:29.920000pt;}
.y57a{bottom:30.080000pt;}
.y15a{bottom:30.240000pt;}
.y3cc{bottom:30.880000pt;}
.y3b9{bottom:31.200000pt;}
.y2cb{bottom:31.360000pt;}
.y1f4{bottom:31.520000pt;}
.y1fc{bottom:31.560000pt;}
.y16f{bottom:32.040000pt;}
.y19b{bottom:32.160000pt;}
.y87{bottom:32.960000pt;}
.y145{bottom:33.280000pt;}
.yc9{bottom:33.312000pt;}
.y236{bottom:33.434667pt;}
.y481{bottom:33.440000pt;}
.y5b1{bottom:33.480000pt;}
.y426{bottom:33.600000pt;}
.y1f9{bottom:33.960000pt;}
.y4a2{bottom:34.080000pt;}
.y128{bottom:34.234667pt;}
.y1a8{bottom:34.394667pt;}
.y17f{bottom:34.400000pt;}
.y374{bottom:34.426667pt;}
.y326{bottom:34.440000pt;}
.y332{bottom:34.554667pt;}
.y10b{bottom:34.560000pt;}
.y32b{bottom:34.586667pt;}
.y168{bottom:34.600000pt;}
.y425{bottom:34.720000pt;}
.y3a6{bottom:35.226667pt;}
.y95{bottom:35.360000pt;}
.yb0{bottom:35.520000pt;}
.y7e{bottom:35.680000pt;}
.y51d{bottom:36.160000pt;}
.y2c0{bottom:36.640000pt;}
.y28c{bottom:36.800000pt;}
.y276{bottom:36.840000pt;}
.y323{bottom:36.960000pt;}
.y1ff{bottom:37.114667pt;}
.y162{bottom:37.120000pt;}
.y256{bottom:37.280000pt;}
.y25d{bottom:37.920000pt;}
.y440{bottom:38.080000pt;}
.y563{bottom:38.106667pt;}
.y55e{bottom:38.234667pt;}
.y176{bottom:38.240000pt;}
.y4f3{bottom:38.280000pt;}
.y1f0{bottom:38.400000pt;}
.y2d3{bottom:39.040000pt;}
.y5a6{bottom:39.080000pt;}
.y118{bottom:39.680000pt;}
.y4e6{bottom:39.840000pt;}
.y1b2{bottom:40.160000pt;}
.y54f{bottom:40.480000pt;}
.y134{bottom:41.114667pt;}
.y1b9{bottom:41.280000pt;}
.y17a{bottom:41.440000pt;}
.y189{bottom:41.466667pt;}
.y16b{bottom:41.480000pt;}
.y17b{bottom:41.600000pt;}
.y186{bottom:41.626667pt;}
.y510{bottom:42.074667pt;}
.y507{bottom:42.080000pt;}
.y527{bottom:42.120000pt;}
.y14c{bottom:42.240000pt;}
.y1c2{bottom:42.400000pt;}
.y20a{bottom:43.040000pt;}
.y58c{bottom:43.066667pt;}
.y4da{bottom:43.840000pt;}
.y500{bottom:44.160000pt;}
.y55a{bottom:44.800000pt;}
.y157{bottom:45.120000pt;}
.y159{bottom:45.280000pt;}
.y19a{bottom:47.200000pt;}
.y1f3{bottom:47.680000pt;}
.y1fb{bottom:47.720000pt;}
.y144{bottom:48.160000pt;}
.y2ca{bottom:48.320000pt;}
.y16e{bottom:48.360000pt;}
.y56c{bottom:48.480000pt;}
.y5b0{bottom:48.520000pt;}
.y1e0{bottom:48.640000pt;}
.y1f8{bottom:49.000000pt;}
.y127{bottom:49.114667pt;}
.y33d{bottom:49.440000pt;}
.y32a{bottom:49.466667pt;}
.y167{bottom:49.480000pt;}
.y337{bottom:49.600000pt;}
.y33a{bottom:49.626667pt;}
.yf0{bottom:50.432000pt;}
.y90{bottom:50.880000pt;}
.y51c{bottom:52.320000pt;}
.y86{bottom:52.480000pt;}
.y322{bottom:52.640000pt;}
.y25c{bottom:52.960000pt;}
.y43f{bottom:53.000000pt;}
.y4f5{bottom:53.114667pt;}
.y4ef{bottom:53.120000pt;}
.y562{bottom:53.146667pt;}
.y4f2{bottom:53.160000pt;}
.y55d{bottom:53.274667pt;}
.y175{bottom:53.280000pt;}
.y1a5{bottom:54.080000pt;}
.y5a5{bottom:54.120000pt;}
.y117{bottom:54.720000pt;}
.y4e5{bottom:54.906667pt;}
.y7d{bottom:55.040000pt;}
.y1b1{bottom:55.200000pt;}
.y54e{bottom:55.520000pt;}
.y133{bottom:56.154667pt;}
.y1b8{bottom:56.160000pt;}
.y5ba{bottom:56.320000pt;}
.y16a{bottom:56.520000pt;}
.y50f{bottom:57.114667pt;}
.y506{bottom:57.120000pt;}
.y526{bottom:57.160000pt;}
.y14b{bottom:57.280000pt;}
.y5a1{bottom:57.320000pt;}
.y520{bottom:58.080000pt;}
.y58b{bottom:58.106667pt;}
.y517{bottom:58.120000pt;}
.y4d9{bottom:58.880000pt;}
.y53f{bottom:59.040000pt;}
.y4ff{bottom:59.066667pt;}
.y59e{bottom:59.200000pt;}
.y579{bottom:60.160000pt;}
.y156{bottom:60.186667pt;}
.y10a{bottom:61.440000pt;}
.y199{bottom:62.240000pt;}
.ye8{bottom:63.200000pt;}
.y56b{bottom:63.520000pt;}
.y5af{bottom:63.560000pt;}
.y1f7{bottom:63.880000pt;}
.y126{bottom:64.154667pt;}
.yc8{bottom:64.480000pt;}
.y185{bottom:64.506667pt;}
.y166{bottom:64.520000pt;}
.y208{bottom:65.000000pt;}
.y1ef{bottom:65.280000pt;}
.y209{bottom:66.120000pt;}
.y1df{bottom:68.480000pt;}
.y536{bottom:68.520000pt;}
.y25b{bottom:68.640000pt;}
.y43e{bottom:68.680000pt;}
.y1a4{bottom:69.120000pt;}
.y5a4{bottom:69.160000pt;}
.y116{bottom:69.600000pt;}
.y4e4{bottom:69.946667pt;}
.y8f{bottom:70.240000pt;}
.y54d{bottom:70.560000pt;}
.y132{bottom:71.194667pt;}
.y143{bottom:71.200000pt;}
.y85{bottom:71.840000pt;}
.y50e{bottom:72.154667pt;}
.y14a{bottom:72.160000pt;}
.y525{bottom:72.200000pt;}
.y364{bottom:72.832000pt;}
.y51f{bottom:73.120000pt;}
.y58a{bottom:73.146667pt;}
.y516{bottom:73.160000pt;}
.y4d8{bottom:73.920000pt;}
.y53e{bottom:74.080000pt;}
.y4fe{bottom:74.106667pt;}
.y59d{bottom:74.240000pt;}
.y7c{bottom:74.560000pt;}
.y578{bottom:75.040000pt;}
.y155{bottom:75.226667pt;}
.y30e{bottom:75.232000pt;}
.y4ee{bottom:76.186667pt;}
.y49c{bottom:76.992000pt;}
.y198{bottom:77.120000pt;}
.y48a{bottom:77.472000pt;}
.y109{bottom:77.600000pt;}
.y559{bottom:78.240000pt;}
.y5ae{bottom:78.440000pt;}
.y56a{bottom:78.560000pt;}
.y174{bottom:79.072000pt;}
.y125{bottom:79.194667pt;}
.y46f{bottom:79.232000pt;}
.y479{bottom:79.552000pt;}
.y4d5{bottom:80.800000pt;}
.y3ee{bottom:80.832000pt;}
.y293{bottom:81.920000pt;}
.y29f{bottom:82.080000pt;}
.ye7{bottom:82.560000pt;}
.y595{bottom:82.752000pt;}
.y46d{bottom:83.552000pt;}
.y1a3{bottom:84.160000pt;}
.y27e{bottom:84.352000pt;}
.y2c5{bottom:84.512000pt;}
.y115{bottom:84.640000pt;}
.y535{bottom:84.680000pt;}
.y4e3{bottom:84.826667pt;}
.y392{bottom:84.992000pt;}
.y3a4{bottom:85.152000pt;}
.y1b0{bottom:85.320000pt;}
.y2f0{bottom:85.472000pt;}
.y54c{bottom:85.600000pt;}
.y4cf{bottom:85.632000pt;}
.y1ee{bottom:85.946667pt;}
.y131{bottom:86.234667pt;}
.y1b7{bottom:86.240000pt;}
.y4f4{bottom:86.912000pt;}
.y50d{bottom:87.034667pt;}
.y505{bottom:87.040000pt;}
.y45{bottom:87.072000pt;}
.y524{bottom:87.080000pt;}
.y149{bottom:87.200000pt;}
.y56f{bottom:87.240000pt;}
.y184{bottom:87.546667pt;}
.y2dd{bottom:87.712000pt;}
.y52b{bottom:88.160000pt;}
.y589{bottom:88.186667pt;}
.y515{bottom:88.200000pt;}
.y4d7{bottom:88.800000pt;}
.y1de{bottom:88.986667pt;}
.y207{bottom:89.000000pt;}
.y53d{bottom:89.120000pt;}
.y4fd{bottom:89.146667pt;}
.y585{bottom:89.160000pt;}
.y59c{bottom:89.280000pt;}
.y8e{bottom:89.760000pt;}
.y73{bottom:89.952000pt;}
.y577{bottom:90.080000pt;}
.y154{bottom:90.266667pt;}
.y4ed{bottom:91.226667pt;}
.y84{bottom:91.360000pt;}
.y197{bottom:92.160000pt;}
.y108{bottom:92.640000pt;}
.y1b5{bottom:93.120000pt;}
.y558{bottom:93.280000pt;}
.y569{bottom:93.440000pt;}
.y5ad{bottom:93.480000pt;}
.y592{bottom:93.600000pt;}
.y7b{bottom:93.920000pt;}
.y450{bottom:93.952000pt;}
.y21a{bottom:94.112000pt;}
.y124{bottom:94.234667pt;}
.y142{bottom:94.240000pt;}
.y309{bottom:94.432000pt;}
.y2b7{bottom:95.232000pt;}
.y4d4{bottom:95.880000pt;}
.y320{bottom:97.952000pt;}
.y50a{bottom:99.232000pt;}
.y1a2{bottom:99.240000pt;}
.yef{bottom:99.386667pt;}
.y43c{bottom:99.552000pt;}
.y114{bottom:99.680000pt;}
.y4e2{bottom:99.866667pt;}
.y54b{bottom:100.480000pt;}
.y30f{bottom:100.512000pt;}
.y421{bottom:100.832000pt;}
.y51b{bottom:100.960000pt;}
.y534{bottom:101.000000pt;}
.y130{bottom:101.114667pt;}
.y1b6{bottom:101.280000pt;}
.ye6{bottom:101.946667pt;}
.y50c{bottom:102.074667pt;}
.y504{bottom:102.080000pt;}
.y523{bottom:102.120000pt;}
.y148{bottom:102.240000pt;}
.y1bf{bottom:102.266667pt;}
.y56e{bottom:102.280000pt;}
.y183{bottom:102.586667pt;}
.y52a{bottom:103.040000pt;}
.y588{bottom:103.066667pt;}
.y514{bottom:103.080000pt;}
.y28e{bottom:103.232000pt;}
.y4d6{bottom:103.880000pt;}
.y206{bottom:104.040000pt;}
.y53c{bottom:104.160000pt;}
.y4fc{bottom:104.186667pt;}
.y584{bottom:104.200000pt;}
.y576{bottom:105.120000pt;}
.y1dd{bottom:105.146667pt;}
.y153{bottom:105.306667pt;}
.y267{bottom:106.112000pt;}
.y4ec{bottom:106.266667pt;}
.y404{bottom:106.272000pt;}
.y196{bottom:107.240000pt;}
.ydb{bottom:107.392000pt;}
.y5b2{bottom:107.400000pt;}
.y107{bottom:107.680000pt;}
.y1ed{bottom:107.866667pt;}
.y557{bottom:108.320000pt;}
.y568{bottom:108.480000pt;}
.y36e{bottom:108.512000pt;}
.y5ac{bottom:108.520000pt;}
.y591{bottom:108.680000pt;}
.y353{bottom:108.832000pt;}
.y123{bottom:109.114667pt;}
.y8d{bottom:109.120000pt;}
.y1bd{bottom:109.146667pt;}
.y45f{bottom:109.632000pt;}
.y83{bottom:110.720000pt;}
.y30d{bottom:111.232000pt;}
.y29a{bottom:111.872000pt;}
.y340{bottom:112.192000pt;}
.y7a{bottom:113.440000pt;}
.y2aa{bottom:113.640000pt;}
.y363{bottom:114.112000pt;}
.y1a1{bottom:114.280000pt;}
.y113{bottom:114.720000pt;}
.y4e1{bottom:114.906667pt;}
.y235{bottom:115.072000pt;}
.y5a8{bottom:115.232000pt;}
.y54a{bottom:115.520000pt;}
.y530{bottom:116.000000pt;}
.y580{bottom:116.040000pt;}
.y12f{bottom:116.154667pt;}
.y50b{bottom:117.114667pt;}
.y503{bottom:117.120000pt;}
.y532{bottom:117.146667pt;}
.y489{bottom:117.152000pt;}
.y141{bottom:117.160000pt;}
.y597{bottom:117.280000pt;}
.y1be{bottom:117.306667pt;}
.y147{bottom:117.320000pt;}
.y1a6{bottom:117.472000pt;}
.y529{bottom:118.080000pt;}
.y587{bottom:118.106667pt;}
.y513{bottom:118.120000pt;}
.yee{bottom:118.746667pt;}
.y53b{bottom:119.040000pt;}
.y4fb{bottom:119.066667pt;}
.y583{bottom:119.080000pt;}
.y59b{bottom:119.226667pt;}
.y4bd{bottom:119.232000pt;}
.y575{bottom:120.160000pt;}
.y152{bottom:120.186667pt;}
.y4eb{bottom:121.146667pt;}
.ye5{bottom:121.466667pt;}
.y477{bottom:121.952000pt;}
.y195{bottom:122.280000pt;}
.y56d{bottom:122.426667pt;}
.y106{bottom:122.720000pt;}
.y3eb{bottom:123.072000pt;}
.y556{bottom:123.200000pt;}
.y567{bottom:123.546667pt;}
.y590{bottom:123.560000pt;}
.y2db{bottom:123.712000pt;}
.y1ec{bottom:124.026667pt;}
.y122{bottom:124.154667pt;}
.y2ef{bottom:124.672000pt;}
.y1dc{bottom:124.986667pt;}
.y331{bottom:125.152000pt;}
.y2b6{bottom:126.400000pt;}
.y119{bottom:126.592000pt;}
.y593{bottom:126.752000pt;}
.y219{bottom:127.072000pt;}
.y46b{bottom:127.552000pt;}
.y72{bottom:127.872000pt;}
.y27b{bottom:128.352000pt;}
.y8c{bottom:128.480000pt;}
.y41f{bottom:128.832000pt;}
.y1a0{bottom:129.160000pt;}
.y112{bottom:129.600000pt;}
.y4cd{bottom:129.632000pt;}
.y55c{bottom:129.792000pt;}
.y4e0{bottom:129.946667pt;}
.y82{bottom:130.080000pt;}
.y307{bottom:130.432000pt;}
.y549{bottom:130.560000pt;}
.y38e{bottom:131.072000pt;}
.y12e{bottom:131.194667pt;}
.y3a2{bottom:131.232000pt;}
.y5a7{bottom:132.000000pt;}
.y52c{bottom:132.026667pt;}
.y519{bottom:132.040000pt;}
.y140{bottom:132.200000pt;}
.y79{bottom:132.800000pt;}
.y57e{bottom:133.120000pt;}
.y528{bottom:133.146667pt;}
.y512{bottom:133.160000pt;}
.y53a{bottom:134.080000pt;}
.y4fa{bottom:134.106667pt;}
.y582{bottom:134.120000pt;}
.y59a{bottom:134.266667pt;}
.y49b{bottom:134.586667pt;}
.y574{bottom:135.040000pt;}
.y151{bottom:135.226667pt;}
.y44f{bottom:135.386667pt;}
.ybb{bottom:135.706667pt;}
.yda{bottom:135.866667pt;}
.y4ea{bottom:136.186667pt;}
.y46e{bottom:136.506667pt;}
.y194{bottom:137.160000pt;}
.y105{bottom:137.600000pt;}
.yed{bottom:138.106667pt;}
.y555{bottom:138.240000pt;}
.y58f{bottom:138.600000pt;}
.y121{bottom:139.194667pt;}
.y2b5{bottom:139.226667pt;}
.ye4{bottom:140.826667pt;}
.y538{bottom:141.120000pt;}
.y37a{bottom:141.786667pt;}
.y521{bottom:143.226667pt;}
.y43b{bottom:143.546667pt;}
.y1eb{bottom:144.026667pt;}
.y5bb{bottom:144.186667pt;}
.y19f{bottom:144.200000pt;}
.y44{bottom:144.346667pt;}
.y28d{bottom:144.506667pt;}
.y111{bottom:144.666667pt;}
.y4df{bottom:144.826667pt;}
.y1db{bottom:145.306667pt;}
.y548{bottom:145.600000pt;}
.y403{bottom:146.106667pt;}
.y12d{bottom:146.274667pt;}
.y30c{bottom:147.226667pt;}
.y13f{bottom:147.240000pt;}
.y266{bottom:147.386667pt;}
.y488{bottom:147.866667pt;}
.y8b{bottom:148.000000pt;}
.y501{bottom:148.026667pt;}
.y586{bottom:148.040000pt;}
.y539{bottom:149.120000pt;}
.y4f9{bottom:149.146667pt;}
.y581{bottom:149.160000pt;}
.y599{bottom:149.306667pt;}
.y81{bottom:149.600000pt;}
.y36d{bottom:149.786667pt;}
.y573{bottom:150.080000pt;}
.y150{bottom:150.266667pt;}
.y40e{bottom:151.066667pt;}
.y352{bottom:151.226667pt;}
.y193{bottom:152.200000pt;}
.y78{bottom:152.320000pt;}
.y104{bottom:152.666667pt;}
.y554{bottom:153.280000pt;}
.y9f{bottom:153.306667pt;}
.y45e{bottom:153.626667pt;}
.y120{bottom:154.274667pt;}
.y172{bottom:155.066667pt;}
.y31f{bottom:155.226667pt;}
.y299{bottom:155.866667pt;}
.y71{bottom:156.346667pt;}
.y362{bottom:156.506667pt;}
.y41e{bottom:156.826667pt;}
.y14e{bottom:157.306667pt;}
.yec{bottom:157.626667pt;}
.y476{bottom:157.946667pt;}
.yba{bottom:158.906667pt;}
.y52e{bottom:159.226667pt;}
.y19e{bottom:159.240000pt;}
.y110{bottom:159.706667pt;}
.y4de{bottom:159.866667pt;}
.y218{bottom:160.026667pt;}
.y547{bottom:160.480000pt;}
.y12c{bottom:161.154667pt;}
.y1da{bottom:161.626667pt;}
.y13e{bottom:162.280000pt;}
.y5b9{bottom:162.746667pt;}
.y3ea{bottom:162.906667pt;}
.y4bc{bottom:163.226667pt;}
.y57b{bottom:164.000000pt;}
.yd9{bottom:164.346667pt;}
.y572{bottom:165.120000pt;}
.y14f{bottom:165.306667pt;}
.y3a9{bottom:165.480000pt;}
.y4e9{bottom:166.266667pt;}
.y306{bottom:166.426667pt;}
.y192{bottom:167.240000pt;}
.y8a{bottom:167.360000pt;}
.y46a{bottom:167.386667pt;}
.y103{bottom:167.706667pt;}
.y553{bottom:168.320000pt;}
.ye2{bottom:168.346667pt;}
.y2ee{bottom:168.666667pt;}
.y570{bottom:168.826667pt;}
.y80{bottom:168.960000pt;}
.y11f{bottom:169.154667pt;}
.y33f{bottom:169.466667pt;}
.y58e{bottom:170.746667pt;}
.yac{bottom:171.226667pt;}
.y234{bottom:171.386667pt;}
.y77{bottom:171.680000pt;}
.y27a{bottom:172.346667pt;}
.y18f{bottom:174.120000pt;}
.y19d{bottom:174.280000pt;}
.y10f{bottom:174.746667pt;}
.y4dd{bottom:174.906667pt;}
.y546{bottom:175.520000pt;}
.y3db{bottom:175.880000pt;}
.y12b{bottom:176.194667pt;}
.y44e{bottom:176.666667pt;}
.y38d{bottom:176.986667pt;}
.y3da{bottom:177.000000pt;}
.y3a1{bottom:177.146667pt;}
.y13d{bottom:177.320000pt;}
.y1d9{bottom:177.786667pt;}
.y3c5{bottom:177.960000pt;}
.y3cb{bottom:178.106667pt;}
.y3d5{bottom:178.266667pt;}
.y3c9{bottom:178.760000pt;}
.y3c4{bottom:179.080000pt;}
.y565{bottom:179.226667pt;}
.y3c2{bottom:179.386667pt;}
.y3aa{bottom:179.400000pt;}
.y3c8{bottom:179.880000pt;}
.y3d2{bottom:180.200000pt;}
.y1ea{bottom:180.506667pt;}
.y3a8{bottom:180.520000pt;}
.y3c0{bottom:180.680000pt;}
.y4e8{bottom:181.146667pt;}
.yc7{bottom:181.786667pt;}
.y3bf{bottom:181.800000pt;}
.y3d0{bottom:182.120000pt;}
.yb9{bottom:182.266667pt;}
.y191{bottom:182.280000pt;}
.y330{bottom:182.426667pt;}
.y102{bottom:182.746667pt;}
.y3ae{bottom:182.760000pt;}
.y552{bottom:183.200000pt;}
.y30b{bottom:183.226667pt;}
.y3ce{bottom:183.240000pt;}
.y5b7{bottom:183.866667pt;}
.y11e{bottom:184.194667pt;}
.y70{bottom:184.826667pt;}
.yeb{bottom:184.986667pt;}
.y28b{bottom:185.786667pt;}
.y402{bottom:185.946667pt;}
.y89{bottom:186.880000pt;}
.y51e{bottom:187.226667pt;}
.y3b2{bottom:187.386667pt;}
.y4ad{bottom:187.546667pt;}
.ye1{bottom:187.706667pt;}
.y1fd{bottom:187.866667pt;}
.y43{bottom:188.026667pt;}
.y2c4{bottom:188.506667pt;}
.y265{bottom:188.826667pt;}
.y2a8{bottom:189.146667pt;}
.y18e{bottom:189.160000pt;}
.y10e{bottom:189.626667pt;}
.y545{bottom:190.560000pt;}
.y40d{bottom:190.906667pt;}
.y9e{bottom:191.066667pt;}
.y12a{bottom:191.234667pt;}
.y217{bottom:191.386667pt;}
.y3b7{bottom:191.400000pt;}
.y49a{bottom:192.186667pt;}
.y13c{bottom:192.200000pt;}
.y351{bottom:192.506667pt;}
.y3b6{bottom:192.520000pt;}
.yd8{bottom:192.826667pt;}
.y36c{bottom:193.786667pt;}
.y1d8{bottom:193.946667pt;}
.y3bc{bottom:193.960000pt;}
.y3ba{bottom:195.080000pt;}
.y2da{bottom:195.706667pt;}
.y1e9{bottom:196.666667pt;}
.y3b0{bottom:196.680000pt;}
.y190{bottom:197.160000pt;}
.y101{bottom:197.626667pt;}
.y361{bottom:197.786667pt;}
.y3ad{bottom:197.800000pt;}
.y76{bottom:198.560000pt;}
.y11d{bottom:199.234667pt;}
.y233{bottom:199.386667pt;}
.y298{bottom:199.866667pt;}
.y551{bottom:201.280000pt;}
.y305{bottom:202.426667pt;}
.y3e9{bottom:202.746667pt;}
.y52d{bottom:203.226667pt;}
.y43a{bottom:203.546667pt;}
.yea{bottom:204.506667pt;}
.y10d{bottom:204.666667pt;}
.yc6{bottom:204.986667pt;}
.yb8{bottom:205.466667pt;}
.y544{bottom:205.600000pt;}
.y55b{bottom:205.786667pt;}
.y129{bottom:206.274667pt;}
.ye0{bottom:207.066667pt;}
.y13b{bottom:207.240000pt;}
.y2ed{bottom:208.346667pt;}
.yab{bottom:208.986667pt;}
.y170{bottom:212.346667pt;}
.y100{bottom:212.666667pt;}
.y41d{bottom:212.826667pt;}
.y6f{bottom:213.306667pt;}
.y216{bottom:213.466667pt;}
.y279{bottom:213.626667pt;}
.y1d7{bottom:213.786667pt;}
.y469{bottom:213.946667pt;}
.y11c{bottom:214.274667pt;}
.y9c{bottom:214.426667pt;}
.y475{bottom:215.226667pt;}
.y1e8{bottom:216.666667pt;}
.y75{bottom:217.440000pt;}
.y44d{bottom:217.946667pt;}
.y30a{bottom:219.226667pt;}
.yff{bottom:219.706667pt;}
.y499{bottom:220.186667pt;}
.y543{bottom:220.480000pt;}
.y11a{bottom:221.154667pt;}
.yd7{bottom:221.306667pt;}
.y13a{bottom:222.280000pt;}
.y38c{bottom:223.066667pt;}
.y3a0{bottom:223.226667pt;}
.ye9{bottom:223.866667pt;}
.y20{bottom:224.666667pt;}
.y401{bottom:225.786667pt;}
.y4bb{bottom:225.946667pt;}
.ydf{bottom:226.586667pt;}
.y232{bottom:227.386667pt;}
.y487{bottom:227.546667pt;}
.y42{bottom:227.706667pt;}
.y5b6{bottom:227.866667pt;}
.yc5{bottom:228.186667pt;}
.yb7{bottom:228.666667pt;}
.y11b{bottom:229.154667pt;}
.y138{bottom:229.320000pt;}
.y264{bottom:230.106667pt;}
.y40c{bottom:230.746667pt;}
.y4c8{bottom:230.906667pt;}
.y439{bottom:231.546667pt;}
.y2d9{bottom:231.706667pt;}
.y3b3{bottom:231.866667pt;}
.y4c7{bottom:232.026667pt;}
.yaa{bottom:232.186667pt;}
.y2c3{bottom:232.506667pt;}
.y2a7{bottom:233.146667pt;}
.y1c7{bottom:234.106667pt;}
.y1d6{bottom:234.266667pt;}
.y350{bottom:234.746667pt;}
.y36b{bottom:235.226667pt;}
.y542{bottom:235.546667pt;}
.y1e7{bottom:236.986667pt;}
.y139{bottom:237.320000pt;}
.y304{bottom:238.426667pt;}
.y4f1{bottom:238.906667pt;}
.y509{bottom:239.226667pt;}
.y32f{bottom:239.866667pt;}
.y360{bottom:240.186667pt;}
.y41c{bottom:240.826667pt;}
.y45d{bottom:241.626667pt;}
.y6e{bottom:241.786667pt;}
.y3e8{bottom:242.586667pt;}
.y297{bottom:243.866667pt;}
.y1f6{bottom:245.146667pt;}
.yde{bottom:245.466667pt;}
.y4c6{bottom:247.066667pt;}
.y5a3{bottom:247.226667pt;}
.y498{bottom:248.186667pt;}
.y28a{bottom:248.506667pt;}
.yd6{bottom:249.786667pt;}
.y1d5{bottom:250.426667pt;}
.y541{bottom:250.586667pt;}
.yc4{bottom:251.546667pt;}
.yb6{bottom:251.866667pt;}
.y9b{bottom:252.186667pt;}
.ye3{bottom:253.466667pt;}
.y275{bottom:254.906667pt;}
.y2ec{bottom:255.226667pt;}
.y231{bottom:255.386667pt;}
.ya9{bottom:255.546667pt;}
.y1e6{bottom:256.826667pt;}
.y3c3{bottom:257.306667pt;}
.y3cd{bottom:257.466667pt;}
.y44b{bottom:259.386667pt;}
.y438{bottom:259.546667pt;}
.y3d6{bottom:260.026667pt;}
.y4c5{bottom:262.106667pt;}
.y1c6{bottom:262.586667pt;}
.y41{bottom:262.906667pt;}
.y3ff{bottom:265.466667pt;}
.y485{bottom:267.226667pt;}
.y2d7{bottom:267.706667pt;}
.y41a{bottom:268.826667pt;}
.y389{bottom:268.986667pt;}
.y39f{bottom:269.146667pt;}
.y165{bottom:269.786667pt;}
.y4ba{bottom:269.946667pt;}
.y6d{bottom:270.266667pt;}
.y40a{bottom:270.586667pt;}
.y261{bottom:271.386667pt;}
.ydd{bottom:272.346667pt;}
.y31e{bottom:272.706667pt;}
.y303{bottom:274.466667pt;}
.yc3{bottom:274.786667pt;}
.yb5{bottom:275.106667pt;}
.y9a{bottom:275.426667pt;}
.y4ac{bottom:275.586667pt;}
.y34f{bottom:276.226667pt;}
.y2c2{bottom:276.546667pt;}
.y4c4{bottom:276.986667pt;}
.y2a6{bottom:277.186667pt;}
.y1e5{bottom:277.306667pt;}
.yd5{bottom:278.306667pt;}
.ya8{bottom:278.786667pt;}
.y36a{bottom:279.266667pt;}
.y35f{bottom:281.506667pt;}
.y1f{bottom:281.666667pt;}
.y540{bottom:281.826667pt;}
.y3e7{bottom:282.466667pt;}
.y502{bottom:283.266667pt;}
.y1c5{bottom:284.546667pt;}
.y379{bottom:285.506667pt;}
.y45c{bottom:285.666667pt;}
.y5b8{bottom:286.786667pt;}
.y296{bottom:287.906667pt;}
.y215{bottom:289.506667pt;}
.y2b4{bottom:289.666667pt;}
.y437{bottom:290.146667pt;}
.y40{bottom:290.306667pt;}
.y1d4{bottom:290.586667pt;}
.y2eb{bottom:291.266667pt;}
.y289{bottom:292.546667pt;}
.y1e4{bottom:293.466667pt;}
.y230{bottom:295.106667pt;}
.y57f{bottom:295.266667pt;}
.y468{bottom:296.706667pt;}
.y419{bottom:296.866667pt;}
.yc2{bottom:297.986667pt;}
.yb4{bottom:298.466667pt;}
.y99{bottom:298.626667pt;}
.y6c{bottom:298.786667pt;}
.y33e{bottom:299.266667pt;}
.y44a{bottom:300.706667pt;}
.ya7{bottom:301.986667pt;}
.y2d6{bottom:303.746667pt;}
.y497{bottom:304.226667pt;}
.yd4{bottom:306.786667pt;}
.y1d3{bottom:306.906667pt;}
.y484{bottom:307.106667pt;}
.y1c4{bottom:307.746667pt;}
.y3fe{bottom:307.906667pt;}
.y1e3{bottom:309.626667pt;}
.y409{bottom:310.306667pt;}
.y302{bottom:310.466667pt;}
.y32e{bottom:312.226667pt;}
.y260{bottom:312.866667pt;}
.y4f0{bottom:314.946667pt;}
.y388{bottom:315.106667pt;}
.y39e{bottom:315.266667pt;}
.y4b9{bottom:316.546667pt;}
.y274{bottom:317.666667pt;}
.y3f{bottom:317.826667pt;}
.y436{bottom:318.146667pt;}
.y34e{bottom:318.466667pt;}
.y4c3{bottom:319.426667pt;}
.y4ab{bottom:319.586667pt;}
.y2c1{bottom:320.546667pt;}
.yc1{bottom:321.186667pt;}
.yb3{bottom:321.666667pt;}
.y98{bottom:321.986667pt;}
.y3e6{bottom:322.146667pt;}
.y1d2{bottom:323.106667pt;}
.y35e{bottom:323.906667pt;}
.y1e{bottom:324.866667pt;}
.ya6{bottom:325.186667pt;}
.y2ea{bottom:327.266667pt;}
.y1e2{bottom:329.506667pt;}
.y45b{bottom:329.666667pt;}
.y31d{bottom:329.986667pt;}
.y6b{bottom:330.466667pt;}
.y1f2{bottom:331.906667pt;}
.y496{bottom:332.226667pt;}
.y2b3{bottom:333.666667pt;}
.y288{bottom:333.826667pt;}
.y22f{bottom:333.986667pt;}
.yd3{bottom:335.266667pt;}
.y3e{bottom:337.186667pt;}
.y467{bottom:337.986667pt;}
.y57d{bottom:339.266667pt;}
.y2d5{bottom:339.746667pt;}
.y449{bottom:341.986667pt;}
.y51a{bottom:343.266667pt;}
.y1d{bottom:344.226667pt;}
.yc0{bottom:344.546667pt;}
.yb2{bottom:344.866667pt;}
.y97{bottom:345.186667pt;}
.y301{bottom:346.466667pt;}
.y214{bottom:346.946667pt;}
.y3fd{bottom:347.746667pt;}
.ya5{bottom:348.546667pt;}
.y435{bottom:348.866667pt;}
.y1d1{bottom:349.986667pt;}
.y1c1{bottom:350.146667pt;}
.y22e{bottom:350.466667pt;}
.y25a{bottom:352.706667pt;}
.y3e5{bottom:352.866667pt;}
.y248{bottom:355.746667pt;}
.y160{bottom:357.186667pt;}
.y273{bottom:358.946667pt;}
.y533{bottom:359.266667pt;}
.y34d{bottom:359.906667pt;}
.y495{bottom:360.226667pt;}
.y4b8{bottom:360.546667pt;}
.y387{bottom:361.026667pt;}
.y39d{bottom:361.186667pt;}
.y2e9{bottom:363.266667pt;}
.y4aa{bottom:363.586667pt;}
.y1c{bottom:363.746667pt;}
.y3d{bottom:364.546667pt;}
.y2a5{bottom:365.186667pt;}
.y5a0{bottom:365.826667pt;}
.y1d0{bottom:366.146667pt;}
.y5c{bottom:366.306667pt;}
.ybe{bottom:367.746667pt;}
.y5b5{bottom:367.906667pt;}
.yaf{bottom:368.066667pt;}
.y94{bottom:368.386667pt;}
.y32d{bottom:369.506667pt;}
.y5a9{bottom:371.266667pt;}
.y6a{bottom:371.586667pt;}
.ya3{bottom:371.746667pt;}
.y378{bottom:371.906667pt;}
.y45a{bottom:373.666667pt;}
.y31c{bottom:373.986667pt;}
.y2d2{bottom:375.746667pt;}
.y295{bottom:375.906667pt;}
.y2b2{bottom:377.666667pt;}
.y287{bottom:377.826667pt;}
.yfe{bottom:378.626667pt;}
.y466{bottom:379.426667pt;}
.y418{bottom:380.866667pt;}
.y22d{bottom:382.146667pt;}
.y300{bottom:382.466667pt;}
.y1b{bottom:383.106667pt;}
.y1cd{bottom:383.426667pt;}
.y3c{bottom:384.066667pt;}
.y1cf{bottom:385.986667pt;}
.y474{bottom:387.266667pt;}
.y3fc{bottom:387.426667pt;}
.y494{bottom:388.226667pt;}
.y434{bottom:388.706667pt;}
.y213{bottom:389.186667pt;}
.y408{bottom:389.986667pt;}
.ybf{bottom:390.946667pt;}
.yb1{bottom:391.426667pt;}
.y96{bottom:391.586667pt;}
.yd2{bottom:392.226667pt;}
.y3e4{bottom:392.706667pt;}
.y247{bottom:393.506667pt;}
.y5b{bottom:394.786667pt;}
.ya4{bottom:394.946667pt;}
.y566{bottom:396.866667pt;}
.y1cc{bottom:398.466667pt;}
.y2e8{bottom:399.266667pt;}
.y34c{bottom:402.146667pt;}
.y1f1{bottom:402.466667pt;}
.y271{bottom:402.946667pt;}
.y531{bottom:403.266667pt;}
.y3b{bottom:403.426667pt;}
.y1a{bottom:404.546667pt;}
.y369{bottom:405.826667pt;}
.y1ce{bottom:406.306667pt;}
.y386{bottom:407.106667pt;}
.y39c{bottom:407.266667pt;}
.y35d{bottom:407.586667pt;}
.y2bf{bottom:408.546667pt;}
.y417{bottom:408.866667pt;}
.y2a4{bottom:409.186667pt;}
.y598{bottom:409.826667pt;}
.y246{bottom:409.986667pt;}
.y564{bottom:411.266667pt;}
.y69{bottom:412.706667pt;}
.ybd{bottom:414.146667pt;}
.yae{bottom:414.626667pt;}
.y93{bottom:414.786667pt;}
.y1bc{bottom:415.426667pt;}
.y493{bottom:416.226667pt;}
.y15c{bottom:417.186667pt;}
.y459{bottom:417.666667pt;}
.y31b{bottom:417.986667pt;}
.ya2{bottom:418.146667pt;}
.y2ff{bottom:418.466667pt;}
.y292{bottom:419.906667pt;}
.yd1{bottom:420.546667pt;}
.y465{bottom:420.706667pt;}
.y2b1{bottom:421.666667pt;}
.y286{bottom:421.826667pt;}
.y3a{bottom:422.946667pt;}
.y5a{bottom:423.266667pt;}
.y448{bottom:424.706667pt;}
.y32c{bottom:426.786667pt;}
.y3fb{bottom:427.266667pt;}
.y245{bottom:428.546667pt;}
.y19{bottom:428.866667pt;}
.y377{bottom:429.186667pt;}
.y407{bottom:429.826667pt;}
.y3b8{bottom:431.266667pt;}
.y212{bottom:431.586667pt;}
.y3e3{bottom:432.546667pt;}
.ydc{bottom:433.986667pt;}
.y2e7{bottom:435.266667pt;}
.y416{bottom:436.866667pt;}
.ybc{bottom:437.346667pt;}
.yad{bottom:437.826667pt;}
.y3a7{bottom:437.986667pt;}
.y91{bottom:438.146667pt;}
.y433{bottom:439.426667pt;}
.y2d1{bottom:440.866667pt;}
.ya0{bottom:441.346667pt;}
.y39{bottom:442.306667pt;}
.y34b{bottom:443.586667pt;}
.y33c{bottom:443.906667pt;}
.y492{bottom:444.226667pt;}
.y1cb{bottom:444.866667pt;}
.y259{bottom:447.266667pt;}
.y4b7{bottom:448.546667pt;}
.y35c{bottom:448.866667pt;}
.y482{bottom:449.186667pt;}
.y368{bottom:449.826667pt;}
.y22c{bottom:451.266667pt;}
.y59{bottom:451.746667pt;}
.y385{bottom:453.026667pt;}
.y18{bottom:453.186667pt;}
.y68{bottom:453.826667pt;}
.y2fe{bottom:454.466667pt;}
.y18b{bottom:454.786667pt;}
.y458{bottom:458.946667pt;}
.y3c1{bottom:459.266667pt;}
.y14d{bottom:459.426667pt;}
.y38{bottom:461.666667pt;}
.y3d4{bottom:461.986667pt;}
.y285{bottom:463.266667pt;}
.y3ca{bottom:463.586667pt;}
.y415{bottom:464.866667pt;}
.y2b0{bottom:465.666667pt;}
.y447{bottom:465.986667pt;}
.y4dc{bottom:466.946667pt;}
.y3fa{bottom:467.106667pt;}
.y4f8{bottom:467.266667pt;}
.y480{bottom:467.906667pt;}
.y432{bottom:468.866667pt;}
.y406{bottom:469.506667pt;}
.y244{bottom:469.986667pt;}
.y2be{bottom:471.266667pt;}
.y3e2{bottom:472.226667pt;}
.y376{bottom:473.186667pt;}
.y31a{bottom:475.266667pt;}
.y17{bottom:477.666667pt;}
.y58{bottom:477.986667pt;}
.y211{bottom:483.266667pt;}
.y3a5{bottom:484.066667pt;}
.y329{bottom:484.226667pt;}
.y2d0{bottom:484.866667pt;}
.y34a{bottom:485.826667pt;}
.y561{bottom:487.266667pt;}
.y37{bottom:489.186667pt;}
.y22b{bottom:491.106667pt;}
.y35b{bottom:491.266667pt;}
.y270{bottom:492.546667pt;}
.y67{bottom:494.946667pt;}
.y57c{bottom:495.266667pt;}
.y2a3{bottom:497.186667pt;}
.y2fd{bottom:498.466667pt;}
.y382{bottom:499.106667pt;}
.y39a{bottom:499.266667pt;}
.y491{bottom:500.226667pt;}
.y339{bottom:501.186667pt;}
.y431{bottom:501.826667pt;}
.y16{bottom:501.986667pt;}
.y457{bottom:502.946667pt;}
.y464{bottom:503.426667pt;}
.y4a8{bottom:504.226667pt;}
.y57{bottom:505.506667pt;}
.y210{bottom:505.666667pt;}
.y3f8{bottom:506.946667pt;}
.y257{bottom:507.266667pt;}
.y445{bottom:507.426667pt;}
.y5b4{bottom:507.906667pt;}
.y36{bottom:508.546667pt;}
.y414{bottom:508.866667pt;}
.y405{bottom:509.346667pt;}
.y2af{bottom:509.666667pt;}
.y242{bottom:511.266667pt;}
.y3df{bottom:512.066667pt;}
.y182{bottom:514.786667pt;}
.y2bc{bottom:515.266667pt;}
.y373{bottom:515.586667pt;}
.y317{bottom:519.293333pt;}
.y430{bottom:524.093333pt;}
.y47f{bottom:524.253333pt;}
.y56{bottom:524.413333pt;}
.y291{bottom:525.853333pt;}
.y15{bottom:526.333333pt;}
.y349{bottom:527.293333pt;}
.y490{bottom:528.253333pt;}
.y2cf{bottom:528.893333pt;}
.y229{bottom:530.973333pt;}
.y35a{bottom:532.573333pt;}
.y473{bottom:532.733333pt;}
.y26f{bottom:533.853333pt;}
.y66{bottom:535.933333pt;}
.y35{bottom:536.093333pt;}
.y4b6{bottom:536.573333pt;}
.y413{bottom:536.893333pt;}
.y571{bottom:539.293333pt;}
.y74{bottom:539.453333pt;}
.y20f{bottom:540.893333pt;}
.y2a2{bottom:541.213333pt;}
.y55{bottom:542.173333pt;}
.y2fb{bottom:542.493333pt;}
.y2e5{bottom:543.293333pt;}
.y381{bottom:545.053333pt;}
.y399{bottom:545.213333pt;}
.y456{bottom:546.973333pt;}
.y444{bottom:548.733333pt;}
.y3f7{bottom:549.213333pt;}
.y14{bottom:550.653333pt;}
.y255{bottom:551.293333pt;}
.y3de{bottom:551.933333pt;}
.y42f{bottom:552.093333pt;}
.y240{bottom:552.573333pt;}
.y2ae{bottom:553.693333pt;}
.y537{bottom:555.293333pt;}
.y34{bottom:555.453333pt;}
.y48f{bottom:556.253333pt;}
.y328{bottom:556.573333pt;}
.y2bb{bottom:559.293333pt;}
.y54{bottom:560.093333pt;}
.y560{bottom:563.293333pt;}
.y2ce{bottom:564.893333pt;}
.y348{bottom:569.533333pt;}
.y290{bottom:569.853333pt;}
.y227{bottom:570.813333pt;}
.y5aa{bottom:571.293333pt;}
.y372{bottom:572.893333pt;}
.y338{bottom:573.533333pt;}
.y65{bottom:573.853333pt;}
.y359{bottom:574.813333pt;}
.y471{bottom:576.733333pt;}
.y53{bottom:577.853333pt;}
.y20e{bottom:578.173333pt;}
.y2fa{bottom:578.493333pt;}
.y2e4{bottom:579.293333pt;}
.y13{bottom:579.613333pt;}
.y42e{bottom:580.093333pt;}
.y4b5{bottom:580.573333pt;}
.y47e{bottom:581.533333pt;}
.y596{bottom:581.853333pt;}
.y33{bottom:582.813333pt;}
.y4a7{bottom:583.773333pt;}
.y48e{bottom:584.253333pt;}
.y2a1{bottom:585.213333pt;}
.y52f{bottom:587.293333pt;}
.y455{bottom:588.413333pt;}
.y3f6{bottom:589.053333pt;}
.y443{bottom:590.013333pt;}
.y37f{bottom:591.133333pt;}
.y398{bottom:591.293333pt;}
.y283{bottom:592.573333pt;}
.y410{bottom:592.893333pt;}
.y23f{bottom:594.013333pt;}
.y3dd{bottom:594.173333pt;}
.y52{bottom:595.613333pt;}
.y2ad{bottom:597.693333pt;}
.y20d{bottom:600.253333pt;}
.y2cd{bottom:600.893333pt;}
.y32{bottom:602.333333pt;}
.y2ba{bottom:603.293333pt;}
.y462{bottom:605.853333pt;}
.y42d{bottom:608.093333pt;}
.y51{bottom:610.493333pt;}
.y347{bottom:610.813333pt;}
.y254{bottom:611.293333pt;}
.y28f{bottom:613.853333pt;}
.y2e3{bottom:615.293333pt;}
.y358{bottom:616.253333pt;}
.y371{bottom:616.893333pt;}
.y26e{bottom:619.293333pt;}
.y31{bottom:621.693333pt;}
.y316{bottom:622.173333pt;}
.y2f9{bottom:622.493333pt;}
.y226{bottom:623.613333pt;}
.y47d{bottom:623.933333pt;}
.y4b4{bottom:624.573333pt;}
.y4a6{bottom:625.053333pt;}
.y48d{bottom:628.253333pt;}
.y3f5{bottom:628.893333pt;}
.yfc{bottom:629.053333pt;}
.y29e{bottom:629.213333pt;}
.y454{bottom:629.693333pt;}
.y64{bottom:630.813333pt;}
.y12{bottom:631.293333pt;}
.y442{bottom:631.453333pt;}
.y23e{bottom:635.293333pt;}
.y42c{bottom:636.093333pt;}
.y282{bottom:636.573333pt;}
.y37e{bottom:637.053333pt;}
.y397{bottom:637.213333pt;}
.y50{bottom:638.493333pt;}
.y252{bottom:639.293333pt;}
.y2ac{bottom:641.693333pt;}
.y224{bottom:642.173333pt;}
.y2c9{bottom:644.893333pt;}
.y3ac{bottom:646.653333pt;}
.y2b9{bottom:647.293333pt;}
.y137{bottom:647.453333pt;}
.y181{bottom:648.093333pt;}
.y3dc{bottom:648.733333pt;}
.y30{bottom:649.213333pt;}
.y461{bottom:649.853333pt;}
.y40f{bottom:650.013333pt;}
.y2e2{bottom:651.293333pt;}
.y3b5{bottom:651.933333pt;}
.y345{bottom:653.213333pt;}
.y4f{bottom:656.253333pt;}
.y367{bottom:657.533333pt;}
.y357{bottom:658.493333pt;}
.y63{bottom:659.293333pt;}
.y26d{bottom:660.573333pt;}
.y3be{bottom:662.653333pt;}
.y4a5{bottom:663.293333pt;}
.y42b{bottom:664.093333pt;}
.y3d1{bottom:664.253333pt;}
.y3c7{bottom:664.573333pt;}
.y4c2{bottom:666.013333pt;}
.y315{bottom:666.173333pt;}
.y2f7{bottom:666.493333pt;}
.y250{bottom:667.293333pt;}
.y3d9{bottom:667.453333pt;}
.y2f{bottom:668.573333pt;}
.y20c{bottom:670.813333pt;}
.y4d3{bottom:670.973333pt;}
.y4e{bottom:671.133333pt;}
.y327{bottom:671.293333pt;}
.y441{bottom:672.733333pt;}
.y37d{bottom:676.893333pt;}
.y281{bottom:677.853333pt;}
.y23d{bottom:679.293333pt;}
.y1af{bottom:679.453333pt;}
.y470{bottom:679.613333pt;}
.yfb{bottom:680.413333pt;}
.y396{bottom:683.293333pt;}
.y48c{bottom:684.253333pt;}
.y2ab{bottom:685.693333pt;}
.y221{bottom:686.173333pt;}
.y2e1{bottom:687.293333pt;}
.y62{bottom:687.773333pt;}
.y2b8{bottom:691.293333pt;}
.y5b3{bottom:691.933333pt;}
.y42a{bottom:692.093333pt;}
.y453{bottom:692.413333pt;}
.y460{bottom:693.853333pt;}
.y344{bottom:694.493333pt;}
.y11{bottom:695.613333pt;}
.y2e{bottom:695.933333pt;}
.y47c{bottom:696.253333pt;}
.y24f{bottom:698.013333pt;}
.y4d{bottom:699.133333pt;}
.y356{bottom:699.933333pt;}
.y26c{bottom:701.853333pt;}
.y336{bottom:703.293333pt;}
.y2f6{bottom:704.253333pt;}
.y17d{bottom:705.533333pt;}
.y3f4{bottom:708.413333pt;}
.y4c1{bottom:710.013333pt;}
.y511{bottom:711.293333pt;}
.y48b{bottom:712.253333pt;}
.y43d{bottom:712.573333pt;}
.yfa{bottom:713.373333pt;}
.y205{bottom:714.813333pt;}
.y4f7{bottom:715.293333pt;}
.y2d{bottom:715.453333pt;}
.y10{bottom:715.933333pt;}
.y370{bottom:716.573333pt;}
.y4c{bottom:716.893333pt;}
.y2c8{bottom:719.293333pt;}
.y61{bottom:719.453333pt;}
.y429{bottom:720.093333pt;}
.y280{bottom:721.853333pt;}
.y23c{bottom:723.293333pt;}
.y313{bottom:723.613333pt;}
.y522{bottom:727.293333pt;}
.y395{bottom:729.213333pt;}
.y2a9{bottom:729.693333pt;}
.y21f{bottom:730.173333pt;}
.y325{bottom:731.293333pt;}
.y452{bottom:733.693333pt;}
.y24e{bottom:734.013333pt;}
.y37c{bottom:734.173333pt;}
.y4b{bottom:734.653333pt;}
.y2c{bottom:734.813333pt;}
.y29d{bottom:735.293333pt;}
.yf9{bottom:735.613333pt;}
.y5ab{bottom:735.933333pt;}
.yf{bottom:736.093333pt;}
.y342{bottom:736.893333pt;}
.yd0{bottom:737.853333pt;}
.y4a0{bottom:738.333333pt;}
.y47b{bottom:738.493333pt;}
.y366{bottom:741.213333pt;}
.y355{bottom:742.173333pt;}
.y26b{bottom:743.293333pt;}
.y4a4{bottom:743.773333pt;}
.y428{bottom:748.093333pt;}
.y2f4{bottom:748.253333pt;}
.y4a{bottom:752.573333pt;}
.y4c0{bottom:754.013333pt;}
.y2b{bottom:754.333333pt;}
.ye{bottom:756.413333pt;}
.y4b2{bottom:756.573333pt;}
.y60{bottom:758.173333pt;}
.y2e0{bottom:759.293333pt;}
.y333{bottom:760.573333pt;}
.y17c{bottom:762.853333pt;}
.y2c7{bottom:763.333333pt;}
.yf7{bottom:763.653333pt;}
.y24d{bottom:764.773333pt;}
.y312{bottom:765.893333pt;}
.y49{bottom:767.493333pt;}
.y21e{bottom:768.453333pt;}
.ycf{bottom:769.413333pt;}
.y2a{bottom:773.733333pt;}
.y394{bottom:775.333333pt;}
.y427{bottom:776.133333pt;}
.y36f{bottom:776.613333pt;}
.yd{bottom:776.773333pt;}
.y451{bottom:777.733333pt;}
.y341{bottom:778.213333pt;}
.y49f{bottom:779.173333pt;}
.y29c{bottom:779.333333pt;}
.y37b{bottom:780.933333pt;}
.y27f{bottom:781.893333pt;}
.y47a{bottom:782.533333pt;}
.y23b{bottom:783.333333pt;}
.y354{bottom:783.653333pt;}
.y26a{bottom:784.613333pt;}
.y2f3{bottom:785.573333pt;}
.y4a1{bottom:786.053333pt;}
.y1ab{bottom:787.493333pt;}
.y3f1{bottom:788.133333pt;}
.y321{bottom:788.613333pt;}
.y4f6{bottom:791.333333pt;}
.yf5{bottom:791.653333pt;}
.y48{bottom:792.453333pt;}
.y29{bottom:793.093333pt;}
.y2df{bottom:795.333333pt;}
.y5f{bottom:796.133333pt;}
.yc{bottom:797.093333pt;}
.y4d2{bottom:797.733333pt;}
.y4bf{bottom:798.053333pt;}
.y4b1{bottom:800.613333pt;}
.y24c{bottom:804.453333pt;}
.y21d{bottom:806.533333pt;}
.y2c6{bottom:807.333333pt;}
.y311{bottom:809.893333pt;}
.yce{bottom:810.533333pt;}
.y4a3{bottom:815.493333pt;}
.yb{bottom:817.413333pt;}
.y28{bottom:820.613333pt;}
.y393{bottom:821.253333pt;}
.y29b{bottom:823.333333pt;}
.y47{bottom:824.613333pt;}
.y365{bottom:824.933333pt;}
.y269{bottom:825.893333pt;}
.y3f0{bottom:827.973333pt;}
.y2f1{bottom:829.573333pt;}
.y2de{bottom:831.333333pt;}
.y1aa{bottom:831.493333pt;}
.y424{bottom:833.733333pt;}
.y5e{bottom:834.533333pt;}
.y179{bottom:835.173333pt;}
.y49e{bottom:835.333333pt;}
.yf4{bottom:835.973333pt;}
.y4d1{bottom:837.413333pt;}
.ya{bottom:837.733333pt;}
.y27{bottom:839.973333pt;}
.y4be{bottom:842.053333pt;}
.y23a{bottom:843.333333pt;}
.y4b0{bottom:844.613333pt;}
.ycd{bottom:845.893333pt;}
.y204{bottom:849.733333pt;}
.y24b{bottom:855.333333pt;}
.y9{bottom:857.893333pt;}
.y26{bottom:859.493333pt;}
.y21c{bottom:862.533333pt;}
.y49d{bottom:863.333333pt;}
.ycc{bottom:863.653333pt;}
.y268{bottom:867.333333pt;}
.y3ef{bottom:867.653333pt;}
.y46{bottom:867.973333pt;}
.y5d{bottom:871.813333pt;}
.yf3{bottom:873.893333pt;}
.y1c9{bottom:874.053333pt;}
.y8{bottom:878.213333pt;}
.y24a{bottom:884.773333pt;}
.y4d0{bottom:888.293333pt;}
.y4ae{bottom:888.613333pt;}
.y25{bottom:889.093333pt;}
.y423{bottom:891.333333pt;}
.yf2{bottom:891.653333pt;}
.ycb{bottom:895.333333pt;}
.y7{bottom:898.533333pt;}
.y239{bottom:903.333333pt;}
.y203{bottom:907.013333pt;}
.y136{bottom:907.493333pt;}
.y21b{bottom:908.133333pt;}
.y24{bottom:917.413333pt;}
.y4af{bottom:918.053333pt;}
.y6{bottom:918.853333pt;}
.y422{bottom:919.333333pt;}
.y249{bottom:919.973333pt;}
.y1c8{bottom:925.893333pt;}
.yf1{bottom:927.813333pt;}
.yca{bottom:936.453333pt;}
.y5{bottom:939.173333pt;}
.y135{bottom:945.893333pt;}
.y4{bottom:959.333333pt;}
.y23{bottom:962.373333pt;}
.y22{bottom:975.013333pt;}
.y3{bottom:985.413333pt;}
.y2{bottom:1026.080000pt;}
.y1{bottom:1060.000000pt;}
.y21{bottom:1062.880000pt;}
.h20{height:16.640000pt;}
.h80{height:16.672000pt;}
.h88{height:17.920000pt;}
.h89{height:18.080000pt;}
.h82{height:19.232000pt;}
.h1f{height:19.360000pt;}
.h8c{height:20.160000pt;}
.h8d{height:21.120000pt;}
.h14{height:22.560000pt;}
.h18{height:22.592000pt;}
.h1a{height:22.720000pt;}
.h47{height:24.640000pt;}
.h59{height:24.672000pt;}
.h5f{height:24.800000pt;}
.h5d{height:25.952000pt;}
.h5c{height:26.400000pt;}
.h3f{height:26.880000pt;}
.h8a{height:26.912000pt;}
.h5b{height:27.840000pt;}
.h46{height:28.320000pt;}
.h7e{height:28.352000pt;}
.h21{height:28.480000pt;}
.h40{height:28.512000pt;}
.h38{height:28.960000pt;}
.h43{height:29.920000pt;}
.h45{height:29.952000pt;}
.h44{height:30.080000pt;}
.h4c{height:30.112000pt;}
.h29{height:30.880000pt;}
.h7d{height:30.912000pt;}
.h36{height:31.040000pt;}
.h68{height:31.072000pt;}
.h31{height:32.640000pt;}
.h48{height:32.672000pt;}
.h5e{height:32.800000pt;}
.h60{height:32.832000pt;}
.h7c{height:34.080000pt;}
.h61{height:34.240000pt;}
.h6a{height:34.560000pt;}
.h6c{height:34.592000pt;}
.h6b{height:34.720000pt;}
.h6d{height:34.752000pt;}
.h7f{height:35.200000pt;}
.h8b{height:35.232000pt;}
.h51{height:35.360000pt;}
.h65{height:35.392000pt;}
.h5a{height:35.520000pt;}
.h69{height:35.975313pt;}
.h84{height:36.800000pt;}
.h4d{height:36.960000pt;}
.h16{height:37.007812pt;}
.h19{height:37.120000pt;}
.h15{height:39.492188pt;}
.h86{height:39.520000pt;}
.h4{height:40.073438pt;}
.h25{height:40.955312pt;}
.hf{height:43.343750pt;}
.h2{height:43.355000pt;}
.h9a{height:43.680000pt;}
.h24{height:43.704687pt;}
.he{height:44.418750pt;}
.h8f{height:44.437500pt;}
.h41{height:44.960000pt;}
.h50{height:45.260625pt;}
.h7{height:45.396250pt;}
.h17{height:45.760000pt;}
.h1b{height:45.920000pt;}
.h63{height:45.952000pt;}
.h3a{height:46.039063pt;}
.h4b{height:46.068325pt;}
.h2c{height:46.080000pt;}
.h67{height:46.112000pt;}
.h81{height:46.240000pt;}
.h87{height:47.360000pt;}
.h6{height:48.281250pt;}
.h22{height:48.443750pt;}
.h2a{height:48.640000pt;}
.h42{height:48.672000pt;}
.h4a{height:48.854375pt;}
.ha{height:49.343750pt;}
.h6e{height:49.792000pt;}
.h13{height:51.031250pt;}
.h85{height:51.200000pt;}
.h4f{height:51.360000pt;}
.h4e{height:51.392000pt;}
.hb{height:52.656250pt;}
.h57{height:53.760000pt;}
.h35{height:53.920000pt;}
.h58{height:54.860625pt;}
.hc{height:55.468750pt;}
.h3b{height:59.200000pt;}
.h10{height:60.351562pt;}
.h37{height:60.519362pt;}
.h2e{height:60.960000pt;}
.h64{height:60.992000pt;}
.h66{height:61.120000pt;}
.h56{height:63.040000pt;}
.h1c{height:63.840000pt;}
.h2d{height:64.640000pt;}
.h91{height:64.672000pt;}
.h3e{height:64.832000pt;}
.h1e{height:65.781915pt;}
.h62{height:67.360000pt;}
.h3c{height:75.392000pt;}
.h2b{height:76.032000pt;}
.h3{height:80.629687pt;}
.h9d{height:80.640000pt;}
.h9e{height:80.672000pt;}
.h49{height:83.200000pt;}
.h11{height:83.281250pt;}
.h83{height:83.392000pt;}
.h9c{height:90.080000pt;}
.hd{height:92.700000pt;}
.h52{height:94.560000pt;}
.h53{height:94.720000pt;}
.h32{height:96.672000pt;}
.h9{height:112.495312pt;}
.h33{height:112.640000pt;}
.ha0{height:112.832000pt;}
.h8e{height:115.392000pt;}
.h9f{height:120.032000pt;}
.h2f{height:122.112000pt;}
.h3d{height:123.552000pt;}
.h54{height:126.272000pt;}
.h93{height:128.640000pt;}
.h34{height:128.672000pt;}
.h97{height:135.066667pt;}
.h55{height:139.066667pt;}
.h99{height:144.640000pt;}
.h94{height:144.666667pt;}
.h9b{height:150.106667pt;}
.h8{height:153.271862pt;}
.h95{height:160.640000pt;}
.h92{height:160.666667pt;}
.h5{height:160.776562pt;}
.h98{height:176.640000pt;}
.h28{height:176.666667pt;}
.h7b{height:188.506667pt;}
.h77{height:189.626667pt;}
.h75{height:190.586667pt;}
.h7a{height:190.906667pt;}
.h76{height:191.386667pt;}
.h79{height:191.706667pt;}
.h6f{height:192.026667pt;}
.h90{height:192.666667pt;}
.h74{height:193.306667pt;}
.h78{height:194.746667pt;}
.h71{height:200.026667pt;}
.h72{height:204.026667pt;}
.h73{height:206.586667pt;}
.h30{height:208.666667pt;}
.h70{height:209.306667pt;}
.h12{height:233.626667pt;}
.h23{height:239.226667pt;}
.h26{height:240.666667pt;}
.h27{height:248.666667pt;}
.h96{height:262.106667pt;}
.h1d{height:288.506667pt;}
.h39{height:417.826667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w13{width:40.160000pt;}
.w1c{width:40.192000pt;}
.w9{width:42.560000pt;}
.w17{width:43.840000pt;}
.w10{width:44.000000pt;}
.wd{width:44.800000pt;}
.wb{width:45.312000pt;}
.w8{width:45.920000pt;}
.wa{width:46.400000pt;}
.w12{width:46.560000pt;}
.w18{width:46.592000pt;}
.wf{width:47.072000pt;}
.w1b{width:47.200000pt;}
.w16{width:47.232000pt;}
.w11{width:48.000000pt;}
.wc{width:48.800000pt;}
.w1d{width:91.840000pt;}
.w1e{width:134.586667pt;}
.w3f{width:160.666667pt;}
.w31{width:162.906667pt;}
.we{width:179.520000pt;}
.w33{width:188.960000pt;}
.w25{width:191.226667pt;}
.w2a{width:191.386667pt;}
.w27{width:191.706667pt;}
.w47{width:219.546667pt;}
.w1a{width:227.866667pt;}
.w14{width:232.186667pt;}
.w4{width:241.466667pt;}
.w2{width:247.200000pt;}
.w6{width:249.946667pt;}
.w5{width:250.106667pt;}
.w3{width:259.066667pt;}
.w19{width:272.986667pt;}
.w38{width:283.546667pt;}
.w37{width:292.986667pt;}
.w4a{width:311.866667pt;}
.w4c{width:314.586667pt;}
.w4d{width:315.226667pt;}
.w7{width:320.346667pt;}
.w15{width:320.386667pt;}
.w4b{width:330.746667pt;}
.w42{width:348.506667pt;}
.w39{width:349.626667pt;}
.w43{width:349.786667pt;}
.w20{width:355.866667pt;}
.w3c{width:357.946667pt;}
.w41{width:359.066667pt;}
.w3a{width:359.226667pt;}
.w23{width:370.906667pt;}
.w22{width:374.586667pt;}
.w21{width:387.586667pt;}
.w34{width:514.306667pt;}
.w1f{width:528.320000pt;}
.w32{width:576.546667pt;}
.w45{width:585.986667pt;}
.w2b{width:629.506667pt;}
.w49{width:629.826667pt;}
.w28{width:629.986667pt;}
.w2d{width:633.346667pt;}
.w48{width:642.626667pt;}
.w2e{width:657.346667pt;}
.w2c{width:671.266667pt;}
.w29{width:672.066667pt;}
.w46{width:699.426667pt;}
.w30{width:703.266667pt;}
.w3b{width:707.586667pt;}
.w36{width:708.866667pt;}
.w40{width:737.213333pt;}
.w2f{width:739.453333pt;}
.w26{width:1298.213333pt;}
.w35{width:1442.720000pt;}
.w3e{width:1446.080000pt;}
.w3d{width:1447.040000pt;}
.w44{width:1448.320000pt;}
.w24{width:1489.440000pt;}
.w1{width:1587.999976pt;}
.w0{width:1588.000000pt;}
.x0{left:0.000000pt;}
.x37{left:5.280000pt;}
.xb{left:6.880000pt;}
.x31{left:17.760000pt;}
.x6{left:47.999976pt;}
.x2f{left:50.720000pt;}
.x36{left:55.200000pt;}
.x72{left:57.440000pt;}
.x2e{left:94.720000pt;}
.x18{left:100.320000pt;}
.x11{left:121.440000pt;}
.x20{left:127.080000pt;}
.x4f{left:132.186667pt;}
.x34{left:140.640000pt;}
.x19{left:148.026667pt;}
.xa{left:168.826667pt;}
.x35{left:185.440000pt;}
.x33{left:187.200000pt;}
.x1a{left:192.666667pt;}
.x32{left:193.800000pt;}
.x41{left:198.586667pt;}
.x75{left:211.706667pt;}
.x76{left:215.066667pt;}
.x3d{left:218.106667pt;}
.x1b{left:241.306667pt;}
.x38{left:246.426667pt;}
.x27{left:266.280000pt;}
.x63{left:269.800000pt;}
.x7d{left:274.906667pt;}
.x1c{left:285.946667pt;}
.x45{left:300.506667pt;}
.x7{left:332.026643pt;}
.x1d{left:333.146667pt;}
.x50{left:343.546667pt;}
.x1e{left:374.106667pt;}
.x59{left:377.786667pt;}
.x30{left:405.146667pt;}
.xc{left:416.666667pt;}
.x1f{left:458.746667pt;}
.x5a{left:464.226667pt;}
.x5{left:488.706643pt;}
.x21{left:506.626667pt;}
.x3f{left:511.106667pt;}
.x53{left:531.906667pt;}
.x46{left:545.826667pt;}
.x22{left:551.266667pt;}
.x7f{left:586.786667pt;}
.x23{left:599.906667pt;}
.x5f{left:606.146667pt;}
.x4{left:623.746643pt;}
.x24{left:644.546667pt;}
.x57{left:651.906667pt;}
.x6f{left:661.506667pt;}
.x6d{left:662.786667pt;}
.x64{left:665.506667pt;}
.x70{left:668.066667pt;}
.x6e{left:670.786667pt;}
.x71{left:674.786667pt;}
.xd{left:676.386667pt;}
.x5b{left:680.386667pt;}
.x6c{left:681.506667pt;}
.x6b{left:684.066667pt;}
.x69{left:685.506667pt;}
.x6a{left:686.786667pt;}
.x68{left:688.066667pt;}
.x55{left:689.666667pt;}
.x25{left:691.586667pt;}
.x7b{left:692.546667pt;}
.x65{left:696.066667pt;}
.x67{left:704.066667pt;}
.x66{left:709.506667pt;}
.x61{left:727.933333pt;}
.x26{left:732.546667pt;}
.x51{left:738.173333pt;}
.x54{left:739.293333pt;}
.x4d{left:790.653333pt;}
.x3{left:794.013310pt;}
.x74{left:804.093333pt;}
.x8{left:817.693310pt;}
.x77{left:824.893333pt;}
.x28{left:826.173333pt;}
.x4b{left:829.053333pt;}
.x3b{left:831.293310pt;}
.x3a{left:838.173310pt;}
.x9{left:865.693310pt;}
.x62{left:868.733333pt;}
.x43{left:869.853333pt;}
.x29{left:874.013333pt;}
.x39{left:876.893333pt;}
.x3c{left:879.613333pt;}
.x47{left:886.493333pt;}
.x5c{left:894.333333pt;}
.x7e{left:917.533333pt;}
.xe{left:918.653333pt;}
.x60{left:962.173333pt;}
.x7c{left:965.053333pt;}
.x2a{left:967.293333pt;}
.x56{left:974.333333pt;}
.x3e{left:983.613333pt;}
.x58{left:993.213333pt;}
.x4e{left:1004.573333pt;}
.x2b{left:1011.933333pt;}
.x5d{left:1022.973333pt;}
.x78{left:1042.533333pt;}
.x2c{left:1059.133333pt;}
.x49{left:1074.213333pt;}
.x2{left:1075.453310pt;}
.x44{left:1080.613333pt;}
.x79{left:1086.853333pt;}
.x7a{left:1093.733333pt;}
.x48{left:1096.133333pt;}
.x2d{left:1099.973333pt;}
.x52{left:1100.933333pt;}
.x4c{left:1102.373333pt;}
.x40{left:1144.293333pt;}
.x73{left:1153.733333pt;}
.xf{left:1169.413333pt;}
.x10{left:1179.973333pt;}
.x12{left:1226.533333pt;}
.x42{left:1232.613333pt;}
.x13{left:1269.733333pt;}
.x5e{left:1293.093333pt;}
.x14{left:1316.933333pt;}
.x4a{left:1349.600000pt;}
.x15{left:1360.133333pt;}
.x16{left:1406.080000pt;}
.x17{left:1455.520000pt;}
.x1{left:1540.159976pt;}
}




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