
    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_b4b83ddb2ff091c7024e38f5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.763184;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_ad40a42774d97875cd7d6e8c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.034000;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_b77c3d4e1a653370cca8e6a9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.760254;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_dd87c7d7ecc268ea684c1f6d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.962402;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_24a2047f3118d987a0377d2b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936035;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_5f5a8967fef4943870ad76a7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.147461;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_ea27b793531455747da47c02.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.012000;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_bd8399bd568c803a2bc25b6b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.948242;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_3714e3f350969fb20105e0d4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.147461;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_597d70c3acc6766deb86aaf3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.961914;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_e02a9c89a00839187c9c3172.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.030273;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_378b860380ba101c83681a49.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.090332;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_17abff1f74bd1c9774228d8a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.202148;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_50db3e5b3aabb86191bd97d7.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.172852;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_fca02379bbe4c6f3c804d1a4.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_086b237e3cf3f884784217e4.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.172852;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_d6e804b1c532f9acde8e8e9b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_70442c9199d6d2b44ee5ea06.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.766113;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_44793d54f74893ee43a09a79.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_2d85cc24f2a3e2342b324b62.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.933105;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_4b876598487825e4eed9d687.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-5.760000px;}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.940000px;}
.ls1c{letter-spacing:-0.648000px;}
.ls6{letter-spacing:-0.432000px;}
.ls1b{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.252000px;}
.lsb{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.181200px;}
.ls19{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.144000px;}
.ls18{letter-spacing:-0.108000px;}
.ls8{letter-spacing:-0.106800px;}
.ls21{letter-spacing:-0.078000px;}
.ls1e{letter-spacing:-0.072000px;}
.lsc{letter-spacing:-0.037440px;}
.ls14{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.022320px;}
.ls15{letter-spacing:0.036000px;}
.ls7{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.144000px;}
.ls20{letter-spacing:0.174240px;}
.ls1d{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.256200px;}
.ls2{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.325440px;}
.ls4{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.468000px;}
.lsd{letter-spacing:0.504000px;}
.ls1f{letter-spacing:0.612000px;}
.ls12{letter-spacing:235.422000px;}
.ls13{letter-spacing:253.722000px;}
.ls1{letter-spacing:678.396000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,153),0 0.015em rgb(0,0,153),0.015em 0 rgb(0,0,153),0 -0.015em  rgb(0,0,153);}
.sc1{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,153);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-72.000000px;}
.ws0{word-spacing:-30.060000px;}
.ws2{word-spacing:-26.621280px;}
.ws8{word-spacing:-20.304000px;}
.ws10{word-spacing:-20.160000px;}
.ws3{word-spacing:-20.016000px;}
.ws6{word-spacing:-19.584000px;}
.ws7{word-spacing:-16.506480px;}
.wsc{word-spacing:-16.272000px;}
.wsf{word-spacing:-16.056000px;}
.ws11{word-spacing:-15.840000px;}
.ws22{word-spacing:-15.552000px;}
.ws5{word-spacing:-15.480000px;}
.ws29{word-spacing:-15.408000px;}
.ws21{word-spacing:-15.120000px;}
.ws24{word-spacing:-14.832000px;}
.ws28{word-spacing:-13.505760px;}
.ws2b{word-spacing:-13.427760px;}
.ws1{word-spacing:-13.410720px;}
.ws12{word-spacing:-13.229520px;}
.ws9{word-spacing:-12.643080px;}
.wsb{word-spacing:-12.386880px;}
.ws17{word-spacing:-12.204000px;}
.wsa{word-spacing:-11.989440px;}
.wsd{word-spacing:-10.902240px;}
.ws2a{word-spacing:-8.748000px;}
.ws23{word-spacing:-8.604000px;}
.ws27{word-spacing:-8.496000px;}
.ws1f{word-spacing:-8.424000px;}
.ws19{word-spacing:-8.352000px;}
.ws26{word-spacing:-8.316000px;}
.ws18{word-spacing:-8.244000px;}
.ws1e{word-spacing:-8.172000px;}
.ws1a{word-spacing:-8.136000px;}
.ws25{word-spacing:-8.064000px;}
.ws1b{word-spacing:-8.028000px;}
.ws1c{word-spacing:-7.956000px;}
.ws1d{word-spacing:-7.920000px;}
.ws20{word-spacing:-7.884000px;}
.ws2e{word-spacing:-7.848000px;}
.ws16{word-spacing:-0.072000px;}
.ws2c{word-spacing:-0.036000px;}
.ws4{word-spacing:0.000000px;}
.ws2d{word-spacing:0.108000px;}
.ws14{word-spacing:94.764000px;}
.ws13{word-spacing:195.894000px;}
.ws15{word-spacing:200.514000px;}
._b{margin-left:-11.792400px;}
._3{margin-left:-1.418400px;}
._4{width:1.012080px;}
._e{width:2.450400px;}
._1c{width:3.722160px;}
._1b{width:8.280000px;}
._8{width:31.908000px;}
._c{width:35.760000px;}
._d{width:43.812000px;}
._20{width:91.908000px;}
._19{width:97.560000px;}
._6{width:124.068000px;}
._9{width:151.932000px;}
._5{width:175.944000px;}
._7{width:195.984000px;}
._2{width:206.256000px;}
._1f{width:226.620000px;}
._1e{width:240.000000px;}
._a{width:291.972000px;}
._17{width:440.952000px;}
._1d{width:847.020000px;}
._14{width:1230.964800px;}
._1{width:1288.740000px;}
._0{width:1388.676000px;}
._1a{width:1473.060000px;}
._12{width:1711.833120px;}
._13{width:1792.039920px;}
._11{width:1825.791600px;}
._f{width:1861.440000px;}
._18{width:1893.264000px;}
._16{width:1961.304000px;}
._15{width:1995.211200px;}
._10{width:2021.352000px;}
.fc9{color:rgb(5,99,193);}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,153);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(68,114,196);}
.fc8{color:rgb(89,89,89);}
.fc7{color:rgb(0,0,0);}
.fc6{color:rgb(127,127,127);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(13,13,13);}
.fse{font-size:36.000000px;}
.fs2{font-size:48.240000px;}
.fsc{font-size:54.000000px;}
.fsd{font-size:54.144000px;}
.fs8{font-size:59.760000px;}
.fsb{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:72.144000px;}
.fs9{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fsa{font-size:108.000000px;}
.fs1{font-size:120.240000px;}
.fs4{font-size:144.000000px;}
.fs3{font-size:156.240000px;}
.fs5{font-size:216.000000px;}
.y5c{bottom:-17.820000px;}
.y0{bottom:0.000000px;}
.y28b{bottom:2.340000px;}
.y46b{bottom:2.514000px;}
.y233{bottom:2.520000px;}
.y3f3{bottom:2.565000px;}
.y22e{bottom:2.700000px;}
.y336{bottom:2.730000px;}
.y3e3{bottom:2.745000px;}
.y23f{bottom:2.880000px;}
.y409{bottom:2.925000px;}
.y54a{bottom:3.060000px;}
.y54d{bottom:3.105000px;}
.y36f{bottom:3.420000px;}
.y21e{bottom:3.600000px;}
.y35d{bottom:3.780000px;}
.y3ed{bottom:3.960000px;}
.y541{bottom:3.990000px;}
.y38b{bottom:4.140000px;}
.y379{bottom:4.320000px;}
.y5c4{bottom:4.680000px;}
.y16{bottom:4.785000px;}
.y3aa{bottom:4.860000px;}
.y5b3{bottom:5.220000px;}
.y518{bottom:5.625000px;}
.y94{bottom:5.760000px;}
.y8a{bottom:5.940000px;}
.yc4{bottom:6.120000px;}
.y29{bottom:6.150000px;}
.ycd{bottom:6.300000px;}
.y454{bottom:6.480000px;}
.y43{bottom:6.660000px;}
.yb5{bottom:6.690000px;}
.y3f{bottom:6.840000px;}
.y3ae{bottom:7.020000px;}
.y4f2{bottom:7.734000px;}
.y28d{bottom:7.740000px;}
.y3a6{bottom:7.914000px;}
.y291{bottom:7.920000px;}
.y4ed{bottom:7.965000px;}
.y2e8{bottom:8.094000px;}
.y221{bottom:8.100000px;}
.y278{bottom:8.130000px;}
.y26e{bottom:8.145000px;}
.y22c{bottom:8.280000px;}
.y41e{bottom:8.325000px;}
.y23a{bottom:8.460000px;}
.y254{bottom:8.505000px;}
.y596{bottom:8.640000px;}
.y2bc{bottom:8.820000px;}
.y44{bottom:9.540000px;}
.y40{bottom:9.720000px;}
.y573{bottom:9.900000px;}
.y5f{bottom:10.260000px;}
.y592{bottom:10.440000px;}
.y585{bottom:10.800000px;}
.y4a4{bottom:11.154000px;}
.y223{bottom:11.160000px;}
.y415{bottom:11.190000px;}
.y3f4{bottom:11.205000px;}
.y432{bottom:11.334000px;}
.y327{bottom:11.340000px;}
.y428{bottom:11.370000px;}
.y41f{bottom:11.385000px;}
.y2f{bottom:11.700000px;}
.y3ba{bottom:11.880000px;}
.y311{bottom:12.060000px;}
.y31f{bottom:12.240000px;}
.y2a4{bottom:12.600000px;}
.y3b0{bottom:12.630000px;}
.y5b{bottom:12.780000px;}
.y3a4{bottom:13.314000px;}
.y28a{bottom:13.320000px;}
.y4f6{bottom:13.350000px;}
.y46a{bottom:13.494000px;}
.y235{bottom:13.500000px;}
.y265{bottom:13.530000px;}
.y2d9{bottom:13.545000px;}
.y284{bottom:13.674000px;}
.y2c{bottom:13.680000px;}
.y277{bottom:13.710000px;}
.y232{bottom:13.725000px;}
.y491{bottom:13.854000px;}
.yf3{bottom:13.860000px;}
.y24c{bottom:13.890000px;}
.y408{bottom:13.905000px;}
.y549{bottom:14.040000px;}
.y54c{bottom:14.085000px;}
.y228{bottom:14.400000px;}
.y45c{bottom:14.580000px;}
.yf7{bottom:14.760000px;}
.y38a{bottom:15.120000px;}
.y378{bottom:15.300000px;}
.y5c3{bottom:15.660000px;}
.y3a9{bottom:15.840000px;}
.y58e{bottom:16.020000px;}
.y5b2{bottom:16.200000px;}
.y467{bottom:16.380000px;}
.y46c{bottom:16.554000px;}
.y463{bottom:16.560000px;}
.y517{bottom:16.605000px;}
.y317{bottom:16.740000px;}
.y30e{bottom:16.920000px;}
.y50c{bottom:16.950000px;}
.y330{bottom:17.100000px;}
.y309{bottom:17.280000px;}
.y14{bottom:17.385000px;}
.y451{bottom:17.460000px;}
.y1d3{bottom:17.565000px;}
.y1c7{bottom:17.640000px;}
.y31b{bottom:17.820000px;}
.y2fc{bottom:17.865000px;}
.y593{bottom:18.000000px;}
.y3ad{bottom:18.030000px;}
.y12{bottom:18.105000px;}
.y28c{bottom:18.720000px;}
.y3a5{bottom:18.894000px;}
.y290{bottom:18.900000px;}
.y21d{bottom:18.930000px;}
.y492{bottom:19.254000px;}
.y229{bottom:19.260000px;}
.y24d{bottom:19.290000px;}
.y4b3{bottom:19.305000px;}
.y239{bottom:19.440000px;}
.y401{bottom:19.470000px;}
.y3d{bottom:19.485000px;}
.y2c0{bottom:19.620000px;}
.y443{bottom:19.665000px;}
.y2bb{bottom:19.845000px;}
.y2d7{bottom:19.980000px;}
.y57c{bottom:20.700000px;}
.y4d6{bottom:20.730000px;}
.y374{bottom:20.880000px;}
.y572{bottom:21.060000px;}
.y345{bottom:21.240000px;}
.y591{bottom:21.420000px;}
.y584{bottom:21.780000px;}
.y326{bottom:22.320000px;}
.y540{bottom:22.350000px;}
.y493{bottom:22.494000px;}
.y3f6{bottom:22.500000px;}
.y402{bottom:22.530000px;}
.y40a{bottom:22.545000px;}
.y32e{bottom:22.680000px;}
.y455{bottom:22.860000px;}
.y3b9{bottom:22.905000px;}
.y2d1{bottom:23.040000px;}
.y31e{bottom:23.220000px;}
.y2f9{bottom:23.445000px;}
.y2a3{bottom:23.580000px;}
.y3af{bottom:23.610000px;}
.y384{bottom:24.294000px;}
.y289{bottom:24.300000px;}
.y44a{bottom:24.330000px;}
.y465{bottom:24.345000px;}
.y469{bottom:24.474000px;}
.y28f{bottom:24.480000px;}
.y3b6{bottom:24.660000px;}
.y490{bottom:24.834000px;}
.y22a{bottom:24.840000px;}
.y24b{bottom:24.870000px;}
.y407{bottom:24.885000px;}
.y23b{bottom:25.020000px;}
.y247{bottom:25.065000px;}
.y2cc{bottom:25.200000px;}
.y226{bottom:25.380000px;}
.y459{bottom:25.560000px;}
.y35c{bottom:25.740000px;}
.y5a5{bottom:26.100000px;}
.y375{bottom:26.280000px;}
.y5c0{bottom:26.640000px;}
.y3a8{bottom:26.820000px;}
.y58d{bottom:27.000000px;}
.y5b1{bottom:27.180000px;}
.y44b{bottom:27.390000px;}
.y445{bottom:27.540000px;}
.y513{bottom:27.585000px;}
.y329{bottom:27.720000px;}
.y30b{bottom:27.900000px;}
.y508{bottom:27.930000px;}
.y32c{bottom:28.080000px;}
.y308{bottom:28.260000px;}
.y3b8{bottom:28.305000px;}
.y2d2{bottom:28.440000px;}
.y587{bottom:28.485000px;}
.y125{bottom:28.620000px;}
.y559{bottom:28.650000px;}
.y319{bottom:28.800000px;}
.y2fb{bottom:28.845000px;}
.y594{bottom:28.980000px;}
.y3ac{bottom:29.010000px;}
.y302{bottom:29.700000px;}
.y44c{bottom:29.730000px;}
.y2f1{bottom:29.880000px;}
.y21c{bottom:29.910000px;}
.y22b{bottom:30.240000px;}
.y24e{bottom:30.270000px;}
.y238{bottom:30.420000px;}
.y240{bottom:30.450000px;}
.y248{bottom:30.465000px;}
.y31{bottom:30.600000px;}
.y441{bottom:30.645000px;}
.y2c4{bottom:30.810000px;}
.y2ba{bottom:30.825000px;}
.y2d6{bottom:30.960000px;}
.y452{bottom:31.500000px;}
.y387{bottom:31.680000px;}
.y4d5{bottom:31.710000px;}
.y373{bottom:31.860000px;}
.y571{bottom:32.040000px;}
.y214{bottom:32.220000px;}
.y58a{bottom:32.400000px;}
.y1c{bottom:32.580000px;}
.y583{bottom:32.760000px;}
.y5bb{bottom:33.120000px;}
.y514{bottom:33.165000px;}
.y325{bottom:33.300000px;}
.y509{bottom:33.330000px;}
.y37e{bottom:33.480000px;}
.y304{bottom:33.660000px;}
.y440{bottom:33.705000px;}
.y448{bottom:33.840000px;}
.y310{bottom:34.020000px;}
.y2d0{bottom:34.050000px;}
.y31d{bottom:34.230000px;}
.y2a2{bottom:34.560000px;}
.y2f5{bottom:35.280000px;}
.y438{bottom:35.310000px;}
.y4fe{bottom:35.325000px;}
.y2e1{bottom:35.460000px;}
.y242{bottom:35.820000px;}
.y23e{bottom:35.850000px;}
.y25e{bottom:35.865000px;}
.y251{bottom:36.000000px;}
.y246{bottom:36.045000px;}
.y2cb{bottom:36.180000px;}
.y225{bottom:36.360000px;}
.y2c6{bottom:36.390000px;}
.y45b{bottom:36.540000px;}
.y2b{bottom:36.585000px;}
.y35b{bottom:36.720000px;}
.y5a4{bottom:37.080000px;}
.y377{bottom:37.260000px;}
.y386{bottom:37.290000px;}
.y5c2{bottom:37.620000px;}
.y5ae{bottom:37.800000px;}
.y58c{bottom:37.974000px;}
.y5e{bottom:38.160000px;}
.y439{bottom:38.550000px;}
.y512{bottom:38.565000px;}
.y321{bottom:38.700000px;}
.y30d{bottom:38.880000px;}
.y507{bottom:38.910000px;}
.y32f{bottom:39.060000px;}
.y53f{bottom:39.090000px;}
.y307{bottom:39.240000px;}
.y450{bottom:39.420000px;}
.y2e{bottom:39.600000px;}
.y558{bottom:39.630000px;}
.y31a{bottom:39.810000px;}
.y2fa{bottom:39.825000px;}
.y3ec{bottom:40.680000px;}
.y526{bottom:40.710000px;}
.y4fd{bottom:40.725000px;}
.y2f0{bottom:40.860000px;}
.y21b{bottom:40.890000px;}
.y5a9{bottom:41.400000px;}
.y2bf{bottom:41.580000px;}
.y442{bottom:41.625000px;}
.y43e{bottom:41.760000px;}
.y2c3{bottom:41.790000px;}
.y2b9{bottom:41.805000px;}
.y564{bottom:41.940000px;}
.y578{bottom:42.660000px;}
.y4d4{bottom:42.690000px;}
.y56e{bottom:43.020000px;}
.y344{bottom:43.200000px;}
.y590{bottom:43.374000px;}
.y582{bottom:43.740000px;}
.y324{bottom:44.280000px;}
.y37d{bottom:44.460000px;}
.y32d{bottom:44.640000px;}
.y43d{bottom:45.000000px;}
.y31c{bottom:45.210000px;}
.y213{bottom:45.216000px;}
.y2a1{bottom:45.540000px;}
.y542{bottom:45.930000px;}
.y51c{bottom:46.260000px;}
.y437{bottom:46.290000px;}
.y2ed{bottom:46.440000px;}
.y5a7{bottom:46.800000px;}
.y45f{bottom:46.980000px;}
.y227{bottom:47.340000px;}
.y2c5{bottom:47.370000px;}
.y45a{bottom:47.520000px;}
.y35a{bottom:47.700000px;}
.y4d7{bottom:47.730000px;}
.y376{bottom:48.240000px;}
.y389{bottom:48.270000px;}
.y5c1{bottom:48.600000px;}
.y5ad{bottom:48.780000px;}
.y58b{bottom:48.954000px;}
.y516{bottom:49.545000px;}
.y57d{bottom:49.680000px;}
.y52e{bottom:49.725000px;}
.y30c{bottom:49.860000px;}
.y50b{bottom:49.890000px;}
.y504{bottom:50.040000px;}
.y53e{bottom:50.070000px;}
.y381{bottom:50.085000px;}
.y306{bottom:50.220000px;}
.y453{bottom:50.400000px;}
.y314{bottom:50.580000px;}
.y557{bottom:50.610000px;}
.y5{bottom:50.940000px;}
.y210{bottom:50.976000px;}
.y124{bottom:51.345000px;}
.y525{bottom:51.690000px;}
.y500{bottom:51.705000px;}
.y2ef{bottom:51.840000px;}
.y21a{bottom:51.870000px;}
.y21f{bottom:52.230000px;}
.y5a8{bottom:52.380000px;}
.y2c2{bottom:52.770000px;}
.y2b8{bottom:52.785000px;}
.y563{bottom:52.920000px;}
.y57b{bottom:53.640000px;}
.y4d3{bottom:53.670000px;}
.y61{bottom:54.000000px;}
.y343{bottom:54.180000px;}
.y58f{bottom:54.354000px;}
.y581{bottom:54.720000px;}
.y33{bottom:55.080000px;}
.y323{bottom:55.260000px;}
.y32{bottom:55.620000px;}
.y575{bottom:55.980000px;}
.y552{bottom:56.190000px;}
.y2a0{bottom:56.520000px;}
.y1d2{bottom:56.880000px;}
.y1c6{bottom:56.955000px;}
.y51b{bottom:57.240000px;}
.y43b{bottom:57.270000px;}
.y2f4{bottom:57.420000px;}
.y368{bottom:58.320000px;}
.y569{bottom:58.500000px;}
.y359{bottom:58.680000px;}
.y3eb{bottom:58.860000px;}
.y5a3{bottom:59.220000px;}
.y388{bottom:59.250000px;}
.y347{bottom:59.760000px;}
.y515{bottom:60.525000px;}
.y5bc{bottom:60.660000px;}
.y52d{bottom:60.705000px;}
.y328{bottom:60.840000px;}
.y50a{bottom:60.870000px;}
.y503{bottom:61.020000px;}
.y53d{bottom:61.050000px;}
.y380{bottom:61.065000px;}
.y305{bottom:61.200000px;}
.y529{bottom:61.380000px;}
.y313{bottom:61.560000px;}
.y556{bottom:61.590000px;}
.y2ee{bottom:62.820000px;}
.y219{bottom:62.850000px;}
.y4ff{bottom:62.865000px;}
.y2b7{bottom:63.765000px;}
.y369{bottom:63.900000px;}
.y57a{bottom:64.620000px;}
.y4d2{bottom:64.650000px;}
.y570{bottom:64.980000px;}
.y342{bottom:65.160000px;}
.y580{bottom:65.700000px;}
.y322{bottom:66.240000px;}
.y50f{bottom:66.600000px;}
.y56b{bottom:66.630000px;}
.y60{bottom:66.960000px;}
.y55c{bottom:67.170000px;}
.y29f{bottom:67.500000px;}
.y51a{bottom:68.220000px;}
.y43a{bottom:68.250000px;}
.y2f3{bottom:68.400000px;}
.y367{bottom:69.300000px;}
.y568{bottom:69.480000px;}
.y358{bottom:69.660000px;}
.y5a2{bottom:70.200000px;}
.y33a{bottom:70.740000px;}
.y287{bottom:71.496000px;}
.y51e{bottom:71.856000px;}
.y502{bottom:72.000000px;}
.y53c{bottom:72.030000px;}
.y37f{bottom:72.045000px;}
.y435{bottom:72.396000px;}
.y315{bottom:72.540000px;}
.y555{bottom:72.570000px;}
.y59{bottom:72.936000px;}
.y2eb{bottom:73.296000px;}
.y218{bottom:73.830000px;}
.y524{bottom:74.556000px;}
.y2b6{bottom:74.745000px;}
.y562{bottom:74.880000px;}
.y363{bottom:75.240000px;}
.y4c7{bottom:75.276000px;}
.y579{bottom:75.600000px;}
.y4d1{bottom:75.630000px;}
.y1b{bottom:75.780000px;}
.y56f{bottom:75.960000px;}
.y33b{bottom:76.140000px;}
.y50e{bottom:77.580000px;}
.y3da{bottom:77.616000px;}
.y55b{bottom:78.150000px;}
.y296{bottom:78.480000px;}
.y4a7{bottom:79.056000px;}
.y1d0{bottom:79.275000px;}
.y1c4{bottom:79.380000px;}
.y36e{bottom:80.280000px;}
.y5b0{bottom:80.316000px;}
.y567{bottom:80.505000px;}
.y357{bottom:80.640000px;}
.y5a1{bottom:81.210000px;}
.y339{bottom:81.720000px;}
.y46e{bottom:81.936000px;}
.y262{bottom:82.836000px;}
.y53b{bottom:83.010000px;}
.y554{bottom:83.550000px;}
.y447{bottom:83.736000px;}
.y298{bottom:84.060000px;}
.y217{bottom:84.810000px;}
.y2b5{bottom:85.725000px;}
.y561{bottom:85.905000px;}
.y27{bottom:86.070000px;}
.y362{bottom:86.220000px;}
.y4d0{bottom:86.610000px;}
.y47f{bottom:86.796000px;}
.y341{bottom:87.120000px;}
.y3ce{bottom:87.516000px;}
.y85{bottom:88.605000px;}
.y55a{bottom:89.130000px;}
.y295{bottom:89.460000px;}
.y2f2{bottom:90.390000px;}
.y36d{bottom:91.260000px;}
.y566{bottom:91.485000px;}
.y356{bottom:91.620000px;}
.y599{bottom:92.190000px;}
.y346{bottom:92.700000px;}
.y553{bottom:94.530000px;}
.y286{bottom:94.896000px;}
.y297{bottom:95.040000px;}
.y434{bottom:95.616000px;}
.y216{bottom:95.790000px;}
.y316{bottom:96.156000px;}
.y2ea{bottom:96.516000px;}
.y2b4{bottom:96.705000px;}
.y1c9{bottom:96.840000px;}
.y560{bottom:96.885000px;}
.y1bb{bottom:96.915000px;}
.y361{bottom:97.200000px;}
.y598{bottom:97.590000px;}
.y340{bottom:98.100000px;}
.y294{bottom:100.440000px;}
.y4a6{bottom:102.276000px;}
.y36c{bottom:102.420000px;}
.y565{bottom:102.465000px;}
.y34c{bottom:102.780000px;}
.y5a0{bottom:103.170000px;}
.y494{bottom:104.076000px;}
.y2ce{bottom:104.256000px;}
.y4b7{bottom:105.336000px;}
.y261{bottom:106.056000px;}
.y4c6{bottom:106.776000px;}
.y3a7{bottom:107.316000px;}
.y2a8{bottom:107.685000px;}
.y55f{bottom:107.865000px;}
.y34d{bottom:108.180000px;}
.y33f{bottom:109.080000px;}
.y3d9{bottom:109.116000px;}
.y47e{bottom:110.016000px;}
.y3cd{bottom:110.736000px;}
.y84{bottom:111.285000px;}
.y29e{bottom:111.420000px;}
.y2aa{bottom:113.265000px;}
.y36b{bottom:113.400000px;}
.y34b{bottom:113.760000px;}
.y59f{bottom:114.150000px;}
.y589{bottom:115.416000px;}
.y46d{bottom:115.596000px;}
.y285{bottom:118.116000px;}
.y2a7{bottom:118.665000px;}
.y433{bottom:118.836000px;}
.y360{bottom:119.160000px;}
.y2e9{bottom:119.736000px;}
.yb3{bottom:119.916000px;}
.y33e{bottom:120.060000px;}
.y1a{bottom:121.320000px;}
.y7d{bottom:121.716000px;}
.y29d{bottom:122.400000px;}
.y1bc{bottom:122.760000px;}
.y106{bottom:123.156000px;}
.y4f3{bottom:124.236000px;}
.y2a9{bottom:124.245000px;}
.y36a{bottom:124.380000px;}
.y355{bottom:124.740000px;}
.y59e{bottom:125.130000px;}
.y4a5{bottom:125.496000px;}
.y2cd{bottom:127.476000px;}
.y193{bottom:127.656000px;}
.y1f5{bottom:127.836000px;}
.y4b6{bottom:128.556000px;}
.y12b{bottom:128.736000px;}
.y383{bottom:128.916000px;}
.y260{bottom:129.276000px;}
.y2a6{bottom:129.645000px;}
.y35f{bottom:130.140000px;}
.y5af{bottom:130.716000px;}
.y33d{bottom:131.040000px;}
.y152{bottom:131.076000px;}
.ye0{bottom:131.256000px;}
.y1ca{bottom:131.295000px;}
.y29c{bottom:133.380000px;}
.y47d{bottom:133.416000px;}
.y18{bottom:133.770000px;}
.y3cc{bottom:133.956000px;}
.y83{bottom:134.145000px;}
.y1b9{bottom:134.316000px;}
.y354{bottom:135.720000px;}
.y59d{bottom:136.110000px;}
.y523{bottom:137.556000px;}
.y4c5{bottom:138.276000px;}
.y51d{bottom:138.456000px;}
.y3d8{bottom:140.616000px;}
.y2b3{bottom:140.625000px;}
.y35e{bottom:141.120000px;}
.y283{bottom:141.336000px;}
.y33c{bottom:142.020000px;}
.y431{bottom:142.056000px;}
.y1d{bottom:142.200000px;}
.yb2{bottom:142.956000px;}
.y16e{bottom:143.136000px;}
.y29b{bottom:144.540000px;}
.y7c{bottom:144.576000px;}
.y3a3{bottom:145.836000px;}
.y105{bottom:146.016000px;}
.y353{bottom:146.700000px;}
.y59c{bottom:147.090000px;}
.y4f1{bottom:147.096000px;}
.y1bd{bottom:148.575000px;}
.y4a3{bottom:148.896000px;}
.y468{bottom:149.256000px;}
.y48f{bottom:149.796000px;}
.y519{bottom:150.330000px;}
.y192{bottom:150.510000px;}
.y1f4{bottom:150.690000px;}
.y2b2{bottom:151.605000px;}
.y4b5{bottom:151.770000px;}
.y446{bottom:151.950000px;}
.y25f{bottom:152.490000px;}
.y3ff{bottom:153.570000px;}
.y151{bottom:153.930000px;}
.y29a{bottom:155.550000px;}
.y47c{bottom:156.630000px;}
.y82{bottom:156.825000px;}
.y1b8{bottom:157.170000px;}
.y352{bottom:157.680000px;}
.y59b{bottom:158.070000px;}
.y312{bottom:158.790000px;}
.y12a{bottom:160.410000px;}
.y2b1{bottom:162.585000px;}
.y382{bottom:162.750000px;}
.ydf{bottom:162.930000px;}
.y282{bottom:164.550000px;}
.y430{bottom:165.270000px;}
.y1cb{bottom:165.705000px;}
.yb1{bottom:165.810000px;}
.y2e7{bottom:166.170000px;}
.y299{bottom:166.530000px;}
.y1d1{bottom:167.220000px;}
.y7b{bottom:167.250000px;}
.y1c5{bottom:167.295000px;}
.y3cb{bottom:167.790000px;}
.y249{bottom:168.150000px;}
.y351{bottom:168.660000px;}
.y104{bottom:168.690000px;}
.y522{bottom:169.050000px;}
.y4c4{bottom:169.590000px;}
.y4f0{bottom:169.770000px;}
.y3d7{bottom:171.930000px;}
.y4a2{bottom:172.110000px;}
.y191{bottom:173.190000px;}
.y2b0{bottom:173.565000px;}
.y1be{bottom:174.420000px;}
.y4b4{bottom:174.990000px;}
.y444{bottom:175.170000px;}
.y413{bottom:175.890000px;}
.y5ac{bottom:176.250000px;}
.y150{bottom:176.610000px;}
.y129{bottom:178.230000px;}
.y3a2{bottom:179.490000px;}
.y350{bottom:179.640000px;}
.y81{bottom:179.685000px;}
.y1b7{bottom:179.850000px;}
.y59a{bottom:180.030000px;}
.y1f3{bottom:182.370000px;}
.y466{bottom:183.090000px;}
.y2af{bottom:184.545000px;}
.y37c{bottom:185.970000px;}
.y1{bottom:187.020000px;}
.y349{bottom:187.050000px;}
.y588{bottom:187.230000px;}
.y281{bottom:187.770000px;}
.y20e{bottom:188.130000px;}
.y42f{bottom:188.490000px;}
.y16d{bottom:188.670000px;}
.yb0{bottom:188.850000px;}
.y2e6{bottom:189.390000px;}
.y7a{bottom:190.110000px;}
.y34f{bottom:190.650000px;}
.y103{bottom:191.550000px;}
.y4ef{bottom:192.450000px;}
.yde{bottom:194.790000px;}
.y4a1{bottom:195.330000px;}
.y48e{bottom:195.510000px;}
.y2ae{bottom:195.525000px;}
.y190{bottom:196.050000px;}
.y2ca{bottom:196.410000px;}
.y25d{bottom:198.390000px;}
.y412{bottom:199.110000px;}
.y3fe{bottom:199.290000px;}
.y14f{bottom:199.470000px;}
.y1cc{bottom:200.160000px;}
.y1bf{bottom:200.235000px;}
.y521{bottom:200.370000px;}
.y4c3{bottom:201.090000px;}
.y3ca{bottom:201.450000px;}
.y128{bottom:201.630000px;}
.y80{bottom:202.365000px;}
.y1b6{bottom:202.710000px;}
.y3d6{bottom:203.430000px;}
.y4ee{bottom:204.150000px;}
.y2ad{bottom:206.505000px;}
.y280{bottom:210.990000px;}
.y586{bottom:211.170000px;}
.yaf{bottom:211.710000px;}
.y42e{bottom:211.890000px;}
.y34e{bottom:212.610000px;}
.y79{bottom:212.790000px;}
.y3a1{bottom:213.330000px;}
.y245{bottom:213.870000px;}
.y102{bottom:214.230000px;}
.y1e{bottom:214.635000px;}
.y1f{bottom:216.000000px;}
.y348{bottom:216.390000px;}
.y464{bottom:216.750000px;}
.ydd{bottom:217.470000px;}
.y2ac{bottom:217.515000px;}
.y4a0{bottom:218.550000px;}
.y20d{bottom:219.630000px;}
.y16c{bottom:220.350000px;}
.y4b2{bottom:220.890000px;}
.y14e{bottom:222.150000px;}
.y127{bottom:225.210000px;}
.y7f{bottom:225.225000px;}
.y1b5{bottom:225.390000px;}
.y47b{bottom:225.570000px;}
.y1c0{bottom:226.050000px;}
.y4ec{bottom:226.830000px;}
.y18f{bottom:227.730000px;}
.y511{bottom:227.910000px;}
.y2ab{bottom:228.495000px;}
.y43f{bottom:230.970000px;}
.y520{bottom:231.870000px;}
.y4c2{bottom:232.590000px;}
.y27f{bottom:234.435000px;}
.y1cd{bottom:234.570000px;}
.yae{bottom:234.750000px;}
.y3d5{bottom:234.975000px;}
.y3c9{bottom:235.155000px;}
.y78{bottom:235.470000px;}
.y2e5{bottom:236.055000px;}
.y3a0{bottom:236.595000px;}
.y1f2{bottom:236.910000px;}
.y5ab{bottom:236.955000px;}
.y101{bottom:237.090000px;}
.y338{bottom:239.835000px;}
.ydc{bottom:240.330000px;}
.y48d{bottom:241.275000px;}
.y49f{bottom:241.815000px;}
.y25c{bottom:244.155000px;}
.y30f{bottom:244.875000px;}
.y14d{bottom:245.010000px;}
.y3fd{bottom:245.055000px;}
.y1b4{bottom:248.250000px;}
.y126{bottom:248.790000px;}
.y4eb{bottom:249.735000px;}
.y462{bottom:250.455000px;}
.y1c1{bottom:251.895000px;}
.y16b{bottom:252.210000px;}
.y57f{bottom:253.335000px;}
.y20c{bottom:254.010000px;}
.yad{bottom:257.610000px;}
.y27e{bottom:257.655000px;}
.y42d{bottom:258.375000px;}
.y2e4{bottom:259.275000px;}
.y18e{bottom:259.590000px;}
.y5aa{bottom:259.635000px;}
.y100{bottom:259.770000px;}
.y244{bottom:259.815000px;}
.y51f{bottom:260.355000px;}
.y4ea{bottom:261.435000px;}
.y28{bottom:262.110000px;}
.ydb{bottom:263.010000px;}
.y4c1{bottom:264.135000px;}
.y2c9{bottom:264.675000px;}
.y3d4{bottom:266.295000px;}
.y4b1{bottom:266.655000px;}
.y14c{bottom:267.690000px;}
.y77{bottom:268.230000px;}
.y39f{bottom:268.275000px;}
.y3c8{bottom:268.815000px;}
.y1ce{bottom:269.025000px;}
.y539{bottom:269.355000px;}
.y1b3{bottom:270.930000px;}
.y37b{bottom:271.155000px;}
.y47a{bottom:271.335000px;}
.y293{bottom:272.595000px;}
.y16a{bottom:274.890000px;}
.y1c2{bottom:277.710000px;}
.yac{bottom:280.650000px;}
.y27d{bottom:280.875000px;}
.y42c{bottom:281.595000px;}
.y18d{bottom:282.270000px;}
.y5a6{bottom:282.315000px;}
.y4e9{bottom:284.115000px;}
.y461{bottom:284.295000px;}
.yda{bottom:285.870000px;}
.y48c{bottom:286.995000px;}
.y49e{bottom:287.535000px;}
.y2c8{bottom:287.895000px;}
.y55e{bottom:288.975000px;}
.y25b{bottom:289.875000px;}
.y411{bottom:290.595000px;}
.y3fc{bottom:290.955000px;}
.y1f1{bottom:291.450000px;}
.y3c7{bottom:292.215000px;}
.yff{bottom:292.530000px;}
.y2e3{bottom:292.935000px;}
.y20b{bottom:294.870000px;}
.y123{bottom:295.050000px;}
.y4c0{bottom:295.455000px;}
.y169{bottom:297.750000px;}
.y3d3{bottom:297.795000px;}
.y30a{bottom:298.155000px;}
.y43c{bottom:299.235000px;}
.y14b{bottom:299.550000px;}
.y510{bottom:301.035000px;}
.y1b2{bottom:302.790000px;}
.y1cf{bottom:303.450000px;}
.yab{bottom:303.510000px;}
.y1c3{bottom:303.555000px;}
.y27c{bottom:304.095000px;}
.y37a{bottom:304.815000px;}
.y18c{bottom:305.130000px;}
.y243{bottom:305.535000px;}
.y76{bottom:305.850000px;}
.y39e{bottom:305.895000px;}
.y2a{bottom:306.570000px;}
.y4e8{bottom:306.795000px;}
.y49d{bottom:310.935000px;}
.y4b0{bottom:312.375000px;}
.y50d{bottom:312.735000px;}
.y55d{bottom:312.915000px;}
.y538{bottom:314.895000px;}
.y3c6{bottom:315.435000px;}
.y2e2{bottom:316.155000px;}
.y479{bottom:317.055000px;}
.yd9{bottom:318.450000px;}
.y4e7{bottom:318.675000px;}
.y20a{bottom:318.990000px;}
.y168{bottom:320.430000px;}
.y1f0{bottom:323.310000px;}
.yaa{bottom:326.550000px;}
.y4bf{bottom:326.955000px;}
.y27b{bottom:327.315000px;}
.y18b{bottom:327.810000px;}
.yfe{bottom:327.990000px;}
.y372{bottom:328.035000px;}
.y39d{bottom:329.115000px;}
.y3d2{bottom:329.295000px;}
.y14a{bottom:331.230000px;}
.y48b{bottom:332.715000px;}
.y2c7{bottom:333.795000px;}
.y49c{bottom:334.155000px;}
.y1b1{bottom:334.470000px;}
.y25a{bottom:335.595000px;}
.y410{bottom:336.315000px;}
.y3fb{bottom:336.675000px;}
.y57e{bottom:336.855000px;}
.y537{bottom:337.575000px;}
.y3c5{bottom:338.655000px;}
.yd8{bottom:339.195000px;}
.y2e0{bottom:339.375000px;}
.y4e6{bottom:341.355000px;}
.y26{bottom:341.895000px;}
.y209{bottom:342.255000px;}
.y167{bottom:343.335000px;}
.y75{bottom:346.035000px;}
.y20{bottom:348.015000px;}
.ya9{bottom:349.455000px;}
.y597{bottom:349.995000px;}
.y18a{bottom:350.535000px;}
.y241{bottom:351.255000px;}
.y42b{bottom:351.435000px;}
.y39c{bottom:352.335000px;}
.y460{bottom:352.515000px;}
.y1aa{bottom:354.135000px;}
.y1ef{bottom:355.035000px;}
.y48a{bottom:356.115000px;}
.y1b0{bottom:357.375000px;}
.y4af{bottom:358.095000px;}
.y4be{bottom:358.455000px;}
.y536{bottom:360.255000px;}
.y3d1{bottom:360.795000px;}
.y303{bottom:361.155000px;}
.yd7{bottom:361.515000px;}
.y3c4{bottom:361.875000px;}
.y478{bottom:362.955000px;}
.y149{bottom:363.135000px;}
.yfd{bottom:363.675000px;}
.y122{bottom:364.035000px;}
.y208{bottom:364.755000px;}
.y166{bottom:366.015000px;}
.ya8{bottom:372.495000px;}
.y189{bottom:373.395000px;}
.y27a{bottom:373.935000px;}
.y42a{bottom:374.655000px;}
.y45e{bottom:375.735000px;}
.y74{bottom:377.895000px;}
.y489{bottom:379.335000px;}
.y49b{bottom:379.875000px;}
.y1af{bottom:380.055000px;}
.y259{bottom:381.315000px;}
.y25{bottom:381.855000px;}
.y40f{bottom:382.035000px;}
.y3fa{bottom:382.395000px;}
.y535{bottom:383.115000px;}
.yd6{bottom:383.835000px;}
.y2df{bottom:384.195000px;}
.y3c3{bottom:385.095000px;}
.y148{bottom:385.815000px;}
.y39b{bottom:385.995000px;}
.y4e5{bottom:386.715000px;}
.y1ee{bottom:386.895000px;}
.y207{bottom:387.255000px;}
.y371{bottom:387.795000px;}
.y165{bottom:388.875000px;}
.y4bd{bottom:389.775000px;}
.y436{bottom:389.955000px;}
.y3d0{bottom:392.115000px;}
.ya7{bottom:395.355000px;}
.y188{bottom:396.075000px;}
.y23d{bottom:396.975000px;}
.y279{bottom:397.155000px;}
.y429{bottom:397.875000px;}
.yfc{bottom:398.235000px;}
.y551{bottom:398.415000px;}
.y337{bottom:399.315000px;}
.y73{bottom:400.575000px;}
.y2c1{bottom:402.015000px;}
.y121{bottom:402.375000px;}
.y488{bottom:402.555000px;}
.y49a{bottom:403.095000px;}
.y4ae{bottom:403.815000px;}
.y534{bottom:405.795000px;}
.yd5{bottom:406.155000px;}
.y2de{bottom:407.415000px;}
.y1ae{bottom:407.955000px;}
.y3c2{bottom:408.315000px;}
.y147{bottom:408.675000px;}
.y506{bottom:408.855000px;}
.y39a{bottom:409.395000px;}
.y1ed{bottom:409.575000px;}
.y1c8{bottom:409.860000px;}
.y370{bottom:411.015000px;}
.y24{bottom:412.995000px;}
.yfb{bottom:415.695000px;}
.y5b6{bottom:416.235000px;}
.y187{bottom:418.935000px;}
.y276{bottom:420.375000px;}
.y164{bottom:420.555000px;}
.y3cf{bottom:420.735000px;}
.y427{bottom:421.095000px;}
.y4bc{bottom:421.275000px;}
.y206{bottom:421.455000px;}
.y335{bottom:422.535000px;}
.y120{bottom:425.235000px;}
.y487{bottom:425.805000px;}
.y499{bottom:426.345000px;}
.y258{bottom:427.065000px;}
.y40e{bottom:427.965000px;}
.y3f9{bottom:428.145000px;}
.yd4{bottom:428.475000px;}
.y533{bottom:428.505000px;}
.y3e9{bottom:429.765000px;}
.y2dd{bottom:430.665000px;}
.y146{bottom:431.355000px;}
.y3c1{bottom:431.745000px;}
.ya6{bottom:432.255000px;}
.y4e4{bottom:432.285000px;}
.y72{bottom:432.435000px;}
.y399{bottom:432.645000px;}
.y366{bottom:434.265000px;}
.y577{bottom:434.445000px;}
.y301{bottom:435.705000px;}
.y532{bottom:440.205000px;}
.y186{bottom:441.615000px;}
.y23c{bottom:442.725000px;}
.y275{bottom:443.625000px;}
.y23{bottom:443.955000px;}
.y426{bottom:444.345000px;}
.y334{bottom:445.785000px;}
.yfa{bottom:447.375000px;}
.y5b5{bottom:447.765000px;}
.y486{bottom:449.025000px;}
.y4ad{bottom:449.565000px;}
.yd3{bottom:450.795000px;}
.y163{bottom:452.235000px;}
.y4bb{bottom:452.805000px;}
.y2dc{bottom:453.885000px;}
.y145{bottom:454.215000px;}
.y477{bottom:454.425000px;}
.y3c0{bottom:454.965000px;}
.y1ec{bottom:455.115000px;}
.y398{bottom:455.865000px;}
.y11f{bottom:456.915000px;}
.y292{bottom:458.745000px;}
.ya5{bottom:461.235000px;}
.y205{bottom:461.775000px;}
.y531{bottom:463.065000px;}
.y3e8{bottom:463.425000px;}
.y71{bottom:464.115000px;}
.y185{bottom:464.475000px;}
.y274{bottom:466.845000px;}
.y425{bottom:467.565000px;}
.y333{bottom:469.005000px;}
.y498{bottom:472.065000px;}
.y485{bottom:472.245000px;}
.y257{bottom:472.965000px;}
.yd2{bottom:473.295000px;}
.y40d{bottom:473.685000px;}
.y3f8{bottom:473.865000px;}
.y5b4{bottom:476.205000px;}
.y144{bottom:476.895000px;}
.y2db{bottom:477.105000px;}
.y17{bottom:477.615000px;}
.y4e3{bottom:477.645000px;}
.y1eb{bottom:477.975000px;}
.y3bf{bottom:478.185000px;}
.yf9{bottom:479.055000px;}
.y397{bottom:479.085000px;}
.y300{bottom:480.345000px;}
.y505{bottom:482.685000px;}
.ya4{bottom:483.915000px;}
.y22{bottom:484.095000px;}
.y4ba{bottom:484.305000px;}
.y204{bottom:484.455000px;}
.y5c5{bottom:485.205000px;}
.y70{bottom:486.975000px;}
.y184{bottom:487.155000px;}
.y237{bottom:488.445000px;}
.y11e{bottom:488.775000px;}
.y273{bottom:490.065000px;}
.y424{bottom:490.965000px;}
.y28e{bottom:492.405000px;}
.y2be{bottom:492.765000px;}
.y501{bottom:494.385000px;}
.y4ac{bottom:495.465000px;}
.yd1{bottom:495.615000px;}
.y484{bottom:495.645000px;}
.y3e7{bottom:497.085000px;}
.y1a9{bottom:499.755000px;}
.y2{bottom:499.965000px;}
.y476{bottom:500.145000px;}
.y4e2{bottom:500.325000px;}
.y1ea{bottom:500.655000px;}
.y45d{bottom:500.865000px;}
.y3be{bottom:501.405000px;}
.y396{bottom:502.305000px;}
.y2ff{bottom:503.565000px;}
.ya3{bottom:506.775000px;}
.y203{bottom:507.315000px;}
.y5bf{bottom:508.065000px;}
.y143{bottom:508.755000px;}
.y6f{bottom:509.655000px;}
.y183{bottom:510.015000px;}
.yf8{bottom:510.735000px;}
.y272{bottom:513.465000px;}
.y423{bottom:514.185000px;}
.y332{bottom:515.625000px;}
.y550{bottom:517.785000px;}
.yd0{bottom:517.935000px;}
.y497{bottom:517.965000px;}
.y256{bottom:518.685000px;}
.y483{bottom:518.865000px;}
.y40c{bottom:519.405000px;}
.y3f7{bottom:519.585000px;}
.y11d{bottom:520.455000px;}
.y4e1{bottom:523.185000px;}
.y21{bottom:524.055000px;}
.y458{bottom:524.085000px;}
.y3bd{bottom:524.625000px;}
.y395{bottom:525.525000px;}
.y288{bottom:526.245000px;}
.y576{bottom:526.785000px;}
.ya2{bottom:529.455000px;}
.y162{bottom:529.635000px;}
.y530{bottom:529.665000px;}
.y202{bottom:529.995000px;}
.y3e6{bottom:530.925000px;}
.y1a8{bottom:532.335000px;}
.y6e{bottom:532.515000px;}
.y182{bottom:532.695000px;}
.y2da{bottom:534.165000px;}
.y236{bottom:534.345000px;}
.y271{bottom:536.685000px;}
.y422{bottom:537.405000px;}
.y331{bottom:538.845000px;}
.ycf{bottom:540.255000px;}
.y142{bottom:540.435000px;}
.y496{bottom:541.185000px;}
.y52f{bottom:541.365000px;}
.y54f{bottom:541.545000px;}
.yf6{bottom:542.595000px;}
.y475{bottom:545.865000px;}
.y4b9{bottom:547.125000px;}
.y3bc{bottom:547.845000px;}
.y2fe{bottom:548.205000px;}
.y394{bottom:548.925000px;}
.y574{bottom:550.725000px;}
.ya1{bottom:552.315000px;}
.y482{bottom:552.525000px;}
.y6d{bottom:555.195000px;}
.y181{bottom:555.555000px;}
.y270{bottom:559.905000px;}
.y421{bottom:560.625000px;}
.y2bd{bottom:560.985000px;}
.y201{bottom:561.855000px;}
.y32b{bottom:562.065000px;}
.yce{bottom:562.575000px;}
.y1e9{bottom:564.195000px;}
.y255{bottom:564.405000px;}
.y3e5{bottom:564.585000px;}
.y40b{bottom:565.125000px;}
.y3f5{bottom:565.485000px;}
.y1a7{bottom:567.975000px;}
.y5be{bottom:568.365000px;}
.y4e0{bottom:568.545000px;}
.y52c{bottom:568.905000px;}
.y365{bottom:569.085000px;}
.y3bb{bottom:571.245000px;}
.y393{bottom:572.145000px;}
.y141{bottom:572.295000px;}
.y595{bottom:572.685000px;}
.y11c{bottom:574.995000px;}
.yf5{bottom:575.175000px;}
.y4b8{bottom:575.565000px;}
.y10{bottom:575.895000px;}
.y6c{bottom:578.055000px;}
.y180{bottom:578.235000px;}
.y4fc{bottom:579.525000px;}
.y234{bottom:580.065000px;}
.y2fd{bottom:582.045000px;}
.y457{bottom:582.225000px;}
.y26f{bottom:583.125000px;}
.y420{bottom:583.845000px;}
.y200{bottom:584.535000px;}
.y4ce{bottom:584.565000px;}
.y58{bottom:584.715000px;}
.ya0{bottom:584.895000px;}
.y481{bottom:586.185000px;}
.y4ab{bottom:586.905000px;}
.y1e8{bottom:587.055000px;}
.y495{bottom:587.625000px;}
.y3e4{bottom:587.805000px;}
.y54e{bottom:589.425000px;}
.y5bd{bottom:591.045000px;}
.y4df{bottom:591.225000px;}
.y474{bottom:591.585000px;}
.y364{bottom:592.305000px;}
.y3b7{bottom:594.465000px;}
.y2a5{bottom:594.645000px;}
.y140{bottom:594.975000px;}
.y392{bottom:595.365000px;}
.y11b{bottom:597.855000px;}
.y6b{bottom:600.735000px;}
.y17f{bottom:601.095000px;}
.y2d8{bottom:602.385000px;}
.y1a6{bottom:602.535000px;}
.y231{bottom:603.285000px;}
.y19{bottom:604.185000px;}
.y2f8{bottom:605.265000px;}
.y9f{bottom:605.445000px;}
.y26d{bottom:606.345000px;}
.yf4{bottom:606.885000px;}
.y41d{bottom:607.065000px;}
.ycc{bottom:607.425000px;}
.y4cd{bottom:607.965000px;}
.y253{bottom:610.125000px;}
.y406{bottom:610.845000px;}
.y3e2{bottom:611.025000px;}
.y3f2{bottom:611.205000px;}
.y57{bottom:612.645000px;}
.y54b{bottom:613.365000px;}
.y5ba{bottom:613.950000px;}
.y4de{bottom:614.130000px;}
.y34a{bottom:615.570000px;}
.y13f{bottom:617.865000px;}
.y391{bottom:618.630000px;}
.y1e7{bottom:618.765000px;}
.y480{bottom:620.070000px;}
.y11a{bottom:620.565000px;}
.y161{bottom:620.745000px;}
.y6a{bottom:623.625000px;}
.y1a5{bottom:625.425000px;}
.y32a{bottom:625.470000px;}
.y2d5{bottom:625.650000px;}
.y56d{bottom:625.830000px;}
.y230{bottom:626.550000px;}
.y9e{bottom:627.585000px;}
.y26c{bottom:629.610000px;}
.ycb{bottom:629.745000px;}
.y1ff{bottom:630.105000px;}
.y41c{bottom:630.510000px;}
.y4cc{bottom:631.230000px;}
.y4aa{bottom:632.670000px;}
.y17e{bottom:632.805000px;}
.y3e1{bottom:634.290000px;}
.y3f1{bottom:634.470000px;}
.y3b5{bottom:636.270000px;}
.y4dd{bottom:636.810000px;}
.y548{bottom:637.350000px;}
.y473{bottom:637.530000px;}
.yf2{bottom:638.745000px;}
.y56{bottom:640.545000px;}
.y390{bottom:641.850000px;}
.y52b{bottom:642.390000px;}
.y119{bottom:643.425000px;}
.y69{bottom:646.305000px;}
.y1a4{bottom:648.105000px;}
.y9d{bottom:649.725000px;}
.y22f{bottom:649.770000px;}
.y456{bottom:650.490000px;}
.y1e6{bottom:650.625000px;}
.yca{bottom:652.065000px;}
.y160{bottom:652.425000px;}
.y1fe{bottom:652.965000px;}
.y26b{bottom:653.010000px;}
.y41b{bottom:653.730000px;}
.y52a{bottom:654.270000px;}
.y4cb{bottom:654.450000px;}
.y252{bottom:655.890000px;}
.y405{bottom:656.610000px;}
.y4fb{bottom:657.150000px;}
.y3e0{bottom:657.690000px;}
.y2f7{bottom:659.130000px;}
.y4dc{bottom:659.490000px;}
.y547{bottom:661.290000px;}
.y13e{bottom:663.405000px;}
.y17d{bottom:664.665000px;}
.y38f{bottom:665.070000px;}
.y118{bottom:666.105000px;}
.y55{bottom:668.625000px;}
.y68{bottom:669.165000px;}
.y1a3{bottom:670.965000px;}
.y472{bottom:671.190000px;}
.y9c{bottom:671.865000px;}
.y22d{bottom:672.990000px;}
.y1e5{bottom:673.305000px;}
.y44f{bottom:673.710000px;}
.yc9{bottom:674.385000px;}
.y1fd{bottom:675.645000px;}
.y26a{bottom:676.230000px;}
.y41a{bottom:676.950000px;}
.y4ca{bottom:677.670000px;}
.y4a9{bottom:678.390000px;}
.y4fa{bottom:679.830000px;}
.y3df{bottom:680.910000px;}
.y3b4{bottom:681.810000px;}
.y4db{bottom:682.170000px;}
.y2d4{bottom:683.610000px;}
.y15f{bottom:684.285000px;}
.yf1{bottom:685.185000px;}
.y546{bottom:685.230000px;}
.y528{bottom:685.590000px;}
.y13d{bottom:686.085000px;}
.y17c{bottom:687.345000px;}
.y5b9{bottom:687.390000px;}
.y38e{bottom:688.470000px;}
.y117{bottom:688.965000px;}
.y320{bottom:689.730000px;}
.y67{bottom:691.845000px;}
.y3{bottom:692.385000px;}
.y2f6{bottom:692.790000px;}
.y1a2{bottom:693.645000px;}
.y9b{bottom:694.005000px;}
.y1e4{bottom:696.165000px;}
.y224{bottom:696.390000px;}
.yc8{bottom:696.705000px;}
.y54{bottom:697.425000px;}
.y1fc{bottom:698.505000px;}
.y269{bottom:699.450000px;}
.y419{bottom:700.170000px;}
.y4c9{bottom:700.890000px;}
.y250{bottom:701.610000px;}
.y404{bottom:702.510000px;}
.y4f9{bottom:702.690000px;}
.y3de{bottom:704.130000px;}
.y471{bottom:704.850000px;}
.y4da{bottom:705.570000px;}
.y13c{bottom:708.945000px;}
.y545{bottom:709.170000px;}
.y17b{bottom:710.205000px;}
.y5b8{bottom:710.250000px;}
.y38d{bottom:711.690000px;}
.y66{bottom:714.705000px;}
.y3b3{bottom:715.470000px;}
.y15e{bottom:715.965000px;}
.y2ec{bottom:716.010000px;}
.y9a{bottom:716.145000px;}
.y1a1{bottom:716.505000px;}
.yf0{bottom:717.045000px;}
.y1e3{bottom:718.845000px;}
.y56c{bottom:718.890000px;}
.yc7{bottom:719.025000px;}
.y116{bottom:720.645000px;}
.y1fb{bottom:721.185000px;}
.y268{bottom:722.670000px;}
.y418{bottom:723.390000px;}
.y4a8{bottom:724.110000px;}
.y4f8{bottom:725.370000px;}
.y3f0{bottom:727.530000px;}
.y53{bottom:729.285000px;}
.y13b{bottom:731.625000px;}
.y17a{bottom:732.885000px;}
.y65{bottom:737.385000px;}
.y44e{bottom:737.430000px;}
.y3dd{bottom:737.790000px;}
.y99{bottom:738.285000px;}
.y470{bottom:738.510000px;}
.y15d{bottom:738.825000px;}
.y1a0{bottom:739.185000px;}
.yc6{bottom:741.525000px;}
.y5b7{bottom:741.570000px;}
.y222{bottom:742.110000px;}
.y56a{bottom:742.650000px;}
.y115{bottom:743.505000px;}
.y1fa{bottom:744.045000px;}
.y38c{bottom:745.350000px;}
.y267{bottom:745.890000px;}
.y417{bottom:746.610000px;}
.y24f{bottom:747.510000px;}
.y4f7{bottom:748.050000px;}
.y403{bottom:748.230000px;}
.y1ad{bottom:748.545000px;}
.yef{bottom:748.725000px;}
.y3b2{bottom:749.130000px;}
.y1e2{bottom:750.705000px;}
.y4d9{bottom:751.290000px;}
.y2d3{bottom:751.830000px;}
.y45{bottom:752.865000px;}
.y13a{bottom:754.485000px;}
.y544{bottom:754.890000px;}
.y179{bottom:755.745000px;}
.y98{bottom:760.425000px;}
.y527{bottom:760.470000px;}
.y44d{bottom:760.830000px;}
.y52{bottom:760.965000px;}
.y15c{bottom:761.505000px;}
.y19f{bottom:762.045000px;}
.yc5{bottom:763.845000px;}
.y220{bottom:765.330000px;}
.y114{bottom:766.185000px;}
.y385{bottom:768.570000px;}
.y266{bottom:769.110000px;}
.y416{bottom:770.010000px;}
.y4c8{bottom:770.730000px;}
.y3dc{bottom:771.450000px;}
.yee{bottom:771.585000px;}
.y64{bottom:772.125000px;}
.y3b1{bottom:772.350000px;}
.y3ef{bottom:773.250000px;}
.y1e1{bottom:773.385000px;}
.y318{bottom:774.330000px;}
.y4d8{bottom:774.510000px;}
.y2cf{bottom:775.050000px;}
.y1f9{bottom:775.725000px;}
.y139{bottom:777.165000px;}
.y543{bottom:778.110000px;}
.y178{bottom:778.425000px;}
.y42{bottom:780.225000px;}
.y97{bottom:782.565000px;}
.y449{bottom:784.050000px;}
.y15b{bottom:784.365000px;}
.y15{bottom:784.620000px;}
.y19e{bottom:784.725000px;}
.y11{bottom:785.700000px;}
.yc3{bottom:786.165000px;}
.y13{bottom:786.420000px;}
.y215{bottom:788.550000px;}
.y113{bottom:789.045000px;}
.y264{bottom:792.510000px;}
.y51{bottom:792.825000px;}
.y24a{bottom:793.230000px;}
.y4f5{bottom:793.590000px;}
.yf{bottom:793.905000px;}
.y400{bottom:793.950000px;}
.yed{bottom:794.265000px;}
.y3ab{bottom:795.750000px;}
.y1e0{bottom:796.245000px;}
.y3ee{bottom:796.470000px;}
.y4cf{bottom:797.730000px;}
.y138{bottom:800.025000px;}
.y177{bottom:801.285000px;}
.y53a{bottom:801.330000px;}
.y1ac{bottom:802.905000px;}
.y96{bottom:804.705000px;}
.y3db{bottom:805.320000px;}
.y46f{bottom:806.040000px;}
.y15a{bottom:807.045000px;}
.y41{bottom:807.405000px;}
.y1f8{bottom:807.585000px;}
.y112{bottom:811.725000px;}
.y63{bottom:815.325000px;}
.y263{bottom:815.760000px;}
.y4f4{bottom:816.300000px;}
.y414{bottom:816.480000px;}
.y19d{bottom:816.585000px;}
.y1df{bottom:818.925000px;}
.y3ea{bottom:819.720000px;}
.yc2{bottom:822.345000px;}
.y137{bottom:822.705000px;}
.y50{bottom:823.605000px;}
.y176{bottom:823.965000px;}
.y95{bottom:826.845000px;}
.yec{bottom:827.025000px;}
.y1ab{bottom:830.805000px;}
.y1ba{bottom:832.680000px;}
.y212{bottom:833.040000px;}
.y111{bottom:834.585000px;}
.y3e{bottom:834.765000px;}
.y159{bottom:838.905000px;}
.y1f7{bottom:839.265000px;}
.y1de{bottom:841.785000px;}
.y211{bottom:842.760000px;}
.y136{bottom:845.565000px;}
.y175{bottom:846.825000px;}
.y19c{bottom:848.265000px;}
.y93{bottom:848.985000px;}
.yc1{bottom:851.325000px;}
.y4f{bottom:851.685000px;}
.y7e{bottom:852.045000px;}
.y20f{bottom:854.280000px;}
.y110{bottom:857.265000px;}
.y3c{bottom:862.125000px;}
.yeb{bottom:862.485000px;}
.y135{bottom:868.245000px;}
.ye{bottom:869.505000px;}
.y158{bottom:870.630000px;}
.y92{bottom:870.990000px;}
.y19b{bottom:871.170000px;}
.yc0{bottom:874.050000px;}
.y1dd{bottom:876.390000px;}
.y4e{bottom:879.630000px;}
.y10f{bottom:880.170000px;}
.y134{bottom:891.150000px;}
.yd{bottom:892.410000px;}
.y91{bottom:893.130000px;}
.y19a{bottom:893.850000px;}
.ybf{bottom:896.910000px;}
.yea{bottom:898.170000px;}
.y4d{bottom:898.530000px;}
.y157{bottom:902.490000px;}
.y10e{bottom:902.850000px;}
.y1dc{bottom:910.590000px;}
.y133{bottom:913.830000px;}
.yc{bottom:915.090000px;}
.y90{bottom:915.270000px;}
.y199{bottom:916.710000px;}
.y4c{bottom:917.610000px;}
.ye9{bottom:918.690000px;}
.ybe{bottom:919.590000px;}
.y3b{bottom:921.750000px;}
.y156{bottom:925.170000px;}
.y10d{bottom:925.710000px;}
.y132{bottom:936.690000px;}
.y8f{bottom:937.410000px;}
.y198{bottom:939.390000px;}
.ye8{bottom:941.550000px;}
.yb{bottom:941.910000px;}
.y4b{bottom:946.410000px;}
.y174{bottom:946.950000px;}
.y155{bottom:948.030000px;}
.y10c{bottom:948.390000px;}
.y1db{bottom:950.730000px;}
.ybd{bottom:952.350000px;}
.y3a{bottom:959.370000px;}
.y8e{bottom:959.550000px;}
.y197{bottom:962.250000px;}
.ye7{bottom:964.590000px;}
.y154{bottom:970.710000px;}
.y10b{bottom:971.250000px;}
.ybc{bottom:972.870000px;}
.y4a{bottom:978.270000px;}
.y173{bottom:978.630000px;}
.ya{bottom:979.350000px;}
.y8d{bottom:981.690000px;}
.y1da{bottom:982.590000px;}
.y196{bottom:984.930000px;}
.ye6{bottom:987.450000px;}
.y39{bottom:990.690000px;}
.y131{bottom:991.230000px;}
.y153{bottom:993.750000px;}
.y10a{bottom:993.930000px;}
.ybb{bottom:995.910000px;}
.y172{bottom:1001.490000px;}
.y8c{bottom:1003.830000px;}
.y1d9{bottom:1005.270000px;}
.y195{bottom:1007.790000px;}
.y49{bottom:1009.950000px;}
.ye5{bottom:1010.310000px;}
.y130{bottom:1013.910000px;}
.y9{bottom:1016.790000px;}
.yba{bottom:1018.770000px;}
.y38{bottom:1022.550000px;}
.y171{bottom:1024.170000px;}
.y8b{bottom:1025.970000px;}
.y1d8{bottom:1028.130000px;}
.ye4{bottom:1033.170000px;}
.y12f{bottom:1036.770000px;}
.y109{bottom:1039.470000px;}
.y48{bottom:1041.450000px;}
.yb9{bottom:1041.810000px;}
.y37{bottom:1045.230000px;}
.y89{bottom:1048.110000px;}
.y1f6{bottom:1048.470000px;}
.y1d7{bottom:1050.810000px;}
.y8{bottom:1054.050000px;}
.y170{bottom:1056.030000px;}
.ye3{bottom:1056.210000px;}
.y108{bottom:1062.330000px;}
.yb8{bottom:1064.670000px;}
.y12e{bottom:1068.450000px;}
.y194{bottom:1071.330000px;}
.y47{bottom:1072.950000px;}
.y1d6{bottom:1073.670000px;}
.y36{bottom:1077.090000px;}
.ye2{bottom:1079.070000px;}
.y88{bottom:1084.110000px;}
.yb7{bottom:1087.710000px;}
.y7{bottom:1091.490000px;}
.y107{bottom:1094.010000px;}
.y1d5{bottom:1096.350000px;}
.y12d{bottom:1101.210000px;}
.y46{bottom:1105.170000px;}
.y35{bottom:1108.410000px;}
.yb6{bottom:1110.570000px;}
.y16f{bottom:1111.650000px;}
.y87{bottom:1113.990000px;}
.ye1{bottom:1116.870000px;}
.y6{bottom:1128.930000px;}
.y1d4{bottom:1131.090000px;}
.yb4{bottom:1133.610000px;}
.y62{bottom:1133.790000px;}
.y12c{bottom:1136.670000px;}
.y86{bottom:1139.580000px;}
.y34{bottom:1139.940000px;}
.y2d{bottom:1187.280000px;}
.y30{bottom:1190.340000px;}
.y5d{bottom:1202.940000px;}
.y5a{bottom:1212.660000px;}
.y4{bottom:1224.180000px;}
.h82{height:10.980000px;}
.h2b{height:21.240000px;}
.h28{height:21.420000px;}
.h2f{height:21.600000px;}
.h30{height:21.636000px;}
.h80{height:21.960000px;}
.h81{height:21.996000px;}
.h2d{height:22.140000px;}
.h2e{height:22.176000px;}
.h2c{height:22.320000px;}
.h49{height:22.500000px;}
.h4e{height:22.536000px;}
.h3a{height:22.680000px;}
.h37{height:22.860000px;}
.h90{height:23.040000px;}
.h8e{height:23.220000px;}
.h8f{height:23.256000px;}
.h48{height:24.996094px;}
.h1e{height:26.460000px;}
.h1c{height:26.640000px;}
.h1f{height:26.820000px;}
.h74{height:27.000000px;}
.h4b{height:27.210938px;}
.h68{height:28.620000px;}
.h8b{height:30.600000px;}
.h31{height:30.960000px;}
.h34{height:30.996000px;}
.h35{height:31.860000px;}
.h50{height:32.940000px;}
.h73{height:32.976000px;}
.h51{height:33.120000px;}
.h75{height:33.156000px;}
.h9d{height:34.380000px;}
.h4d{height:35.806641px;}
.h46{height:36.861328px;}
.h6e{height:36.900000px;}
.h6f{height:37.800000px;}
.h72{height:41.076000px;}
.h99{height:41.436000px;}
.h1b{height:42.156000px;}
.h9b{height:42.300000px;}
.h70{height:42.516000px;}
.h5d{height:43.920000px;}
.h5a{height:44.100000px;}
.h18{height:44.640000px;}
.h71{height:44.820000px;}
.h19{height:44.936719px;}
.h4c{height:45.000000px;}
.h7e{height:45.030000px;}
.h4f{height:45.036000px;}
.h39{height:45.540000px;}
.hb{height:47.520000px;}
.ha{height:48.960000px;}
.ha1{height:49.680000px;}
.h44{height:49.716000px;}
.ha2{height:51.120000px;}
.h20{height:52.200000px;}
.h60{height:52.560000px;}
.h40{height:53.121094px;}
.h5c{height:53.136000px;}
.h15{height:53.496000px;}
.h16{height:53.640000px;}
.h3d{height:53.709961px;}
.h3e{height:53.853187px;}
.h3{height:54.000000px;}
.h6{height:54.140625px;}
.h14{height:54.248906px;}
.h7b{height:54.936000px;}
.h7a{height:55.080000px;}
.h47{height:55.291992px;}
.hc{height:55.440000px;}
.h29{height:55.987031px;}
.h17{height:55.995820px;}
.h7d{height:56.196000px;}
.h59{height:56.340000px;}
.h58{height:57.240000px;}
.h2a{height:57.410156px;}
.h6b{height:59.040000px;}
.h3f{height:59.439023px;}
.ha4{height:59.580000px;}
.ha0{height:59.976000px;}
.h77{height:61.189805px;}
.h4{height:61.776000px;}
.h62{height:61.920000px;}
.h27{height:62.067656px;}
.h43{height:62.130000px;}
.h5f{height:62.280000px;}
.h66{height:62.676000px;}
.h7c{height:63.000000px;}
.h57{height:63.216000px;}
.h1d{height:63.344531px;}
.h65{height:63.540000px;}
.h63{height:63.936000px;}
.h88{height:65.880000px;}
.h89{height:65.916000px;}
.h9f{height:66.960000px;}
.h9{height:67.464844px;}
.h54{height:67.500000px;}
.h56{height:67.536000px;}
.h4a{height:68.220000px;}
.h38{height:68.256000px;}
.h9c{height:68.400000px;}
.h36{height:68.961445px;}
.h3b{height:69.141445px;}
.h6d{height:69.696000px;}
.h9a{height:71.100000px;}
.h22{height:71.496000px;}
.h33{height:71.613281px;}
.h23{height:71.960273px;}
.hf{height:72.007031px;}
.h86{height:72.396000px;}
.h1a{height:72.570000px;}
.ha3{height:72.720000px;}
.h8c{height:72.756000px;}
.h84{height:73.116000px;}
.h76{height:73.260000px;}
.h5e{height:73.656000px;}
.h32{height:73.722656px;}
.h8a{height:74.160000px;}
.h96{height:74.376000px;}
.h87{height:76.860000px;}
.h78{height:76.896000px;}
.h24{height:81.158203px;}
.h25{height:81.210938px;}
.h98{height:82.800000px;}
.h64{height:83.880000px;}
.h21{height:83.910000px;}
.h6c{height:84.276000px;}
.h83{height:84.420000px;}
.h92{height:84.780000px;}
.h61{height:85.356000px;}
.h79{height:90.000000px;}
.h55{height:90.036000px;}
.h5{height:90.180000px;}
.h97{height:91.620000px;}
.h8d{height:91.650000px;}
.h95{height:92.160000px;}
.h7f{height:95.250000px;}
.h85{height:95.400000px;}
.h94{height:95.616000px;}
.h5b{height:99.036000px;}
.h45{height:104.430000px;}
.h11{height:108.281250px;}
.h7{height:117.180000px;}
.h91{height:118.476000px;}
.h6a{height:134.100000px;}
.h93{height:134.316000px;}
.h8{height:134.929688px;}
.h10{height:155.160000px;}
.he{height:156.270000px;}
.h67{height:158.760000px;}
.hd{height:162.421875px;}
.h52{height:185.430000px;}
.h9e{height:190.650000px;}
.h69{height:222.690000px;}
.h26{height:242.130000px;}
.h53{height:243.615000px;}
.h3c{height:323.820000px;}
.h13{height:365.220000px;}
.h12{height:442.260000px;}
.h41{height:892.980000px;}
.h42{height:893.250000px;}
.h2{height:1012.320000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3d{width:31.176000px;}
.w44{width:34.380000px;}
.w4a{width:34.560000px;}
.w2f{width:35.280000px;}
.w45{width:38.376000px;}
.w30{width:39.276000px;}
.w4c{width:41.580000px;}
.w3a{width:41.760000px;}
.w46{width:41.796000px;}
.w42{width:41.940000px;}
.w3f{width:42.120000px;}
.w3c{width:42.300000px;}
.w32{width:42.480000px;}
.w34{width:42.516000px;}
.w33{width:42.660000px;}
.w40{width:52.200000px;}
.w41{width:52.380000px;}
.w49{width:52.416000px;}
.w47{width:52.560000px;}
.w48{width:52.596000px;}
.w3e{width:52.740000px;}
.w31{width:53.100000px;}
.w36{width:53.136000px;}
.w2d{width:53.280000px;}
.w35{width:53.316000px;}
.w43{width:63.000000px;}
.w4e{width:63.036000px;}
.w2e{width:63.720000px;}
.w4d{width:63.756000px;}
.w50{width:63.900000px;}
.w4f{width:63.936000px;}
.w1a{width:80.316000px;}
.w1c{width:86.076000px;}
.w1e{width:87.156000px;}
.w1b{width:105.120000px;}
.w1d{width:106.020000px;}
.w13{width:116.316000px;}
.w1f{width:118.476000px;}
.w14{width:126.720000px;}
.w39{width:126.936000px;}
.w38{width:137.340000px;}
.w4b{width:137.556000px;}
.w19{width:157.860000px;}
.w11{width:168.300000px;}
.w20{width:168.330000px;}
.w2a{width:169.380000px;}
.w16{width:169.410000px;}
.wd{width:169.590000px;}
.w2c{width:180.750000px;}
.w21{width:211.530000px;}
.w23{width:224.670000px;}
.w24{width:224.850000px;}
.w2b{width:278.850000px;}
.w17{width:278.895000px;}
.w10{width:279.930000px;}
.wf{width:279.975000px;}
.w12{width:297.795000px;}
.w22{width:328.890000px;}
.we{width:343.830000px;}
.w37{width:424.515000px;}
.w3b{width:477.795000px;}
.w8{width:489.345000px;}
.w29{width:518.295000px;}
.w15{width:518.325000px;}
.wc{width:526.785000px;}
.w25{width:540.000000px;}
.w7{width:686.700000px;}
.w18{width:718.485000px;}
.w2{width:745.920000px;}
.w9{width:763.350000px;}
.wb{width:789.840000px;}
.wa{width:825.120000px;}
.w6{width:826.740000px;}
.w5{width:828.180000px;}
.w3{width:840.420000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w28{width:1262.879981px;}
.w26{width:1262.880000px;}
.w27{width:1263.000000px;}
.x63{left:-5.940000px;}
.x0{left:0.000000px;}
.x62{left:1.080000px;}
.x45{left:2.340000px;}
.x5f{left:4.140000px;}
.x64{left:5.580000px;}
.x67{left:6.660000px;}
.x1b{left:7.740000px;}
.x60{left:9.000000px;}
.x2{left:11.010000px;}
.x29{left:12.465000px;}
.x2b{left:13.680000px;}
.x30{left:15.345000px;}
.x18{left:16.560000px;}
.x4b{left:17.640000px;}
.x68{left:18.720000px;}
.x32{left:20.340000px;}
.x47{left:21.960000px;}
.x66{left:25.200000px;}
.x49{left:26.460000px;}
.x70{left:27.945000px;}
.x2e{left:29.880000px;}
.x2c{left:31.725000px;}
.x3c{left:33.012000px;}
.x2d{left:34.020000px;}
.x2f{left:36.045000px;}
.x31{left:38.745000px;}
.x33{left:40.860000px;}
.x3a{left:48.420000px;}
.x3{left:52.560000px;}
.x42{left:53.999981px;}
.x25{left:56.340000px;}
.x39{left:58.650000px;}
.xb{left:60.840000px;}
.x11{left:64.440000px;}
.x3f{left:67.755000px;}
.x3b{left:74.595000px;}
.x65{left:75.600000px;}
.xf{left:79.374000px;}
.x12{left:81.000000px;}
.x7{left:90.575987px;}
.xe{left:92.196000px;}
.x8{left:96.155987px;}
.x27{left:104.076000px;}
.x5{left:108.035987px;}
.x5d{left:118.080000px;}
.x10{left:128.334000px;}
.x1{left:147.060000px;}
.x5e{left:149.616000px;}
.x3e{left:154.515000px;}
.xc{left:156.600000px;}
.x36{left:164.370000px;}
.x43{left:178.590000px;}
.x5c{left:187.050000px;}
.xd{left:201.090000px;}
.x48{left:202.710000px;}
.x41{left:220.425000px;}
.x23{left:232.590000px;}
.x4a{left:255.990000px;}
.x40{left:259.305000px;}
.x3d{left:262.725000px;}
.x28{left:267.330000px;}
.x1c{left:277.770000px;}
.x17{left:283.575000px;}
.x9{left:295.994987px;}
.xa{left:315.794987px;}
.x19{left:319.575000px;}
.x35{left:321.015000px;}
.x20{left:333.434987px;}
.x2a{left:348.375000px;}
.x22{left:349.814987px;}
.x14{left:355.035000px;}
.x13{left:361.874987px;}
.x1a{left:374.474987px;}
.x4c{left:394.275000px;}
.x46{left:403.635000px;}
.x4{left:442.694987px;}
.x21{left:446.474987px;}
.x61{left:447.735000px;}
.x6{left:453.494987px;}
.x26{left:457.635000px;}
.x4d{left:489.855000px;}
.x4e{left:532.335000px;}
.x37{left:559.545000px;}
.x6a{left:574.815000px;}
.x1d{left:576.285000px;}
.x4f{left:585.435000px;}
.x34{left:616.065000px;}
.x6b{left:617.475000px;}
.x50{left:628.095000px;}
.x69{left:631.514981px;}
.x38{left:649.544987px;}
.x44{left:663.585000px;}
.x51{left:670.605000px;}
.x1e{left:693.330000px;}
.x16{left:703.590000px;}
.x52{left:713.085000px;}
.x24{left:717.630000px;}
.x1f{left:718.709987px;}
.x15{left:721.049987px;}
.x53{left:755.565000px;}
.x54{left:808.845000px;}
.x71{left:851.325000px;}
.x6c{left:861.945000px;}
.x55{left:872.565000px;}
.x72{left:893.805000px;}
.x6d{left:904.605000px;}
.x56{left:915.045000px;}
.x73{left:957.750000px;}
.x57{left:968.370000px;}
.x74{left:1010.850000px;}
.x58{left:1021.470000px;}
.x59{left:1074.750000px;}
.x5a{left:1127.850000px;}
.x6e{left:1138.470000px;}
.x5b{left:1180.950000px;}
.x6f{left:1191.570000px;}
@media print{
.v3{vertical-align:-5.120000pt;}
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.280000pt;}
.ls1c{letter-spacing:-0.576000pt;}
.ls6{letter-spacing:-0.384000pt;}
.ls1b{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.224000pt;}
.lsb{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.161067pt;}
.ls19{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls18{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:-0.094933pt;}
.ls21{letter-spacing:-0.069333pt;}
.ls1e{letter-spacing:-0.064000pt;}
.lsc{letter-spacing:-0.033280pt;}
.ls14{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.019840pt;}
.ls15{letter-spacing:0.032000pt;}
.ls7{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls20{letter-spacing:0.154880pt;}
.ls1d{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.227733pt;}
.ls2{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.289280pt;}
.ls4{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.416000pt;}
.lsd{letter-spacing:0.448000pt;}
.ls1f{letter-spacing:0.544000pt;}
.ls12{letter-spacing:209.264000pt;}
.ls13{letter-spacing:225.530667pt;}
.ls1{letter-spacing:603.018667pt;}
.wse{word-spacing:-64.000000pt;}
.ws0{word-spacing:-26.720000pt;}
.ws2{word-spacing:-23.663360pt;}
.ws8{word-spacing:-18.048000pt;}
.ws10{word-spacing:-17.920000pt;}
.ws3{word-spacing:-17.792000pt;}
.ws6{word-spacing:-17.408000pt;}
.ws7{word-spacing:-14.672427pt;}
.wsc{word-spacing:-14.464000pt;}
.wsf{word-spacing:-14.272000pt;}
.ws11{word-spacing:-14.080000pt;}
.ws22{word-spacing:-13.824000pt;}
.ws5{word-spacing:-13.760000pt;}
.ws29{word-spacing:-13.696000pt;}
.ws21{word-spacing:-13.440000pt;}
.ws24{word-spacing:-13.184000pt;}
.ws28{word-spacing:-12.005120pt;}
.ws2b{word-spacing:-11.935787pt;}
.ws1{word-spacing:-11.920640pt;}
.ws12{word-spacing:-11.759573pt;}
.ws9{word-spacing:-11.238293pt;}
.wsb{word-spacing:-11.010560pt;}
.ws17{word-spacing:-10.848000pt;}
.wsa{word-spacing:-10.657280pt;}
.wsd{word-spacing:-9.690880pt;}
.ws2a{word-spacing:-7.776000pt;}
.ws23{word-spacing:-7.648000pt;}
.ws27{word-spacing:-7.552000pt;}
.ws1f{word-spacing:-7.488000pt;}
.ws19{word-spacing:-7.424000pt;}
.ws26{word-spacing:-7.392000pt;}
.ws18{word-spacing:-7.328000pt;}
.ws1e{word-spacing:-7.264000pt;}
.ws1a{word-spacing:-7.232000pt;}
.ws25{word-spacing:-7.168000pt;}
.ws1b{word-spacing:-7.136000pt;}
.ws1c{word-spacing:-7.072000pt;}
.ws1d{word-spacing:-7.040000pt;}
.ws20{word-spacing:-7.008000pt;}
.ws2e{word-spacing:-6.976000pt;}
.ws16{word-spacing:-0.064000pt;}
.ws2c{word-spacing:-0.032000pt;}
.ws4{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.096000pt;}
.ws14{word-spacing:84.234667pt;}
.ws13{word-spacing:174.128000pt;}
.ws15{word-spacing:178.234667pt;}
._b{margin-left:-10.482133pt;}
._3{margin-left:-1.260800pt;}
._4{width:0.899627pt;}
._e{width:2.178133pt;}
._1c{width:3.308587pt;}
._1b{width:7.360000pt;}
._8{width:28.362667pt;}
._c{width:31.786667pt;}
._d{width:38.944000pt;}
._20{width:81.696000pt;}
._19{width:86.720000pt;}
._6{width:110.282667pt;}
._9{width:135.050667pt;}
._5{width:156.394667pt;}
._7{width:174.208000pt;}
._2{width:183.338667pt;}
._1f{width:201.440000pt;}
._1e{width:213.333333pt;}
._a{width:259.530667pt;}
._17{width:391.957333pt;}
._1d{width:752.906667pt;}
._14{width:1094.190933pt;}
._1{width:1145.546667pt;}
._0{width:1234.378667pt;}
._1a{width:1309.386667pt;}
._12{width:1521.629440pt;}
._13{width:1592.924373pt;}
._11{width:1622.925867pt;}
._f{width:1654.613333pt;}
._18{width:1682.901333pt;}
._16{width:1743.381333pt;}
._15{width:1773.521067pt;}
._10{width:1796.757333pt;}
.fse{font-size:32.000000pt;}
.fs2{font-size:42.880000pt;}
.fsc{font-size:48.000000pt;}
.fsd{font-size:48.128000pt;}
.fs8{font-size:53.120000pt;}
.fsb{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:64.128000pt;}
.fs9{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fsa{font-size:96.000000pt;}
.fs1{font-size:106.880000pt;}
.fs4{font-size:128.000000pt;}
.fs3{font-size:138.880000pt;}
.fs5{font-size:192.000000pt;}
.y5c{bottom:-15.840000pt;}
.y0{bottom:0.000000pt;}
.y28b{bottom:2.080000pt;}
.y46b{bottom:2.234667pt;}
.y233{bottom:2.240000pt;}
.y3f3{bottom:2.280000pt;}
.y22e{bottom:2.400000pt;}
.y336{bottom:2.426667pt;}
.y3e3{bottom:2.440000pt;}
.y23f{bottom:2.560000pt;}
.y409{bottom:2.600000pt;}
.y54a{bottom:2.720000pt;}
.y54d{bottom:2.760000pt;}
.y36f{bottom:3.040000pt;}
.y21e{bottom:3.200000pt;}
.y35d{bottom:3.360000pt;}
.y3ed{bottom:3.520000pt;}
.y541{bottom:3.546667pt;}
.y38b{bottom:3.680000pt;}
.y379{bottom:3.840000pt;}
.y5c4{bottom:4.160000pt;}
.y16{bottom:4.253333pt;}
.y3aa{bottom:4.320000pt;}
.y5b3{bottom:4.640000pt;}
.y518{bottom:5.000000pt;}
.y94{bottom:5.120000pt;}
.y8a{bottom:5.280000pt;}
.yc4{bottom:5.440000pt;}
.y29{bottom:5.466667pt;}
.ycd{bottom:5.600000pt;}
.y454{bottom:5.760000pt;}
.y43{bottom:5.920000pt;}
.yb5{bottom:5.946667pt;}
.y3f{bottom:6.080000pt;}
.y3ae{bottom:6.240000pt;}
.y4f2{bottom:6.874667pt;}
.y28d{bottom:6.880000pt;}
.y3a6{bottom:7.034667pt;}
.y291{bottom:7.040000pt;}
.y4ed{bottom:7.080000pt;}
.y2e8{bottom:7.194667pt;}
.y221{bottom:7.200000pt;}
.y278{bottom:7.226667pt;}
.y26e{bottom:7.240000pt;}
.y22c{bottom:7.360000pt;}
.y41e{bottom:7.400000pt;}
.y23a{bottom:7.520000pt;}
.y254{bottom:7.560000pt;}
.y596{bottom:7.680000pt;}
.y2bc{bottom:7.840000pt;}
.y44{bottom:8.480000pt;}
.y40{bottom:8.640000pt;}
.y573{bottom:8.800000pt;}
.y5f{bottom:9.120000pt;}
.y592{bottom:9.280000pt;}
.y585{bottom:9.600000pt;}
.y4a4{bottom:9.914667pt;}
.y223{bottom:9.920000pt;}
.y415{bottom:9.946667pt;}
.y3f4{bottom:9.960000pt;}
.y432{bottom:10.074667pt;}
.y327{bottom:10.080000pt;}
.y428{bottom:10.106667pt;}
.y41f{bottom:10.120000pt;}
.y2f{bottom:10.400000pt;}
.y3ba{bottom:10.560000pt;}
.y311{bottom:10.720000pt;}
.y31f{bottom:10.880000pt;}
.y2a4{bottom:11.200000pt;}
.y3b0{bottom:11.226667pt;}
.y5b{bottom:11.360000pt;}
.y3a4{bottom:11.834667pt;}
.y28a{bottom:11.840000pt;}
.y4f6{bottom:11.866667pt;}
.y46a{bottom:11.994667pt;}
.y235{bottom:12.000000pt;}
.y265{bottom:12.026667pt;}
.y2d9{bottom:12.040000pt;}
.y284{bottom:12.154667pt;}
.y2c{bottom:12.160000pt;}
.y277{bottom:12.186667pt;}
.y232{bottom:12.200000pt;}
.y491{bottom:12.314667pt;}
.yf3{bottom:12.320000pt;}
.y24c{bottom:12.346667pt;}
.y408{bottom:12.360000pt;}
.y549{bottom:12.480000pt;}
.y54c{bottom:12.520000pt;}
.y228{bottom:12.800000pt;}
.y45c{bottom:12.960000pt;}
.yf7{bottom:13.120000pt;}
.y38a{bottom:13.440000pt;}
.y378{bottom:13.600000pt;}
.y5c3{bottom:13.920000pt;}
.y3a9{bottom:14.080000pt;}
.y58e{bottom:14.240000pt;}
.y5b2{bottom:14.400000pt;}
.y467{bottom:14.560000pt;}
.y46c{bottom:14.714667pt;}
.y463{bottom:14.720000pt;}
.y517{bottom:14.760000pt;}
.y317{bottom:14.880000pt;}
.y30e{bottom:15.040000pt;}
.y50c{bottom:15.066667pt;}
.y330{bottom:15.200000pt;}
.y309{bottom:15.360000pt;}
.y14{bottom:15.453333pt;}
.y451{bottom:15.520000pt;}
.y1d3{bottom:15.613333pt;}
.y1c7{bottom:15.680000pt;}
.y31b{bottom:15.840000pt;}
.y2fc{bottom:15.880000pt;}
.y593{bottom:16.000000pt;}
.y3ad{bottom:16.026667pt;}
.y12{bottom:16.093333pt;}
.y28c{bottom:16.640000pt;}
.y3a5{bottom:16.794667pt;}
.y290{bottom:16.800000pt;}
.y21d{bottom:16.826667pt;}
.y492{bottom:17.114667pt;}
.y229{bottom:17.120000pt;}
.y24d{bottom:17.146667pt;}
.y4b3{bottom:17.160000pt;}
.y239{bottom:17.280000pt;}
.y401{bottom:17.306667pt;}
.y3d{bottom:17.320000pt;}
.y2c0{bottom:17.440000pt;}
.y443{bottom:17.480000pt;}
.y2bb{bottom:17.640000pt;}
.y2d7{bottom:17.760000pt;}
.y57c{bottom:18.400000pt;}
.y4d6{bottom:18.426667pt;}
.y374{bottom:18.560000pt;}
.y572{bottom:18.720000pt;}
.y345{bottom:18.880000pt;}
.y591{bottom:19.040000pt;}
.y584{bottom:19.360000pt;}
.y326{bottom:19.840000pt;}
.y540{bottom:19.866667pt;}
.y493{bottom:19.994667pt;}
.y3f6{bottom:20.000000pt;}
.y402{bottom:20.026667pt;}
.y40a{bottom:20.040000pt;}
.y32e{bottom:20.160000pt;}
.y455{bottom:20.320000pt;}
.y3b9{bottom:20.360000pt;}
.y2d1{bottom:20.480000pt;}
.y31e{bottom:20.640000pt;}
.y2f9{bottom:20.840000pt;}
.y2a3{bottom:20.960000pt;}
.y3af{bottom:20.986667pt;}
.y384{bottom:21.594667pt;}
.y289{bottom:21.600000pt;}
.y44a{bottom:21.626667pt;}
.y465{bottom:21.640000pt;}
.y469{bottom:21.754667pt;}
.y28f{bottom:21.760000pt;}
.y3b6{bottom:21.920000pt;}
.y490{bottom:22.074667pt;}
.y22a{bottom:22.080000pt;}
.y24b{bottom:22.106667pt;}
.y407{bottom:22.120000pt;}
.y23b{bottom:22.240000pt;}
.y247{bottom:22.280000pt;}
.y2cc{bottom:22.400000pt;}
.y226{bottom:22.560000pt;}
.y459{bottom:22.720000pt;}
.y35c{bottom:22.880000pt;}
.y5a5{bottom:23.200000pt;}
.y375{bottom:23.360000pt;}
.y5c0{bottom:23.680000pt;}
.y3a8{bottom:23.840000pt;}
.y58d{bottom:24.000000pt;}
.y5b1{bottom:24.160000pt;}
.y44b{bottom:24.346667pt;}
.y445{bottom:24.480000pt;}
.y513{bottom:24.520000pt;}
.y329{bottom:24.640000pt;}
.y30b{bottom:24.800000pt;}
.y508{bottom:24.826667pt;}
.y32c{bottom:24.960000pt;}
.y308{bottom:25.120000pt;}
.y3b8{bottom:25.160000pt;}
.y2d2{bottom:25.280000pt;}
.y587{bottom:25.320000pt;}
.y125{bottom:25.440000pt;}
.y559{bottom:25.466667pt;}
.y319{bottom:25.600000pt;}
.y2fb{bottom:25.640000pt;}
.y594{bottom:25.760000pt;}
.y3ac{bottom:25.786667pt;}
.y302{bottom:26.400000pt;}
.y44c{bottom:26.426667pt;}
.y2f1{bottom:26.560000pt;}
.y21c{bottom:26.586667pt;}
.y22b{bottom:26.880000pt;}
.y24e{bottom:26.906667pt;}
.y238{bottom:27.040000pt;}
.y240{bottom:27.066667pt;}
.y248{bottom:27.080000pt;}
.y31{bottom:27.200000pt;}
.y441{bottom:27.240000pt;}
.y2c4{bottom:27.386667pt;}
.y2ba{bottom:27.400000pt;}
.y2d6{bottom:27.520000pt;}
.y452{bottom:28.000000pt;}
.y387{bottom:28.160000pt;}
.y4d5{bottom:28.186667pt;}
.y373{bottom:28.320000pt;}
.y571{bottom:28.480000pt;}
.y214{bottom:28.640000pt;}
.y58a{bottom:28.800000pt;}
.y1c{bottom:28.960000pt;}
.y583{bottom:29.120000pt;}
.y5bb{bottom:29.440000pt;}
.y514{bottom:29.480000pt;}
.y325{bottom:29.600000pt;}
.y509{bottom:29.626667pt;}
.y37e{bottom:29.760000pt;}
.y304{bottom:29.920000pt;}
.y440{bottom:29.960000pt;}
.y448{bottom:30.080000pt;}
.y310{bottom:30.240000pt;}
.y2d0{bottom:30.266667pt;}
.y31d{bottom:30.426667pt;}
.y2a2{bottom:30.720000pt;}
.y2f5{bottom:31.360000pt;}
.y438{bottom:31.386667pt;}
.y4fe{bottom:31.400000pt;}
.y2e1{bottom:31.520000pt;}
.y242{bottom:31.840000pt;}
.y23e{bottom:31.866667pt;}
.y25e{bottom:31.880000pt;}
.y251{bottom:32.000000pt;}
.y246{bottom:32.040000pt;}
.y2cb{bottom:32.160000pt;}
.y225{bottom:32.320000pt;}
.y2c6{bottom:32.346667pt;}
.y45b{bottom:32.480000pt;}
.y2b{bottom:32.520000pt;}
.y35b{bottom:32.640000pt;}
.y5a4{bottom:32.960000pt;}
.y377{bottom:33.120000pt;}
.y386{bottom:33.146667pt;}
.y5c2{bottom:33.440000pt;}
.y5ae{bottom:33.600000pt;}
.y58c{bottom:33.754667pt;}
.y5e{bottom:33.920000pt;}
.y439{bottom:34.266667pt;}
.y512{bottom:34.280000pt;}
.y321{bottom:34.400000pt;}
.y30d{bottom:34.560000pt;}
.y507{bottom:34.586667pt;}
.y32f{bottom:34.720000pt;}
.y53f{bottom:34.746667pt;}
.y307{bottom:34.880000pt;}
.y450{bottom:35.040000pt;}
.y2e{bottom:35.200000pt;}
.y558{bottom:35.226667pt;}
.y31a{bottom:35.386667pt;}
.y2fa{bottom:35.400000pt;}
.y3ec{bottom:36.160000pt;}
.y526{bottom:36.186667pt;}
.y4fd{bottom:36.200000pt;}
.y2f0{bottom:36.320000pt;}
.y21b{bottom:36.346667pt;}
.y5a9{bottom:36.800000pt;}
.y2bf{bottom:36.960000pt;}
.y442{bottom:37.000000pt;}
.y43e{bottom:37.120000pt;}
.y2c3{bottom:37.146667pt;}
.y2b9{bottom:37.160000pt;}
.y564{bottom:37.280000pt;}
.y578{bottom:37.920000pt;}
.y4d4{bottom:37.946667pt;}
.y56e{bottom:38.240000pt;}
.y344{bottom:38.400000pt;}
.y590{bottom:38.554667pt;}
.y582{bottom:38.880000pt;}
.y324{bottom:39.360000pt;}
.y37d{bottom:39.520000pt;}
.y32d{bottom:39.680000pt;}
.y43d{bottom:40.000000pt;}
.y31c{bottom:40.186667pt;}
.y213{bottom:40.192000pt;}
.y2a1{bottom:40.480000pt;}
.y542{bottom:40.826667pt;}
.y51c{bottom:41.120000pt;}
.y437{bottom:41.146667pt;}
.y2ed{bottom:41.280000pt;}
.y5a7{bottom:41.600000pt;}
.y45f{bottom:41.760000pt;}
.y227{bottom:42.080000pt;}
.y2c5{bottom:42.106667pt;}
.y45a{bottom:42.240000pt;}
.y35a{bottom:42.400000pt;}
.y4d7{bottom:42.426667pt;}
.y376{bottom:42.880000pt;}
.y389{bottom:42.906667pt;}
.y5c1{bottom:43.200000pt;}
.y5ad{bottom:43.360000pt;}
.y58b{bottom:43.514667pt;}
.y516{bottom:44.040000pt;}
.y57d{bottom:44.160000pt;}
.y52e{bottom:44.200000pt;}
.y30c{bottom:44.320000pt;}
.y50b{bottom:44.346667pt;}
.y504{bottom:44.480000pt;}
.y53e{bottom:44.506667pt;}
.y381{bottom:44.520000pt;}
.y306{bottom:44.640000pt;}
.y453{bottom:44.800000pt;}
.y314{bottom:44.960000pt;}
.y557{bottom:44.986667pt;}
.y5{bottom:45.280000pt;}
.y210{bottom:45.312000pt;}
.y124{bottom:45.640000pt;}
.y525{bottom:45.946667pt;}
.y500{bottom:45.960000pt;}
.y2ef{bottom:46.080000pt;}
.y21a{bottom:46.106667pt;}
.y21f{bottom:46.426667pt;}
.y5a8{bottom:46.560000pt;}
.y2c2{bottom:46.906667pt;}
.y2b8{bottom:46.920000pt;}
.y563{bottom:47.040000pt;}
.y57b{bottom:47.680000pt;}
.y4d3{bottom:47.706667pt;}
.y61{bottom:48.000000pt;}
.y343{bottom:48.160000pt;}
.y58f{bottom:48.314667pt;}
.y581{bottom:48.640000pt;}
.y33{bottom:48.960000pt;}
.y323{bottom:49.120000pt;}
.y32{bottom:49.440000pt;}
.y575{bottom:49.760000pt;}
.y552{bottom:49.946667pt;}
.y2a0{bottom:50.240000pt;}
.y1d2{bottom:50.560000pt;}
.y1c6{bottom:50.626667pt;}
.y51b{bottom:50.880000pt;}
.y43b{bottom:50.906667pt;}
.y2f4{bottom:51.040000pt;}
.y368{bottom:51.840000pt;}
.y569{bottom:52.000000pt;}
.y359{bottom:52.160000pt;}
.y3eb{bottom:52.320000pt;}
.y5a3{bottom:52.640000pt;}
.y388{bottom:52.666667pt;}
.y347{bottom:53.120000pt;}
.y515{bottom:53.800000pt;}
.y5bc{bottom:53.920000pt;}
.y52d{bottom:53.960000pt;}
.y328{bottom:54.080000pt;}
.y50a{bottom:54.106667pt;}
.y503{bottom:54.240000pt;}
.y53d{bottom:54.266667pt;}
.y380{bottom:54.280000pt;}
.y305{bottom:54.400000pt;}
.y529{bottom:54.560000pt;}
.y313{bottom:54.720000pt;}
.y556{bottom:54.746667pt;}
.y2ee{bottom:55.840000pt;}
.y219{bottom:55.866667pt;}
.y4ff{bottom:55.880000pt;}
.y2b7{bottom:56.680000pt;}
.y369{bottom:56.800000pt;}
.y57a{bottom:57.440000pt;}
.y4d2{bottom:57.466667pt;}
.y570{bottom:57.760000pt;}
.y342{bottom:57.920000pt;}
.y580{bottom:58.400000pt;}
.y322{bottom:58.880000pt;}
.y50f{bottom:59.200000pt;}
.y56b{bottom:59.226667pt;}
.y60{bottom:59.520000pt;}
.y55c{bottom:59.706667pt;}
.y29f{bottom:60.000000pt;}
.y51a{bottom:60.640000pt;}
.y43a{bottom:60.666667pt;}
.y2f3{bottom:60.800000pt;}
.y367{bottom:61.600000pt;}
.y568{bottom:61.760000pt;}
.y358{bottom:61.920000pt;}
.y5a2{bottom:62.400000pt;}
.y33a{bottom:62.880000pt;}
.y287{bottom:63.552000pt;}
.y51e{bottom:63.872000pt;}
.y502{bottom:64.000000pt;}
.y53c{bottom:64.026667pt;}
.y37f{bottom:64.040000pt;}
.y435{bottom:64.352000pt;}
.y315{bottom:64.480000pt;}
.y555{bottom:64.506667pt;}
.y59{bottom:64.832000pt;}
.y2eb{bottom:65.152000pt;}
.y218{bottom:65.626667pt;}
.y524{bottom:66.272000pt;}
.y2b6{bottom:66.440000pt;}
.y562{bottom:66.560000pt;}
.y363{bottom:66.880000pt;}
.y4c7{bottom:66.912000pt;}
.y579{bottom:67.200000pt;}
.y4d1{bottom:67.226667pt;}
.y1b{bottom:67.360000pt;}
.y56f{bottom:67.520000pt;}
.y33b{bottom:67.680000pt;}
.y50e{bottom:68.960000pt;}
.y3da{bottom:68.992000pt;}
.y55b{bottom:69.466667pt;}
.y296{bottom:69.760000pt;}
.y4a7{bottom:70.272000pt;}
.y1d0{bottom:70.466667pt;}
.y1c4{bottom:70.560000pt;}
.y36e{bottom:71.360000pt;}
.y5b0{bottom:71.392000pt;}
.y567{bottom:71.560000pt;}
.y357{bottom:71.680000pt;}
.y5a1{bottom:72.186667pt;}
.y339{bottom:72.640000pt;}
.y46e{bottom:72.832000pt;}
.y262{bottom:73.632000pt;}
.y53b{bottom:73.786667pt;}
.y554{bottom:74.266667pt;}
.y447{bottom:74.432000pt;}
.y298{bottom:74.720000pt;}
.y217{bottom:75.386667pt;}
.y2b5{bottom:76.200000pt;}
.y561{bottom:76.360000pt;}
.y27{bottom:76.506667pt;}
.y362{bottom:76.640000pt;}
.y4d0{bottom:76.986667pt;}
.y47f{bottom:77.152000pt;}
.y341{bottom:77.440000pt;}
.y3ce{bottom:77.792000pt;}
.y85{bottom:78.760000pt;}
.y55a{bottom:79.226667pt;}
.y295{bottom:79.520000pt;}
.y2f2{bottom:80.346667pt;}
.y36d{bottom:81.120000pt;}
.y566{bottom:81.320000pt;}
.y356{bottom:81.440000pt;}
.y599{bottom:81.946667pt;}
.y346{bottom:82.400000pt;}
.y553{bottom:84.026667pt;}
.y286{bottom:84.352000pt;}
.y297{bottom:84.480000pt;}
.y434{bottom:84.992000pt;}
.y216{bottom:85.146667pt;}
.y316{bottom:85.472000pt;}
.y2ea{bottom:85.792000pt;}
.y2b4{bottom:85.960000pt;}
.y1c9{bottom:86.080000pt;}
.y560{bottom:86.120000pt;}
.y1bb{bottom:86.146667pt;}
.y361{bottom:86.400000pt;}
.y598{bottom:86.746667pt;}
.y340{bottom:87.200000pt;}
.y294{bottom:89.280000pt;}
.y4a6{bottom:90.912000pt;}
.y36c{bottom:91.040000pt;}
.y565{bottom:91.080000pt;}
.y34c{bottom:91.360000pt;}
.y5a0{bottom:91.706667pt;}
.y494{bottom:92.512000pt;}
.y2ce{bottom:92.672000pt;}
.y4b7{bottom:93.632000pt;}
.y261{bottom:94.272000pt;}
.y4c6{bottom:94.912000pt;}
.y3a7{bottom:95.392000pt;}
.y2a8{bottom:95.720000pt;}
.y55f{bottom:95.880000pt;}
.y34d{bottom:96.160000pt;}
.y33f{bottom:96.960000pt;}
.y3d9{bottom:96.992000pt;}
.y47e{bottom:97.792000pt;}
.y3cd{bottom:98.432000pt;}
.y84{bottom:98.920000pt;}
.y29e{bottom:99.040000pt;}
.y2aa{bottom:100.680000pt;}
.y36b{bottom:100.800000pt;}
.y34b{bottom:101.120000pt;}
.y59f{bottom:101.466667pt;}
.y589{bottom:102.592000pt;}
.y46d{bottom:102.752000pt;}
.y285{bottom:104.992000pt;}
.y2a7{bottom:105.480000pt;}
.y433{bottom:105.632000pt;}
.y360{bottom:105.920000pt;}
.y2e9{bottom:106.432000pt;}
.yb3{bottom:106.592000pt;}
.y33e{bottom:106.720000pt;}
.y1a{bottom:107.840000pt;}
.y7d{bottom:108.192000pt;}
.y29d{bottom:108.800000pt;}
.y1bc{bottom:109.120000pt;}
.y106{bottom:109.472000pt;}
.y4f3{bottom:110.432000pt;}
.y2a9{bottom:110.440000pt;}
.y36a{bottom:110.560000pt;}
.y355{bottom:110.880000pt;}
.y59e{bottom:111.226667pt;}
.y4a5{bottom:111.552000pt;}
.y2cd{bottom:113.312000pt;}
.y193{bottom:113.472000pt;}
.y1f5{bottom:113.632000pt;}
.y4b6{bottom:114.272000pt;}
.y12b{bottom:114.432000pt;}
.y383{bottom:114.592000pt;}
.y260{bottom:114.912000pt;}
.y2a6{bottom:115.240000pt;}
.y35f{bottom:115.680000pt;}
.y5af{bottom:116.192000pt;}
.y33d{bottom:116.480000pt;}
.y152{bottom:116.512000pt;}
.ye0{bottom:116.672000pt;}
.y1ca{bottom:116.706667pt;}
.y29c{bottom:118.560000pt;}
.y47d{bottom:118.592000pt;}
.y18{bottom:118.906667pt;}
.y3cc{bottom:119.072000pt;}
.y83{bottom:119.240000pt;}
.y1b9{bottom:119.392000pt;}
.y354{bottom:120.640000pt;}
.y59d{bottom:120.986667pt;}
.y523{bottom:122.272000pt;}
.y4c5{bottom:122.912000pt;}
.y51d{bottom:123.072000pt;}
.y3d8{bottom:124.992000pt;}
.y2b3{bottom:125.000000pt;}
.y35e{bottom:125.440000pt;}
.y283{bottom:125.632000pt;}
.y33c{bottom:126.240000pt;}
.y431{bottom:126.272000pt;}
.y1d{bottom:126.400000pt;}
.yb2{bottom:127.072000pt;}
.y16e{bottom:127.232000pt;}
.y29b{bottom:128.480000pt;}
.y7c{bottom:128.512000pt;}
.y3a3{bottom:129.632000pt;}
.y105{bottom:129.792000pt;}
.y353{bottom:130.400000pt;}
.y59c{bottom:130.746667pt;}
.y4f1{bottom:130.752000pt;}
.y1bd{bottom:132.066667pt;}
.y4a3{bottom:132.352000pt;}
.y468{bottom:132.672000pt;}
.y48f{bottom:133.152000pt;}
.y519{bottom:133.626667pt;}
.y192{bottom:133.786667pt;}
.y1f4{bottom:133.946667pt;}
.y2b2{bottom:134.760000pt;}
.y4b5{bottom:134.906667pt;}
.y446{bottom:135.066667pt;}
.y25f{bottom:135.546667pt;}
.y3ff{bottom:136.506667pt;}
.y151{bottom:136.826667pt;}
.y29a{bottom:138.266667pt;}
.y47c{bottom:139.226667pt;}
.y82{bottom:139.400000pt;}
.y1b8{bottom:139.706667pt;}
.y352{bottom:140.160000pt;}
.y59b{bottom:140.506667pt;}
.y312{bottom:141.146667pt;}
.y12a{bottom:142.586667pt;}
.y2b1{bottom:144.520000pt;}
.y382{bottom:144.666667pt;}
.ydf{bottom:144.826667pt;}
.y282{bottom:146.266667pt;}
.y430{bottom:146.906667pt;}
.y1cb{bottom:147.293333pt;}
.yb1{bottom:147.386667pt;}
.y2e7{bottom:147.706667pt;}
.y299{bottom:148.026667pt;}
.y1d1{bottom:148.640000pt;}
.y7b{bottom:148.666667pt;}
.y1c5{bottom:148.706667pt;}
.y3cb{bottom:149.146667pt;}
.y249{bottom:149.466667pt;}
.y351{bottom:149.920000pt;}
.y104{bottom:149.946667pt;}
.y522{bottom:150.266667pt;}
.y4c4{bottom:150.746667pt;}
.y4f0{bottom:150.906667pt;}
.y3d7{bottom:152.826667pt;}
.y4a2{bottom:152.986667pt;}
.y191{bottom:153.946667pt;}
.y2b0{bottom:154.280000pt;}
.y1be{bottom:155.040000pt;}
.y4b4{bottom:155.546667pt;}
.y444{bottom:155.706667pt;}
.y413{bottom:156.346667pt;}
.y5ac{bottom:156.666667pt;}
.y150{bottom:156.986667pt;}
.y129{bottom:158.426667pt;}
.y3a2{bottom:159.546667pt;}
.y350{bottom:159.680000pt;}
.y81{bottom:159.720000pt;}
.y1b7{bottom:159.866667pt;}
.y59a{bottom:160.026667pt;}
.y1f3{bottom:162.106667pt;}
.y466{bottom:162.746667pt;}
.y2af{bottom:164.040000pt;}
.y37c{bottom:165.306667pt;}
.y1{bottom:166.240000pt;}
.y349{bottom:166.266667pt;}
.y588{bottom:166.426667pt;}
.y281{bottom:166.906667pt;}
.y20e{bottom:167.226667pt;}
.y42f{bottom:167.546667pt;}
.y16d{bottom:167.706667pt;}
.yb0{bottom:167.866667pt;}
.y2e6{bottom:168.346667pt;}
.y7a{bottom:168.986667pt;}
.y34f{bottom:169.466667pt;}
.y103{bottom:170.266667pt;}
.y4ef{bottom:171.066667pt;}
.yde{bottom:173.146667pt;}
.y4a1{bottom:173.626667pt;}
.y48e{bottom:173.786667pt;}
.y2ae{bottom:173.800000pt;}
.y190{bottom:174.266667pt;}
.y2ca{bottom:174.586667pt;}
.y25d{bottom:176.346667pt;}
.y412{bottom:176.986667pt;}
.y3fe{bottom:177.146667pt;}
.y14f{bottom:177.306667pt;}
.y1cc{bottom:177.920000pt;}
.y1bf{bottom:177.986667pt;}
.y521{bottom:178.106667pt;}
.y4c3{bottom:178.746667pt;}
.y3ca{bottom:179.066667pt;}
.y128{bottom:179.226667pt;}
.y80{bottom:179.880000pt;}
.y1b6{bottom:180.186667pt;}
.y3d6{bottom:180.826667pt;}
.y4ee{bottom:181.466667pt;}
.y2ad{bottom:183.560000pt;}
.y280{bottom:187.546667pt;}
.y586{bottom:187.706667pt;}
.yaf{bottom:188.186667pt;}
.y42e{bottom:188.346667pt;}
.y34e{bottom:188.986667pt;}
.y79{bottom:189.146667pt;}
.y3a1{bottom:189.626667pt;}
.y245{bottom:190.106667pt;}
.y102{bottom:190.426667pt;}
.y1e{bottom:190.786667pt;}
.y1f{bottom:192.000000pt;}
.y348{bottom:192.346667pt;}
.y464{bottom:192.666667pt;}
.ydd{bottom:193.306667pt;}
.y2ac{bottom:193.346667pt;}
.y4a0{bottom:194.266667pt;}
.y20d{bottom:195.226667pt;}
.y16c{bottom:195.866667pt;}
.y4b2{bottom:196.346667pt;}
.y14e{bottom:197.466667pt;}
.y127{bottom:200.186667pt;}
.y7f{bottom:200.200000pt;}
.y1b5{bottom:200.346667pt;}
.y47b{bottom:200.506667pt;}
.y1c0{bottom:200.933333pt;}
.y4ec{bottom:201.626667pt;}
.y18f{bottom:202.426667pt;}
.y511{bottom:202.586667pt;}
.y2ab{bottom:203.106667pt;}
.y43f{bottom:205.306667pt;}
.y520{bottom:206.106667pt;}
.y4c2{bottom:206.746667pt;}
.y27f{bottom:208.386667pt;}
.y1cd{bottom:208.506667pt;}
.yae{bottom:208.666667pt;}
.y3d5{bottom:208.866667pt;}
.y3c9{bottom:209.026667pt;}
.y78{bottom:209.306667pt;}
.y2e5{bottom:209.826667pt;}
.y3a0{bottom:210.306667pt;}
.y1f2{bottom:210.586667pt;}
.y5ab{bottom:210.626667pt;}
.y101{bottom:210.746667pt;}
.y338{bottom:213.186667pt;}
.ydc{bottom:213.626667pt;}
.y48d{bottom:214.466667pt;}
.y49f{bottom:214.946667pt;}
.y25c{bottom:217.026667pt;}
.y30f{bottom:217.666667pt;}
.y14d{bottom:217.786667pt;}
.y3fd{bottom:217.826667pt;}
.y1b4{bottom:220.666667pt;}
.y126{bottom:221.146667pt;}
.y4eb{bottom:221.986667pt;}
.y462{bottom:222.626667pt;}
.y1c1{bottom:223.906667pt;}
.y16b{bottom:224.186667pt;}
.y57f{bottom:225.186667pt;}
.y20c{bottom:225.786667pt;}
.yad{bottom:228.986667pt;}
.y27e{bottom:229.026667pt;}
.y42d{bottom:229.666667pt;}
.y2e4{bottom:230.466667pt;}
.y18e{bottom:230.746667pt;}
.y5aa{bottom:230.786667pt;}
.y100{bottom:230.906667pt;}
.y244{bottom:230.946667pt;}
.y51f{bottom:231.426667pt;}
.y4ea{bottom:232.386667pt;}
.y28{bottom:232.986667pt;}
.ydb{bottom:233.786667pt;}
.y4c1{bottom:234.786667pt;}
.y2c9{bottom:235.266667pt;}
.y3d4{bottom:236.706667pt;}
.y4b1{bottom:237.026667pt;}
.y14c{bottom:237.946667pt;}
.y77{bottom:238.426667pt;}
.y39f{bottom:238.466667pt;}
.y3c8{bottom:238.946667pt;}
.y1ce{bottom:239.133333pt;}
.y539{bottom:239.426667pt;}
.y1b3{bottom:240.826667pt;}
.y37b{bottom:241.026667pt;}
.y47a{bottom:241.186667pt;}
.y293{bottom:242.306667pt;}
.y16a{bottom:244.346667pt;}
.y1c2{bottom:246.853333pt;}
.yac{bottom:249.466667pt;}
.y27d{bottom:249.666667pt;}
.y42c{bottom:250.306667pt;}
.y18d{bottom:250.906667pt;}
.y5a6{bottom:250.946667pt;}
.y4e9{bottom:252.546667pt;}
.y461{bottom:252.706667pt;}
.yda{bottom:254.106667pt;}
.y48c{bottom:255.106667pt;}
.y49e{bottom:255.586667pt;}
.y2c8{bottom:255.906667pt;}
.y55e{bottom:256.866667pt;}
.y25b{bottom:257.666667pt;}
.y411{bottom:258.306667pt;}
.y3fc{bottom:258.626667pt;}
.y1f1{bottom:259.066667pt;}
.y3c7{bottom:259.746667pt;}
.yff{bottom:260.026667pt;}
.y2e3{bottom:260.386667pt;}
.y20b{bottom:262.106667pt;}
.y123{bottom:262.266667pt;}
.y4c0{bottom:262.626667pt;}
.y169{bottom:264.666667pt;}
.y3d3{bottom:264.706667pt;}
.y30a{bottom:265.026667pt;}
.y43c{bottom:265.986667pt;}
.y14b{bottom:266.266667pt;}
.y510{bottom:267.586667pt;}
.y1b2{bottom:269.146667pt;}
.y1cf{bottom:269.733333pt;}
.yab{bottom:269.786667pt;}
.y1c3{bottom:269.826667pt;}
.y27c{bottom:270.306667pt;}
.y37a{bottom:270.946667pt;}
.y18c{bottom:271.226667pt;}
.y243{bottom:271.586667pt;}
.y76{bottom:271.866667pt;}
.y39e{bottom:271.906667pt;}
.y2a{bottom:272.506667pt;}
.y4e8{bottom:272.706667pt;}
.y49d{bottom:276.386667pt;}
.y4b0{bottom:277.666667pt;}
.y50d{bottom:277.986667pt;}
.y55d{bottom:278.146667pt;}
.y538{bottom:279.906667pt;}
.y3c6{bottom:280.386667pt;}
.y2e2{bottom:281.026667pt;}
.y479{bottom:281.826667pt;}
.yd9{bottom:283.066667pt;}
.y4e7{bottom:283.266667pt;}
.y20a{bottom:283.546667pt;}
.y168{bottom:284.826667pt;}
.y1f0{bottom:287.386667pt;}
.yaa{bottom:290.266667pt;}
.y4bf{bottom:290.626667pt;}
.y27b{bottom:290.946667pt;}
.y18b{bottom:291.386667pt;}
.yfe{bottom:291.546667pt;}
.y372{bottom:291.586667pt;}
.y39d{bottom:292.546667pt;}
.y3d2{bottom:292.706667pt;}
.y14a{bottom:294.426667pt;}
.y48b{bottom:295.746667pt;}
.y2c7{bottom:296.706667pt;}
.y49c{bottom:297.026667pt;}
.y1b1{bottom:297.306667pt;}
.y25a{bottom:298.306667pt;}
.y410{bottom:298.946667pt;}
.y3fb{bottom:299.266667pt;}
.y57e{bottom:299.426667pt;}
.y537{bottom:300.066667pt;}
.y3c5{bottom:301.026667pt;}
.yd8{bottom:301.506667pt;}
.y2e0{bottom:301.666667pt;}
.y4e6{bottom:303.426667pt;}
.y26{bottom:303.906667pt;}
.y209{bottom:304.226667pt;}
.y167{bottom:305.186667pt;}
.y75{bottom:307.586667pt;}
.y20{bottom:309.346667pt;}
.ya9{bottom:310.626667pt;}
.y597{bottom:311.106667pt;}
.y18a{bottom:311.586667pt;}
.y241{bottom:312.226667pt;}
.y42b{bottom:312.386667pt;}
.y39c{bottom:313.186667pt;}
.y460{bottom:313.346667pt;}
.y1aa{bottom:314.786667pt;}
.y1ef{bottom:315.586667pt;}
.y48a{bottom:316.546667pt;}
.y1b0{bottom:317.666667pt;}
.y4af{bottom:318.306667pt;}
.y4be{bottom:318.626667pt;}
.y536{bottom:320.226667pt;}
.y3d1{bottom:320.706667pt;}
.y303{bottom:321.026667pt;}
.yd7{bottom:321.346667pt;}
.y3c4{bottom:321.666667pt;}
.y478{bottom:322.626667pt;}
.y149{bottom:322.786667pt;}
.yfd{bottom:323.266667pt;}
.y122{bottom:323.586667pt;}
.y208{bottom:324.226667pt;}
.y166{bottom:325.346667pt;}
.ya8{bottom:331.106667pt;}
.y189{bottom:331.906667pt;}
.y27a{bottom:332.386667pt;}
.y42a{bottom:333.026667pt;}
.y45e{bottom:333.986667pt;}
.y74{bottom:335.906667pt;}
.y489{bottom:337.186667pt;}
.y49b{bottom:337.666667pt;}
.y1af{bottom:337.826667pt;}
.y259{bottom:338.946667pt;}
.y25{bottom:339.426667pt;}
.y40f{bottom:339.586667pt;}
.y3fa{bottom:339.906667pt;}
.y535{bottom:340.546667pt;}
.yd6{bottom:341.186667pt;}
.y2df{bottom:341.506667pt;}
.y3c3{bottom:342.306667pt;}
.y148{bottom:342.946667pt;}
.y39b{bottom:343.106667pt;}
.y4e5{bottom:343.746667pt;}
.y1ee{bottom:343.906667pt;}
.y207{bottom:344.226667pt;}
.y371{bottom:344.706667pt;}
.y165{bottom:345.666667pt;}
.y4bd{bottom:346.466667pt;}
.y436{bottom:346.626667pt;}
.y3d0{bottom:348.546667pt;}
.ya7{bottom:351.426667pt;}
.y188{bottom:352.066667pt;}
.y23d{bottom:352.866667pt;}
.y279{bottom:353.026667pt;}
.y429{bottom:353.666667pt;}
.yfc{bottom:353.986667pt;}
.y551{bottom:354.146667pt;}
.y337{bottom:354.946667pt;}
.y73{bottom:356.066667pt;}
.y2c1{bottom:357.346667pt;}
.y121{bottom:357.666667pt;}
.y488{bottom:357.826667pt;}
.y49a{bottom:358.306667pt;}
.y4ae{bottom:358.946667pt;}
.y534{bottom:360.706667pt;}
.yd5{bottom:361.026667pt;}
.y2de{bottom:362.146667pt;}
.y1ae{bottom:362.626667pt;}
.y3c2{bottom:362.946667pt;}
.y147{bottom:363.266667pt;}
.y506{bottom:363.426667pt;}
.y39a{bottom:363.906667pt;}
.y1ed{bottom:364.066667pt;}
.y1c8{bottom:364.320000pt;}
.y370{bottom:365.346667pt;}
.y24{bottom:367.106667pt;}
.yfb{bottom:369.506667pt;}
.y5b6{bottom:369.986667pt;}
.y187{bottom:372.386667pt;}
.y276{bottom:373.666667pt;}
.y164{bottom:373.826667pt;}
.y3cf{bottom:373.986667pt;}
.y427{bottom:374.306667pt;}
.y4bc{bottom:374.466667pt;}
.y206{bottom:374.626667pt;}
.y335{bottom:375.586667pt;}
.y120{bottom:377.986667pt;}
.y487{bottom:378.493333pt;}
.y499{bottom:378.973333pt;}
.y258{bottom:379.613333pt;}
.y40e{bottom:380.413333pt;}
.y3f9{bottom:380.573333pt;}
.yd4{bottom:380.866667pt;}
.y533{bottom:380.893333pt;}
.y3e9{bottom:382.013333pt;}
.y2dd{bottom:382.813333pt;}
.y146{bottom:383.426667pt;}
.y3c1{bottom:383.773333pt;}
.ya6{bottom:384.226667pt;}
.y4e4{bottom:384.253333pt;}
.y72{bottom:384.386667pt;}
.y399{bottom:384.573333pt;}
.y366{bottom:386.013333pt;}
.y577{bottom:386.173333pt;}
.y301{bottom:387.293333pt;}
.y532{bottom:391.293333pt;}
.y186{bottom:392.546667pt;}
.y23c{bottom:393.533333pt;}
.y275{bottom:394.333333pt;}
.y23{bottom:394.626667pt;}
.y426{bottom:394.973333pt;}
.y334{bottom:396.253333pt;}
.yfa{bottom:397.666667pt;}
.y5b5{bottom:398.013333pt;}
.y486{bottom:399.133333pt;}
.y4ad{bottom:399.613333pt;}
.yd3{bottom:400.706667pt;}
.y163{bottom:401.986667pt;}
.y4bb{bottom:402.493333pt;}
.y2dc{bottom:403.453333pt;}
.y145{bottom:403.746667pt;}
.y477{bottom:403.933333pt;}
.y3c0{bottom:404.413333pt;}
.y1ec{bottom:404.546667pt;}
.y398{bottom:405.213333pt;}
.y11f{bottom:406.146667pt;}
.y292{bottom:407.773333pt;}
.ya5{bottom:409.986667pt;}
.y205{bottom:410.466667pt;}
.y531{bottom:411.613333pt;}
.y3e8{bottom:411.933333pt;}
.y71{bottom:412.546667pt;}
.y185{bottom:412.866667pt;}
.y274{bottom:414.973333pt;}
.y425{bottom:415.613333pt;}
.y333{bottom:416.893333pt;}
.y498{bottom:419.613333pt;}
.y485{bottom:419.773333pt;}
.y257{bottom:420.413333pt;}
.yd2{bottom:420.706667pt;}
.y40d{bottom:421.053333pt;}
.y3f8{bottom:421.213333pt;}
.y5b4{bottom:423.293333pt;}
.y144{bottom:423.906667pt;}
.y2db{bottom:424.093333pt;}
.y17{bottom:424.546667pt;}
.y4e3{bottom:424.573333pt;}
.y1eb{bottom:424.866667pt;}
.y3bf{bottom:425.053333pt;}
.yf9{bottom:425.826667pt;}
.y397{bottom:425.853333pt;}
.y300{bottom:426.973333pt;}
.y505{bottom:429.053333pt;}
.ya4{bottom:430.146667pt;}
.y22{bottom:430.306667pt;}
.y4ba{bottom:430.493333pt;}
.y204{bottom:430.626667pt;}
.y5c5{bottom:431.293333pt;}
.y70{bottom:432.866667pt;}
.y184{bottom:433.026667pt;}
.y237{bottom:434.173333pt;}
.y11e{bottom:434.466667pt;}
.y273{bottom:435.613333pt;}
.y424{bottom:436.413333pt;}
.y28e{bottom:437.693333pt;}
.y2be{bottom:438.013333pt;}
.y501{bottom:439.453333pt;}
.y4ac{bottom:440.413333pt;}
.yd1{bottom:440.546667pt;}
.y484{bottom:440.573333pt;}
.y3e7{bottom:441.853333pt;}
.y1a9{bottom:444.226667pt;}
.y2{bottom:444.413333pt;}
.y476{bottom:444.573333pt;}
.y4e2{bottom:444.733333pt;}
.y1ea{bottom:445.026667pt;}
.y45d{bottom:445.213333pt;}
.y3be{bottom:445.693333pt;}
.y396{bottom:446.493333pt;}
.y2ff{bottom:447.613333pt;}
.ya3{bottom:450.466667pt;}
.y203{bottom:450.946667pt;}
.y5bf{bottom:451.613333pt;}
.y143{bottom:452.226667pt;}
.y6f{bottom:453.026667pt;}
.y183{bottom:453.346667pt;}
.yf8{bottom:453.986667pt;}
.y272{bottom:456.413333pt;}
.y423{bottom:457.053333pt;}
.y332{bottom:458.333333pt;}
.y550{bottom:460.253333pt;}
.yd0{bottom:460.386667pt;}
.y497{bottom:460.413333pt;}
.y256{bottom:461.053333pt;}
.y483{bottom:461.213333pt;}
.y40c{bottom:461.693333pt;}
.y3f7{bottom:461.853333pt;}
.y11d{bottom:462.626667pt;}
.y4e1{bottom:465.053333pt;}
.y21{bottom:465.826667pt;}
.y458{bottom:465.853333pt;}
.y3bd{bottom:466.333333pt;}
.y395{bottom:467.133333pt;}
.y288{bottom:467.773333pt;}
.y576{bottom:468.253333pt;}
.ya2{bottom:470.626667pt;}
.y162{bottom:470.786667pt;}
.y530{bottom:470.813333pt;}
.y202{bottom:471.106667pt;}
.y3e6{bottom:471.933333pt;}
.y1a8{bottom:473.186667pt;}
.y6e{bottom:473.346667pt;}
.y182{bottom:473.506667pt;}
.y2da{bottom:474.813333pt;}
.y236{bottom:474.973333pt;}
.y271{bottom:477.053333pt;}
.y422{bottom:477.693333pt;}
.y331{bottom:478.973333pt;}
.ycf{bottom:480.226667pt;}
.y142{bottom:480.386667pt;}
.y496{bottom:481.053333pt;}
.y52f{bottom:481.213333pt;}
.y54f{bottom:481.373333pt;}
.yf6{bottom:482.306667pt;}
.y475{bottom:485.213333pt;}
.y4b9{bottom:486.333333pt;}
.y3bc{bottom:486.973333pt;}
.y2fe{bottom:487.293333pt;}
.y394{bottom:487.933333pt;}
.y574{bottom:489.533333pt;}
.ya1{bottom:490.946667pt;}
.y482{bottom:491.133333pt;}
.y6d{bottom:493.506667pt;}
.y181{bottom:493.826667pt;}
.y270{bottom:497.693333pt;}
.y421{bottom:498.333333pt;}
.y2bd{bottom:498.653333pt;}
.y201{bottom:499.426667pt;}
.y32b{bottom:499.613333pt;}
.yce{bottom:500.066667pt;}
.y1e9{bottom:501.506667pt;}
.y255{bottom:501.693333pt;}
.y3e5{bottom:501.853333pt;}
.y40b{bottom:502.333333pt;}
.y3f5{bottom:502.653333pt;}
.y1a7{bottom:504.866667pt;}
.y5be{bottom:505.213333pt;}
.y4e0{bottom:505.373333pt;}
.y52c{bottom:505.693333pt;}
.y365{bottom:505.853333pt;}
.y3bb{bottom:507.773333pt;}
.y393{bottom:508.573333pt;}
.y141{bottom:508.706667pt;}
.y595{bottom:509.053333pt;}
.y11c{bottom:511.106667pt;}
.yf5{bottom:511.266667pt;}
.y4b8{bottom:511.613333pt;}
.y10{bottom:511.906667pt;}
.y6c{bottom:513.826667pt;}
.y180{bottom:513.986667pt;}
.y4fc{bottom:515.133333pt;}
.y234{bottom:515.613333pt;}
.y2fd{bottom:517.373333pt;}
.y457{bottom:517.533333pt;}
.y26f{bottom:518.333333pt;}
.y420{bottom:518.973333pt;}
.y200{bottom:519.586667pt;}
.y4ce{bottom:519.613333pt;}
.y58{bottom:519.746667pt;}
.ya0{bottom:519.906667pt;}
.y481{bottom:521.053333pt;}
.y4ab{bottom:521.693333pt;}
.y1e8{bottom:521.826667pt;}
.y495{bottom:522.333333pt;}
.y3e4{bottom:522.493333pt;}
.y54e{bottom:523.933333pt;}
.y5bd{bottom:525.373333pt;}
.y4df{bottom:525.533333pt;}
.y474{bottom:525.853333pt;}
.y364{bottom:526.493333pt;}
.y3b7{bottom:528.413333pt;}
.y2a5{bottom:528.573333pt;}
.y140{bottom:528.866667pt;}
.y392{bottom:529.213333pt;}
.y11b{bottom:531.426667pt;}
.y6b{bottom:533.986667pt;}
.y17f{bottom:534.306667pt;}
.y2d8{bottom:535.453333pt;}
.y1a6{bottom:535.586667pt;}
.y231{bottom:536.253333pt;}
.y19{bottom:537.053333pt;}
.y2f8{bottom:538.013333pt;}
.y9f{bottom:538.173333pt;}
.y26d{bottom:538.973333pt;}
.yf4{bottom:539.453333pt;}
.y41d{bottom:539.613333pt;}
.ycc{bottom:539.933333pt;}
.y4cd{bottom:540.413333pt;}
.y253{bottom:542.333333pt;}
.y406{bottom:542.973333pt;}
.y3e2{bottom:543.133333pt;}
.y3f2{bottom:543.293333pt;}
.y57{bottom:544.573333pt;}
.y54b{bottom:545.213333pt;}
.y5ba{bottom:545.733333pt;}
.y4de{bottom:545.893333pt;}
.y34a{bottom:547.173333pt;}
.y13f{bottom:549.213333pt;}
.y391{bottom:549.893333pt;}
.y1e7{bottom:550.013333pt;}
.y480{bottom:551.173333pt;}
.y11a{bottom:551.613333pt;}
.y161{bottom:551.773333pt;}
.y6a{bottom:554.333333pt;}
.y1a5{bottom:555.933333pt;}
.y32a{bottom:555.973333pt;}
.y2d5{bottom:556.133333pt;}
.y56d{bottom:556.293333pt;}
.y230{bottom:556.933333pt;}
.y9e{bottom:557.853333pt;}
.y26c{bottom:559.653333pt;}
.ycb{bottom:559.773333pt;}
.y1ff{bottom:560.093333pt;}
.y41c{bottom:560.453333pt;}
.y4cc{bottom:561.093333pt;}
.y4aa{bottom:562.373333pt;}
.y17e{bottom:562.493333pt;}
.y3e1{bottom:563.813333pt;}
.y3f1{bottom:563.973333pt;}
.y3b5{bottom:565.573333pt;}
.y4dd{bottom:566.053333pt;}
.y548{bottom:566.533333pt;}
.y473{bottom:566.693333pt;}
.yf2{bottom:567.773333pt;}
.y56{bottom:569.373333pt;}
.y390{bottom:570.533333pt;}
.y52b{bottom:571.013333pt;}
.y119{bottom:571.933333pt;}
.y69{bottom:574.493333pt;}
.y1a4{bottom:576.093333pt;}
.y9d{bottom:577.533333pt;}
.y22f{bottom:577.573333pt;}
.y456{bottom:578.213333pt;}
.y1e6{bottom:578.333333pt;}
.yca{bottom:579.613333pt;}
.y160{bottom:579.933333pt;}
.y1fe{bottom:580.413333pt;}
.y26b{bottom:580.453333pt;}
.y41b{bottom:581.093333pt;}
.y52a{bottom:581.573333pt;}
.y4cb{bottom:581.733333pt;}
.y252{bottom:583.013333pt;}
.y405{bottom:583.653333pt;}
.y4fb{bottom:584.133333pt;}
.y3e0{bottom:584.613333pt;}
.y2f7{bottom:585.893333pt;}
.y4dc{bottom:586.213333pt;}
.y547{bottom:587.813333pt;}
.y13e{bottom:589.693333pt;}
.y17d{bottom:590.813333pt;}
.y38f{bottom:591.173333pt;}
.y118{bottom:592.093333pt;}
.y55{bottom:594.333333pt;}
.y68{bottom:594.813333pt;}
.y1a3{bottom:596.413333pt;}
.y472{bottom:596.613333pt;}
.y9c{bottom:597.213333pt;}
.y22d{bottom:598.213333pt;}
.y1e5{bottom:598.493333pt;}
.y44f{bottom:598.853333pt;}
.yc9{bottom:599.453333pt;}
.y1fd{bottom:600.573333pt;}
.y26a{bottom:601.093333pt;}
.y41a{bottom:601.733333pt;}
.y4ca{bottom:602.373333pt;}
.y4a9{bottom:603.013333pt;}
.y4fa{bottom:604.293333pt;}
.y3df{bottom:605.253333pt;}
.y3b4{bottom:606.053333pt;}
.y4db{bottom:606.373333pt;}
.y2d4{bottom:607.653333pt;}
.y15f{bottom:608.253333pt;}
.yf1{bottom:609.053333pt;}
.y546{bottom:609.093333pt;}
.y528{bottom:609.413333pt;}
.y13d{bottom:609.853333pt;}
.y17c{bottom:610.973333pt;}
.y5b9{bottom:611.013333pt;}
.y38e{bottom:611.973333pt;}
.y117{bottom:612.413333pt;}
.y320{bottom:613.093333pt;}
.y67{bottom:614.973333pt;}
.y3{bottom:615.453333pt;}
.y2f6{bottom:615.813333pt;}
.y1a2{bottom:616.573333pt;}
.y9b{bottom:616.893333pt;}
.y1e4{bottom:618.813333pt;}
.y224{bottom:619.013333pt;}
.yc8{bottom:619.293333pt;}
.y54{bottom:619.933333pt;}
.y1fc{bottom:620.893333pt;}
.y269{bottom:621.733333pt;}
.y419{bottom:622.373333pt;}
.y4c9{bottom:623.013333pt;}
.y250{bottom:623.653333pt;}
.y404{bottom:624.453333pt;}
.y4f9{bottom:624.613333pt;}
.y3de{bottom:625.893333pt;}
.y471{bottom:626.533333pt;}
.y4da{bottom:627.173333pt;}
.y13c{bottom:630.173333pt;}
.y545{bottom:630.373333pt;}
.y17b{bottom:631.293333pt;}
.y5b8{bottom:631.333333pt;}
.y38d{bottom:632.613333pt;}
.y66{bottom:635.293333pt;}
.y3b3{bottom:635.973333pt;}
.y15e{bottom:636.413333pt;}
.y2ec{bottom:636.453333pt;}
.y9a{bottom:636.573333pt;}
.y1a1{bottom:636.893333pt;}
.yf0{bottom:637.373333pt;}
.y1e3{bottom:638.973333pt;}
.y56c{bottom:639.013333pt;}
.yc7{bottom:639.133333pt;}
.y116{bottom:640.573333pt;}
.y1fb{bottom:641.053333pt;}
.y268{bottom:642.373333pt;}
.y418{bottom:643.013333pt;}
.y4a8{bottom:643.653333pt;}
.y4f8{bottom:644.773333pt;}
.y3f0{bottom:646.693333pt;}
.y53{bottom:648.253333pt;}
.y13b{bottom:650.333333pt;}
.y17a{bottom:651.453333pt;}
.y65{bottom:655.453333pt;}
.y44e{bottom:655.493333pt;}
.y3dd{bottom:655.813333pt;}
.y99{bottom:656.253333pt;}
.y470{bottom:656.453333pt;}
.y15d{bottom:656.733333pt;}
.y1a0{bottom:657.053333pt;}
.yc6{bottom:659.133333pt;}
.y5b7{bottom:659.173333pt;}
.y222{bottom:659.653333pt;}
.y56a{bottom:660.133333pt;}
.y115{bottom:660.893333pt;}
.y1fa{bottom:661.373333pt;}
.y38c{bottom:662.533333pt;}
.y267{bottom:663.013333pt;}
.y417{bottom:663.653333pt;}
.y24f{bottom:664.453333pt;}
.y4f7{bottom:664.933333pt;}
.y403{bottom:665.093333pt;}
.y1ad{bottom:665.373333pt;}
.yef{bottom:665.533333pt;}
.y3b2{bottom:665.893333pt;}
.y1e2{bottom:667.293333pt;}
.y4d9{bottom:667.813333pt;}
.y2d3{bottom:668.293333pt;}
.y45{bottom:669.213333pt;}
.y13a{bottom:670.653333pt;}
.y544{bottom:671.013333pt;}
.y179{bottom:671.773333pt;}
.y98{bottom:675.933333pt;}
.y527{bottom:675.973333pt;}
.y44d{bottom:676.293333pt;}
.y52{bottom:676.413333pt;}
.y15c{bottom:676.893333pt;}
.y19f{bottom:677.373333pt;}
.yc5{bottom:678.973333pt;}
.y220{bottom:680.293333pt;}
.y114{bottom:681.053333pt;}
.y385{bottom:683.173333pt;}
.y266{bottom:683.653333pt;}
.y416{bottom:684.453333pt;}
.y4c8{bottom:685.093333pt;}
.y3dc{bottom:685.733333pt;}
.yee{bottom:685.853333pt;}
.y64{bottom:686.333333pt;}
.y3b1{bottom:686.533333pt;}
.y3ef{bottom:687.333333pt;}
.y1e1{bottom:687.453333pt;}
.y318{bottom:688.293333pt;}
.y4d8{bottom:688.453333pt;}
.y2cf{bottom:688.933333pt;}
.y1f9{bottom:689.533333pt;}
.y139{bottom:690.813333pt;}
.y543{bottom:691.653333pt;}
.y178{bottom:691.933333pt;}
.y42{bottom:693.533333pt;}
.y97{bottom:695.613333pt;}
.y449{bottom:696.933333pt;}
.y15b{bottom:697.213333pt;}
.y15{bottom:697.440000pt;}
.y19e{bottom:697.533333pt;}
.y11{bottom:698.400000pt;}
.yc3{bottom:698.813333pt;}
.y13{bottom:699.040000pt;}
.y215{bottom:700.933333pt;}
.y113{bottom:701.373333pt;}
.y264{bottom:704.453333pt;}
.y51{bottom:704.733333pt;}
.y24a{bottom:705.093333pt;}
.y4f5{bottom:705.413333pt;}
.yf{bottom:705.693333pt;}
.y400{bottom:705.733333pt;}
.yed{bottom:706.013333pt;}
.y3ab{bottom:707.333333pt;}
.y1e0{bottom:707.773333pt;}
.y3ee{bottom:707.973333pt;}
.y4cf{bottom:709.093333pt;}
.y138{bottom:711.133333pt;}
.y177{bottom:712.253333pt;}
.y53a{bottom:712.293333pt;}
.y1ac{bottom:713.693333pt;}
.y96{bottom:715.293333pt;}
.y3db{bottom:715.840000pt;}
.y46f{bottom:716.480000pt;}
.y15a{bottom:717.373333pt;}
.y41{bottom:717.693333pt;}
.y1f8{bottom:717.853333pt;}
.y112{bottom:721.533333pt;}
.y63{bottom:724.733333pt;}
.y263{bottom:725.120000pt;}
.y4f4{bottom:725.600000pt;}
.y414{bottom:725.760000pt;}
.y19d{bottom:725.853333pt;}
.y1df{bottom:727.933333pt;}
.y3ea{bottom:728.640000pt;}
.yc2{bottom:730.973333pt;}
.y137{bottom:731.293333pt;}
.y50{bottom:732.093333pt;}
.y176{bottom:732.413333pt;}
.y95{bottom:734.973333pt;}
.yec{bottom:735.133333pt;}
.y1ab{bottom:738.493333pt;}
.y1ba{bottom:740.160000pt;}
.y212{bottom:740.480000pt;}
.y111{bottom:741.853333pt;}
.y3e{bottom:742.013333pt;}
.y159{bottom:745.693333pt;}
.y1f7{bottom:746.013333pt;}
.y1de{bottom:748.253333pt;}
.y211{bottom:749.120000pt;}
.y136{bottom:751.613333pt;}
.y175{bottom:752.733333pt;}
.y19c{bottom:754.013333pt;}
.y93{bottom:754.653333pt;}
.yc1{bottom:756.733333pt;}
.y4f{bottom:757.053333pt;}
.y7e{bottom:757.373333pt;}
.y20f{bottom:759.360000pt;}
.y110{bottom:762.013333pt;}
.y3c{bottom:766.333333pt;}
.yeb{bottom:766.653333pt;}
.y135{bottom:771.773333pt;}
.ye{bottom:772.893333pt;}
.y158{bottom:773.893333pt;}
.y92{bottom:774.213333pt;}
.y19b{bottom:774.373333pt;}
.yc0{bottom:776.933333pt;}
.y1dd{bottom:779.013333pt;}
.y4e{bottom:781.893333pt;}
.y10f{bottom:782.373333pt;}
.y134{bottom:792.133333pt;}
.yd{bottom:793.253333pt;}
.y91{bottom:793.893333pt;}
.y19a{bottom:794.533333pt;}
.ybf{bottom:797.253333pt;}
.yea{bottom:798.373333pt;}
.y4d{bottom:798.693333pt;}
.y157{bottom:802.213333pt;}
.y10e{bottom:802.533333pt;}
.y1dc{bottom:809.413333pt;}
.y133{bottom:812.293333pt;}
.yc{bottom:813.413333pt;}
.y90{bottom:813.573333pt;}
.y199{bottom:814.853333pt;}
.y4c{bottom:815.653333pt;}
.ye9{bottom:816.613333pt;}
.ybe{bottom:817.413333pt;}
.y3b{bottom:819.333333pt;}
.y156{bottom:822.373333pt;}
.y10d{bottom:822.853333pt;}
.y132{bottom:832.613333pt;}
.y8f{bottom:833.253333pt;}
.y198{bottom:835.013333pt;}
.ye8{bottom:836.933333pt;}
.yb{bottom:837.253333pt;}
.y4b{bottom:841.253333pt;}
.y174{bottom:841.733333pt;}
.y155{bottom:842.693333pt;}
.y10c{bottom:843.013333pt;}
.y1db{bottom:845.093333pt;}
.ybd{bottom:846.533333pt;}
.y3a{bottom:852.773333pt;}
.y8e{bottom:852.933333pt;}
.y197{bottom:855.333333pt;}
.ye7{bottom:857.413333pt;}
.y154{bottom:862.853333pt;}
.y10b{bottom:863.333333pt;}
.ybc{bottom:864.773333pt;}
.y4a{bottom:869.573333pt;}
.y173{bottom:869.893333pt;}
.ya{bottom:870.533333pt;}
.y8d{bottom:872.613333pt;}
.y1da{bottom:873.413333pt;}
.y196{bottom:875.493333pt;}
.ye6{bottom:877.733333pt;}
.y39{bottom:880.613333pt;}
.y131{bottom:881.093333pt;}
.y153{bottom:883.333333pt;}
.y10a{bottom:883.493333pt;}
.ybb{bottom:885.253333pt;}
.y172{bottom:890.213333pt;}
.y8c{bottom:892.293333pt;}
.y1d9{bottom:893.573333pt;}
.y195{bottom:895.813333pt;}
.y49{bottom:897.733333pt;}
.ye5{bottom:898.053333pt;}
.y130{bottom:901.253333pt;}
.y9{bottom:903.813333pt;}
.yba{bottom:905.573333pt;}
.y38{bottom:908.933333pt;}
.y171{bottom:910.373333pt;}
.y8b{bottom:911.973333pt;}
.y1d8{bottom:913.893333pt;}
.ye4{bottom:918.373333pt;}
.y12f{bottom:921.573333pt;}
.y109{bottom:923.973333pt;}
.y48{bottom:925.733333pt;}
.yb9{bottom:926.053333pt;}
.y37{bottom:929.093333pt;}
.y89{bottom:931.653333pt;}
.y1f6{bottom:931.973333pt;}
.y1d7{bottom:934.053333pt;}
.y8{bottom:936.933333pt;}
.y170{bottom:938.693333pt;}
.ye3{bottom:938.853333pt;}
.y108{bottom:944.293333pt;}
.yb8{bottom:946.373333pt;}
.y12e{bottom:949.733333pt;}
.y194{bottom:952.293333pt;}
.y47{bottom:953.733333pt;}
.y1d6{bottom:954.373333pt;}
.y36{bottom:957.413333pt;}
.ye2{bottom:959.173333pt;}
.y88{bottom:963.653333pt;}
.yb7{bottom:966.853333pt;}
.y7{bottom:970.213333pt;}
.y107{bottom:972.453333pt;}
.y1d5{bottom:974.533333pt;}
.y12d{bottom:978.853333pt;}
.y46{bottom:982.373333pt;}
.y35{bottom:985.253333pt;}
.yb6{bottom:987.173333pt;}
.y16f{bottom:988.133333pt;}
.y87{bottom:990.213333pt;}
.ye1{bottom:992.773333pt;}
.y6{bottom:1003.493333pt;}
.y1d4{bottom:1005.413333pt;}
.yb4{bottom:1007.653333pt;}
.y62{bottom:1007.813333pt;}
.y12c{bottom:1010.373333pt;}
.y86{bottom:1012.960000pt;}
.y34{bottom:1013.280000pt;}
.y2d{bottom:1055.360000pt;}
.y30{bottom:1058.080000pt;}
.y5d{bottom:1069.280000pt;}
.y5a{bottom:1077.920000pt;}
.y4{bottom:1088.160000pt;}
.h82{height:9.760000pt;}
.h2b{height:18.880000pt;}
.h28{height:19.040000pt;}
.h2f{height:19.200000pt;}
.h30{height:19.232000pt;}
.h80{height:19.520000pt;}
.h81{height:19.552000pt;}
.h2d{height:19.680000pt;}
.h2e{height:19.712000pt;}
.h2c{height:19.840000pt;}
.h49{height:20.000000pt;}
.h4e{height:20.032000pt;}
.h3a{height:20.160000pt;}
.h37{height:20.320000pt;}
.h90{height:20.480000pt;}
.h8e{height:20.640000pt;}
.h8f{height:20.672000pt;}
.h48{height:22.218750pt;}
.h1e{height:23.520000pt;}
.h1c{height:23.680000pt;}
.h1f{height:23.840000pt;}
.h74{height:24.000000pt;}
.h4b{height:24.187500pt;}
.h68{height:25.440000pt;}
.h8b{height:27.200000pt;}
.h31{height:27.520000pt;}
.h34{height:27.552000pt;}
.h35{height:28.320000pt;}
.h50{height:29.280000pt;}
.h73{height:29.312000pt;}
.h51{height:29.440000pt;}
.h75{height:29.472000pt;}
.h9d{height:30.560000pt;}
.h4d{height:31.828125pt;}
.h46{height:32.765625pt;}
.h6e{height:32.800000pt;}
.h6f{height:33.600000pt;}
.h72{height:36.512000pt;}
.h99{height:36.832000pt;}
.h1b{height:37.472000pt;}
.h9b{height:37.600000pt;}
.h70{height:37.792000pt;}
.h5d{height:39.040000pt;}
.h5a{height:39.200000pt;}
.h18{height:39.680000pt;}
.h71{height:39.840000pt;}
.h19{height:39.943750pt;}
.h4c{height:40.000000pt;}
.h7e{height:40.026667pt;}
.h4f{height:40.032000pt;}
.h39{height:40.480000pt;}
.hb{height:42.240000pt;}
.ha{height:43.520000pt;}
.ha1{height:44.160000pt;}
.h44{height:44.192000pt;}
.ha2{height:45.440000pt;}
.h20{height:46.400000pt;}
.h60{height:46.720000pt;}
.h40{height:47.218750pt;}
.h5c{height:47.232000pt;}
.h15{height:47.552000pt;}
.h16{height:47.680000pt;}
.h3d{height:47.742188pt;}
.h3e{height:47.869500pt;}
.h3{height:48.000000pt;}
.h6{height:48.125000pt;}
.h14{height:48.221250pt;}
.h7b{height:48.832000pt;}
.h7a{height:48.960000pt;}
.h47{height:49.148438pt;}
.hc{height:49.280000pt;}
.h29{height:49.766250pt;}
.h17{height:49.774063pt;}
.h7d{height:49.952000pt;}
.h59{height:50.080000pt;}
.h58{height:50.880000pt;}
.h2a{height:51.031250pt;}
.h6b{height:52.480000pt;}
.h3f{height:52.834688pt;}
.ha4{height:52.960000pt;}
.ha0{height:53.312000pt;}
.h77{height:54.390938pt;}
.h4{height:54.912000pt;}
.h62{height:55.040000pt;}
.h27{height:55.171250pt;}
.h43{height:55.226667pt;}
.h5f{height:55.360000pt;}
.h66{height:55.712000pt;}
.h7c{height:56.000000pt;}
.h57{height:56.192000pt;}
.h1d{height:56.306250pt;}
.h65{height:56.480000pt;}
.h63{height:56.832000pt;}
.h88{height:58.560000pt;}
.h89{height:58.592000pt;}
.h9f{height:59.520000pt;}
.h9{height:59.968750pt;}
.h54{height:60.000000pt;}
.h56{height:60.032000pt;}
.h4a{height:60.640000pt;}
.h38{height:60.672000pt;}
.h9c{height:60.800000pt;}
.h36{height:61.299063pt;}
.h3b{height:61.459062pt;}
.h6d{height:61.952000pt;}
.h9a{height:63.200000pt;}
.h22{height:63.552000pt;}
.h33{height:63.656250pt;}
.h23{height:63.964688pt;}
.hf{height:64.006250pt;}
.h86{height:64.352000pt;}
.h1a{height:64.506667pt;}
.ha3{height:64.640000pt;}
.h8c{height:64.672000pt;}
.h84{height:64.992000pt;}
.h76{height:65.120000pt;}
.h5e{height:65.472000pt;}
.h32{height:65.531250pt;}
.h8a{height:65.920000pt;}
.h96{height:66.112000pt;}
.h87{height:68.320000pt;}
.h78{height:68.352000pt;}
.h24{height:72.140625pt;}
.h25{height:72.187500pt;}
.h98{height:73.600000pt;}
.h64{height:74.560000pt;}
.h21{height:74.586667pt;}
.h6c{height:74.912000pt;}
.h83{height:75.040000pt;}
.h92{height:75.360000pt;}
.h61{height:75.872000pt;}
.h79{height:80.000000pt;}
.h55{height:80.032000pt;}
.h5{height:80.160000pt;}
.h97{height:81.440000pt;}
.h8d{height:81.466667pt;}
.h95{height:81.920000pt;}
.h7f{height:84.666667pt;}
.h85{height:84.800000pt;}
.h94{height:84.992000pt;}
.h5b{height:88.032000pt;}
.h45{height:92.826667pt;}
.h11{height:96.250000pt;}
.h7{height:104.160000pt;}
.h91{height:105.312000pt;}
.h6a{height:119.200000pt;}
.h93{height:119.392000pt;}
.h8{height:119.937500pt;}
.h10{height:137.920000pt;}
.he{height:138.906667pt;}
.h67{height:141.120000pt;}
.hd{height:144.375000pt;}
.h52{height:164.826667pt;}
.h9e{height:169.466667pt;}
.h69{height:197.946667pt;}
.h26{height:215.226667pt;}
.h53{height:216.546667pt;}
.h3c{height:287.840000pt;}
.h13{height:324.640000pt;}
.h12{height:393.120000pt;}
.h41{height:793.760000pt;}
.h42{height:794.000000pt;}
.h2{height:899.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3d{width:27.712000pt;}
.w44{width:30.560000pt;}
.w4a{width:30.720000pt;}
.w2f{width:31.360000pt;}
.w45{width:34.112000pt;}
.w30{width:34.912000pt;}
.w4c{width:36.960000pt;}
.w3a{width:37.120000pt;}
.w46{width:37.152000pt;}
.w42{width:37.280000pt;}
.w3f{width:37.440000pt;}
.w3c{width:37.600000pt;}
.w32{width:37.760000pt;}
.w34{width:37.792000pt;}
.w33{width:37.920000pt;}
.w40{width:46.400000pt;}
.w41{width:46.560000pt;}
.w49{width:46.592000pt;}
.w47{width:46.720000pt;}
.w48{width:46.752000pt;}
.w3e{width:46.880000pt;}
.w31{width:47.200000pt;}
.w36{width:47.232000pt;}
.w2d{width:47.360000pt;}
.w35{width:47.392000pt;}
.w43{width:56.000000pt;}
.w4e{width:56.032000pt;}
.w2e{width:56.640000pt;}
.w4d{width:56.672000pt;}
.w50{width:56.800000pt;}
.w4f{width:56.832000pt;}
.w1a{width:71.392000pt;}
.w1c{width:76.512000pt;}
.w1e{width:77.472000pt;}
.w1b{width:93.440000pt;}
.w1d{width:94.240000pt;}
.w13{width:103.392000pt;}
.w1f{width:105.312000pt;}
.w14{width:112.640000pt;}
.w39{width:112.832000pt;}
.w38{width:122.080000pt;}
.w4b{width:122.272000pt;}
.w19{width:140.320000pt;}
.w11{width:149.600000pt;}
.w20{width:149.626667pt;}
.w2a{width:150.560000pt;}
.w16{width:150.586667pt;}
.wd{width:150.746667pt;}
.w2c{width:160.666667pt;}
.w21{width:188.026667pt;}
.w23{width:199.706667pt;}
.w24{width:199.866667pt;}
.w2b{width:247.866667pt;}
.w17{width:247.906667pt;}
.w10{width:248.826667pt;}
.wf{width:248.866667pt;}
.w12{width:264.706667pt;}
.w22{width:292.346667pt;}
.we{width:305.626667pt;}
.w37{width:377.346667pt;}
.w3b{width:424.706667pt;}
.w8{width:434.973333pt;}
.w29{width:460.706667pt;}
.w15{width:460.733333pt;}
.wc{width:468.253333pt;}
.w25{width:480.000000pt;}
.w7{width:610.400000pt;}
.w18{width:638.653333pt;}
.w2{width:663.040000pt;}
.w9{width:678.533333pt;}
.wb{width:702.080000pt;}
.wa{width:733.440000pt;}
.w6{width:734.880000pt;}
.w5{width:736.160000pt;}
.w3{width:747.040000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w28{width:1122.559983pt;}
.w26{width:1122.560000pt;}
.w27{width:1122.666667pt;}
.x63{left:-5.280000pt;}
.x0{left:0.000000pt;}
.x62{left:0.960000pt;}
.x45{left:2.080000pt;}
.x5f{left:3.680000pt;}
.x64{left:4.960000pt;}
.x67{left:5.920000pt;}
.x1b{left:6.880000pt;}
.x60{left:8.000000pt;}
.x2{left:9.786667pt;}
.x29{left:11.080000pt;}
.x2b{left:12.160000pt;}
.x30{left:13.640000pt;}
.x18{left:14.720000pt;}
.x4b{left:15.680000pt;}
.x68{left:16.640000pt;}
.x32{left:18.080000pt;}
.x47{left:19.520000pt;}
.x66{left:22.400000pt;}
.x49{left:23.520000pt;}
.x70{left:24.840000pt;}
.x2e{left:26.560000pt;}
.x2c{left:28.200000pt;}
.x3c{left:29.344000pt;}
.x2d{left:30.240000pt;}
.x2f{left:32.040000pt;}
.x31{left:34.440000pt;}
.x33{left:36.320000pt;}
.x3a{left:43.040000pt;}
.x3{left:46.720000pt;}
.x42{left:47.999983pt;}
.x25{left:50.080000pt;}
.x39{left:52.133333pt;}
.xb{left:54.080000pt;}
.x11{left:57.280000pt;}
.x3f{left:60.226667pt;}
.x3b{left:66.306667pt;}
.x65{left:67.200000pt;}
.xf{left:70.554667pt;}
.x12{left:72.000000pt;}
.x7{left:80.511988pt;}
.xe{left:81.952000pt;}
.x8{left:85.471988pt;}
.x27{left:92.512000pt;}
.x5{left:96.031988pt;}
.x5d{left:104.960000pt;}
.x10{left:114.074667pt;}
.x1{left:130.720000pt;}
.x5e{left:132.992000pt;}
.x3e{left:137.346667pt;}
.xc{left:139.200000pt;}
.x36{left:146.106667pt;}
.x43{left:158.746667pt;}
.x5c{left:166.266667pt;}
.xd{left:178.746667pt;}
.x48{left:180.186667pt;}
.x41{left:195.933333pt;}
.x23{left:206.746667pt;}
.x4a{left:227.546667pt;}
.x40{left:230.493333pt;}
.x3d{left:233.533333pt;}
.x28{left:237.626667pt;}
.x1c{left:246.906667pt;}
.x17{left:252.066667pt;}
.x9{left:263.106655pt;}
.xa{left:280.706655pt;}
.x19{left:284.066667pt;}
.x35{left:285.346667pt;}
.x20{left:296.386655pt;}
.x2a{left:309.666667pt;}
.x22{left:310.946655pt;}
.x14{left:315.586667pt;}
.x13{left:321.666655pt;}
.x1a{left:332.866655pt;}
.x4c{left:350.466667pt;}
.x46{left:358.786667pt;}
.x4{left:393.506655pt;}
.x21{left:396.866655pt;}
.x61{left:397.986667pt;}
.x6{left:403.106655pt;}
.x26{left:406.786667pt;}
.x4d{left:435.426667pt;}
.x4e{left:473.186667pt;}
.x37{left:497.373333pt;}
.x6a{left:510.946667pt;}
.x1d{left:512.253333pt;}
.x4f{left:520.386667pt;}
.x34{left:547.613333pt;}
.x6b{left:548.866667pt;}
.x50{left:558.306667pt;}
.x69{left:561.346650pt;}
.x38{left:577.373322pt;}
.x44{left:589.853333pt;}
.x51{left:596.093333pt;}
.x1e{left:616.293333pt;}
.x16{left:625.413333pt;}
.x52{left:633.853333pt;}
.x24{left:637.893333pt;}
.x1f{left:638.853322pt;}
.x15{left:640.933322pt;}
.x53{left:671.613333pt;}
.x54{left:718.973333pt;}
.x71{left:756.733333pt;}
.x6c{left:766.173333pt;}
.x55{left:775.613333pt;}
.x72{left:794.493333pt;}
.x6d{left:804.093333pt;}
.x56{left:813.373333pt;}
.x73{left:851.333333pt;}
.x57{left:860.773333pt;}
.x74{left:898.533333pt;}
.x58{left:907.973333pt;}
.x59{left:955.333333pt;}
.x5a{left:1002.533333pt;}
.x6e{left:1011.973333pt;}
.x5b{left:1049.733333pt;}
.x6f{left:1059.173333pt;}
}




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