
    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_52ae7a704535fc5c569227f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_05d589a8682bf01c8e2d2d8f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.980957;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2e6bf82651c12872b40ad44c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3a39d838e6c35c37e8b354a3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e03533a6f6dabee92d389ba5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_7477cf7d273b1c34ccbf6360.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_64ed03aada481286e9236948.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921875;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_1c66e73c795940c85c244c11.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.980957;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_21c276b25d3f975cda1fe994.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.927246;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_1853793ea1907337b4874b7d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9acfa76b4b725eb5c521fc15.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.783691;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_9dfa0b7cdfa25a5dbb681c64.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.104004;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_87a06558a78c4a5f2da97cee.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d685d63c506079a420f7305e.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_1e869a2125a5288017e837c7.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.860352;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_788e3cc5e19113c5f4c2b626.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.921875;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_36bb1d654a4595384c30a9d9.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.727539;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_4dfcd861a7ebdbe2fde27f4b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.904297;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_528f8081c413e8c566c4ebf5.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_7a98b301550f5116cfe00647.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.859375;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.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);}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vc{vertical-align:-33.120000px;}
.v4{vertical-align:-14.400000px;}
.va{vertical-align:-11.520000px;}
.v1{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.320000px;}
.v2{vertical-align:8.640000px;}
.v6{vertical-align:14.400000px;}
.v5{vertical-align:17.280000px;}
.vb{vertical-align:33.120000px;}
.v8{vertical-align:36.000000px;}
.v7{vertical-align:41.760000px;}
.v9{vertical-align:47.520000px;}
.ls26{letter-spacing:-2.736000px;}
.ls35{letter-spacing:-1.890000px;}
.ls2a{letter-spacing:-1.728000px;}
.ls9{letter-spacing:-1.584000px;}
.ls8{letter-spacing:-1.440000px;}
.lse{letter-spacing:-1.296000px;}
.ls3b{letter-spacing:-1.134000px;}
.ls4e{letter-spacing:-1.086000px;}
.ls25{letter-spacing:-0.936000px;}
.ls13{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.648000px;}
.ls31{letter-spacing:-0.630000px;}
.ls3a{letter-spacing:-0.525600px;}
.ls17{letter-spacing:-0.504000px;}
.ls42{letter-spacing:-0.496200px;}
.ls43{letter-spacing:-0.423600px;}
.ls40{letter-spacing:-0.382800px;}
.ls2f{letter-spacing:-0.303576px;}
.ls5{letter-spacing:-0.288000px;}
.ls4a{letter-spacing:-0.234600px;}
.ls36{letter-spacing:-0.151788px;}
.lsb{letter-spacing:-0.144000px;}
.ls3d{letter-spacing:-0.043200px;}
.ls0{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.012000px;}
.ls2d{letter-spacing:0.054720px;}
.ls34{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.120000px;}
.ls32{letter-spacing:0.126720px;}
.ls6{letter-spacing:0.144000px;}
.ls3f{letter-spacing:0.187200px;}
.ls3e{letter-spacing:0.207600px;}
.lsc{letter-spacing:0.288000px;}
.ls3c{letter-spacing:0.299520px;}
.ls2c{letter-spacing:0.332640px;}
.ls4f{letter-spacing:0.354000px;}
.ls2b{letter-spacing:0.360000px;}
.ls4b{letter-spacing:0.388800px;}
.ls30{letter-spacing:0.455363px;}
.ls24{letter-spacing:0.504000px;}
.ls39{letter-spacing:0.612000px;}
.ls2{letter-spacing:0.630000px;}
.lsa{letter-spacing:0.648000px;}
.ls1f{letter-spacing:0.660000px;}
.ls49{letter-spacing:0.665280px;}
.ls2e{letter-spacing:0.696000px;}
.lsd{letter-spacing:0.720000px;}
.ls45{letter-spacing:0.792000px;}
.ls47{letter-spacing:0.906000px;}
.ls12{letter-spacing:1.152000px;}
.ls46{letter-spacing:1.267200px;}
.ls44{letter-spacing:1.296000px;}
.lsf{letter-spacing:1.440000px;}
.ls28{letter-spacing:1.512000px;}
.ls10{letter-spacing:1.584000px;}
.ls33{letter-spacing:1.728000px;}
.ls14{letter-spacing:2.160000px;}
.ls38{letter-spacing:2.520000px;}
.ls1a{letter-spacing:3.600000px;}
.ls16{letter-spacing:5.349600px;}
.ls29{letter-spacing:6.624000px;}
.ls27{letter-spacing:7.920000px;}
.ls23{letter-spacing:12.240000px;}
.ls1d{letter-spacing:15.120000px;}
.ls4{letter-spacing:16.560000px;}
.ls41{letter-spacing:18.000000px;}
.ls22{letter-spacing:20.626560px;}
.ls1e{letter-spacing:22.320000px;}
.ls20{letter-spacing:23.184000px;}
.ls48{letter-spacing:23.760000px;}
.ls21{letter-spacing:27.987840px;}
.ls37{letter-spacing:28.944000px;}
.ls19{letter-spacing:31.824000px;}
.ls1b{letter-spacing:44.784000px;}
.ls3{letter-spacing:54.864000px;}
.ls15{letter-spacing:97.272000px;}
.ls1c{letter-spacing:158.544000px;}
.ls4c{letter-spacing:163.025280px;}
.ls4d{letter-spacing:164.465280px;}
.ls1{letter-spacing:846.312000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.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(192,0,0);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;}
}
.ws25{word-spacing:-83.520000px;}
.ws14{word-spacing:-75.893905px;}
.ws3{word-spacing:-72.000000px;}
.ws2b{word-spacing:-66.240000px;}
.ws1a{word-spacing:-60.480000px;}
.ws19{word-spacing:-54.720000px;}
.ws1f{word-spacing:-48.600000px;}
.ws35{word-spacing:-24.108480px;}
.wse{word-spacing:-23.719680px;}
.ws27{word-spacing:-21.553869px;}
.ws2a{word-spacing:-21.402081px;}
.ws26{word-spacing:-21.250293px;}
.ws20{word-spacing:-20.448000px;}
.ws22{word-spacing:-19.944000px;}
.wsc{word-spacing:-19.584000px;}
.ws16{word-spacing:-19.440000px;}
.ws32{word-spacing:-19.296000px;}
.ws11{word-spacing:-19.152000px;}
.ws33{word-spacing:-18.792000px;}
.ws9{word-spacing:-18.720000px;}
.ws6{word-spacing:-18.648000px;}
.ws1d{word-spacing:-18.504000px;}
.ws1e{word-spacing:-18.360000px;}
.ws8{word-spacing:-18.288000px;}
.wsb{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws12{word-spacing:-17.712000px;}
.ws15{word-spacing:-17.496000px;}
.wsd{word-spacing:-17.352000px;}
.wsf{word-spacing:-17.176320px;}
.ws21{word-spacing:-17.064000px;}
.wsa{word-spacing:-16.704000px;}
.ws17{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.416000px;}
.ws2e{word-spacing:-15.748080px;}
.ws2f{word-spacing:-15.727680px;}
.ws2d{word-spacing:-15.497280px;}
.ws2c{word-spacing:-15.426000px;}
.ws37{word-spacing:-15.324240px;}
.ws1c{word-spacing:-15.264000px;}
.ws10{word-spacing:-15.120000px;}
.ws1{word-spacing:-14.310000px;}
.ws36{word-spacing:-13.884240px;}
.ws2{word-spacing:-13.680000px;}
.ws28{word-spacing:-13.050000px;}
.ws29{word-spacing:-12.600000px;}
.ws4{word-spacing:-12.240000px;}
.ws30{word-spacing:-11.983920px;}
.ws13{word-spacing:-11.880000px;}
.ws34{word-spacing:-11.645400px;}
.ws24{word-spacing:-11.435520px;}
.ws23{word-spacing:-10.794240px;}
.ws18{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws1b{word-spacing:0.216000px;}
.ws31{word-spacing:309.908160px;}
._21{margin-left:-17.333280px;}
._1f{margin-left:-15.826080px;}
._1c{margin-left:-14.532960px;}
._1d{margin-left:-13.082400px;}
._22{margin-left:-11.331840px;}
._20{margin-left:-10.224000px;}
._19{margin-left:-8.732640px;}
._1a{margin-left:-7.020000px;}
._1e{margin-left:-5.910720px;}
._1b{margin-left:-4.446240px;}
._d{margin-left:-3.287040px;}
._3{margin-left:-2.226720px;}
._2{margin-left:-1.092480px;}
._1{width:1.075680px;}
._0{width:2.916480px;}
._c{width:4.559520px;}
._13{width:5.721120px;}
._b{width:6.851040px;}
._e{width:8.490720px;}
._10{width:9.551040px;}
._17{width:10.566720px;}
._f{width:11.663040px;}
._14{width:12.766080px;}
._9{width:14.276160px;}
._8{width:15.356640px;}
._a{width:16.884960px;}
._2c{width:18.412320px;}
._4{width:19.451520px;}
._5{width:20.520000px;}
._16{width:22.279200px;}
._15{width:23.699520px;}
._23{width:25.049760px;}
._11{width:26.241600px;}
._12{width:27.360960px;}
._24{width:28.686720px;}
._30{width:30.094080px;}
._2f{width:31.129440px;}
._2e{width:32.386560px;}
._25{width:33.480000px;}
._6{width:35.207040px;}
._7{width:36.613440px;}
._34{width:39.240000px;}
._33{width:40.734720px;}
._32{width:42.407040px;}
._35{width:43.837920px;}
._39{width:45.927360px;}
._29{width:47.370240px;}
._27{width:48.687840px;}
._28{width:50.404320px;}
._36{width:52.224960px;}
._37{width:53.363040px;}
._2d{width:70.158720px;}
._2b{width:85.747200px;}
._31{width:88.972800px;}
._2a{width:94.711680px;}
._38{width:159.697728px;}
._26{width:843.432000px;}
._18{width:846.312000px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:36.000000px;}
.fsa{font-size:41.760000px;}
.fs6{font-size:47.520000px;}
.fs8{font-size:50.400000px;}
.fs3{font-size:54.720000px;}
.fs5{font-size:60.480000px;}
.fsb{font-size:60.624000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:75.893905px;}
.fs2{font-size:83.520000px;}
.fs1{font-size:119.520000px;}
.fsd{font-size:132.480000px;}
.fsc{font-size:216.000000px;}
.y2{bottom:-31.360500px;}
.y2f0{bottom:-12.615000px;}
.y0{bottom:0.000000px;}
.y2f9{bottom:3.225000px;}
.y37d{bottom:3.240000px;}
.y2fd{bottom:3.585000px;}
.y301{bottom:3.600000px;}
.y2fb{bottom:3.945000px;}
.y2ff{bottom:3.960000px;}
.y3a2{bottom:4.315500px;}
.y4{bottom:4.320000px;}
.y407{bottom:4.665000px;}
.y3a1{bottom:4.675500px;}
.y3e7{bottom:5.395500px;}
.y35c{bottom:6.825000px;}
.y37a{bottom:6.829500px;}
.y367{bottom:6.840000px;}
.y381{bottom:6.855000px;}
.y366{bottom:6.870000px;}
.y3ab{bottom:7.545000px;}
.y3ca{bottom:7.555500px;}
.y3b8{bottom:7.560000px;}
.y3cd{bottom:7.575000px;}
.y3b1{bottom:7.590000px;}
.y409{bottom:7.905000px;}
.y2f1{bottom:9.030000px;}
.y37c{bottom:10.440000px;}
.y359{bottom:10.785000px;}
.y3a9{bottom:10.800000px;}
.y291{bottom:11.505000px;}
.y299{bottom:11.520000px;}
.y15d{bottom:11.865000px;}
.y16a{bottom:11.880000px;}
.yf0{bottom:12.225000px;}
.yfa{bottom:12.240000px;}
.y15a{bottom:12.255000px;}
.y224{bottom:12.270000px;}
.y220{bottom:12.585000px;}
.y105{bottom:12.600000px;}
.y15b{bottom:12.615000px;}
.yf6{bottom:12.960000px;}
.y164{bottom:13.665000px;}
.y24d{bottom:14.760000px;}
.y6d{bottom:15.105000px;}
.y74{bottom:15.120000px;}
.y68{bottom:15.465000px;}
.y7b{bottom:15.469500px;}
.y66{bottom:15.480000px;}
.y425{bottom:15.840000px;}
.y42b{bottom:16.195500px;}
.y412{bottom:16.200000px;}
.y415{bottom:16.230000px;}
.y419{bottom:16.245000px;}
.y2f8{bottom:16.545000px;}
.y40f{bottom:16.560000px;}
.y424{bottom:16.950000px;}
.y2f4{bottom:17.625000px;}
.y42a{bottom:17.995500px;}
.y24e{bottom:18.000000px;}
.y35a{bottom:18.015000px;}
.y414{bottom:18.030000px;}
.y418{bottom:18.045000px;}
.y2e6{bottom:18.345000px;}
.y411{bottom:18.360000px;}
.y2bd{bottom:18.705000px;}
.y278{bottom:18.720000px;}
.y423{bottom:18.750000px;}
.y428{bottom:18.765000px;}
.y109{bottom:19.440000px;}
.y26a{bottom:20.145000px;}
.y303{bottom:20.160000px;}
.y250{bottom:20.175000px;}
.y255{bottom:20.190000px;}
.y252{bottom:20.505000px;}
.y267{bottom:20.520000px;}
.yfd{bottom:20.550000px;}
.y3fb{bottom:23.400000px;}
.y327{bottom:23.865000px;}
.y2f5{bottom:24.105000px;}
.y406{bottom:24.855000px;}
.y2bc{bottom:25.230000px;}
.y295{bottom:25.545000px;}
.y27a{bottom:25.560000px;}
.y298{bottom:25.590000px;}
.y296{bottom:25.905000px;}
.y29b{bottom:25.920000px;}
.y29a{bottom:25.950000px;}
.yef{bottom:26.985000px;}
.y21d{bottom:27.000000px;}
.yf9{bottom:27.030000px;}
.y169{bottom:27.360000px;}
.y161{bottom:27.390000px;}
.y166{bottom:27.705000px;}
.y16b{bottom:27.720000px;}
.y27c{bottom:27.735000px;}
.y162{bottom:27.750000px;}
.y167{bottom:28.065000px;}
.y2db{bottom:28.080000px;}
.y41d{bottom:28.440000px;}
.y43d{bottom:28.785000px;}
.y2f7{bottom:29.865000px;}
.y104{bottom:29.880000px;}
.yf5{bottom:30.240000px;}
.y2f3{bottom:30.945000px;}
.y277{bottom:32.040000px;}
.y445{bottom:32.790000px;}
.y108{bottom:34.200000px;}
.yf3{bottom:34.560000px;}
.y24b{bottom:34.920000px;}
.y101{bottom:36.720000px;}
.y2dd{bottom:37.080000px;}
.y2e5{bottom:37.425000px;}
.y2da{bottom:37.440000px;}
.yfc{bottom:37.470000px;}
.y279{bottom:38.880000px;}
.y41c{bottom:39.240000px;}
.yee{bottom:41.745000px;}
.y17{bottom:41.760000px;}
.yf8{bottom:41.790000px;}
.y3fa{bottom:42.480000px;}
.y2f6{bottom:43.185000px;}
.y16e{bottom:43.200000px;}
.y16f{bottom:43.560000px;}
.y170{bottom:44.280000px;}
.y405{bottom:45.015000px;}
.y103{bottom:47.160000px;}
.yf4{bottom:47.520000px;}
.y107{bottom:48.960000px;}
.yf2{bottom:49.320000px;}
.y100{bottom:51.480000px;}
.y43c{bottom:54.345000px;}
.yfb{bottom:54.750000px;}
.y223{bottom:56.190000px;}
.y226{bottom:56.505000px;}
.y21e{bottom:56.520000px;}
.yf7{bottom:56.550000px;}
.y326{bottom:59.910000px;}
.y3f9{bottom:61.920000px;}
.y444{bottom:63.750000px;}
.y102{bottom:64.440000px;}
.y404{bottom:65.175000px;}
.yff{bottom:66.240000px;}
.y222{bottom:70.950000px;}
.y1{bottom:78.880500px;}
.y324{bottom:81.360000px;}
.y3f8{bottom:81.390000px;}
.y403{bottom:84.975000px;}
.y318{bottom:100.830000px;}
.y402{bottom:105.135000px;}
.y443{bottom:112.710000px;}
.y429{bottom:119.200500px;}
.y3f7{bottom:119.910000px;}
.y319{bottom:123.690000px;}
.y401{bottom:125.295000px;}
.y40b{bottom:127.480500px;}
.y3c9{bottom:139.000500px;}
.y3f6{bottom:139.350000px;}
.y3e6{bottom:140.440500px;}
.y3a0{bottom:142.600500px;}
.y7a{bottom:142.960500px;}
.y400{bottom:145.500000px;}
.y31a{bottom:146.550000px;}
.y1bb{bottom:147.276000px;}
.y1d1{bottom:147.636000px;}
.yae{bottom:148.356000px;}
.y379{bottom:149.080500px;}
.y149{bottom:149.796000px;}
.y177{bottom:151.590000px;}
.yc2{bottom:153.030000px;}
.y20d{bottom:154.110000px;}
.y28e{bottom:155.190000px;}
.y2ac{bottom:157.710000px;}
.y2ce{bottom:158.430000px;}
.y3f5{bottom:158.790000px;}
.y22f{bottom:161.310000px;}
.y238{bottom:161.670000px;}
.y442{bottom:161.700000px;}
.y3c8{bottom:162.405000px;}
.yd0{bottom:162.750000px;}
.y64{bottom:164.910000px;}
.y3ff{bottom:165.660000px;}
.y427{bottom:165.990000px;}
.y334{bottom:166.710000px;}
.y39f{bottom:166.725000px;}
.y181{bottom:167.070000px;}
.y10f{bottom:168.510000px;}
.yad{bottom:168.870000px;}
.y31b{bottom:169.410000px;}
.y346{bottom:170.670000px;}
.y378{bottom:170.685000px;}
.y131{bottom:171.390000px;}
.y1af{bottom:175.350000px;}
.y1e9{bottom:175.710000px;}
.y265{bottom:176.790000px;}
.y325{bottom:177.510000px;}
.y3f4{bottom:177.870000px;}
.y1ba{bottom:178.230000px;}
.y156{bottom:178.590000px;}
.y2b8{bottom:179.670000px;}
.y13f{bottom:180.390000px;}
.y11f{bottom:180.750000px;}
.y27f{bottom:181.830000px;}
.y198{bottom:182.550000px;}
.y176{bottom:182.910000px;}
.y2e2{bottom:183.630000px;}
.yc1{bottom:184.035000px;}
.y20c{bottom:185.115000px;}
.y63{bottom:185.475000px;}
.y79{bottom:185.490000px;}
.y3fe{bottom:185.820000px;}
.y3c7{bottom:185.850000px;}
.y310{bottom:186.195000px;}
.y90{bottom:187.635000px;}
.y39e{bottom:188.370000px;}
.y2ab{bottom:188.715000px;}
.y3e5{bottom:190.170000px;}
.y31c{bottom:192.270000px;}
.y377{bottom:192.330000px;}
.y237{bottom:192.675000px;}
.y441{bottom:193.020000px;}
.y2cd{bottom:193.395000px;}
.ycf{bottom:193.755000px;}
.y2ed{bottom:194.475000px;}
.y9f{bottom:195.195000px;}
.y439{bottom:196.995000px;}
.y3f3{bottom:197.310000px;}
.y180{bottom:198.435000px;}
.y10e{bottom:199.515000px;}
.yac{bottom:200.235000px;}
.y28d{bottom:201.315000px;}
.y345{bottom:202.035000px;}
.y130{bottom:202.395000px;}
.y43b{bottom:204.570000px;}
.y21b{bottom:204.915000px;}
.y62{bottom:205.995000px;}
.ye6{bottom:206.355000px;}
.y1e8{bottom:206.715000px;}
.y22e{bottom:208.875000px;}
.y48{bottom:209.235000px;}
.y3c6{bottom:209.250000px;}
.y1d0{bottom:209.595000px;}
.y39d{bottom:209.970000px;}
.y249{bottom:210.675000px;}
.y213{bottom:211.395000px;}
.y11e{bottom:211.755000px;}
.y27e{bottom:212.475000px;}
.y197{bottom:213.555000px;}
.y3e4{bottom:213.570000px;}
.y426{bottom:213.915000px;}
.y376{bottom:213.930000px;}
.yc0{bottom:214.995000px;}
.y31d{bottom:215.130000px;}
.y333{bottom:215.715000px;}
.y20b{bottom:216.435000px;}
.y16{bottom:216.795000px;}
.y30f{bottom:217.155000px;}
.y2aa{bottom:220.035000px;}
.y440{bottom:223.980000px;}
.y236{bottom:223.995000px;}
.yce{bottom:224.715000px;}
.y264{bottom:225.795000px;}
.y61{bottom:226.875000px;}
.y155{bottom:227.595000px;}
.y78{bottom:227.970000px;}
.y2b7{bottom:228.675000px;}
.y17f{bottom:229.395000px;}
.y10d{bottom:230.475000px;}
.y1a0{bottom:231.555000px;}
.y39c{bottom:231.570000px;}
.y28c{bottom:232.275000px;}
.y2e1{bottom:232.635000px;}
.y3c5{bottom:232.650000px;}
.y343{bottom:232.995000px;}
.y2ec{bottom:235.155000px;}
.y375{bottom:235.530000px;}
.y3f2{bottom:236.235000px;}
.y8f{bottom:236.595000px;}
.y3e3{bottom:236.970000px;}
.y1ae{bottom:237.315000px;}
.y31e{bottom:237.990000px;}
.y1e7{bottom:238.035000px;}
.y2cc{bottom:239.490000px;}
.y1b9{bottom:240.195000px;}
.y1cf{bottom:240.555000px;}
.y212{bottom:242.355000px;}
.y11d{bottom:242.715000px;}
.y9e{bottom:244.155000px;}
.y33d{bottom:245.955000px;}
.y332{bottom:247.035000px;}
.y60{bottom:247.395000px;}
.y30e{bottom:248.115000px;}
.yab{bottom:249.195000px;}
.y2a9{bottom:250.995000px;}
.y12f{bottom:251.715000px;}
.y438{bottom:252.075000px;}
.y39b{bottom:253.170000px;}
.y21a{bottom:254.235000px;}
.y43f{bottom:254.940000px;}
.y22d{bottom:254.955000px;}
.ye5{bottom:255.315000px;}
.y126{bottom:256.035000px;}
.y3c4{bottom:256.050000px;}
.y374{bottom:257.130000px;}
.y40a{bottom:257.475000px;}
.y47{bottom:258.195000px;}
.y27d{bottom:258.570000px;}
.y248{bottom:259.995000px;}
.y17e{bottom:260.355000px;}
.y3e2{bottom:260.370000px;}
.y20f{bottom:260.715000px;}
.y31f{bottom:260.850000px;}
.y15{bottom:261.435000px;}
.y10c{bottom:261.795000px;}
.y19f{bottom:262.515000px;}
.y196{bottom:262.875000px;}
.y28b{bottom:263.235000px;}
.ybf{bottom:263.955000px;}
.y20a{bottom:265.395000px;}
.y5f{bottom:268.275000px;}
.y1ad{bottom:268.635000px;}
.y1e6{bottom:268.995000px;}
.y2e0{bottom:270.075000px;}
.y77{bottom:270.450000px;}
.y1b8{bottom:271.515000px;}
.y1ce{bottom:271.875000px;}
.y175{bottom:272.955000px;}
.y2cb{bottom:273.330000px;}
.ycd{bottom:274.035000px;}
.y408{bottom:274.410000px;}
.y263{bottom:274.755000px;}
.y39a{bottom:274.770000px;}
.y13e{bottom:275.115000px;}
.y154{bottom:276.555000px;}
.y331{bottom:277.995000px;}
.y32a{bottom:278.355000px;}
.y373{bottom:278.730000px;}
.y30d{bottom:279.435000px;}
.y3c3{bottom:279.450000px;}
.y342{bottom:281.955000px;}
.y320{bottom:283.680000px;}
.y3e1{bottom:283.770000px;}
.y2df{bottom:285.195000px;}
.y8e{bottom:285.555000px;}
.y125{bottom:286.995000px;}
.y5e{bottom:288.795000px;}
.y2b6{bottom:290.955000px;}
.y1e1{bottom:291.315000px;}
.y20e{bottom:292.035000px;}
.y9d{bottom:293.475000px;}
.y195{bottom:293.835000px;}
.y3f1{bottom:294.195000px;}
.y28a{bottom:294.555000px;}
.ybe{bottom:294.915000px;}
.y316{bottom:295.995000px;}
.y209{bottom:296.355000px;}
.y399{bottom:296.370000px;}
.yaa{bottom:298.155000px;}
.y1ac{bottom:299.595000px;}
.y2a8{bottom:299.955000px;}
.y372{bottom:300.330000px;}
.y3fd{bottom:301.410000px;}
.y1b7{bottom:302.475000px;}
.y1cd{bottom:302.835000px;}
.y3c2{bottom:302.850000px;}
.y219{bottom:303.195000px;}
.y235{bottom:303.915000px;}
.ye4{bottom:304.635000px;}
.y11c{bottom:304.995000px;}
.y14{bottom:306.075000px;}
.y422{bottom:306.435000px;}
.y321{bottom:306.540000px;}
.y46{bottom:307.155000px;}
.y3e0{bottom:307.170000px;}
.y437{bottom:307.515000px;}
.y27b{bottom:307.890000px;}
.y247{bottom:308.955000px;}
.y17d{bottom:309.315000px;}
.y5d{bottom:309.675000px;}
.y30c{bottom:310.395000px;}
.y2ca{bottom:310.410000px;}
.y76{bottom:312.945000px;}
.y174{bottom:314.025000px;}
.y2de{bottom:316.185000px;}
.y1e5{bottom:317.985000px;}
.y2b5{bottom:321.945000px;}
.y211{bottom:322.665000px;}
.ycc{bottom:323.025000px;}
.y262{bottom:323.745000px;}
.y194{bottom:324.825000px;}
.y153{bottom:325.545000px;}
.ybd{bottom:326.265000px;}
.y208{bottom:327.345000px;}
.y322{bottom:329.400000px;}
.y12e{bottom:329.865000px;}
.y3df{bottom:330.585000px;}
.y347{bottom:330.945000px;}
.y2dc{bottom:331.665000px;}
.y1b6{bottom:333.825000px;}
.y12c{bottom:334.185000px;}
.y8d{bottom:334.905000px;}
.ye3{bottom:335.625000px;}
.y11b{bottom:335.985000px;}
.y13d{bottom:337.065000px;}
.y45{bottom:338.505000px;}
.y398{bottom:339.585000px;}
.y330{bottom:339.945000px;}
.y10b{bottom:340.305000px;}
.y17c{bottom:340.665000px;}
.y12d{bottom:341.025000px;}
.y289{bottom:341.745000px;}
.y9c{bottom:342.465000px;}
.y371{bottom:343.545000px;}
.y341{bottom:344.265000px;}
.ya9{bottom:347.145000px;}
.y173{bottom:347.505000px;}
.y1ab{bottom:348.585000px;}
.y1e4{bottom:348.945000px;}
.y3c1{bottom:349.665000px;}
.y13{bottom:350.385000px;}
.y218{bottom:352.185000px;}
.y323{bottom:352.260000px;}
.y2b4{bottom:352.905000px;}
.y210{bottom:353.625000px;}
.ycb{bottom:353.985000px;}
.y421{bottom:354.345000px;}
.y261{bottom:355.065000px;}
.y75{bottom:355.425000px;}
.y193{bottom:355.785000px;}
.ybc{bottom:357.225000px;}
.y246{bottom:357.945000px;}
.y207{bottom:358.665000px;}
.y5c{bottom:359.025000px;}
.y30b{bottom:359.385000px;}
.y276{bottom:360.465000px;}
.y397{bottom:361.185000px;}
.y436{bottom:362.625000px;}
.y1cc{bottom:365.145000px;}
.y1b5{bottom:365.865000px;}
.y11a{bottom:366.945000px;}
.y13c{bottom:368.025000px;}
.y315{bottom:369.105000px;}
.y44{bottom:369.465000px;}
.y10a{bottom:370.905000px;}
.y32f{bottom:371.265000px;}
.y17b{bottom:371.625000px;}
.y3c0{bottom:373.065000px;}
.y152{bottom:374.865000px;}
.y3de{bottom:377.385000px;}
.y2c9{bottom:377.745000px;}
.y1aa{bottom:379.545000px;}
.y1e3{bottom:380.265000px;}
.y172{bottom:380.985000px;}
.y396{bottom:382.785000px;}
.y33b{bottom:383.145000px;}
.y8c{bottom:383.865000px;}
.y12b{bottom:384.225000px;}
.ye2{bottom:384.585000px;}
.yca{bottom:384.945000px;}
.y260{bottom:386.025000px;}
.y29e{bottom:386.745000px;}
.y192{bottom:387.105000px;}
.y106{bottom:387.825000px;}
.y329{bottom:389.625000px;}
.y5b{bottom:389.985000px;}
.y30a{bottom:390.345000px;}
.y9b{bottom:391.425000px;}
.y340{bottom:393.225000px;}
.y12{bottom:395.025000px;}
.ya8{bottom:396.465000px;}
.y1b4{bottom:396.825000px;}
.y1cb{bottom:397.185000px;}
.y22c{bottom:397.545000px;}
.y73{bottom:398.265000px;}
.y13b{bottom:399.345000px;}
.y314{bottom:400.065000px;}
.y43{bottom:400.425000px;}
.y3dd{bottom:400.785000px;}
.y217{bottom:401.145000px;}
.y420{bottom:401.505000px;}
.y2b3{bottom:402.225000px;}
.y17a{bottom:402.585000px;}
.y395{bottom:404.385000px;}
.y19e{bottom:404.745000px;}
.ybb{bottom:406.185000px;}
.y245{bottom:406.905000px;}
.y206{bottom:407.625000px;}
.y370{bottom:408.345000px;}
.y2c8{bottom:408.705000px;}
.y1a9{bottom:410.865000px;}
.y2a7{bottom:411.225000px;}
.y33a{bottom:414.105000px;}
.y171{bottom:414.465000px;}
.y12a{bottom:415.185000px;}
.ye1{bottom:415.545000px;}
.yc9{bottom:416.265000px;}
.y25f{bottom:416.985000px;}
.y191{bottom:418.065000px;}
.y22b{bottom:419.505000px;}
.y3bf{bottom:419.865000px;}
.y328{bottom:420.585000px;}
.y5a{bottom:420.945000px;}
.y309{bottom:421.665000px;}
.y151{bottom:423.825000px;}
.y33f{bottom:424.185000px;}
.y394{bottom:425.985000px;}
.ya7{bottom:427.425000px;}
.y1b3{bottom:427.785000px;}
.y1ca{bottom:428.145000px;}
.y148{bottom:429.225000px;}
.y36f{bottom:429.945000px;}
.y13a{bottom:430.305000px;}
.y313{bottom:431.025000px;}
.y42{bottom:431.385000px;}
.y8b{bottom:432.825000px;}
.y2b2{bottom:433.185000px;}
.y179{bottom:433.545000px;}
.y1eb{bottom:434.265000px;}
.y30{bottom:436.065000px;}
.yba{bottom:437.145000px;}
.y244{bottom:438.270000px;}
.y205{bottom:438.630000px;}
.y11{bottom:439.710000px;}
.y2c7{bottom:440.070000px;}
.y9a{bottom:440.430000px;}
.y72{bottom:440.790000px;}
.y1a8{bottom:441.870000px;}
.y2a6{bottom:442.230000px;}
.y32b{bottom:442.590000px;}
.y3be{bottom:443.310000px;}
.y339{bottom:445.110000px;}
.y129{bottom:446.190000px;}
.ye0{bottom:446.910000px;}
.yc8{bottom:447.270000px;}
.y393{bottom:447.630000px;}
.y25e{bottom:447.990000px;}
.y190{bottom:449.070000px;}
.y216{bottom:450.510000px;}
.y23e{bottom:451.590000px;}
.y59{bottom:452.310000px;}
.y308{bottom:452.670000px;}
.y22a{bottom:453.750000px;}
.y275{bottom:454.470000px;}
.yfe{bottom:458.070000px;}
.y1b2{bottom:459.150000px;}
.y1c9{bottom:459.510000px;}
.y147{bottom:460.230000px;}
.y41{bottom:462.390000px;}
.y139{bottom:462.750000px;}
.y2b1{bottom:464.190000px;}
.y1e0{bottom:464.910000px;}
.y1ea{bottom:465.270000px;}
.y3bd{bottom:466.710000px;}
.y2f{bottom:467.070000px;}
.y2d9{bottom:467.430000px;}
.y288{bottom:468.150000px;}
.y33c{bottom:468.510000px;}
.y243{bottom:469.230000px;}
.y204{bottom:469.590000px;}
.y2c6{bottom:471.030000px;}
.y150{bottom:472.830000px;}
.y1f4{bottom:473.190000px;}
.ya6{bottom:476.430000px;}
.y234{bottom:477.150000px;}
.ydf{bottom:477.870000px;}
.y119{bottom:478.230000px;}
.y25d{bottom:479.310000px;}
.y18f{bottom:480.030000px;}
.y312{bottom:480.390000px;}
.y178{bottom:481.110000px;}
.y8a{bottom:481.830000px;}
.y23d{bottom:482.910000px;}
.y58{bottom:483.270000px;}
.y10{bottom:484.350000px;}
.y274{bottom:485.430000px;}
.yb9{bottom:486.510000px;}
.y99{bottom:489.750000px;}
.y1b1{bottom:490.110000px;}
.y1c8{bottom:490.470000px;}
.y1a7{bottom:490.830000px;}
.y146{bottom:491.190000px;}
.y40{bottom:493.710000px;}
.y41f{bottom:494.070000px;}
.y3dc{bottom:494.430000px;}
.y36e{bottom:494.790000px;}
.y2b0{bottom:495.150000px;}
.y32e{bottom:495.510000px;}
.y1df{bottom:495.870000px;}
.yc7{bottom:496.230000px;}
.y29d{bottom:496.590000px;}
.y19d{bottom:498.030000px;}
.y287{bottom:499.110000px;}
.y215{bottom:499.470000px;}
.y229{bottom:499.830000px;}
.y242{bottom:500.190000px;}
.y203{bottom:500.910000px;}
.y307{bottom:501.630000px;}
.y3fc{bottom:502.710000px;}
.y33e{bottom:504.510000px;}
.y338{bottom:507.390000px;}
.yde{bottom:508.830000px;}
.y118{bottom:509.190000px;}
.y25c{bottom:510.270000px;}
.yf{bottom:510.990000px;}
.y18e{bottom:511.350000px;}
.y16d{bottom:511.710000px;}
.y392{bottom:512.430000px;}
.y3bc{bottom:513.510000px;}
.y23c{bottom:513.870000px;}
.y57{bottom:514.230000px;}
.y2e{bottom:516.030000px;}
.y36d{bottom:516.390000px;}
.yb8{bottom:517.470000px;}
.y311{bottom:517.830000px;}
.y2c5{bottom:519.990000px;}
.y1b0{bottom:521.430000px;}
.y14f{bottom:521.790000px;}
.y1f3{bottom:522.150000px;}
.y2a5{bottom:522.510000px;}
.y3f{bottom:524.670000px;}
.ya5{bottom:525.390000px;}
.y71{bottom:525.750000px;}
.y233{bottom:526.470000px;}
.y1de{bottom:526.830000px;}
.yc6{bottom:527.190000px;}
.y435{bottom:528.630000px;}
.y19c{bottom:528.990000px;}
.y89{bottom:531.150000px;}
.y202{bottom:531.870000px;}
.y391{bottom:534.030000px;}
.y273{bottom:534.750000px;}
.y344{bottom:535.470000px;}
.y2d8{bottom:536.550000px;}
.y3bb{bottom:536.910000px;}
.y36c{bottom:537.990000px;}
.y98{bottom:538.710000px;}
.y306{bottom:539.070000px;}
.y128{bottom:539.790000px;}
.y117{bottom:540.510000px;}
.y3db{bottom:541.230000px;}
.y41e{bottom:541.950000px;}
.y18d{bottom:542.310000px;}
.y29c{bottom:542.670000px;}
.y23b{bottom:544.830000px;}
.y56{bottom:545.190000px;}
.y2d{bottom:547.350000px;}
.yb7{bottom:548.430000px;}
.y2c4{bottom:550.950000px;}
.y1c7{bottom:552.390000px;}
.y1a6{bottom:553.110000px;}
.y2a4{bottom:553.470000px;}
.ye{bottom:555.630000px;}
.y138{bottom:555.990000px;}
.y337{bottom:556.710000px;}
.y232{bottom:557.430000px;}
.ydd{bottom:557.790000px;}
.yc5{bottom:558.510000px;}
.y36b{bottom:559.590000px;}
.y3ba{bottom:560.310000px;}
.y317{bottom:560.880000px;}
.y23{bottom:561.750000px;}
.y241{bottom:562.470000px;}
.y201{bottom:562.830000px;}
.y3da{bottom:564.630000px;}
.y70{bottom:568.260000px;}
.y305{bottom:569.700000px;}
.y3a7{bottom:570.420000px;}
.y14e{bottom:571.140000px;}
.y116{bottom:571.500000px;}
.y18c{bottom:573.300000px;}
.y2af{bottom:574.020000px;}
.ya4{bottom:574.740000px;}
.y1dd{bottom:575.820000px;}
.y55{bottom:576.540000px;}
.y228{bottom:576.900000px;}
.y390{bottom:577.260000px;}
.y2c{bottom:579.420000px;}
.y88{bottom:580.140000px;}
.y36a{bottom:581.220000px;}
.y2d7{bottom:583.020000px;}
.y1c6{bottom:583.740000px;}
.y1a5{bottom:584.100000px;}
.y1f2{bottom:584.460000px;}
.y304{bottom:585.180000px;}
.y34f{bottom:585.540000px;}
.y3e{bottom:586.620000px;}
.y97{bottom:587.700000px;}
.y137{bottom:588.060000px;}
.y336{bottom:588.780000px;}
.ydc{bottom:589.140000px;}
.yc4{bottom:589.500000px;}
.y240{bottom:593.460000px;}
.y200{bottom:593.820000px;}
.y355{bottom:595.980000px;}
.y25b{bottom:596.700000px;}
.y214{bottom:597.420000px;}
.y2c3{bottom:598.500000px;}
.y38f{bottom:598.860000px;}
.yd{bottom:600.300000px;}
.y115{bottom:602.460000px;}
.y369{bottom:602.820000px;}
.y231{bottom:604.980000px;}
.y3ed{bottom:606.060000px;}
.y1dc{bottom:607.140000px;}
.y54{bottom:607.500000px;}
.y22{bottom:610.740000px;}
.y2d6{bottom:611.460000px;}
.y1c5{bottom:614.700000px;}
.y2a3{bottom:615.420000px;}
.y19b{bottom:615.780000px;}
.y1f1{bottom:616.500000px;}
.y34e{bottom:616.860000px;}
.y3d{bottom:617.940000px;}
.y302{bottom:619.020000px;}
.y136{bottom:619.380000px;}
.ydb{bottom:620.100000px;}
.y124{bottom:620.460000px;}
.y18b{bottom:620.820000px;}
.y272{bottom:621.180000px;}
.yf1{bottom:622.620000px;}
.ya3{bottom:623.700000px;}
.y368{bottom:624.420000px;}
.y1ff{bottom:625.140000px;}
.y16c{bottom:626.220000px;}
.yb6{bottom:628.740000px;}
.y87{bottom:629.100000px;}
.y25a{bottom:630.180000px;}
.y3b9{bottom:630.540000px;}
.y1a4{bottom:633.060000px;}
.y145{bottom:633.420000px;}
.y3d9{bottom:634.860000px;}
.y96{bottom:636.660000px;}
.y3a6{bottom:637.740000px;}
.y1db{bottom:638.100000px;}
.y53{bottom:638.460000px;}
.y434{bottom:639.180000px;}
.y2d5{bottom:639.900000px;}
.y23f{bottom:640.980000px;}
.y38e{bottom:642.060000px;}
.y2b{bottom:642.780000px;}
.y2c2{bottom:644.940000px;}
.y2eb{bottom:646.020000px;}
.y286{bottom:646.380000px;}
.yc{bottom:646.740000px;}
.y1c4{bottom:647.100000px;}
.y1f0{bottom:647.820000px;}
.y3c{bottom:648.900000px;}
.y19a{bottom:649.260000px;}
.y135{bottom:650.340000px;}
.yda{bottom:651.060000px;}
.y114{bottom:651.420000px;}
.y271{bottom:651.780000px;}
.y300{bottom:652.500000px;}
.y6f{bottom:653.220000px;}
.y335{bottom:653.580000px;}
.y227{bottom:653.940000px;}
.ya2{bottom:654.660000px;}
.y3ec{bottom:655.740000px;}
.y1fe{bottom:656.100000px;}
.y3d8{bottom:658.260000px;}
.y21{bottom:659.700000px;}
.y168{bottom:660.420000px;}
.y259{bottom:660.780000px;}
.y38d{bottom:663.660000px;}
.y1a3{bottom:664.020000px;}
.y144{bottom:664.740000px;}
.y18a{bottom:666.900000px;}
.y270{bottom:667.260000px;}
.y2ae{bottom:667.620000px;}
.y1da{bottom:669.060000px;}
.y52{bottom:669.420000px;}
.y297{bottom:673.380000px;}
.y2a{bottom:673.740000px;}
.y2ea{bottom:675.900000px;}
.y258{bottom:676.260000px;}
.y2fe{bottom:676.980000px;}
.y3b7{bottom:677.340000px;}
.y2a2{bottom:677.700000px;}
.y86{bottom:678.060000px;}
.y3b{bottom:679.860000px;}
.y134{bottom:681.300000px;}
.y3d7{bottom:681.660000px;}
.yd9{bottom:682.020000px;}
.y2c1{bottom:682.380000px;}
.y113{bottom:682.740000px;}
.y34d{bottom:683.820000px;}
.y38c{bottom:685.260000px;}
.y95{bottom:685.980000px;}
.y2d4{bottom:686.340000px;}
.y23a{bottom:687.060000px;}
.y365{bottom:689.220000px;}
.y199{bottom:689.940000px;}
.y20{bottom:690.660000px;}
.yb{bottom:693.930000px;}
.y354{bottom:694.290000px;}
.y433{bottom:694.650000px;}
.y143{bottom:695.730000px;}
.y6e{bottom:695.745000px;}
.yed{bottom:697.185000px;}
.y189{bottom:697.890000px;}
.y127{bottom:698.610000px;}
.y14d{bottom:700.050000px;}
.y51{bottom:700.770000px;}
.y3b6{bottom:700.785000px;}
.y2fc{bottom:701.865000px;}
.ya1{bottom:703.650000px;}
.y3a5{bottom:704.730000px;}
.y29{bottom:705.090000px;}
.y3d6{bottom:705.105000px;}
.y2e9{bottom:706.890000px;}
.y38b{bottom:706.905000px;}
.y41b{bottom:707.970000px;}
.y2a1{bottom:708.690000px;}
.y1c3{bottom:709.050000px;}
.y26f{bottom:709.065000px;}
.y165{bottom:709.425000px;}
.y3a{bottom:710.850000px;}
.y364{bottom:710.865000px;}
.y1ef{bottom:711.210000px;}
.y133{bottom:712.290000px;}
.y2c0{bottom:712.650000px;}
.y1a2{bottom:713.010000px;}
.yd8{bottom:713.370000px;}
.y112{bottom:713.730000px;}
.y2d3{bottom:714.810000px;}
.y239{bottom:718.050000px;}
.y257{bottom:718.065000px;}
.y294{bottom:720.585000px;}
.y3eb{bottom:722.730000px;}
.y3b5{bottom:724.185000px;}
.y2fa{bottom:726.345000px;}
.y2ad{bottom:726.690000px;}
.y85{bottom:727.410000px;}
.y2bf{bottom:728.505000px;}
.y188{bottom:729.210000px;}
.y14c{bottom:731.010000px;}
.y225{bottom:731.025000px;}
.y32d{bottom:731.370000px;}
.y50{bottom:731.730000px;}
.y363{bottom:732.465000px;}
.y285{bottom:732.810000px;}
.y94{bottom:734.970000px;}
.y1c2{bottom:736.050000px;}
.y28{bottom:737.490000px;}
.ya{bottom:738.570000px;}
.y6c{bottom:738.585000px;}
.y1f{bottom:739.650000px;}
.y39{bottom:742.170000px;}
.y1ee{bottom:742.530000px;}
.y2d2{bottom:743.250000px;}
.y132{bottom:743.610000px;}
.y142{bottom:744.330000px;}
.y111{bottom:744.690000px;}
.y1c1{bottom:745.050000px;}
.y3b4{bottom:747.585000px;}
.y284{bottom:748.290000px;}
.y1d9{bottom:749.010000px;}
.y432{bottom:749.730000px;}
.y38a{bottom:750.105000px;}
.y26e{bottom:750.825000px;}
.y34c{bottom:751.170000px;}
.y3d5{bottom:751.905000px;}
.y2f2{bottom:754.065000px;}
.y41a{bottom:755.850000px;}
.y2e8{bottom:756.210000px;}
.y2a0{bottom:757.650000px;}
.y163{bottom:759.465000px;}
.y256{bottom:759.825000px;}
.y187{bottom:760.170000px;}
.y353{bottom:761.250000px;}
.yd7{bottom:762.330000px;}
.y2be{bottom:762.345000px;}
.y4f{bottom:762.690000px;}
.y1fd{bottom:767.010000px;}
.y293{bottom:767.745000px;}
.y27{bottom:769.890000px;}
.y1e{bottom:770.970000px;}
.y3b3{bottom:770.985000px;}
.y2d1{bottom:771.690000px;}
.y389{bottom:771.705000px;}
.y38{bottom:773.130000px;}
.y1ed{bottom:774.570000px;}
.y3d4{bottom:775.305000px;}
.y110{bottom:775.650000px;}
.y362{bottom:775.665000px;}
.y84{bottom:776.370000px;}
.y283{bottom:778.890000px;}
.y1c0{bottom:779.610000px;}
.y1d8{bottom:780.330000px;}
.y6b{bottom:781.065000px;}
.y93{bottom:783.930000px;}
.y29f{bottom:788.970000px;}
.y3ea{bottom:789.690000px;}
.y9{bottom:791.130000px;}
.y186{bottom:791.490000px;}
.y26d{bottom:792.225000px;}
.y160{bottom:792.945000px;}
.yd6{bottom:793.290000px;}
.y388{bottom:793.305000px;}
.y4e{bottom:793.650000px;}
.y3b2{bottom:794.385000px;}
.y282{bottom:794.745000px;}
.yec{bottom:796.530000px;}
.y361{bottom:797.265000px;}
.y1fc{bottom:798.330000px;}
.y3d3{bottom:798.705000px;}
.y2bb{bottom:799.425000px;}
.y292{bottom:800.865000px;}
.y254{bottom:801.585000px;}
.y1d{bottom:801.930000px;}
.y43e{bottom:801.945000px;}
.y417{bottom:803.010000px;}
.y37{bottom:804.090000px;}
.y431{bottom:805.170000px;}
.y1ec{bottom:805.890000px;}
.y140{bottom:806.970000px;}
.y221{bottom:808.065000px;}
.y1bf{bottom:810.570000px;}
.y1d7{bottom:811.290000px;}
.y2ef{bottom:812.745000px;}
.y387{bottom:814.905000px;}
.yd1{bottom:816.690000px;}
.y3b0{bottom:817.785000px;}
.y34b{bottom:818.130000px;}
.y360{bottom:818.910000px;}
.y26{bottom:819.975000px;}
.y3d2{bottom:822.150000px;}
.y185{bottom:823.575000px;}
.y6a{bottom:823.590000px;}
.y2e7{bottom:823.935000px;}
.yd5{bottom:824.295000px;}
.y4d{bottom:825.015000px;}
.y83{bottom:825.375000px;}
.yeb{bottom:827.895000px;}
.y352{bottom:828.615000px;}
.y1fb{bottom:829.335000px;}
.y281{bottom:831.510000px;}
.y92{bottom:832.935000px;}
.y26c{bottom:834.030000px;}
.y290{bottom:834.390000px;}
.y36{bottom:835.095000px;}
.y8{bottom:835.455000px;}
.y386{bottom:836.550000px;}
.y1e2{bottom:837.975000px;}
.y3a4{bottom:838.695000px;}
.y2e4{bottom:839.790000px;}
.y35f{bottom:840.510000px;}
.y230{bottom:840.855000px;}
.y3af{bottom:841.230000px;}
.y1be{bottom:841.575000px;}
.y15f{bottom:841.950000px;}
.y1d6{bottom:842.295000px;}
.y123{bottom:843.015000px;}
.y253{bottom:843.030000px;}
.y3d1{bottom:845.550000px;}
.y416{bottom:850.575000px;}
.y1c{bottom:850.935000px;}
.y184{bottom:854.535000px;}
.y14b{bottom:855.255000px;}
.yd4{bottom:855.615000px;}
.y4c{bottom:855.975000px;}
.y3e9{bottom:856.695000px;}
.y385{bottom:858.150000px;}
.y1fa{bottom:860.295000px;}
.y35e{bottom:862.110000px;}
.yb5{bottom:863.895000px;}
.y3ae{bottom:864.630000px;}
.y69{bottom:866.070000px;}
.y35{bottom:866.415000px;}
.y280{bottom:868.590000px;}
.y25{bottom:868.935000px;}
.y3d0{bottom:868.950000px;}
.y28f{bottom:869.310000px;}
.y2cf{bottom:870.735000px;}
.y1a1{bottom:871.815000px;}
.y1bd{bottom:872.535000px;}
.y1d5{bottom:873.255000px;}
.y122{bottom:873.975000px;}
.y82{bottom:874.335000px;}
.y15e{bottom:875.430000px;}
.y26b{bottom:875.790000px;}
.yea{bottom:877.215000px;}
.y7{bottom:879.735000px;}
.y384{bottom:879.750000px;}
.y2ba{bottom:880.095000px;}
.y1b{bottom:881.895000px;}
.y35d{bottom:883.710000px;}
.y251{bottom:884.790000px;}
.y34a{bottom:885.135000px;}
.y183{bottom:885.495000px;}
.yd3{bottom:886.575000px;}
.y4b{bottom:886.935000px;}
.y3ad{bottom:888.030000px;}
.y1f9{bottom:891.255000px;}
.y2d0{bottom:891.615000px;}
.y3cf{bottom:892.350000px;}
.yb1{bottom:895.215000px;}
.y351{bottom:895.575000px;}
.y34{bottom:897.375000px;}
.y21f{bottom:899.550000px;}
.y24{bottom:899.895000px;}
.ya0{bottom:900.255000px;}
.y383{bottom:901.350000px;}
.y7f{bottom:901.695000px;}
.y14a{bottom:902.775000px;}
.y1bc{bottom:903.855000px;}
.y1d4{bottom:904.575000px;}
.y121{bottom:904.935000px;}
.y35b{bottom:905.310000px;}
.y3a3{bottom:905.655000px;}
.y67{bottom:908.550000px;}
.y15c{bottom:908.910000px;}
.y2e3{bottom:909.630000px;}
.y3ac{bottom:911.430000px;}
.y430{bottom:915.735000px;}
.y3ce{bottom:915.750000px;}
.y182{bottom:916.815000px;}
.y269{bottom:917.550000px;}
.y4a{bottom:917.895000px;}
.y7e{bottom:917.910000px;}
.y1f8{bottom:922.575000px;}
.y382{bottom:922.950000px;}
.y81{bottom:923.295000px;}
.y3e8{bottom:923.655000px;}
.y24f{bottom:926.550000px;}
.ye9{bottom:927.255000px;}
.y33{bottom:928.335000px;}
.y358{bottom:929.790000px;}
.y2b9{bottom:930.495000px;}
.y1a{bottom:931.215000px;}
.yd2{bottom:934.095000px;}
.y3aa{bottom:934.830000px;}
.y1d3{bottom:935.535000px;}
.y120{bottom:935.895000px;}
.yb4{bottom:939.135000px;}
.y3cc{bottom:939.150000px;}
.y6{bottom:942.015000px;}
.y159{bottom:942.390000px;}
.y413{bottom:943.455000px;}
.yb0{bottom:944.175000px;}
.y380{bottom:944.550000px;}
.y49{bottom:949.245000px;}
.y65{bottom:951.045000px;}
.y349{bottom:952.125000px;}
.y1f7{bottom:953.565000px;}
.y268{bottom:958.965000px;}
.y32{bottom:959.325000px;}
.y7d{bottom:960.405000px;}
.y3a8{bottom:961.125000px;}
.y350{bottom:962.565000px;}
.y21c{bottom:965.085000px;}
.y37f{bottom:966.165000px;}
.yc3{bottom:967.245000px;}
.yb3{bottom:969.765000px;}
.y42f{bottom:970.845000px;}
.y24a{bottom:971.205000px;}
.y80{bottom:973.005000px;}
.y158{bottom:976.965000px;}
.ye8{bottom:977.685000px;}
.y19{bottom:980.205000px;}
.y1d2{bottom:983.085000px;}
.y1f6{bottom:984.525000px;}
.y3cb{bottom:985.965000px;}
.y37e{bottom:987.765000px;}
.y410{bottom:990.285000px;}
.yaf{bottom:993.525000px;}
.y43a{bottom:995.325000px;}
.y357{bottom:995.685000px;}
.y31{bottom:998.205000px;}
.y32c{bottom:998.565000px;}
.y266{bottom:1000.725000px;}
.y7c{bottom:1002.885000px;}
.y5{bottom:1004.325000px;}
.y348{bottom:1008.645000px;}
.yb2{bottom:1009.005000px;}
.y157{bottom:1011.165000px;}
.y24c{bottom:1011.525000px;}
.y37b{bottom:1012.605000px;}
.y42e{bottom:1026.285000px;}
.ye7{bottom:1028.085000px;}
.y141{bottom:1028.805000px;}
.y91{bottom:1029.165000px;}
.y18{bottom:1029.525000px;}
.y2ee{bottom:1031.685000px;}
.y1f5{bottom:1032.045000px;}
.y356{bottom:1033.125000px;}
.y40e{bottom:1038.165000px;}
.y3{bottom:1045.365000px;}
.y3f0{bottom:1069.845000px;}
.y42d{bottom:1081.770000px;}
.y40d{bottom:1096.170000px;}
.y40c{bottom:1118.130000px;}
.y3ef{bottom:1119.210000px;}
.y42c{bottom:1119.570000px;}
.y3ee{bottom:1175.370000px;}
.h2{height:2.875500px;}
.h7e{height:20.155500px;}
.h6d{height:20.875500px;}
.h66{height:21.225000px;}
.h6b{height:21.235500px;}
.h68{height:21.240000px;}
.h6a{height:21.261000px;}
.h69{height:21.270000px;}
.h67{height:21.276000px;}
.h6f{height:23.025000px;}
.h73{height:23.035500px;}
.h6e{height:23.040000px;}
.h70{height:23.061000px;}
.h72{height:23.070000px;}
.h71{height:23.076000px;}
.h5a{height:24.105000px;}
.h5c{height:24.120000px;}
.h59{height:24.465000px;}
.h56{height:24.501000px;}
.h5b{height:24.516000px;}
.h7b{height:26.985000px;}
.h6c{height:29.505000px;}
.h65{height:29.520000px;}
.h44{height:29.865000px;}
.h37{height:30.585000px;}
.h41{height:31.305000px;}
.h4d{height:31.320000px;}
.h46{height:31.665000px;}
.h48{height:32.061000px;}
.h1e{height:32.745000px;}
.h5d{height:32.760000px;}
.h5e{height:33.120000px;}
.h21{height:33.465000px;}
.h26{height:33.480000px;}
.h42{height:33.501000px;}
.h1f{height:33.840000px;}
.h51{height:34.185000px;}
.h30{height:35.338359px;}
.h1c{height:35.880469px;}
.h38{height:37.065000px;}
.h45{height:38.470781px;}
.h57{height:40.692656px;}
.h3d{height:41.025000px;}
.h39{height:41.040000px;}
.h3b{height:41.061000px;}
.h3a{height:41.385000px;}
.h3e{height:41.421000px;}
.h3c{height:41.436000px;}
.h9{height:42.465000px;}
.ha{height:42.480000px;}
.hb{height:42.501000px;}
.he{height:42.510000px;}
.hf{height:42.511500px;}
.hd{height:42.516000px;}
.hc{height:42.825000px;}
.h63{height:43.912969px;}
.h86{height:43.920000px;}
.h8a{height:44.280000px;}
.h23{height:44.299687px;}
.h4c{height:44.301000px;}
.h62{height:44.976094px;}
.h80{height:45.036000px;}
.h61{height:45.083180px;}
.h8d{height:45.184219px;}
.h49{height:45.705000px;}
.h4b{height:45.720000px;}
.h4a{height:45.756000px;}
.h43{height:46.638281px;}
.h75{height:46.639687px;}
.h8c{height:46.795500px;}
.h88{height:46.800000px;}
.h84{height:46.836000px;}
.h82{height:47.160000px;}
.h89{height:47.196000px;}
.h85{height:47.880000px;}
.h47{height:47.891250px;}
.h8b{height:47.916000px;}
.h7c{height:48.095156px;}
.h40{height:48.945000px;}
.h27{height:48.960000px;}
.h13{height:48.962813px;}
.h22{height:48.981000px;}
.h25{height:48.996000px;}
.h55{height:49.259531px;}
.h24{height:49.305000px;}
.h7d{height:53.542969px;}
.h52{height:53.625937px;}
.h1a{height:53.704687px;}
.h78{height:53.985000px;}
.h19{height:55.147500px;}
.h58{height:55.425000px;}
.h20{height:56.243537px;}
.h3f{height:57.945000px;}
.h5{height:58.289062px;}
.h15{height:59.357813px;}
.h7f{height:60.641719px;}
.h2b{height:60.952500px;}
.h1b{height:61.441452px;}
.h2f{height:61.920000px;}
.h2a{height:62.163910px;}
.h12{height:62.265000px;}
.h76{height:63.390000px;}
.h10{height:64.546875px;}
.h28{height:64.830000px;}
.h50{height:65.010937px;}
.h29{height:65.505000px;}
.h54{height:66.585000px;}
.h53{height:66.630000px;}
.h83{height:67.533750px;}
.h6{height:67.615313px;}
.h81{height:68.084282px;}
.h18{height:69.510000px;}
.h14{height:69.876000px;}
.h87{height:70.596000px;}
.h64{height:70.628906px;}
.h3{height:70.664062px;}
.h36{height:70.905000px;}
.h8{height:72.562500px;}
.h8e{height:73.785000px;}
.h7{height:74.004654px;}
.h32{height:76.665000px;}
.h34{height:76.680000px;}
.h35{height:76.710000px;}
.h33{height:76.716000px;}
.h2e{height:77.025000px;}
.h16{height:77.070000px;}
.h2c{height:77.640469px;}
.h5f{height:79.758281px;}
.h4e{height:83.400469px;}
.h11{height:84.172500px;}
.h8f{height:85.665000px;}
.h17{height:86.745000px;}
.h1d{height:87.944062px;}
.h31{height:91.101000px;}
.h79{height:93.279375px;}
.h4{height:96.759844px;}
.h2d{height:106.628906px;}
.h4f{height:106.664062px;}
.h77{height:152.085938px;}
.h7a{height:201.285000px;}
.h90{height:289.170000px;}
.h60{height:373.320000px;}
.h74{height:444.690000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w30{width:37.777500px;}
.w2a{width:38.137500px;}
.w35{width:51.465000px;}
.w37{width:53.310000px;}
.w32{width:61.905000px;}
.w34{width:61.920000px;}
.w33{width:63.381000px;}
.w36{width:63.390000px;}
.w2c{width:63.705000px;}
.w3a{width:64.101000px;}
.w20{width:65.550000px;}
.w3e{width:67.341000px;}
.w45{width:72.036000px;}
.we{width:73.417500px;}
.wb{width:89.676000px;}
.wa{width:90.030000px;}
.w3{width:93.240000px;}
.w6{width:94.710000px;}
.w3c{width:96.870000px;}
.w40{width:98.310000px;}
.w31{width:104.112000px;}
.w2d{width:104.472000px;}
.w1b{width:112.680000px;}
.w1e{width:112.752000px;}
.w1d{width:113.070000px;}
.w3b{width:115.920000px;}
.w41{width:117.720000px;}
.w3f{width:118.800000px;}
.wd{width:130.710000px;}
.wc{width:132.525000px;}
.w5{width:135.720000px;}
.w46{width:136.152000px;}
.w2b{width:137.205000px;}
.w10{width:140.796000px;}
.w14{width:142.221000px;}
.w15{width:143.685000px;}
.w16{width:144.405000px;}
.w1a{width:160.275000px;}
.w2f{width:168.915000px;}
.w19{width:176.115000px;}
.w2e{width:187.965000px;}
.w28{width:188.715000px;}
.w29{width:188.730000px;}
.w24{width:194.445000px;}
.w7{width:194.865000px;}
.wf{width:203.130000px;}
.w9{width:211.365000px;}
.w18{width:225.765000px;}
.w1c{width:226.185000px;}
.w8{width:227.925000px;}
.w23{width:227.985000px;}
.w22{width:231.165000px;}
.w26{width:235.530000px;}
.w11{width:235.890000px;}
.w25{width:238.755000px;}
.w1f{width:240.525000px;}
.w13{width:287.010000px;}
.w12{width:364.087500px;}
.w39{width:367.327500px;}
.w21{width:368.055000px;}
.w3d{width:369.127500px;}
.w27{width:377.805000px;}
.w17{width:428.557500px;}
.w47{width:491.236500px;}
.w4{width:576.570000px;}
.w44{width:582.330000px;}
.w38{width:636.840000px;}
.w42{width:675.585000px;}
.w43{width:675.615000px;}
.w2{width:685.665000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x71{left:5.025000px;}
.x7b{left:6.120000px;}
.x7e{left:7.245000px;}
.x15{left:8.257500px;}
.x76{left:9.700500px;}
.x2{left:10.777500px;}
.x77{left:12.240000px;}
.x41{left:14.020500px;}
.x20{left:15.840000px;}
.x66{left:16.950000px;}
.x22{left:18.720000px;}
.x5c{left:19.800000px;}
.x29{left:20.860500px;}
.x33{left:22.300500px;}
.x5b{left:24.120000px;}
.x24{left:25.590000px;}
.x65{left:26.670000px;}
.x69{left:27.705000px;}
.x3e{left:29.500500px;}
.x2c{left:30.580500px;}
.x21{left:31.725000px;}
.x25{left:32.790000px;}
.x3b{left:33.840000px;}
.x61{left:34.920000px;}
.x90{left:36.045000px;}
.x1d{left:37.780500px;}
.x1e{left:38.860500px;}
.x2a{left:40.660500px;}
.x80{left:41.835000px;}
.x38{left:44.670000px;}
.x2b{left:46.420500px;}
.x28{left:49.305000px;}
.x91{left:50.763000px;}
.x62{left:52.950000px;}
.x3d{left:54.360000px;}
.x3c{left:55.470000px;}
.x4d{left:56.895000px;}
.x46{left:60.480000px;}
.x45{left:61.950000px;}
.x27{left:64.065000px;}
.x3a{left:65.160000px;}
.x39{left:66.270000px;}
.x75{left:67.365000px;}
.x5e{left:70.245000px;}
.x73{left:71.985000px;}
.x6a{left:74.895000px;}
.x67{left:83.890500px;}
.x60{left:87.510000px;}
.x58{left:92.175000px;}
.x56{left:95.415000px;}
.x4a{left:97.230000px;}
.x57{left:107.295000px;}
.x48{left:115.930500px;}
.x8e{left:119.530500px;}
.x51{left:122.770500px;}
.x92{left:124.249500px;}
.x4f{left:126.010500px;}
.x53{left:127.470000px;}
.x1{left:129.694500px;}
.x4e{left:132.850500px;}
.x64{left:138.675000px;}
.x14{left:140.854500px;}
.x70{left:143.734500px;}
.x50{left:145.810500px;}
.x4{left:149.112000px;}
.x4c{left:151.570500px;}
.x52{left:155.890500px;}
.xb{left:157.755000px;}
.x8a{left:160.210500px;}
.x82{left:163.770000px;}
.x6{left:166.395000px;}
.x6e{left:167.835000px;}
.x30{left:170.355000px;}
.x54{left:174.655500px;}
.x12{left:176.115000px;}
.x7{left:177.555000px;}
.x19{left:182.235000px;}
.x13{left:203.115000px;}
.x42{left:214.650000px;}
.x31{left:229.065000px;}
.x6b{left:230.505000px;}
.x16{left:234.105000px;}
.x59{left:243.105000px;}
.xe{left:244.905000px;}
.x32{left:256.065000px;}
.x81{left:259.710000px;}
.x1f{left:276.945000px;}
.x6d{left:279.105000px;}
.x8{left:319.470000px;}
.x8d{left:337.765500px;}
.x34{left:352.230000px;}
.x5f{left:354.750000px;}
.x8b{left:361.195500px;}
.x47{left:365.190000px;}
.x23{left:372.030000px;}
.x63{left:382.110000px;}
.x78{left:383.190000px;}
.xa{left:388.950000px;}
.x2e{left:412.740000px;}
.x43{left:418.140000px;}
.x5a{left:419.220000px;}
.x8c{left:420.660000px;}
.x83{left:422.820000px;}
.x84{left:424.620000px;}
.x35{left:442.260000px;}
.x6c{left:443.700000px;}
.xc{left:446.220000px;}
.x2f{left:447.660000px;}
.xf{left:455.220000px;}
.x2d{left:461.340000px;}
.x9{left:462.780000px;}
.x1b{left:464.580000px;}
.x1c{left:467.820000px;}
.x18{left:469.620000px;}
.x17{left:471.420000px;}
.x11{left:473.220000px;}
.x10{left:475.020000px;}
.x5{left:478.620000px;}
.x72{left:490.545000px;}
.x49{left:508.185000px;}
.x87{left:509.985000px;}
.x85{left:511.785000px;}
.x36{left:531.945000px;}
.x79{left:552.825000px;}
.x44{left:559.305000px;}
.x26{left:567.270000px;}
.x55{left:569.430000px;}
.x88{left:577.710000px;}
.x5d{left:579.870000px;}
.x68{left:600.750000px;}
.x7a{left:616.590000px;}
.x4b{left:651.150000px;}
.x37{left:664.485000px;}
.x6f{left:677.085000px;}
.x74{left:681.765000px;}
.x1a{left:689.685000px;}
.x89{left:696.885000px;}
.x86{left:698.325000px;}
.x3{left:700.485000px;}
.x8f{left:723.165000px;}
.x7c{left:733.605000px;}
.x3f{left:736.845000px;}
.x40{left:767.850000px;}
.x7f{left:788.370000px;}
.x7d{left:797.370000px;}
.xd{left:808.530000px;}
@media print{
.vc{vertical-align:-29.440000pt;}
.v4{vertical-align:-12.800000pt;}
.va{vertical-align:-10.240000pt;}
.v1{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.840000pt;}
.v2{vertical-align:7.680000pt;}
.v6{vertical-align:12.800000pt;}
.v5{vertical-align:15.360000pt;}
.vb{vertical-align:29.440000pt;}
.v8{vertical-align:32.000000pt;}
.v7{vertical-align:37.120000pt;}
.v9{vertical-align:42.240000pt;}
.ls26{letter-spacing:-2.432000pt;}
.ls35{letter-spacing:-1.680000pt;}
.ls2a{letter-spacing:-1.536000pt;}
.ls9{letter-spacing:-1.408000pt;}
.ls8{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-1.152000pt;}
.ls3b{letter-spacing:-1.008000pt;}
.ls4e{letter-spacing:-0.965333pt;}
.ls25{letter-spacing:-0.832000pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.576000pt;}
.ls31{letter-spacing:-0.560000pt;}
.ls3a{letter-spacing:-0.467200pt;}
.ls17{letter-spacing:-0.448000pt;}
.ls42{letter-spacing:-0.441067pt;}
.ls43{letter-spacing:-0.376533pt;}
.ls40{letter-spacing:-0.340267pt;}
.ls2f{letter-spacing:-0.269845pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls4a{letter-spacing:-0.208533pt;}
.ls36{letter-spacing:-0.134922pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls3d{letter-spacing:-0.038400pt;}
.ls0{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.010667pt;}
.ls2d{letter-spacing:0.048640pt;}
.ls34{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.106667pt;}
.ls32{letter-spacing:0.112640pt;}
.ls6{letter-spacing:0.128000pt;}
.ls3f{letter-spacing:0.166400pt;}
.ls3e{letter-spacing:0.184533pt;}
.lsc{letter-spacing:0.256000pt;}
.ls3c{letter-spacing:0.266240pt;}
.ls2c{letter-spacing:0.295680pt;}
.ls4f{letter-spacing:0.314667pt;}
.ls2b{letter-spacing:0.320000pt;}
.ls4b{letter-spacing:0.345600pt;}
.ls30{letter-spacing:0.404767pt;}
.ls24{letter-spacing:0.448000pt;}
.ls39{letter-spacing:0.544000pt;}
.ls2{letter-spacing:0.560000pt;}
.lsa{letter-spacing:0.576000pt;}
.ls1f{letter-spacing:0.586667pt;}
.ls49{letter-spacing:0.591360pt;}
.ls2e{letter-spacing:0.618667pt;}
.lsd{letter-spacing:0.640000pt;}
.ls45{letter-spacing:0.704000pt;}
.ls47{letter-spacing:0.805333pt;}
.ls12{letter-spacing:1.024000pt;}
.ls46{letter-spacing:1.126400pt;}
.ls44{letter-spacing:1.152000pt;}
.lsf{letter-spacing:1.280000pt;}
.ls28{letter-spacing:1.344000pt;}
.ls10{letter-spacing:1.408000pt;}
.ls33{letter-spacing:1.536000pt;}
.ls14{letter-spacing:1.920000pt;}
.ls38{letter-spacing:2.240000pt;}
.ls1a{letter-spacing:3.200000pt;}
.ls16{letter-spacing:4.755200pt;}
.ls29{letter-spacing:5.888000pt;}
.ls27{letter-spacing:7.040000pt;}
.ls23{letter-spacing:10.880000pt;}
.ls1d{letter-spacing:13.440000pt;}
.ls4{letter-spacing:14.720000pt;}
.ls41{letter-spacing:16.000000pt;}
.ls22{letter-spacing:18.334720pt;}
.ls1e{letter-spacing:19.840000pt;}
.ls20{letter-spacing:20.608000pt;}
.ls48{letter-spacing:21.120000pt;}
.ls21{letter-spacing:24.878080pt;}
.ls37{letter-spacing:25.728000pt;}
.ls19{letter-spacing:28.288000pt;}
.ls1b{letter-spacing:39.808000pt;}
.ls3{letter-spacing:48.768000pt;}
.ls15{letter-spacing:86.464000pt;}
.ls1c{letter-spacing:140.928000pt;}
.ls4c{letter-spacing:144.911360pt;}
.ls4d{letter-spacing:146.191360pt;}
.ls1{letter-spacing:752.277333pt;}
.ws25{word-spacing:-74.240000pt;}
.ws14{word-spacing:-67.461249pt;}
.ws3{word-spacing:-64.000000pt;}
.ws2b{word-spacing:-58.880000pt;}
.ws1a{word-spacing:-53.760000pt;}
.ws19{word-spacing:-48.640000pt;}
.ws1f{word-spacing:-43.200000pt;}
.ws35{word-spacing:-21.429760pt;}
.wse{word-spacing:-21.084160pt;}
.ws27{word-spacing:-19.158995pt;}
.ws2a{word-spacing:-19.024072pt;}
.ws26{word-spacing:-18.889150pt;}
.ws20{word-spacing:-18.176000pt;}
.ws22{word-spacing:-17.728000pt;}
.wsc{word-spacing:-17.408000pt;}
.ws16{word-spacing:-17.280000pt;}
.ws32{word-spacing:-17.152000pt;}
.ws11{word-spacing:-17.024000pt;}
.ws33{word-spacing:-16.704000pt;}
.ws9{word-spacing:-16.640000pt;}
.ws6{word-spacing:-16.576000pt;}
.ws1d{word-spacing:-16.448000pt;}
.ws1e{word-spacing:-16.320000pt;}
.ws8{word-spacing:-16.256000pt;}
.wsb{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws12{word-spacing:-15.744000pt;}
.ws15{word-spacing:-15.552000pt;}
.wsd{word-spacing:-15.424000pt;}
.wsf{word-spacing:-15.267840pt;}
.ws21{word-spacing:-15.168000pt;}
.wsa{word-spacing:-14.848000pt;}
.ws17{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.592000pt;}
.ws2e{word-spacing:-13.998293pt;}
.ws2f{word-spacing:-13.980160pt;}
.ws2d{word-spacing:-13.775360pt;}
.ws2c{word-spacing:-13.712000pt;}
.ws37{word-spacing:-13.621547pt;}
.ws1c{word-spacing:-13.568000pt;}
.ws10{word-spacing:-13.440000pt;}
.ws1{word-spacing:-12.720000pt;}
.ws36{word-spacing:-12.341547pt;}
.ws2{word-spacing:-12.160000pt;}
.ws28{word-spacing:-11.600000pt;}
.ws29{word-spacing:-11.200000pt;}
.ws4{word-spacing:-10.880000pt;}
.ws30{word-spacing:-10.652373pt;}
.ws13{word-spacing:-10.560000pt;}
.ws34{word-spacing:-10.351467pt;}
.ws24{word-spacing:-10.164907pt;}
.ws23{word-spacing:-9.594880pt;}
.ws18{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.192000pt;}
.ws31{word-spacing:275.473920pt;}
._21{margin-left:-15.407360pt;}
._1f{margin-left:-14.067627pt;}
._1c{margin-left:-12.918187pt;}
._1d{margin-left:-11.628800pt;}
._22{margin-left:-10.072747pt;}
._20{margin-left:-9.088000pt;}
._19{margin-left:-7.762347pt;}
._1a{margin-left:-6.240000pt;}
._1e{margin-left:-5.253973pt;}
._1b{margin-left:-3.952213pt;}
._d{margin-left:-2.921813pt;}
._3{margin-left:-1.979307pt;}
._2{margin-left:-0.971093pt;}
._1{width:0.956160pt;}
._0{width:2.592427pt;}
._c{width:4.052907pt;}
._13{width:5.085440pt;}
._b{width:6.089813pt;}
._e{width:7.547307pt;}
._10{width:8.489813pt;}
._17{width:9.392640pt;}
._f{width:10.367147pt;}
._14{width:11.347627pt;}
._9{width:12.689920pt;}
._8{width:13.650347pt;}
._a{width:15.008853pt;}
._2c{width:16.366507pt;}
._4{width:17.290240pt;}
._5{width:18.240000pt;}
._16{width:19.803733pt;}
._15{width:21.066240pt;}
._23{width:22.266453pt;}
._11{width:23.325867pt;}
._12{width:24.320853pt;}
._24{width:25.499307pt;}
._30{width:26.750293pt;}
._2f{width:27.670613pt;}
._2e{width:28.788053pt;}
._25{width:29.760000pt;}
._6{width:31.295147pt;}
._7{width:32.545280pt;}
._34{width:34.880000pt;}
._33{width:36.208640pt;}
._32{width:37.695147pt;}
._35{width:38.967040pt;}
._39{width:40.824320pt;}
._29{width:42.106880pt;}
._27{width:43.278080pt;}
._28{width:44.803840pt;}
._36{width:46.422187pt;}
._37{width:47.433813pt;}
._2d{width:62.363307pt;}
._2b{width:76.219733pt;}
._31{width:79.086933pt;}
._2a{width:84.188160pt;}
._38{width:141.953536pt;}
._26{width:749.717333pt;}
._18{width:752.277333pt;}
.fs9{font-size:32.000000pt;}
.fsa{font-size:37.120000pt;}
.fs6{font-size:42.240000pt;}
.fs8{font-size:44.800000pt;}
.fs3{font-size:48.640000pt;}
.fs5{font-size:53.760000pt;}
.fsb{font-size:53.888000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:67.461249pt;}
.fs2{font-size:74.240000pt;}
.fs1{font-size:106.240000pt;}
.fsd{font-size:117.760000pt;}
.fsc{font-size:192.000000pt;}
.y2{bottom:-27.876000pt;}
.y2f0{bottom:-11.213333pt;}
.y0{bottom:0.000000pt;}
.y2f9{bottom:2.866667pt;}
.y37d{bottom:2.880000pt;}
.y2fd{bottom:3.186667pt;}
.y301{bottom:3.200000pt;}
.y2fb{bottom:3.506667pt;}
.y2ff{bottom:3.520000pt;}
.y3a2{bottom:3.836000pt;}
.y4{bottom:3.840000pt;}
.y407{bottom:4.146667pt;}
.y3a1{bottom:4.156000pt;}
.y3e7{bottom:4.796000pt;}
.y35c{bottom:6.066667pt;}
.y37a{bottom:6.070667pt;}
.y367{bottom:6.080000pt;}
.y381{bottom:6.093333pt;}
.y366{bottom:6.106667pt;}
.y3ab{bottom:6.706667pt;}
.y3ca{bottom:6.716000pt;}
.y3b8{bottom:6.720000pt;}
.y3cd{bottom:6.733333pt;}
.y3b1{bottom:6.746667pt;}
.y409{bottom:7.026667pt;}
.y2f1{bottom:8.026667pt;}
.y37c{bottom:9.280000pt;}
.y359{bottom:9.586667pt;}
.y3a9{bottom:9.600000pt;}
.y291{bottom:10.226667pt;}
.y299{bottom:10.240000pt;}
.y15d{bottom:10.546667pt;}
.y16a{bottom:10.560000pt;}
.yf0{bottom:10.866667pt;}
.yfa{bottom:10.880000pt;}
.y15a{bottom:10.893333pt;}
.y224{bottom:10.906667pt;}
.y220{bottom:11.186667pt;}
.y105{bottom:11.200000pt;}
.y15b{bottom:11.213333pt;}
.yf6{bottom:11.520000pt;}
.y164{bottom:12.146667pt;}
.y24d{bottom:13.120000pt;}
.y6d{bottom:13.426667pt;}
.y74{bottom:13.440000pt;}
.y68{bottom:13.746667pt;}
.y7b{bottom:13.750667pt;}
.y66{bottom:13.760000pt;}
.y425{bottom:14.080000pt;}
.y42b{bottom:14.396000pt;}
.y412{bottom:14.400000pt;}
.y415{bottom:14.426667pt;}
.y419{bottom:14.440000pt;}
.y2f8{bottom:14.706667pt;}
.y40f{bottom:14.720000pt;}
.y424{bottom:15.066667pt;}
.y2f4{bottom:15.666667pt;}
.y42a{bottom:15.996000pt;}
.y24e{bottom:16.000000pt;}
.y35a{bottom:16.013333pt;}
.y414{bottom:16.026667pt;}
.y418{bottom:16.040000pt;}
.y2e6{bottom:16.306667pt;}
.y411{bottom:16.320000pt;}
.y2bd{bottom:16.626667pt;}
.y278{bottom:16.640000pt;}
.y423{bottom:16.666667pt;}
.y428{bottom:16.680000pt;}
.y109{bottom:17.280000pt;}
.y26a{bottom:17.906667pt;}
.y303{bottom:17.920000pt;}
.y250{bottom:17.933333pt;}
.y255{bottom:17.946667pt;}
.y252{bottom:18.226667pt;}
.y267{bottom:18.240000pt;}
.yfd{bottom:18.266667pt;}
.y3fb{bottom:20.800000pt;}
.y327{bottom:21.213333pt;}
.y2f5{bottom:21.426667pt;}
.y406{bottom:22.093333pt;}
.y2bc{bottom:22.426667pt;}
.y295{bottom:22.706667pt;}
.y27a{bottom:22.720000pt;}
.y298{bottom:22.746667pt;}
.y296{bottom:23.026667pt;}
.y29b{bottom:23.040000pt;}
.y29a{bottom:23.066667pt;}
.yef{bottom:23.986667pt;}
.y21d{bottom:24.000000pt;}
.yf9{bottom:24.026667pt;}
.y169{bottom:24.320000pt;}
.y161{bottom:24.346667pt;}
.y166{bottom:24.626667pt;}
.y16b{bottom:24.640000pt;}
.y27c{bottom:24.653333pt;}
.y162{bottom:24.666667pt;}
.y167{bottom:24.946667pt;}
.y2db{bottom:24.960000pt;}
.y41d{bottom:25.280000pt;}
.y43d{bottom:25.586667pt;}
.y2f7{bottom:26.546667pt;}
.y104{bottom:26.560000pt;}
.yf5{bottom:26.880000pt;}
.y2f3{bottom:27.506667pt;}
.y277{bottom:28.480000pt;}
.y445{bottom:29.146667pt;}
.y108{bottom:30.400000pt;}
.yf3{bottom:30.720000pt;}
.y24b{bottom:31.040000pt;}
.y101{bottom:32.640000pt;}
.y2dd{bottom:32.960000pt;}
.y2e5{bottom:33.266667pt;}
.y2da{bottom:33.280000pt;}
.yfc{bottom:33.306667pt;}
.y279{bottom:34.560000pt;}
.y41c{bottom:34.880000pt;}
.yee{bottom:37.106667pt;}
.y17{bottom:37.120000pt;}
.yf8{bottom:37.146667pt;}
.y3fa{bottom:37.760000pt;}
.y2f6{bottom:38.386667pt;}
.y16e{bottom:38.400000pt;}
.y16f{bottom:38.720000pt;}
.y170{bottom:39.360000pt;}
.y405{bottom:40.013333pt;}
.y103{bottom:41.920000pt;}
.yf4{bottom:42.240000pt;}
.y107{bottom:43.520000pt;}
.yf2{bottom:43.840000pt;}
.y100{bottom:45.760000pt;}
.y43c{bottom:48.306667pt;}
.yfb{bottom:48.666667pt;}
.y223{bottom:49.946667pt;}
.y226{bottom:50.226667pt;}
.y21e{bottom:50.240000pt;}
.yf7{bottom:50.266667pt;}
.y326{bottom:53.253333pt;}
.y3f9{bottom:55.040000pt;}
.y444{bottom:56.666667pt;}
.y102{bottom:57.280000pt;}
.y404{bottom:57.933333pt;}
.yff{bottom:58.880000pt;}
.y222{bottom:63.066667pt;}
.y1{bottom:70.116000pt;}
.y324{bottom:72.320000pt;}
.y3f8{bottom:72.346667pt;}
.y403{bottom:75.533333pt;}
.y318{bottom:89.626667pt;}
.y402{bottom:93.453333pt;}
.y443{bottom:100.186667pt;}
.y429{bottom:105.956000pt;}
.y3f7{bottom:106.586667pt;}
.y319{bottom:109.946667pt;}
.y401{bottom:111.373333pt;}
.y40b{bottom:113.316000pt;}
.y3c9{bottom:123.556000pt;}
.y3f6{bottom:123.866667pt;}
.y3e6{bottom:124.836000pt;}
.y3a0{bottom:126.756000pt;}
.y7a{bottom:127.076000pt;}
.y400{bottom:129.333333pt;}
.y31a{bottom:130.266667pt;}
.y1bb{bottom:130.912000pt;}
.y1d1{bottom:131.232000pt;}
.yae{bottom:131.872000pt;}
.y379{bottom:132.516000pt;}
.y149{bottom:133.152000pt;}
.y177{bottom:134.746667pt;}
.yc2{bottom:136.026667pt;}
.y20d{bottom:136.986667pt;}
.y28e{bottom:137.946667pt;}
.y2ac{bottom:140.186667pt;}
.y2ce{bottom:140.826667pt;}
.y3f5{bottom:141.146667pt;}
.y22f{bottom:143.386667pt;}
.y238{bottom:143.706667pt;}
.y442{bottom:143.733333pt;}
.y3c8{bottom:144.360000pt;}
.yd0{bottom:144.666667pt;}
.y64{bottom:146.586667pt;}
.y3ff{bottom:147.253333pt;}
.y427{bottom:147.546667pt;}
.y334{bottom:148.186667pt;}
.y39f{bottom:148.200000pt;}
.y181{bottom:148.506667pt;}
.y10f{bottom:149.786667pt;}
.yad{bottom:150.106667pt;}
.y31b{bottom:150.586667pt;}
.y346{bottom:151.706667pt;}
.y378{bottom:151.720000pt;}
.y131{bottom:152.346667pt;}
.y1af{bottom:155.866667pt;}
.y1e9{bottom:156.186667pt;}
.y265{bottom:157.146667pt;}
.y325{bottom:157.786667pt;}
.y3f4{bottom:158.106667pt;}
.y1ba{bottom:158.426667pt;}
.y156{bottom:158.746667pt;}
.y2b8{bottom:159.706667pt;}
.y13f{bottom:160.346667pt;}
.y11f{bottom:160.666667pt;}
.y27f{bottom:161.626667pt;}
.y198{bottom:162.266667pt;}
.y176{bottom:162.586667pt;}
.y2e2{bottom:163.226667pt;}
.yc1{bottom:163.586667pt;}
.y20c{bottom:164.546667pt;}
.y63{bottom:164.866667pt;}
.y79{bottom:164.880000pt;}
.y3fe{bottom:165.173333pt;}
.y3c7{bottom:165.200000pt;}
.y310{bottom:165.506667pt;}
.y90{bottom:166.786667pt;}
.y39e{bottom:167.440000pt;}
.y2ab{bottom:167.746667pt;}
.y3e5{bottom:169.040000pt;}
.y31c{bottom:170.906667pt;}
.y377{bottom:170.960000pt;}
.y237{bottom:171.266667pt;}
.y441{bottom:171.573333pt;}
.y2cd{bottom:171.906667pt;}
.ycf{bottom:172.226667pt;}
.y2ed{bottom:172.866667pt;}
.y9f{bottom:173.506667pt;}
.y439{bottom:175.106667pt;}
.y3f3{bottom:175.386667pt;}
.y180{bottom:176.386667pt;}
.y10e{bottom:177.346667pt;}
.yac{bottom:177.986667pt;}
.y28d{bottom:178.946667pt;}
.y345{bottom:179.586667pt;}
.y130{bottom:179.906667pt;}
.y43b{bottom:181.840000pt;}
.y21b{bottom:182.146667pt;}
.y62{bottom:183.106667pt;}
.ye6{bottom:183.426667pt;}
.y1e8{bottom:183.746667pt;}
.y22e{bottom:185.666667pt;}
.y48{bottom:185.986667pt;}
.y3c6{bottom:186.000000pt;}
.y1d0{bottom:186.306667pt;}
.y39d{bottom:186.640000pt;}
.y249{bottom:187.266667pt;}
.y213{bottom:187.906667pt;}
.y11e{bottom:188.226667pt;}
.y27e{bottom:188.866667pt;}
.y197{bottom:189.826667pt;}
.y3e4{bottom:189.840000pt;}
.y426{bottom:190.146667pt;}
.y376{bottom:190.160000pt;}
.yc0{bottom:191.106667pt;}
.y31d{bottom:191.226667pt;}
.y333{bottom:191.746667pt;}
.y20b{bottom:192.386667pt;}
.y16{bottom:192.706667pt;}
.y30f{bottom:193.026667pt;}
.y2aa{bottom:195.586667pt;}
.y440{bottom:199.093333pt;}
.y236{bottom:199.106667pt;}
.yce{bottom:199.746667pt;}
.y264{bottom:200.706667pt;}
.y61{bottom:201.666667pt;}
.y155{bottom:202.306667pt;}
.y78{bottom:202.640000pt;}
.y2b7{bottom:203.266667pt;}
.y17f{bottom:203.906667pt;}
.y10d{bottom:204.866667pt;}
.y1a0{bottom:205.826667pt;}
.y39c{bottom:205.840000pt;}
.y28c{bottom:206.466667pt;}
.y2e1{bottom:206.786667pt;}
.y3c5{bottom:206.800000pt;}
.y343{bottom:207.106667pt;}
.y2ec{bottom:209.026667pt;}
.y375{bottom:209.360000pt;}
.y3f2{bottom:209.986667pt;}
.y8f{bottom:210.306667pt;}
.y3e3{bottom:210.640000pt;}
.y1ae{bottom:210.946667pt;}
.y31e{bottom:211.546667pt;}
.y1e7{bottom:211.586667pt;}
.y2cc{bottom:212.880000pt;}
.y1b9{bottom:213.506667pt;}
.y1cf{bottom:213.826667pt;}
.y212{bottom:215.426667pt;}
.y11d{bottom:215.746667pt;}
.y9e{bottom:217.026667pt;}
.y33d{bottom:218.626667pt;}
.y332{bottom:219.586667pt;}
.y60{bottom:219.906667pt;}
.y30e{bottom:220.546667pt;}
.yab{bottom:221.506667pt;}
.y2a9{bottom:223.106667pt;}
.y12f{bottom:223.746667pt;}
.y438{bottom:224.066667pt;}
.y39b{bottom:225.040000pt;}
.y21a{bottom:225.986667pt;}
.y43f{bottom:226.613333pt;}
.y22d{bottom:226.626667pt;}
.ye5{bottom:226.946667pt;}
.y126{bottom:227.586667pt;}
.y3c4{bottom:227.600000pt;}
.y374{bottom:228.560000pt;}
.y40a{bottom:228.866667pt;}
.y47{bottom:229.506667pt;}
.y27d{bottom:229.840000pt;}
.y248{bottom:231.106667pt;}
.y17e{bottom:231.426667pt;}
.y3e2{bottom:231.440000pt;}
.y20f{bottom:231.746667pt;}
.y31f{bottom:231.866667pt;}
.y15{bottom:232.386667pt;}
.y10c{bottom:232.706667pt;}
.y19f{bottom:233.346667pt;}
.y196{bottom:233.666667pt;}
.y28b{bottom:233.986667pt;}
.ybf{bottom:234.626667pt;}
.y20a{bottom:235.906667pt;}
.y5f{bottom:238.466667pt;}
.y1ad{bottom:238.786667pt;}
.y1e6{bottom:239.106667pt;}
.y2e0{bottom:240.066667pt;}
.y77{bottom:240.400000pt;}
.y1b8{bottom:241.346667pt;}
.y1ce{bottom:241.666667pt;}
.y175{bottom:242.626667pt;}
.y2cb{bottom:242.960000pt;}
.ycd{bottom:243.586667pt;}
.y408{bottom:243.920000pt;}
.y263{bottom:244.226667pt;}
.y39a{bottom:244.240000pt;}
.y13e{bottom:244.546667pt;}
.y154{bottom:245.826667pt;}
.y331{bottom:247.106667pt;}
.y32a{bottom:247.426667pt;}
.y373{bottom:247.760000pt;}
.y30d{bottom:248.386667pt;}
.y3c3{bottom:248.400000pt;}
.y342{bottom:250.626667pt;}
.y320{bottom:252.160000pt;}
.y3e1{bottom:252.240000pt;}
.y2df{bottom:253.506667pt;}
.y8e{bottom:253.826667pt;}
.y125{bottom:255.106667pt;}
.y5e{bottom:256.706667pt;}
.y2b6{bottom:258.626667pt;}
.y1e1{bottom:258.946667pt;}
.y20e{bottom:259.586667pt;}
.y9d{bottom:260.866667pt;}
.y195{bottom:261.186667pt;}
.y3f1{bottom:261.506667pt;}
.y28a{bottom:261.826667pt;}
.ybe{bottom:262.146667pt;}
.y316{bottom:263.106667pt;}
.y209{bottom:263.426667pt;}
.y399{bottom:263.440000pt;}
.yaa{bottom:265.026667pt;}
.y1ac{bottom:266.306667pt;}
.y2a8{bottom:266.626667pt;}
.y372{bottom:266.960000pt;}
.y3fd{bottom:267.920000pt;}
.y1b7{bottom:268.866667pt;}
.y1cd{bottom:269.186667pt;}
.y3c2{bottom:269.200000pt;}
.y219{bottom:269.506667pt;}
.y235{bottom:270.146667pt;}
.ye4{bottom:270.786667pt;}
.y11c{bottom:271.106667pt;}
.y14{bottom:272.066667pt;}
.y422{bottom:272.386667pt;}
.y321{bottom:272.480000pt;}
.y46{bottom:273.026667pt;}
.y3e0{bottom:273.040000pt;}
.y437{bottom:273.346667pt;}
.y27b{bottom:273.680000pt;}
.y247{bottom:274.626667pt;}
.y17d{bottom:274.946667pt;}
.y5d{bottom:275.266667pt;}
.y30c{bottom:275.906667pt;}
.y2ca{bottom:275.920000pt;}
.y76{bottom:278.173333pt;}
.y174{bottom:279.133333pt;}
.y2de{bottom:281.053333pt;}
.y1e5{bottom:282.653333pt;}
.y2b5{bottom:286.173333pt;}
.y211{bottom:286.813333pt;}
.ycc{bottom:287.133333pt;}
.y262{bottom:287.773333pt;}
.y194{bottom:288.733333pt;}
.y153{bottom:289.373333pt;}
.ybd{bottom:290.013333pt;}
.y208{bottom:290.973333pt;}
.y322{bottom:292.800000pt;}
.y12e{bottom:293.213333pt;}
.y3df{bottom:293.853333pt;}
.y347{bottom:294.173333pt;}
.y2dc{bottom:294.813333pt;}
.y1b6{bottom:296.733333pt;}
.y12c{bottom:297.053333pt;}
.y8d{bottom:297.693333pt;}
.ye3{bottom:298.333333pt;}
.y11b{bottom:298.653333pt;}
.y13d{bottom:299.613333pt;}
.y45{bottom:300.893333pt;}
.y398{bottom:301.853333pt;}
.y330{bottom:302.173333pt;}
.y10b{bottom:302.493333pt;}
.y17c{bottom:302.813333pt;}
.y12d{bottom:303.133333pt;}
.y289{bottom:303.773333pt;}
.y9c{bottom:304.413333pt;}
.y371{bottom:305.373333pt;}
.y341{bottom:306.013333pt;}
.ya9{bottom:308.573333pt;}
.y173{bottom:308.893333pt;}
.y1ab{bottom:309.853333pt;}
.y1e4{bottom:310.173333pt;}
.y3c1{bottom:310.813333pt;}
.y13{bottom:311.453333pt;}
.y218{bottom:313.053333pt;}
.y323{bottom:313.120000pt;}
.y2b4{bottom:313.693333pt;}
.y210{bottom:314.333333pt;}
.ycb{bottom:314.653333pt;}
.y421{bottom:314.973333pt;}
.y261{bottom:315.613333pt;}
.y75{bottom:315.933333pt;}
.y193{bottom:316.253333pt;}
.ybc{bottom:317.533333pt;}
.y246{bottom:318.173333pt;}
.y207{bottom:318.813333pt;}
.y5c{bottom:319.133333pt;}
.y30b{bottom:319.453333pt;}
.y276{bottom:320.413333pt;}
.y397{bottom:321.053333pt;}
.y436{bottom:322.333333pt;}
.y1cc{bottom:324.573333pt;}
.y1b5{bottom:325.213333pt;}
.y11a{bottom:326.173333pt;}
.y13c{bottom:327.133333pt;}
.y315{bottom:328.093333pt;}
.y44{bottom:328.413333pt;}
.y10a{bottom:329.693333pt;}
.y32f{bottom:330.013333pt;}
.y17b{bottom:330.333333pt;}
.y3c0{bottom:331.613333pt;}
.y152{bottom:333.213333pt;}
.y3de{bottom:335.453333pt;}
.y2c9{bottom:335.773333pt;}
.y1aa{bottom:337.373333pt;}
.y1e3{bottom:338.013333pt;}
.y172{bottom:338.653333pt;}
.y396{bottom:340.253333pt;}
.y33b{bottom:340.573333pt;}
.y8c{bottom:341.213333pt;}
.y12b{bottom:341.533333pt;}
.ye2{bottom:341.853333pt;}
.yca{bottom:342.173333pt;}
.y260{bottom:343.133333pt;}
.y29e{bottom:343.773333pt;}
.y192{bottom:344.093333pt;}
.y106{bottom:344.733333pt;}
.y329{bottom:346.333333pt;}
.y5b{bottom:346.653333pt;}
.y30a{bottom:346.973333pt;}
.y9b{bottom:347.933333pt;}
.y340{bottom:349.533333pt;}
.y12{bottom:351.133333pt;}
.ya8{bottom:352.413333pt;}
.y1b4{bottom:352.733333pt;}
.y1cb{bottom:353.053333pt;}
.y22c{bottom:353.373333pt;}
.y73{bottom:354.013333pt;}
.y13b{bottom:354.973333pt;}
.y314{bottom:355.613333pt;}
.y43{bottom:355.933333pt;}
.y3dd{bottom:356.253333pt;}
.y217{bottom:356.573333pt;}
.y420{bottom:356.893333pt;}
.y2b3{bottom:357.533333pt;}
.y17a{bottom:357.853333pt;}
.y395{bottom:359.453333pt;}
.y19e{bottom:359.773333pt;}
.ybb{bottom:361.053333pt;}
.y245{bottom:361.693333pt;}
.y206{bottom:362.333333pt;}
.y370{bottom:362.973333pt;}
.y2c8{bottom:363.293333pt;}
.y1a9{bottom:365.213333pt;}
.y2a7{bottom:365.533333pt;}
.y33a{bottom:368.093333pt;}
.y171{bottom:368.413333pt;}
.y12a{bottom:369.053333pt;}
.ye1{bottom:369.373333pt;}
.yc9{bottom:370.013333pt;}
.y25f{bottom:370.653333pt;}
.y191{bottom:371.613333pt;}
.y22b{bottom:372.893333pt;}
.y3bf{bottom:373.213333pt;}
.y328{bottom:373.853333pt;}
.y5a{bottom:374.173333pt;}
.y309{bottom:374.813333pt;}
.y151{bottom:376.733333pt;}
.y33f{bottom:377.053333pt;}
.y394{bottom:378.653333pt;}
.ya7{bottom:379.933333pt;}
.y1b3{bottom:380.253333pt;}
.y1ca{bottom:380.573333pt;}
.y148{bottom:381.533333pt;}
.y36f{bottom:382.173333pt;}
.y13a{bottom:382.493333pt;}
.y313{bottom:383.133333pt;}
.y42{bottom:383.453333pt;}
.y8b{bottom:384.733333pt;}
.y2b2{bottom:385.053333pt;}
.y179{bottom:385.373333pt;}
.y1eb{bottom:386.013333pt;}
.y30{bottom:387.613333pt;}
.yba{bottom:388.573333pt;}
.y244{bottom:389.573333pt;}
.y205{bottom:389.893333pt;}
.y11{bottom:390.853333pt;}
.y2c7{bottom:391.173333pt;}
.y9a{bottom:391.493333pt;}
.y72{bottom:391.813333pt;}
.y1a8{bottom:392.773333pt;}
.y2a6{bottom:393.093333pt;}
.y32b{bottom:393.413333pt;}
.y3be{bottom:394.053333pt;}
.y339{bottom:395.653333pt;}
.y129{bottom:396.613333pt;}
.ye0{bottom:397.253333pt;}
.yc8{bottom:397.573333pt;}
.y393{bottom:397.893333pt;}
.y25e{bottom:398.213333pt;}
.y190{bottom:399.173333pt;}
.y216{bottom:400.453333pt;}
.y23e{bottom:401.413333pt;}
.y59{bottom:402.053333pt;}
.y308{bottom:402.373333pt;}
.y22a{bottom:403.333333pt;}
.y275{bottom:403.973333pt;}
.yfe{bottom:407.173333pt;}
.y1b2{bottom:408.133333pt;}
.y1c9{bottom:408.453333pt;}
.y147{bottom:409.093333pt;}
.y41{bottom:411.013333pt;}
.y139{bottom:411.333333pt;}
.y2b1{bottom:412.613333pt;}
.y1e0{bottom:413.253333pt;}
.y1ea{bottom:413.573333pt;}
.y3bd{bottom:414.853333pt;}
.y2f{bottom:415.173333pt;}
.y2d9{bottom:415.493333pt;}
.y288{bottom:416.133333pt;}
.y33c{bottom:416.453333pt;}
.y243{bottom:417.093333pt;}
.y204{bottom:417.413333pt;}
.y2c6{bottom:418.693333pt;}
.y150{bottom:420.293333pt;}
.y1f4{bottom:420.613333pt;}
.ya6{bottom:423.493333pt;}
.y234{bottom:424.133333pt;}
.ydf{bottom:424.773333pt;}
.y119{bottom:425.093333pt;}
.y25d{bottom:426.053333pt;}
.y18f{bottom:426.693333pt;}
.y312{bottom:427.013333pt;}
.y178{bottom:427.653333pt;}
.y8a{bottom:428.293333pt;}
.y23d{bottom:429.253333pt;}
.y58{bottom:429.573333pt;}
.y10{bottom:430.533333pt;}
.y274{bottom:431.493333pt;}
.yb9{bottom:432.453333pt;}
.y99{bottom:435.333333pt;}
.y1b1{bottom:435.653333pt;}
.y1c8{bottom:435.973333pt;}
.y1a7{bottom:436.293333pt;}
.y146{bottom:436.613333pt;}
.y40{bottom:438.853333pt;}
.y41f{bottom:439.173333pt;}
.y3dc{bottom:439.493333pt;}
.y36e{bottom:439.813333pt;}
.y2b0{bottom:440.133333pt;}
.y32e{bottom:440.453333pt;}
.y1df{bottom:440.773333pt;}
.yc7{bottom:441.093333pt;}
.y29d{bottom:441.413333pt;}
.y19d{bottom:442.693333pt;}
.y287{bottom:443.653333pt;}
.y215{bottom:443.973333pt;}
.y229{bottom:444.293333pt;}
.y242{bottom:444.613333pt;}
.y203{bottom:445.253333pt;}
.y307{bottom:445.893333pt;}
.y3fc{bottom:446.853333pt;}
.y33e{bottom:448.453333pt;}
.y338{bottom:451.013333pt;}
.yde{bottom:452.293333pt;}
.y118{bottom:452.613333pt;}
.y25c{bottom:453.573333pt;}
.yf{bottom:454.213333pt;}
.y18e{bottom:454.533333pt;}
.y16d{bottom:454.853333pt;}
.y392{bottom:455.493333pt;}
.y3bc{bottom:456.453333pt;}
.y23c{bottom:456.773333pt;}
.y57{bottom:457.093333pt;}
.y2e{bottom:458.693333pt;}
.y36d{bottom:459.013333pt;}
.yb8{bottom:459.973333pt;}
.y311{bottom:460.293333pt;}
.y2c5{bottom:462.213333pt;}
.y1b0{bottom:463.493333pt;}
.y14f{bottom:463.813333pt;}
.y1f3{bottom:464.133333pt;}
.y2a5{bottom:464.453333pt;}
.y3f{bottom:466.373333pt;}
.ya5{bottom:467.013333pt;}
.y71{bottom:467.333333pt;}
.y233{bottom:467.973333pt;}
.y1de{bottom:468.293333pt;}
.yc6{bottom:468.613333pt;}
.y435{bottom:469.893333pt;}
.y19c{bottom:470.213333pt;}
.y89{bottom:472.133333pt;}
.y202{bottom:472.773333pt;}
.y391{bottom:474.693333pt;}
.y273{bottom:475.333333pt;}
.y344{bottom:475.973333pt;}
.y2d8{bottom:476.933333pt;}
.y3bb{bottom:477.253333pt;}
.y36c{bottom:478.213333pt;}
.y98{bottom:478.853333pt;}
.y306{bottom:479.173333pt;}
.y128{bottom:479.813333pt;}
.y117{bottom:480.453333pt;}
.y3db{bottom:481.093333pt;}
.y41e{bottom:481.733333pt;}
.y18d{bottom:482.053333pt;}
.y29c{bottom:482.373333pt;}
.y23b{bottom:484.293333pt;}
.y56{bottom:484.613333pt;}
.y2d{bottom:486.533333pt;}
.yb7{bottom:487.493333pt;}
.y2c4{bottom:489.733333pt;}
.y1c7{bottom:491.013333pt;}
.y1a6{bottom:491.653333pt;}
.y2a4{bottom:491.973333pt;}
.ye{bottom:493.893333pt;}
.y138{bottom:494.213333pt;}
.y337{bottom:494.853333pt;}
.y232{bottom:495.493333pt;}
.ydd{bottom:495.813333pt;}
.yc5{bottom:496.453333pt;}
.y36b{bottom:497.413333pt;}
.y3ba{bottom:498.053333pt;}
.y317{bottom:498.560000pt;}
.y23{bottom:499.333333pt;}
.y241{bottom:499.973333pt;}
.y201{bottom:500.293333pt;}
.y3da{bottom:501.893333pt;}
.y70{bottom:505.120000pt;}
.y305{bottom:506.400000pt;}
.y3a7{bottom:507.040000pt;}
.y14e{bottom:507.680000pt;}
.y116{bottom:508.000000pt;}
.y18c{bottom:509.600000pt;}
.y2af{bottom:510.240000pt;}
.ya4{bottom:510.880000pt;}
.y1dd{bottom:511.840000pt;}
.y55{bottom:512.480000pt;}
.y228{bottom:512.800000pt;}
.y390{bottom:513.120000pt;}
.y2c{bottom:515.040000pt;}
.y88{bottom:515.680000pt;}
.y36a{bottom:516.640000pt;}
.y2d7{bottom:518.240000pt;}
.y1c6{bottom:518.880000pt;}
.y1a5{bottom:519.200000pt;}
.y1f2{bottom:519.520000pt;}
.y304{bottom:520.160000pt;}
.y34f{bottom:520.480000pt;}
.y3e{bottom:521.440000pt;}
.y97{bottom:522.400000pt;}
.y137{bottom:522.720000pt;}
.y336{bottom:523.360000pt;}
.ydc{bottom:523.680000pt;}
.yc4{bottom:524.000000pt;}
.y240{bottom:527.520000pt;}
.y200{bottom:527.840000pt;}
.y355{bottom:529.760000pt;}
.y25b{bottom:530.400000pt;}
.y214{bottom:531.040000pt;}
.y2c3{bottom:532.000000pt;}
.y38f{bottom:532.320000pt;}
.yd{bottom:533.600000pt;}
.y115{bottom:535.520000pt;}
.y369{bottom:535.840000pt;}
.y231{bottom:537.760000pt;}
.y3ed{bottom:538.720000pt;}
.y1dc{bottom:539.680000pt;}
.y54{bottom:540.000000pt;}
.y22{bottom:542.880000pt;}
.y2d6{bottom:543.520000pt;}
.y1c5{bottom:546.400000pt;}
.y2a3{bottom:547.040000pt;}
.y19b{bottom:547.360000pt;}
.y1f1{bottom:548.000000pt;}
.y34e{bottom:548.320000pt;}
.y3d{bottom:549.280000pt;}
.y302{bottom:550.240000pt;}
.y136{bottom:550.560000pt;}
.ydb{bottom:551.200000pt;}
.y124{bottom:551.520000pt;}
.y18b{bottom:551.840000pt;}
.y272{bottom:552.160000pt;}
.yf1{bottom:553.440000pt;}
.ya3{bottom:554.400000pt;}
.y368{bottom:555.040000pt;}
.y1ff{bottom:555.680000pt;}
.y16c{bottom:556.640000pt;}
.yb6{bottom:558.880000pt;}
.y87{bottom:559.200000pt;}
.y25a{bottom:560.160000pt;}
.y3b9{bottom:560.480000pt;}
.y1a4{bottom:562.720000pt;}
.y145{bottom:563.040000pt;}
.y3d9{bottom:564.320000pt;}
.y96{bottom:565.920000pt;}
.y3a6{bottom:566.880000pt;}
.y1db{bottom:567.200000pt;}
.y53{bottom:567.520000pt;}
.y434{bottom:568.160000pt;}
.y2d5{bottom:568.800000pt;}
.y23f{bottom:569.760000pt;}
.y38e{bottom:570.720000pt;}
.y2b{bottom:571.360000pt;}
.y2c2{bottom:573.280000pt;}
.y2eb{bottom:574.240000pt;}
.y286{bottom:574.560000pt;}
.yc{bottom:574.880000pt;}
.y1c4{bottom:575.200000pt;}
.y1f0{bottom:575.840000pt;}
.y3c{bottom:576.800000pt;}
.y19a{bottom:577.120000pt;}
.y135{bottom:578.080000pt;}
.yda{bottom:578.720000pt;}
.y114{bottom:579.040000pt;}
.y271{bottom:579.360000pt;}
.y300{bottom:580.000000pt;}
.y6f{bottom:580.640000pt;}
.y335{bottom:580.960000pt;}
.y227{bottom:581.280000pt;}
.ya2{bottom:581.920000pt;}
.y3ec{bottom:582.880000pt;}
.y1fe{bottom:583.200000pt;}
.y3d8{bottom:585.120000pt;}
.y21{bottom:586.400000pt;}
.y168{bottom:587.040000pt;}
.y259{bottom:587.360000pt;}
.y38d{bottom:589.920000pt;}
.y1a3{bottom:590.240000pt;}
.y144{bottom:590.880000pt;}
.y18a{bottom:592.800000pt;}
.y270{bottom:593.120000pt;}
.y2ae{bottom:593.440000pt;}
.y1da{bottom:594.720000pt;}
.y52{bottom:595.040000pt;}
.y297{bottom:598.560000pt;}
.y2a{bottom:598.880000pt;}
.y2ea{bottom:600.800000pt;}
.y258{bottom:601.120000pt;}
.y2fe{bottom:601.760000pt;}
.y3b7{bottom:602.080000pt;}
.y2a2{bottom:602.400000pt;}
.y86{bottom:602.720000pt;}
.y3b{bottom:604.320000pt;}
.y134{bottom:605.600000pt;}
.y3d7{bottom:605.920000pt;}
.yd9{bottom:606.240000pt;}
.y2c1{bottom:606.560000pt;}
.y113{bottom:606.880000pt;}
.y34d{bottom:607.840000pt;}
.y38c{bottom:609.120000pt;}
.y95{bottom:609.760000pt;}
.y2d4{bottom:610.080000pt;}
.y23a{bottom:610.720000pt;}
.y365{bottom:612.640000pt;}
.y199{bottom:613.280000pt;}
.y20{bottom:613.920000pt;}
.yb{bottom:616.826667pt;}
.y354{bottom:617.146667pt;}
.y433{bottom:617.466667pt;}
.y143{bottom:618.426667pt;}
.y6e{bottom:618.440000pt;}
.yed{bottom:619.720000pt;}
.y189{bottom:620.346667pt;}
.y127{bottom:620.986667pt;}
.y14d{bottom:622.266667pt;}
.y51{bottom:622.906667pt;}
.y3b6{bottom:622.920000pt;}
.y2fc{bottom:623.880000pt;}
.ya1{bottom:625.466667pt;}
.y3a5{bottom:626.426667pt;}
.y29{bottom:626.746667pt;}
.y3d6{bottom:626.760000pt;}
.y2e9{bottom:628.346667pt;}
.y38b{bottom:628.360000pt;}
.y41b{bottom:629.306667pt;}
.y2a1{bottom:629.946667pt;}
.y1c3{bottom:630.266667pt;}
.y26f{bottom:630.280000pt;}
.y165{bottom:630.600000pt;}
.y3a{bottom:631.866667pt;}
.y364{bottom:631.880000pt;}
.y1ef{bottom:632.186667pt;}
.y133{bottom:633.146667pt;}
.y2c0{bottom:633.466667pt;}
.y1a2{bottom:633.786667pt;}
.yd8{bottom:634.106667pt;}
.y112{bottom:634.426667pt;}
.y2d3{bottom:635.386667pt;}
.y239{bottom:638.266667pt;}
.y257{bottom:638.280000pt;}
.y294{bottom:640.520000pt;}
.y3eb{bottom:642.426667pt;}
.y3b5{bottom:643.720000pt;}
.y2fa{bottom:645.640000pt;}
.y2ad{bottom:645.946667pt;}
.y85{bottom:646.586667pt;}
.y2bf{bottom:647.560000pt;}
.y188{bottom:648.186667pt;}
.y14c{bottom:649.786667pt;}
.y225{bottom:649.800000pt;}
.y32d{bottom:650.106667pt;}
.y50{bottom:650.426667pt;}
.y363{bottom:651.080000pt;}
.y285{bottom:651.386667pt;}
.y94{bottom:653.306667pt;}
.y1c2{bottom:654.266667pt;}
.y28{bottom:655.546667pt;}
.ya{bottom:656.506667pt;}
.y6c{bottom:656.520000pt;}
.y1f{bottom:657.466667pt;}
.y39{bottom:659.706667pt;}
.y1ee{bottom:660.026667pt;}
.y2d2{bottom:660.666667pt;}
.y132{bottom:660.986667pt;}
.y142{bottom:661.626667pt;}
.y111{bottom:661.946667pt;}
.y1c1{bottom:662.266667pt;}
.y3b4{bottom:664.520000pt;}
.y284{bottom:665.146667pt;}
.y1d9{bottom:665.786667pt;}
.y432{bottom:666.426667pt;}
.y38a{bottom:666.760000pt;}
.y26e{bottom:667.400000pt;}
.y34c{bottom:667.706667pt;}
.y3d5{bottom:668.360000pt;}
.y2f2{bottom:670.280000pt;}
.y41a{bottom:671.866667pt;}
.y2e8{bottom:672.186667pt;}
.y2a0{bottom:673.466667pt;}
.y163{bottom:675.080000pt;}
.y256{bottom:675.400000pt;}
.y187{bottom:675.706667pt;}
.y353{bottom:676.666667pt;}
.yd7{bottom:677.626667pt;}
.y2be{bottom:677.640000pt;}
.y4f{bottom:677.946667pt;}
.y1fd{bottom:681.786667pt;}
.y293{bottom:682.440000pt;}
.y27{bottom:684.346667pt;}
.y1e{bottom:685.306667pt;}
.y3b3{bottom:685.320000pt;}
.y2d1{bottom:685.946667pt;}
.y389{bottom:685.960000pt;}
.y38{bottom:687.226667pt;}
.y1ed{bottom:688.506667pt;}
.y3d4{bottom:689.160000pt;}
.y110{bottom:689.466667pt;}
.y362{bottom:689.480000pt;}
.y84{bottom:690.106667pt;}
.y283{bottom:692.346667pt;}
.y1c0{bottom:692.986667pt;}
.y1d8{bottom:693.626667pt;}
.y6b{bottom:694.280000pt;}
.y93{bottom:696.826667pt;}
.y29f{bottom:701.306667pt;}
.y3ea{bottom:701.946667pt;}
.y9{bottom:703.226667pt;}
.y186{bottom:703.546667pt;}
.y26d{bottom:704.200000pt;}
.y160{bottom:704.840000pt;}
.yd6{bottom:705.146667pt;}
.y388{bottom:705.160000pt;}
.y4e{bottom:705.466667pt;}
.y3b2{bottom:706.120000pt;}
.y282{bottom:706.440000pt;}
.yec{bottom:708.026667pt;}
.y361{bottom:708.680000pt;}
.y1fc{bottom:709.626667pt;}
.y3d3{bottom:709.960000pt;}
.y2bb{bottom:710.600000pt;}
.y292{bottom:711.880000pt;}
.y254{bottom:712.520000pt;}
.y1d{bottom:712.826667pt;}
.y43e{bottom:712.840000pt;}
.y417{bottom:713.786667pt;}
.y37{bottom:714.746667pt;}
.y431{bottom:715.706667pt;}
.y1ec{bottom:716.346667pt;}
.y140{bottom:717.306667pt;}
.y221{bottom:718.280000pt;}
.y1bf{bottom:720.506667pt;}
.y1d7{bottom:721.146667pt;}
.y2ef{bottom:722.440000pt;}
.y387{bottom:724.360000pt;}
.yd1{bottom:725.946667pt;}
.y3b0{bottom:726.920000pt;}
.y34b{bottom:727.226667pt;}
.y360{bottom:727.920000pt;}
.y26{bottom:728.866667pt;}
.y3d2{bottom:730.800000pt;}
.y185{bottom:732.066667pt;}
.y6a{bottom:732.080000pt;}
.y2e7{bottom:732.386667pt;}
.yd5{bottom:732.706667pt;}
.y4d{bottom:733.346667pt;}
.y83{bottom:733.666667pt;}
.yeb{bottom:735.906667pt;}
.y352{bottom:736.546667pt;}
.y1fb{bottom:737.186667pt;}
.y281{bottom:739.120000pt;}
.y92{bottom:740.386667pt;}
.y26c{bottom:741.360000pt;}
.y290{bottom:741.680000pt;}
.y36{bottom:742.306667pt;}
.y8{bottom:742.626667pt;}
.y386{bottom:743.600000pt;}
.y1e2{bottom:744.866667pt;}
.y3a4{bottom:745.506667pt;}
.y2e4{bottom:746.480000pt;}
.y35f{bottom:747.120000pt;}
.y230{bottom:747.426667pt;}
.y3af{bottom:747.760000pt;}
.y1be{bottom:748.066667pt;}
.y15f{bottom:748.400000pt;}
.y1d6{bottom:748.706667pt;}
.y123{bottom:749.346667pt;}
.y253{bottom:749.360000pt;}
.y3d1{bottom:751.600000pt;}
.y416{bottom:756.066667pt;}
.y1c{bottom:756.386667pt;}
.y184{bottom:759.586667pt;}
.y14b{bottom:760.226667pt;}
.yd4{bottom:760.546667pt;}
.y4c{bottom:760.866667pt;}
.y3e9{bottom:761.506667pt;}
.y385{bottom:762.800000pt;}
.y1fa{bottom:764.706667pt;}
.y35e{bottom:766.320000pt;}
.yb5{bottom:767.906667pt;}
.y3ae{bottom:768.560000pt;}
.y69{bottom:769.840000pt;}
.y35{bottom:770.146667pt;}
.y280{bottom:772.080000pt;}
.y25{bottom:772.386667pt;}
.y3d0{bottom:772.400000pt;}
.y28f{bottom:772.720000pt;}
.y2cf{bottom:773.986667pt;}
.y1a1{bottom:774.946667pt;}
.y1bd{bottom:775.586667pt;}
.y1d5{bottom:776.226667pt;}
.y122{bottom:776.866667pt;}
.y82{bottom:777.186667pt;}
.y15e{bottom:778.160000pt;}
.y26b{bottom:778.480000pt;}
.yea{bottom:779.746667pt;}
.y7{bottom:781.986667pt;}
.y384{bottom:782.000000pt;}
.y2ba{bottom:782.306667pt;}
.y1b{bottom:783.906667pt;}
.y35d{bottom:785.520000pt;}
.y251{bottom:786.480000pt;}
.y34a{bottom:786.786667pt;}
.y183{bottom:787.106667pt;}
.yd3{bottom:788.066667pt;}
.y4b{bottom:788.386667pt;}
.y3ad{bottom:789.360000pt;}
.y1f9{bottom:792.226667pt;}
.y2d0{bottom:792.546667pt;}
.y3cf{bottom:793.200000pt;}
.yb1{bottom:795.746667pt;}
.y351{bottom:796.066667pt;}
.y34{bottom:797.666667pt;}
.y21f{bottom:799.600000pt;}
.y24{bottom:799.906667pt;}
.ya0{bottom:800.226667pt;}
.y383{bottom:801.200000pt;}
.y7f{bottom:801.506667pt;}
.y14a{bottom:802.466667pt;}
.y1bc{bottom:803.426667pt;}
.y1d4{bottom:804.066667pt;}
.y121{bottom:804.386667pt;}
.y35b{bottom:804.720000pt;}
.y3a3{bottom:805.026667pt;}
.y67{bottom:807.600000pt;}
.y15c{bottom:807.920000pt;}
.y2e3{bottom:808.560000pt;}
.y3ac{bottom:810.160000pt;}
.y430{bottom:813.986667pt;}
.y3ce{bottom:814.000000pt;}
.y182{bottom:814.946667pt;}
.y269{bottom:815.600000pt;}
.y4a{bottom:815.906667pt;}
.y7e{bottom:815.920000pt;}
.y1f8{bottom:820.066667pt;}
.y382{bottom:820.400000pt;}
.y81{bottom:820.706667pt;}
.y3e8{bottom:821.026667pt;}
.y24f{bottom:823.600000pt;}
.ye9{bottom:824.226667pt;}
.y33{bottom:825.186667pt;}
.y358{bottom:826.480000pt;}
.y2b9{bottom:827.106667pt;}
.y1a{bottom:827.746667pt;}
.yd2{bottom:830.306667pt;}
.y3aa{bottom:830.960000pt;}
.y1d3{bottom:831.586667pt;}
.y120{bottom:831.906667pt;}
.yb4{bottom:834.786667pt;}
.y3cc{bottom:834.800000pt;}
.y6{bottom:837.346667pt;}
.y159{bottom:837.680000pt;}
.y413{bottom:838.626667pt;}
.yb0{bottom:839.266667pt;}
.y380{bottom:839.600000pt;}
.y49{bottom:843.773333pt;}
.y65{bottom:845.373333pt;}
.y349{bottom:846.333333pt;}
.y1f7{bottom:847.613333pt;}
.y268{bottom:852.413333pt;}
.y32{bottom:852.733333pt;}
.y7d{bottom:853.693333pt;}
.y3a8{bottom:854.333333pt;}
.y350{bottom:855.613333pt;}
.y21c{bottom:857.853333pt;}
.y37f{bottom:858.813333pt;}
.yc3{bottom:859.773333pt;}
.yb3{bottom:862.013333pt;}
.y42f{bottom:862.973333pt;}
.y24a{bottom:863.293333pt;}
.y80{bottom:864.893333pt;}
.y158{bottom:868.413333pt;}
.ye8{bottom:869.053333pt;}
.y19{bottom:871.293333pt;}
.y1d2{bottom:873.853333pt;}
.y1f6{bottom:875.133333pt;}
.y3cb{bottom:876.413333pt;}
.y37e{bottom:878.013333pt;}
.y410{bottom:880.253333pt;}
.yaf{bottom:883.133333pt;}
.y43a{bottom:884.733333pt;}
.y357{bottom:885.053333pt;}
.y31{bottom:887.293333pt;}
.y32c{bottom:887.613333pt;}
.y266{bottom:889.533333pt;}
.y7c{bottom:891.453333pt;}
.y5{bottom:892.733333pt;}
.y348{bottom:896.573333pt;}
.yb2{bottom:896.893333pt;}
.y157{bottom:898.813333pt;}
.y24c{bottom:899.133333pt;}
.y37b{bottom:900.093333pt;}
.y42e{bottom:912.253333pt;}
.ye7{bottom:913.853333pt;}
.y141{bottom:914.493333pt;}
.y91{bottom:914.813333pt;}
.y18{bottom:915.133333pt;}
.y2ee{bottom:917.053333pt;}
.y1f5{bottom:917.373333pt;}
.y356{bottom:918.333333pt;}
.y40e{bottom:922.813333pt;}
.y3{bottom:929.213333pt;}
.y3f0{bottom:950.973333pt;}
.y42d{bottom:961.573333pt;}
.y40d{bottom:974.373333pt;}
.y40c{bottom:993.893333pt;}
.y3ef{bottom:994.853333pt;}
.y42c{bottom:995.173333pt;}
.y3ee{bottom:1044.773333pt;}
.h2{height:2.556000pt;}
.h7e{height:17.916000pt;}
.h6d{height:18.556000pt;}
.h66{height:18.866667pt;}
.h6b{height:18.876000pt;}
.h68{height:18.880000pt;}
.h6a{height:18.898667pt;}
.h69{height:18.906667pt;}
.h67{height:18.912000pt;}
.h6f{height:20.466667pt;}
.h73{height:20.476000pt;}
.h6e{height:20.480000pt;}
.h70{height:20.498667pt;}
.h72{height:20.506667pt;}
.h71{height:20.512000pt;}
.h5a{height:21.426667pt;}
.h5c{height:21.440000pt;}
.h59{height:21.746667pt;}
.h56{height:21.778667pt;}
.h5b{height:21.792000pt;}
.h7b{height:23.986667pt;}
.h6c{height:26.226667pt;}
.h65{height:26.240000pt;}
.h44{height:26.546667pt;}
.h37{height:27.186667pt;}
.h41{height:27.826667pt;}
.h4d{height:27.840000pt;}
.h46{height:28.146667pt;}
.h48{height:28.498667pt;}
.h1e{height:29.106667pt;}
.h5d{height:29.120000pt;}
.h5e{height:29.440000pt;}
.h21{height:29.746667pt;}
.h26{height:29.760000pt;}
.h42{height:29.778667pt;}
.h1f{height:30.080000pt;}
.h51{height:30.386667pt;}
.h30{height:31.411875pt;}
.h1c{height:31.893750pt;}
.h38{height:32.946667pt;}
.h45{height:34.196250pt;}
.h57{height:36.171250pt;}
.h3d{height:36.466667pt;}
.h39{height:36.480000pt;}
.h3b{height:36.498667pt;}
.h3a{height:36.786667pt;}
.h3e{height:36.818667pt;}
.h3c{height:36.832000pt;}
.h9{height:37.746667pt;}
.ha{height:37.760000pt;}
.hb{height:37.778667pt;}
.he{height:37.786667pt;}
.hf{height:37.788000pt;}
.hd{height:37.792000pt;}
.hc{height:38.066667pt;}
.h63{height:39.033750pt;}
.h86{height:39.040000pt;}
.h8a{height:39.360000pt;}
.h23{height:39.377500pt;}
.h4c{height:39.378667pt;}
.h62{height:39.978750pt;}
.h80{height:40.032000pt;}
.h61{height:40.073937pt;}
.h8d{height:40.163750pt;}
.h49{height:40.626667pt;}
.h4b{height:40.640000pt;}
.h4a{height:40.672000pt;}
.h43{height:41.456250pt;}
.h75{height:41.457500pt;}
.h8c{height:41.596000pt;}
.h88{height:41.600000pt;}
.h84{height:41.632000pt;}
.h82{height:41.920000pt;}
.h89{height:41.952000pt;}
.h85{height:42.560000pt;}
.h47{height:42.570000pt;}
.h8b{height:42.592000pt;}
.h7c{height:42.751250pt;}
.h40{height:43.506667pt;}
.h27{height:43.520000pt;}
.h13{height:43.522500pt;}
.h22{height:43.538667pt;}
.h25{height:43.552000pt;}
.h55{height:43.786250pt;}
.h24{height:43.826667pt;}
.h7d{height:47.593750pt;}
.h52{height:47.667500pt;}
.h1a{height:47.737500pt;}
.h78{height:47.986667pt;}
.h19{height:49.020000pt;}
.h58{height:49.266667pt;}
.h20{height:49.994255pt;}
.h3f{height:51.506667pt;}
.h5{height:51.812500pt;}
.h15{height:52.762500pt;}
.h7f{height:53.903750pt;}
.h2b{height:54.180000pt;}
.h1b{height:54.614624pt;}
.h2f{height:55.040000pt;}
.h2a{height:55.256809pt;}
.h12{height:55.346667pt;}
.h76{height:56.346667pt;}
.h10{height:57.375000pt;}
.h28{height:57.626667pt;}
.h50{height:57.787500pt;}
.h29{height:58.226667pt;}
.h54{height:59.186667pt;}
.h53{height:59.226667pt;}
.h83{height:60.030000pt;}
.h6{height:60.102500pt;}
.h81{height:60.519362pt;}
.h18{height:61.786667pt;}
.h14{height:62.112000pt;}
.h87{height:62.752000pt;}
.h64{height:62.781250pt;}
.h3{height:62.812500pt;}
.h36{height:63.026667pt;}
.h8{height:64.500000pt;}
.h8e{height:65.586667pt;}
.h7{height:65.781915pt;}
.h32{height:68.146667pt;}
.h34{height:68.160000pt;}
.h35{height:68.186667pt;}
.h33{height:68.192000pt;}
.h2e{height:68.466667pt;}
.h16{height:68.506667pt;}
.h2c{height:69.013750pt;}
.h5f{height:70.896250pt;}
.h4e{height:74.133750pt;}
.h11{height:74.820000pt;}
.h8f{height:76.146667pt;}
.h17{height:77.106667pt;}
.h1d{height:78.172500pt;}
.h31{height:80.978667pt;}
.h79{height:82.915000pt;}
.h4{height:86.008750pt;}
.h2d{height:94.781250pt;}
.h4f{height:94.812500pt;}
.h77{height:135.187500pt;}
.h7a{height:178.920000pt;}
.h90{height:257.040000pt;}
.h60{height:331.840000pt;}
.h74{height:395.280000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w30{width:33.580000pt;}
.w2a{width:33.900000pt;}
.w35{width:45.746667pt;}
.w37{width:47.386667pt;}
.w32{width:55.026667pt;}
.w34{width:55.040000pt;}
.w33{width:56.338667pt;}
.w36{width:56.346667pt;}
.w2c{width:56.626667pt;}
.w3a{width:56.978667pt;}
.w20{width:58.266667pt;}
.w3e{width:59.858667pt;}
.w45{width:64.032000pt;}
.we{width:65.260000pt;}
.wb{width:79.712000pt;}
.wa{width:80.026667pt;}
.w3{width:82.880000pt;}
.w6{width:84.186667pt;}
.w3c{width:86.106667pt;}
.w40{width:87.386667pt;}
.w31{width:92.544000pt;}
.w2d{width:92.864000pt;}
.w1b{width:100.160000pt;}
.w1e{width:100.224000pt;}
.w1d{width:100.506667pt;}
.w3b{width:103.040000pt;}
.w41{width:104.640000pt;}
.w3f{width:105.600000pt;}
.wd{width:116.186667pt;}
.wc{width:117.800000pt;}
.w5{width:120.640000pt;}
.w46{width:121.024000pt;}
.w2b{width:121.960000pt;}
.w10{width:125.152000pt;}
.w14{width:126.418667pt;}
.w15{width:127.720000pt;}
.w16{width:128.360000pt;}
.w1a{width:142.466667pt;}
.w2f{width:150.146667pt;}
.w19{width:156.546667pt;}
.w2e{width:167.080000pt;}
.w28{width:167.746667pt;}
.w29{width:167.760000pt;}
.w24{width:172.840000pt;}
.w7{width:173.213333pt;}
.wf{width:180.560000pt;}
.w9{width:187.880000pt;}
.w18{width:200.680000pt;}
.w1c{width:201.053333pt;}
.w8{width:202.600000pt;}
.w23{width:202.653333pt;}
.w22{width:205.480000pt;}
.w26{width:209.360000pt;}
.w11{width:209.680000pt;}
.w25{width:212.226667pt;}
.w1f{width:213.800000pt;}
.w13{width:255.120000pt;}
.w12{width:323.633333pt;}
.w39{width:326.513333pt;}
.w21{width:327.160000pt;}
.w3d{width:328.113333pt;}
.w27{width:335.826667pt;}
.w17{width:380.940000pt;}
.w47{width:436.654667pt;}
.w4{width:512.506667pt;}
.w44{width:517.626667pt;}
.w38{width:566.080000pt;}
.w42{width:600.520000pt;}
.w43{width:600.546667pt;}
.w2{width:609.480000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x71{left:4.466667pt;}
.x7b{left:5.440000pt;}
.x7e{left:6.440000pt;}
.x15{left:7.340000pt;}
.x76{left:8.622667pt;}
.x2{left:9.580000pt;}
.x77{left:10.880000pt;}
.x41{left:12.462667pt;}
.x20{left:14.080000pt;}
.x66{left:15.066667pt;}
.x22{left:16.640000pt;}
.x5c{left:17.600000pt;}
.x29{left:18.542667pt;}
.x33{left:19.822667pt;}
.x5b{left:21.440000pt;}
.x24{left:22.746667pt;}
.x65{left:23.706667pt;}
.x69{left:24.626667pt;}
.x3e{left:26.222667pt;}
.x2c{left:27.182667pt;}
.x21{left:28.200000pt;}
.x25{left:29.146667pt;}
.x3b{left:30.080000pt;}
.x61{left:31.040000pt;}
.x90{left:32.040000pt;}
.x1d{left:33.582667pt;}
.x1e{left:34.542667pt;}
.x2a{left:36.142667pt;}
.x80{left:37.186667pt;}
.x38{left:39.706667pt;}
.x2b{left:41.262667pt;}
.x28{left:43.826667pt;}
.x91{left:45.122667pt;}
.x62{left:47.066667pt;}
.x3d{left:48.320000pt;}
.x3c{left:49.306667pt;}
.x4d{left:50.573333pt;}
.x46{left:53.760000pt;}
.x45{left:55.066667pt;}
.x27{left:56.946667pt;}
.x3a{left:57.920000pt;}
.x39{left:58.906667pt;}
.x75{left:59.880000pt;}
.x5e{left:62.440000pt;}
.x73{left:63.986667pt;}
.x6a{left:66.573333pt;}
.x67{left:74.569333pt;}
.x60{left:77.786667pt;}
.x58{left:81.933333pt;}
.x56{left:84.813333pt;}
.x4a{left:86.426667pt;}
.x57{left:95.373333pt;}
.x48{left:103.049333pt;}
.x8e{left:106.249333pt;}
.x51{left:109.129333pt;}
.x92{left:110.444000pt;}
.x4f{left:112.009333pt;}
.x53{left:113.306667pt;}
.x1{left:115.284000pt;}
.x4e{left:118.089333pt;}
.x64{left:123.266667pt;}
.x14{left:125.204000pt;}
.x70{left:127.764000pt;}
.x50{left:129.609333pt;}
.x4{left:132.544000pt;}
.x4c{left:134.729333pt;}
.x52{left:138.569333pt;}
.xb{left:140.226667pt;}
.x8a{left:142.409333pt;}
.x82{left:145.573333pt;}
.x6{left:147.906667pt;}
.x6e{left:149.186667pt;}
.x30{left:151.426667pt;}
.x54{left:155.249333pt;}
.x12{left:156.546667pt;}
.x7{left:157.826667pt;}
.x19{left:161.986667pt;}
.x13{left:180.546667pt;}
.x42{left:190.800000pt;}
.x31{left:203.613333pt;}
.x6b{left:204.893333pt;}
.x16{left:208.093333pt;}
.x59{left:216.093333pt;}
.xe{left:217.693333pt;}
.x32{left:227.613333pt;}
.x81{left:230.853333pt;}
.x1f{left:246.173333pt;}
.x6d{left:248.093333pt;}
.x8{left:283.973333pt;}
.x8d{left:300.236000pt;}
.x34{left:313.093333pt;}
.x5f{left:315.333333pt;}
.x8b{left:321.062667pt;}
.x47{left:324.613333pt;}
.x23{left:330.693333pt;}
.x63{left:339.653333pt;}
.x78{left:340.613333pt;}
.xa{left:345.733333pt;}
.x2e{left:366.880000pt;}
.x43{left:371.680000pt;}
.x5a{left:372.640000pt;}
.x8c{left:373.920000pt;}
.x83{left:375.840000pt;}
.x84{left:377.440000pt;}
.x35{left:393.120000pt;}
.x6c{left:394.400000pt;}
.xc{left:396.640000pt;}
.x2f{left:397.920000pt;}
.xf{left:404.640000pt;}
.x2d{left:410.080000pt;}
.x9{left:411.360000pt;}
.x1b{left:412.960000pt;}
.x1c{left:415.840000pt;}
.x18{left:417.440000pt;}
.x17{left:419.040000pt;}
.x11{left:420.640000pt;}
.x10{left:422.240000pt;}
.x5{left:425.440000pt;}
.x72{left:436.040000pt;}
.x49{left:451.720000pt;}
.x87{left:453.320000pt;}
.x85{left:454.920000pt;}
.x36{left:472.840000pt;}
.x79{left:491.400000pt;}
.x44{left:497.160000pt;}
.x26{left:504.240000pt;}
.x55{left:506.160000pt;}
.x88{left:513.520000pt;}
.x5d{left:515.440000pt;}
.x68{left:534.000000pt;}
.x7a{left:548.080000pt;}
.x4b{left:578.800000pt;}
.x37{left:590.653333pt;}
.x6f{left:601.853333pt;}
.x74{left:606.013333pt;}
.x1a{left:613.053333pt;}
.x89{left:619.453333pt;}
.x86{left:620.733333pt;}
.x3{left:622.653333pt;}
.x8f{left:642.813333pt;}
.x7c{left:652.093333pt;}
.x3f{left:654.973333pt;}
.x40{left:682.533333pt;}
.x7f{left:700.773333pt;}
.x7d{left:708.773333pt;}
.xd{left:718.693333pt;}
}




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