
    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_0fb9c3e72df3958602770e5c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_2341d3af42c55520db8806e6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091309;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_9ff0e7a67245b8665882126d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_48a72284f04a59edd9121bf0.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_95f82ba1c263fb6e43a51a50.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c097669f70c70ed909c6b0db.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_ddd2982d8bf9327f8ad2edfc.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2a487ce2beee390c4793658f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ba1e9b113f2e8db3c58d7660.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3304ea68ebf09e61ed3889b2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_aa44bd28d61f3cd79e3508c3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_32b78060c819c2ba0f946f3a.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_b700a748babaaa7df171dc4c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.767578;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_39343b31224f1350bcf66e0b.woff2')format("woff");}.fff{font-family:fff;line-height:1.153000;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_4e56751af9d7e5636d8984a6.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.155000;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_bc054119aa04e5144db85053.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.151000;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_aac5090b35d7d8766bbdbf95.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.155000;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_7f15e74d4314d1c532783d8c.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.116000;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_fa8d2b15dc3ef36ed86a8926.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.884000;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_d603f8fe2f78cdbed96785cd.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.110000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_aac5090b35d7d8766bbdbf95.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.155000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.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);}
.mc{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);}
.m1c{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);}
.md{transform:matrix(0.241482,0.000000,-0.064704,0.241482,0,0);-ms-transform:matrix(0.241482,0.000000,-0.064704,0.241482,0,0);-webkit-transform:matrix(0.241482,0.000000,-0.064704,0.241482,0,0);}
.m13{transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,0);-ms-transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,0);-webkit-transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,0);}
.m4{transform:matrix(0.243865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243865,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);}
.m1d{transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);}
.m8{transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245192,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.246912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246912,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.246982,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.246982,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.246982,0.000000,-0.051979,0.244537,0,0);}
.ma{transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248547,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248908,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249130,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249418,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249758,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252140,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253312,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253554,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);}
.v1{vertical-align:-82.800000px;}
.v6{vertical-align:-2.238600px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.250600px;}
.v7{vertical-align:4.541400px;}
.v8{vertical-align:6.221400px;}
.v9{vertical-align:17.982000px;}
.v5{vertical-align:86.400600px;}
.v4{vertical-align:90.149400px;}
.v2{vertical-align:100.800000px;}
.ls1d{letter-spacing:-3.213000px;}
.ls3e{letter-spacing:-2.160000px;}
.ls3d{letter-spacing:-1.104128px;}
.ls3c{letter-spacing:-1.080000px;}
.ls26{letter-spacing:-0.858000px;}
.ls37{letter-spacing:-0.840000px;}
.ls18{letter-spacing:-0.720000px;}
.ls27{letter-spacing:-0.702000px;}
.ls38{letter-spacing:-0.674745px;}
.lsd{letter-spacing:-0.648000px;}
.ls35{letter-spacing:-0.630000px;}
.ls39{letter-spacing:-0.540000px;}
.ls29{letter-spacing:-0.468000px;}
.ls32{letter-spacing:-0.420000px;}
.ls28{letter-spacing:-0.390000px;}
.ls36{letter-spacing:-0.300000px;}
.ls6{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.272400px;}
.ls13{letter-spacing:-0.216000px;}
.ls33{letter-spacing:-0.120000px;}
.ls15{letter-spacing:-0.106800px;}
.ls34{letter-spacing:-0.060000px;}
.ls17{letter-spacing:-0.025920px;}
.ls0{letter-spacing:0.000000px;}
.ls3b{letter-spacing:0.000162px;}
.ls11{letter-spacing:0.017280px;}
.ls16{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.072000px;}
.ls31{letter-spacing:0.090000px;}
.lsc{letter-spacing:0.106800px;}
.lsb{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.149760px;}
.ls3{letter-spacing:0.174240px;}
.ls2c{letter-spacing:0.180000px;}
.ls2d{letter-spacing:0.184021px;}
.lsf{letter-spacing:0.220320px;}
.ls7{letter-spacing:0.256200px;}
.ls14{letter-spacing:0.259800px;}
.ls19{letter-spacing:0.288000px;}
.ls2b{letter-spacing:0.311204px;}
.ls20{letter-spacing:0.312000px;}
.ls4{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.368043px;}
.ls2e{letter-spacing:0.420000px;}
.lsa{letter-spacing:0.432000px;}
.ls21{letter-spacing:0.468000px;}
.ls30{letter-spacing:0.480000px;}
.ls1e{letter-spacing:0.600000px;}
.ls5{letter-spacing:0.720000px;}
.ls3f{letter-spacing:0.745399px;}
.ls2a{letter-spacing:0.780000px;}
.ls22{letter-spacing:0.840000px;}
.ls23{letter-spacing:0.900000px;}
.ls1f{letter-spacing:1.200000px;}
.ls9{letter-spacing:5.328000px;}
.ls1c{letter-spacing:6.426000px;}
.ls2{letter-spacing:28.038720px;}
.ls8{letter-spacing:64.026720px;}
.lse{letter-spacing:197.976000px;}
.ls1b{letter-spacing:201.005760px;}
.ls3a{letter-spacing:201.690000px;}
.ls12{letter-spacing:205.896000px;}
.ls24{letter-spacing:295.186360px;}
.ls25{letter-spacing:300.787291px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws13{word-spacing:-61.047000px;}
.ws9{word-spacing:-59.760000px;}
.ws51{word-spacing:-38.015349px;}
.wsf3{word-spacing:-31.800000px;}
.ws99{word-spacing:-29.070000px;}
.ws52{word-spacing:-26.610721px;}
.ws1a{word-spacing:-25.704000px;}
.ws37{word-spacing:-23.850000px;}
.ws18{word-spacing:-22.950000px;}
.wsd1{word-spacing:-21.420000px;}
.wsd3{word-spacing:-20.748000px;}
.ws9a{word-spacing:-20.349000px;}
.ws12{word-spacing:-19.457280px;}
.ws3{word-spacing:-19.440000px;}
.ws10{word-spacing:-19.414080px;}
.ws78{word-spacing:-19.080000px;}
.wsf2{word-spacing:-18.360000px;}
.ws11{word-spacing:-18.288000px;}
.wsa{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws61{word-spacing:-16.745951px;}
.ws9b{word-spacing:-16.631725px;}
.ws8{word-spacing:-16.560000px;}
.ws17{word-spacing:-16.500000px;}
.ws19{word-spacing:-16.065000px;}
.ws6{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.226440px;}
.wsd{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.046800px;}
.wsd2{word-spacing:-14.994000px;}
.wsf{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.wse{word-spacing:-14.833200px;}
.ws79{word-spacing:-14.310000px;}
.ws7a{word-spacing:-13.525563px;}
.ws53{word-spacing:-11.740013px;}
.ws14{word-spacing:-9.720000px;}
.wsac{word-spacing:-8.970000px;}
.ws93{word-spacing:-8.640000px;}
.ws5a{word-spacing:-8.112000px;}
.ws94{word-spacing:-7.560000px;}
.wsea{word-spacing:-6.624000px;}
.ws7d{word-spacing:-6.480000px;}
.ws15{word-spacing:-6.426000px;}
.wsd6{word-spacing:-5.976000px;}
.ws26{word-spacing:-5.850000px;}
.ws24{word-spacing:-5.772000px;}
.wscd{word-spacing:-5.590493px;}
.wsd8{word-spacing:-5.328000px;}
.ws89{word-spacing:-5.040000px;}
.wsb0{word-spacing:-4.928948px;}
.ws82{word-spacing:-4.920000px;}
.wse1{word-spacing:-4.752000px;}
.wsdb{word-spacing:-4.608000px;}
.wsc8{word-spacing:-4.464000px;}
.ws3f{word-spacing:-4.392000px;}
.ws22{word-spacing:-4.368000px;}
.wsb6{word-spacing:-4.278000px;}
.ws54{word-spacing:-4.200000px;}
.wsa2{word-spacing:-4.071740px;}
.wsd5{word-spacing:-4.032000px;}
.wsce{word-spacing:-3.960000px;}
.wsbd{word-spacing:-3.864000px;}
.ws35{word-spacing:-3.780000px;}
.ws64{word-spacing:-3.660000px;}
.ws3a{word-spacing:-3.384000px;}
.wsb3{word-spacing:-3.381000px;}
.wsc7{word-spacing:-3.312000px;}
.ws67{word-spacing:-3.240000px;}
.ws76{word-spacing:-3.060000px;}
.wsbb{word-spacing:-2.967000px;}
.ws34{word-spacing:-2.940000px;}
.wsbc{word-spacing:-2.898000px;}
.ws59{word-spacing:-2.886000px;}
.ws48{word-spacing:-2.808000px;}
.wsf5{word-spacing:-2.608897px;}
.ws65{word-spacing:-2.460000px;}
.ws44{word-spacing:-2.448000px;}
.ws66{word-spacing:-2.400000px;}
.wsd4{word-spacing:-2.160000px;}
.wsb2{word-spacing:-2.071587px;}
.wsb1{word-spacing:-2.001000px;}
.ws55{word-spacing:-1.950000px;}
.ws8e{word-spacing:-1.944000px;}
.wseb{word-spacing:-1.872000px;}
.wsa3{word-spacing:-1.863000px;}
.ws83{word-spacing:-1.800000px;}
.ws50{word-spacing:-1.620000px;}
.ws49{word-spacing:-1.584000px;}
.ws23{word-spacing:-1.560000px;}
.ws7e{word-spacing:-1.512000px;}
.ws31{word-spacing:-1.440000px;}
.wsa9{word-spacing:-1.380000px;}
.ws73{word-spacing:-1.320000px;}
.wsdd{word-spacing:-1.296000px;}
.ws9f{word-spacing:-1.242000px;}
.ws32{word-spacing:-1.200000px;}
.ws4f{word-spacing:-1.118097px;}
.ws98{word-spacing:-1.104128px;}
.ws4e{word-spacing:-1.080000px;}
.ws4d{word-spacing:-0.960000px;}
.ws68{word-spacing:-0.900000px;}
.wsa4{word-spacing:-0.897000px;}
.ws36{word-spacing:-0.840000px;}
.ws2c{word-spacing:-0.780000px;}
.ws41{word-spacing:-0.720000px;}
.ws29{word-spacing:-0.702000px;}
.wsc4{word-spacing:-0.690000px;}
.ws7f{word-spacing:-0.648000px;}
.ws1f{word-spacing:-0.600000px;}
.ws8b{word-spacing:-0.576000px;}
.ws97{word-spacing:-0.552064px;}
.ws80{word-spacing:-0.540000px;}
.ws62{word-spacing:-0.490724px;}
.ws63{word-spacing:-0.480000px;}
.ws33{word-spacing:-0.450000px;}
.ws43{word-spacing:-0.432000px;}
.ws30{word-spacing:-0.420000px;}
.ws8d{word-spacing:-0.360000px;}
.wsb7{word-spacing:-0.345000px;}
.ws84{word-spacing:-0.240000px;}
.ws4a{word-spacing:-0.216000px;}
.wsf4{word-spacing:-0.120000px;}
.ws0{word-spacing:0.000000px;}
.wsa8{word-spacing:0.069000px;}
.ws88{word-spacing:0.120000px;}
.wsc0{word-spacing:0.138000px;}
.wsae{word-spacing:0.276000px;}
.ws3b{word-spacing:0.360000px;}
.ws70{word-spacing:0.368043px;}
.ws69{word-spacing:0.420000px;}
.ws3e{word-spacing:0.432000px;}
.ws2f{word-spacing:0.468000px;}
.ws39{word-spacing:0.576000px;}
.wsc3{word-spacing:0.621000px;}
.ws5f{word-spacing:0.624000px;}
.wsc1{word-spacing:0.690000px;}
.wse2{word-spacing:0.720000px;}
.wse0{word-spacing:0.864000px;}
.ws60{word-spacing:0.900000px;}
.ws42{word-spacing:1.043559px;}
.ws96{word-spacing:1.080000px;}
.ws95{word-spacing:1.104128px;}
.ws6b{word-spacing:1.260000px;}
.ws74{word-spacing:1.320000px;}
.ws75{word-spacing:1.349491px;}
.ws6f{word-spacing:1.533512px;}
.ws71{word-spacing:1.560000px;}
.wsda{word-spacing:1.584000px;}
.wsaf{word-spacing:1.714417px;}
.wsec{word-spacing:1.800000px;}
.wsf1{word-spacing:1.872000px;}
.ws86{word-spacing:1.980000px;}
.ws28{word-spacing:2.184000px;}
.wsa6{word-spacing:2.484000px;}
.wsd7{word-spacing:2.520000px;}
.ws9e{word-spacing:2.553000px;}
.ws6a{word-spacing:2.580000px;}
.wse9{word-spacing:2.592000px;}
.ws6e{word-spacing:2.700000px;}
.wsa0{word-spacing:2.829000px;}
.ws20{word-spacing:2.886000px;}
.ws25{word-spacing:2.964000px;}
.ws2e{word-spacing:3.042000px;}
.ws7c{word-spacing:3.096000px;}
.ws2b{word-spacing:3.120000px;}
.ws6c{word-spacing:3.180000px;}
.ws16{word-spacing:3.213000px;}
.ws77{word-spacing:3.240000px;}
.ws6d{word-spacing:3.251045px;}
.wsc6{word-spacing:3.384000px;}
.wsca{word-spacing:3.456000px;}
.ws8a{word-spacing:3.600000px;}
.wsf0{word-spacing:3.672000px;}
.ws27{word-spacing:3.744000px;}
.ws45{word-spacing:3.888000px;}
.ws2d{word-spacing:3.900000px;}
.wsb9{word-spacing:4.140000px;}
.wsa1{word-spacing:4.278000px;}
.ws58{word-spacing:4.368000px;}
.ws92{word-spacing:4.392000px;}
.ws81{word-spacing:4.560000px;}
.wsdf{word-spacing:4.608000px;}
.wsa7{word-spacing:4.761000px;}
.wsa5{word-spacing:4.830000px;}
.wse8{word-spacing:4.968000px;}
.wsad{word-spacing:5.106000px;}
.ws21{word-spacing:5.226000px;}
.wsb5{word-spacing:5.244000px;}
.ws72{word-spacing:5.340000px;}
.ws47{word-spacing:5.832000px;}
.wse6{word-spacing:6.264000px;}
.ws57{word-spacing:6.396000px;}
.ws46{word-spacing:6.624000px;}
.wsb4{word-spacing:6.857667px;}
.wse5{word-spacing:7.128000px;}
.wsbf{word-spacing:7.245000px;}
.ws5e{word-spacing:7.254000px;}
.wsba{word-spacing:7.383000px;}
.ws5d{word-spacing:7.956000px;}
.ws38{word-spacing:7.992000px;}
.wsde{word-spacing:8.280000px;}
.ws85{word-spacing:8.460000px;}
.ws4c{word-spacing:8.640000px;}
.wsbe{word-spacing:8.929254px;}
.ws3d{word-spacing:9.216000px;}
.ws87{word-spacing:9.240000px;}
.ws7b{word-spacing:9.432000px;}
.wsef{word-spacing:9.720000px;}
.wsb8{word-spacing:9.936000px;}
.ws4b{word-spacing:10.224000px;}
.ws9d{word-spacing:10.419000px;}
.ws40{word-spacing:10.440000px;}
.wsed{word-spacing:11.016000px;}
.wsc2{word-spacing:11.040000px;}
.wsaa{word-spacing:11.316000px;}
.wse4{word-spacing:11.664000px;}
.wsab{word-spacing:11.715181px;}
.wsc9{word-spacing:12.024000px;}
.ws90{word-spacing:12.432000px;}
.wsd9{word-spacing:12.456000px;}
.ws9c{word-spacing:12.834000px;}
.wsdc{word-spacing:13.464000px;}
.ws91{word-spacing:14.688000px;}
.ws8f{word-spacing:15.072000px;}
.ws5c{word-spacing:15.210000px;}
.wscf{word-spacing:16.488000px;}
.ws8c{word-spacing:20.520000px;}
.wse3{word-spacing:20.880000px;}
.ws5b{word-spacing:21.840000px;}
.wscc{word-spacing:22.320000px;}
.ws56{word-spacing:22.698000px;}
.ws2a{word-spacing:24.336000px;}
.wscb{word-spacing:24.624000px;}
.wsee{word-spacing:27.000000px;}
.wse7{word-spacing:29.808000px;}
.ws3c{word-spacing:34.128000px;}
.wsc5{word-spacing:36.018000px;}
.wsd0{word-spacing:200.100000px;}
.ws1e{word-spacing:242.789016px;}
.ws1b{word-spacing:246.081653px;}
.ws1c{word-spacing:246.085337px;}
.ws1d{word-spacing:247.586033px;}
._5f{margin-left:-3652.068000px;}
._5d{margin-left:-3640.908600px;}
._54{margin-left:-3624.259200px;}
._5a{margin-left:-3621.018600px;}
._5e{margin-left:-199.137600px;}
._5c{margin-left:-41.857200px;}
._56{margin-left:-37.154400px;}
._50{margin-left:-27.953967px;}
._51{margin-left:-26.624400px;}
._15{margin-left:-16.001760px;}
._4c{margin-left:-14.400000px;}
._14{margin-left:-12.588000px;}
._57{margin-left:-10.767600px;}
._13{margin-left:-9.689760px;}
._16{margin-left:-8.292000px;}
._17{margin-left:-6.648000px;}
._23{margin-left:-4.926240px;}
._4{margin-left:-3.888000px;}
._5{margin-left:-2.768400px;}
._3{margin-left:-1.263600px;}
._0{width:1.053360px;}
._2{width:2.121600px;}
._1{width:3.230400px;}
._a{width:5.112000px;}
._6{width:6.984000px;}
._7{width:8.609280px;}
._1d{width:9.678720px;}
._1f{width:10.728000px;}
._26{width:11.841840px;}
._8{width:12.888000px;}
._9{width:14.160000px;}
._c{width:15.642240px;}
._19{width:16.910160px;}
._34{width:17.992080px;}
._10{width:19.074240px;}
._b{width:20.088000px;}
._20{width:21.240000px;}
._21{width:22.248000px;}
._d{width:23.688000px;}
._11{width:25.392000px;}
._1e{width:27.000000px;}
._25{width:28.232640px;}
._f{width:29.336400px;}
._e{width:30.927600px;}
._29{width:32.952000px;}
._1c{width:34.488000px;}
._24{width:35.594640px;}
._1a{width:36.720000px;}
._1b{width:37.800000px;}
._3f{width:39.600000px;}
._45{width:40.608000px;}
._31{width:42.194880px;}
._40{width:43.759200px;}
._39{width:45.064800px;}
._38{width:46.191600px;}
._41{width:48.344400px;}
._2c{width:51.606000px;}
._44{width:52.866000px;}
._28{width:53.976000px;}
._3d{width:55.080000px;}
._43{width:58.176000px;}
._12{width:59.736000px;}
._46{width:64.728000px;}
._47{width:65.846640px;}
._37{width:68.328000px;}
._4a{width:70.236000px;}
._35{width:72.000000px;}
._36{width:73.008000px;}
._30{width:78.825600px;}
._32{width:83.926080px;}
._3a{width:86.904000px;}
._3b{width:88.056000px;}
._2d{width:92.934720px;}
._42{width:99.471600px;}
._3c{width:100.512000px;}
._33{width:113.336640px;}
._3e{width:123.048000px;}
._2f{width:128.041920px;}
._2a{width:131.287680px;}
._4d{width:134.910240px;}
._27{width:138.534240px;}
._49{width:144.252000px;}
._55{width:159.966000px;}
._2b{width:171.826560px;}
._4e{width:172.926240px;}
._5b{width:184.395600px;}
._2e{width:186.531840px;}
._22{width:197.976000px;}
._4f{width:199.103520px;}
._59{width:201.690000px;}
._58{width:202.770000px;}
._4b{width:233.928000px;}
._48{width:846.156000px;}
._18{width:1685.076000px;}
._53{width:2168.608800px;}
._52{width:2940.606600px;}
.fc8{color:transparent;}
.fc7{color:rgb(116,114,115);}
.fca{color:rgb(214,90,41);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(33,37,41);}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(0,0,255);}
.fc9{color:rgb(35,31,32);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs22{font-size:31.482000px;}
.fse{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fs1e{font-size:42.000000px;}
.fs1f{font-size:43.481531px;}
.fs19{font-size:48.000000px;}
.fs8{font-size:48.240000px;}
.fs20{font-size:49.693267px;}
.fsc{font-size:54.000000px;}
.fs21{font-size:55.206381px;}
.fs1a{font-size:55.904847px;}
.fs29{font-size:58.800000px;}
.fs5{font-size:59.760000px;}
.fsf{font-size:60.000000px;}
.fs1d{font-size:61.340479px;}
.fs12{font-size:63.000000px;}
.fsb{font-size:63.360000px;}
.fs26{font-size:65.222451px;}
.fs6{font-size:66.240000px;}
.fs27{font-size:69.000000px;}
.fs28{font-size:71.434032px;}
.fs4{font-size:72.000000px;}
.fs18{font-size:74.539900px;}
.fs7{font-size:77.760000px;}
.fs13{font-size:78.000000px;}
.fs24{font-size:79.800000px;}
.fs17{font-size:84.000000px;}
.fs1{font-size:84.240000px;}
.fs11{font-size:90.000000px;}
.fs25{font-size:93.174797px;}
.fs0{font-size:95.760000px;}
.fs14{font-size:100.800000px;}
.fs1c{font-size:104.355767px;}
.fs23{font-size:114.000000px;}
.fs10{font-size:120.000000px;}
.fs3{font-size:120.240000px;}
.fs15{font-size:144.000000px;}
.fs1b{font-size:149.079800px;}
.fs2{font-size:167.760000px;}
.fsd{font-size:214.200000px;}
.fs16{font-size:227.797200px;}
.y0{bottom:0.000000px;}
.y1f0{bottom:3.960000px;}
.y20e{bottom:6.660000px;}
.y104{bottom:14.580000px;}
.yfa{bottom:15.120000px;}
.ye5{bottom:15.480000px;}
.y343{bottom:16.424700px;}
.ye9{bottom:18.000000px;}
.yfd{bottom:18.720000px;}
.yf2{bottom:24.120000px;}
.y237{bottom:24.654000px;}
.y1ef{bottom:24.660000px;}
.y239{bottom:24.690000px;}
.y362{bottom:25.499550px;}
.yed{bottom:26.685000px;}
.y20d{bottom:27.360000px;}
.yf6{bottom:29.190000px;}
.y103{bottom:33.480000px;}
.yf9{bottom:34.020000px;}
.ye4{bottom:34.380000px;}
.y342{bottom:34.424700px;}
.ye8{bottom:37.080000px;}
.yfc{bottom:37.620000px;}
.yf1{bottom:43.200000px;}
.y236{bottom:45.354000px;}
.y1ee{bottom:45.360000px;}
.yec{bottom:45.765000px;}
.y20c{bottom:48.060000px;}
.yf5{bottom:48.090000px;}
.y102{bottom:52.380000px;}
.y341{bottom:52.424700px;}
.yf8{bottom:53.100000px;}
.ye3{bottom:53.460000px;}
.y340{bottom:54.460650px;}
.ye7{bottom:55.980000px;}
.y5a{bottom:57.420000px;}
.yf0{bottom:62.100000px;}
.yeb{bottom:64.665000px;}
.y235{bottom:66.054000px;}
.y1ed{bottom:66.060000px;}
.yf4{bottom:67.170000px;}
.y20b{bottom:68.760000px;}
.y25f{bottom:68.805000px;}
.y101{bottom:71.460000px;}
.y59{bottom:77.616000px;}
.yef{bottom:81.000000px;}
.y46e{bottom:85.232550px;}
.y234{bottom:86.754000px;}
.y1ec{bottom:86.760000px;}
.y25b{bottom:86.805000px;}
.y3ee{bottom:88.319250px;}
.y20a{bottom:89.460000px;}
.y25e{bottom:89.505000px;}
.y100{bottom:90.405000px;}
.y38d{bottom:91.827900px;}
.y4b8{bottom:92.963400px;}
.y38e{bottom:93.383250px;}
.y3d3{bottom:96.079950px;}
.y46d{bottom:98.732550px;}
.y4eb{bottom:100.205400px;}
.y464{bottom:102.550500px;}
.y3ed{bottom:102.719250px;}
.y233{bottom:107.454000px;}
.y1eb{bottom:107.460000px;}
.y26e{bottom:107.490000px;}
.y25a{bottom:107.505000px;}
.y7f{bottom:109.476000px;}
.yff{bottom:109.485000px;}
.y209{bottom:110.160000px;}
.yaa{bottom:110.196000px;}
.y25d{bottom:110.205000px;}
.y14d{bottom:110.916000px;}
.y46c{bottom:112.232550px;}
.y175{bottom:114.696000px;}
.y124{bottom:115.416000px;}
.ycb{bottom:115.956000px;}
.y463{bottom:116.050500px;}
.y13{bottom:117.936000px;}
.y1c5{bottom:118.116000px;}
.y2b9{bottom:119.376000px;}
.y2e5{bottom:120.456000px;}
.y13a{bottom:123.336000px;}
.y4fd{bottom:123.928650px;}
.y4fb{bottom:124.308300px;}
.y36c{bottom:124.476450px;}
.y46b{bottom:125.732550px;}
.y7e{bottom:126.576000px;}
.y1a4{bottom:127.296000px;}
.y174{bottom:127.836000px;}
.y232{bottom:127.974000px;}
.y256{bottom:128.154000px;}
.y1ea{bottom:128.160000px;}
.y259{bottom:128.205000px;}
.y16d{bottom:129.456000px;}
.y462{bottom:129.550500px;}
.y50e{bottom:129.580500px;}
.y250{bottom:129.996000px;}
.y208{bottom:130.860000px;}
.y3d2{bottom:130.903500px;}
.y25c{bottom:130.905000px;}
.ybf{bottom:131.796000px;}
.y1a3{bottom:132.516000px;}
.y298{bottom:137.556000px;}
.y28b{bottom:138.096000px;}
.y4fc{bottom:138.328650px;}
.y1aa{bottom:138.636000px;}
.y4fa{bottom:138.708300px;}
.y46a{bottom:139.232550px;}
.y2e4{bottom:141.156000px;}
.yce{bottom:141.336000px;}
.y14c{bottom:142.056000px;}
.y461{bottom:143.050500px;}
.y20f{bottom:143.676000px;}
.y4a6{bottom:143.697750px;}
.y178{bottom:143.856000px;}
.y7d{bottom:144.576000px;}
.y50{bottom:144.756000px;}
.y1a2{bottom:144.936000px;}
.ybe{bottom:145.116000px;}
.ya9{bottom:145.656000px;}
.y123{bottom:146.376000px;}
.yca{bottom:146.916000px;}
.y3d1{bottom:147.103500px;}
.y231{bottom:148.674000px;}
.y255{bottom:148.854000px;}
.y284{bottom:148.860000px;}
.y1e9{bottom:148.905000px;}
.y177{bottom:149.076000px;}
.y1c4{bottom:149.256000px;}
.y7c{bottom:149.796000px;}
.y2b8{bottom:150.330000px;}
.y50d{bottom:151.180500px;}
.y36b{bottom:151.476450px;}
.y35{bottom:151.590000px;}
.y207{bottom:151.605000px;}
.y469{bottom:152.732550px;}
.y139{bottom:154.290000px;}
.y32a{bottom:154.830000px;}
.y30a{bottom:156.450000px;}
.y460{bottom:156.550500px;}
.y3cb{bottom:159.834150px;}
.y16c{bottom:160.590000px;}
.y2e3{bottom:161.850000px;}
.y4ec{bottom:161.852550px;}
.y1a1{bottom:162.210000px;}
.y12{bottom:162.390000px;}
.ya8{bottom:162.930000px;}
.y4a5{bottom:163.197750px;}
.y7b{bottom:163.470000px;}
.y468{bottom:166.232550px;}
.y1a9{bottom:167.790000px;}
.ya7{bottom:168.150000px;}
.y28a{bottom:169.230000px;}
.y230{bottom:169.374000px;}
.y254{bottom:169.554000px;}
.y283{bottom:169.560000px;}
.y258{bottom:169.605000px;}
.y45f{bottom:170.050500px;}
.ycd{bottom:172.290000px;}
.y206{bottom:172.305000px;}
.y50c{bottom:172.780500px;}
.y1a8{bottom:173.010000px;}
.y3ca{bottom:173.334150px;}
.y329{bottom:177.150000px;}
.y122{bottom:177.510000px;}
.yc9{bottom:178.050000px;}
.y309{bottom:178.770000px;}
.y4f{bottom:179.130000px;}
.y467{bottom:179.732550px;}
.y1a0{bottom:180.210000px;}
.y2b7{bottom:181.470000px;}
.y2e2{bottom:182.550000px;}
.y4a4{bottom:182.697750px;}
.y34{bottom:182.730000px;}
.y150{bottom:183.450000px;}
.y45e{bottom:183.550500px;}
.y138{bottom:185.430000px;}
.y1a7{bottom:186.330000px;}
.y297{bottom:186.690000px;}
.y3c9{bottom:186.834150px;}
.y22f{bottom:190.119000px;}
.y253{bottom:190.254000px;}
.y282{bottom:190.260000px;}
.y1e8{bottom:190.305000px;}
.y14b{bottom:191.010000px;}
.y16b{bottom:191.550000px;}
.y205{bottom:193.005000px;}
.y466{bottom:193.232550px;}
.y50b{bottom:194.380500px;}
.y11{bottom:194.610000px;}
.y1ca{bottom:195.330000px;}
.y45d{bottom:197.050500px;}
.ya6{bottom:198.210000px;}
.y19f{bottom:198.570000px;}
.y17c{bottom:199.470000px;}
.y289{bottom:200.190000px;}
.y3c8{bottom:200.334150px;}
.y4a3{bottom:202.197750px;}
.y2e1{bottom:203.250000px;}
.ybd{bottom:203.430000px;}
.y121{bottom:208.470000px;}
.yc8{bottom:209.010000px;}
.y7a{bottom:209.190000px;}
.y45c{bottom:210.550500px;}
.y22e{bottom:210.819000px;}
.y281{bottom:210.960000px;}
.y252{bottom:210.999000px;}
.y1e7{bottom:211.005000px;}
.y328{bottom:211.530000px;}
.y2b6{bottom:212.430000px;}
.y308{bottom:213.150000px;}
.y4e{bottom:213.330000px;}
.y204{bottom:213.705000px;}
.y3c7{bottom:213.834150px;}
.ya5{bottom:215.490000px;}
.y50a{bottom:215.980500px;}
.y105{bottom:216.030000px;}
.y137{bottom:216.390000px;}
.y19e{bottom:216.750000px;}
.y465{bottom:220.232550px;}
.ya4{bottom:220.710000px;}
.y4a2{bottom:221.697750px;}
.y14a{bottom:222.150000px;}
.y16a{bottom:222.690000px;}
.y2e0{bottom:223.950000px;}
.y45b{bottom:224.050500px;}
.y10{bottom:227.010000px;}
.y1c3{bottom:229.170000px;}
.y288{bottom:231.330000px;}
.y22d{bottom:231.519000px;}
.y280{bottom:231.660000px;}
.y33{bottom:231.690000px;}
.y251{bottom:231.699000px;}
.y1e6{bottom:231.705000px;}
.y327{bottom:233.850000px;}
.ybc{bottom:234.390000px;}
.y203{bottom:234.405000px;}
.y19d{bottom:235.110000px;}
.y307{bottom:235.470000px;}
.y296{bottom:235.650000px;}
.y45a{bottom:237.550500px;}
.y120{bottom:239.610000px;}
.y79{bottom:240.150000px;}
.y3c6{bottom:240.834150px;}
.y4a1{bottom:241.197750px;}
.y176{bottom:241.230000px;}
.y44d{bottom:243.311250px;}
.yfe{bottom:243.390000px;}
.y2b5{bottom:243.570000px;}
.ya3{bottom:244.650000px;}
.y136{bottom:247.350000px;}
.y4d{bottom:247.710000px;}
.ya2{bottom:249.870000px;}
.y459{bottom:251.050500px;}
.y22c{bottom:252.219000px;}
.y173{bottom:252.390000px;}
.y26c{bottom:252.399000px;}
.y1e5{bottom:252.405000px;}
.y149{bottom:253.110000px;}
.y19c{bottom:253.470000px;}
.y202{bottom:255.105000px;}
.y360{bottom:255.944100px;}
.y44c{bottom:256.811250px;}
.yf{bottom:259.410000px;}
.y1c2{bottom:260.310000px;}
.y3c5{bottom:260.334150px;}
.y4a0{bottom:260.697750px;}
.y287{bottom:262.110000px;}
.y32{bottom:262.650000px;}
.ya1{bottom:263.190000px;}
.y458{bottom:264.550500px;}
.ybb{bottom:265.350000px;}
.y326{bottom:268.230000px;}
.y44b{bottom:270.311250px;}
.y306{bottom:270.390000px;}
.y11f{bottom:270.570000px;}
.yc7{bottom:271.110000px;}
.y78{bottom:271.290000px;}
.y169{bottom:271.650000px;}
.y22b{bottom:272.919000px;}
.y27f{bottom:273.090000px;}
.y26b{bottom:273.099000px;}
.y1e4{bottom:273.105000px;}
.y2b4{bottom:274.530000px;}
.y201{bottom:275.805000px;}
.y50f{bottom:276.407550px;}
.y19b{bottom:276.870000px;}
.y457{bottom:278.050500px;}
.y135{bottom:278.490000px;}
.y35f{bottom:279.344100px;}
.y3c4{bottom:279.834150px;}
.y49f{bottom:280.197750px;}
.y478{bottom:281.697000px;}
.y172{bottom:283.350000px;}
.y44a{bottom:283.811250px;}
.y148{bottom:284.250000px;}
.y295{bottom:284.790000px;}
.y2df{bottom:286.050000px;}
.y19a{bottom:290.550000px;}
.y1c1{bottom:291.270000px;}
.ye1{bottom:291.450000px;}
.y456{bottom:291.550500px;}
.ye{bottom:291.810000px;}
.y22a{bottom:293.619000px;}
.y477{bottom:293.697000px;}
.y31{bottom:293.790000px;}
.y26a{bottom:293.799000px;}
.y1e3{bottom:293.805000px;}
.ycc{bottom:296.490000px;}
.y200{bottom:296.505000px;}
.y4c{bottom:296.670000px;}
.y449{bottom:297.311250px;}
.y3c3{bottom:299.334150px;}
.y11e{bottom:301.710000px;}
.y77{bottom:302.250000px;}
.y35e{bottom:302.744100px;}
.y168{bottom:302.790000px;}
.y286{bottom:303.150000px;}
.y305{bottom:303.510000px;}
.y455{bottom:305.050500px;}
.y2b3{bottom:305.670000px;}
.y476{bottom:305.697000px;}
.y2de{bottom:306.750000px;}
.y374{bottom:307.338150px;}
.y134{bottom:309.450000px;}
.y9f{bottom:309.810000px;}
.y448{bottom:310.811250px;}
.y229{bottom:314.319000px;}
.yba{bottom:314.490000px;}
.y269{bottom:314.499000px;}
.y1e2{bottom:314.505000px;}
.y147{bottom:315.210000px;}
.ya0{bottom:315.750000px;}
.y1ff{bottom:317.205000px;}
.y475{bottom:317.697000px;}
.y454{bottom:318.550500px;}
.y3c2{bottom:318.834150px;}
.y49e{bottom:319.197750px;}
.y285{bottom:322.050000px;}
.y1c0{bottom:322.410000px;}
.y447{bottom:324.311250px;}
.y30{bottom:324.750000px;}
.y325{bottom:324.930000px;}
.y199{bottom:325.110000px;}
.y304{bottom:325.830000px;}
.y35d{bottom:326.144100px;}
.y17b{bottom:327.495000px;}
.yd{bottom:328.215000px;}
.y474{bottom:329.697000px;}
.y453{bottom:332.050500px;}
.y11d{bottom:332.715000px;}
.yd0{bottom:333.255000px;}
.y76{bottom:333.435000px;}
.y167{bottom:333.795000px;}
.y228{bottom:335.019000px;}
.y27e{bottom:335.190000px;}
.y268{bottom:335.199000px;}
.y1e1{bottom:335.205000px;}
.y257{bottom:335.235000px;}
.y2b2{bottom:336.675000px;}
.y446{bottom:337.811250px;}
.y1fe{bottom:337.905000px;}
.y3c1{bottom:338.334150px;}
.y49d{bottom:338.697750px;}
.ye0{bottom:340.635000px;}
.y9e{bottom:340.815000px;}
.y473{bottom:341.697000px;}
.yc6{bottom:342.435000px;}
.yb9{bottom:345.495000px;}
.y452{bottom:345.550500px;}
.y4b{bottom:345.855000px;}
.y146{bottom:346.395000px;}
.y324{bottom:347.295000px;}
.y2dd{bottom:348.195000px;}
.y35c{bottom:349.544100px;}
.y271{bottom:349.635000px;}
.y445{bottom:351.311250px;}
.y1bf{bottom:353.415000px;}
.y472{bottom:353.697000px;}
.y227{bottom:355.719000px;}
.y27d{bottom:355.890000px;}
.y267{bottom:355.899000px;}
.y1e0{bottom:355.905000px;}
.y2f{bottom:355.935000px;}
.y198{bottom:356.115000px;}
.y3c0{bottom:357.834150px;}
.y49c{bottom:358.197750px;}
.y1fd{bottom:358.605000px;}
.y179{bottom:358.635000px;}
.y451{bottom:359.050500px;}
.y303{bottom:360.255000px;}
.y11c{bottom:363.855000px;}
.y75{bottom:364.395000px;}
.y444{bottom:364.811250px;}
.y166{bottom:364.935000px;}
.y17a{bottom:365.475000px;}
.y471{bottom:365.697000px;}
.y2b1{bottom:367.815000px;}
.y2dc{bottom:368.895000px;}
.ydf{bottom:371.595000px;}
.y9d{bottom:371.955000px;}
.y450{bottom:372.550500px;}
.y35b{bottom:372.944100px;}
.y226{bottom:376.419000px;}
.y27c{bottom:376.590000px;}
.y266{bottom:376.599000px;}
.y1df{bottom:376.605000px;}
.yb8{bottom:376.635000px;}
.y3bf{bottom:377.334150px;}
.y145{bottom:377.355000px;}
.y470{bottom:377.697000px;}
.y49b{bottom:377.697750px;}
.y443{bottom:378.311250px;}
.y36a{bottom:379.171950px;}
.y1fc{bottom:379.305000px;}
.y366{bottom:379.731600px;}
.y4a{bottom:380.775000px;}
.y302{bottom:380.955000px;}
.y323{bottom:382.035000px;}
.y294{bottom:382.935000px;}
.y1be{bottom:384.555000px;}
.y44f{bottom:386.050500px;}
.y2e{bottom:386.895000px;}
.y197{bottom:387.255000px;}
.y133{bottom:389.595000px;}
.y33f{bottom:389.675100px;}
.y442{bottom:391.811250px;}
.y11b{bottom:394.815000px;}
.y130{bottom:395.355000px;}
.y74{bottom:395.535000px;}
.y165{bottom:395.895000px;}
.y35a{bottom:396.344100px;}
.y3be{bottom:396.834150px;}
.y27b{bottom:397.110000px;}
.y225{bottom:397.119000px;}
.y49a{bottom:397.197750px;}
.y265{bottom:397.299000px;}
.y1de{bottom:397.305000px;}
.y2b0{bottom:398.775000px;}
.y1fb{bottom:400.035000px;}
.y24f{bottom:401.655000px;}
.yfb{bottom:402.555000px;}
.yde{bottom:402.735000px;}
.y9c{bottom:402.915000px;}
.y322{bottom:403.275000px;}
.ycf{bottom:404.535000px;}
.y3ec{bottom:405.930150px;}
.yb7{bottom:407.595000px;}
.y144{bottom:408.495000px;}
.y2db{bottom:410.295000px;}
.y44e{bottom:413.050500px;}
.y46f{bottom:413.697000px;}
.y1bd{bottom:415.515000px;}
.y499{bottom:416.697750px;}
.y27a{bottom:417.810000px;}
.y224{bottom:417.819000px;}
.y264{bottom:417.999000px;}
.y2d{bottom:418.035000px;}
.y49{bottom:418.215000px;}
.y441{bottom:418.811250px;}
.y132{bottom:420.735000px;}
.y301{bottom:422.355000px;}
.y3d0{bottom:425.352300px;}
.y11a{bottom:425.955000px;}
.y73{bottom:426.495000px;}
.y164{bottom:427.035000px;}
.y3eb{bottom:427.530150px;}
.y321{bottom:428.655000px;}
.y2af{bottom:429.915000px;}
.y2da{bottom:430.815000px;}
.y293{bottom:431.895000px;}
.y24e{bottom:432.795000px;}
.ydd{bottom:433.695000px;}
.y9b{bottom:433.875000px;}
.y498{bottom:436.197750px;}
.y196{bottom:436.215000px;}
.y279{bottom:438.510000px;}
.y223{bottom:438.519000px;}
.y263{bottom:438.699000px;}
.yb6{bottom:438.735000px;}
.y143{bottom:439.455000px;}
.y1fa{bottom:441.435000px;}
.y3cf{bottom:441.552300px;}
.y300{bottom:443.055000px;}
.y12f{bottom:444.495000px;}
.y4f9{bottom:445.462800px;}
.y1bc{bottom:446.655000px;}
.y359{bottom:446.744100px;}
.y2c{bottom:448.995000px;}
.y3ea{bottom:449.130000px;}
.y440{bottom:451.260150px;}
.y2d9{bottom:451.515000px;}
.y369{bottom:451.565400px;}
.y131{bottom:451.695000px;}
.y365{bottom:452.125050px;}
.y511{bottom:452.662800px;}
.y384{bottom:452.730000px;}
.y497{bottom:455.697750px;}
.y48{bottom:456.735000px;}
.y14f{bottom:457.455000px;}
.y72{bottom:457.635000px;}
.y163{bottom:457.995000px;}
.y278{bottom:459.210000px;}
.y262{bottom:459.219000px;}
.y222{bottom:459.249000px;}
.y1dd{bottom:459.435000px;}
.y4f8{bottom:459.862800px;}
.y4ff{bottom:460.226550px;}
.y4f5{bottom:460.545600px;}
.y2ae{bottom:460.875000px;}
.y33e{bottom:461.075100px;}
.y1f9{bottom:462.135000px;}
.y320{bottom:463.035000px;}
.y24d{bottom:463.755000px;}
.y119{bottom:464.295000px;}
.y43f{bottom:464.760150px;}
.y9a{bottom:465.015000px;}
.y510{bottom:467.062800px;}
.y195{bottom:467.355000px;}
.yb5{bottom:469.695000px;}
.y358{bottom:470.144100px;}
.y3e9{bottom:470.730000px;}
.y2d8{bottom:472.215000px;}
.y368{bottom:473.165400px;}
.y4f7{bottom:474.262800px;}
.y383{bottom:474.330000px;}
.y4fe{bottom:474.626550px;}
.y4f4{bottom:474.945600px;}
.y496{bottom:475.197750px;}
.y12e{bottom:475.455000px;}
.y3a1{bottom:476.015100px;}
.y1bb{bottom:477.615000px;}
.y43e{bottom:478.260150px;}
.y277{bottom:479.910000px;}
.y221{bottom:479.949000px;}
.y2b{bottom:480.135000px;}
.y292{bottom:481.035000px;}
.y41d{bottom:482.791500px;}
.ydc{bottom:482.835000px;}
.y118{bottom:483.195000px;}
.y2ff{bottom:484.455000px;}
.y31f{bottom:485.355000px;}
.y71{bottom:488.595000px;}
.y162{bottom:489.135000px;}
.yf7{bottom:490.035000px;}
.y43d{bottom:491.760150px;}
.y2ad{bottom:492.015000px;}
.y3e8{bottom:492.330000px;}
.y4d5{bottom:492.630000px;}
.y2d7{bottom:492.915000px;}
.y357{bottom:493.544100px;}
.y495{bottom:494.697750px;}
.y24c{bottom:494.895000px;}
.y47{bottom:495.255000px;}
.y382{bottom:495.930150px;}
.y99{bottom:495.975000px;}
.y41c{bottom:496.291500px;}
.y194{bottom:498.315000px;}
.y3a0{bottom:499.415100px;}
.y430{bottom:500.342700px;}
.y276{bottom:500.610000px;}
.y220{bottom:500.649000px;}
.yb4{bottom:500.835000px;}
.y117{bottom:502.275000px;}
.y1f8{bottom:503.535000px;}
.y2fe{bottom:505.155000px;}
.y43c{bottom:505.260150px;}
.y12d{bottom:506.595000px;}
.y1ba{bottom:508.755000px;}
.y41b{bottom:509.791500px;}
.y4d4{bottom:509.880000px;}
.y2a{bottom:511.095000px;}
.y42f{bottom:512.342700px;}
.y2d6{bottom:513.615000px;}
.ydb{bottom:513.795000px;}
.y3e7{bottom:513.930150px;}
.y3bd{bottom:514.566450px;}
.y356{bottom:516.944100px;}
.y381{bottom:517.530150px;}
.y43b{bottom:518.760150px;}
.y142{bottom:519.555000px;}
.y70{bottom:519.735000px;}
.y161{bottom:520.095000px;}
.y4e9{bottom:521.130000px;}
.y116{bottom:521.175000px;}
.y21f{bottom:521.349000px;}
.y275{bottom:521.355000px;}
.y1dc{bottom:521.535000px;}
.y2ac{bottom:522.975000px;}
.y41a{bottom:523.291500px;}
.y1f7{bottom:524.235000px;}
.y42e{bottom:524.342700px;}
.y372{bottom:524.518500px;}
.y373{bottom:524.518650px;}
.y24b{bottom:525.855000px;}
.y4d3{bottom:527.130000px;}
.y97{bottom:527.655000px;}
.y3bc{bottom:528.066450px;}
.y193{bottom:529.455000px;}
.y291{bottom:529.995000px;}
.yb3{bottom:531.795000px;}
.y43a{bottom:532.260150px;}
.y33d{bottom:532.475100px;}
.y98{bottom:533.595000px;}
.y494{bottom:533.697750px;}
.y46{bottom:533.775000px;}
.y2d5{bottom:534.315000px;}
.y3e6{bottom:535.530150px;}
.y42d{bottom:536.342700px;}
.y419{bottom:536.791500px;}
.y12c{bottom:537.555000px;}
.y380{bottom:539.130000px;}
.y1b9{bottom:539.715000px;}
.y115{bottom:540.255000px;}
.y355{bottom:540.344100px;}
.y3bb{bottom:541.566450px;}
.y21e{bottom:542.049000px;}
.y274{bottom:542.055000px;}
.y29{bottom:542.235000px;}
.y4d2{bottom:544.380000px;}
.yda{bottom:544.935000px;}
.y439{bottom:545.760150px;}
.y39f{bottom:546.215100px;}
.y2fd{bottom:546.555000px;}
.y42c{bottom:548.342700px;}
.y418{bottom:550.291500px;}
.y6f{bottom:550.695000px;}
.y160{bottom:551.235000px;}
.y493{bottom:553.197750px;}
.y2ab{bottom:553.935000px;}
.y4b7{bottom:554.853900px;}
.y2d4{bottom:555.015000px;}
.y3ba{bottom:555.066450px;}
.y24a{bottom:556.815000px;}
.y3e5{bottom:557.130000px;}
.y96{bottom:558.615000px;}
.y114{bottom:559.155000px;}
.y438{bottom:559.260150px;}
.y42b{bottom:560.342700px;}
.y192{bottom:560.415000px;}
.y37f{bottom:560.730000px;}
.y4d1{bottom:561.630000px;}
.y21d{bottom:562.749000px;}
.y273{bottom:562.755000px;}
.yb2{bottom:562.935000px;}
.y417{bottom:563.791500px;}
.y1f6{bottom:565.635000px;}
.y2fc{bottom:567.255000px;}
.y12b{bottom:568.695000px;}
.y39e{bottom:569.615100px;}
.y1b8{bottom:570.855000px;}
.y45{bottom:572.295000px;}
.y42a{bottom:572.342700px;}
.y492{bottom:572.697750px;}
.y437{bottom:572.760150px;}
.y339{bottom:573.015000px;}
.y28{bottom:573.195000px;}
.y4e8{bottom:575.130000px;}
.y2d3{bottom:575.715000px;}
.yd9{bottom:575.895000px;}
.y31e{bottom:576.435000px;}
.y416{bottom:577.291500px;}
.y113{bottom:578.235000px;}
.y3e4{bottom:578.730000px;}
.y290{bottom:579.135000px;}
.y141{bottom:581.655000px;}
.y6e{bottom:581.835000px;}
.y15f{bottom:582.195000px;}
.y37e{bottom:582.330000px;}
.y21c{bottom:583.449000px;}
.y272{bottom:583.455000px;}
.y1db{bottom:583.635000px;}
.y429{bottom:584.342700px;}
.y2aa{bottom:585.075000px;}
.y436{bottom:586.260150px;}
.y1f5{bottom:586.335000px;}
.y249{bottom:587.955000px;}
.y3b9{bottom:588.066450px;}
.y95{bottom:589.755000px;}
.y354{bottom:590.744100px;}
.y415{bottom:590.791500px;}
.y14e{bottom:590.835000px;}
.y4b6{bottom:590.853900px;}
.y191{bottom:591.555000px;}
.y491{bottom:592.197750px;}
.yf3{bottom:592.815000px;}
.y39d{bottom:593.015100px;}
.y4e7{bottom:593.130000px;}
.y27{bottom:593.895000px;}
.y4d0{bottom:596.130000px;}
.y428{bottom:596.342700px;}
.y2d2{bottom:596.445000px;}
.y370{bottom:596.912100px;}
.y112{bottom:597.165000px;}
.y371{bottom:597.849450px;}
.y31d{bottom:598.785000px;}
.y12a{bottom:599.685000px;}
.y435{bottom:599.760150px;}
.y3e3{bottom:600.330000px;}
.y37d{bottom:603.930150px;}
.y21b{bottom:604.149000px;}
.y1da{bottom:604.335000px;}
.y1f4{bottom:607.035000px;}
.yd8{bottom:607.065000px;}
.y338{bottom:607.425000px;}
.y3b8{bottom:607.566450px;}
.y427{bottom:608.342700px;}
.y2fb{bottom:608.685000px;}
.y4b5{bottom:608.853900px;}
.y44{bottom:610.845000px;}
.y4e6{bottom:611.130000px;}
.y490{bottom:611.697750px;}
.y6d{bottom:612.825000px;}
.y434{bottom:613.260150px;}
.y15e{bottom:613.365000px;}
.y4cf{bottom:613.380000px;}
.y353{bottom:614.144100px;}
.y26{bottom:614.625000px;}
.y111{bottom:616.065000px;}
.y39c{bottom:616.415100px;}
.y2d1{bottom:617.145000px;}
.y414{bottom:617.791500px;}
.y248{bottom:618.945000px;}
.y1b7{bottom:619.845000px;}
.y426{bottom:620.342700px;}
.yc{bottom:620.745000px;}
.y31c{bottom:621.105000px;}
.y3e2{bottom:621.930150px;}
.y190{bottom:622.545000px;}
.y21a{bottom:624.849000px;}
.y1d9{bottom:625.035000px;}
.yb1{bottom:625.065000px;}
.y37c{bottom:625.530150px;}
.y433{bottom:626.760150px;}
.y4b4{bottom:626.853900px;}
.y3b7{bottom:627.066450px;}
.y1f3{bottom:627.735000px;}
.y28f{bottom:628.125000px;}
.y4e5{bottom:629.130000px;}
.y2fa{bottom:629.385000px;}
.y337{bottom:629.745000px;}
.y4ce{bottom:630.630000px;}
.y129{bottom:630.825000px;}
.y48f{bottom:631.197750px;}
.y425{bottom:632.342700px;}
.y110{bottom:635.145000px;}
.y25{bottom:635.325000px;}
.y352{bottom:637.544100px;}
.y2d0{bottom:637.845000px;}
.yd7{bottom:638.025000px;}
.y432{bottom:640.260150px;}
.y171{bottom:643.065000px;}
.y3e1{bottom:643.530150px;}
.y140{bottom:643.785000px;}
.y6c{bottom:643.965000px;}
.y15d{bottom:644.325000px;}
.y424{bottom:644.342700px;}
.y4b3{bottom:644.853900px;}
.y219{bottom:645.549000px;}
.y1d8{bottom:645.735000px;}
.y3b6{bottom:646.566450px;}
.y37b{bottom:647.130000px;}
.y2a9{bottom:647.205000px;}
.y4cd{bottom:647.880000px;}
.y1f2{bottom:648.435000px;}
.y43{bottom:649.545000px;}
.y247{bottom:650.085000px;}
.y1b6{bottom:650.985000px;}
.y94{bottom:651.885000px;}
.y18f{bottom:653.685000px;}
.y10f{bottom:654.045000px;}
.y31b{bottom:655.305000px;}
.y24{bottom:656.025000px;}
.y423{bottom:656.342700px;}
.y2cf{bottom:658.545000px;}
.y351{bottom:660.944100px;}
.y128{bottom:661.785000px;}
.y4b2{bottom:662.853900px;}
.y39b{bottom:663.215100px;}
.y336{bottom:664.125000px;}
.yb{bottom:665.025000px;}
.y3e0{bottom:665.130000px;}
.y3b5{bottom:666.066450px;}
.y218{bottom:666.249000px;}
.y1d7{bottom:666.435000px;}
.y431{bottom:667.260150px;}
.y422{bottom:668.342700px;}
.y509{bottom:668.730000px;}
.yd6{bottom:669.165000px;}
.y1f1{bottom:669.180000px;}
.y364{bottom:669.254250px;}
.y48e{bottom:670.197750px;}
.y367{bottom:670.242900px;}
.y2f9{bottom:670.785000px;}
.y10e{bottom:673.125000px;}
.y170{bottom:674.025000px;}
.y6b{bottom:674.925000px;}
.y15c{bottom:675.465000px;}
.y23{bottom:676.725000px;}
.y28e{bottom:677.265000px;}
.y31a{bottom:677.805000px;}
.y2a8{bottom:678.165000px;}
.y38c{bottom:679.054800px;}
.y2ce{bottom:679.245000px;}
.y421{bottom:680.342700px;}
.y4b1{bottom:680.853900px;}
.y246{bottom:681.045000px;}
.y1b5{bottom:681.945000px;}
.y93{bottom:682.845000px;}
.y350{bottom:684.344100px;}
.y18e{bottom:684.645000px;}
.y3b4{bottom:685.566450px;}
.y335{bottom:686.445000px;}
.y39a{bottom:686.615100px;}
.y217{bottom:686.949000px;}
.yb0{bottom:687.165000px;}
.y1d6{bottom:687.180000px;}
.y42{bottom:688.065000px;}
.y48d{bottom:689.697750px;}
.y508{bottom:690.330000px;}
.y2f8{bottom:691.485000px;}
.y10d{bottom:692.025000px;}
.y420{bottom:692.342700px;}
.y127{bottom:692.925000px;}
.y38b{bottom:693.454650px;}
.y22{bottom:697.425000px;}
.y413{bottom:697.425150px;}
.y4b0{bottom:698.853900px;}
.y4cc{bottom:699.630000px;}
.y2cd{bottom:699.945000px;}
.yd5{bottom:700.125000px;}
.y4e4{bottom:701.130000px;}
.ya{bottom:703.005000px;}
.y41f{bottom:704.342700px;}
.y389{bottom:704.919300px;}
.y3b3{bottom:705.066450px;}
.y16f{bottom:705.165000px;}
.y6a{bottom:706.065000px;}
.y216{bottom:707.649000px;}
.y38a{bottom:707.854650px;}
.y1d5{bottom:707.880000px;}
.y3df{bottom:708.330000px;}
.y48c{bottom:709.197750px;}
.y2a7{bottom:709.305000px;}
.yee{bottom:709.665000px;}
.y399{bottom:710.015100px;}
.y10c{bottom:710.925000px;}
.y412{bottom:710.925150px;}
.y507{bottom:711.930150px;}
.y245{bottom:712.185000px;}
.y1b4{bottom:713.085000px;}
.y92{bottom:713.985000px;}
.y15b{bottom:714.165000px;}
.y18d{bottom:715.785000px;}
.y4af{bottom:716.853900px;}
.y4cb{bottom:716.880000px;}
.y21{bottom:718.125000px;}
.y4e3{bottom:719.130000px;}
.y2cc{bottom:720.645000px;}
.y388{bottom:721.119300px;}
.y126{bottom:723.885000px;}
.y411{bottom:724.425150px;}
.y3b2{bottom:724.566450px;}
.y28d{bottom:726.225000px;}
.y41{bottom:726.585000px;}
.y41e{bottom:728.342700px;}
.y215{bottom:728.394000px;}
.y1d4{bottom:728.580000px;}
.y48b{bottom:728.697750px;}
.y3de{bottom:729.930150px;}
.y10b{bottom:730.005000px;}
.y261{bottom:730.185000px;}
.y34f{bottom:731.144100px;}
.yd4{bottom:731.265000px;}
.y2f7{bottom:732.885000px;}
.y398{bottom:733.415100px;}
.y4ae{bottom:733.530150px;}
.y4ca{bottom:734.130000px;}
.y319{bottom:734.325000px;}
.yc5{bottom:736.125000px;}
.y69{bottom:737.025000px;}
.y4e2{bottom:737.130000px;}
.y410{bottom:737.925150px;}
.y2a6{bottom:740.265000px;}
.y9{bottom:740.985000px;}
.y2cb{bottom:741.345000px;}
.y36f{bottom:742.210350px;}
.y3fa{bottom:742.546800px;}
.y334{bottom:743.145000px;}
.y1b3{bottom:744.045000px;}
.y3b1{bottom:744.066450px;}
.y91{bottom:744.945000px;}
.y3dd{bottom:747.930150px;}
.y48a{bottom:748.197750px;}
.y10a{bottom:748.905000px;}
.y4f1{bottom:749.042550px;}
.y214{bottom:749.094000px;}
.y20{bottom:749.265000px;}
.y1d3{bottom:749.280000px;}
.y4f3{bottom:750.464700px;}
.y4ee{bottom:750.652500px;}
.y4c9{bottom:751.380000px;}
.y40f{bottom:751.425150px;}
.y15a{bottom:752.865000px;}
.y2f6{bottom:753.585000px;}
.y34e{bottom:754.544100px;}
.y13f{bottom:754.845000px;}
.y4ad{bottom:755.130000px;}
.y3f9{bottom:756.046800px;}
.y318{bottom:756.645000px;}
.y4f0{bottom:759.842550px;}
.y244{bottom:761.145000px;}
.y2ca{bottom:762.045000px;}
.yd3{bottom:762.225000px;}
.y3b0{bottom:763.566450px;}
.y125{bottom:764.205000px;}
.y18b{bottom:764.745000px;}
.y4f2{bottom:764.864700px;}
.y40e{bottom:764.925150px;}
.y4ed{bottom:765.052500px;}
.y40{bottom:765.105000px;}
.y3dc{bottom:765.930150px;}
.yc4{bottom:767.265000px;}
.y489{bottom:767.697750px;}
.y68{bottom:767.985000px;}
.y260{bottom:768.165000px;}
.y4c8{bottom:768.630000px;}
.y3f8{bottom:769.546800px;}
.y213{bottom:769.794000px;}
.y1d2{bottom:769.980000px;}
.y4ef{bottom:770.642550px;}
.y403{bottom:770.945100px;}
.y2a5{bottom:771.405000px;}
.y18c{bottom:771.585000px;}
.y4e1{bottom:773.130000px;}
.y2f5{bottom:774.285000px;}
.y1b2{bottom:775.185000px;}
.y28c{bottom:775.365000px;}
.y90{bottom:776.085000px;}
.y4ac{bottom:776.730150px;}
.y333{bottom:777.345000px;}
.y34d{bottom:777.944100px;}
.y40d{bottom:778.425150px;}
.y317{bottom:779.145000px;}
.y397{bottom:780.215100px;}
.y1f{bottom:780.225000px;}
.y2c9{bottom:782.745000px;}
.y3f7{bottom:783.046800px;}
.y3db{bottom:783.930150px;}
.y402{bottom:784.445100px;}
.y4c7{bottom:785.880000px;}
.y13e{bottom:785.985000px;}
.y109{bottom:786.885000px;}
.y212{bottom:790.494000px;}
.y1d1{bottom:790.680000px;}
.y4e0{bottom:791.130000px;}
.y159{bottom:791.565000px;}
.y40c{bottom:791.925150px;}
.y243{bottom:792.285000px;}
.yd2{bottom:793.365000px;}
.y8{bottom:794.625000px;}
.y2f4{bottom:794.985000px;}
.y18a{bottom:795.705000px;}
.y3f6{bottom:796.546800px;}
.y401{bottom:797.945100px;}
.yc3{bottom:798.225000px;}
.y4ab{bottom:798.330000px;}
.y67{bottom:799.125000px;}
.y332{bottom:799.665000px;}
.y34c{bottom:801.344100px;}
.y316{bottom:801.465000px;}
.y3da{bottom:801.930150px;}
.y2a4{bottom:802.365000px;}
.y4c6{bottom:803.130000px;}
.y2c8{bottom:803.445000px;}
.y396{bottom:803.615100px;}
.y3f{bottom:803.625000px;}
.y40b{bottom:805.425150px;}
.y108{bottom:805.785000px;}
.y1b1{bottom:806.145000px;}
.y488{bottom:806.697750px;}
.y8f{bottom:807.045000px;}
.y4df{bottom:809.130000px;}
.y3f5{bottom:810.046800px;}
.y211{bottom:811.194000px;}
.y1e{bottom:811.365000px;}
.y1d0{bottom:811.380000px;}
.y400{bottom:811.445100px;}
.y2f3{bottom:815.685000px;}
.y36e{bottom:815.733300px;}
.y13d{bottom:816.945000px;}
.y40a{bottom:818.925150px;}
.y3d9{bottom:819.930150px;}
.y4c5{bottom:820.380000px;}
.y242{bottom:823.245000px;}
.y3f4{bottom:823.546800px;}
.y2c7{bottom:824.145000px;}
.yd1{bottom:824.325000px;}
.y34b{bottom:824.744100px;}
.y107{bottom:824.865000px;}
.y3ff{bottom:824.945100px;}
.y487{bottom:826.197750px;}
.y189{bottom:826.845000px;}
.y395{bottom:827.015100px;}
.y4de{bottom:827.130000px;}
.yc2{bottom:829.365000px;}
.y66{bottom:830.085000px;}
.y158{bottom:830.265000px;}
.y3ce{bottom:830.352150px;}
.y210{bottom:831.894000px;}
.y1cf{bottom:832.080000px;}
.y409{bottom:832.425150px;}
.y2a3{bottom:833.505000px;}
.y331{bottom:834.045000px;}
.y315{bottom:835.665000px;}
.y2f2{bottom:836.385000px;}
.y3f3{bottom:837.046800px;}
.y1b0{bottom:837.285000px;}
.y4c4{bottom:837.630000px;}
.y3d8{bottom:837.930150px;}
.y3fe{bottom:838.445100px;}
.yea{bottom:840.525000px;}
.y506{bottom:841.530000px;}
.y3e{bottom:842.145000px;}
.y1d{bottom:842.325000px;}
.y106{bottom:843.765000px;}
.y2c6{bottom:844.845000px;}
.y486{bottom:845.697750px;}
.y408{bottom:845.925150px;}
.y3cd{bottom:846.552300px;}
.y8e{bottom:847.905000px;}
.y13c{bottom:848.085000px;}
.y34a{bottom:848.144100px;}
.y394{bottom:850.415100px;}
.y3f2{bottom:850.546800px;}
.y3af{bottom:851.901150px;}
.y3fd{bottom:851.945100px;}
.y1ce{bottom:852.780000px;}
.y241{bottom:854.385000px;}
.y4c3{bottom:854.880000px;}
.y2ba{bottom:855.465000px;}
.y3d7{bottom:855.930150px;}
.y330{bottom:856.365000px;}
.y2f1{bottom:857.085000px;}
.y188{bottom:857.805000px;}
.y314{bottom:858.165000px;}
.y407{bottom:859.425150px;}
.y7{bottom:859.785000px;}
.yc1{bottom:860.325000px;}
.y65{bottom:861.225000px;}
.y4aa{bottom:863.130000px;}
.y3f1{bottom:864.046800px;}
.y2a2{bottom:864.510000px;}
.y485{bottom:865.197750px;}
.y3ae{bottom:865.401150px;}
.y3fc{bottom:865.445100px;}
.y2c5{bottom:865.590000px;}
.y1a6{bottom:867.210000px;}
.y8c{bottom:867.570000px;}
.y1af{bottom:868.290000px;}
.y157{bottom:869.010000px;}
.y406{bottom:872.925150px;}
.y1cd{bottom:873.480000px;}
.y1c{bottom:873.510000px;}
.y3d6{bottom:873.930150px;}
.y8d{bottom:874.410000px;}
.y3f0{bottom:877.546800px;}
.y2f0{bottom:877.830000px;}
.y3ad{bottom:878.901150px;}
.y13b{bottom:879.090000px;}
.y313{bottom:880.530000px;}
.y3d{bottom:880.890000px;}
.y4dd{bottom:881.130000px;}
.y484{bottom:884.697750px;}
.y4a9{bottom:884.730150px;}
.y240{bottom:885.390000px;}
.y2c4{bottom:886.290000px;}
.y405{bottom:886.425150px;}
.y8b{bottom:887.910000px;}
.y36d{bottom:888.126750px;}
.y186{bottom:888.990000px;}
.y4c2{bottom:889.380000px;}
.y32f{bottom:890.790000px;}
.yc0{bottom:891.510000px;}
.y3d5{bottom:891.930150px;}
.y64{bottom:892.230000px;}
.y3ac{bottom:892.401150px;}
.y3fb{bottom:892.445100px;}
.y1cc{bottom:894.180000px;}
.y349{bottom:894.944100px;}
.y57{bottom:895.290000px;}
.y2a1{bottom:895.650000px;}
.y187{bottom:895.830000px;}
.y393{bottom:897.215100px;}
.y2ef{bottom:898.530000px;}
.y1ae{bottom:899.430000px;}
.y1b{bottom:904.470000px;}
.y3ef{bottom:904.546800px;}
.y4a8{bottom:906.330000px;}
.y4c1{bottom:906.630000px;}
.y8a{bottom:906.990000px;}
.y156{bottom:907.710000px;}
.y3d4{bottom:909.930150px;}
.y1c9{bottom:910.230000px;}
.y6{bottom:913.110000px;}
.y404{bottom:913.425150px;}
.y312{bottom:914.730000px;}
.y1cb{bottom:914.880000px;}
.y23f{bottom:916.530000px;}
.y4dc{bottom:917.130000px;}
.y348{bottom:918.344100px;}
.y2ee{bottom:919.230000px;}
.y3c{bottom:919.410000px;}
.y185{bottom:919.950000px;}
.y392{bottom:920.615100px;}
.yaf{bottom:922.470000px;}
.y63{bottom:923.370000px;}
.y483{bottom:923.697750px;}
.y4c0{bottom:923.880000px;}
.y3ab{bottom:925.401150px;}
.y89{bottom:925.890000px;}
.y56{bottom:926.250000px;}
.y2a0{bottom:926.610000px;}
.y2c3{bottom:927.690000px;}
.y4a7{bottom:927.930150px;}
.y1a5{bottom:929.310000px;}
.y1ad{bottom:930.390000px;}
.y4db{bottom:935.130000px;}
.y1a{bottom:935.610000px;}
.y311{bottom:937.050000px;}
.y2ed{bottom:939.930000px;}
.y4bf{bottom:941.130000px;}
.y1c8{bottom:941.190000px;}
.y347{bottom:941.744100px;}
.y482{bottom:943.197750px;}
.y391{bottom:944.015100px;}
.y3aa{bottom:944.901150px;}
.y88{bottom:944.970000px;}
.y155{bottom:946.410000px;}
.y23e{bottom:947.490000px;}
.y2c2{bottom:948.390000px;}
.y387{bottom:949.530000px;}
.y184{bottom:951.090000px;}
.y4da{bottom:953.130000px;}
.yae{bottom:953.610000px;}
.y62{bottom:954.330000px;}
.ye6{bottom:955.050000px;}
.y55{bottom:957.390000px;}
.y29f{bottom:957.750000px;}
.y3b{bottom:957.930000px;}
.y4be{bottom:958.380000px;}
.y363{bottom:960.520350px;}
.y2ec{bottom:960.630000px;}
.y481{bottom:962.697750px;}
.y3a9{bottom:964.401150px;}
.y33c{bottom:964.770000px;}
.y346{bottom:965.144100px;}
.y19{bottom:966.570000px;}
.y2c1{bottom:969.090000px;}
.y32e{bottom:969.810000px;}
.y1ac{bottom:970.710000px;}
.y37a{bottom:971.130000px;}
.y310{bottom:971.430000px;}
.y1c7{bottom:972.330000px;}
.y270{bottom:977.010000px;}
.y23d{bottom:978.630000px;}
.y2eb{bottom:981.330000px;}
.y480{bottom:982.197750px;}
.y3a8{bottom:983.901150px;}
.yad{bottom:984.570000px;}
.y154{bottom:985.110000px;}
.y61{bottom:985.470000px;}
.y54{bottom:988.350000px;}
.y29e{bottom:988.710000px;}
.y4d9{bottom:989.130000px;}
.y2c0{bottom:989.790000px;}
.y5{bottom:990.330000px;}
.y390{bottom:990.815100px;}
.y87{bottom:992.490000px;}
.y379{bottom:992.730150px;}
.y4bd{bottom:992.880000px;}
.y30f{bottom:993.750000px;}
.y26f{bottom:995.910000px;}
.y3a{bottom:996.450000px;}
.y18{bottom:997.710000px;}
.y33b{bottom:998.610000px;}
.y182{bottom:998.790000px;}
.y47f{bottom:1001.697750px;}
.y2ea{bottom:1002.030000px;}
.y3a7{bottom:1003.401150px;}
.y32d{bottom:1004.190000px;}
.y183{bottom:1004.730000px;}
.y1ab{bottom:1005.630000px;}
.y4d8{bottom:1007.130000px;}
.y23c{bottom:1009.590000px;}
.y4bc{bottom:1010.130000px;}
.y2bf{bottom:1010.490000px;}
.y345{bottom:1011.944100px;}
.y1c6{bottom:1012.650000px;}
.y38f{bottom:1014.215100px;}
.y378{bottom:1014.330000px;}
.yab{bottom:1015.710000px;}
.y30e{bottom:1016.070000px;}
.y60{bottom:1016.430000px;}
.y53{bottom:1019.490000px;}
.y29d{bottom:1019.850000px;}
.y47e{bottom:1021.197750px;}
.yac{bottom:1022.550000px;}
.y2e9{bottom:1022.730000px;}
.y3a6{bottom:1022.901150px;}
.y26d{bottom:1023.450000px;}
.y86{bottom:1023.630000px;}
.y153{bottom:1023.810000px;}
.y32c{bottom:1026.510000px;}
.y181{bottom:1027.230000px;}
.y4bb{bottom:1027.380000px;}
.y17{bottom:1028.670000px;}
.y2be{bottom:1031.190000px;}
.y33a{bottom:1032.270000px;}
.y39{bottom:1034.970000px;}
.y377{bottom:1035.930150px;}
.y504{bottom:1039.141200px;}
.y4{bottom:1039.470000px;}
.y47d{bottom:1040.697750px;}
.y23b{bottom:1040.730000px;}
.y3a5{bottom:1042.401150px;}
.y4d7{bottom:1043.130000px;}
.y2e8{bottom:1043.430000px;}
.y4ba{bottom:1044.630000px;}
.y82{bottom:1046.670000px;}
.y5e{bottom:1047.570000px;}
.y52{bottom:1050.450000px;}
.y29c{bottom:1050.810000px;}
.y16e{bottom:1053.510000px;}
.y5f{bottom:1054.410000px;}
.y180{bottom:1055.670000px;}
.y503{bottom:1057.141200px;}
.y376{bottom:1057.530000px;}
.y16{bottom:1059.810000px;}
.y47c{bottom:1060.197750px;}
.ye2{bottom:1060.890000px;}
.y4d6{bottom:1061.130000px;}
.y4b9{bottom:1061.880000px;}
.y3a4{bottom:1061.901150px;}
.y152{bottom:1062.510000px;}
.y85{bottom:1063.950000px;}
.y2e7{bottom:1064.130000px;}
.y2bd{bottom:1066.110000px;}
.y3{bottom:1068.990000px;}
.y30d{bottom:1072.770000px;}
.y38{bottom:1073.490000px;}
.y502{bottom:1075.141200px;}
.y81{bottom:1077.810000px;}
.y5d{bottom:1078.530000px;}
.y23a{bottom:1078.710000px;}
.y375{bottom:1079.130000px;}
.y47b{bottom:1079.697750px;}
.y3a3{bottom:1081.401150px;}
.y29b{bottom:1081.950000px;}
.y32b{bottom:1083.210000px;}
.y17f{bottom:1084.110000px;}
.y51{bottom:1084.830000px;}
.y2bc{bottom:1087.170000px;}
.y15{bottom:1090.770000px;}
.y501{bottom:1093.141200px;}
.y37{bottom:1093.470000px;}
.y30c{bottom:1095.090000px;}
.y84{bottom:1098.690000px;}
.y151{bottom:1101.210000px;}
.y2{bottom:1101.390000px;}
.y2e6{bottom:1105.530000px;}
.y238{bottom:1106.250000px;}
.y361{bottom:1107.069150px;}
.y80{bottom:1108.770000px;}
.y5c{bottom:1109.670000px;}
.y500{bottom:1111.141200px;}
.y17e{bottom:1112.550000px;}
.y47a{bottom:1115.145600px;}
.y29a{bottom:1116.690000px;}
.y30b{bottom:1117.410000px;}
.y3a2{bottom:1119.823200px;}
.y83{bottom:1120.470000px;}
.y4ea{bottom:1125.500550px;}
.y5b{bottom:1132.380000px;}
.y386{bottom:1133.145600px;}
.y1{bottom:1133.820000px;}
.y2bb{bottom:1138.320000px;}
.y299{bottom:1138.500000px;}
.y14{bottom:1139.760000px;}
.y36{bottom:1139.940000px;}
.y3cc{bottom:1140.345450px;}
.y17d{bottom:1141.200000px;}
.y479{bottom:1142.145600px;}
.y344{bottom:1161.320400px;}
.y4f6{bottom:1161.952350px;}
.y505{bottom:1162.188600px;}
.y385{bottom:1176.345450px;}
.y58{bottom:1194.120000px;}
.h2c{height:34.272000px;}
.h11{height:38.158594px;}
.hc{height:38.671172px;}
.h43{height:39.816000px;}
.h50{height:39.984000px;}
.h22{height:40.948242px;}
.h20{height:40.985156px;}
.h44{height:41.220491px;}
.h24{height:41.436000px;}
.hf{height:41.535703px;}
.h3d{height:45.504000px;}
.h48{height:45.696000px;}
.h45{height:47.109217px;}
.hb{height:47.344922px;}
.h3c{height:51.192000px;}
.h3b{height:51.408000px;}
.h49{height:52.556475px;}
.h3f{height:52.997795px;}
.h41{height:56.880000px;}
.h2d{height:57.120000px;}
.h3e{height:57.413400px;}
.h42{height:58.150774px;}
.h8{height:58.651172px;}
.h1f{height:59.383125px;}
.hd{height:59.439023px;}
.h4c{height:61.961329px;}
.h1e{height:62.184375px;}
.h12{height:64.546875px;}
.h16{height:64.978594px;}
.he{height:65.010937px;}
.h4d{height:65.688000px;}
.h9{height:65.884219px;}
.h14{height:66.757500px;}
.h4e{height:68.005199px;}
.h39{height:68.256000px;}
.h35{height:68.400000px;}
.h47{height:68.544000px;}
.h10{height:70.628906px;}
.h3a{height:70.663825px;}
.h7{height:70.664062px;}
.h1b{height:70.920000px;}
.h4f{height:70.961985px;}
.h1d{height:71.613281px;}
.h6{height:72.562500px;}
.h3{height:73.298672px;}
.h30{height:73.944000px;}
.h34{height:79.800000px;}
.ha{height:80.949375px;}
.h2{height:83.322422px;}
.h2f{height:85.500000px;}
.h32{height:85.680000px;}
.h46{height:86.040000px;}
.h1a{height:86.400000px;}
.h13{height:86.796000px;}
.h4b{height:88.516058px;}
.h15{height:89.280000px;}
.h17{height:97.956000px;}
.h19{height:100.476000px;}
.h5{height:104.622891px;}
.h4a{height:108.300000px;}
.h2e{height:114.000000px;}
.h51{height:114.240000px;}
.h18{height:114.300000px;}
.h28{height:124.236000px;}
.h31{height:136.800000px;}
.h40{height:141.625810px;}
.h1c{height:142.776000px;}
.h4{height:147.281484px;}
.h33{height:163.330592px;}
.h38{height:166.200600px;}
.h37{height:169.949400px;}
.h36{height:180.600000px;}
.h2b{height:203.490000px;}
.h25{height:248.430000px;}
.h26{height:351.975000px;}
.h27{height:579.495000px;}
.h29{height:600.195000px;}
.h23{height:848.625000px;}
.h21{height:952.350000px;}
.h2a{height:1262.835000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:105.480000px;}
.w8{width:111.096000px;}
.w5{width:120.276000px;}
.w6{width:128.916000px;}
.w7{width:162.900000px;}
.wb{width:309.810000px;}
.w9{width:314.670000px;}
.wd{width:316.830000px;}
.w10{width:333.975000px;}
.wf{width:340.230000px;}
.we{width:357.375000px;}
.wa{width:359.535000px;}
.wc{width:364.395000px;}
.w11{width:892.914000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w13{width:1785.750000px;}
.w12{width:1785.825000px;}
.x0{left:0.000000px;}
.x22{left:6.840000px;}
.x3d{left:16.560000px;}
.x3a{left:18.180000px;}
.x4e{left:21.694800px;}
.x40{left:61.230000px;}
.x3b{left:64.074000px;}
.x29{left:73.619987px;}
.x43{left:79.194000px;}
.x5a{left:85.189050px;}
.x62{left:88.368150px;}
.xa8{left:89.440950px;}
.xa6{left:90.470250px;}
.xa5{left:92.661750px;}
.x28{left:100.655987px;}
.x42{left:108.756000px;}
.x45{left:111.810000px;}
.x3e{left:115.770000px;}
.x96{left:125.010900px;}
.xf{left:127.655987px;}
.x21{left:129.096000px;}
.x8{left:131.075987px;}
.x16{left:132.515987px;}
.x36{left:137.375987px;}
.x9e{left:139.567350px;}
.x63{left:143.184450px;}
.x10{left:144.215987px;}
.x7{left:149.435987px;}
.x27{left:154.649987px;}
.x6{left:160.769987px;}
.x5d{left:168.170400px;}
.x17{left:170.129987px;}
.x9{left:173.909987px;}
.xac{left:177.774150px;}
.x3f{left:179.670000px;}
.x12{left:181.649987px;}
.x2{left:189.209987px;}
.x7d{left:195.084600px;}
.x57{left:206.270100px;}
.x3{left:208.829987px;}
.x1c{left:212.249973px;}
.x1d{left:217.469987px;}
.x48{left:220.709987px;}
.x5f{left:227.967600px;}
.x56{left:229.959000px;}
.x5e{left:231.782400px;}
.x67{left:234.914250px;}
.x23{left:236.010000px;}
.x4a{left:254.729987px;}
.xaa{left:263.143050px;}
.xd{left:265.529987px;}
.x41{left:266.789987px;}
.xa{left:268.949987px;}
.xa9{left:271.632750px;}
.xa4{left:272.724600px;}
.x38{left:282.629973px;}
.x1{left:284.654987px;}
.x9f{left:289.366950px;}
.x46{left:293.654987px;}
.x39{left:294.914987px;}
.x26{left:298.694987px;}
.x7a{left:300.094500px;}
.x60{left:307.964700px;}
.x97{left:314.791650px;}
.x34{left:315.794973px;}
.x35{left:328.034987px;}
.x58{left:337.561800px;}
.x4{left:338.654987px;}
.x15{left:343.694987px;}
.xc{left:346.034987px;}
.x24{left:357.915000px;}
.xe{left:360.254987px;}
.x2c{left:378.074973px;}
.x2a{left:379.154973px;}
.x2d{left:384.194987px;}
.x2b{left:385.274987px;}
.x64{left:392.842050px;}
.xad{left:394.377000px;}
.x6c{left:409.039350px;}
.xae{left:411.303000px;}
.x44{left:420.015000px;}
.x13{left:424.874973px;}
.x47{left:427.035000px;}
.x14{left:430.994987px;}
.x3c{left:445.215000px;}
.x5{left:446.474987px;}
.x49{left:450.435000px;}
.x91{left:478.427250px;}
.x7b{left:486.635550px;}
.x18{left:489.164973px;}
.xa7{left:493.510050px;}
.x19{left:495.284987px;}
.x92{left:498.451800px;}
.x99{left:502.026600px;}
.x61{left:510.537900px;}
.x7e{left:536.374050px;}
.x7c{left:550.611150px;}
.x32{left:557.204973px;}
.x7f{left:559.339800px;}
.x9c{left:562.890450px;}
.x33{left:569.984987px;}
.x4b{left:589.454550px;}
.x93{left:591.249000px;}
.x2e{left:593.024973px;}
.x2f{left:599.144987px;}
.x4d{left:606.322050px;}
.x30{left:613.004973px;}
.x52{left:614.703600px;}
.x31{left:618.224987px;}
.x94{left:636.428250px;}
.xb3{left:638.337000px;}
.xb{left:651.344987px;}
.x25{left:652.965000px;}
.x4c{left:675.159600px;}
.x9d{left:677.184300px;}
.x53{left:682.383000px;}
.x95{left:684.339000px;}
.x9a{left:718.850700px;}
.x1e{left:731.669973px;}
.x1f{left:739.769987px;}
.x9b{left:743.637000px;}
.x20{left:748.769987px;}
.x37{left:753.269973px;}
.x11{left:757.229987px;}
.x1a{left:760.289973px;}
.x1b{left:765.509987px;}
.xab{left:794.745600px;}
.x59{left:801.236850px;}
.x98{left:807.873900px;}
.x80{left:929.055150px;}
.x8b{left:966.395850px;}
.x54{left:977.842650px;}
.xaf{left:983.076900px;}
.xb2{left:984.936450px;}
.x6a{left:986.975550px;}
.xa3{left:998.967600px;}
.x5b{left:1059.239250px;}
.x8c{left:1089.677250px;}
.x8d{left:1107.577950px;}
.x5c{left:1113.159000px;}
.xa1{left:1169.345700px;}
.x6d{left:1177.795200px;}
.xb0{left:1195.790100px;}
.x83{left:1208.974950px;}
.x81{left:1218.955650px;}
.x74{left:1225.706250px;}
.x87{left:1244.709000px;}
.x6f{left:1252.870500px;}
.x85{left:1255.077000px;}
.x76{left:1271.446200px;}
.x86{left:1273.774500px;}
.x79{left:1275.581550px;}
.x84{left:1278.243450px;}
.xa0{left:1286.083800px;}
.x6b{left:1303.028400px;}
.x68{left:1312.062900px;}
.x72{left:1324.166700px;}
.xb1{left:1362.562200px;}
.x8e{left:1373.385750px;}
.x69{left:1436.329050px;}
.x88{left:1464.502950px;}
.x90{left:1491.186000px;}
.x4f{left:1507.616850px;}
.x89{left:1509.291900px;}
.x77{left:1511.127450px;}
.x66{left:1512.432750px;}
.x65{left:1514.766300px;}
.x70{left:1516.027800px;}
.x51{left:1545.836850px;}
.x50{left:1575.296250px;}
.x6e{left:1579.958250px;}
.x82{left:1583.557950px;}
.x75{left:1594.849200px;}
.x73{left:1595.974800px;}
.x8a{left:1618.263000px;}
.x78{left:1623.574950px;}
.x8f{left:1653.756300px;}
.x71{left:1657.650450px;}
.xa2{left:1687.895250px;}
.x55{left:1692.316350px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v6{vertical-align:-1.989867pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.000533pt;}
.v7{vertical-align:4.036800pt;}
.v8{vertical-align:5.530133pt;}
.v9{vertical-align:15.984000pt;}
.v5{vertical-align:76.800533pt;}
.v4{vertical-align:80.132800pt;}
.v2{vertical-align:89.600000pt;}
.ls1d{letter-spacing:-2.856000pt;}
.ls3e{letter-spacing:-1.920000pt;}
.ls3d{letter-spacing:-0.981447pt;}
.ls3c{letter-spacing:-0.960000pt;}
.ls26{letter-spacing:-0.762667pt;}
.ls37{letter-spacing:-0.746667pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls27{letter-spacing:-0.624000pt;}
.ls38{letter-spacing:-0.599774pt;}
.lsd{letter-spacing:-0.576000pt;}
.ls35{letter-spacing:-0.560000pt;}
.ls39{letter-spacing:-0.480000pt;}
.ls29{letter-spacing:-0.416000pt;}
.ls32{letter-spacing:-0.373333pt;}
.ls28{letter-spacing:-0.346667pt;}
.ls36{letter-spacing:-0.266667pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.242133pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls33{letter-spacing:-0.106667pt;}
.ls15{letter-spacing:-0.094933pt;}
.ls34{letter-spacing:-0.053333pt;}
.ls17{letter-spacing:-0.023040pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3b{letter-spacing:0.000144pt;}
.ls11{letter-spacing:0.015360pt;}
.ls16{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.064000pt;}
.ls31{letter-spacing:0.080000pt;}
.lsc{letter-spacing:0.094933pt;}
.lsb{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.133120pt;}
.ls3{letter-spacing:0.154880pt;}
.ls2c{letter-spacing:0.160000pt;}
.ls2d{letter-spacing:0.163575pt;}
.lsf{letter-spacing:0.195840pt;}
.ls7{letter-spacing:0.227733pt;}
.ls14{letter-spacing:0.230933pt;}
.ls19{letter-spacing:0.256000pt;}
.ls2b{letter-spacing:0.276626pt;}
.ls20{letter-spacing:0.277333pt;}
.ls4{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.327149pt;}
.ls2e{letter-spacing:0.373333pt;}
.lsa{letter-spacing:0.384000pt;}
.ls21{letter-spacing:0.416000pt;}
.ls30{letter-spacing:0.426667pt;}
.ls1e{letter-spacing:0.533333pt;}
.ls5{letter-spacing:0.640000pt;}
.ls3f{letter-spacing:0.662577pt;}
.ls2a{letter-spacing:0.693333pt;}
.ls22{letter-spacing:0.746667pt;}
.ls23{letter-spacing:0.800000pt;}
.ls1f{letter-spacing:1.066667pt;}
.ls9{letter-spacing:4.736000pt;}
.ls1c{letter-spacing:5.712000pt;}
.ls2{letter-spacing:24.923307pt;}
.ls8{letter-spacing:56.912640pt;}
.lse{letter-spacing:175.978667pt;}
.ls1b{letter-spacing:178.671787pt;}
.ls3a{letter-spacing:179.280000pt;}
.ls12{letter-spacing:183.018667pt;}
.ls24{letter-spacing:262.387875pt;}
.ls25{letter-spacing:267.366481pt;}
.ws13{word-spacing:-54.264000pt;}
.ws9{word-spacing:-53.120000pt;}
.ws51{word-spacing:-33.791421pt;}
.wsf3{word-spacing:-28.266667pt;}
.ws99{word-spacing:-25.840000pt;}
.ws52{word-spacing:-23.653974pt;}
.ws1a{word-spacing:-22.848000pt;}
.ws37{word-spacing:-21.200000pt;}
.ws18{word-spacing:-20.400000pt;}
.wsd1{word-spacing:-19.040000pt;}
.wsd3{word-spacing:-18.442667pt;}
.ws9a{word-spacing:-18.088000pt;}
.ws12{word-spacing:-17.295360pt;}
.ws3{word-spacing:-17.280000pt;}
.ws10{word-spacing:-17.256960pt;}
.ws78{word-spacing:-16.960000pt;}
.wsf2{word-spacing:-16.320000pt;}
.ws11{word-spacing:-16.256000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws61{word-spacing:-14.885289pt;}
.ws9b{word-spacing:-14.783756pt;}
.ws8{word-spacing:-14.720000pt;}
.ws17{word-spacing:-14.666667pt;}
.ws19{word-spacing:-14.280000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.534613pt;}
.wsd{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.374933pt;}
.wsd2{word-spacing:-13.328000pt;}
.wsf{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.185067pt;}
.ws79{word-spacing:-12.720000pt;}
.ws7a{word-spacing:-12.022723pt;}
.ws53{word-spacing:-10.435567pt;}
.ws14{word-spacing:-8.640000pt;}
.wsac{word-spacing:-7.973333pt;}
.ws93{word-spacing:-7.680000pt;}
.ws5a{word-spacing:-7.210667pt;}
.ws94{word-spacing:-6.720000pt;}
.wsea{word-spacing:-5.888000pt;}
.ws7d{word-spacing:-5.760000pt;}
.ws15{word-spacing:-5.712000pt;}
.wsd6{word-spacing:-5.312000pt;}
.ws26{word-spacing:-5.200000pt;}
.ws24{word-spacing:-5.130667pt;}
.wscd{word-spacing:-4.969327pt;}
.wsd8{word-spacing:-4.736000pt;}
.ws89{word-spacing:-4.480000pt;}
.wsb0{word-spacing:-4.381287pt;}
.ws82{word-spacing:-4.373333pt;}
.wse1{word-spacing:-4.224000pt;}
.wsdb{word-spacing:-4.096000pt;}
.wsc8{word-spacing:-3.968000pt;}
.ws3f{word-spacing:-3.904000pt;}
.ws22{word-spacing:-3.882667pt;}
.wsb6{word-spacing:-3.802667pt;}
.ws54{word-spacing:-3.733333pt;}
.wsa2{word-spacing:-3.619324pt;}
.wsd5{word-spacing:-3.584000pt;}
.wsce{word-spacing:-3.520000pt;}
.wsbd{word-spacing:-3.434667pt;}
.ws35{word-spacing:-3.360000pt;}
.ws64{word-spacing:-3.253333pt;}
.ws3a{word-spacing:-3.008000pt;}
.wsb3{word-spacing:-3.005333pt;}
.wsc7{word-spacing:-2.944000pt;}
.ws67{word-spacing:-2.880000pt;}
.ws76{word-spacing:-2.720000pt;}
.wsbb{word-spacing:-2.637333pt;}
.ws34{word-spacing:-2.613333pt;}
.wsbc{word-spacing:-2.576000pt;}
.ws59{word-spacing:-2.565333pt;}
.ws48{word-spacing:-2.496000pt;}
.wsf5{word-spacing:-2.319019pt;}
.ws65{word-spacing:-2.186667pt;}
.ws44{word-spacing:-2.176000pt;}
.ws66{word-spacing:-2.133333pt;}
.wsd4{word-spacing:-1.920000pt;}
.wsb2{word-spacing:-1.841411pt;}
.wsb1{word-spacing:-1.778667pt;}
.ws55{word-spacing:-1.733333pt;}
.ws8e{word-spacing:-1.728000pt;}
.wseb{word-spacing:-1.664000pt;}
.wsa3{word-spacing:-1.656000pt;}
.ws83{word-spacing:-1.600000pt;}
.ws50{word-spacing:-1.440000pt;}
.ws49{word-spacing:-1.408000pt;}
.ws23{word-spacing:-1.386667pt;}
.ws7e{word-spacing:-1.344000pt;}
.ws31{word-spacing:-1.280000pt;}
.wsa9{word-spacing:-1.226667pt;}
.ws73{word-spacing:-1.173333pt;}
.wsdd{word-spacing:-1.152000pt;}
.ws9f{word-spacing:-1.104000pt;}
.ws32{word-spacing:-1.066667pt;}
.ws4f{word-spacing:-0.993864pt;}
.ws98{word-spacing:-0.981447pt;}
.ws4e{word-spacing:-0.960000pt;}
.ws4d{word-spacing:-0.853333pt;}
.ws68{word-spacing:-0.800000pt;}
.wsa4{word-spacing:-0.797333pt;}
.ws36{word-spacing:-0.746667pt;}
.ws2c{word-spacing:-0.693333pt;}
.ws41{word-spacing:-0.640000pt;}
.ws29{word-spacing:-0.624000pt;}
.wsc4{word-spacing:-0.613333pt;}
.ws7f{word-spacing:-0.576000pt;}
.ws1f{word-spacing:-0.533333pt;}
.ws8b{word-spacing:-0.512000pt;}
.ws97{word-spacing:-0.490723pt;}
.ws80{word-spacing:-0.480000pt;}
.ws62{word-spacing:-0.436199pt;}
.ws63{word-spacing:-0.426667pt;}
.ws33{word-spacing:-0.400000pt;}
.ws43{word-spacing:-0.384000pt;}
.ws30{word-spacing:-0.373333pt;}
.ws8d{word-spacing:-0.320000pt;}
.wsb7{word-spacing:-0.306667pt;}
.ws84{word-spacing:-0.213333pt;}
.ws4a{word-spacing:-0.192000pt;}
.wsf4{word-spacing:-0.106667pt;}
.ws0{word-spacing:0.000000pt;}
.wsa8{word-spacing:0.061333pt;}
.ws88{word-spacing:0.106667pt;}
.wsc0{word-spacing:0.122667pt;}
.wsae{word-spacing:0.245333pt;}
.ws3b{word-spacing:0.320000pt;}
.ws70{word-spacing:0.327149pt;}
.ws69{word-spacing:0.373333pt;}
.ws3e{word-spacing:0.384000pt;}
.ws2f{word-spacing:0.416000pt;}
.ws39{word-spacing:0.512000pt;}
.wsc3{word-spacing:0.552000pt;}
.ws5f{word-spacing:0.554667pt;}
.wsc1{word-spacing:0.613333pt;}
.wse2{word-spacing:0.640000pt;}
.wse0{word-spacing:0.768000pt;}
.ws60{word-spacing:0.800000pt;}
.ws42{word-spacing:0.927608pt;}
.ws96{word-spacing:0.960000pt;}
.ws95{word-spacing:0.981447pt;}
.ws6b{word-spacing:1.120000pt;}
.ws74{word-spacing:1.173333pt;}
.ws75{word-spacing:1.199547pt;}
.ws6f{word-spacing:1.363122pt;}
.ws71{word-spacing:1.386667pt;}
.wsda{word-spacing:1.408000pt;}
.wsaf{word-spacing:1.523926pt;}
.wsec{word-spacing:1.600000pt;}
.wsf1{word-spacing:1.664000pt;}
.ws86{word-spacing:1.760000pt;}
.ws28{word-spacing:1.941333pt;}
.wsa6{word-spacing:2.208000pt;}
.wsd7{word-spacing:2.240000pt;}
.ws9e{word-spacing:2.269333pt;}
.ws6a{word-spacing:2.293333pt;}
.wse9{word-spacing:2.304000pt;}
.ws6e{word-spacing:2.400000pt;}
.wsa0{word-spacing:2.514667pt;}
.ws20{word-spacing:2.565333pt;}
.ws25{word-spacing:2.634667pt;}
.ws2e{word-spacing:2.704000pt;}
.ws7c{word-spacing:2.752000pt;}
.ws2b{word-spacing:2.773333pt;}
.ws6c{word-spacing:2.826667pt;}
.ws16{word-spacing:2.856000pt;}
.ws77{word-spacing:2.880000pt;}
.ws6d{word-spacing:2.889818pt;}
.wsc6{word-spacing:3.008000pt;}
.wsca{word-spacing:3.072000pt;}
.ws8a{word-spacing:3.200000pt;}
.wsf0{word-spacing:3.264000pt;}
.ws27{word-spacing:3.328000pt;}
.ws45{word-spacing:3.456000pt;}
.ws2d{word-spacing:3.466667pt;}
.wsb9{word-spacing:3.680000pt;}
.wsa1{word-spacing:3.802667pt;}
.ws58{word-spacing:3.882667pt;}
.ws92{word-spacing:3.904000pt;}
.ws81{word-spacing:4.053333pt;}
.wsdf{word-spacing:4.096000pt;}
.wsa7{word-spacing:4.232000pt;}
.wsa5{word-spacing:4.293333pt;}
.wse8{word-spacing:4.416000pt;}
.wsad{word-spacing:4.538667pt;}
.ws21{word-spacing:4.645333pt;}
.wsb5{word-spacing:4.661333pt;}
.ws72{word-spacing:4.746667pt;}
.ws47{word-spacing:5.184000pt;}
.wse6{word-spacing:5.568000pt;}
.ws57{word-spacing:5.685333pt;}
.ws46{word-spacing:5.888000pt;}
.wsb4{word-spacing:6.095704pt;}
.wse5{word-spacing:6.336000pt;}
.wsbf{word-spacing:6.440000pt;}
.ws5e{word-spacing:6.448000pt;}
.wsba{word-spacing:6.562667pt;}
.ws5d{word-spacing:7.072000pt;}
.ws38{word-spacing:7.104000pt;}
.wsde{word-spacing:7.360000pt;}
.ws85{word-spacing:7.520000pt;}
.ws4c{word-spacing:7.680000pt;}
.wsbe{word-spacing:7.937115pt;}
.ws3d{word-spacing:8.192000pt;}
.ws87{word-spacing:8.213333pt;}
.ws7b{word-spacing:8.384000pt;}
.wsef{word-spacing:8.640000pt;}
.wsb8{word-spacing:8.832000pt;}
.ws4b{word-spacing:9.088000pt;}
.ws9d{word-spacing:9.261333pt;}
.ws40{word-spacing:9.280000pt;}
.wsed{word-spacing:9.792000pt;}
.wsc2{word-spacing:9.813333pt;}
.wsaa{word-spacing:10.058667pt;}
.wse4{word-spacing:10.368000pt;}
.wsab{word-spacing:10.413494pt;}
.wsc9{word-spacing:10.688000pt;}
.ws90{word-spacing:11.050667pt;}
.wsd9{word-spacing:11.072000pt;}
.ws9c{word-spacing:11.408000pt;}
.wsdc{word-spacing:11.968000pt;}
.ws91{word-spacing:13.056000pt;}
.ws8f{word-spacing:13.397333pt;}
.ws5c{word-spacing:13.520000pt;}
.wscf{word-spacing:14.656000pt;}
.ws8c{word-spacing:18.240000pt;}
.wse3{word-spacing:18.560000pt;}
.ws5b{word-spacing:19.413333pt;}
.wscc{word-spacing:19.840000pt;}
.ws56{word-spacing:20.176000pt;}
.ws2a{word-spacing:21.632000pt;}
.wscb{word-spacing:21.888000pt;}
.wsee{word-spacing:24.000000pt;}
.wse7{word-spacing:26.496000pt;}
.ws3c{word-spacing:30.336000pt;}
.wsc5{word-spacing:32.016000pt;}
.wsd0{word-spacing:177.866667pt;}
.ws1e{word-spacing:215.812459pt;}
.ws1b{word-spacing:218.739247pt;}
.ws1c{word-spacing:218.742522pt;}
.ws1d{word-spacing:220.076474pt;}
._5f{margin-left:-3246.282667pt;}
._5d{margin-left:-3236.363200pt;}
._54{margin-left:-3221.563733pt;}
._5a{margin-left:-3218.683200pt;}
._5e{margin-left:-177.011200pt;}
._5c{margin-left:-37.206400pt;}
._56{margin-left:-33.026133pt;}
._50{margin-left:-24.847971pt;}
._51{margin-left:-23.666133pt;}
._15{margin-left:-14.223787pt;}
._4c{margin-left:-12.800000pt;}
._14{margin-left:-11.189333pt;}
._57{margin-left:-9.571200pt;}
._13{margin-left:-8.613120pt;}
._16{margin-left:-7.370667pt;}
._17{margin-left:-5.909333pt;}
._23{margin-left:-4.378880pt;}
._4{margin-left:-3.456000pt;}
._5{margin-left:-2.460800pt;}
._3{margin-left:-1.123200pt;}
._0{width:0.936320pt;}
._2{width:1.885867pt;}
._1{width:2.871467pt;}
._a{width:4.544000pt;}
._6{width:6.208000pt;}
._7{width:7.652693pt;}
._1d{width:8.603307pt;}
._1f{width:9.536000pt;}
._26{width:10.526080pt;}
._8{width:11.456000pt;}
._9{width:12.586667pt;}
._c{width:13.904213pt;}
._19{width:15.031253pt;}
._34{width:15.992960pt;}
._10{width:16.954880pt;}
._b{width:17.856000pt;}
._20{width:18.880000pt;}
._21{width:19.776000pt;}
._d{width:21.056000pt;}
._11{width:22.570667pt;}
._1e{width:24.000000pt;}
._25{width:25.095680pt;}
._f{width:26.076800pt;}
._e{width:27.491200pt;}
._29{width:29.290667pt;}
._1c{width:30.656000pt;}
._24{width:31.639680pt;}
._1a{width:32.640000pt;}
._1b{width:33.600000pt;}
._3f{width:35.200000pt;}
._45{width:36.096000pt;}
._31{width:37.506560pt;}
._40{width:38.897067pt;}
._39{width:40.057600pt;}
._38{width:41.059200pt;}
._41{width:42.972800pt;}
._2c{width:45.872000pt;}
._44{width:46.992000pt;}
._28{width:47.978667pt;}
._3d{width:48.960000pt;}
._43{width:51.712000pt;}
._12{width:53.098667pt;}
._46{width:57.536000pt;}
._47{width:58.530347pt;}
._37{width:60.736000pt;}
._4a{width:62.432000pt;}
._35{width:64.000000pt;}
._36{width:64.896000pt;}
._30{width:70.067200pt;}
._32{width:74.600960pt;}
._3a{width:77.248000pt;}
._3b{width:78.272000pt;}
._2d{width:82.608640pt;}
._42{width:88.419200pt;}
._3c{width:89.344000pt;}
._33{width:100.743680pt;}
._3e{width:109.376000pt;}
._2f{width:113.815040pt;}
._2a{width:116.700160pt;}
._4d{width:119.920213pt;}
._27{width:123.141547pt;}
._49{width:128.224000pt;}
._55{width:142.192000pt;}
._2b{width:152.734720pt;}
._4e{width:153.712213pt;}
._5b{width:163.907200pt;}
._2e{width:165.806080pt;}
._22{width:175.978667pt;}
._4f{width:176.980907pt;}
._59{width:179.280000pt;}
._58{width:180.240000pt;}
._4b{width:207.936000pt;}
._48{width:752.138667pt;}
._18{width:1497.845333pt;}
._53{width:1927.652267pt;}
._52{width:2613.872533pt;}
.fs22{font-size:27.984000pt;}
.fse{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fs1e{font-size:37.333333pt;}
.fs1f{font-size:38.650250pt;}
.fs19{font-size:42.666667pt;}
.fs8{font-size:42.880000pt;}
.fs20{font-size:44.171793pt;}
.fsc{font-size:48.000000pt;}
.fs21{font-size:49.072339pt;}
.fs1a{font-size:49.693198pt;}
.fs29{font-size:52.266667pt;}
.fs5{font-size:53.120000pt;}
.fsf{font-size:53.333333pt;}
.fs1d{font-size:54.524870pt;}
.fs12{font-size:56.000000pt;}
.fsb{font-size:56.320000pt;}
.fs26{font-size:57.975512pt;}
.fs6{font-size:58.880000pt;}
.fs27{font-size:61.333333pt;}
.fs28{font-size:63.496917pt;}
.fs4{font-size:64.000000pt;}
.fs18{font-size:66.257689pt;}
.fs7{font-size:69.120000pt;}
.fs13{font-size:69.333333pt;}
.fs24{font-size:70.933333pt;}
.fs17{font-size:74.666667pt;}
.fs1{font-size:74.880000pt;}
.fs11{font-size:80.000000pt;}
.fs25{font-size:82.822042pt;}
.fs0{font-size:85.120000pt;}
.fs14{font-size:89.600000pt;}
.fs1c{font-size:92.760682pt;}
.fs23{font-size:101.333333pt;}
.fs10{font-size:106.666667pt;}
.fs3{font-size:106.880000pt;}
.fs15{font-size:128.000000pt;}
.fs1b{font-size:132.515378pt;}
.fs2{font-size:149.120000pt;}
.fsd{font-size:190.400000pt;}
.fs16{font-size:202.486400pt;}
.y0{bottom:0.000000pt;}
.y1f0{bottom:3.520000pt;}
.y20e{bottom:5.920000pt;}
.y104{bottom:12.960000pt;}
.yfa{bottom:13.440000pt;}
.ye5{bottom:13.760000pt;}
.y343{bottom:14.599733pt;}
.ye9{bottom:16.000000pt;}
.yfd{bottom:16.640000pt;}
.yf2{bottom:21.440000pt;}
.y237{bottom:21.914667pt;}
.y1ef{bottom:21.920000pt;}
.y239{bottom:21.946667pt;}
.y362{bottom:22.666267pt;}
.yed{bottom:23.720000pt;}
.y20d{bottom:24.320000pt;}
.yf6{bottom:25.946667pt;}
.y103{bottom:29.760000pt;}
.yf9{bottom:30.240000pt;}
.ye4{bottom:30.560000pt;}
.y342{bottom:30.599733pt;}
.ye8{bottom:32.960000pt;}
.yfc{bottom:33.440000pt;}
.yf1{bottom:38.400000pt;}
.y236{bottom:40.314667pt;}
.y1ee{bottom:40.320000pt;}
.yec{bottom:40.680000pt;}
.y20c{bottom:42.720000pt;}
.yf5{bottom:42.746667pt;}
.y102{bottom:46.560000pt;}
.y341{bottom:46.599733pt;}
.yf8{bottom:47.200000pt;}
.ye3{bottom:47.520000pt;}
.y340{bottom:48.409467pt;}
.ye7{bottom:49.760000pt;}
.y5a{bottom:51.040000pt;}
.yf0{bottom:55.200000pt;}
.yeb{bottom:57.480000pt;}
.y235{bottom:58.714667pt;}
.y1ed{bottom:58.720000pt;}
.yf4{bottom:59.706667pt;}
.y20b{bottom:61.120000pt;}
.y25f{bottom:61.160000pt;}
.y101{bottom:63.520000pt;}
.y59{bottom:68.992000pt;}
.yef{bottom:72.000000pt;}
.y46e{bottom:75.762267pt;}
.y234{bottom:77.114667pt;}
.y1ec{bottom:77.120000pt;}
.y25b{bottom:77.160000pt;}
.y3ee{bottom:78.506000pt;}
.y20a{bottom:79.520000pt;}
.y25e{bottom:79.560000pt;}
.y100{bottom:80.360000pt;}
.y38d{bottom:81.624800pt;}
.y4b8{bottom:82.634133pt;}
.y38e{bottom:83.007333pt;}
.y3d3{bottom:85.404400pt;}
.y46d{bottom:87.762267pt;}
.y4eb{bottom:89.071467pt;}
.y464{bottom:91.156000pt;}
.y3ed{bottom:91.306000pt;}
.y233{bottom:95.514667pt;}
.y1eb{bottom:95.520000pt;}
.y26e{bottom:95.546667pt;}
.y25a{bottom:95.560000pt;}
.y7f{bottom:97.312000pt;}
.yff{bottom:97.320000pt;}
.y209{bottom:97.920000pt;}
.yaa{bottom:97.952000pt;}
.y25d{bottom:97.960000pt;}
.y14d{bottom:98.592000pt;}
.y46c{bottom:99.762267pt;}
.y175{bottom:101.952000pt;}
.y124{bottom:102.592000pt;}
.ycb{bottom:103.072000pt;}
.y463{bottom:103.156000pt;}
.y13{bottom:104.832000pt;}
.y1c5{bottom:104.992000pt;}
.y2b9{bottom:106.112000pt;}
.y2e5{bottom:107.072000pt;}
.y13a{bottom:109.632000pt;}
.y4fd{bottom:110.158800pt;}
.y4fb{bottom:110.496267pt;}
.y36c{bottom:110.645733pt;}
.y46b{bottom:111.762267pt;}
.y7e{bottom:112.512000pt;}
.y1a4{bottom:113.152000pt;}
.y174{bottom:113.632000pt;}
.y232{bottom:113.754667pt;}
.y256{bottom:113.914667pt;}
.y1ea{bottom:113.920000pt;}
.y259{bottom:113.960000pt;}
.y16d{bottom:115.072000pt;}
.y462{bottom:115.156000pt;}
.y50e{bottom:115.182667pt;}
.y250{bottom:115.552000pt;}
.y208{bottom:116.320000pt;}
.y3d2{bottom:116.358667pt;}
.y25c{bottom:116.360000pt;}
.ybf{bottom:117.152000pt;}
.y1a3{bottom:117.792000pt;}
.y298{bottom:122.272000pt;}
.y28b{bottom:122.752000pt;}
.y4fc{bottom:122.958800pt;}
.y1aa{bottom:123.232000pt;}
.y4fa{bottom:123.296267pt;}
.y46a{bottom:123.762267pt;}
.y2e4{bottom:125.472000pt;}
.yce{bottom:125.632000pt;}
.y14c{bottom:126.272000pt;}
.y461{bottom:127.156000pt;}
.y20f{bottom:127.712000pt;}
.y4a6{bottom:127.731333pt;}
.y178{bottom:127.872000pt;}
.y7d{bottom:128.512000pt;}
.y50{bottom:128.672000pt;}
.y1a2{bottom:128.832000pt;}
.ybe{bottom:128.992000pt;}
.ya9{bottom:129.472000pt;}
.y123{bottom:130.112000pt;}
.yca{bottom:130.592000pt;}
.y3d1{bottom:130.758667pt;}
.y231{bottom:132.154667pt;}
.y255{bottom:132.314667pt;}
.y284{bottom:132.320000pt;}
.y1e9{bottom:132.360000pt;}
.y177{bottom:132.512000pt;}
.y1c4{bottom:132.672000pt;}
.y7c{bottom:133.152000pt;}
.y2b8{bottom:133.626667pt;}
.y50d{bottom:134.382667pt;}
.y36b{bottom:134.645733pt;}
.y35{bottom:134.746667pt;}
.y207{bottom:134.760000pt;}
.y469{bottom:135.762267pt;}
.y139{bottom:137.146667pt;}
.y32a{bottom:137.626667pt;}
.y30a{bottom:139.066667pt;}
.y460{bottom:139.156000pt;}
.y3cb{bottom:142.074800pt;}
.y16c{bottom:142.746667pt;}
.y2e3{bottom:143.866667pt;}
.y4ec{bottom:143.868933pt;}
.y1a1{bottom:144.186667pt;}
.y12{bottom:144.346667pt;}
.ya8{bottom:144.826667pt;}
.y4a5{bottom:145.064667pt;}
.y7b{bottom:145.306667pt;}
.y468{bottom:147.762267pt;}
.y1a9{bottom:149.146667pt;}
.ya7{bottom:149.466667pt;}
.y28a{bottom:150.426667pt;}
.y230{bottom:150.554667pt;}
.y254{bottom:150.714667pt;}
.y283{bottom:150.720000pt;}
.y258{bottom:150.760000pt;}
.y45f{bottom:151.156000pt;}
.ycd{bottom:153.146667pt;}
.y206{bottom:153.160000pt;}
.y50c{bottom:153.582667pt;}
.y1a8{bottom:153.786667pt;}
.y3ca{bottom:154.074800pt;}
.y329{bottom:157.466667pt;}
.y122{bottom:157.786667pt;}
.yc9{bottom:158.266667pt;}
.y309{bottom:158.906667pt;}
.y4f{bottom:159.226667pt;}
.y467{bottom:159.762267pt;}
.y1a0{bottom:160.186667pt;}
.y2b7{bottom:161.306667pt;}
.y2e2{bottom:162.266667pt;}
.y4a4{bottom:162.398000pt;}
.y34{bottom:162.426667pt;}
.y150{bottom:163.066667pt;}
.y45e{bottom:163.156000pt;}
.y138{bottom:164.826667pt;}
.y1a7{bottom:165.626667pt;}
.y297{bottom:165.946667pt;}
.y3c9{bottom:166.074800pt;}
.y22f{bottom:168.994667pt;}
.y253{bottom:169.114667pt;}
.y282{bottom:169.120000pt;}
.y1e8{bottom:169.160000pt;}
.y14b{bottom:169.786667pt;}
.y16b{bottom:170.266667pt;}
.y205{bottom:171.560000pt;}
.y466{bottom:171.762267pt;}
.y50b{bottom:172.782667pt;}
.y11{bottom:172.986667pt;}
.y1ca{bottom:173.626667pt;}
.y45d{bottom:175.156000pt;}
.ya6{bottom:176.186667pt;}
.y19f{bottom:176.506667pt;}
.y17c{bottom:177.306667pt;}
.y289{bottom:177.946667pt;}
.y3c8{bottom:178.074800pt;}
.y4a3{bottom:179.731333pt;}
.y2e1{bottom:180.666667pt;}
.ybd{bottom:180.826667pt;}
.y121{bottom:185.306667pt;}
.yc8{bottom:185.786667pt;}
.y7a{bottom:185.946667pt;}
.y45c{bottom:187.156000pt;}
.y22e{bottom:187.394667pt;}
.y281{bottom:187.520000pt;}
.y252{bottom:187.554667pt;}
.y1e7{bottom:187.560000pt;}
.y328{bottom:188.026667pt;}
.y2b6{bottom:188.826667pt;}
.y308{bottom:189.466667pt;}
.y4e{bottom:189.626667pt;}
.y204{bottom:189.960000pt;}
.y3c7{bottom:190.074800pt;}
.ya5{bottom:191.546667pt;}
.y50a{bottom:191.982667pt;}
.y105{bottom:192.026667pt;}
.y137{bottom:192.346667pt;}
.y19e{bottom:192.666667pt;}
.y465{bottom:195.762267pt;}
.ya4{bottom:196.186667pt;}
.y4a2{bottom:197.064667pt;}
.y14a{bottom:197.466667pt;}
.y16a{bottom:197.946667pt;}
.y2e0{bottom:199.066667pt;}
.y45b{bottom:199.156000pt;}
.y10{bottom:201.786667pt;}
.y1c3{bottom:203.706667pt;}
.y288{bottom:205.626667pt;}
.y22d{bottom:205.794667pt;}
.y280{bottom:205.920000pt;}
.y33{bottom:205.946667pt;}
.y251{bottom:205.954667pt;}
.y1e6{bottom:205.960000pt;}
.y327{bottom:207.866667pt;}
.ybc{bottom:208.346667pt;}
.y203{bottom:208.360000pt;}
.y19d{bottom:208.986667pt;}
.y307{bottom:209.306667pt;}
.y296{bottom:209.466667pt;}
.y45a{bottom:211.156000pt;}
.y120{bottom:212.986667pt;}
.y79{bottom:213.466667pt;}
.y3c6{bottom:214.074800pt;}
.y4a1{bottom:214.398000pt;}
.y176{bottom:214.426667pt;}
.y44d{bottom:216.276667pt;}
.yfe{bottom:216.346667pt;}
.y2b5{bottom:216.506667pt;}
.ya3{bottom:217.466667pt;}
.y136{bottom:219.866667pt;}
.y4d{bottom:220.186667pt;}
.ya2{bottom:222.106667pt;}
.y459{bottom:223.156000pt;}
.y22c{bottom:224.194667pt;}
.y173{bottom:224.346667pt;}
.y26c{bottom:224.354667pt;}
.y1e5{bottom:224.360000pt;}
.y149{bottom:224.986667pt;}
.y19c{bottom:225.306667pt;}
.y202{bottom:226.760000pt;}
.y360{bottom:227.505867pt;}
.y44c{bottom:228.276667pt;}
.yf{bottom:230.586667pt;}
.y1c2{bottom:231.386667pt;}
.y3c5{bottom:231.408133pt;}
.y4a0{bottom:231.731333pt;}
.y287{bottom:232.986667pt;}
.y32{bottom:233.466667pt;}
.ya1{bottom:233.946667pt;}
.y458{bottom:235.156000pt;}
.ybb{bottom:235.866667pt;}
.y326{bottom:238.426667pt;}
.y44b{bottom:240.276667pt;}
.y306{bottom:240.346667pt;}
.y11f{bottom:240.506667pt;}
.yc7{bottom:240.986667pt;}
.y78{bottom:241.146667pt;}
.y169{bottom:241.466667pt;}
.y22b{bottom:242.594667pt;}
.y27f{bottom:242.746667pt;}
.y26b{bottom:242.754667pt;}
.y1e4{bottom:242.760000pt;}
.y2b4{bottom:244.026667pt;}
.y201{bottom:245.160000pt;}
.y50f{bottom:245.695600pt;}
.y19b{bottom:246.106667pt;}
.y457{bottom:247.156000pt;}
.y135{bottom:247.546667pt;}
.y35f{bottom:248.305867pt;}
.y3c4{bottom:248.741467pt;}
.y49f{bottom:249.064667pt;}
.y478{bottom:250.397333pt;}
.y172{bottom:251.866667pt;}
.y44a{bottom:252.276667pt;}
.y148{bottom:252.666667pt;}
.y295{bottom:253.146667pt;}
.y2df{bottom:254.266667pt;}
.y19a{bottom:258.266667pt;}
.y1c1{bottom:258.906667pt;}
.ye1{bottom:259.066667pt;}
.y456{bottom:259.156000pt;}
.ye{bottom:259.386667pt;}
.y22a{bottom:260.994667pt;}
.y477{bottom:261.064000pt;}
.y31{bottom:261.146667pt;}
.y26a{bottom:261.154667pt;}
.y1e3{bottom:261.160000pt;}
.ycc{bottom:263.546667pt;}
.y200{bottom:263.560000pt;}
.y4c{bottom:263.706667pt;}
.y449{bottom:264.276667pt;}
.y3c3{bottom:266.074800pt;}
.y11e{bottom:268.186667pt;}
.y77{bottom:268.666667pt;}
.y35e{bottom:269.105867pt;}
.y168{bottom:269.146667pt;}
.y286{bottom:269.466667pt;}
.y305{bottom:269.786667pt;}
.y455{bottom:271.156000pt;}
.y2b3{bottom:271.706667pt;}
.y476{bottom:271.730667pt;}
.y2de{bottom:272.666667pt;}
.y374{bottom:273.189467pt;}
.y134{bottom:275.066667pt;}
.y9f{bottom:275.386667pt;}
.y448{bottom:276.276667pt;}
.y229{bottom:279.394667pt;}
.yba{bottom:279.546667pt;}
.y269{bottom:279.554667pt;}
.y1e2{bottom:279.560000pt;}
.y147{bottom:280.186667pt;}
.ya0{bottom:280.666667pt;}
.y1ff{bottom:281.960000pt;}
.y475{bottom:282.397333pt;}
.y454{bottom:283.156000pt;}
.y3c2{bottom:283.408133pt;}
.y49e{bottom:283.731333pt;}
.y285{bottom:286.266667pt;}
.y1c0{bottom:286.586667pt;}
.y447{bottom:288.276667pt;}
.y30{bottom:288.666667pt;}
.y325{bottom:288.826667pt;}
.y199{bottom:288.986667pt;}
.y304{bottom:289.626667pt;}
.y35d{bottom:289.905867pt;}
.y17b{bottom:291.106667pt;}
.yd{bottom:291.746667pt;}
.y474{bottom:293.064000pt;}
.y453{bottom:295.156000pt;}
.y11d{bottom:295.746667pt;}
.yd0{bottom:296.226667pt;}
.y76{bottom:296.386667pt;}
.y167{bottom:296.706667pt;}
.y228{bottom:297.794667pt;}
.y27e{bottom:297.946667pt;}
.y268{bottom:297.954667pt;}
.y1e1{bottom:297.960000pt;}
.y257{bottom:297.986667pt;}
.y2b2{bottom:299.266667pt;}
.y446{bottom:300.276667pt;}
.y1fe{bottom:300.360000pt;}
.y3c1{bottom:300.741467pt;}
.y49d{bottom:301.064667pt;}
.ye0{bottom:302.786667pt;}
.y9e{bottom:302.946667pt;}
.y473{bottom:303.730667pt;}
.yc6{bottom:304.386667pt;}
.yb9{bottom:307.106667pt;}
.y452{bottom:307.156000pt;}
.y4b{bottom:307.426667pt;}
.y146{bottom:307.906667pt;}
.y324{bottom:308.706667pt;}
.y2dd{bottom:309.506667pt;}
.y35c{bottom:310.705867pt;}
.y271{bottom:310.786667pt;}
.y445{bottom:312.276667pt;}
.y1bf{bottom:314.146667pt;}
.y472{bottom:314.397333pt;}
.y227{bottom:316.194667pt;}
.y27d{bottom:316.346667pt;}
.y267{bottom:316.354667pt;}
.y1e0{bottom:316.360000pt;}
.y2f{bottom:316.386667pt;}
.y198{bottom:316.546667pt;}
.y3c0{bottom:318.074800pt;}
.y49c{bottom:318.398000pt;}
.y1fd{bottom:318.760000pt;}
.y179{bottom:318.786667pt;}
.y451{bottom:319.156000pt;}
.y303{bottom:320.226667pt;}
.y11c{bottom:323.426667pt;}
.y75{bottom:323.906667pt;}
.y444{bottom:324.276667pt;}
.y166{bottom:324.386667pt;}
.y17a{bottom:324.866667pt;}
.y471{bottom:325.064000pt;}
.y2b1{bottom:326.946667pt;}
.y2dc{bottom:327.906667pt;}
.ydf{bottom:330.306667pt;}
.y9d{bottom:330.626667pt;}
.y450{bottom:331.156000pt;}
.y35b{bottom:331.505867pt;}
.y226{bottom:334.594667pt;}
.y27c{bottom:334.746667pt;}
.y266{bottom:334.754667pt;}
.y1df{bottom:334.760000pt;}
.yb8{bottom:334.786667pt;}
.y3bf{bottom:335.408133pt;}
.y145{bottom:335.426667pt;}
.y470{bottom:335.730667pt;}
.y49b{bottom:335.731333pt;}
.y443{bottom:336.276667pt;}
.y36a{bottom:337.041733pt;}
.y1fc{bottom:337.160000pt;}
.y366{bottom:337.539200pt;}
.y4a{bottom:338.466667pt;}
.y302{bottom:338.626667pt;}
.y323{bottom:339.586667pt;}
.y294{bottom:340.386667pt;}
.y1be{bottom:341.826667pt;}
.y44f{bottom:343.156000pt;}
.y2e{bottom:343.906667pt;}
.y197{bottom:344.226667pt;}
.y133{bottom:346.306667pt;}
.y33f{bottom:346.377867pt;}
.y442{bottom:348.276667pt;}
.y11b{bottom:350.946667pt;}
.y130{bottom:351.426667pt;}
.y74{bottom:351.586667pt;}
.y165{bottom:351.906667pt;}
.y35a{bottom:352.305867pt;}
.y3be{bottom:352.741467pt;}
.y27b{bottom:352.986667pt;}
.y225{bottom:352.994667pt;}
.y49a{bottom:353.064667pt;}
.y265{bottom:353.154667pt;}
.y1de{bottom:353.160000pt;}
.y2b0{bottom:354.466667pt;}
.y1fb{bottom:355.586667pt;}
.y24f{bottom:357.026667pt;}
.yfb{bottom:357.826667pt;}
.yde{bottom:357.986667pt;}
.y9c{bottom:358.146667pt;}
.y322{bottom:358.466667pt;}
.ycf{bottom:359.586667pt;}
.y3ec{bottom:360.826800pt;}
.yb7{bottom:362.306667pt;}
.y144{bottom:363.106667pt;}
.y2db{bottom:364.706667pt;}
.y44e{bottom:367.156000pt;}
.y46f{bottom:367.730667pt;}
.y1bd{bottom:369.346667pt;}
.y499{bottom:370.398000pt;}
.y27a{bottom:371.386667pt;}
.y224{bottom:371.394667pt;}
.y264{bottom:371.554667pt;}
.y2d{bottom:371.586667pt;}
.y49{bottom:371.746667pt;}
.y441{bottom:372.276667pt;}
.y132{bottom:373.986667pt;}
.y301{bottom:375.426667pt;}
.y3d0{bottom:378.090933pt;}
.y11a{bottom:378.626667pt;}
.y73{bottom:379.106667pt;}
.y164{bottom:379.586667pt;}
.y3eb{bottom:380.026800pt;}
.y321{bottom:381.026667pt;}
.y2af{bottom:382.146667pt;}
.y2da{bottom:382.946667pt;}
.y293{bottom:383.906667pt;}
.y24e{bottom:384.706667pt;}
.ydd{bottom:385.506667pt;}
.y9b{bottom:385.666667pt;}
.y498{bottom:387.731333pt;}
.y196{bottom:387.746667pt;}
.y279{bottom:389.786667pt;}
.y223{bottom:389.794667pt;}
.y263{bottom:389.954667pt;}
.yb6{bottom:389.986667pt;}
.y143{bottom:390.626667pt;}
.y1fa{bottom:392.386667pt;}
.y3cf{bottom:392.490933pt;}
.y300{bottom:393.826667pt;}
.y12f{bottom:395.106667pt;}
.y4f9{bottom:395.966933pt;}
.y1bc{bottom:397.026667pt;}
.y359{bottom:397.105867pt;}
.y2c{bottom:399.106667pt;}
.y3ea{bottom:399.226667pt;}
.y440{bottom:401.120133pt;}
.y2d9{bottom:401.346667pt;}
.y369{bottom:401.391467pt;}
.y131{bottom:401.506667pt;}
.y365{bottom:401.888933pt;}
.y511{bottom:402.366933pt;}
.y384{bottom:402.426667pt;}
.y497{bottom:405.064667pt;}
.y48{bottom:405.986667pt;}
.y14f{bottom:406.626667pt;}
.y72{bottom:406.786667pt;}
.y163{bottom:407.106667pt;}
.y278{bottom:408.186667pt;}
.y262{bottom:408.194667pt;}
.y222{bottom:408.221333pt;}
.y1dd{bottom:408.386667pt;}
.y4f8{bottom:408.766933pt;}
.y4ff{bottom:409.090267pt;}
.y4f5{bottom:409.373867pt;}
.y2ae{bottom:409.666667pt;}
.y33e{bottom:409.844533pt;}
.y1f9{bottom:410.786667pt;}
.y320{bottom:411.586667pt;}
.y24d{bottom:412.226667pt;}
.y119{bottom:412.706667pt;}
.y43f{bottom:413.120133pt;}
.y9a{bottom:413.346667pt;}
.y510{bottom:415.166933pt;}
.y195{bottom:415.426667pt;}
.yb5{bottom:417.506667pt;}
.y358{bottom:417.905867pt;}
.y3e9{bottom:418.426667pt;}
.y2d8{bottom:419.746667pt;}
.y368{bottom:420.591467pt;}
.y4f7{bottom:421.566933pt;}
.y383{bottom:421.626667pt;}
.y4fe{bottom:421.890267pt;}
.y4f4{bottom:422.173867pt;}
.y496{bottom:422.398000pt;}
.y12e{bottom:422.626667pt;}
.y3a1{bottom:423.124533pt;}
.y1bb{bottom:424.546667pt;}
.y43e{bottom:425.120133pt;}
.y277{bottom:426.586667pt;}
.y221{bottom:426.621333pt;}
.y2b{bottom:426.786667pt;}
.y292{bottom:427.586667pt;}
.y41d{bottom:429.148000pt;}
.ydc{bottom:429.186667pt;}
.y118{bottom:429.506667pt;}
.y2ff{bottom:430.626667pt;}
.y31f{bottom:431.426667pt;}
.y71{bottom:434.306667pt;}
.y162{bottom:434.786667pt;}
.yf7{bottom:435.586667pt;}
.y43d{bottom:437.120133pt;}
.y2ad{bottom:437.346667pt;}
.y3e8{bottom:437.626667pt;}
.y4d5{bottom:437.893333pt;}
.y2d7{bottom:438.146667pt;}
.y357{bottom:438.705867pt;}
.y495{bottom:439.731333pt;}
.y24c{bottom:439.906667pt;}
.y47{bottom:440.226667pt;}
.y382{bottom:440.826800pt;}
.y99{bottom:440.866667pt;}
.y41c{bottom:441.148000pt;}
.y194{bottom:442.946667pt;}
.y3a0{bottom:443.924533pt;}
.y430{bottom:444.749067pt;}
.y276{bottom:444.986667pt;}
.y220{bottom:445.021333pt;}
.yb4{bottom:445.186667pt;}
.y117{bottom:446.466667pt;}
.y1f8{bottom:447.586667pt;}
.y2fe{bottom:449.026667pt;}
.y43c{bottom:449.120133pt;}
.y12d{bottom:450.306667pt;}
.y1ba{bottom:452.226667pt;}
.y41b{bottom:453.148000pt;}
.y4d4{bottom:453.226667pt;}
.y2a{bottom:454.306667pt;}
.y42f{bottom:455.415733pt;}
.y2d6{bottom:456.546667pt;}
.ydb{bottom:456.706667pt;}
.y3e7{bottom:456.826800pt;}
.y3bd{bottom:457.392400pt;}
.y356{bottom:459.505867pt;}
.y381{bottom:460.026800pt;}
.y43b{bottom:461.120133pt;}
.y142{bottom:461.826667pt;}
.y70{bottom:461.986667pt;}
.y161{bottom:462.306667pt;}
.y4e9{bottom:463.226667pt;}
.y116{bottom:463.266667pt;}
.y21f{bottom:463.421333pt;}
.y275{bottom:463.426667pt;}
.y1dc{bottom:463.586667pt;}
.y2ac{bottom:464.866667pt;}
.y41a{bottom:465.148000pt;}
.y1f7{bottom:465.986667pt;}
.y42e{bottom:466.082400pt;}
.y372{bottom:466.238667pt;}
.y373{bottom:466.238800pt;}
.y24b{bottom:467.426667pt;}
.y4d3{bottom:468.560000pt;}
.y97{bottom:469.026667pt;}
.y3bc{bottom:469.392400pt;}
.y193{bottom:470.626667pt;}
.y291{bottom:471.106667pt;}
.yb3{bottom:472.706667pt;}
.y43a{bottom:473.120133pt;}
.y33d{bottom:473.311200pt;}
.y98{bottom:474.306667pt;}
.y494{bottom:474.398000pt;}
.y46{bottom:474.466667pt;}
.y2d5{bottom:474.946667pt;}
.y3e6{bottom:476.026800pt;}
.y42d{bottom:476.749067pt;}
.y419{bottom:477.148000pt;}
.y12c{bottom:477.826667pt;}
.y380{bottom:479.226667pt;}
.y1b9{bottom:479.746667pt;}
.y115{bottom:480.226667pt;}
.y355{bottom:480.305867pt;}
.y3bb{bottom:481.392400pt;}
.y21e{bottom:481.821333pt;}
.y274{bottom:481.826667pt;}
.y29{bottom:481.986667pt;}
.y4d2{bottom:483.893333pt;}
.yda{bottom:484.386667pt;}
.y439{bottom:485.120133pt;}
.y39f{bottom:485.524533pt;}
.y2fd{bottom:485.826667pt;}
.y42c{bottom:487.415733pt;}
.y418{bottom:489.148000pt;}
.y6f{bottom:489.506667pt;}
.y160{bottom:489.986667pt;}
.y493{bottom:491.731333pt;}
.y2ab{bottom:492.386667pt;}
.y4b7{bottom:493.203467pt;}
.y2d4{bottom:493.346667pt;}
.y3ba{bottom:493.392400pt;}
.y24a{bottom:494.946667pt;}
.y3e5{bottom:495.226667pt;}
.y96{bottom:496.546667pt;}
.y114{bottom:497.026667pt;}
.y438{bottom:497.120133pt;}
.y42b{bottom:498.082400pt;}
.y192{bottom:498.146667pt;}
.y37f{bottom:498.426667pt;}
.y4d1{bottom:499.226667pt;}
.y21d{bottom:500.221333pt;}
.y273{bottom:500.226667pt;}
.yb2{bottom:500.386667pt;}
.y417{bottom:501.148000pt;}
.y1f6{bottom:502.786667pt;}
.y2fc{bottom:504.226667pt;}
.y12b{bottom:505.506667pt;}
.y39e{bottom:506.324533pt;}
.y1b8{bottom:507.426667pt;}
.y45{bottom:508.706667pt;}
.y42a{bottom:508.749067pt;}
.y492{bottom:509.064667pt;}
.y437{bottom:509.120133pt;}
.y339{bottom:509.346667pt;}
.y28{bottom:509.506667pt;}
.y4e8{bottom:511.226667pt;}
.y2d3{bottom:511.746667pt;}
.yd9{bottom:511.906667pt;}
.y31e{bottom:512.386667pt;}
.y416{bottom:513.148000pt;}
.y113{bottom:513.986667pt;}
.y3e4{bottom:514.426667pt;}
.y290{bottom:514.786667pt;}
.y141{bottom:517.026667pt;}
.y6e{bottom:517.186667pt;}
.y15f{bottom:517.506667pt;}
.y37e{bottom:517.626667pt;}
.y21c{bottom:518.621333pt;}
.y272{bottom:518.626667pt;}
.y1db{bottom:518.786667pt;}
.y429{bottom:519.415733pt;}
.y2aa{bottom:520.066667pt;}
.y436{bottom:521.120133pt;}
.y1f5{bottom:521.186667pt;}
.y249{bottom:522.626667pt;}
.y3b9{bottom:522.725733pt;}
.y95{bottom:524.226667pt;}
.y354{bottom:525.105867pt;}
.y415{bottom:525.148000pt;}
.y14e{bottom:525.186667pt;}
.y4b6{bottom:525.203467pt;}
.y191{bottom:525.826667pt;}
.y491{bottom:526.398000pt;}
.yf3{bottom:526.946667pt;}
.y39d{bottom:527.124533pt;}
.y4e7{bottom:527.226667pt;}
.y27{bottom:527.906667pt;}
.y4d0{bottom:529.893333pt;}
.y428{bottom:530.082400pt;}
.y2d2{bottom:530.173333pt;}
.y370{bottom:530.588533pt;}
.y112{bottom:530.813333pt;}
.y371{bottom:531.421733pt;}
.y31d{bottom:532.253333pt;}
.y12a{bottom:533.053333pt;}
.y435{bottom:533.120133pt;}
.y3e3{bottom:533.626667pt;}
.y37d{bottom:536.826800pt;}
.y21b{bottom:537.021333pt;}
.y1da{bottom:537.186667pt;}
.y1f4{bottom:539.586667pt;}
.yd8{bottom:539.613333pt;}
.y338{bottom:539.933333pt;}
.y3b8{bottom:540.059067pt;}
.y427{bottom:540.749067pt;}
.y2fb{bottom:541.053333pt;}
.y4b5{bottom:541.203467pt;}
.y44{bottom:542.973333pt;}
.y4e6{bottom:543.226667pt;}
.y490{bottom:543.731333pt;}
.y6d{bottom:544.733333pt;}
.y434{bottom:545.120133pt;}
.y15e{bottom:545.213333pt;}
.y4cf{bottom:545.226667pt;}
.y353{bottom:545.905867pt;}
.y26{bottom:546.333333pt;}
.y111{bottom:547.613333pt;}
.y39c{bottom:547.924533pt;}
.y2d1{bottom:548.573333pt;}
.y414{bottom:549.148000pt;}
.y248{bottom:550.173333pt;}
.y1b7{bottom:550.973333pt;}
.y426{bottom:551.415733pt;}
.yc{bottom:551.773333pt;}
.y31c{bottom:552.093333pt;}
.y3e2{bottom:552.826800pt;}
.y190{bottom:553.373333pt;}
.y21a{bottom:555.421333pt;}
.y1d9{bottom:555.586667pt;}
.yb1{bottom:555.613333pt;}
.y37c{bottom:556.026800pt;}
.y433{bottom:557.120133pt;}
.y4b4{bottom:557.203467pt;}
.y3b7{bottom:557.392400pt;}
.y1f3{bottom:557.986667pt;}
.y28f{bottom:558.333333pt;}
.y4e5{bottom:559.226667pt;}
.y2fa{bottom:559.453333pt;}
.y337{bottom:559.773333pt;}
.y4ce{bottom:560.560000pt;}
.y129{bottom:560.733333pt;}
.y48f{bottom:561.064667pt;}
.y425{bottom:562.082400pt;}
.y110{bottom:564.573333pt;}
.y25{bottom:564.733333pt;}
.y352{bottom:566.705867pt;}
.y2d0{bottom:566.973333pt;}
.yd7{bottom:567.133333pt;}
.y432{bottom:569.120133pt;}
.y171{bottom:571.613333pt;}
.y3e1{bottom:572.026800pt;}
.y140{bottom:572.253333pt;}
.y6c{bottom:572.413333pt;}
.y15d{bottom:572.733333pt;}
.y424{bottom:572.749067pt;}
.y4b3{bottom:573.203467pt;}
.y219{bottom:573.821333pt;}
.y1d8{bottom:573.986667pt;}
.y3b6{bottom:574.725733pt;}
.y37b{bottom:575.226667pt;}
.y2a9{bottom:575.293333pt;}
.y4cd{bottom:575.893333pt;}
.y1f2{bottom:576.386667pt;}
.y43{bottom:577.373333pt;}
.y247{bottom:577.853333pt;}
.y1b6{bottom:578.653333pt;}
.y94{bottom:579.453333pt;}
.y18f{bottom:581.053333pt;}
.y10f{bottom:581.373333pt;}
.y31b{bottom:582.493333pt;}
.y24{bottom:583.133333pt;}
.y423{bottom:583.415733pt;}
.y2cf{bottom:585.373333pt;}
.y351{bottom:587.505867pt;}
.y128{bottom:588.253333pt;}
.y4b2{bottom:589.203467pt;}
.y39b{bottom:589.524533pt;}
.y336{bottom:590.333333pt;}
.yb{bottom:591.133333pt;}
.y3e0{bottom:591.226667pt;}
.y3b5{bottom:592.059067pt;}
.y218{bottom:592.221333pt;}
.y1d7{bottom:592.386667pt;}
.y431{bottom:593.120133pt;}
.y422{bottom:594.082400pt;}
.y509{bottom:594.426667pt;}
.yd6{bottom:594.813333pt;}
.y1f1{bottom:594.826667pt;}
.y364{bottom:594.892667pt;}
.y48e{bottom:595.731333pt;}
.y367{bottom:595.771467pt;}
.y2f9{bottom:596.253333pt;}
.y10e{bottom:598.333333pt;}
.y170{bottom:599.133333pt;}
.y6b{bottom:599.933333pt;}
.y15c{bottom:600.413333pt;}
.y23{bottom:601.533333pt;}
.y28e{bottom:602.013333pt;}
.y31a{bottom:602.493333pt;}
.y2a8{bottom:602.813333pt;}
.y38c{bottom:603.604267pt;}
.y2ce{bottom:603.773333pt;}
.y421{bottom:604.749067pt;}
.y4b1{bottom:605.203467pt;}
.y246{bottom:605.373333pt;}
.y1b5{bottom:606.173333pt;}
.y93{bottom:606.973333pt;}
.y350{bottom:608.305867pt;}
.y18e{bottom:608.573333pt;}
.y3b4{bottom:609.392400pt;}
.y335{bottom:610.173333pt;}
.y39a{bottom:610.324533pt;}
.y217{bottom:610.621333pt;}
.yb0{bottom:610.813333pt;}
.y1d6{bottom:610.826667pt;}
.y42{bottom:611.613333pt;}
.y48d{bottom:613.064667pt;}
.y508{bottom:613.626667pt;}
.y2f8{bottom:614.653333pt;}
.y10d{bottom:615.133333pt;}
.y420{bottom:615.415733pt;}
.y127{bottom:615.933333pt;}
.y38b{bottom:616.404133pt;}
.y22{bottom:619.933333pt;}
.y413{bottom:619.933467pt;}
.y4b0{bottom:621.203467pt;}
.y4cc{bottom:621.893333pt;}
.y2cd{bottom:622.173333pt;}
.yd5{bottom:622.333333pt;}
.y4e4{bottom:623.226667pt;}
.ya{bottom:624.893333pt;}
.y41f{bottom:626.082400pt;}
.y389{bottom:626.594933pt;}
.y3b3{bottom:626.725733pt;}
.y16f{bottom:626.813333pt;}
.y6a{bottom:627.613333pt;}
.y216{bottom:629.021333pt;}
.y38a{bottom:629.204133pt;}
.y1d5{bottom:629.226667pt;}
.y3df{bottom:629.626667pt;}
.y48c{bottom:630.398000pt;}
.y2a7{bottom:630.493333pt;}
.yee{bottom:630.813333pt;}
.y399{bottom:631.124533pt;}
.y10c{bottom:631.933333pt;}
.y412{bottom:631.933467pt;}
.y507{bottom:632.826800pt;}
.y245{bottom:633.053333pt;}
.y1b4{bottom:633.853333pt;}
.y92{bottom:634.653333pt;}
.y15b{bottom:634.813333pt;}
.y18d{bottom:636.253333pt;}
.y4af{bottom:637.203467pt;}
.y4cb{bottom:637.226667pt;}
.y21{bottom:638.333333pt;}
.y4e3{bottom:639.226667pt;}
.y2cc{bottom:640.573333pt;}
.y388{bottom:640.994933pt;}
.y126{bottom:643.453333pt;}
.y411{bottom:643.933467pt;}
.y3b2{bottom:644.059067pt;}
.y28d{bottom:645.533333pt;}
.y41{bottom:645.853333pt;}
.y41e{bottom:647.415733pt;}
.y215{bottom:647.461333pt;}
.y1d4{bottom:647.626667pt;}
.y48b{bottom:647.731333pt;}
.y3de{bottom:648.826800pt;}
.y10b{bottom:648.893333pt;}
.y261{bottom:649.053333pt;}
.y34f{bottom:649.905867pt;}
.yd4{bottom:650.013333pt;}
.y2f7{bottom:651.453333pt;}
.y398{bottom:651.924533pt;}
.y4ae{bottom:652.026800pt;}
.y4ca{bottom:652.560000pt;}
.y319{bottom:652.733333pt;}
.yc5{bottom:654.333333pt;}
.y69{bottom:655.133333pt;}
.y4e2{bottom:655.226667pt;}
.y410{bottom:655.933467pt;}
.y2a6{bottom:658.013333pt;}
.y9{bottom:658.653333pt;}
.y2cb{bottom:658.973333pt;}
.y36f{bottom:659.742533pt;}
.y3fa{bottom:660.041600pt;}
.y334{bottom:660.573333pt;}
.y1b3{bottom:661.373333pt;}
.y3b1{bottom:661.392400pt;}
.y91{bottom:662.173333pt;}
.y3dd{bottom:664.826800pt;}
.y48a{bottom:665.064667pt;}
.y10a{bottom:665.693333pt;}
.y4f1{bottom:665.815600pt;}
.y214{bottom:665.861333pt;}
.y20{bottom:666.013333pt;}
.y1d3{bottom:666.026667pt;}
.y4f3{bottom:667.079733pt;}
.y4ee{bottom:667.246667pt;}
.y4c9{bottom:667.893333pt;}
.y40f{bottom:667.933467pt;}
.y15a{bottom:669.213333pt;}
.y2f6{bottom:669.853333pt;}
.y34e{bottom:670.705867pt;}
.y13f{bottom:670.973333pt;}
.y4ad{bottom:671.226667pt;}
.y3f9{bottom:672.041600pt;}
.y318{bottom:672.573333pt;}
.y4f0{bottom:675.415600pt;}
.y244{bottom:676.573333pt;}
.y2ca{bottom:677.373333pt;}
.yd3{bottom:677.533333pt;}
.y3b0{bottom:678.725733pt;}
.y125{bottom:679.293333pt;}
.y18b{bottom:679.773333pt;}
.y4f2{bottom:679.879733pt;}
.y40e{bottom:679.933467pt;}
.y4ed{bottom:680.046667pt;}
.y40{bottom:680.093333pt;}
.y3dc{bottom:680.826800pt;}
.yc4{bottom:682.013333pt;}
.y489{bottom:682.398000pt;}
.y68{bottom:682.653333pt;}
.y260{bottom:682.813333pt;}
.y4c8{bottom:683.226667pt;}
.y3f8{bottom:684.041600pt;}
.y213{bottom:684.261333pt;}
.y1d2{bottom:684.426667pt;}
.y4ef{bottom:685.015600pt;}
.y403{bottom:685.284533pt;}
.y2a5{bottom:685.693333pt;}
.y18c{bottom:685.853333pt;}
.y4e1{bottom:687.226667pt;}
.y2f5{bottom:688.253333pt;}
.y1b2{bottom:689.053333pt;}
.y28c{bottom:689.213333pt;}
.y90{bottom:689.853333pt;}
.y4ac{bottom:690.426800pt;}
.y333{bottom:690.973333pt;}
.y34d{bottom:691.505867pt;}
.y40d{bottom:691.933467pt;}
.y317{bottom:692.573333pt;}
.y397{bottom:693.524533pt;}
.y1f{bottom:693.533333pt;}
.y2c9{bottom:695.773333pt;}
.y3f7{bottom:696.041600pt;}
.y3db{bottom:696.826800pt;}
.y402{bottom:697.284533pt;}
.y4c7{bottom:698.560000pt;}
.y13e{bottom:698.653333pt;}
.y109{bottom:699.453333pt;}
.y212{bottom:702.661333pt;}
.y1d1{bottom:702.826667pt;}
.y4e0{bottom:703.226667pt;}
.y159{bottom:703.613333pt;}
.y40c{bottom:703.933467pt;}
.y243{bottom:704.253333pt;}
.yd2{bottom:705.213333pt;}
.y8{bottom:706.333333pt;}
.y2f4{bottom:706.653333pt;}
.y18a{bottom:707.293333pt;}
.y3f6{bottom:708.041600pt;}
.y401{bottom:709.284533pt;}
.yc3{bottom:709.533333pt;}
.y4ab{bottom:709.626667pt;}
.y67{bottom:710.333333pt;}
.y332{bottom:710.813333pt;}
.y34c{bottom:712.305867pt;}
.y316{bottom:712.413333pt;}
.y3da{bottom:712.826800pt;}
.y2a4{bottom:713.213333pt;}
.y4c6{bottom:713.893333pt;}
.y2c8{bottom:714.173333pt;}
.y396{bottom:714.324533pt;}
.y3f{bottom:714.333333pt;}
.y40b{bottom:715.933467pt;}
.y108{bottom:716.253333pt;}
.y1b1{bottom:716.573333pt;}
.y488{bottom:717.064667pt;}
.y8f{bottom:717.373333pt;}
.y4df{bottom:719.226667pt;}
.y3f5{bottom:720.041600pt;}
.y211{bottom:721.061333pt;}
.y1e{bottom:721.213333pt;}
.y1d0{bottom:721.226667pt;}
.y400{bottom:721.284533pt;}
.y2f3{bottom:725.053333pt;}
.y36e{bottom:725.096267pt;}
.y13d{bottom:726.173333pt;}
.y40a{bottom:727.933467pt;}
.y3d9{bottom:728.826800pt;}
.y4c5{bottom:729.226667pt;}
.y242{bottom:731.773333pt;}
.y3f4{bottom:732.041600pt;}
.y2c7{bottom:732.573333pt;}
.yd1{bottom:732.733333pt;}
.y34b{bottom:733.105867pt;}
.y107{bottom:733.213333pt;}
.y3ff{bottom:733.284533pt;}
.y487{bottom:734.398000pt;}
.y189{bottom:734.973333pt;}
.y395{bottom:735.124533pt;}
.y4de{bottom:735.226667pt;}
.yc2{bottom:737.213333pt;}
.y66{bottom:737.853333pt;}
.y158{bottom:738.013333pt;}
.y3ce{bottom:738.090800pt;}
.y210{bottom:739.461333pt;}
.y1cf{bottom:739.626667pt;}
.y409{bottom:739.933467pt;}
.y2a3{bottom:740.893333pt;}
.y331{bottom:741.373333pt;}
.y315{bottom:742.813333pt;}
.y2f2{bottom:743.453333pt;}
.y3f3{bottom:744.041600pt;}
.y1b0{bottom:744.253333pt;}
.y4c4{bottom:744.560000pt;}
.y3d8{bottom:744.826800pt;}
.y3fe{bottom:745.284533pt;}
.yea{bottom:747.133333pt;}
.y506{bottom:748.026667pt;}
.y3e{bottom:748.573333pt;}
.y1d{bottom:748.733333pt;}
.y106{bottom:750.013333pt;}
.y2c6{bottom:750.973333pt;}
.y486{bottom:751.731333pt;}
.y408{bottom:751.933467pt;}
.y3cd{bottom:752.490933pt;}
.y8e{bottom:753.693333pt;}
.y13c{bottom:753.853333pt;}
.y34a{bottom:753.905867pt;}
.y394{bottom:755.924533pt;}
.y3f2{bottom:756.041600pt;}
.y3af{bottom:757.245467pt;}
.y3fd{bottom:757.284533pt;}
.y1ce{bottom:758.026667pt;}
.y241{bottom:759.453333pt;}
.y4c3{bottom:759.893333pt;}
.y2ba{bottom:760.413333pt;}
.y3d7{bottom:760.826800pt;}
.y330{bottom:761.213333pt;}
.y2f1{bottom:761.853333pt;}
.y188{bottom:762.493333pt;}
.y314{bottom:762.813333pt;}
.y407{bottom:763.933467pt;}
.y7{bottom:764.253333pt;}
.yc1{bottom:764.733333pt;}
.y65{bottom:765.533333pt;}
.y4aa{bottom:767.226667pt;}
.y3f1{bottom:768.041600pt;}
.y2a2{bottom:768.453333pt;}
.y485{bottom:769.064667pt;}
.y3ae{bottom:769.245467pt;}
.y3fc{bottom:769.284533pt;}
.y2c5{bottom:769.413333pt;}
.y1a6{bottom:770.853333pt;}
.y8c{bottom:771.173333pt;}
.y1af{bottom:771.813333pt;}
.y157{bottom:772.453333pt;}
.y406{bottom:775.933467pt;}
.y1cd{bottom:776.426667pt;}
.y1c{bottom:776.453333pt;}
.y3d6{bottom:776.826800pt;}
.y8d{bottom:777.253333pt;}
.y3f0{bottom:780.041600pt;}
.y2f0{bottom:780.293333pt;}
.y3ad{bottom:781.245467pt;}
.y13b{bottom:781.413333pt;}
.y313{bottom:782.693333pt;}
.y3d{bottom:783.013333pt;}
.y4dd{bottom:783.226667pt;}
.y484{bottom:786.398000pt;}
.y4a9{bottom:786.426800pt;}
.y240{bottom:787.013333pt;}
.y2c4{bottom:787.813333pt;}
.y405{bottom:787.933467pt;}
.y8b{bottom:789.253333pt;}
.y36d{bottom:789.446000pt;}
.y186{bottom:790.213333pt;}
.y4c2{bottom:790.560000pt;}
.y32f{bottom:791.813333pt;}
.yc0{bottom:792.453333pt;}
.y3d5{bottom:792.826800pt;}
.y64{bottom:793.093333pt;}
.y3ac{bottom:793.245467pt;}
.y3fb{bottom:793.284533pt;}
.y1cc{bottom:794.826667pt;}
.y349{bottom:795.505867pt;}
.y57{bottom:795.813333pt;}
.y2a1{bottom:796.133333pt;}
.y187{bottom:796.293333pt;}
.y393{bottom:797.524533pt;}
.y2ef{bottom:798.693333pt;}
.y1ae{bottom:799.493333pt;}
.y1b{bottom:803.973333pt;}
.y3ef{bottom:804.041600pt;}
.y4a8{bottom:805.626667pt;}
.y4c1{bottom:805.893333pt;}
.y8a{bottom:806.213333pt;}
.y156{bottom:806.853333pt;}
.y3d4{bottom:808.826800pt;}
.y1c9{bottom:809.093333pt;}
.y6{bottom:811.653333pt;}
.y404{bottom:811.933467pt;}
.y312{bottom:813.093333pt;}
.y1cb{bottom:813.226667pt;}
.y23f{bottom:814.693333pt;}
.y4dc{bottom:815.226667pt;}
.y348{bottom:816.305867pt;}
.y2ee{bottom:817.093333pt;}
.y3c{bottom:817.253333pt;}
.y185{bottom:817.733333pt;}
.y392{bottom:818.324533pt;}
.yaf{bottom:819.973333pt;}
.y63{bottom:820.773333pt;}
.y483{bottom:821.064667pt;}
.y4c0{bottom:821.226667pt;}
.y3ab{bottom:822.578800pt;}
.y89{bottom:823.013333pt;}
.y56{bottom:823.333333pt;}
.y2a0{bottom:823.653333pt;}
.y2c3{bottom:824.613333pt;}
.y4a7{bottom:824.826800pt;}
.y1a5{bottom:826.053333pt;}
.y1ad{bottom:827.013333pt;}
.y4db{bottom:831.226667pt;}
.y1a{bottom:831.653333pt;}
.y311{bottom:832.933333pt;}
.y2ed{bottom:835.493333pt;}
.y4bf{bottom:836.560000pt;}
.y1c8{bottom:836.613333pt;}
.y347{bottom:837.105867pt;}
.y482{bottom:838.398000pt;}
.y391{bottom:839.124533pt;}
.y3aa{bottom:839.912133pt;}
.y88{bottom:839.973333pt;}
.y155{bottom:841.253333pt;}
.y23e{bottom:842.213333pt;}
.y2c2{bottom:843.013333pt;}
.y387{bottom:844.026667pt;}
.y184{bottom:845.413333pt;}
.y4da{bottom:847.226667pt;}
.yae{bottom:847.653333pt;}
.y62{bottom:848.293333pt;}
.ye6{bottom:848.933333pt;}
.y55{bottom:851.013333pt;}
.y29f{bottom:851.333333pt;}
.y3b{bottom:851.493333pt;}
.y4be{bottom:851.893333pt;}
.y363{bottom:853.795867pt;}
.y2ec{bottom:853.893333pt;}
.y481{bottom:855.731333pt;}
.y3a9{bottom:857.245467pt;}
.y33c{bottom:857.573333pt;}
.y346{bottom:857.905867pt;}
.y19{bottom:859.173333pt;}
.y2c1{bottom:861.413333pt;}
.y32e{bottom:862.053333pt;}
.y1ac{bottom:862.853333pt;}
.y37a{bottom:863.226667pt;}
.y310{bottom:863.493333pt;}
.y1c7{bottom:864.293333pt;}
.y270{bottom:868.453333pt;}
.y23d{bottom:869.893333pt;}
.y2eb{bottom:872.293333pt;}
.y480{bottom:873.064667pt;}
.y3a8{bottom:874.578800pt;}
.yad{bottom:875.173333pt;}
.y154{bottom:875.653333pt;}
.y61{bottom:875.973333pt;}
.y54{bottom:878.533333pt;}
.y29e{bottom:878.853333pt;}
.y4d9{bottom:879.226667pt;}
.y2c0{bottom:879.813333pt;}
.y5{bottom:880.293333pt;}
.y390{bottom:880.724533pt;}
.y87{bottom:882.213333pt;}
.y379{bottom:882.426800pt;}
.y4bd{bottom:882.560000pt;}
.y30f{bottom:883.333333pt;}
.y26f{bottom:885.253333pt;}
.y3a{bottom:885.733333pt;}
.y18{bottom:886.853333pt;}
.y33b{bottom:887.653333pt;}
.y182{bottom:887.813333pt;}
.y47f{bottom:890.398000pt;}
.y2ea{bottom:890.693333pt;}
.y3a7{bottom:891.912133pt;}
.y32d{bottom:892.613333pt;}
.y183{bottom:893.093333pt;}
.y1ab{bottom:893.893333pt;}
.y4d8{bottom:895.226667pt;}
.y23c{bottom:897.413333pt;}
.y4bc{bottom:897.893333pt;}
.y2bf{bottom:898.213333pt;}
.y345{bottom:899.505867pt;}
.y1c6{bottom:900.133333pt;}
.y38f{bottom:901.524533pt;}
.y378{bottom:901.626667pt;}
.yab{bottom:902.853333pt;}
.y30e{bottom:903.173333pt;}
.y60{bottom:903.493333pt;}
.y53{bottom:906.213333pt;}
.y29d{bottom:906.533333pt;}
.y47e{bottom:907.731333pt;}
.yac{bottom:908.933333pt;}
.y2e9{bottom:909.093333pt;}
.y3a6{bottom:909.245467pt;}
.y26d{bottom:909.733333pt;}
.y86{bottom:909.893333pt;}
.y153{bottom:910.053333pt;}
.y32c{bottom:912.453333pt;}
.y181{bottom:913.093333pt;}
.y4bb{bottom:913.226667pt;}
.y17{bottom:914.373333pt;}
.y2be{bottom:916.613333pt;}
.y33a{bottom:917.573333pt;}
.y39{bottom:919.973333pt;}
.y377{bottom:920.826800pt;}
.y504{bottom:923.681067pt;}
.y4{bottom:923.973333pt;}
.y47d{bottom:925.064667pt;}
.y23b{bottom:925.093333pt;}
.y3a5{bottom:926.578800pt;}
.y4d7{bottom:927.226667pt;}
.y2e8{bottom:927.493333pt;}
.y4ba{bottom:928.560000pt;}
.y82{bottom:930.373333pt;}
.y5e{bottom:931.173333pt;}
.y52{bottom:933.733333pt;}
.y29c{bottom:934.053333pt;}
.y16e{bottom:936.453333pt;}
.y5f{bottom:937.253333pt;}
.y180{bottom:938.373333pt;}
.y503{bottom:939.681067pt;}
.y376{bottom:940.026667pt;}
.y16{bottom:942.053333pt;}
.y47c{bottom:942.398000pt;}
.ye2{bottom:943.013333pt;}
.y4d6{bottom:943.226667pt;}
.y4b9{bottom:943.893333pt;}
.y3a4{bottom:943.912133pt;}
.y152{bottom:944.453333pt;}
.y85{bottom:945.733333pt;}
.y2e7{bottom:945.893333pt;}
.y2bd{bottom:947.653333pt;}
.y3{bottom:950.213333pt;}
.y30d{bottom:953.573333pt;}
.y38{bottom:954.213333pt;}
.y502{bottom:955.681067pt;}
.y81{bottom:958.053333pt;}
.y5d{bottom:958.693333pt;}
.y23a{bottom:958.853333pt;}
.y375{bottom:959.226667pt;}
.y47b{bottom:959.731333pt;}
.y3a3{bottom:961.245467pt;}
.y29b{bottom:961.733333pt;}
.y32b{bottom:962.853333pt;}
.y17f{bottom:963.653333pt;}
.y51{bottom:964.293333pt;}
.y2bc{bottom:966.373333pt;}
.y15{bottom:969.573333pt;}
.y501{bottom:971.681067pt;}
.y37{bottom:971.973333pt;}
.y30c{bottom:973.413333pt;}
.y84{bottom:976.613333pt;}
.y151{bottom:978.853333pt;}
.y2{bottom:979.013333pt;}
.y2e6{bottom:982.693333pt;}
.y238{bottom:983.333333pt;}
.y361{bottom:984.061467pt;}
.y80{bottom:985.573333pt;}
.y5c{bottom:986.373333pt;}
.y500{bottom:987.681067pt;}
.y17e{bottom:988.933333pt;}
.y47a{bottom:991.240533pt;}
.y29a{bottom:992.613333pt;}
.y30b{bottom:993.253333pt;}
.y3a2{bottom:995.398400pt;}
.y83{bottom:995.973333pt;}
.y4ea{bottom:1000.444933pt;}
.y5b{bottom:1006.560000pt;}
.y386{bottom:1007.240533pt;}
.y1{bottom:1007.840000pt;}
.y2bb{bottom:1011.840000pt;}
.y299{bottom:1012.000000pt;}
.y14{bottom:1013.120000pt;}
.y36{bottom:1013.280000pt;}
.y3cc{bottom:1013.640400pt;}
.y17d{bottom:1014.400000pt;}
.y479{bottom:1015.240533pt;}
.y344{bottom:1032.284800pt;}
.y4f6{bottom:1032.846533pt;}
.y505{bottom:1033.056533pt;}
.y385{bottom:1045.640400pt;}
.y58{bottom:1061.440000pt;}
.h2c{height:30.464000pt;}
.h11{height:33.918750pt;}
.hc{height:34.374375pt;}
.h43{height:35.392000pt;}
.h50{height:35.541333pt;}
.h22{height:36.398438pt;}
.h20{height:36.431250pt;}
.h44{height:36.640437pt;}
.h24{height:36.832000pt;}
.hf{height:36.920625pt;}
.h3d{height:40.448000pt;}
.h48{height:40.618667pt;}
.h45{height:41.874859pt;}
.hb{height:42.084375pt;}
.h3c{height:45.504000pt;}
.h3b{height:45.696000pt;}
.h49{height:46.716866pt;}
.h3f{height:47.109151pt;}
.h41{height:50.560000pt;}
.h2d{height:50.773333pt;}
.h3e{height:51.034133pt;}
.h42{height:51.689577pt;}
.h8{height:52.134375pt;}
.h1f{height:52.785000pt;}
.hd{height:52.834688pt;}
.h4c{height:55.076737pt;}
.h1e{height:55.275000pt;}
.h12{height:57.375000pt;}
.h16{height:57.758750pt;}
.he{height:57.787500pt;}
.h4d{height:58.389333pt;}
.h9{height:58.563750pt;}
.h14{height:59.340000pt;}
.h4e{height:60.449065pt;}
.h39{height:60.672000pt;}
.h35{height:60.800000pt;}
.h47{height:60.928000pt;}
.h10{height:62.781250pt;}
.h3a{height:62.812289pt;}
.h7{height:62.812500pt;}
.h1b{height:63.040000pt;}
.h4f{height:63.077320pt;}
.h1d{height:63.656250pt;}
.h6{height:64.500000pt;}
.h3{height:65.154375pt;}
.h30{height:65.728000pt;}
.h34{height:70.933333pt;}
.ha{height:71.955000pt;}
.h2{height:74.064375pt;}
.h2f{height:76.000000pt;}
.h32{height:76.160000pt;}
.h46{height:76.480000pt;}
.h1a{height:76.800000pt;}
.h13{height:77.152000pt;}
.h4b{height:78.680940pt;}
.h15{height:79.360000pt;}
.h17{height:87.072000pt;}
.h19{height:89.312000pt;}
.h5{height:92.998125pt;}
.h4a{height:96.266667pt;}
.h2e{height:101.333333pt;}
.h51{height:101.546667pt;}
.h18{height:101.600000pt;}
.h28{height:110.432000pt;}
.h31{height:121.600000pt;}
.h40{height:125.889609pt;}
.h1c{height:126.912000pt;}
.h4{height:130.916875pt;}
.h33{height:145.182749pt;}
.h38{height:147.733867pt;}
.h37{height:151.066133pt;}
.h36{height:160.533333pt;}
.h2b{height:180.880000pt;}
.h25{height:220.826667pt;}
.h26{height:312.866667pt;}
.h27{height:515.106667pt;}
.h29{height:533.506667pt;}
.h23{height:754.333333pt;}
.h21{height:846.533333pt;}
.h2a{height:1122.520000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:93.760000pt;}
.w8{width:98.752000pt;}
.w5{width:106.912000pt;}
.w6{width:114.592000pt;}
.w7{width:144.800000pt;}
.wb{width:275.386667pt;}
.w9{width:279.706667pt;}
.wd{width:281.626667pt;}
.w10{width:296.866667pt;}
.wf{width:302.426667pt;}
.we{width:317.666667pt;}
.wa{width:319.586667pt;}
.wc{width:323.906667pt;}
.w11{width:793.701333pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w13{width:1587.333333pt;}
.w12{width:1587.400000pt;}
.x0{left:0.000000pt;}
.x22{left:6.080000pt;}
.x3d{left:14.720000pt;}
.x3a{left:16.160000pt;}
.x4e{left:19.284267pt;}
.x40{left:54.426667pt;}
.x3b{left:56.954667pt;}
.x29{left:65.439988pt;}
.x43{left:70.394667pt;}
.x5a{left:75.723600pt;}
.x62{left:78.549467pt;}
.xa8{left:79.503067pt;}
.xa6{left:80.418000pt;}
.xa5{left:82.366000pt;}
.x28{left:89.471988pt;}
.x42{left:96.672000pt;}
.x45{left:99.386667pt;}
.x3e{left:102.906667pt;}
.x96{left:111.120800pt;}
.xf{left:113.471988pt;}
.x21{left:114.752000pt;}
.x8{left:116.511988pt;}
.x16{left:117.791988pt;}
.x36{left:122.111988pt;}
.x9e{left:124.059867pt;}
.x63{left:127.275067pt;}
.x10{left:128.191988pt;}
.x7{left:132.831988pt;}
.x27{left:137.466655pt;}
.x6{left:142.906655pt;}
.x5d{left:149.484800pt;}
.x17{left:151.226655pt;}
.x9{left:154.586655pt;}
.xac{left:158.021467pt;}
.x3f{left:159.706667pt;}
.x12{left:161.466655pt;}
.x2{left:168.186655pt;}
.x7d{left:173.408533pt;}
.x57{left:183.351200pt;}
.x3{left:185.626655pt;}
.x1c{left:188.666643pt;}
.x1d{left:193.306655pt;}
.x48{left:196.186655pt;}
.x5f{left:202.637867pt;}
.x56{left:204.408000pt;}
.x5e{left:206.028800pt;}
.x67{left:208.812667pt;}
.x23{left:209.786667pt;}
.x4a{left:226.426655pt;}
.xaa{left:233.904933pt;}
.xd{left:236.026655pt;}
.x41{left:237.146655pt;}
.xa{left:239.066655pt;}
.xa9{left:241.451333pt;}
.xa4{left:242.421867pt;}
.x38{left:251.226643pt;}
.x1{left:253.026655pt;}
.x9f{left:257.215067pt;}
.x46{left:261.026655pt;}
.x39{left:262.146655pt;}
.x26{left:265.506655pt;}
.x7a{left:266.750667pt;}
.x60{left:273.746400pt;}
.x97{left:279.814800pt;}
.x34{left:280.706643pt;}
.x35{left:291.586655pt;}
.x58{left:300.054933pt;}
.x4{left:301.026655pt;}
.x15{left:305.506655pt;}
.xc{left:307.586655pt;}
.x24{left:318.146667pt;}
.xe{left:320.226655pt;}
.x2c{left:336.066643pt;}
.x2a{left:337.026643pt;}
.x2d{left:341.506655pt;}
.x2b{left:342.466655pt;}
.x64{left:349.192933pt;}
.xad{left:350.557333pt;}
.x6c{left:363.590533pt;}
.xae{left:365.602667pt;}
.x44{left:373.346667pt;}
.x13{left:377.666643pt;}
.x47{left:379.586667pt;}
.x14{left:383.106655pt;}
.x3c{left:395.746667pt;}
.x5{left:396.866655pt;}
.x49{left:400.386667pt;}
.x91{left:425.268667pt;}
.x7b{left:432.564933pt;}
.x18{left:434.813310pt;}
.xa7{left:438.675600pt;}
.x19{left:440.253322pt;}
.x92{left:443.068267pt;}
.x99{left:446.245867pt;}
.x61{left:453.811467pt;}
.x7e{left:476.776933pt;}
.x7c{left:489.432133pt;}
.x32{left:495.293310pt;}
.x7f{left:497.190933pt;}
.x9c{left:500.347067pt;}
.x33{left:506.653322pt;}
.x4b{left:523.959600pt;}
.x93{left:525.554667pt;}
.x2e{left:527.133310pt;}
.x2f{left:532.573322pt;}
.x4d{left:538.952933pt;}
.x30{left:544.893310pt;}
.x52{left:546.403200pt;}
.x31{left:549.533322pt;}
.x94{left:565.714000pt;}
.xb3{left:567.410667pt;}
.xb{left:578.973322pt;}
.x25{left:580.413333pt;}
.x4c{left:600.141867pt;}
.x9d{left:601.941600pt;}
.x53{left:606.562667pt;}
.x95{left:608.301333pt;}
.x9a{left:638.978400pt;}
.x1e{left:650.373310pt;}
.x1f{left:657.573322pt;}
.x9b{left:661.010667pt;}
.x20{left:665.573322pt;}
.x37{left:669.573310pt;}
.x11{left:673.093322pt;}
.x1a{left:675.813310pt;}
.x1b{left:680.453322pt;}
.xab{left:706.440533pt;}
.x59{left:712.210533pt;}
.x98{left:718.110133pt;}
.x80{left:825.826800pt;}
.x8b{left:859.018533pt;}
.x54{left:869.193467pt;}
.xaf{left:873.846133pt;}
.xb2{left:875.499067pt;}
.x6a{left:877.311600pt;}
.xa3{left:887.971200pt;}
.x5b{left:941.546000pt;}
.x8c{left:968.602000pt;}
.x8d{left:984.513733pt;}
.x5c{left:989.474667pt;}
.xa1{left:1039.418400pt;}
.x6d{left:1046.929067pt;}
.xb0{left:1062.924533pt;}
.x83{left:1074.644400pt;}
.x81{left:1083.516133pt;}
.x74{left:1089.516667pt;}
.x87{left:1106.408000pt;}
.x6f{left:1113.662667pt;}
.x85{left:1115.624000pt;}
.x76{left:1130.174400pt;}
.x86{left:1132.244000pt;}
.x79{left:1133.850267pt;}
.x84{left:1136.216400pt;}
.xa0{left:1143.185600pt;}
.x6b{left:1158.247467pt;}
.x68{left:1166.278133pt;}
.x72{left:1177.037067pt;}
.xb1{left:1211.166400pt;}
.x8e{left:1220.787333pt;}
.x69{left:1276.736933pt;}
.x88{left:1301.780400pt;}
.x90{left:1325.498667pt;}
.x4f{left:1340.103867pt;}
.x89{left:1341.592800pt;}
.x77{left:1343.224400pt;}
.x66{left:1344.384667pt;}
.x65{left:1346.458933pt;}
.x70{left:1347.580267pt;}
.x51{left:1374.077200pt;}
.x50{left:1400.263333pt;}
.x6e{left:1404.407333pt;}
.x82{left:1407.607067pt;}
.x75{left:1417.643733pt;}
.x73{left:1418.644267pt;}
.x8a{left:1438.456000pt;}
.x78{left:1443.177733pt;}
.x8f{left:1470.005600pt;}
.x71{left:1473.467067pt;}
.xa2{left:1500.351333pt;}
.x55{left:1504.281200pt;}
}




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