
    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_021716e30de84ea70ac97385.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.096680;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_50bd9702079d8eedb8d9e52a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.682617;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_1b0284367a396ebe7829c182.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f28545dd76f5e8203ce1c213.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.911133;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_b1e5c8183de8398cb7e7a6f2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.707031;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_d39226b748349fb7b8e95fa8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922363;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_92548ac889fa6a9ed45c8688.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.912598;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_8c3cc5b5e782e44a8c827c9d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.919434;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_7b4fb4d021f658cabb2e1f1a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.707031;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_903070d2897b03544ec0cadb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.922363;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_04160efad0334a93269060ec.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_baef313177815cfad36c831d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.925293;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_381b5ffced055732eafeb46c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938965;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_0d3512fbfb0cc2c977d22adf.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_04160efad0334a93269060ec.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d4ab0db89fa2457f3eed5fb6.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.914062;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_23eab48ccdc1235b64c4c319.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_53b0bd9e32880d96e9219475.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_7dee61c0d53b48e02e05cefa.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_1a505b572010f8511dd52912.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_b37d5e1d8136f5aec6a18cdb.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_68367c99854db9cc8ebe64e7.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.061035;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-0.036000px;}
.ls6{letter-spacing:-0.028800px;}
.lsb{letter-spacing:-0.021600px;}
.ls8{letter-spacing:-0.014400px;}
.ls7{letter-spacing:-0.007200px;}
.ls5{letter-spacing:0.000000px;}
.ls67{letter-spacing:0.001800px;}
.ls6a{letter-spacing:0.001980px;}
.ls6b{letter-spacing:0.002220px;}
.ls69{letter-spacing:0.002280px;}
.ls40{letter-spacing:0.002400px;}
.ls1d{letter-spacing:0.006000px;}
.ls32{letter-spacing:0.006780px;}
.ls1{letter-spacing:0.007200px;}
.ls1c{letter-spacing:0.007800px;}
.ls3a{letter-spacing:0.011400px;}
.ls38{letter-spacing:0.014100px;}
.ls3{letter-spacing:0.014400px;}
.lse{letter-spacing:0.015000px;}
.lsd{letter-spacing:0.015600px;}
.ls2{letter-spacing:0.021600px;}
.ls4{letter-spacing:0.028800px;}
.ls9{letter-spacing:0.029820px;}
.ls20{letter-spacing:0.035400px;}
.lsc{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.043200px;}
.ls2a{letter-spacing:0.050400px;}
.ls7f{letter-spacing:0.232200px;}
.ls71{letter-spacing:0.278640px;}
.ls10{letter-spacing:0.294624px;}
.ls7c{letter-spacing:0.298080px;}
.ls70{letter-spacing:0.400200px;}
.ls72{letter-spacing:0.400800px;}
.ls82{letter-spacing:0.484704px;}
.ls81{letter-spacing:0.503712px;}
.ls7d{letter-spacing:0.524880px;}
.ls21{letter-spacing:0.570240px;}
.ls2c{letter-spacing:0.582000px;}
.ls2e{letter-spacing:0.584496px;}
.ls1a{letter-spacing:0.598752px;}
.ls78{letter-spacing:0.602640px;}
.ls30{letter-spacing:0.604800px;}
.ls83{letter-spacing:0.608256px;}
.ls73{letter-spacing:0.648000px;}
.ls5c{letter-spacing:0.654600px;}
.ls75{letter-spacing:0.680400px;}
.ls74{letter-spacing:0.751680px;}
.ls77{letter-spacing:0.771120px;}
.ls76{letter-spacing:0.797040px;}
.ls79{letter-spacing:0.803520px;}
.ls7e{letter-spacing:0.997920px;}
.ls27{letter-spacing:1.573800px;}
.ls3b{letter-spacing:1.594800px;}
.ls34{letter-spacing:2.180400px;}
.ls66{letter-spacing:2.335200px;}
.ls12{letter-spacing:2.453880px;}
.ls42{letter-spacing:2.736000px;}
.ls15{letter-spacing:3.554400px;}
.ls14{letter-spacing:3.555000px;}
.ls13{letter-spacing:3.916200px;}
.ls5a{letter-spacing:4.099200px;}
.lsa{letter-spacing:4.114200px;}
.ls56{letter-spacing:4.380600px;}
.ls6c{letter-spacing:4.407000px;}
.ls19{letter-spacing:4.451400px;}
.ls3c{letter-spacing:4.645800px;}
.ls3d{letter-spacing:4.646400px;}
.ls37{letter-spacing:4.876800px;}
.ls36{letter-spacing:4.877400px;}
.ls2d{letter-spacing:4.902000px;}
.ls2f{letter-spacing:5.089800px;}
.ls62{letter-spacing:5.584800px;}
.ls7a{letter-spacing:5.591087px;}
.ls54{letter-spacing:5.656800px;}
.ls45{letter-spacing:6.275400px;}
.ls80{letter-spacing:6.456000px;}
.ls6e{letter-spacing:6.765600px;}
.ls6d{letter-spacing:6.793200px;}
.ls41{letter-spacing:6.952800px;}
.ls4e{letter-spacing:7.068600px;}
.ls58{letter-spacing:7.204800px;}
.ls55{letter-spacing:7.404600px;}
.ls25{letter-spacing:7.616400px;}
.ls1b{letter-spacing:7.810200px;}
.ls24{letter-spacing:8.201400px;}
.ls51{letter-spacing:8.541000px;}
.ls53{letter-spacing:8.679600px;}
.ls35{letter-spacing:8.773800px;}
.ls57{letter-spacing:9.241200px;}
.ls1e{letter-spacing:9.337800px;}
.ls5d{letter-spacing:10.261800px;}
.ls5e{letter-spacing:10.262400px;}
.ls22{letter-spacing:11.300400px;}
.ls31{letter-spacing:11.575800px;}
.ls43{letter-spacing:12.346800px;}
.ls26{letter-spacing:14.123400px;}
.ls50{letter-spacing:14.296800px;}
.ls52{letter-spacing:14.306400px;}
.ls3e{letter-spacing:14.642400px;}
.ls64{letter-spacing:14.668200px;}
.ls39{letter-spacing:14.700600px;}
.ls33{letter-spacing:15.408000px;}
.ls4f{letter-spacing:17.319600px;}
.ls6f{letter-spacing:17.452800px;}
.ls65{letter-spacing:17.642400px;}
.ls1f{letter-spacing:19.571400px;}
.ls2b{letter-spacing:19.834800px;}
.ls59{letter-spacing:20.251800px;}
.ls44{letter-spacing:23.814600px;}
.ls5b{letter-spacing:25.713600px;}
.ls61{letter-spacing:27.850800px;}
.ls63{letter-spacing:30.351000px;}
.ls5f{letter-spacing:31.351800px;}
.ls49{letter-spacing:33.280800px;}
.ls3f{letter-spacing:33.351000px;}
.ls16{letter-spacing:33.351300px;}
.ls4d{letter-spacing:33.492000px;}
.ls47{letter-spacing:33.808200px;}
.ls60{letter-spacing:34.651800px;}
.ls4c{letter-spacing:37.640400px;}
.ls29{letter-spacing:37.822800px;}
.ls28{letter-spacing:37.823400px;}
.ls46{letter-spacing:38.062200px;}
.ls4a{letter-spacing:38.097600px;}
.ls48{letter-spacing:41.472600px;}
.ls18{letter-spacing:44.776800px;}
.ls23{letter-spacing:47.589000px;}
.ls4b{letter-spacing:51.421800px;}
.ls17{letter-spacing:54.866640px;}
.ls68{letter-spacing:69.359700px;}
.lsf{letter-spacing:87.984120px;}
.ls7b{letter-spacing:97.293600px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(127,0,85),0 0.015em rgb(127,0,85),0.015em 0 rgb(127,0,85),0 -0.015em  rgb(127,0,85);}
.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(127,0,85);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws64{word-spacing:-36.008496px;}
.ws171{word-spacing:-18.000000px;}
.ws131{word-spacing:-17.524800px;}
.ws78{word-spacing:-15.480000px;}
.ws15e{word-spacing:-1.062720px;}
.ws156{word-spacing:-0.868320px;}
.ws151{word-spacing:-0.861840px;}
.ws154{word-spacing:-0.835920px;}
.ws14f{word-spacing:-0.816480px;}
.ws150{word-spacing:-0.745200px;}
.ws152{word-spacing:-0.712800px;}
.ws172{word-spacing:-0.703296px;}
.ws26{word-spacing:-0.693792px;}
.ws155{word-spacing:-0.667440px;}
.ws33{word-spacing:-0.665280px;}
.ws170{word-spacing:-0.598752px;}
.ws15d{word-spacing:-0.589680px;}
.ws166{word-spacing:-0.579744px;}
.ws24{word-spacing:-0.389664px;}
.ws15c{word-spacing:-0.362880px;}
.ws153{word-spacing:-0.343440px;}
.ws99{word-spacing:-0.122400px;}
.ws2{word-spacing:-0.115200px;}
.ws1d{word-spacing:-0.108000px;}
.ws8{word-spacing:-0.100800px;}
.ws6{word-spacing:-0.093600px;}
.ws7{word-spacing:-0.086400px;}
.ws3{word-spacing:-0.079200px;}
.ws1{word-spacing:-0.072000px;}
.ws4{word-spacing:-0.064800px;}
.ws45{word-spacing:-0.061920px;}
.ws5{word-spacing:-0.057600px;}
.wsa{word-spacing:-0.050400px;}
.ws0{word-spacing:-0.043200px;}
.ws25{word-spacing:-0.036000px;}
.ws9{word-spacing:0.000000px;}
.ws30{word-spacing:10.080000px;}
.wsc1{word-spacing:10.224000px;}
.wsd6{word-spacing:10.231200px;}
.wsda{word-spacing:10.260000px;}
.wsec{word-spacing:10.274400px;}
.wseb{word-spacing:10.303200px;}
.ws168{word-spacing:10.310400px;}
.wsd9{word-spacing:10.317600px;}
.ws16a{word-spacing:10.332000px;}
.ws31{word-spacing:10.339200px;}
.ws16b{word-spacing:10.382400px;}
.wsc5{word-spacing:10.497600px;}
.wsf2{word-spacing:10.504800px;}
.ws8c{word-spacing:10.634400px;}
.ws108{word-spacing:10.771200px;}
.ws95{word-spacing:10.850400px;}
.ws94{word-spacing:10.857600px;}
.ws27{word-spacing:10.886400px;}
.ws80{word-spacing:10.908000px;}
.ws63{word-spacing:10.980000px;}
.ws114{word-spacing:11.001600px;}
.ws92{word-spacing:11.021520px;}
.wse1{word-spacing:11.030400px;}
.ws3c{word-spacing:11.037600px;}
.ws162{word-spacing:11.073600px;}
.ws169{word-spacing:11.088000px;}
.ws141{word-spacing:11.102400px;}
.ws3d{word-spacing:11.109600px;}
.wsc4{word-spacing:11.116800px;}
.wsa3{word-spacing:11.138400px;}
.ws4d{word-spacing:11.145600px;}
.wsb4{word-spacing:11.210400px;}
.ws46{word-spacing:11.232000px;}
.ws47{word-spacing:11.246400px;}
.wse7{word-spacing:11.282400px;}
.ws71{word-spacing:11.383200px;}
.ws72{word-spacing:11.390400px;}
.ws116{word-spacing:11.397600px;}
.ws164{word-spacing:11.455200px;}
.ws115{word-spacing:11.476800px;}
.ws6e{word-spacing:11.519820px;}
.ws44{word-spacing:11.527200px;}
.wsb0{word-spacing:11.534400px;}
.ws6f{word-spacing:11.541600px;}
.ws96{word-spacing:11.606400px;}
.ws127{word-spacing:11.692800px;}
.wsf{word-spacing:11.736000px;}
.wse{word-spacing:11.764800px;}
.ws112{word-spacing:11.786400px;}
.ws111{word-spacing:11.793600px;}
.ws146{word-spacing:11.959200px;}
.wse0{word-spacing:12.045600px;}
.ws138{word-spacing:12.168000px;}
.ws2a{word-spacing:12.247200px;}
.ws3e{word-spacing:12.290400px;}
.ws137{word-spacing:12.304800px;}
.wsa2{word-spacing:12.326400px;}
.wsa9{word-spacing:12.384000px;}
.ws66{word-spacing:12.448800px;}
.ws65{word-spacing:12.492000px;}
.ws143{word-spacing:12.549600px;}
.ws110{word-spacing:12.729600px;}
.ws10f{word-spacing:12.787200px;}
.ws14a{word-spacing:12.794400px;}
.ws52{word-spacing:12.823200px;}
.ws53{word-spacing:12.830400px;}
.ws62{word-spacing:12.844800px;}
.ws6c{word-spacing:12.909600px;}
.ws1e{word-spacing:12.945600px;}
.ws20{word-spacing:12.946800px;}
.ws132{word-spacing:12.954600px;}
.ws1f{word-spacing:12.981600px;}
.ws13f{word-spacing:13.053600px;}
.wsd3{word-spacing:13.064400px;}
.ws120{word-spacing:13.125600px;}
.wsd5{word-spacing:13.144200px;}
.wsd4{word-spacing:13.196400px;}
.wsbf{word-spacing:13.230000px;}
.ws10a{word-spacing:13.233600px;}
.wsc0{word-spacing:13.240800px;}
.ws28{word-spacing:13.255200px;}
.ws109{word-spacing:13.276800px;}
.wsb{word-spacing:13.298400px;}
.ws40{word-spacing:13.384800px;}
.ws3f{word-spacing:13.420800px;}
.ws21{word-spacing:13.456800px;}
.ws23{word-spacing:13.471200px;}
.ws22{word-spacing:13.478400px;}
.ws93{word-spacing:13.521600px;}
.ws12f{word-spacing:13.572000px;}
.wsef{word-spacing:13.600800px;}
.ws15a{word-spacing:13.615200px;}
.wsaf{word-spacing:13.680000px;}
.ws9e{word-spacing:13.701600px;}
.wsd7{word-spacing:13.737600px;}
.ws13c{word-spacing:13.759200px;}
.ws2e{word-spacing:13.975200px;}
.ws2f{word-spacing:13.982400px;}
.ws135{word-spacing:13.996800px;}
.ws55{word-spacing:14.054400px;}
.ws7a{word-spacing:14.140800px;}
.ws50{word-spacing:14.184000px;}
.ws51{word-spacing:14.191200px;}
.wsb3{word-spacing:14.234400px;}
.wsb2{word-spacing:14.263200px;}
.ws6b{word-spacing:14.306400px;}
.ws13d{word-spacing:14.335200px;}
.ws13e{word-spacing:14.342400px;}
.ws16f{word-spacing:14.378400px;}
.ws12a{word-spacing:14.436000px;}
.ws117{word-spacing:14.486400px;}
.ws12b{word-spacing:14.493600px;}
.ws9c{word-spacing:14.522400px;}
.ws9a{word-spacing:14.529600px;}
.ws10d{word-spacing:14.623200px;}
.ws9b{word-spacing:14.637600px;}
.ws10c{word-spacing:14.638740px;}
.ws10e{word-spacing:14.644800px;}
.wsc3{word-spacing:14.680800px;}
.ws8a{word-spacing:14.695200px;}
.wsc2{word-spacing:14.716800px;}
.ws12e{word-spacing:14.724000px;}
.ws4b{word-spacing:14.853600px;}
.ws142{word-spacing:14.990400px;}
.wsca{word-spacing:15.026400px;}
.ws87{word-spacing:15.062400px;}
.ws54{word-spacing:15.084000px;}
.wsd{word-spacing:15.156000px;}
.wsc{word-spacing:15.177600px;}
.ws91{word-spacing:15.213600px;}
.ws7d{word-spacing:15.235200px;}
.ws84{word-spacing:15.242400px;}
.wsa1{word-spacing:15.300000px;}
.wsd8{word-spacing:15.321600px;}
.ws105{word-spacing:15.328800px;}
.ws77{word-spacing:15.343200px;}
.ws79{word-spacing:15.350400px;}
.ws106{word-spacing:15.364800px;}
.ws136{word-spacing:15.530400px;}
.ws83{word-spacing:15.595200px;}
.ws6d{word-spacing:15.602400px;}
.ws82{word-spacing:15.631200px;}
.wsf4{word-spacing:15.652800px;}
.wsf5{word-spacing:15.710400px;}
.wsf3{word-spacing:15.748200px;}
.ws34{word-spacing:15.753600px;}
.ws36{word-spacing:15.775200px;}
.ws134{word-spacing:15.782400px;}
.ws35{word-spacing:15.789600px;}
.ws5b{word-spacing:15.796800px;}
.ws16e{word-spacing:15.857400px;}
.ws133{word-spacing:15.861600px;}
.ws69{word-spacing:15.870600px;}
.ws16d{word-spacing:15.876000px;}
.ws6a{word-spacing:15.890400px;}
.ws144{word-spacing:15.955200px;}
.ws12d{word-spacing:16.034400px;}
.ws1c{word-spacing:16.099200px;}
.ws1b{word-spacing:16.178400px;}
.ws1a{word-spacing:16.192800px;}
.ws19{word-spacing:16.221600px;}
.wsae{word-spacing:16.272000px;}
.wse3{word-spacing:16.430400px;}
.ws103{word-spacing:16.624800px;}
.ws68{word-spacing:16.704000px;}
.ws67{word-spacing:16.718400px;}
.ws90{word-spacing:16.729020px;}
.ws14d{word-spacing:16.754400px;}
.ws32{word-spacing:16.790400px;}
.ws14c{word-spacing:16.840020px;}
.ws123{word-spacing:16.840800px;}
.ws122{word-spacing:16.862400px;}
.ws113{word-spacing:16.876800px;}
.wse8{word-spacing:16.920000px;}
.ws17{word-spacing:16.963200px;}
.ws4a{word-spacing:16.984800px;}
.ws48{word-spacing:16.999200px;}
.ws49{word-spacing:17.006400px;}
.wsb5{word-spacing:17.121600px;}
.wsba{word-spacing:17.157600px;}
.wsb6{word-spacing:17.179200px;}
.ws43{word-spacing:17.215200px;}
.wsb1{word-spacing:17.251200px;}
.ws88{word-spacing:17.280000px;}
.ws130{word-spacing:17.380800px;}
.ws13a{word-spacing:17.467200px;}
.ws13b{word-spacing:17.496000px;}
.ws11d{word-spacing:17.568000px;}
.ws11c{word-spacing:17.589600px;}
.ws11b{word-spacing:17.596800px;}
.ws140{word-spacing:17.611200px;}
.ws7c{word-spacing:17.676000px;}
.wse5{word-spacing:17.848800px;}
.wse6{word-spacing:17.863200px;}
.wsbb{word-spacing:18.093600px;}
.ws13{word-spacing:18.151200px;}
.ws121{word-spacing:18.180000px;}
.ws7e{word-spacing:18.259200px;}
.wsf1{word-spacing:18.295200px;}
.wse9{word-spacing:18.345600px;}
.wsf0{word-spacing:18.388800px;}
.ws16{word-spacing:18.403200px;}
.ws15{word-spacing:18.444600px;}
.ws9d{word-spacing:18.525600px;}
.ws16c{word-spacing:19.044000px;}
.wsbd{word-spacing:19.252800px;}
.ws61{word-spacing:19.425600px;}
.ws60{word-spacing:19.447200px;}
.ws39{word-spacing:19.497600px;}
.ws3b{word-spacing:19.526400px;}
.ws3a{word-spacing:19.533600px;}
.ws14{word-spacing:19.562400px;}
.ws5c{word-spacing:19.762800px;}
.ws5e{word-spacing:19.764000px;}
.wsdf{word-spacing:19.850400px;}
.ws139{word-spacing:19.893600px;}
.ws128{word-spacing:19.922400px;}
.wse2{word-spacing:19.958400px;}
.ws12c{word-spacing:20.066400px;}
.wsb9{word-spacing:20.180400px;}
.wsc6{word-spacing:20.462400px;}
.wsa7{word-spacing:20.561400px;}
.wsa8{word-spacing:20.592000px;}
.wsa6{word-spacing:20.599200px;}
.ws5f{word-spacing:20.606400px;}
.wsfb{word-spacing:20.836800px;}
.wsa4{word-spacing:20.872800px;}
.ws11a{word-spacing:21.009600px;}
.ws119{word-spacing:21.052800px;}
.ws118{word-spacing:21.103200px;}
.ws157{word-spacing:21.168000px;}
.wsfc{word-spacing:21.211200px;}
.wsc7{word-spacing:21.369600px;}
.wsc8{word-spacing:21.405600px;}
.ws126{word-spacing:21.470400px;}
.ws85{word-spacing:21.572220px;}
.ws86{word-spacing:21.787200px;}
.ws148{word-spacing:21.808800px;}
.ws14b{word-spacing:21.830400px;}
.ws149{word-spacing:21.844800px;}
.ws76{word-spacing:21.996000px;}
.ws75{word-spacing:22.017600px;}
.wsa5{word-spacing:22.032000px;}
.ws74{word-spacing:22.068000px;}
.wsbc{word-spacing:22.233600px;}
.ws7b{word-spacing:22.262400px;}
.ws167{word-spacing:22.341600px;}
.ws11{word-spacing:22.442400px;}
.ws10{word-spacing:22.485600px;}
.ws37{word-spacing:22.521600px;}
.ws38{word-spacing:22.550400px;}
.wscc{word-spacing:22.615200px;}
.ws160{word-spacing:22.629600px;}
.ws5d{word-spacing:22.701600px;}
.wsaa{word-spacing:22.744800px;}
.wsfa{word-spacing:22.766400px;}
.ws8e{word-spacing:22.816800px;}
.ws8f{word-spacing:22.831200px;}
.ws8d{word-spacing:22.852800px;}
.wsf9{word-spacing:22.864800px;}
.ws73{word-spacing:23.025600px;}
.ws161{word-spacing:23.133600px;}
.wscd{word-spacing:23.241600px;}
.wsce{word-spacing:23.306400px;}
.wscf{word-spacing:23.349600px;}
.ws97{word-spacing:23.709600px;}
.wsad{word-spacing:23.767200px;}
.ws98{word-spacing:23.788800px;}
.ws14e{word-spacing:23.961600px;}
.ws163{word-spacing:24.105600px;}
.wsc9{word-spacing:24.228000px;}
.ws11f{word-spacing:24.444000px;}
.ws41{word-spacing:24.530400px;}
.ws11e{word-spacing:24.559200px;}
.ws42{word-spacing:24.573600px;}
.wsff{word-spacing:24.638400px;}
.ws4e{word-spacing:25.617600px;}
.wscb{word-spacing:25.740000px;}
.wse4{word-spacing:25.970400px;}
.ws5a{word-spacing:26.352000px;}
.wsbe{word-spacing:26.618400px;}
.ws147{word-spacing:26.683200px;}
.wsac{word-spacing:26.769600px;}
.ws70{word-spacing:27.129600px;}
.ws29{word-spacing:27.396000px;}
.ws12{word-spacing:27.496800px;}
.wsf6{word-spacing:27.777600px;}
.wsf7{word-spacing:27.799200px;}
.wsb7{word-spacing:28.159200px;}
.wsf8{word-spacing:28.562400px;}
.ws145{word-spacing:28.591200px;}
.wsea{word-spacing:29.023200px;}
.ws165{word-spacing:29.080800px;}
.ws18{word-spacing:29.160000px;}
.ws10b{word-spacing:29.793600px;}
.ws107{word-spacing:30.276000px;}
.wsed{word-spacing:30.448800px;}
.wsd2{word-spacing:30.859200px;}
.wsd0{word-spacing:30.895200px;}
.wsd1{word-spacing:30.902400px;}
.ws2d{word-spacing:31.140000px;}
.ws129{word-spacing:31.269600px;}
.ws2c{word-spacing:31.985400px;}
.ws2b{word-spacing:32.076000px;}
.ws159{word-spacing:32.220000px;}
.ws158{word-spacing:32.313600px;}
.wsdc{word-spacing:33.007380px;}
.wsdd{word-spacing:33.019200px;}
.ws59{word-spacing:33.091200px;}
.wsdb{word-spacing:33.131640px;}
.wsde{word-spacing:33.134400px;}
.ws58{word-spacing:33.177600px;}
.wsfe{word-spacing:33.674400px;}
.wsfd{word-spacing:33.724800px;}
.wsa0{word-spacing:34.135200px;}
.ws7f{word-spacing:34.912800px;}
.ws4f{word-spacing:35.402400px;}
.ws100{word-spacing:35.627220px;}
.ws102{word-spacing:35.661600px;}
.ws101{word-spacing:35.668800px;}
.ws9f{word-spacing:36.705600px;}
.ws57{word-spacing:37.828800px;}
.wsee{word-spacing:38.376000px;}
.ws81{word-spacing:38.851200px;}
.ws56{word-spacing:40.773600px;}
.wsb8{word-spacing:40.845600px;}
.ws8b{word-spacing:42.364800px;}
.wsab{word-spacing:45.604800px;}
.ws4c{word-spacing:47.512800px;}
.ws89{word-spacing:54.849600px;}
.ws15f{word-spacing:57.477600px;}
.ws15b{word-spacing:62.251200px;}
.ws104{word-spacing:69.287700px;}
.ws124{word-spacing:134.064600px;}
.ws125{word-spacing:491.408880px;}
._12{margin-left:-11.004780px;}
._11{margin-left:-6.487200px;}
._a{margin-left:-2.032800px;}
._1{margin-left:-1.008000px;}
._0{width:1.008000px;}
._6{width:2.376000px;}
._9{width:3.412800px;}
._4{width:4.780800px;}
._5{width:5.860020px;}
._8{width:6.970980px;}
._3{width:8.064000px;}
._2{width:9.462420px;}
._7{width:10.636740px;}
._c{width:12.432060px;}
._10{width:13.552740px;}
._e{width:14.580000px;}
._d{width:15.717600px;}
._f{width:16.732800px;}
._b{width:32.428800px;}
._13{width:60.048120px;}
.fc7{color:rgb(0,0,192);}
.fc6{color:rgb(127,0,85);}
.fc5{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc2{color:rgb(1,28,71);}
.fc4{color:rgb(37,37,37);}
.fc1{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.040000px;}
.fs2{font-size:61.920000px;}
.fs4{font-size:64.800000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:95.040000px;}
.y0{bottom:0.000000px;}
.y58{bottom:4.320000px;}
.y1{bottom:13.500000px;}
.y56{bottom:44.040030px;}
.y57{bottom:53.220030px;}
.y215{bottom:95.160030px;}
.y1e5{bottom:96.960015px;}
.y18f{bottom:99.120030px;}
.y2ca{bottom:99.840030px;}
.y30c{bottom:102.000030px;}
.y26a{bottom:103.440015px;}
.yca{bottom:107.040030px;}
.y14a{bottom:107.400015px;}
.y75{bottom:107.760030px;}
.y176{bottom:108.120030px;}
.ye4{bottom:108.480015px;}
.y346{bottom:109.200030px;}
.y2d9{bottom:109.560030px;}
.yfd{bottom:109.920015px;}
.y1f4{bottom:111.000030px;}
.y32{bottom:111.720030px;}
.y2da{bottom:112.440015px;}
.y23a{bottom:113.520030px;}
.y253{bottom:113.880015px;}
.y2b8{bottom:114.600030px;}
.y1e4{bottom:114.960015px;}
.y347{bottom:115.320030px;}
.y380{bottom:116.040030px;}
.y273{bottom:117.120030px;}
.y294{bottom:117.480015px;}
.y2d8{bottom:117.840030px;}
.y9f{bottom:118.200030px;}
.y269{bottom:120.360015px;}
.y2a9{bottom:120.720030px;}
.y18e{bottom:121.080030px;}
.y1c6{bottom:121.800030px;}
.y30b{bottom:122.880015px;}
.y38d{bottom:124.680030px;}
.y301{bottom:125.760030px;}
.y1b7{bottom:127.920015px;}
.y149{bottom:128.640030px;}
.y74{bottom:129.000030px;}
.ye3{bottom:129.720030px;}
.y345{bottom:130.440015px;}
.y160{bottom:130.800030px;}
.yfc{bottom:131.160030px;}
.y1f3{bottom:131.880015px;}
.y31{bottom:132.960015px;}
.y331{bottom:134.760030px;}
.yc9{bottom:135.120030px;}
.y2b7{bottom:135.480015px;}
.y1e3{bottom:135.840015px;}
.y2bd{bottom:136.200030px;}
.y37f{bottom:137.280000px;}
.y2f0{bottom:137.640000px;}
.y272{bottom:138.360000px;}
.y293{bottom:138.720000px;}
.y9e{bottom:139.080000px;}
.y2a8{bottom:141.960000px;}
.y1c5{bottom:142.680000px;}
.y18d{bottom:143.400000px;}
.y321{bottom:143.760000px;}
.y30a{bottom:144.120000px;}
.y38c{bottom:145.560000px;}
.y300{bottom:146.640000px;}
.y1b6{bottom:149.160000px;}
.y148{bottom:149.520000px;}
.y110{bottom:149.880000px;}
.y73{bottom:150.240000px;}
.ye2{bottom:150.600000px;}
.y344{bottom:151.320000px;}
.yfb{bottom:152.040000px;}
.y1f2{bottom:153.120000px;}
.y2b4{bottom:153.840000px;}
.y30{bottom:154.200000px;}
.y271{bottom:155.280000px;}
.y330{bottom:155.640000px;}
.y252{bottom:156.000000px;}
.y2b6{bottom:156.720000px;}
.y1e2{bottom:157.080000px;}
.y37e{bottom:158.160000px;}
.y292{bottom:159.600000px;}
.y2d7{bottom:159.960000px;}
.y9d{bottom:160.320000px;}
.y128{bottom:161.400000px;}
.y2a7{bottom:162.840000px;}
.y2c9{bottom:163.200000px;}
.yc8{bottom:163.560000px;}
.y1c4{bottom:163.920000px;}
.y320{bottom:165.000000px;}
.y18c{bottom:165.360000px;}
.y38b{bottom:166.800000px;}
.y2ff{bottom:167.880000px;}
.y1b5{bottom:170.040000px;}
.y147{bottom:170.760000px;}
.y72{bottom:171.120000px;}
.y175{bottom:171.480000px;}
.ye1{bottom:171.840000px;}
.y343{bottom:172.560000px;}
.yfa{bottom:173.280000px;}
.y1f1{bottom:174.360000px;}
.y2f{bottom:175.080000px;}
.y326{bottom:176.520000px;}
.y291{bottom:176.880000px;}
.y2b5{bottom:177.960000px;}
.y1e1{bottom:178.320000px;}
.y37d{bottom:179.400000px;}
.y9c{bottom:181.200000px;}
.y127{bottom:182.280000px;}
.y2a6{bottom:184.080000px;}
.y2c8{bottom:184.440000px;}
.y1c3{bottom:184.800000px;}
.y31f{bottom:185.880000px;}
.y309{bottom:186.240000px;}
.y18b{bottom:187.320000px;}
.y38a{bottom:187.680000px;}
.y2fe{bottom:189.120000px;}
.yc7{bottom:190.200000px;}
.y1b4{bottom:191.280000px;}
.y10f{bottom:192.000000px;}
.y174{bottom:192.360000px;}
.ye0{bottom:192.720000px;}
.y71{bottom:193.440000px;}
.y32f{bottom:193.800000px;}
.yf9{bottom:194.160000px;}
.y1f0{bottom:195.240000px;}
.y2e{bottom:196.320000px;}
.y325{bottom:197.400000px;}
.y35e{bottom:197.760000px;}
.y1e0{bottom:199.200000px;}
.y2bc{bottom:199.560000px;}
.y37c{bottom:200.280000px;}
.y2d6{bottom:202.080000px;}
.y9b{bottom:203.520000px;}
.y2a5{bottom:204.960000px;}
.y2c7{bottom:205.320000px;}
.y1c2{bottom:206.040000px;}
.y31e{bottom:207.120000px;}
.y308{bottom:207.480000px;}
.y389{bottom:208.560000px;}
.y18a{bottom:209.640000px;}
.y2fd{bottom:210.000000px;}
.yc6{bottom:211.440000px;}
.y1b3{bottom:212.520000px;}
.y146{bottom:212.880000px;}
.y10e{bottom:213.240000px;}
.y173{bottom:213.600000px;}
.ydf{bottom:213.960000px;}
.y70{bottom:214.320000px;}
.y342{bottom:214.680000px;}
.yf8{bottom:215.400000px;}
.y1ef{bottom:216.480000px;}
.y2d{bottom:217.200000px;}
.y207{bottom:217.560000px;}
.y27e{bottom:217.920000px;}
.y324{bottom:218.640000px;}
.y35d{bottom:219.000000px;}
.y1df{bottom:220.440000px;}
.y37b{bottom:221.520000px;}
.y2d5{bottom:223.320000px;}
.y126{bottom:224.760000px;}
.y9a{bottom:225.480000px;}
.y2a4{bottom:226.200000px;}
.y2c6{bottom:226.560000px;}
.y1c1{bottom:227.280000px;}
.y31d{bottom:228.360000px;}
.y307{bottom:228.720000px;}
.y388{bottom:229.080000px;}
.y189{bottom:230.880000px;}
.y2fc{bottom:231.240000px;}
.yc5{bottom:232.320000px;}
.y1b2{bottom:233.400000px;}
.y145{bottom:234.120000px;}
.y10d{bottom:234.480000px;}
.y172{bottom:234.840000px;}
.yde{bottom:235.200000px;}
.y6f{bottom:235.560000px;}
.y341{bottom:235.920000px;}
.yf7{bottom:236.640000px;}
.y1ee{bottom:237.360000px;}
.y284{bottom:237.720000px;}
.y2c{bottom:238.440000px;}
.y206{bottom:239.520000px;}
.y323{bottom:239.880000px;}
.y1de{bottom:241.320000px;}
.y2bb{bottom:241.680000px;}
.y37a{bottom:242.400000px;}
.y2d4{bottom:244.560000px;}
.y125{bottom:245.640000px;}
.y99{bottom:247.440000px;}
.y2c5{bottom:247.800000px;}
.y1c0{bottom:248.160000px;}
.y31c{bottom:249.240000px;}
.y306{bottom:249.600000px;}
.y387{bottom:249.960000px;}
.y188{bottom:251.760000px;}
.ydd{bottom:252.120000px;}
.y2fb{bottom:252.480000px;}
.yc4{bottom:253.560000px;}
.y144{bottom:254.640000px;}
.y10c{bottom:255.360000px;}
.y171{bottom:255.720000px;}
.y6e{bottom:256.440000px;}
.y340{bottom:257.160000px;}
.yf6{bottom:257.520000px;}
.y1ed{bottom:258.600000px;}
.y35c{bottom:258.960000px;}
.y2b{bottom:259.680000px;}
.y205{bottom:260.760000px;}
.y379{bottom:261.840000px;}
.y1dd{bottom:262.560000px;}
.y2d3{bottom:265.440000px;}
.y22d{bottom:265.800000px;}
.y124{bottom:266.880000px;}
.y2a3{bottom:268.320000px;}
.y2c4{bottom:268.680000px;}
.y1bf{bottom:269.400000px;}
.y98{bottom:269.760000px;}
.y31b{bottom:270.480000px;}
.y305{bottom:270.840000px;}
.y143{bottom:272.640000px;}
.y187{bottom:273.000000px;}
.y2ee{bottom:273.360000px;}
.yc3{bottom:274.800000px;}
.y1b1{bottom:275.520000px;}
.y25d{bottom:276.240000px;}
.y10b{bottom:276.600000px;}
.y170{bottom:276.960000px;}
.y6d{bottom:277.680000px;}
.y33f{bottom:278.040000px;}
.y35b{bottom:278.400000px;}
.yf5{bottom:278.760000px;}
.y1ec{bottom:279.840000px;}
.y2a{bottom:280.560000px;}
.y378{bottom:280.920000px;}
.y204{bottom:282.000000px;}
.y1dc{bottom:283.800000px;}
.y2d2{bottom:286.680000px;}
.y22c{bottom:287.040000px;}
.y2a2{bottom:289.560000px;}
.y2c3{bottom:289.920000px;}
.y1be{bottom:290.640000px;}
.y386{bottom:291.360000px;}
.y97{bottom:291.720000px;}
.y246{bottom:292.800000px;}
.y142{bottom:293.520000px;}
.y186{bottom:294.240000px;}
.yc2{bottom:295.680000px;}
.y1b0{bottom:296.760000px;}
.y10a{bottom:297.480000px;}
.y16f{bottom:297.840000px;}
.y33e{bottom:299.280000px;}
.y6c{bottom:299.640000px;}
.yf4{bottom:300.000000px;}
.y377{bottom:300.360000px;}
.y1eb{bottom:300.720000px;}
.y29{bottom:301.800000px;}
.y203{bottom:302.880000px;}
.y1db{bottom:304.680000px;}
.y2ba{bottom:305.040000px;}
.y2d1{bottom:307.560000px;}
.y22b{bottom:307.920000px;}
.y123{bottom:309.000000px;}
.y2a1{bottom:310.800000px;}
.y1bd{bottom:311.520000px;}
.y385{bottom:311.880000px;}
.y31a{bottom:312.600000px;}
.y304{bottom:312.960000px;}
.y96{bottom:313.680000px;}
.y245{bottom:314.040000px;}
.y109{bottom:314.760000px;}
.y185{bottom:315.120000px;}
.y2ed{bottom:315.480000px;}
.yc1{bottom:316.920000px;}
.y35a{bottom:317.280000px;}
.y1af{bottom:318.000000px;}
.y25c{bottom:318.360000px;}
.y312{bottom:318.720000px;}
.y16e{bottom:319.080000px;}
.y376{bottom:319.800000px;}
.y33d{bottom:320.160000px;}
.y6b{bottom:320.880000px;}
.y1ea{bottom:321.960000px;}
.y2b3{bottom:322.680000px;}
.y28{bottom:323.040000px;}
.y202{bottom:324.120000px;}
.y1da{bottom:325.920000px;}
.y2d0{bottom:328.800000px;}
.y22a{bottom:329.160000px;}
.y122{bottom:329.880000px;}
.y2a0{bottom:331.680000px;}
.y2c2{bottom:332.040000px;}
.y1bc{bottom:332.760000px;}
.y319{bottom:333.840000px;}
.y303{bottom:334.200000px;}
.y244{bottom:334.920000px;}
.y141{bottom:335.640000px;}
.y95{bottom:336.000000px;}
.y184{bottom:336.360000px;}
.yc0{bottom:338.160000px;}
.y1ae{bottom:338.880000px;}
.y375{bottom:339.240000px;}
.y311{bottom:339.960000px;}
.y16d{bottom:340.320000px;}
.y251{bottom:340.680000px;}
.y322{bottom:341.400000px;}
.y15f{bottom:342.120000px;}
.y6a{bottom:342.840000px;}
.y27{bottom:343.920000px;}
.y201{bottom:346.080000px;}
.y1d9{bottom:347.160000px;}
.y229{bottom:350.040000px;}
.y318{bottom:350.760000px;}
.y121{bottom:351.120000px;}
.y243{bottom:352.200000px;}
.y29f{bottom:352.920000px;}
.y2c1{bottom:353.280000px;}
.y1bb{bottom:353.640000px;}
.y302{bottom:355.080000px;}
.y359{bottom:355.800000px;}
.y270{bottom:356.160000px;}
.y140{bottom:356.880000px;}
.y183{bottom:357.240000px;}
.y2ec{bottom:357.600000px;}
.y94{bottom:357.960000px;}
.ybf{bottom:359.040000px;}
.y1ad{bottom:360.120000px;}
.y374{bottom:360.480000px;}
.y310{bottom:360.840000px;}
.y16c{bottom:361.200000px;}
.y250{bottom:361.920000px;}
.y33c{bottom:362.640000px;}
.y15e{bottom:363.000000px;}
.y69{bottom:364.080000px;}
.y26{bottom:365.160000px;}
.y1d8{bottom:368.040000px;}
.y2b9{bottom:368.400000px;}
.y2cf{bottom:370.920000px;}
.y228{bottom:371.280000px;}
.y120{bottom:372.360000px;}
.y29e{bottom:373.800000px;}
.y2c0{bottom:374.160000px;}
.y1ba{bottom:374.880000px;}
.y358{bottom:375.240000px;}
.y26f{bottom:377.040000px;}
.y13f{bottom:378.120000px;}
.y182{bottom:378.480000px;}
.y2eb{bottom:378.840000px;}
.y93{bottom:380.280000px;}
.y1ac{bottom:381.360000px;}
.y373{bottom:381.720000px;}
.y30f{bottom:382.080000px;}
.y16b{bottom:382.440000px;}
.y24f{bottom:382.800000px;}
.y33b{bottom:383.520000px;}
.y15d{bottom:384.240000px;}
.y1e9{bottom:385.320000px;}
.y25{bottom:386.040000px;}
.y1d7{bottom:389.280000px;}
.y200{bottom:390.360000px;}
.y29d{bottom:390.720000px;}
.y2ce{bottom:392.160000px;}
.y227{bottom:393.240000px;}
.y290{bottom:393.960000px;}
.y26e{bottom:394.320000px;}
.y357{bottom:394.680000px;}
.y2bf{bottom:395.400000px;}
.y1b9{bottom:396.120000px;}
.y13e{bottom:399.000000px;}
.y30e{bottom:399.360000px;}
.y181{bottom:399.720000px;}
.y55{bottom:400.080000px;}
.ybe{bottom:401.160000px;}
.y92{bottom:402.240000px;}
.y372{bottom:402.600000px;}
.y16a{bottom:403.320000px;}
.y33a{bottom:404.760000px;}
.y15c{bottom:405.120000px;}
.y1e8{bottom:406.200000px;}
.y24{bottom:407.280000px;}
.ydc{bottom:409.440000px;}
.y1d6{bottom:410.160000px;}
.y1ff{bottom:411.240000px;}
.y2be{bottom:412.680000px;}
.y1b8{bottom:413.040000px;}
.y2cd{bottom:413.400000px;}
.y356{bottom:413.760000px;}
.y11f{bottom:414.480000px;}
.y28f{bottom:414.840000px;}
.y226{bottom:415.200000px;}
.y384{bottom:415.560000px;}
.y13d{bottom:420.240000px;}
.y180{bottom:420.600000px;}
.y2ea{bottom:420.960000px;}
.y54{bottom:421.320000px;}
.ybd{bottom:422.400000px;}
.y2b1{bottom:422.760000px;}
.y1ab{bottom:423.480000px;}
.y371{bottom:423.840000px;}
.y91{bottom:424.560000px;}
.y339{bottom:425.640000px;}
.yf3{bottom:426.000000px;}
.y15b{bottom:426.360000px;}
.y1e7{bottom:427.440000px;}
.y23{bottom:428.520000px;}
.ydb{bottom:430.320000px;}
.y1d5{bottom:431.400000px;}
.y355{bottom:433.200000px;}
.y1fe{bottom:433.560000px;}
.y2cc{bottom:434.280000px;}
.y268{bottom:435.000000px;}
.y11e{bottom:435.360000px;}
.y28e{bottom:436.080000px;}
.y225{bottom:437.520000px;}
.y13c{bottom:441.480000px;}
.y17f{bottom:441.840000px;}
.y53{bottom:442.560000px;}
.ybc{bottom:443.640000px;}
.y1aa{bottom:444.360000px;}
.y370{bottom:444.720000px;}
.y90{bottom:445.440000px;}
.y169{bottom:445.800000px;}
.y338{bottom:446.880000px;}
.yf2{bottom:447.240000px;}
.y15a{bottom:447.600000px;}
.y1e6{bottom:448.680000px;}
.y22{bottom:449.400000px;}
.y2cb{bottom:451.560000px;}
.yda{bottom:452.640000px;}
.y28d{bottom:453.000000px;}
.y1fd{bottom:455.520000px;}
.y267{bottom:456.240000px;}
.y11d{bottom:456.600000px;}
.y383{bottom:456.960000px;}
.y224{bottom:458.400000px;}
.y13b{bottom:462.360000px;}
.y17e{bottom:462.720000px;}
.y2e9{bottom:463.080000px;}
.y52{bottom:463.440000px;}
.ybb{bottom:464.520000px;}
.y2b0{bottom:464.880000px;}
.y1a9{bottom:465.600000px;}
.y36f{bottom:465.960000px;}
.y8f{bottom:466.680000px;}
.y337{bottom:468.120000px;}
.y159{bottom:468.480000px;}
.yf1{bottom:469.200000px;}
.y20f{bottom:469.560000px;}
.y21{bottom:470.640000px;}
.y354{bottom:472.080000px;}
.yd9{bottom:473.520000px;}
.y266{bottom:477.120000px;}
.y382{bottom:477.480000px;}
.y11c{bottom:477.840000px;}
.y242{bottom:480.360000px;}
.y223{bottom:480.720000px;}
.y13a{bottom:483.600000px;}
.y17d{bottom:483.960000px;}
.y2e8{bottom:484.320000px;}
.y51{bottom:484.680000px;}
.yba{bottom:485.760000px;}
.y1a8{bottom:486.840000px;}
.y36e{bottom:487.200000px;}
.y8e{bottom:487.560000px;}
.y168{bottom:487.920000px;}
.y336{bottom:489.000000px;}
.y158{bottom:489.720000px;}
.yf0{bottom:490.440000px;}
.y20e{bottom:490.800000px;}
.y353{bottom:491.160000px;}
.y20{bottom:491.520000px;}
.y1d4{bottom:494.760000px;}
.yd8{bottom:495.840000px;}
.y265{bottom:498.360000px;}
.y11b{bottom:498.720000px;}
.y1fc{bottom:499.800000px;}
.y381{bottom:500.160000px;}
.y222{bottom:501.600000px;}
.y139{bottom:504.480000px;}
.y17c{bottom:505.200000px;}
.y50{bottom:505.920000px;}
.yb9{bottom:507.000000px;}
.y1a7{bottom:507.720000px;}
.y36d{bottom:508.080000px;}
.y8d{bottom:508.800000px;}
.y167{bottom:509.160000px;}
.y335{bottom:510.240000px;}
.y352{bottom:510.600000px;}
.y157{bottom:510.960000px;}
.y20d{bottom:511.680000px;}
.yef{bottom:512.400000px;}
.y1f{bottom:512.760000px;}
.y239{bottom:514.560000px;}
.y1d3{bottom:516.000000px;}
.yd7{bottom:516.720000px;}
.y264{bottom:519.600000px;}
.y11a{bottom:519.960000px;}
.y1fb{bottom:521.040000px;}
.y241{bottom:522.480000px;}
.y214{bottom:523.920000px;}
.y27d{bottom:525.000000px;}
.y138{bottom:525.720000px;}
.y17b{bottom:526.080000px;}
.y2e7{bottom:526.440000px;}
.y4f{bottom:526.800000px;}
.yb8{bottom:527.880000px;}
.y2af{bottom:528.240000px;}
.y1a6{bottom:528.960000px;}
.y36c{bottom:529.320000px;}
.y2b2{bottom:529.680000px;}
.y8c{bottom:530.040000px;}
.y334{bottom:531.480000px;}
.y156{bottom:531.840000px;}
.y20c{bottom:532.920000px;}
.yee{bottom:533.640000px;}
.y1e{bottom:534.000000px;}
.y238{bottom:535.800000px;}
.y119{bottom:536.880000px;}
.yd6{bottom:539.040000px;}
.y263{bottom:540.480000px;}
.y1fa{bottom:543.000000px;}
.y240{bottom:543.720000px;}
.y213{bottom:545.160000px;}
.y221{bottom:545.880000px;}
.y27c{bottom:546.240000px;}
.y137{bottom:546.960000px;}
.y17a{bottom:547.320000px;}
.y2e6{bottom:547.680000px;}
.y4e{bottom:548.040000px;}
.yb7{bottom:549.120000px;}
.y351{bottom:549.480000px;}
.y1a5{bottom:550.200000px;}
.y36b{bottom:550.560000px;}
.y8b{bottom:550.920000px;}
.y166{bottom:551.280000px;}
.y333{bottom:552.360000px;}
.y155{bottom:553.080000px;}
.y2ef{bottom:553.800000px;}
.y20b{bottom:554.160000px;}
.y1d{bottom:554.880000px;}
.yed{bottom:555.600000px;}
.y32e{bottom:556.320000px;}
.y237{bottom:556.680000px;}
.y1d2{bottom:558.120000px;}
.yd5{bottom:559.920000px;}
.y262{bottom:561.720000px;}
.y136{bottom:563.880000px;}
.y1f9{bottom:564.960000px;}
.y212{bottom:566.040000px;}
.y220{bottom:567.120000px;}
.y179{bottom:568.560000px;}
.y4d{bottom:568.920000px;}
.y332{bottom:569.280000px;}
.yb6{bottom:570.000000px;}
.y2ae{bottom:570.360000px;}
.y350{bottom:570.720000px;}
.y1a4{bottom:571.080000px;}
.y8a{bottom:572.160000px;}
.y154{bottom:573.960000px;}
.y20a{bottom:575.040000px;}
.y1c{bottom:576.120000px;}
.yec{bottom:576.480000px;}
.y32d{bottom:577.560000px;}
.y236{bottom:577.920000px;}
.y1d1{bottom:579.000000px;}
.y25b{bottom:579.720000px;}
.y23f{bottom:581.880000px;}
.yd4{bottom:582.240000px;}
.y261{bottom:582.600000px;}
.y29c{bottom:584.040000px;}
.y1f8{bottom:587.280000px;}
.y21f{bottom:588.360000px;}
.y178{bottom:589.440000px;}
.y2e5{bottom:589.800000px;}
.y4c{bottom:590.160000px;}
.yb5{bottom:591.240000px;}
.y2ad{bottom:591.600000px;}
.y34f{bottom:591.960000px;}
.y1a3{bottom:592.320000px;}
.y89{bottom:593.400000px;}
.y108{bottom:594.120000px;}
.y153{bottom:595.200000px;}
.y209{bottom:596.280000px;}
.y1b{bottom:597.360000px;}
.y32c{bottom:598.440000px;}
.yeb{bottom:598.800000px;}
.y235{bottom:599.160000px;}
.y1d0{bottom:600.240000px;}
.y25a{bottom:600.600000px;}
.yd3{bottom:603.120000px;}
.y260{bottom:603.840000px;}
.y29b{bottom:605.280000px;}
.y177{bottom:606.720000px;}
.y1f7{bottom:608.520000px;}
.y21e{bottom:609.240000px;}
.y27b{bottom:609.600000px;}
.y2e4{bottom:610.680000px;}
.y36a{bottom:611.040000px;}
.y4b{bottom:611.400000px;}
.yb4{bottom:612.480000px;}
.y34e{bottom:612.840000px;}
.y1a2{bottom:613.200000px;}
.y88{bottom:614.280000px;}
.y165{bottom:614.640000px;}
.y107{bottom:615.360000px;}
.y152{bottom:616.440000px;}
.y208{bottom:617.520000px;}
.y1a{bottom:618.240000px;}
.y32b{bottom:619.680000px;}
.yea{bottom:620.040000px;}
.y1cf{bottom:621.480000px;}
.y259{bottom:621.840000px;}
.y25f{bottom:625.080000px;}
.yd2{bottom:625.440000px;}
.y29a{bottom:626.160000px;}
.y1f6{bottom:629.400000px;}
.y21d{bottom:630.480000px;}
.y369{bottom:631.200000px;}
.y2e3{bottom:631.920000px;}
.y4a{bottom:632.280000px;}
.yb3{bottom:633.360000px;}
.y2ac{bottom:633.720000px;}
.y34d{bottom:634.080000px;}
.y1a1{bottom:634.440000px;}
.y87{bottom:635.520000px;}
.y106{bottom:636.600000px;}
.y151{bottom:637.320000px;}
.y19{bottom:639.480000px;}
.ye9{bottom:640.920000px;}
.y234{bottom:641.280000px;}
.y25e{bottom:642.000000px;}
.y1ce{bottom:642.360000px;}
.y258{bottom:642.720000px;}
.y299{bottom:643.440000px;}
.yd1{bottom:646.320000px;}
.y1f5{bottom:650.640000px;}
.y368{bottom:651.000000px;}
.y21c{bottom:651.360000px;}
.y27a{bottom:651.720000px;}
.y2e2{bottom:653.160000px;}
.y49{bottom:653.520000px;}
.yb2{bottom:654.600000px;}
.y34c{bottom:654.960000px;}
.y1a0{bottom:655.320000px;}
.y86{bottom:656.400000px;}
.y164{bottom:656.760000px;}
.y105{bottom:657.480000px;}
.y118{bottom:657.840000px;}
.y28c{bottom:658.200000px;}
.y150{bottom:658.560000px;}
.y257{bottom:660.000000px;}
.y18{bottom:660.360000px;}
.y283{bottom:661.080000px;}
.y32a{bottom:661.800000px;}
.ye8{bottom:662.160000px;}
.y233{bottom:662.520000px;}
.y1cd{bottom:663.600000px;}
.yd0{bottom:667.560000px;}
.y24e{bottom:671.160000px;}
.y211{bottom:671.520000px;}
.y279{bottom:672.600000px;}
.y21b{bottom:673.680000px;}
.y2e1{bottom:674.040000px;}
.y48{bottom:674.400000px;}
.yb1{bottom:675.480000px;}
.y26d{bottom:675.840000px;}
.y34b{bottom:676.200000px;}
.y85{bottom:677.640000px;}
.y163{bottom:678.000000px;}
.y104{bottom:678.720000px;}
.y117{bottom:679.440000px;}
.y317{bottom:680.520000px;}
.y17{bottom:681.600000px;}
.y282{bottom:681.960000px;}
.y329{bottom:683.040000px;}
.y232{bottom:683.400000px;}
.ye7{bottom:684.120000px;}
.y1cc{bottom:684.480000px;}
.y396{bottom:684.840000px;}
.ycf{bottom:688.800000px;}
.y278{bottom:689.880000px;}
.y367{bottom:690.960000px;}
.y24d{bottom:692.040000px;}
.y210{bottom:692.760000px;}
.y2fa{bottom:693.840000px;}
.y21a{bottom:694.560000px;}
.y2e0{bottom:695.280000px;}
.y47{bottom:695.640000px;}
.yb0{bottom:696.720000px;}
.y26c{bottom:697.080000px;}
.y34a{bottom:697.440000px;}
.y84{bottom:698.880000px;}
.y103{bottom:699.600000px;}
.y28b{bottom:700.320000px;}
.y116{bottom:701.040000px;}
.y316{bottom:701.400000px;}
.y16{bottom:702.840000px;}
.y281{bottom:703.200000px;}
.y328{bottom:703.920000px;}
.y231{bottom:704.640000px;}
.ye6{bottom:705.360000px;}
.y1cb{bottom:705.720000px;}
.yce{bottom:709.680000px;}
.y366{bottom:711.120000px;}
.y24c{bottom:713.280000px;}
.y26b{bottom:714.000000px;}
.y2f9{bottom:714.720000px;}
.y2df{bottom:716.520000px;}
.y46{bottom:716.880000px;}
.yaf{bottom:717.960000px;}
.y349{bottom:718.320000px;}
.y83{bottom:719.760000px;}
.y162{bottom:720.120000px;}
.y28a{bottom:721.560000px;}
.y102{bottom:721.920000px;}
.y115{bottom:722.640000px;}
.y1ca{bottom:723.000000px;}
.y15{bottom:723.720000px;}
.y280{bottom:724.080000px;}
.y327{bottom:725.160000px;}
.y230{bottom:725.520000px;}
.ye5{bottom:725.880000px;}
.y395{bottom:726.960000px;}
.y24b{bottom:730.200000px;}
.ycd{bottom:730.920000px;}
.y365{bottom:731.280000px;}
.y348{bottom:735.600000px;}
.y2f8{bottom:735.960000px;}
.y161{bottom:737.400000px;}
.y45{bottom:737.760000px;}
.yae{bottom:738.840000px;}
.y2ab{bottom:739.200000px;}
.y82{bottom:741.000000px;}
.y27f{bottom:741.360000px;}
.y19f{bottom:742.080000px;}
.y289{bottom:742.440000px;}
.y101{bottom:742.800000px;}
.y315{bottom:743.520000px;}
.y114{bottom:743.880000px;}
.y14{bottom:744.960000px;}
.y22f{bottom:746.760000px;}
.y394{bottom:747.840000px;}
.y364{bottom:751.080000px;}
.ycc{bottom:751.800000px;}
.y23e{bottom:754.680000px;}
.y2f7{bottom:757.200000px;}
.y2de{bottom:758.640000px;}
.y44{bottom:759.000000px;}
.yad{bottom:760.080000px;}
.y219{bottom:760.800000px;}
.y81{bottom:761.880000px;}
.y19e{bottom:762.960000px;}
.y22e{bottom:763.680000px;}
.y100{bottom:764.040000px;}
.y314{bottom:764.760000px;}
.y113{bottom:765.120000px;}
.y13{bottom:765.840000px;}
.y68{bottom:767.280000px;}
.y135{bottom:769.080000px;}
.y363{bottom:771.240000px;}
.ycb{bottom:773.040000px;}
.y23d{bottom:775.560000px;}
.y2aa{bottom:777.360000px;}
.y2f6{bottom:778.080000px;}
.y2dd{bottom:779.520000px;}
.y43{bottom:780.240000px;}
.yac{bottom:781.320000px;}
.y313{bottom:781.680000px;}
.y80{bottom:783.120000px;}
.y19d{bottom:784.200000px;}
.y288{bottom:784.920000px;}
.yff{bottom:786.000000px;}
.y12{bottom:787.080000px;}
.y393{bottom:790.320000px;}
.y362{bottom:791.040000px;}
.y67{bottom:794.280000px;}
.y23c{bottom:796.800000px;}
.y2f5{bottom:799.320000px;}
.y2dc{bottom:800.760000px;}
.y42{bottom:801.120000px;}
.yab{bottom:802.200000px;}
.y7f{bottom:804.360000px;}
.y19c{bottom:805.080000px;}
.y14f{bottom:805.800000px;}
.yfe{bottom:807.240000px;}
.y11{bottom:808.320000px;}
.y134{bottom:810.840000px;}
.y361{bottom:811.200000px;}
.y23b{bottom:813.720000px;}
.y66{bottom:815.160000px;}
.y2db{bottom:817.680000px;}
.y2f4{bottom:820.200000px;}
.y41{bottom:822.360000px;}
.y256{bottom:823.080000px;}
.yaa{bottom:823.440000px;}
.y7e{bottom:825.240000px;}
.y19b{bottom:826.320000px;}
.y14e{bottom:826.680000px;}
.y112{bottom:828.480000px;}
.y10{bottom:829.200000px;}
.y360{bottom:831.000000px;}
.y133{bottom:831.720000px;}
.y392{bottom:833.160000px;}
.y65{bottom:836.400000px;}
.y2f3{bottom:841.440000px;}
.y40{bottom:843.240000px;}
.y255{bottom:843.960000px;}
.ya9{bottom:844.320000px;}
.y7d{bottom:846.480000px;}
.y19a{bottom:847.560000px;}
.y14d{bottom:847.920000px;}
.y218{bottom:848.280000px;}
.y111{bottom:850.080000px;}
.yf{bottom:850.440000px;}
.y35f{bottom:851.160000px;}
.y132{bottom:852.240000px;}
.y391{bottom:855.480000px;}
.y64{bottom:857.640000px;}
.y254{bottom:861.240000px;}
.y2f2{bottom:862.680000px;}
.y3f{bottom:864.480000px;}
.ya8{bottom:865.560000px;}
.y287{bottom:866.640000px;}
.y7c{bottom:867.360000px;}
.y199{bottom:868.440000px;}
.y14c{bottom:869.160000px;}
.y277{bottom:869.520000px;}
.y217{bottom:870.600000px;}
.ye{bottom:871.680000px;}
.y390{bottom:877.440000px;}
.y63{bottom:878.520000px;}
.y2f1{bottom:879.600000px;}
.y298{bottom:884.280000px;}
.y3e{bottom:885.720000px;}
.y14b{bottom:886.080000px;}
.ya7{bottom:887.520000px;}
.y7b{bottom:889.680000px;}
.y276{bottom:890.400000px;}
.y216{bottom:891.480000px;}
.yd{bottom:892.560000px;}
.y131{bottom:894.000000px;}
.y62{bottom:899.760000px;}
.y30d{bottom:900.840000px;}
.y297{bottom:905.520000px;}
.y3d{bottom:906.600000px;}
.y286{bottom:908.760000px;}
.ya6{bottom:909.840000px;}
.y7a{bottom:910.560000px;}
.y198{bottom:910.920000px;}
.y275{bottom:911.640000px;}
.yc{bottom:913.800000px;}
.y130{bottom:915.240000px;}
.y24a{bottom:917.400000px;}
.y61{bottom:920.640000px;}
.y285{bottom:925.680000px;}
.y296{bottom:926.400000px;}
.y3c{bottom:927.840000px;}
.y274{bottom:928.560000px;}
.ya5{bottom:931.800000px;}
.y79{bottom:932.880000px;}
.yb{bottom:934.680000px;}
.y12f{bottom:936.120000px;}
.y249{bottom:938.280000px;}
.y60{bottom:941.880000px;}
.y38f{bottom:943.320000px;}
.y295{bottom:943.680000px;}
.y3b{bottom:949.080000px;}
.ya4{bottom:953.040000px;}
.y78{bottom:953.760000px;}
.y1c9{bottom:954.120000px;}
.ya{bottom:955.920000px;}
.y12e{bottom:957.360000px;}
.y248{bottom:959.520000px;}
.y5f{bottom:963.120000px;}
.y3a{bottom:969.960000px;}
.y38e{bottom:971.400000px;}
.y197{bottom:973.920000px;}
.ya3{bottom:975.000000px;}
.y77{bottom:976.080000px;}
.y247{bottom:976.800000px;}
.y9{bottom:977.160000px;}
.y5e{bottom:984.000000px;}
.y39{bottom:991.200000px;}
.y196{bottom:995.160000px;}
.ya2{bottom:996.240000px;}
.y76{bottom:996.960000px;}
.y1c8{bottom:997.320000px;}
.y8{bottom:998.040000px;}
.y12d{bottom:999.120000px;}
.y5d{bottom:1005.240000px;}
.y38{bottom:1012.080000px;}
.y195{bottom:1016.400000px;}
.ya1{bottom:1018.200000px;}
.y7{bottom:1019.280000px;}
.y12c{bottom:1019.640000px;}
.y5c{bottom:1026.120000px;}
.y37{bottom:1033.320000px;}
.y194{bottom:1037.280000px;}
.ya0{bottom:1039.440000px;}
.y6{bottom:1040.520000px;}
.y5b{bottom:1047.360000px;}
.y36{bottom:1054.560000px;}
.y193{bottom:1058.520000px;}
.y1c7{bottom:1060.320000px;}
.y5{bottom:1061.400000px;}
.y12b{bottom:1061.760000px;}
.y5a{bottom:1068.600000px;}
.y35{bottom:1075.440000px;}
.y192{bottom:1079.400000px;}
.y4{bottom:1082.640000px;}
.y59{bottom:1090.920000px;}
.y34{bottom:1096.680000px;}
.y191{bottom:1101.720000px;}
.y3{bottom:1103.520000px;}
.y12a{bottom:1103.880000px;}
.y33{bottom:1119.000000px;}
.y190{bottom:1123.680000px;}
.y2{bottom:1124.760000px;}
.y129{bottom:1125.120000px;}
.h9{height:21.240000px;}
.h10{height:39.350391px;}
.hd{height:43.779375px;}
.hf{height:45.815625px;}
.h11{height:46.669922px;}
.h4{height:47.988281px;}
.h3{height:48.550781px;}
.h12{height:49.209609px;}
.he{height:50.027344px;}
.h5{height:50.484375px;}
.h6{height:50.695313px;}
.h8{height:50.906250px;}
.hb{height:51.855469px;}
.hc{height:52.031250px;}
.h2{height:63.210938px;}
.h7{height:66.453750px;}
.ha{height:68.449219px;}
.h1{height:1236.000000px;}
.h0{height:1263.000000px;}
.w2{width:10.080002px;}
.w3{width:20.160000px;}
.w1{width:865.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:13.500000px;}
.x42{left:89.369745px;}
.x14{left:91.319820px;}
.x13{left:94.319820px;}
.x11{left:100.019895px;}
.x4d{left:101.969970px;}
.x54{left:104.969970px;}
.x18{left:110.669685px;}
.x5{left:121.319820px;}
.x6{left:122.676255px;}
.x16{left:127.019895px;}
.x21{left:134.819820px;}
.x27{left:137.669700px;}
.x1e{left:140.669700px;}
.x2b{left:142.619700px;}
.x15{left:148.319850px;}
.x1a{left:154.019850px;}
.x4e{left:164.669700px;}
.x19{left:175.319850px;}
.x8{left:180.082050px;}
.x3{left:185.355450px;}
.x2a{left:202.319850px;}
.x17{left:206.369700px;}
.x4{left:263.305650px;}
.xe{left:269.532750px;}
.x9{left:308.200200px;}
.xf{left:322.552650px;}
.x7{left:327.377850px;}
.xb{left:332.405250px;}
.x10{left:337.319850px;}
.xc{left:374.478450px;}
.xd{left:376.939500px;}
.xa{left:379.510200px;}
.x2{left:432.569850px;}
.x2d{left:434.932200px;}
.x20{left:445.582350px;}
.x25{left:450.540000px;}
.x12{left:455.580000px;}
.x53{left:508.432200px;}
.x45{left:510.644850px;}
.x1c{left:515.932200px;}
.x22{left:519.832350px;}
.x3f{left:525.607200px;}
.x1b{left:528.607200px;}
.x40{left:533.069850px;}
.x34{left:536.932200px;}
.x28{left:542.932200px;}
.x1d{left:545.932200px;}
.x3c{left:555.607200px;}
.x44{left:560.932200px;}
.x29{left:565.432200px;}
.x4c{left:590.969550px;}
.x3b{left:596.144850px;}
.x24{left:600.082350px;}
.x36{left:605.932200px;}
.x38{left:623.182200px;}
.x26{left:627.194850px;}
.x23{left:636.082350px;}
.x3a{left:645.644850px;}
.x1f{left:651.682200px;}
.x2e{left:655.432200px;}
.x46{left:680.107200px;}
.x2c{left:701.932200px;}
.x39{left:706.844550px;}
.x35{left:708.119700px;}
.x4b{left:712.432200px;}
.x3e{left:720.007350px;}
.x48{left:721.432200px;}
.x4a{left:734.932200px;}
.x49{left:739.432200px;}
.x37{left:742.020000px;}
.x4f{left:755.519850px;}
.x41{left:758.369700px;}
.x3d{left:762.494700px;}
.x43{left:767.969550px;}
.x30{left:769.019850px;}
.x32{left:772.169700px;}
.x47{left:778.919700px;}
.x51{left:781.019850px;}
.x52{left:782.519850px;}
.x31{left:784.019850px;}
.x33{left:787.019850px;}
.x2f{left:796.019850px;}
.x50{left:802.694700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.032000pt;}
.ls6{letter-spacing:-0.025600pt;}
.lsb{letter-spacing:-0.019200pt;}
.ls8{letter-spacing:-0.012800pt;}
.ls7{letter-spacing:-0.006400pt;}
.ls5{letter-spacing:0.000000pt;}
.ls67{letter-spacing:0.001600pt;}
.ls6a{letter-spacing:0.001760pt;}
.ls6b{letter-spacing:0.001973pt;}
.ls69{letter-spacing:0.002027pt;}
.ls40{letter-spacing:0.002133pt;}
.ls1d{letter-spacing:0.005333pt;}
.ls32{letter-spacing:0.006027pt;}
.ls1{letter-spacing:0.006400pt;}
.ls1c{letter-spacing:0.006933pt;}
.ls3a{letter-spacing:0.010133pt;}
.ls38{letter-spacing:0.012533pt;}
.ls3{letter-spacing:0.012800pt;}
.lse{letter-spacing:0.013333pt;}
.lsd{letter-spacing:0.013867pt;}
.ls2{letter-spacing:0.019200pt;}
.ls4{letter-spacing:0.025600pt;}
.ls9{letter-spacing:0.026507pt;}
.ls20{letter-spacing:0.031467pt;}
.lsc{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.038400pt;}
.ls2a{letter-spacing:0.044800pt;}
.ls7f{letter-spacing:0.206400pt;}
.ls71{letter-spacing:0.247680pt;}
.ls10{letter-spacing:0.261888pt;}
.ls7c{letter-spacing:0.264960pt;}
.ls70{letter-spacing:0.355733pt;}
.ls72{letter-spacing:0.356267pt;}
.ls82{letter-spacing:0.430848pt;}
.ls81{letter-spacing:0.447744pt;}
.ls7d{letter-spacing:0.466560pt;}
.ls21{letter-spacing:0.506880pt;}
.ls2c{letter-spacing:0.517333pt;}
.ls2e{letter-spacing:0.519552pt;}
.ls1a{letter-spacing:0.532224pt;}
.ls78{letter-spacing:0.535680pt;}
.ls30{letter-spacing:0.537600pt;}
.ls83{letter-spacing:0.540672pt;}
.ls73{letter-spacing:0.576000pt;}
.ls5c{letter-spacing:0.581867pt;}
.ls75{letter-spacing:0.604800pt;}
.ls74{letter-spacing:0.668160pt;}
.ls77{letter-spacing:0.685440pt;}
.ls76{letter-spacing:0.708480pt;}
.ls79{letter-spacing:0.714240pt;}
.ls7e{letter-spacing:0.887040pt;}
.ls27{letter-spacing:1.398933pt;}
.ls3b{letter-spacing:1.417600pt;}
.ls34{letter-spacing:1.938133pt;}
.ls66{letter-spacing:2.075733pt;}
.ls12{letter-spacing:2.181227pt;}
.ls42{letter-spacing:2.432000pt;}
.ls15{letter-spacing:3.159467pt;}
.ls14{letter-spacing:3.160000pt;}
.ls13{letter-spacing:3.481067pt;}
.ls5a{letter-spacing:3.643733pt;}
.lsa{letter-spacing:3.657067pt;}
.ls56{letter-spacing:3.893867pt;}
.ls6c{letter-spacing:3.917333pt;}
.ls19{letter-spacing:3.956800pt;}
.ls3c{letter-spacing:4.129600pt;}
.ls3d{letter-spacing:4.130133pt;}
.ls37{letter-spacing:4.334933pt;}
.ls36{letter-spacing:4.335467pt;}
.ls2d{letter-spacing:4.357333pt;}
.ls2f{letter-spacing:4.524267pt;}
.ls62{letter-spacing:4.964267pt;}
.ls7a{letter-spacing:4.969855pt;}
.ls54{letter-spacing:5.028267pt;}
.ls45{letter-spacing:5.578133pt;}
.ls80{letter-spacing:5.738667pt;}
.ls6e{letter-spacing:6.013867pt;}
.ls6d{letter-spacing:6.038400pt;}
.ls41{letter-spacing:6.180267pt;}
.ls4e{letter-spacing:6.283200pt;}
.ls58{letter-spacing:6.404267pt;}
.ls55{letter-spacing:6.581867pt;}
.ls25{letter-spacing:6.770133pt;}
.ls1b{letter-spacing:6.942400pt;}
.ls24{letter-spacing:7.290133pt;}
.ls51{letter-spacing:7.592000pt;}
.ls53{letter-spacing:7.715200pt;}
.ls35{letter-spacing:7.798933pt;}
.ls57{letter-spacing:8.214400pt;}
.ls1e{letter-spacing:8.300267pt;}
.ls5d{letter-spacing:9.121600pt;}
.ls5e{letter-spacing:9.122133pt;}
.ls22{letter-spacing:10.044800pt;}
.ls31{letter-spacing:10.289600pt;}
.ls43{letter-spacing:10.974933pt;}
.ls26{letter-spacing:12.554133pt;}
.ls50{letter-spacing:12.708267pt;}
.ls52{letter-spacing:12.716800pt;}
.ls3e{letter-spacing:13.015467pt;}
.ls64{letter-spacing:13.038400pt;}
.ls39{letter-spacing:13.067200pt;}
.ls33{letter-spacing:13.696000pt;}
.ls4f{letter-spacing:15.395200pt;}
.ls6f{letter-spacing:15.513600pt;}
.ls65{letter-spacing:15.682133pt;}
.ls1f{letter-spacing:17.396800pt;}
.ls2b{letter-spacing:17.630933pt;}
.ls59{letter-spacing:18.001600pt;}
.ls44{letter-spacing:21.168533pt;}
.ls5b{letter-spacing:22.856533pt;}
.ls61{letter-spacing:24.756267pt;}
.ls63{letter-spacing:26.978667pt;}
.ls5f{letter-spacing:27.868267pt;}
.ls49{letter-spacing:29.582933pt;}
.ls3f{letter-spacing:29.645333pt;}
.ls16{letter-spacing:29.645600pt;}
.ls4d{letter-spacing:29.770667pt;}
.ls47{letter-spacing:30.051733pt;}
.ls60{letter-spacing:30.801600pt;}
.ls4c{letter-spacing:33.458133pt;}
.ls29{letter-spacing:33.620267pt;}
.ls28{letter-spacing:33.620800pt;}
.ls46{letter-spacing:33.833067pt;}
.ls4a{letter-spacing:33.864533pt;}
.ls48{letter-spacing:36.864533pt;}
.ls18{letter-spacing:39.801600pt;}
.ls23{letter-spacing:42.301333pt;}
.ls4b{letter-spacing:45.708267pt;}
.ls17{letter-spacing:48.770347pt;}
.ls68{letter-spacing:61.653067pt;}
.lsf{letter-spacing:78.208107pt;}
.ls7b{letter-spacing:86.483200pt;}
.ws64{word-spacing:-32.007552pt;}
.ws171{word-spacing:-16.000000pt;}
.ws131{word-spacing:-15.577600pt;}
.ws78{word-spacing:-13.760000pt;}
.ws15e{word-spacing:-0.944640pt;}
.ws156{word-spacing:-0.771840pt;}
.ws151{word-spacing:-0.766080pt;}
.ws154{word-spacing:-0.743040pt;}
.ws14f{word-spacing:-0.725760pt;}
.ws150{word-spacing:-0.662400pt;}
.ws152{word-spacing:-0.633600pt;}
.ws172{word-spacing:-0.625152pt;}
.ws26{word-spacing:-0.616704pt;}
.ws155{word-spacing:-0.593280pt;}
.ws33{word-spacing:-0.591360pt;}
.ws170{word-spacing:-0.532224pt;}
.ws15d{word-spacing:-0.524160pt;}
.ws166{word-spacing:-0.515328pt;}
.ws24{word-spacing:-0.346368pt;}
.ws15c{word-spacing:-0.322560pt;}
.ws153{word-spacing:-0.305280pt;}
.ws99{word-spacing:-0.108800pt;}
.ws2{word-spacing:-0.102400pt;}
.ws1d{word-spacing:-0.096000pt;}
.ws8{word-spacing:-0.089600pt;}
.ws6{word-spacing:-0.083200pt;}
.ws7{word-spacing:-0.076800pt;}
.ws3{word-spacing:-0.070400pt;}
.ws1{word-spacing:-0.064000pt;}
.ws4{word-spacing:-0.057600pt;}
.ws45{word-spacing:-0.055040pt;}
.ws5{word-spacing:-0.051200pt;}
.wsa{word-spacing:-0.044800pt;}
.ws0{word-spacing:-0.038400pt;}
.ws25{word-spacing:-0.032000pt;}
.ws9{word-spacing:0.000000pt;}
.ws30{word-spacing:8.960000pt;}
.wsc1{word-spacing:9.088000pt;}
.wsd6{word-spacing:9.094400pt;}
.wsda{word-spacing:9.120000pt;}
.wsec{word-spacing:9.132800pt;}
.wseb{word-spacing:9.158400pt;}
.ws168{word-spacing:9.164800pt;}
.wsd9{word-spacing:9.171200pt;}
.ws16a{word-spacing:9.184000pt;}
.ws31{word-spacing:9.190400pt;}
.ws16b{word-spacing:9.228800pt;}
.wsc5{word-spacing:9.331200pt;}
.wsf2{word-spacing:9.337600pt;}
.ws8c{word-spacing:9.452800pt;}
.ws108{word-spacing:9.574400pt;}
.ws95{word-spacing:9.644800pt;}
.ws94{word-spacing:9.651200pt;}
.ws27{word-spacing:9.676800pt;}
.ws80{word-spacing:9.696000pt;}
.ws63{word-spacing:9.760000pt;}
.ws114{word-spacing:9.779200pt;}
.ws92{word-spacing:9.796907pt;}
.wse1{word-spacing:9.804800pt;}
.ws3c{word-spacing:9.811200pt;}
.ws162{word-spacing:9.843200pt;}
.ws169{word-spacing:9.856000pt;}
.ws141{word-spacing:9.868800pt;}
.ws3d{word-spacing:9.875200pt;}
.wsc4{word-spacing:9.881600pt;}
.wsa3{word-spacing:9.900800pt;}
.ws4d{word-spacing:9.907200pt;}
.wsb4{word-spacing:9.964800pt;}
.ws46{word-spacing:9.984000pt;}
.ws47{word-spacing:9.996800pt;}
.wse7{word-spacing:10.028800pt;}
.ws71{word-spacing:10.118400pt;}
.ws72{word-spacing:10.124800pt;}
.ws116{word-spacing:10.131200pt;}
.ws164{word-spacing:10.182400pt;}
.ws115{word-spacing:10.201600pt;}
.ws6e{word-spacing:10.239840pt;}
.ws44{word-spacing:10.246400pt;}
.wsb0{word-spacing:10.252800pt;}
.ws6f{word-spacing:10.259200pt;}
.ws96{word-spacing:10.316800pt;}
.ws127{word-spacing:10.393600pt;}
.wsf{word-spacing:10.432000pt;}
.wse{word-spacing:10.457600pt;}
.ws112{word-spacing:10.476800pt;}
.ws111{word-spacing:10.483200pt;}
.ws146{word-spacing:10.630400pt;}
.wse0{word-spacing:10.707200pt;}
.ws138{word-spacing:10.816000pt;}
.ws2a{word-spacing:10.886400pt;}
.ws3e{word-spacing:10.924800pt;}
.ws137{word-spacing:10.937600pt;}
.wsa2{word-spacing:10.956800pt;}
.wsa9{word-spacing:11.008000pt;}
.ws66{word-spacing:11.065600pt;}
.ws65{word-spacing:11.104000pt;}
.ws143{word-spacing:11.155200pt;}
.ws110{word-spacing:11.315200pt;}
.ws10f{word-spacing:11.366400pt;}
.ws14a{word-spacing:11.372800pt;}
.ws52{word-spacing:11.398400pt;}
.ws53{word-spacing:11.404800pt;}
.ws62{word-spacing:11.417600pt;}
.ws6c{word-spacing:11.475200pt;}
.ws1e{word-spacing:11.507200pt;}
.ws20{word-spacing:11.508267pt;}
.ws132{word-spacing:11.515200pt;}
.ws1f{word-spacing:11.539200pt;}
.ws13f{word-spacing:11.603200pt;}
.wsd3{word-spacing:11.612800pt;}
.ws120{word-spacing:11.667200pt;}
.wsd5{word-spacing:11.683733pt;}
.wsd4{word-spacing:11.730133pt;}
.wsbf{word-spacing:11.760000pt;}
.ws10a{word-spacing:11.763200pt;}
.wsc0{word-spacing:11.769600pt;}
.ws28{word-spacing:11.782400pt;}
.ws109{word-spacing:11.801600pt;}
.wsb{word-spacing:11.820800pt;}
.ws40{word-spacing:11.897600pt;}
.ws3f{word-spacing:11.929600pt;}
.ws21{word-spacing:11.961600pt;}
.ws23{word-spacing:11.974400pt;}
.ws22{word-spacing:11.980800pt;}
.ws93{word-spacing:12.019200pt;}
.ws12f{word-spacing:12.064000pt;}
.wsef{word-spacing:12.089600pt;}
.ws15a{word-spacing:12.102400pt;}
.wsaf{word-spacing:12.160000pt;}
.ws9e{word-spacing:12.179200pt;}
.wsd7{word-spacing:12.211200pt;}
.ws13c{word-spacing:12.230400pt;}
.ws2e{word-spacing:12.422400pt;}
.ws2f{word-spacing:12.428800pt;}
.ws135{word-spacing:12.441600pt;}
.ws55{word-spacing:12.492800pt;}
.ws7a{word-spacing:12.569600pt;}
.ws50{word-spacing:12.608000pt;}
.ws51{word-spacing:12.614400pt;}
.wsb3{word-spacing:12.652800pt;}
.wsb2{word-spacing:12.678400pt;}
.ws6b{word-spacing:12.716800pt;}
.ws13d{word-spacing:12.742400pt;}
.ws13e{word-spacing:12.748800pt;}
.ws16f{word-spacing:12.780800pt;}
.ws12a{word-spacing:12.832000pt;}
.ws117{word-spacing:12.876800pt;}
.ws12b{word-spacing:12.883200pt;}
.ws9c{word-spacing:12.908800pt;}
.ws9a{word-spacing:12.915200pt;}
.ws10d{word-spacing:12.998400pt;}
.ws9b{word-spacing:13.011200pt;}
.ws10c{word-spacing:13.012213pt;}
.ws10e{word-spacing:13.017600pt;}
.wsc3{word-spacing:13.049600pt;}
.ws8a{word-spacing:13.062400pt;}
.wsc2{word-spacing:13.081600pt;}
.ws12e{word-spacing:13.088000pt;}
.ws4b{word-spacing:13.203200pt;}
.ws142{word-spacing:13.324800pt;}
.wsca{word-spacing:13.356800pt;}
.ws87{word-spacing:13.388800pt;}
.ws54{word-spacing:13.408000pt;}
.wsd{word-spacing:13.472000pt;}
.wsc{word-spacing:13.491200pt;}
.ws91{word-spacing:13.523200pt;}
.ws7d{word-spacing:13.542400pt;}
.ws84{word-spacing:13.548800pt;}
.wsa1{word-spacing:13.600000pt;}
.wsd8{word-spacing:13.619200pt;}
.ws105{word-spacing:13.625600pt;}
.ws77{word-spacing:13.638400pt;}
.ws79{word-spacing:13.644800pt;}
.ws106{word-spacing:13.657600pt;}
.ws136{word-spacing:13.804800pt;}
.ws83{word-spacing:13.862400pt;}
.ws6d{word-spacing:13.868800pt;}
.ws82{word-spacing:13.894400pt;}
.wsf4{word-spacing:13.913600pt;}
.wsf5{word-spacing:13.964800pt;}
.wsf3{word-spacing:13.998400pt;}
.ws34{word-spacing:14.003200pt;}
.ws36{word-spacing:14.022400pt;}
.ws134{word-spacing:14.028800pt;}
.ws35{word-spacing:14.035200pt;}
.ws5b{word-spacing:14.041600pt;}
.ws16e{word-spacing:14.095467pt;}
.ws133{word-spacing:14.099200pt;}
.ws69{word-spacing:14.107200pt;}
.ws16d{word-spacing:14.112000pt;}
.ws6a{word-spacing:14.124800pt;}
.ws144{word-spacing:14.182400pt;}
.ws12d{word-spacing:14.252800pt;}
.ws1c{word-spacing:14.310400pt;}
.ws1b{word-spacing:14.380800pt;}
.ws1a{word-spacing:14.393600pt;}
.ws19{word-spacing:14.419200pt;}
.wsae{word-spacing:14.464000pt;}
.wse3{word-spacing:14.604800pt;}
.ws103{word-spacing:14.777600pt;}
.ws68{word-spacing:14.848000pt;}
.ws67{word-spacing:14.860800pt;}
.ws90{word-spacing:14.870240pt;}
.ws14d{word-spacing:14.892800pt;}
.ws32{word-spacing:14.924800pt;}
.ws14c{word-spacing:14.968907pt;}
.ws123{word-spacing:14.969600pt;}
.ws122{word-spacing:14.988800pt;}
.ws113{word-spacing:15.001600pt;}
.wse8{word-spacing:15.040000pt;}
.ws17{word-spacing:15.078400pt;}
.ws4a{word-spacing:15.097600pt;}
.ws48{word-spacing:15.110400pt;}
.ws49{word-spacing:15.116800pt;}
.wsb5{word-spacing:15.219200pt;}
.wsba{word-spacing:15.251200pt;}
.wsb6{word-spacing:15.270400pt;}
.ws43{word-spacing:15.302400pt;}
.wsb1{word-spacing:15.334400pt;}
.ws88{word-spacing:15.360000pt;}
.ws130{word-spacing:15.449600pt;}
.ws13a{word-spacing:15.526400pt;}
.ws13b{word-spacing:15.552000pt;}
.ws11d{word-spacing:15.616000pt;}
.ws11c{word-spacing:15.635200pt;}
.ws11b{word-spacing:15.641600pt;}
.ws140{word-spacing:15.654400pt;}
.ws7c{word-spacing:15.712000pt;}
.wse5{word-spacing:15.865600pt;}
.wse6{word-spacing:15.878400pt;}
.wsbb{word-spacing:16.083200pt;}
.ws13{word-spacing:16.134400pt;}
.ws121{word-spacing:16.160000pt;}
.ws7e{word-spacing:16.230400pt;}
.wsf1{word-spacing:16.262400pt;}
.wse9{word-spacing:16.307200pt;}
.wsf0{word-spacing:16.345600pt;}
.ws16{word-spacing:16.358400pt;}
.ws15{word-spacing:16.395200pt;}
.ws9d{word-spacing:16.467200pt;}
.ws16c{word-spacing:16.928000pt;}
.wsbd{word-spacing:17.113600pt;}
.ws61{word-spacing:17.267200pt;}
.ws60{word-spacing:17.286400pt;}
.ws39{word-spacing:17.331200pt;}
.ws3b{word-spacing:17.356800pt;}
.ws3a{word-spacing:17.363200pt;}
.ws14{word-spacing:17.388800pt;}
.ws5c{word-spacing:17.566933pt;}
.ws5e{word-spacing:17.568000pt;}
.wsdf{word-spacing:17.644800pt;}
.ws139{word-spacing:17.683200pt;}
.ws128{word-spacing:17.708800pt;}
.wse2{word-spacing:17.740800pt;}
.ws12c{word-spacing:17.836800pt;}
.wsb9{word-spacing:17.938133pt;}
.wsc6{word-spacing:18.188800pt;}
.wsa7{word-spacing:18.276800pt;}
.wsa8{word-spacing:18.304000pt;}
.wsa6{word-spacing:18.310400pt;}
.ws5f{word-spacing:18.316800pt;}
.wsfb{word-spacing:18.521600pt;}
.wsa4{word-spacing:18.553600pt;}
.ws11a{word-spacing:18.675200pt;}
.ws119{word-spacing:18.713600pt;}
.ws118{word-spacing:18.758400pt;}
.ws157{word-spacing:18.816000pt;}
.wsfc{word-spacing:18.854400pt;}
.wsc7{word-spacing:18.995200pt;}
.wsc8{word-spacing:19.027200pt;}
.ws126{word-spacing:19.084800pt;}
.ws85{word-spacing:19.175307pt;}
.ws86{word-spacing:19.366400pt;}
.ws148{word-spacing:19.385600pt;}
.ws14b{word-spacing:19.404800pt;}
.ws149{word-spacing:19.417600pt;}
.ws76{word-spacing:19.552000pt;}
.ws75{word-spacing:19.571200pt;}
.wsa5{word-spacing:19.584000pt;}
.ws74{word-spacing:19.616000pt;}
.wsbc{word-spacing:19.763200pt;}
.ws7b{word-spacing:19.788800pt;}
.ws167{word-spacing:19.859200pt;}
.ws11{word-spacing:19.948800pt;}
.ws10{word-spacing:19.987200pt;}
.ws37{word-spacing:20.019200pt;}
.ws38{word-spacing:20.044800pt;}
.wscc{word-spacing:20.102400pt;}
.ws160{word-spacing:20.115200pt;}
.ws5d{word-spacing:20.179200pt;}
.wsaa{word-spacing:20.217600pt;}
.wsfa{word-spacing:20.236800pt;}
.ws8e{word-spacing:20.281600pt;}
.ws8f{word-spacing:20.294400pt;}
.ws8d{word-spacing:20.313600pt;}
.wsf9{word-spacing:20.324267pt;}
.ws73{word-spacing:20.467200pt;}
.ws161{word-spacing:20.563200pt;}
.wscd{word-spacing:20.659200pt;}
.wsce{word-spacing:20.716800pt;}
.wscf{word-spacing:20.755200pt;}
.ws97{word-spacing:21.075200pt;}
.wsad{word-spacing:21.126400pt;}
.ws98{word-spacing:21.145600pt;}
.ws14e{word-spacing:21.299200pt;}
.ws163{word-spacing:21.427200pt;}
.wsc9{word-spacing:21.536000pt;}
.ws11f{word-spacing:21.728000pt;}
.ws41{word-spacing:21.804800pt;}
.ws11e{word-spacing:21.830400pt;}
.ws42{word-spacing:21.843200pt;}
.wsff{word-spacing:21.900800pt;}
.ws4e{word-spacing:22.771200pt;}
.wscb{word-spacing:22.880000pt;}
.wse4{word-spacing:23.084800pt;}
.ws5a{word-spacing:23.424000pt;}
.wsbe{word-spacing:23.660800pt;}
.ws147{word-spacing:23.718400pt;}
.wsac{word-spacing:23.795200pt;}
.ws70{word-spacing:24.115200pt;}
.ws29{word-spacing:24.352000pt;}
.ws12{word-spacing:24.441600pt;}
.wsf6{word-spacing:24.691200pt;}
.wsf7{word-spacing:24.710400pt;}
.wsb7{word-spacing:25.030400pt;}
.wsf8{word-spacing:25.388800pt;}
.ws145{word-spacing:25.414400pt;}
.wsea{word-spacing:25.798400pt;}
.ws165{word-spacing:25.849600pt;}
.ws18{word-spacing:25.920000pt;}
.ws10b{word-spacing:26.483200pt;}
.ws107{word-spacing:26.912000pt;}
.wsed{word-spacing:27.065600pt;}
.wsd2{word-spacing:27.430400pt;}
.wsd0{word-spacing:27.462400pt;}
.wsd1{word-spacing:27.468800pt;}
.ws2d{word-spacing:27.680000pt;}
.ws129{word-spacing:27.795200pt;}
.ws2c{word-spacing:28.431467pt;}
.ws2b{word-spacing:28.512000pt;}
.ws159{word-spacing:28.640000pt;}
.ws158{word-spacing:28.723200pt;}
.wsdc{word-spacing:29.339893pt;}
.wsdd{word-spacing:29.350400pt;}
.ws59{word-spacing:29.414400pt;}
.wsdb{word-spacing:29.450347pt;}
.wsde{word-spacing:29.452800pt;}
.ws58{word-spacing:29.491200pt;}
.wsfe{word-spacing:29.932800pt;}
.wsfd{word-spacing:29.977600pt;}
.wsa0{word-spacing:30.342400pt;}
.ws7f{word-spacing:31.033600pt;}
.ws4f{word-spacing:31.468800pt;}
.ws100{word-spacing:31.668640pt;}
.ws102{word-spacing:31.699200pt;}
.ws101{word-spacing:31.705600pt;}
.ws9f{word-spacing:32.627200pt;}
.ws57{word-spacing:33.625600pt;}
.wsee{word-spacing:34.112000pt;}
.ws81{word-spacing:34.534400pt;}
.ws56{word-spacing:36.243200pt;}
.wsb8{word-spacing:36.307200pt;}
.ws8b{word-spacing:37.657600pt;}
.wsab{word-spacing:40.537600pt;}
.ws4c{word-spacing:42.233600pt;}
.ws89{word-spacing:48.755200pt;}
.ws15f{word-spacing:51.091200pt;}
.ws15b{word-spacing:55.334400pt;}
.ws104{word-spacing:61.589067pt;}
.ws124{word-spacing:119.168533pt;}
.ws125{word-spacing:436.807893pt;}
._12{margin-left:-9.782027pt;}
._11{margin-left:-5.766400pt;}
._a{margin-left:-1.806933pt;}
._1{margin-left:-0.896000pt;}
._0{width:0.896000pt;}
._6{width:2.112000pt;}
._9{width:3.033600pt;}
._4{width:4.249600pt;}
._5{width:5.208907pt;}
._8{width:6.196427pt;}
._3{width:7.168000pt;}
._2{width:8.411040pt;}
._7{width:9.454880pt;}
._c{width:11.050720pt;}
._10{width:12.046880pt;}
._e{width:12.960000pt;}
._d{width:13.971200pt;}
._f{width:14.873600pt;}
._b{width:28.825600pt;}
._13{width:53.376107pt;}
.fs3{font-size:52.480000pt;}
.fs2{font-size:55.040000pt;}
.fs4{font-size:57.600000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:84.480000pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:3.840000pt;}
.y1{bottom:12.000000pt;}
.y56{bottom:39.146693pt;}
.y57{bottom:47.306693pt;}
.y215{bottom:84.586693pt;}
.y1e5{bottom:86.186680pt;}
.y18f{bottom:88.106693pt;}
.y2ca{bottom:88.746693pt;}
.y30c{bottom:90.666693pt;}
.y26a{bottom:91.946680pt;}
.yca{bottom:95.146693pt;}
.y14a{bottom:95.466680pt;}
.y75{bottom:95.786693pt;}
.y176{bottom:96.106693pt;}
.ye4{bottom:96.426680pt;}
.y346{bottom:97.066693pt;}
.y2d9{bottom:97.386693pt;}
.yfd{bottom:97.706680pt;}
.y1f4{bottom:98.666693pt;}
.y32{bottom:99.306693pt;}
.y2da{bottom:99.946680pt;}
.y23a{bottom:100.906693pt;}
.y253{bottom:101.226680pt;}
.y2b8{bottom:101.866693pt;}
.y1e4{bottom:102.186680pt;}
.y347{bottom:102.506693pt;}
.y380{bottom:103.146693pt;}
.y273{bottom:104.106693pt;}
.y294{bottom:104.426680pt;}
.y2d8{bottom:104.746693pt;}
.y9f{bottom:105.066693pt;}
.y269{bottom:106.986680pt;}
.y2a9{bottom:107.306693pt;}
.y18e{bottom:107.626693pt;}
.y1c6{bottom:108.266693pt;}
.y30b{bottom:109.226680pt;}
.y38d{bottom:110.826693pt;}
.y301{bottom:111.786693pt;}
.y1b7{bottom:113.706680pt;}
.y149{bottom:114.346693pt;}
.y74{bottom:114.666693pt;}
.ye3{bottom:115.306693pt;}
.y345{bottom:115.946680pt;}
.y160{bottom:116.266693pt;}
.yfc{bottom:116.586693pt;}
.y1f3{bottom:117.226680pt;}
.y31{bottom:118.186680pt;}
.y331{bottom:119.786693pt;}
.yc9{bottom:120.106693pt;}
.y2b7{bottom:120.426680pt;}
.y1e3{bottom:120.746680pt;}
.y2bd{bottom:121.066693pt;}
.y37f{bottom:122.026667pt;}
.y2f0{bottom:122.346667pt;}
.y272{bottom:122.986667pt;}
.y293{bottom:123.306667pt;}
.y9e{bottom:123.626667pt;}
.y2a8{bottom:126.186667pt;}
.y1c5{bottom:126.826667pt;}
.y18d{bottom:127.466667pt;}
.y321{bottom:127.786667pt;}
.y30a{bottom:128.106667pt;}
.y38c{bottom:129.386667pt;}
.y300{bottom:130.346667pt;}
.y1b6{bottom:132.586667pt;}
.y148{bottom:132.906667pt;}
.y110{bottom:133.226667pt;}
.y73{bottom:133.546667pt;}
.ye2{bottom:133.866667pt;}
.y344{bottom:134.506667pt;}
.yfb{bottom:135.146667pt;}
.y1f2{bottom:136.106667pt;}
.y2b4{bottom:136.746667pt;}
.y30{bottom:137.066667pt;}
.y271{bottom:138.026667pt;}
.y330{bottom:138.346667pt;}
.y252{bottom:138.666667pt;}
.y2b6{bottom:139.306667pt;}
.y1e2{bottom:139.626667pt;}
.y37e{bottom:140.586667pt;}
.y292{bottom:141.866667pt;}
.y2d7{bottom:142.186667pt;}
.y9d{bottom:142.506667pt;}
.y128{bottom:143.466667pt;}
.y2a7{bottom:144.746667pt;}
.y2c9{bottom:145.066667pt;}
.yc8{bottom:145.386667pt;}
.y1c4{bottom:145.706667pt;}
.y320{bottom:146.666667pt;}
.y18c{bottom:146.986667pt;}
.y38b{bottom:148.266667pt;}
.y2ff{bottom:149.226667pt;}
.y1b5{bottom:151.146667pt;}
.y147{bottom:151.786667pt;}
.y72{bottom:152.106667pt;}
.y175{bottom:152.426667pt;}
.ye1{bottom:152.746667pt;}
.y343{bottom:153.386667pt;}
.yfa{bottom:154.026667pt;}
.y1f1{bottom:154.986667pt;}
.y2f{bottom:155.626667pt;}
.y326{bottom:156.906667pt;}
.y291{bottom:157.226667pt;}
.y2b5{bottom:158.186667pt;}
.y1e1{bottom:158.506667pt;}
.y37d{bottom:159.466667pt;}
.y9c{bottom:161.066667pt;}
.y127{bottom:162.026667pt;}
.y2a6{bottom:163.626667pt;}
.y2c8{bottom:163.946667pt;}
.y1c3{bottom:164.266667pt;}
.y31f{bottom:165.226667pt;}
.y309{bottom:165.546667pt;}
.y18b{bottom:166.506667pt;}
.y38a{bottom:166.826667pt;}
.y2fe{bottom:168.106667pt;}
.yc7{bottom:169.066667pt;}
.y1b4{bottom:170.026667pt;}
.y10f{bottom:170.666667pt;}
.y174{bottom:170.986667pt;}
.ye0{bottom:171.306667pt;}
.y71{bottom:171.946667pt;}
.y32f{bottom:172.266667pt;}
.yf9{bottom:172.586667pt;}
.y1f0{bottom:173.546667pt;}
.y2e{bottom:174.506667pt;}
.y325{bottom:175.466667pt;}
.y35e{bottom:175.786667pt;}
.y1e0{bottom:177.066667pt;}
.y2bc{bottom:177.386667pt;}
.y37c{bottom:178.026667pt;}
.y2d6{bottom:179.626667pt;}
.y9b{bottom:180.906667pt;}
.y2a5{bottom:182.186667pt;}
.y2c7{bottom:182.506667pt;}
.y1c2{bottom:183.146667pt;}
.y31e{bottom:184.106667pt;}
.y308{bottom:184.426667pt;}
.y389{bottom:185.386667pt;}
.y18a{bottom:186.346667pt;}
.y2fd{bottom:186.666667pt;}
.yc6{bottom:187.946667pt;}
.y1b3{bottom:188.906667pt;}
.y146{bottom:189.226667pt;}
.y10e{bottom:189.546667pt;}
.y173{bottom:189.866667pt;}
.ydf{bottom:190.186667pt;}
.y70{bottom:190.506667pt;}
.y342{bottom:190.826667pt;}
.yf8{bottom:191.466667pt;}
.y1ef{bottom:192.426667pt;}
.y2d{bottom:193.066667pt;}
.y207{bottom:193.386667pt;}
.y27e{bottom:193.706667pt;}
.y324{bottom:194.346667pt;}
.y35d{bottom:194.666667pt;}
.y1df{bottom:195.946667pt;}
.y37b{bottom:196.906667pt;}
.y2d5{bottom:198.506667pt;}
.y126{bottom:199.786667pt;}
.y9a{bottom:200.426667pt;}
.y2a4{bottom:201.066667pt;}
.y2c6{bottom:201.386667pt;}
.y1c1{bottom:202.026667pt;}
.y31d{bottom:202.986667pt;}
.y307{bottom:203.306667pt;}
.y388{bottom:203.626667pt;}
.y189{bottom:205.226667pt;}
.y2fc{bottom:205.546667pt;}
.yc5{bottom:206.506667pt;}
.y1b2{bottom:207.466667pt;}
.y145{bottom:208.106667pt;}
.y10d{bottom:208.426667pt;}
.y172{bottom:208.746667pt;}
.yde{bottom:209.066667pt;}
.y6f{bottom:209.386667pt;}
.y341{bottom:209.706667pt;}
.yf7{bottom:210.346667pt;}
.y1ee{bottom:210.986667pt;}
.y284{bottom:211.306667pt;}
.y2c{bottom:211.946667pt;}
.y206{bottom:212.906667pt;}
.y323{bottom:213.226667pt;}
.y1de{bottom:214.506667pt;}
.y2bb{bottom:214.826667pt;}
.y37a{bottom:215.466667pt;}
.y2d4{bottom:217.386667pt;}
.y125{bottom:218.346667pt;}
.y99{bottom:219.946667pt;}
.y2c5{bottom:220.266667pt;}
.y1c0{bottom:220.586667pt;}
.y31c{bottom:221.546667pt;}
.y306{bottom:221.866667pt;}
.y387{bottom:222.186667pt;}
.y188{bottom:223.786667pt;}
.ydd{bottom:224.106667pt;}
.y2fb{bottom:224.426667pt;}
.yc4{bottom:225.386667pt;}
.y144{bottom:226.346667pt;}
.y10c{bottom:226.986667pt;}
.y171{bottom:227.306667pt;}
.y6e{bottom:227.946667pt;}
.y340{bottom:228.586667pt;}
.yf6{bottom:228.906667pt;}
.y1ed{bottom:229.866667pt;}
.y35c{bottom:230.186667pt;}
.y2b{bottom:230.826667pt;}
.y205{bottom:231.786667pt;}
.y379{bottom:232.746667pt;}
.y1dd{bottom:233.386667pt;}
.y2d3{bottom:235.946667pt;}
.y22d{bottom:236.266667pt;}
.y124{bottom:237.226667pt;}
.y2a3{bottom:238.506667pt;}
.y2c4{bottom:238.826667pt;}
.y1bf{bottom:239.466667pt;}
.y98{bottom:239.786667pt;}
.y31b{bottom:240.426667pt;}
.y305{bottom:240.746667pt;}
.y143{bottom:242.346667pt;}
.y187{bottom:242.666667pt;}
.y2ee{bottom:242.986667pt;}
.yc3{bottom:244.266667pt;}
.y1b1{bottom:244.906667pt;}
.y25d{bottom:245.546667pt;}
.y10b{bottom:245.866667pt;}
.y170{bottom:246.186667pt;}
.y6d{bottom:246.826667pt;}
.y33f{bottom:247.146667pt;}
.y35b{bottom:247.466667pt;}
.yf5{bottom:247.786667pt;}
.y1ec{bottom:248.746667pt;}
.y2a{bottom:249.386667pt;}
.y378{bottom:249.706667pt;}
.y204{bottom:250.666667pt;}
.y1dc{bottom:252.266667pt;}
.y2d2{bottom:254.826667pt;}
.y22c{bottom:255.146667pt;}
.y2a2{bottom:257.386667pt;}
.y2c3{bottom:257.706667pt;}
.y1be{bottom:258.346667pt;}
.y386{bottom:258.986667pt;}
.y97{bottom:259.306667pt;}
.y246{bottom:260.266667pt;}
.y142{bottom:260.906667pt;}
.y186{bottom:261.546667pt;}
.yc2{bottom:262.826667pt;}
.y1b0{bottom:263.786667pt;}
.y10a{bottom:264.426667pt;}
.y16f{bottom:264.746667pt;}
.y33e{bottom:266.026667pt;}
.y6c{bottom:266.346667pt;}
.yf4{bottom:266.666667pt;}
.y377{bottom:266.986667pt;}
.y1eb{bottom:267.306667pt;}
.y29{bottom:268.266667pt;}
.y203{bottom:269.226667pt;}
.y1db{bottom:270.826667pt;}
.y2ba{bottom:271.146667pt;}
.y2d1{bottom:273.386667pt;}
.y22b{bottom:273.706667pt;}
.y123{bottom:274.666667pt;}
.y2a1{bottom:276.266667pt;}
.y1bd{bottom:276.906667pt;}
.y385{bottom:277.226667pt;}
.y31a{bottom:277.866667pt;}
.y304{bottom:278.186667pt;}
.y96{bottom:278.826667pt;}
.y245{bottom:279.146667pt;}
.y109{bottom:279.786667pt;}
.y185{bottom:280.106667pt;}
.y2ed{bottom:280.426667pt;}
.yc1{bottom:281.706667pt;}
.y35a{bottom:282.026667pt;}
.y1af{bottom:282.666667pt;}
.y25c{bottom:282.986667pt;}
.y312{bottom:283.306667pt;}
.y16e{bottom:283.626667pt;}
.y376{bottom:284.266667pt;}
.y33d{bottom:284.586667pt;}
.y6b{bottom:285.226667pt;}
.y1ea{bottom:286.186667pt;}
.y2b3{bottom:286.826667pt;}
.y28{bottom:287.146667pt;}
.y202{bottom:288.106667pt;}
.y1da{bottom:289.706667pt;}
.y2d0{bottom:292.266667pt;}
.y22a{bottom:292.586667pt;}
.y122{bottom:293.226667pt;}
.y2a0{bottom:294.826667pt;}
.y2c2{bottom:295.146667pt;}
.y1bc{bottom:295.786667pt;}
.y319{bottom:296.746667pt;}
.y303{bottom:297.066667pt;}
.y244{bottom:297.706667pt;}
.y141{bottom:298.346667pt;}
.y95{bottom:298.666667pt;}
.y184{bottom:298.986667pt;}
.yc0{bottom:300.586667pt;}
.y1ae{bottom:301.226667pt;}
.y375{bottom:301.546667pt;}
.y311{bottom:302.186667pt;}
.y16d{bottom:302.506667pt;}
.y251{bottom:302.826667pt;}
.y322{bottom:303.466667pt;}
.y15f{bottom:304.106667pt;}
.y6a{bottom:304.746667pt;}
.y27{bottom:305.706667pt;}
.y201{bottom:307.626667pt;}
.y1d9{bottom:308.586667pt;}
.y229{bottom:311.146667pt;}
.y318{bottom:311.786667pt;}
.y121{bottom:312.106667pt;}
.y243{bottom:313.066667pt;}
.y29f{bottom:313.706667pt;}
.y2c1{bottom:314.026667pt;}
.y1bb{bottom:314.346667pt;}
.y302{bottom:315.626667pt;}
.y359{bottom:316.266667pt;}
.y270{bottom:316.586667pt;}
.y140{bottom:317.226667pt;}
.y183{bottom:317.546667pt;}
.y2ec{bottom:317.866667pt;}
.y94{bottom:318.186667pt;}
.ybf{bottom:319.146667pt;}
.y1ad{bottom:320.106667pt;}
.y374{bottom:320.426667pt;}
.y310{bottom:320.746667pt;}
.y16c{bottom:321.066667pt;}
.y250{bottom:321.706667pt;}
.y33c{bottom:322.346667pt;}
.y15e{bottom:322.666667pt;}
.y69{bottom:323.626667pt;}
.y26{bottom:324.586667pt;}
.y1d8{bottom:327.146667pt;}
.y2b9{bottom:327.466667pt;}
.y2cf{bottom:329.706667pt;}
.y228{bottom:330.026667pt;}
.y120{bottom:330.986667pt;}
.y29e{bottom:332.266667pt;}
.y2c0{bottom:332.586667pt;}
.y1ba{bottom:333.226667pt;}
.y358{bottom:333.546667pt;}
.y26f{bottom:335.146667pt;}
.y13f{bottom:336.106667pt;}
.y182{bottom:336.426667pt;}
.y2eb{bottom:336.746667pt;}
.y93{bottom:338.026667pt;}
.y1ac{bottom:338.986667pt;}
.y373{bottom:339.306667pt;}
.y30f{bottom:339.626667pt;}
.y16b{bottom:339.946667pt;}
.y24f{bottom:340.266667pt;}
.y33b{bottom:340.906667pt;}
.y15d{bottom:341.546667pt;}
.y1e9{bottom:342.506667pt;}
.y25{bottom:343.146667pt;}
.y1d7{bottom:346.026667pt;}
.y200{bottom:346.986667pt;}
.y29d{bottom:347.306667pt;}
.y2ce{bottom:348.586667pt;}
.y227{bottom:349.546667pt;}
.y290{bottom:350.186667pt;}
.y26e{bottom:350.506667pt;}
.y357{bottom:350.826667pt;}
.y2bf{bottom:351.466667pt;}
.y1b9{bottom:352.106667pt;}
.y13e{bottom:354.666667pt;}
.y30e{bottom:354.986667pt;}
.y181{bottom:355.306667pt;}
.y55{bottom:355.626667pt;}
.ybe{bottom:356.586667pt;}
.y92{bottom:357.546667pt;}
.y372{bottom:357.866667pt;}
.y16a{bottom:358.506667pt;}
.y33a{bottom:359.786667pt;}
.y15c{bottom:360.106667pt;}
.y1e8{bottom:361.066667pt;}
.y24{bottom:362.026667pt;}
.ydc{bottom:363.946667pt;}
.y1d6{bottom:364.586667pt;}
.y1ff{bottom:365.546667pt;}
.y2be{bottom:366.826667pt;}
.y1b8{bottom:367.146667pt;}
.y2cd{bottom:367.466667pt;}
.y356{bottom:367.786667pt;}
.y11f{bottom:368.426667pt;}
.y28f{bottom:368.746667pt;}
.y226{bottom:369.066667pt;}
.y384{bottom:369.386667pt;}
.y13d{bottom:373.546667pt;}
.y180{bottom:373.866667pt;}
.y2ea{bottom:374.186667pt;}
.y54{bottom:374.506667pt;}
.ybd{bottom:375.466667pt;}
.y2b1{bottom:375.786667pt;}
.y1ab{bottom:376.426667pt;}
.y371{bottom:376.746667pt;}
.y91{bottom:377.386667pt;}
.y339{bottom:378.346667pt;}
.yf3{bottom:378.666667pt;}
.y15b{bottom:378.986667pt;}
.y1e7{bottom:379.946667pt;}
.y23{bottom:380.906667pt;}
.ydb{bottom:382.506667pt;}
.y1d5{bottom:383.466667pt;}
.y355{bottom:385.066667pt;}
.y1fe{bottom:385.386667pt;}
.y2cc{bottom:386.026667pt;}
.y268{bottom:386.666667pt;}
.y11e{bottom:386.986667pt;}
.y28e{bottom:387.626667pt;}
.y225{bottom:388.906667pt;}
.y13c{bottom:392.426667pt;}
.y17f{bottom:392.746667pt;}
.y53{bottom:393.386667pt;}
.ybc{bottom:394.346667pt;}
.y1aa{bottom:394.986667pt;}
.y370{bottom:395.306667pt;}
.y90{bottom:395.946667pt;}
.y169{bottom:396.266667pt;}
.y338{bottom:397.226667pt;}
.yf2{bottom:397.546667pt;}
.y15a{bottom:397.866667pt;}
.y1e6{bottom:398.826667pt;}
.y22{bottom:399.466667pt;}
.y2cb{bottom:401.386667pt;}
.yda{bottom:402.346667pt;}
.y28d{bottom:402.666667pt;}
.y1fd{bottom:404.906667pt;}
.y267{bottom:405.546667pt;}
.y11d{bottom:405.866667pt;}
.y383{bottom:406.186667pt;}
.y224{bottom:407.466667pt;}
.y13b{bottom:410.986667pt;}
.y17e{bottom:411.306667pt;}
.y2e9{bottom:411.626667pt;}
.y52{bottom:411.946667pt;}
.ybb{bottom:412.906667pt;}
.y2b0{bottom:413.226667pt;}
.y1a9{bottom:413.866667pt;}
.y36f{bottom:414.186667pt;}
.y8f{bottom:414.826667pt;}
.y337{bottom:416.106667pt;}
.y159{bottom:416.426667pt;}
.yf1{bottom:417.066667pt;}
.y20f{bottom:417.386667pt;}
.y21{bottom:418.346667pt;}
.y354{bottom:419.626667pt;}
.yd9{bottom:420.906667pt;}
.y266{bottom:424.106667pt;}
.y382{bottom:424.426667pt;}
.y11c{bottom:424.746667pt;}
.y242{bottom:426.986667pt;}
.y223{bottom:427.306667pt;}
.y13a{bottom:429.866667pt;}
.y17d{bottom:430.186667pt;}
.y2e8{bottom:430.506667pt;}
.y51{bottom:430.826667pt;}
.yba{bottom:431.786667pt;}
.y1a8{bottom:432.746667pt;}
.y36e{bottom:433.066667pt;}
.y8e{bottom:433.386667pt;}
.y168{bottom:433.706667pt;}
.y336{bottom:434.666667pt;}
.y158{bottom:435.306667pt;}
.yf0{bottom:435.946667pt;}
.y20e{bottom:436.266667pt;}
.y353{bottom:436.586667pt;}
.y20{bottom:436.906667pt;}
.y1d4{bottom:439.786667pt;}
.yd8{bottom:440.746667pt;}
.y265{bottom:442.986667pt;}
.y11b{bottom:443.306667pt;}
.y1fc{bottom:444.266667pt;}
.y381{bottom:444.586667pt;}
.y222{bottom:445.866667pt;}
.y139{bottom:448.426667pt;}
.y17c{bottom:449.066667pt;}
.y50{bottom:449.706667pt;}
.yb9{bottom:450.666667pt;}
.y1a7{bottom:451.306667pt;}
.y36d{bottom:451.626667pt;}
.y8d{bottom:452.266667pt;}
.y167{bottom:452.586667pt;}
.y335{bottom:453.546667pt;}
.y352{bottom:453.866667pt;}
.y157{bottom:454.186667pt;}
.y20d{bottom:454.826667pt;}
.yef{bottom:455.466667pt;}
.y1f{bottom:455.786667pt;}
.y239{bottom:457.386667pt;}
.y1d3{bottom:458.666667pt;}
.yd7{bottom:459.306667pt;}
.y264{bottom:461.866667pt;}
.y11a{bottom:462.186667pt;}
.y1fb{bottom:463.146667pt;}
.y241{bottom:464.426667pt;}
.y214{bottom:465.706667pt;}
.y27d{bottom:466.666667pt;}
.y138{bottom:467.306667pt;}
.y17b{bottom:467.626667pt;}
.y2e7{bottom:467.946667pt;}
.y4f{bottom:468.266667pt;}
.yb8{bottom:469.226667pt;}
.y2af{bottom:469.546667pt;}
.y1a6{bottom:470.186667pt;}
.y36c{bottom:470.506667pt;}
.y2b2{bottom:470.826667pt;}
.y8c{bottom:471.146667pt;}
.y334{bottom:472.426667pt;}
.y156{bottom:472.746667pt;}
.y20c{bottom:473.706667pt;}
.yee{bottom:474.346667pt;}
.y1e{bottom:474.666667pt;}
.y238{bottom:476.266667pt;}
.y119{bottom:477.226667pt;}
.yd6{bottom:479.146667pt;}
.y263{bottom:480.426667pt;}
.y1fa{bottom:482.666667pt;}
.y240{bottom:483.306667pt;}
.y213{bottom:484.586667pt;}
.y221{bottom:485.226667pt;}
.y27c{bottom:485.546667pt;}
.y137{bottom:486.186667pt;}
.y17a{bottom:486.506667pt;}
.y2e6{bottom:486.826667pt;}
.y4e{bottom:487.146667pt;}
.yb7{bottom:488.106667pt;}
.y351{bottom:488.426667pt;}
.y1a5{bottom:489.066667pt;}
.y36b{bottom:489.386667pt;}
.y8b{bottom:489.706667pt;}
.y166{bottom:490.026667pt;}
.y333{bottom:490.986667pt;}
.y155{bottom:491.626667pt;}
.y2ef{bottom:492.266667pt;}
.y20b{bottom:492.586667pt;}
.y1d{bottom:493.226667pt;}
.yed{bottom:493.866667pt;}
.y32e{bottom:494.506667pt;}
.y237{bottom:494.826667pt;}
.y1d2{bottom:496.106667pt;}
.yd5{bottom:497.706667pt;}
.y262{bottom:499.306667pt;}
.y136{bottom:501.226667pt;}
.y1f9{bottom:502.186667pt;}
.y212{bottom:503.146667pt;}
.y220{bottom:504.106667pt;}
.y179{bottom:505.386667pt;}
.y4d{bottom:505.706667pt;}
.y332{bottom:506.026667pt;}
.yb6{bottom:506.666667pt;}
.y2ae{bottom:506.986667pt;}
.y350{bottom:507.306667pt;}
.y1a4{bottom:507.626667pt;}
.y8a{bottom:508.586667pt;}
.y154{bottom:510.186667pt;}
.y20a{bottom:511.146667pt;}
.y1c{bottom:512.106667pt;}
.yec{bottom:512.426667pt;}
.y32d{bottom:513.386667pt;}
.y236{bottom:513.706667pt;}
.y1d1{bottom:514.666667pt;}
.y25b{bottom:515.306667pt;}
.y23f{bottom:517.226667pt;}
.yd4{bottom:517.546667pt;}
.y261{bottom:517.866667pt;}
.y29c{bottom:519.146667pt;}
.y1f8{bottom:522.026667pt;}
.y21f{bottom:522.986667pt;}
.y178{bottom:523.946667pt;}
.y2e5{bottom:524.266667pt;}
.y4c{bottom:524.586667pt;}
.yb5{bottom:525.546667pt;}
.y2ad{bottom:525.866667pt;}
.y34f{bottom:526.186667pt;}
.y1a3{bottom:526.506667pt;}
.y89{bottom:527.466667pt;}
.y108{bottom:528.106667pt;}
.y153{bottom:529.066667pt;}
.y209{bottom:530.026667pt;}
.y1b{bottom:530.986667pt;}
.y32c{bottom:531.946667pt;}
.yeb{bottom:532.266667pt;}
.y235{bottom:532.586667pt;}
.y1d0{bottom:533.546667pt;}
.y25a{bottom:533.866667pt;}
.yd3{bottom:536.106667pt;}
.y260{bottom:536.746667pt;}
.y29b{bottom:538.026667pt;}
.y177{bottom:539.306667pt;}
.y1f7{bottom:540.906667pt;}
.y21e{bottom:541.546667pt;}
.y27b{bottom:541.866667pt;}
.y2e4{bottom:542.826667pt;}
.y36a{bottom:543.146667pt;}
.y4b{bottom:543.466667pt;}
.yb4{bottom:544.426667pt;}
.y34e{bottom:544.746667pt;}
.y1a2{bottom:545.066667pt;}
.y88{bottom:546.026667pt;}
.y165{bottom:546.346667pt;}
.y107{bottom:546.986667pt;}
.y152{bottom:547.946667pt;}
.y208{bottom:548.906667pt;}
.y1a{bottom:549.546667pt;}
.y32b{bottom:550.826667pt;}
.yea{bottom:551.146667pt;}
.y1cf{bottom:552.426667pt;}
.y259{bottom:552.746667pt;}
.y25f{bottom:555.626667pt;}
.yd2{bottom:555.946667pt;}
.y29a{bottom:556.586667pt;}
.y1f6{bottom:559.466667pt;}
.y21d{bottom:560.426667pt;}
.y369{bottom:561.066667pt;}
.y2e3{bottom:561.706667pt;}
.y4a{bottom:562.026667pt;}
.yb3{bottom:562.986667pt;}
.y2ac{bottom:563.306667pt;}
.y34d{bottom:563.626667pt;}
.y1a1{bottom:563.946667pt;}
.y87{bottom:564.906667pt;}
.y106{bottom:565.866667pt;}
.y151{bottom:566.506667pt;}
.y19{bottom:568.426667pt;}
.ye9{bottom:569.706667pt;}
.y234{bottom:570.026667pt;}
.y25e{bottom:570.666667pt;}
.y1ce{bottom:570.986667pt;}
.y258{bottom:571.306667pt;}
.y299{bottom:571.946667pt;}
.yd1{bottom:574.506667pt;}
.y1f5{bottom:578.346667pt;}
.y368{bottom:578.666667pt;}
.y21c{bottom:578.986667pt;}
.y27a{bottom:579.306667pt;}
.y2e2{bottom:580.586667pt;}
.y49{bottom:580.906667pt;}
.yb2{bottom:581.866667pt;}
.y34c{bottom:582.186667pt;}
.y1a0{bottom:582.506667pt;}
.y86{bottom:583.466667pt;}
.y164{bottom:583.786667pt;}
.y105{bottom:584.426667pt;}
.y118{bottom:584.746667pt;}
.y28c{bottom:585.066667pt;}
.y150{bottom:585.386667pt;}
.y257{bottom:586.666667pt;}
.y18{bottom:586.986667pt;}
.y283{bottom:587.626667pt;}
.y32a{bottom:588.266667pt;}
.ye8{bottom:588.586667pt;}
.y233{bottom:588.906667pt;}
.y1cd{bottom:589.866667pt;}
.yd0{bottom:593.386667pt;}
.y24e{bottom:596.586667pt;}
.y211{bottom:596.906667pt;}
.y279{bottom:597.866667pt;}
.y21b{bottom:598.826667pt;}
.y2e1{bottom:599.146667pt;}
.y48{bottom:599.466667pt;}
.yb1{bottom:600.426667pt;}
.y26d{bottom:600.746667pt;}
.y34b{bottom:601.066667pt;}
.y85{bottom:602.346667pt;}
.y163{bottom:602.666667pt;}
.y104{bottom:603.306667pt;}
.y117{bottom:603.946667pt;}
.y317{bottom:604.906667pt;}
.y17{bottom:605.866667pt;}
.y282{bottom:606.186667pt;}
.y329{bottom:607.146667pt;}
.y232{bottom:607.466667pt;}
.ye7{bottom:608.106667pt;}
.y1cc{bottom:608.426667pt;}
.y396{bottom:608.746667pt;}
.ycf{bottom:612.266667pt;}
.y278{bottom:613.226667pt;}
.y367{bottom:614.186667pt;}
.y24d{bottom:615.146667pt;}
.y210{bottom:615.786667pt;}
.y2fa{bottom:616.746667pt;}
.y21a{bottom:617.386667pt;}
.y2e0{bottom:618.026667pt;}
.y47{bottom:618.346667pt;}
.yb0{bottom:619.306667pt;}
.y26c{bottom:619.626667pt;}
.y34a{bottom:619.946667pt;}
.y84{bottom:621.226667pt;}
.y103{bottom:621.866667pt;}
.y28b{bottom:622.506667pt;}
.y116{bottom:623.146667pt;}
.y316{bottom:623.466667pt;}
.y16{bottom:624.746667pt;}
.y281{bottom:625.066667pt;}
.y328{bottom:625.706667pt;}
.y231{bottom:626.346667pt;}
.ye6{bottom:626.986667pt;}
.y1cb{bottom:627.306667pt;}
.yce{bottom:630.826667pt;}
.y366{bottom:632.106667pt;}
.y24c{bottom:634.026667pt;}
.y26b{bottom:634.666667pt;}
.y2f9{bottom:635.306667pt;}
.y2df{bottom:636.906667pt;}
.y46{bottom:637.226667pt;}
.yaf{bottom:638.186667pt;}
.y349{bottom:638.506667pt;}
.y83{bottom:639.786667pt;}
.y162{bottom:640.106667pt;}
.y28a{bottom:641.386667pt;}
.y102{bottom:641.706667pt;}
.y115{bottom:642.346667pt;}
.y1ca{bottom:642.666667pt;}
.y15{bottom:643.306667pt;}
.y280{bottom:643.626667pt;}
.y327{bottom:644.586667pt;}
.y230{bottom:644.906667pt;}
.ye5{bottom:645.226667pt;}
.y395{bottom:646.186667pt;}
.y24b{bottom:649.066667pt;}
.ycd{bottom:649.706667pt;}
.y365{bottom:650.026667pt;}
.y348{bottom:653.866667pt;}
.y2f8{bottom:654.186667pt;}
.y161{bottom:655.466667pt;}
.y45{bottom:655.786667pt;}
.yae{bottom:656.746667pt;}
.y2ab{bottom:657.066667pt;}
.y82{bottom:658.666667pt;}
.y27f{bottom:658.986667pt;}
.y19f{bottom:659.626667pt;}
.y289{bottom:659.946667pt;}
.y101{bottom:660.266667pt;}
.y315{bottom:660.906667pt;}
.y114{bottom:661.226667pt;}
.y14{bottom:662.186667pt;}
.y22f{bottom:663.786667pt;}
.y394{bottom:664.746667pt;}
.y364{bottom:667.626667pt;}
.ycc{bottom:668.266667pt;}
.y23e{bottom:670.826667pt;}
.y2f7{bottom:673.066667pt;}
.y2de{bottom:674.346667pt;}
.y44{bottom:674.666667pt;}
.yad{bottom:675.626667pt;}
.y219{bottom:676.266667pt;}
.y81{bottom:677.226667pt;}
.y19e{bottom:678.186667pt;}
.y22e{bottom:678.826667pt;}
.y100{bottom:679.146667pt;}
.y314{bottom:679.786667pt;}
.y113{bottom:680.106667pt;}
.y13{bottom:680.746667pt;}
.y68{bottom:682.026667pt;}
.y135{bottom:683.626667pt;}
.y363{bottom:685.546667pt;}
.ycb{bottom:687.146667pt;}
.y23d{bottom:689.386667pt;}
.y2aa{bottom:690.986667pt;}
.y2f6{bottom:691.626667pt;}
.y2dd{bottom:692.906667pt;}
.y43{bottom:693.546667pt;}
.yac{bottom:694.506667pt;}
.y313{bottom:694.826667pt;}
.y80{bottom:696.106667pt;}
.y19d{bottom:697.066667pt;}
.y288{bottom:697.706667pt;}
.yff{bottom:698.666667pt;}
.y12{bottom:699.626667pt;}
.y393{bottom:702.506667pt;}
.y362{bottom:703.146667pt;}
.y67{bottom:706.026667pt;}
.y23c{bottom:708.266667pt;}
.y2f5{bottom:710.506667pt;}
.y2dc{bottom:711.786667pt;}
.y42{bottom:712.106667pt;}
.yab{bottom:713.066667pt;}
.y7f{bottom:714.986667pt;}
.y19c{bottom:715.626667pt;}
.y14f{bottom:716.266667pt;}
.yfe{bottom:717.546667pt;}
.y11{bottom:718.506667pt;}
.y134{bottom:720.746667pt;}
.y361{bottom:721.066667pt;}
.y23b{bottom:723.306667pt;}
.y66{bottom:724.586667pt;}
.y2db{bottom:726.826667pt;}
.y2f4{bottom:729.066667pt;}
.y41{bottom:730.986667pt;}
.y256{bottom:731.626667pt;}
.yaa{bottom:731.946667pt;}
.y7e{bottom:733.546667pt;}
.y19b{bottom:734.506667pt;}
.y14e{bottom:734.826667pt;}
.y112{bottom:736.426667pt;}
.y10{bottom:737.066667pt;}
.y360{bottom:738.666667pt;}
.y133{bottom:739.306667pt;}
.y392{bottom:740.586667pt;}
.y65{bottom:743.466667pt;}
.y2f3{bottom:747.946667pt;}
.y40{bottom:749.546667pt;}
.y255{bottom:750.186667pt;}
.ya9{bottom:750.506667pt;}
.y7d{bottom:752.426667pt;}
.y19a{bottom:753.386667pt;}
.y14d{bottom:753.706667pt;}
.y218{bottom:754.026667pt;}
.y111{bottom:755.626667pt;}
.yf{bottom:755.946667pt;}
.y35f{bottom:756.586667pt;}
.y132{bottom:757.546667pt;}
.y391{bottom:760.426667pt;}
.y64{bottom:762.346667pt;}
.y254{bottom:765.546667pt;}
.y2f2{bottom:766.826667pt;}
.y3f{bottom:768.426667pt;}
.ya8{bottom:769.386667pt;}
.y287{bottom:770.346667pt;}
.y7c{bottom:770.986667pt;}
.y199{bottom:771.946667pt;}
.y14c{bottom:772.586667pt;}
.y277{bottom:772.906667pt;}
.y217{bottom:773.866667pt;}
.ye{bottom:774.826667pt;}
.y390{bottom:779.946667pt;}
.y63{bottom:780.906667pt;}
.y2f1{bottom:781.866667pt;}
.y298{bottom:786.026667pt;}
.y3e{bottom:787.306667pt;}
.y14b{bottom:787.626667pt;}
.ya7{bottom:788.906667pt;}
.y7b{bottom:790.826667pt;}
.y276{bottom:791.466667pt;}
.y216{bottom:792.426667pt;}
.yd{bottom:793.386667pt;}
.y131{bottom:794.666667pt;}
.y62{bottom:799.786667pt;}
.y30d{bottom:800.746667pt;}
.y297{bottom:804.906667pt;}
.y3d{bottom:805.866667pt;}
.y286{bottom:807.786667pt;}
.ya6{bottom:808.746667pt;}
.y7a{bottom:809.386667pt;}
.y198{bottom:809.706667pt;}
.y275{bottom:810.346667pt;}
.yc{bottom:812.266667pt;}
.y130{bottom:813.546667pt;}
.y24a{bottom:815.466667pt;}
.y61{bottom:818.346667pt;}
.y285{bottom:822.826667pt;}
.y296{bottom:823.466667pt;}
.y3c{bottom:824.746667pt;}
.y274{bottom:825.386667pt;}
.ya5{bottom:828.266667pt;}
.y79{bottom:829.226667pt;}
.yb{bottom:830.826667pt;}
.y12f{bottom:832.106667pt;}
.y249{bottom:834.026667pt;}
.y60{bottom:837.226667pt;}
.y38f{bottom:838.506667pt;}
.y295{bottom:838.826667pt;}
.y3b{bottom:843.626667pt;}
.ya4{bottom:847.146667pt;}
.y78{bottom:847.786667pt;}
.y1c9{bottom:848.106667pt;}
.ya{bottom:849.706667pt;}
.y12e{bottom:850.986667pt;}
.y248{bottom:852.906667pt;}
.y5f{bottom:856.106667pt;}
.y3a{bottom:862.186667pt;}
.y38e{bottom:863.466667pt;}
.y197{bottom:865.706667pt;}
.ya3{bottom:866.666667pt;}
.y77{bottom:867.626667pt;}
.y247{bottom:868.266667pt;}
.y9{bottom:868.586667pt;}
.y5e{bottom:874.666667pt;}
.y39{bottom:881.066667pt;}
.y196{bottom:884.586667pt;}
.ya2{bottom:885.546667pt;}
.y76{bottom:886.186667pt;}
.y1c8{bottom:886.506667pt;}
.y8{bottom:887.146667pt;}
.y12d{bottom:888.106667pt;}
.y5d{bottom:893.546667pt;}
.y38{bottom:899.626667pt;}
.y195{bottom:903.466667pt;}
.ya1{bottom:905.066667pt;}
.y7{bottom:906.026667pt;}
.y12c{bottom:906.346667pt;}
.y5c{bottom:912.106667pt;}
.y37{bottom:918.506667pt;}
.y194{bottom:922.026667pt;}
.ya0{bottom:923.946667pt;}
.y6{bottom:924.906667pt;}
.y5b{bottom:930.986667pt;}
.y36{bottom:937.386667pt;}
.y193{bottom:940.906667pt;}
.y1c7{bottom:942.506667pt;}
.y5{bottom:943.466667pt;}
.y12b{bottom:943.786667pt;}
.y5a{bottom:949.866667pt;}
.y35{bottom:955.946667pt;}
.y192{bottom:959.466667pt;}
.y4{bottom:962.346667pt;}
.y59{bottom:969.706667pt;}
.y34{bottom:974.826667pt;}
.y191{bottom:979.306667pt;}
.y3{bottom:980.906667pt;}
.y12a{bottom:981.226667pt;}
.y33{bottom:994.666667pt;}
.y190{bottom:998.826667pt;}
.y2{bottom:999.786667pt;}
.y129{bottom:1000.106667pt;}
.h9{height:18.880000pt;}
.h10{height:34.978125pt;}
.hd{height:38.915000pt;}
.hf{height:40.725000pt;}
.h11{height:41.484375pt;}
.h4{height:42.656250pt;}
.h3{height:43.156250pt;}
.h12{height:43.741875pt;}
.he{height:44.468750pt;}
.h5{height:44.875000pt;}
.h6{height:45.062500pt;}
.h8{height:45.250000pt;}
.hb{height:46.093750pt;}
.hc{height:46.250000pt;}
.h2{height:56.187500pt;}
.h7{height:59.070000pt;}
.ha{height:60.843750pt;}
.h1{height:1098.666667pt;}
.h0{height:1122.666667pt;}
.w2{width:8.960001pt;}
.w3{width:17.920000pt;}
.w1{width:769.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:12.000000pt;}
.x42{left:79.439773pt;}
.x14{left:81.173173pt;}
.x13{left:83.839840pt;}
.x11{left:88.906573pt;}
.x4d{left:90.639973pt;}
.x54{left:93.306640pt;}
.x18{left:98.373053pt;}
.x5{left:107.839840pt;}
.x6{left:109.045560pt;}
.x16{left:112.906573pt;}
.x21{left:119.839840pt;}
.x27{left:122.373067pt;}
.x1e{left:125.039733pt;}
.x2b{left:126.773067pt;}
.x15{left:131.839867pt;}
.x1a{left:136.906533pt;}
.x4e{left:146.373067pt;}
.x19{left:155.839867pt;}
.x8{left:160.072933pt;}
.x3{left:164.760400pt;}
.x2a{left:179.839867pt;}
.x17{left:183.439733pt;}
.x4{left:234.049467pt;}
.xe{left:239.584667pt;}
.x9{left:273.955733pt;}
.xf{left:286.713467pt;}
.x7{left:291.002533pt;}
.xb{left:295.471333pt;}
.x10{left:299.839867pt;}
.xc{left:332.869733pt;}
.xd{left:335.057333pt;}
.xa{left:337.342400pt;}
.x2{left:384.506533pt;}
.x2d{left:386.606400pt;}
.x20{left:396.073200pt;}
.x25{left:400.480000pt;}
.x12{left:404.960000pt;}
.x53{left:451.939733pt;}
.x45{left:453.906533pt;}
.x1c{left:458.606400pt;}
.x22{left:462.073200pt;}
.x3f{left:467.206400pt;}
.x1b{left:469.873067pt;}
.x40{left:473.839867pt;}
.x34{left:477.273067pt;}
.x28{left:482.606400pt;}
.x1d{left:485.273067pt;}
.x3c{left:493.873067pt;}
.x44{left:498.606400pt;}
.x29{left:502.606400pt;}
.x4c{left:525.306267pt;}
.x3b{left:529.906533pt;}
.x24{left:533.406533pt;}
.x36{left:538.606400pt;}
.x38{left:553.939733pt;}
.x26{left:557.506533pt;}
.x23{left:565.406533pt;}
.x3a{left:573.906533pt;}
.x1f{left:579.273067pt;}
.x2e{left:582.606400pt;}
.x46{left:604.539733pt;}
.x2c{left:623.939733pt;}
.x39{left:628.306267pt;}
.x35{left:629.439733pt;}
.x4b{left:633.273067pt;}
.x3e{left:640.006533pt;}
.x48{left:641.273067pt;}
.x4a{left:653.273067pt;}
.x49{left:657.273067pt;}
.x37{left:659.573333pt;}
.x4f{left:671.573200pt;}
.x41{left:674.106400pt;}
.x3d{left:677.773067pt;}
.x43{left:682.639600pt;}
.x30{left:683.573200pt;}
.x32{left:686.373067pt;}
.x47{left:692.373067pt;}
.x51{left:694.239867pt;}
.x52{left:695.573200pt;}
.x31{left:696.906533pt;}
.x33{left:699.573200pt;}
.x2f{left:707.573200pt;}
.x50{left:713.506400pt;}
}




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