
    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_91ac07c2985e1f5c09241f4e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.851074;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_bd0d806c3b19f446596d67bd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.100098;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_b25648beaab7ac4e7bc74a4a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959473;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_595c1ed528515096d06bf3af.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.836914;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_c05ee35f426a3cd137bddee1.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_242448a2f18c9eee57c5ac6d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.166992;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_31a1263ca4ca365c66d2ba24.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1b4be08b4df020cb588827aa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.836914;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_bb0a3777222fb73443f844de.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.726074;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_cda292a1516f6bce57d4e171.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.029297;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_b46c1eb5091709e15d407da4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.039551;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_7db5af2fe7a41edc5b8baef4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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_d900004e91a64893b62cf790.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_bb0a3777222fb73443f844de.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.726074;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_bdcb1a63c848a19b3cf4d407.woff2')format("woff");}.fff{font-family:fff;line-height:0.836914;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_66a9debb96f0937a5f8f9da1.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_eb9681685d10f532397eceee.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.100098;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_8a169ce47ab360137eb470c4.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.100098;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_01028c0b91f70f16b0ac1c8f.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_cb655ffcc2b9c4dd08e79812.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_5d9f581cb0fa5c5f10fadfcf.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.100098;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_9e77cb612dd0fdfede8231ec.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_51d25db6f3fa6fd614b0e98a.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.023438;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:ff18;src:url('chunks/assets/font_d19d17fec8e30daa6fc2d783.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_6fdb57c14a36df5b986c53a3.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.938477;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:ff1a;src:url('chunks/assets/font_f4bf4c688a6d367ad6e0f581.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.020996;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:ff1b;src:url('chunks/assets/font_a64cf48d8053623bb09af52f.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.100098;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:ff1c;src:url('chunks/assets/font_f89249a68607f3396454a77d.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.862305;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:ff1d;src:url('chunks/assets/font_04c12871d68be6dcef3325d0.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_2dccebd67213cd7d745cdba7.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.726074;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:ff1f;src:url('chunks/assets/font_35f4f3f68f7b673e07481892.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.100098;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:ff20;src:url('chunks/assets/font_acbc76961304697944ecad92.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_01244339b2546298e0457df2.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_01deb28a63e2c494adff04a7.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.100098;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:ff23;src:url('chunks/assets/font_983eb0045dada695a6c6b0d3.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_bd9c12d2cef4bcf9c62d4ebb.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.100098;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:ff25;src:url('chunks/assets/font_a61a9c8a397919b32cbb45b2.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_c86ecf59ec421b8b13aa59fb.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.719238;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:ff27;src:url('chunks/assets/font_7d0fca5c400d31a619b36fd7.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.100098;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:ff28;src:url('chunks/assets/font_5db7731688f7326b29648c02.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_668f2016ecb13259842789d8.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.903320;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:ff2a;src:url('chunks/assets/font_0bea109e3cf3b0cdec54361f.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.903320;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:ff2b;src:url('chunks/assets/font_7d0fca5c400d31a619b36fd7.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.100098;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:ff2c;src:url('chunks/assets/font_eb10699474227a1618c7a302.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_8cbeaacf70aa4c65f2ab67ad.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.100098;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:ff2e;src:url('chunks/assets/font_8283819e7057178517547da9.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_8cbeaacf70aa4c65f2ab67ad.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.100098;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:ff30;src:url('chunks/assets/font_4b71f9f8353aa9d5c8364d00.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_239a772e2d576ab3d980807c.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.100098;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:ff32;src:url('chunks/assets/font_637c6b864863d47051a062fd.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_f57ee7510984f11f45df29f4.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.100098;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:ff34;src:url('chunks/assets/font_fee8e6dadf0f72b05c002f50.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.731445;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:ff35;src:url('chunks/assets/font_b9c2e944272a3b304eef6e4d.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_f57ee7510984f11f45df29f4.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.100098;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:ff37;src:url('chunks/assets/font_fee8e6dadf0f72b05c002f50.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.731445;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:ff38;src:url('chunks/assets/font_961d8f2e20e428a470dce60f.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_f57ee7510984f11f45df29f4.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.100098;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:ff3a;src:url('chunks/assets/font_fee8e6dadf0f72b05c002f50.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.731445;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:ff3b;src:url('chunks/assets/font_daf169790d2a1f60d2b4ac5b.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_f57ee7510984f11f45df29f4.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.100098;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:ff3d;src:url('chunks/assets/font_fee8e6dadf0f72b05c002f50.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.731445;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:ff3e;src:url('chunks/assets/font_7287c8d50eee6b988acb137d.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_f57ee7510984f11f45df29f4.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.100098;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:ff40;src:url('chunks/assets/font_fee8e6dadf0f72b05c002f50.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.731445;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:ff41;src:url('chunks/assets/font_7ba6a795a74fc98d2bfa2c16.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_f57ee7510984f11f45df29f4.woff2')format("woff");}.ff42{font-family:ff42;line-height:1.100098;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:ff43;src:url('chunks/assets/font_fee8e6dadf0f72b05c002f50.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.731445;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:ff44;src:url('chunks/assets/font_39c3e36643db269c9a7d361f.woff2')format("woff");}.ff44{font-family:ff44;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_16d976df541dfcd847edf14b.woff2')format("woff");}.ff45{font-family:ff45;line-height:1.100098;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:ff46;src:url('chunks/assets/font_f783f797f8054e663a2713d3.woff2')format("woff");}.ff46{font-family:ff46;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_16d976df541dfcd847edf14b.woff2')format("woff");}.ff47{font-family:ff47;line-height:1.100098;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:ff48;src:url('chunks/assets/font_5c408e14f6c564eefe181b17.woff2')format("woff");}.ff48{font-family:ff48;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_671071a7684ea35f5e28ea98.woff2')format("woff");}.ff49{font-family:ff49;line-height:1.100098;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:ff4a;src:url('chunks/assets/font_394e385739da862b6b231036.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url('chunks/assets/font_671071a7684ea35f5e28ea98.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:1.100098;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:ff4c;src:url('chunks/assets/font_78c6ce3d207cb81427f69294.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_0e060a29485745780195151c.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:1.100098;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:ff4e;src:url('chunks/assets/font_008035d360ead661f3bb4efe.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f;src:url('chunks/assets/font_00f940d970c621aa1926598b.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:1.100098;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:ff50;src:url('chunks/assets/font_fee8e6dadf0f72b05c002f50.woff2')format("woff");}.ff50{font-family:ff50;line-height:0.731445;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:ff51;src:url('chunks/assets/font_4b6c3fec579fb0c718ace86c.woff2')format("woff");}.ff51{font-family:ff51;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff52;src:url('chunks/assets/font_00f940d970c621aa1926598b.woff2')format("woff");}.ff52{font-family:ff52;line-height:1.100098;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:ff53;src:url('chunks/assets/font_fee8e6dadf0f72b05c002f50.woff2')format("woff");}.ff53{font-family:ff53;line-height:0.731445;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:ff54;src:url('chunks/assets/font_8d4f4aaf8d87cadf883848ed.woff2')format("woff");}.ff54{font-family:ff54;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff55;src:url('chunks/assets/font_00f940d970c621aa1926598b.woff2')format("woff");}.ff55{font-family:ff55;line-height:1.100098;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:ff56;src:url('chunks/assets/font_fee8e6dadf0f72b05c002f50.woff2')format("woff");}.ff56{font-family:ff56;line-height:0.731445;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:ff57;src:url('chunks/assets/font_9297c7bb2787edb15ccbd4bf.woff2')format("woff");}.ff57{font-family:ff57;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff58;src:url('chunks/assets/font_00f940d970c621aa1926598b.woff2')format("woff");}.ff58{font-family:ff58;line-height:1.100098;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:ff59;src:url('chunks/assets/font_fee8e6dadf0f72b05c002f50.woff2')format("woff");}.ff59{font-family:ff59;line-height:0.731445;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:ff5a;src:url('chunks/assets/font_775be51575d941ee86598f53.woff2')format("woff");}.ff5a{font-family:ff5a;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b;src:url('chunks/assets/font_00f940d970c621aa1926598b.woff2')format("woff");}.ff5b{font-family:ff5b;line-height:1.100098;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:ff5c;src:url('chunks/assets/font_fee8e6dadf0f72b05c002f50.woff2')format("woff");}.ff5c{font-family:ff5c;line-height:0.731445;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:ff5d;src:url('chunks/assets/font_215ec35fe676f89985c5ce95.woff2')format("woff");}.ff5d{font-family:ff5d;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5e;src:url('chunks/assets/font_00f940d970c621aa1926598b.woff2')format("woff");}.ff5e{font-family:ff5e;line-height:1.100098;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:ff5f;src:url('chunks/assets/font_fee8e6dadf0f72b05c002f50.woff2')format("woff");}.ff5f{font-family:ff5f;line-height:0.731445;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:ff60;src:url('chunks/assets/font_d3ec57ceca9ac3d54cf869f1.woff2')format("woff");}.ff60{font-family:ff60;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff61;src:url('chunks/assets/font_424afac904163b7fe7592ee1.woff2')format("woff");}.ff61{font-family:ff61;line-height:0.724609;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:ff62;src:url('chunks/assets/font_5dbcaf6f7fcb4ce85010a2a5.woff2')format("woff");}.ff62{font-family:ff62;line-height:0.717285;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;}
.m75{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);}
.m77{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);}
.m74{transform:matrix(0.165374,0.187488,-0.187488,0.165374,0,0);-ms-transform:matrix(0.165374,0.187488,-0.187488,0.165374,0,0);-webkit-transform:matrix(0.165374,0.187488,-0.187488,0.165374,0,0);}
.m63{transform:matrix(0.170068,-0.183240,0.183240,0.170068,0,0);-ms-transform:matrix(0.170068,-0.183240,0.183240,0.170068,0,0);-webkit-transform:matrix(0.170068,-0.183240,0.183240,0.170068,0,0);}
.m3e{transform:matrix(0.178483,-0.175054,0.175054,0.178483,0,0);-ms-transform:matrix(0.178483,-0.175054,0.175054,0.178483,0,0);-webkit-transform:matrix(0.178483,-0.175054,0.175054,0.178483,0,0);}
.m54{transform:matrix(0.178871,0.174657,-0.174657,0.178871,0,0);-ms-transform:matrix(0.178871,0.174657,-0.174657,0.178871,0,0);-webkit-transform:matrix(0.178871,0.174657,-0.174657,0.178871,0,0);}
.m3d{transform:matrix(0.179068,0.174456,-0.174456,0.179068,0,0);-ms-transform:matrix(0.179068,0.174456,-0.174456,0.179068,0,0);-webkit-transform:matrix(0.179068,0.174456,-0.174456,0.179068,0,0);}
.m26{transform:matrix(0.180554,-0.172917,0.172917,0.180554,0,0);-ms-transform:matrix(0.180554,-0.172917,0.172917,0.180554,0,0);-webkit-transform:matrix(0.180554,-0.172917,0.172917,0.180554,0,0);}
.m73{transform:matrix(0.184374,0.168838,-0.168838,0.184374,0,0);-ms-transform:matrix(0.184374,0.168838,-0.168838,0.184374,0,0);-webkit-transform:matrix(0.184374,0.168838,-0.168838,0.184374,0,0);}
.m64{transform:matrix(0.189328,-0.163263,0.163263,0.189328,0,0);-ms-transform:matrix(0.189328,-0.163263,0.163263,0.189328,0,0);-webkit-transform:matrix(0.189328,-0.163263,0.163263,0.189328,0,0);}
.m3c{transform:matrix(0.191266,0.160989,-0.160989,0.191266,0,0);-ms-transform:matrix(0.191266,0.160989,-0.160989,0.191266,0,0);-webkit-transform:matrix(0.191266,0.160989,-0.160989,0.191266,0,0);}
.m53{transform:matrix(0.192817,0.159127,-0.159127,0.192817,0,0);-ms-transform:matrix(0.192817,0.159127,-0.159127,0.192817,0,0);-webkit-transform:matrix(0.192817,0.159127,-0.159127,0.192817,0,0);}
.m3f{transform:matrix(0.193409,-0.158408,0.158408,0.193409,0,0);-ms-transform:matrix(0.193409,-0.158408,0.158408,0.193409,0,0);-webkit-transform:matrix(0.193409,-0.158408,0.158408,0.193409,0,0);}
.m27{transform:matrix(0.193586,-0.158191,0.158191,0.193586,0,0);-ms-transform:matrix(0.193586,-0.158191,0.158191,0.193586,0,0);-webkit-transform:matrix(0.193586,-0.158191,0.158191,0.193586,0,0);}
.m72{transform:matrix(0.200878,0.148822,-0.148822,0.200878,0,0);-ms-transform:matrix(0.200878,0.148822,-0.148822,0.200878,0,0);-webkit-transform:matrix(0.200878,0.148822,-0.148822,0.200878,0,0);}
.m3b{transform:matrix(0.202535,0.146560,-0.146560,0.202535,0,0);-ms-transform:matrix(0.202535,0.146560,-0.146560,0.202535,0,0);-webkit-transform:matrix(0.202535,0.146560,-0.146560,0.202535,0,0);}
.m52{transform:matrix(0.202752,0.146258,-0.146258,0.202752,0,0);-ms-transform:matrix(0.202752,0.146258,-0.146258,0.202752,0,0);-webkit-transform:matrix(0.202752,0.146258,-0.146258,0.202752,0,0);}
.m65{transform:matrix(0.203083,-0.145799,0.145799,0.203083,0,0);-ms-transform:matrix(0.203083,-0.145799,0.145799,0.203083,0,0);-webkit-transform:matrix(0.203083,-0.145799,0.145799,0.203083,0,0);}
.m28{transform:matrix(0.204333,-0.144042,0.144042,0.204333,0,0);-ms-transform:matrix(0.204333,-0.144042,0.144042,0.204333,0,0);-webkit-transform:matrix(0.204333,-0.144042,0.144042,0.204333,0,0);}
.m40{transform:matrix(0.205566,-0.142276,0.142276,0.205566,0,0);-ms-transform:matrix(0.205566,-0.142276,0.142276,0.205566,0,0);-webkit-transform:matrix(0.205566,-0.142276,0.142276,0.205566,0,0);}
.m25{transform:matrix(0.208095,0.138551,-0.138551,0.208095,0,0);-ms-transform:matrix(0.208095,0.138551,-0.138551,0.208095,0,0);-webkit-transform:matrix(0.208095,0.138551,-0.138551,0.208095,0,0);}
.m12{transform:matrix(0.209184,-0.136902,0.136902,0.209184,0,0);-ms-transform:matrix(0.209184,-0.136902,0.136902,0.209184,0,0);-webkit-transform:matrix(0.209184,-0.136902,0.136902,0.209184,0,0);}
.m62{transform:matrix(0.210768,0.134451,-0.134451,0.210768,0,0);-ms-transform:matrix(0.210768,0.134451,-0.134451,0.210768,0,0);-webkit-transform:matrix(0.210768,0.134451,-0.134451,0.210768,0,0);}
.m51{transform:matrix(0.211770,0.132866,-0.132866,0.211770,0,0);-ms-transform:matrix(0.211770,0.132866,-0.132866,0.211770,0,0);-webkit-transform:matrix(0.211770,0.132866,-0.132866,0.211770,0,0);}
.m3a{transform:matrix(0.211819,0.132788,-0.132788,0.211819,0,0);-ms-transform:matrix(0.211819,0.132788,-0.132788,0.211819,0,0);-webkit-transform:matrix(0.211819,0.132788,-0.132788,0.211819,0,0);}
.m55{transform:matrix(0.213557,-0.129974,0.129974,0.213557,0,0);-ms-transform:matrix(0.213557,-0.129974,0.129974,0.213557,0,0);-webkit-transform:matrix(0.213557,-0.129974,0.129974,0.213557,0,0);}
.m41{transform:matrix(0.213748,-0.129661,0.129661,0.213748,0,0);-ms-transform:matrix(0.213748,-0.129661,0.129661,0.213748,0,0);-webkit-transform:matrix(0.213748,-0.129661,0.129661,0.213748,0,0);}
.m71{transform:matrix(0.213750,0.129657,-0.129657,0.213750,0,0);-ms-transform:matrix(0.213750,0.129657,-0.129657,0.213750,0,0);-webkit-transform:matrix(0.213750,0.129657,-0.129657,0.213750,0,0);}
.m29{transform:matrix(0.214334,-0.128689,0.128689,0.214334,0,0);-ms-transform:matrix(0.214334,-0.128689,0.128689,0.214334,0,0);-webkit-transform:matrix(0.214334,-0.128689,0.128689,0.214334,0,0);}
.m24{transform:matrix(0.216631,0.124784,-0.124784,0.216631,0,0);-ms-transform:matrix(0.216631,0.124784,-0.124784,0.216631,0,0);-webkit-transform:matrix(0.216631,0.124784,-0.124784,0.216631,0,0);}
.m13{transform:matrix(0.218310,-0.121823,0.121823,0.218310,0,0);-ms-transform:matrix(0.218310,-0.121823,0.121823,0.218310,0,0);-webkit-transform:matrix(0.218310,-0.121823,0.121823,0.218310,0,0);}
.m66{transform:matrix(0.218862,-0.120829,0.120829,0.218862,0,0);-ms-transform:matrix(0.218862,-0.120829,0.120829,0.218862,0,0);-webkit-transform:matrix(0.218862,-0.120829,0.120829,0.218862,0,0);}
.m50{transform:matrix(0.219588,0.119504,-0.119504,0.219588,0,0);-ms-transform:matrix(0.219588,0.119504,-0.119504,0.219588,0,0);-webkit-transform:matrix(0.219588,0.119504,-0.119504,0.219588,0,0);}
.m39{transform:matrix(0.220353,0.118088,-0.118088,0.220353,0,0);-ms-transform:matrix(0.220353,0.118088,-0.118088,0.220353,0,0);-webkit-transform:matrix(0.220353,0.118088,-0.118088,0.220353,0,0);}
.m42{transform:matrix(0.221110,-0.116664,0.116664,0.221110,0,0);-ms-transform:matrix(0.221110,-0.116664,0.116664,0.221110,0,0);-webkit-transform:matrix(0.221110,-0.116664,0.116664,0.221110,0,0);}
.m61{transform:matrix(0.222986,0.113037,-0.113037,0.222986,0,0);-ms-transform:matrix(0.222986,0.113037,-0.113037,0.222986,0,0);-webkit-transform:matrix(0.222986,0.113037,-0.113037,0.222986,0,0);}
.m2a{transform:matrix(0.223455,-0.112106,0.112106,0.223455,0,0);-ms-transform:matrix(0.223455,-0.112106,0.112106,0.223455,0,0);-webkit-transform:matrix(0.223455,-0.112106,0.112106,0.223455,0,0);}
.m23{transform:matrix(0.224596,0.109803,-0.109803,0.224596,0,0);-ms-transform:matrix(0.224596,0.109803,-0.109803,0.224596,0,0);-webkit-transform:matrix(0.224596,0.109803,-0.109803,0.224596,0,0);}
.m56{transform:matrix(0.224808,-0.109368,0.109368,0.224808,0,0);-ms-transform:matrix(0.224808,-0.109368,0.109368,0.224808,0,0);-webkit-transform:matrix(0.224808,-0.109368,0.109368,0.224808,0,0);}
.m70{transform:matrix(0.225300,0.108351,-0.108351,0.225300,0,0);-ms-transform:matrix(0.225300,0.108351,-0.108351,0.225300,0,0);-webkit-transform:matrix(0.225300,0.108351,-0.108351,0.225300,0,0);}
.m14{transform:matrix(0.225875,-0.107147,0.107147,0.225875,0,0);-ms-transform:matrix(0.225875,-0.107147,0.107147,0.225875,0,0);-webkit-transform:matrix(0.225875,-0.107147,0.107147,0.225875,0,0);}
.m4f{transform:matrix(0.226077,0.106720,-0.106720,0.226077,0,0);-ms-transform:matrix(0.226077,0.106720,-0.106720,0.226077,0,0);-webkit-transform:matrix(0.226077,0.106720,-0.106720,0.226077,0,0);}
.m11{transform:matrix(0.227602,0.103427,-0.103427,0.227602,0,0);-ms-transform:matrix(0.227602,0.103427,-0.103427,0.227602,0,0);-webkit-transform:matrix(0.227602,0.103427,-0.103427,0.227602,0,0);}
.m43{transform:matrix(0.228112,-0.102297,0.102297,0.228112,0,0);-ms-transform:matrix(0.228112,-0.102297,0.102297,0.228112,0,0);-webkit-transform:matrix(0.228112,-0.102297,0.102297,0.228112,0,0);}
.m38{transform:matrix(0.228425,0.101598,-0.101598,0.228425,0,0);-ms-transform:matrix(0.228425,0.101598,-0.101598,0.228425,0,0);-webkit-transform:matrix(0.228425,0.101598,-0.101598,0.228425,0,0);}
.m1{transform:matrix(0.228540,-0.101339,0.101339,0.228540,0,0);-ms-transform:matrix(0.228540,-0.101339,0.101339,0.228540,0,0);-webkit-transform:matrix(0.228540,-0.101339,0.101339,0.228540,0,0);}
.m67{transform:matrix(0.230251,-0.097387,0.097387,0.230251,0,0);-ms-transform:matrix(0.230251,-0.097387,0.097387,0.230251,0,0);-webkit-transform:matrix(0.230251,-0.097387,0.097387,0.230251,0,0);}
.m2b{transform:matrix(0.231174,-0.095177,0.095177,0.231174,0,0);-ms-transform:matrix(0.231174,-0.095177,0.095177,0.231174,0,0);-webkit-transform:matrix(0.231174,-0.095177,0.095177,0.231174,0,0);}
.m22{transform:matrix(0.231465,0.094467,-0.094467,0.231465,0,0);-ms-transform:matrix(0.231465,0.094467,-0.094467,0.231465,0,0);-webkit-transform:matrix(0.231465,0.094467,-0.094467,0.231465,0,0);}
.m79{transform:matrix(0.232140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232140,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.232359,-0.092246,0.092246,0.232359,0,0);-ms-transform:matrix(0.232359,-0.092246,0.092246,0.232359,0,0);-webkit-transform:matrix(0.232359,-0.092246,0.092246,0.232359,0,0);}
.m15{transform:matrix(0.232535,-0.091800,0.091800,0.232535,0,0);-ms-transform:matrix(0.232535,-0.091800,0.091800,0.232535,0,0);-webkit-transform:matrix(0.232535,-0.091800,0.091800,0.232535,0,0);}
.m10{transform:matrix(0.232782,0.091172,-0.091172,0.232782,0,0);-ms-transform:matrix(0.232782,0.091172,-0.091172,0.232782,0,0);-webkit-transform:matrix(0.232782,0.091172,-0.091172,0.232782,0,0);}
.m60{transform:matrix(0.233131,0.090277,-0.090277,0.233131,0,0);-ms-transform:matrix(0.233131,0.090277,-0.090277,0.233131,0,0);-webkit-transform:matrix(0.233131,0.090277,-0.090277,0.233131,0,0);}
.m4e{transform:matrix(0.233477,0.089379,-0.089379,0.233477,0,0);-ms-transform:matrix(0.233477,0.089379,-0.089379,0.233477,0,0);-webkit-transform:matrix(0.233477,0.089379,-0.089379,0.233477,0,0);}
.m2{transform:matrix(0.234257,-0.087313,0.087313,0.234257,0,0);-ms-transform:matrix(0.234257,-0.087313,0.087313,0.234257,0,0);-webkit-transform:matrix(0.234257,-0.087313,0.087313,0.234257,0,0);}
.m44{transform:matrix(0.234492,-0.086681,0.086681,0.234492,0,0);-ms-transform:matrix(0.234492,-0.086681,0.086681,0.234492,0,0);-webkit-transform:matrix(0.234492,-0.086681,0.086681,0.234492,0,0);}
.m37{transform:matrix(0.235121,0.084961,-0.084961,0.235121,0,0);-ms-transform:matrix(0.235121,0.084961,-0.084961,0.235121,0,0);-webkit-transform:matrix(0.235121,0.084961,-0.084961,0.235121,0,0);}
.m21{transform:matrix(0.235863,0.082878,-0.082878,0.235863,0,0);-ms-transform:matrix(0.235863,0.082878,-0.082878,0.235863,0,0);-webkit-transform:matrix(0.235863,0.082878,-0.082878,0.235863,0,0);}
.m6f{transform:matrix(0.236561,0.080865,-0.080865,0.236561,0,0);-ms-transform:matrix(0.236561,0.080865,-0.080865,0.236561,0,0);-webkit-transform:matrix(0.236561,0.080865,-0.080865,0.236561,0,0);}
.mf{transform:matrix(0.236871,0.079952,-0.079952,0.236871,0,0);-ms-transform:matrix(0.236871,0.079952,-0.079952,0.236871,0,0);-webkit-transform:matrix(0.236871,0.079952,-0.079952,0.236871,0,0);}
.m2c{transform:matrix(0.236994,-0.079586,0.079586,0.236994,0,0);-ms-transform:matrix(0.236994,-0.079586,0.079586,0.236994,0,0);-webkit-transform:matrix(0.236994,-0.079586,0.079586,0.236994,0,0);}
.m68{transform:matrix(0.237239,-0.078852,0.078852,0.237239,0,0);-ms-transform:matrix(0.237239,-0.078852,0.078852,0.237239,0,0);-webkit-transform:matrix(0.237239,-0.078852,0.078852,0.237239,0,0);}
.m16{transform:matrix(0.238018,-0.076468,0.076468,0.238018,0,0);-ms-transform:matrix(0.238018,-0.076468,0.076468,0.238018,0,0);-webkit-transform:matrix(0.238018,-0.076468,0.076468,0.238018,0,0);}
.m4d{transform:matrix(0.238949,0.073509,-0.073509,0.238949,0,0);-ms-transform:matrix(0.238949,0.073509,-0.073509,0.238949,0,0);-webkit-transform:matrix(0.238949,0.073509,-0.073509,0.238949,0,0);}
.m3{transform:matrix(0.238950,-0.073506,0.073506,0.238950,0,0);-ms-transform:matrix(0.238950,-0.073506,0.073506,0.238950,0,0);-webkit-transform:matrix(0.238950,-0.073506,0.073506,0.238950,0,0);}
.m45{transform:matrix(0.239455,-0.071842,0.071842,0.239455,0,0);-ms-transform:matrix(0.239455,-0.071842,0.071842,0.239455,0,0);-webkit-transform:matrix(0.239455,-0.071842,0.071842,0.239455,0,0);}
.m20{transform:matrix(0.239593,0.071379,-0.071379,0.239593,0,0);-ms-transform:matrix(0.239593,0.071379,-0.071379,0.239593,0,0);-webkit-transform:matrix(0.239593,0.071379,-0.071379,0.239593,0,0);}
.m36{transform:matrix(0.240276,0.069048,-0.069048,0.240276,0,0);-ms-transform:matrix(0.240276,0.069048,-0.069048,0.240276,0,0);-webkit-transform:matrix(0.240276,0.069048,-0.069048,0.240276,0,0);}
.m58{transform:matrix(0.240384,-0.068670,0.068670,0.240384,0,0);-ms-transform:matrix(0.240384,-0.068670,0.068670,0.240384,0,0);-webkit-transform:matrix(0.240384,-0.068670,0.068670,0.240384,0,0);}
.me{transform:matrix(0.240409,0.068583,-0.068583,0.240409,0,0);-ms-transform:matrix(0.240409,0.068583,-0.068583,0.240409,0,0);-webkit-transform:matrix(0.240409,0.068583,-0.068583,0.240409,0,0);}
.m5f{transform:matrix(0.240909,0.066803,-0.066803,0.240909,0,0);-ms-transform:matrix(0.240909,0.066803,-0.066803,0.240909,0,0);-webkit-transform:matrix(0.240909,0.066803,-0.066803,0.240909,0,0);}
.m2d{transform:matrix(0.241870,-0.063238,0.063238,0.241870,0,0);-ms-transform:matrix(0.241870,-0.063238,0.063238,0.241870,0,0);-webkit-transform:matrix(0.241870,-0.063238,0.063238,0.241870,0,0);}
.m17{transform:matrix(0.242283,-0.061637,0.061637,0.242283,0,0);-ms-transform:matrix(0.242283,-0.061637,0.061637,0.242283,0,0);-webkit-transform:matrix(0.242283,-0.061637,0.061637,0.242283,0,0);}
.m4{transform:matrix(0.242988,-0.058794,0.058794,0.242988,0,0);-ms-transform:matrix(0.242988,-0.058794,0.058794,0.242988,0,0);-webkit-transform:matrix(0.242988,-0.058794,0.058794,0.242988,0,0);}
.m69{transform:matrix(0.243192,-0.057944,0.057944,0.243192,0,0);-ms-transform:matrix(0.243192,-0.057944,0.057944,0.243192,0,0);-webkit-transform:matrix(0.243192,-0.057944,0.057944,0.243192,0,0);}
.m35{transform:matrix(0.243216,0.057843,-0.057843,0.243216,0,0);-ms-transform:matrix(0.243216,0.057843,-0.057843,0.243216,0,0);-webkit-transform:matrix(0.243216,0.057843,-0.057843,0.243216,0,0);}
.m4c{transform:matrix(0.243418,0.056990,-0.056990,0.243418,0,0);-ms-transform:matrix(0.243418,0.056990,-0.056990,0.243418,0,0);-webkit-transform:matrix(0.243418,0.056990,-0.056990,0.243418,0,0);}
.m46{transform:matrix(0.243549,-0.056425,0.056425,0.243549,0,0);-ms-transform:matrix(0.243549,-0.056425,0.056425,0.243549,0,0);-webkit-transform:matrix(0.243549,-0.056425,0.056425,0.243549,0,0);}
.m1f{transform:matrix(0.243768,0.055471,-0.055471,0.243768,0,0);-ms-transform:matrix(0.243768,0.055471,-0.055471,0.243768,0,0);-webkit-transform:matrix(0.243768,0.055471,-0.055471,0.243768,0,0);}
.md{transform:matrix(0.244047,0.054232,-0.054232,0.244047,0,0);-ms-transform:matrix(0.244047,0.054232,-0.054232,0.244047,0,0);-webkit-transform:matrix(0.244047,0.054232,-0.054232,0.244047,0,0);}
.m6e{transform:matrix(0.244318,0.052996,-0.052996,0.244318,0,0);-ms-transform:matrix(0.244318,0.052996,-0.052996,0.244318,0,0);-webkit-transform:matrix(0.244318,0.052996,-0.052996,0.244318,0,0);}
.m18{transform:matrix(0.244944,-0.050023,0.050023,0.244944,0,0);-ms-transform:matrix(0.244944,-0.050023,0.050023,0.244944,0,0);-webkit-transform:matrix(0.244944,-0.050023,0.050023,0.244944,0,0);}
.m59{transform:matrix(0.245497,-0.047238,0.047238,0.245497,0,0);-ms-transform:matrix(0.245497,-0.047238,0.047238,0.245497,0,0);-webkit-transform:matrix(0.245497,-0.047238,0.047238,0.245497,0,0);}
.m2e{transform:matrix(0.245752,-0.045890,0.045890,0.245752,0,0);-ms-transform:matrix(0.245752,-0.045890,0.045890,0.245752,0,0);-webkit-transform:matrix(0.245752,-0.045890,0.045890,0.245752,0,0);}
.m34{transform:matrix(0.245965,0.044733,-0.044733,0.245965,0,0);-ms-transform:matrix(0.245965,0.044733,-0.044733,0.245965,0,0);-webkit-transform:matrix(0.245965,0.044733,-0.044733,0.245965,0,0);}
.m5e{transform:matrix(0.246052,0.044253,-0.044253,0.246052,0,0);-ms-transform:matrix(0.246052,0.044253,-0.044253,0.246052,0,0);-webkit-transform:matrix(0.246052,0.044253,-0.044253,0.246052,0,0);}
.m76{transform:matrix(0.246062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246062,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246122,-0.043862,0.043862,0.246122,0,0);-ms-transform:matrix(0.246122,-0.043862,0.043862,0.246122,0,0);-webkit-transform:matrix(0.246122,-0.043862,0.043862,0.246122,0,0);}
.mc{transform:matrix(0.246524,0.041542,-0.041542,0.246524,0,0);-ms-transform:matrix(0.246524,0.041542,-0.041542,0.246524,0,0);-webkit-transform:matrix(0.246524,0.041542,-0.041542,0.246524,0,0);}
.m47{transform:matrix(0.246540,-0.041449,0.041449,0.246540,0,0);-ms-transform:matrix(0.246540,-0.041449,0.041449,0.246540,0,0);-webkit-transform:matrix(0.246540,-0.041449,0.041449,0.246540,0,0);}
.m1e{transform:matrix(0.246637,0.040869,-0.040869,0.246637,0,0);-ms-transform:matrix(0.246637,0.040869,-0.040869,0.246637,0,0);-webkit-transform:matrix(0.246637,0.040869,-0.040869,0.246637,0,0);}
.m19{transform:matrix(0.247132,-0.037759,0.037759,0.247132,0,0);-ms-transform:matrix(0.247132,-0.037759,0.037759,0.247132,0,0);-webkit-transform:matrix(0.247132,-0.037759,0.037759,0.247132,0,0);}
.m6a{transform:matrix(0.247191,-0.037374,0.037374,0.247191,0,0);-ms-transform:matrix(0.247191,-0.037374,0.037374,0.247191,0,0);-webkit-transform:matrix(0.247191,-0.037374,0.037374,0.247191,0,0);}
.m6d{transform:matrix(0.247801,0.033084,-0.033084,0.247801,0,0);-ms-transform:matrix(0.247801,0.033084,-0.033084,0.247801,0,0);-webkit-transform:matrix(0.247801,0.033084,-0.033084,0.247801,0,0);}
.m2f{transform:matrix(0.247853,-0.032695,0.032695,0.247853,0,0);-ms-transform:matrix(0.247853,-0.032695,0.032695,0.247853,0,0);-webkit-transform:matrix(0.247853,-0.032695,0.032695,0.247853,0,0);}
.mb{transform:matrix(0.247929,0.032112,-0.032112,0.247929,0,0);-ms-transform:matrix(0.247929,0.032112,-0.032112,0.247929,0,0);-webkit-transform:matrix(0.247929,0.032112,-0.032112,0.247929,0,0);}
.m5a{transform:matrix(0.248078,-0.030938,0.030938,0.248078,0,0);-ms-transform:matrix(0.248078,-0.030938,0.030938,0.248078,0,0);-webkit-transform:matrix(0.248078,-0.030938,0.030938,0.248078,0,0);}
.m1d{transform:matrix(0.248115,0.030645,-0.030645,0.248115,0,0);-ms-transform:matrix(0.248115,0.030645,-0.030645,0.248115,0,0);-webkit-transform:matrix(0.248115,0.030645,-0.030645,0.248115,0,0);}
.m4b{transform:matrix(0.248138,0.030453,-0.030453,0.248138,0,0);-ms-transform:matrix(0.248138,0.030453,-0.030453,0.248138,0,0);-webkit-transform:matrix(0.248138,0.030453,-0.030453,0.248138,0,0);}
.m33{transform:matrix(0.248598,0.026439,-0.026439,0.248598,0,0);-ms-transform:matrix(0.248598,0.026439,-0.026439,0.248598,0,0);-webkit-transform:matrix(0.248598,0.026439,-0.026439,0.248598,0,0);}
.m48{transform:matrix(0.248609,-0.026340,0.026340,0.248609,0,0);-ms-transform:matrix(0.248609,-0.026340,0.026340,0.248609,0,0);-webkit-transform:matrix(0.248609,-0.026340,0.026340,0.248609,0,0);}
.m6{transform:matrix(0.248761,-0.024864,0.024864,0.248761,0,0);-ms-transform:matrix(0.248761,-0.024864,0.024864,0.248761,0,0);-webkit-transform:matrix(0.248761,-0.024864,0.024864,0.248761,0,0);}
.m5d{transform:matrix(0.249020,0.022117,-0.022117,0.249020,0,0);-ms-transform:matrix(0.249020,0.022117,-0.022117,0.249020,0,0);-webkit-transform:matrix(0.249020,0.022117,-0.022117,0.249020,0,0);}
.ma{transform:matrix(0.249072,0.021525,-0.021525,0.249072,0,0);-ms-transform:matrix(0.249072,0.021525,-0.021525,0.249072,0,0);-webkit-transform:matrix(0.249072,0.021525,-0.021525,0.249072,0,0);}
.m1a{transform:matrix(0.249105,-0.021131,0.021131,0.249105,0,0);-ms-transform:matrix(0.249105,-0.021131,0.021131,0.249105,0,0);-webkit-transform:matrix(0.249105,-0.021131,0.021131,0.249105,0,0);}
.m30{transform:matrix(0.249279,-0.018970,0.018970,0.249279,0,0);-ms-transform:matrix(0.249279,-0.018970,0.018970,0.249279,0,0);-webkit-transform:matrix(0.249279,-0.018970,0.018970,0.249279,0,0);}
.m1c{transform:matrix(0.249287,0.018868,-0.018868,0.249287,0,0);-ms-transform:matrix(0.249287,0.018868,-0.018868,0.249287,0,0);-webkit-transform:matrix(0.249287,0.018868,-0.018868,0.249287,0,0);}
.m6b{transform:matrix(0.249461,-0.016409,0.016409,0.249461,0,0);-ms-transform:matrix(0.249461,-0.016409,0.016409,0.249461,0,0);-webkit-transform:matrix(0.249461,-0.016409,0.016409,0.249461,0,0);}
.m32{transform:matrix(0.249654,0.013151,-0.013151,0.249654,0,0);-ms-transform:matrix(0.249654,0.013151,-0.013151,0.249654,0,0);-webkit-transform:matrix(0.249654,0.013151,-0.013151,0.249654,0,0);}
.m5b{transform:matrix(0.249659,-0.013050,0.013050,0.249659,0,0);-ms-transform:matrix(0.249659,-0.013050,0.013050,0.249659,0,0);-webkit-transform:matrix(0.249659,-0.013050,0.013050,0.249659,0,0);}
.m6c{transform:matrix(0.249699,0.012258,-0.012258,0.249699,0,0);-ms-transform:matrix(0.249699,0.012258,-0.012258,0.249699,0,0);-webkit-transform:matrix(0.249699,0.012258,-0.012258,0.249699,0,0);}
.m9{transform:matrix(0.249741,0.011370,-0.011370,0.249741,0,0);-ms-transform:matrix(0.249741,0.011370,-0.011370,0.249741,0,0);-webkit-transform:matrix(0.249741,0.011370,-0.011370,0.249741,0,0);}
.m7{transform:matrix(0.249808,-0.009792,0.009792,0.249808,0,0);-ms-transform:matrix(0.249808,-0.009792,0.009792,0.249808,0,0);-webkit-transform:matrix(0.249808,-0.009792,0.009792,0.249808,0,0);}
.m4a{transform:matrix(0.249823,0.009398,-0.009398,0.249823,0,0);-ms-transform:matrix(0.249823,0.009398,-0.009398,0.249823,0,0);-webkit-transform:matrix(0.249823,0.009398,-0.009398,0.249823,0,0);}
.m1b{transform:matrix(0.249834,-0.009099,0.009099,0.249834,0,0);-ms-transform:matrix(0.249834,-0.009099,0.009099,0.249834,0,0);-webkit-transform:matrix(0.249834,-0.009099,0.009099,0.249834,0,0);}
.m78{transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.249939,-0.005537,0.005537,0.249939,0,0);-ms-transform:matrix(0.249939,-0.005537,0.005537,0.249939,0,0);-webkit-transform:matrix(0.249939,-0.005537,0.005537,0.249939,0,0);}
.m5c{transform:matrix(0.249966,0.004151,-0.004151,0.249966,0,0);-ms-transform:matrix(0.249966,0.004151,-0.004151,0.249966,0,0);-webkit-transform:matrix(0.249966,0.004151,-0.004151,0.249966,0,0);}
.m8{transform:matrix(0.249967,0.004055,-0.004055,0.249967,0,0);-ms-transform:matrix(0.249967,0.004055,-0.004055,0.249967,0,0);-webkit-transform:matrix(0.249967,0.004055,-0.004055,0.249967,0,0);}
.m31{transform:matrix(0.249967,-0.004052,0.004052,0.249967,0,0);-ms-transform:matrix(0.249967,-0.004052,0.004052,0.249967,0,0);-webkit-transform:matrix(0.249967,-0.004052,0.004052,0.249967,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);}
.v6{vertical-align:-40.811040px;}
.va{vertical-align:-18.765360px;}
.v10{vertical-align:-14.639040px;}
.v9{vertical-align:-13.603680px;}
.v8{vertical-align:-10.323360px;}
.v4{vertical-align:-8.683200px;}
.v5{vertical-align:-6.160320px;}
.v7{vertical-align:-3.618000px;}
.vb{vertical-align:-1.398960px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.219040px;}
.ve{vertical-align:4.763400px;}
.v12{vertical-align:10.044000px;}
.v11{vertical-align:16.228800px;}
.vc{vertical-align:18.000000px;}
.vf{vertical-align:20.066400px;}
.v1{vertical-align:21.978600px;}
.v3{vertical-align:23.444640px;}
.vd{vertical-align:29.963400px;}
.ls26{letter-spacing:-2.106000px;}
.ls3{letter-spacing:-1.566000px;}
.ls25{letter-spacing:-1.296000px;}
.ls1b{letter-spacing:-0.861120px;}
.ls20{letter-spacing:-0.794880px;}
.ls1c{letter-spacing:-0.728640px;}
.ls1e{letter-spacing:-0.570240px;}
.ls19{letter-spacing:-0.463680px;}
.ls1a{letter-spacing:-0.397440px;}
.ls21{letter-spacing:-0.369633px;}
.ls16{letter-spacing:-0.331200px;}
.ls22{letter-spacing:-0.302427px;}
.ls18{letter-spacing:-0.264960px;}
.ls13{letter-spacing:-0.210000px;}
.ls1{letter-spacing:-0.194238px;}
.ls15{letter-spacing:-0.192960px;}
.ls1d{letter-spacing:-0.190080px;}
.ls17{letter-spacing:-0.132480px;}
.ls24{letter-spacing:-0.067206px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.021000px;}
.lsc{letter-spacing:0.063360px;}
.ls27{letter-spacing:0.066000px;}
.ls23{letter-spacing:0.067206px;}
.lsb{letter-spacing:0.086112px;}
.ls12{letter-spacing:0.134412px;}
.ls11{letter-spacing:0.168015px;}
.ls8{letter-spacing:0.264960px;}
.ls7{letter-spacing:0.331200px;}
.ls1f{letter-spacing:0.463680px;}
.ls28{letter-spacing:0.792000px;}
.ls10{letter-spacing:3.179520px;}
.ls14{letter-spacing:3.234000px;}
.lsa{letter-spacing:3.908160px;}
.lsd{letter-spacing:5.365440px;}
.lse{letter-spacing:6.094080px;}
.ls2{letter-spacing:7.012800px;}
.lsf{letter-spacing:10.399680px;}
.ls9{letter-spacing:17.553600px;}
.ls5{letter-spacing:670.897800px;}
.ls6{letter-spacing:952.836480px;}
.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;}
}
.ws0{word-spacing:-36.000000px;}
.ws1{word-spacing:-25.200000px;}
.ws52{word-spacing:-18.745920px;}
.ws50{word-spacing:-18.414720px;}
.ws4f{word-spacing:-18.282240px;}
.ws4d{word-spacing:-18.149760px;}
.ws53{word-spacing:-18.083520px;}
.ws51{word-spacing:-18.017280px;}
.ws5{word-spacing:-17.754000px;}
.ws4c{word-spacing:-17.614080px;}
.ws4e{word-spacing:-17.553600px;}
.wsd5{word-spacing:-17.292000px;}
.wsd4{word-spacing:-16.566000px;}
.ws6{word-spacing:-16.500000px;}
.ws3{word-spacing:-13.500000px;}
.ws23{word-spacing:-12.150000px;}
.ws33{word-spacing:-12.060000px;}
.ws54{word-spacing:-11.609280px;}
.ws41{word-spacing:-11.298000px;}
.ws3a{word-spacing:-11.088000px;}
.wsa4{word-spacing:-10.935600px;}
.ws18{word-spacing:-10.450004px;}
.ws19{word-spacing:-10.255766px;}
.ws10{word-spacing:-9.619500px;}
.ws59{word-spacing:-9.509649px;}
.ws57{word-spacing:-9.476046px;}
.ws5b{word-spacing:-9.341634px;}
.ws68{word-spacing:-9.274428px;}
.ws5f{word-spacing:-9.039207px;}
.ws55{word-spacing:-8.972001px;}
.ws15{word-spacing:-8.844000px;}
.wsa6{word-spacing:-8.831357px;}
.ws3f{word-spacing:-8.070000px;}
.ws69{word-spacing:-7.859340px;}
.ws34{word-spacing:-6.864000px;}
.wsb9{word-spacing:-4.488000px;}
.wsb7{word-spacing:-4.356000px;}
.ws84{word-spacing:-3.841920px;}
.ws6d{word-spacing:-3.234000px;}
.ws32{word-spacing:-3.102000px;}
.wsbc{word-spacing:-2.970000px;}
.wsd0{word-spacing:-2.706000px;}
.wsd6{word-spacing:-2.640000px;}
.ws83{word-spacing:-2.450880px;}
.wsbd{word-spacing:-2.112000px;}
.ws5a{word-spacing:-1.871687px;}
.ws64{word-spacing:-1.848165px;}
.ws82{word-spacing:-1.722240px;}
.wsc5{word-spacing:-1.650000px;}
.ws5e{word-spacing:-1.525576px;}
.ws5c{word-spacing:-1.522216px;}
.ws61{word-spacing:-1.411326px;}
.ws1c{word-spacing:-1.386000px;}
.ws58{word-spacing:-1.323958px;}
.wsba{word-spacing:-1.320000px;}
.ws60{word-spacing:-1.253392px;}
.ws9{word-spacing:-1.188000px;}
.ws8f{word-spacing:-1.077120px;}
.ws7f{word-spacing:-0.993600px;}
.wsac{word-spacing:-0.990000px;}
.ws65{word-spacing:-0.974487px;}
.ws5d{word-spacing:-0.954325px;}
.ws9d{word-spacing:-0.940884px;}
.wsb5{word-spacing:-0.924000px;}
.wsa1{word-spacing:-0.873678px;}
.ws63{word-spacing:-0.853516px;}
.ws8d{word-spacing:-0.823680px;}
.ws62{word-spacing:-0.527567px;}
.ws9e{word-spacing:-0.504045px;}
.ws93{word-spacing:-0.463680px;}
.wsb6{word-spacing:-0.462000px;}
.ws92{word-spacing:-0.434160px;}
.wsb4{word-spacing:-0.396000px;}
.ws78{word-spacing:-0.331200px;}
.ws2e{word-spacing:-0.330000px;}
.ws90{word-spacing:-0.316800px;}
.ws7d{word-spacing:-0.264960px;}
.ws71{word-spacing:-0.241200px;}
.wsab{word-spacing:-0.198000px;}
.ws9f{word-spacing:-0.134412px;}
.wsbf{word-spacing:-0.132000px;}
.ws8c{word-spacing:-0.126720px;}
.wsa0{word-spacing:-0.067206px;}
.ws80{word-spacing:-0.066240px;}
.ws7{word-spacing:-0.060000px;}
.ws66{word-spacing:-0.057125px;}
.wsc{word-spacing:-0.054000px;}
.ws28{word-spacing:-0.048240px;}
.ws56{word-spacing:-0.043684px;}
.ws2{word-spacing:0.000000px;}
.wsa2{word-spacing:0.067206px;}
.ws79{word-spacing:0.132480px;}
.ws72{word-spacing:0.192960px;}
.ws1a{word-spacing:0.194238px;}
.wsce{word-spacing:0.198000px;}
.ws8e{word-spacing:0.253440px;}
.ws77{word-spacing:0.264960px;}
.ws91{word-spacing:0.289440px;}
.ws74{word-spacing:0.331200px;}
.ws67{word-spacing:0.379714px;}
.ws8{word-spacing:0.396000px;}
.ws7e{word-spacing:0.397440px;}
.ws7c{word-spacing:0.463680px;}
.ws70{word-spacing:0.482400px;}
.wsa3{word-spacing:0.537648px;}
.wsc2{word-spacing:0.726000px;}
.ws8b{word-spacing:0.728640px;}
.ws99{word-spacing:0.794880px;}
.wsa8{word-spacing:0.858000px;}
.ws81{word-spacing:0.861120px;}
.ws30{word-spacing:0.924000px;}
.wsb0{word-spacing:1.056000px;}
.ws2b{word-spacing:1.122000px;}
.wsa{word-spacing:1.188000px;}
.wsb2{word-spacing:1.242000px;}
.wsb8{word-spacing:1.254000px;}
.wsb1{word-spacing:1.452000px;}
.ws24{word-spacing:1.512000px;}
.ws16{word-spacing:1.518000px;}
.ws25{word-spacing:1.650000px;}
.ws14{word-spacing:1.914000px;}
.ws2c{word-spacing:2.046000px;}
.wsd3{word-spacing:2.106000px;}
.wscd{word-spacing:2.178000px;}
.ws31{word-spacing:2.244000px;}
.ws12{word-spacing:2.442000px;}
.ws9a{word-spacing:2.450880px;}
.wscf{word-spacing:2.508000px;}
.ws2f{word-spacing:2.574000px;}
.ws38{word-spacing:2.706000px;}
.ws22{word-spacing:2.770200px;}
.ws20{word-spacing:2.818800px;}
.wsd{word-spacing:3.036000px;}
.ws37{word-spacing:3.168000px;}
.ws9c{word-spacing:3.179520px;}
.wsc0{word-spacing:3.234000px;}
.ws98{word-spacing:3.312000px;}
.ws9b{word-spacing:3.510720px;}
.ws11{word-spacing:3.696000px;}
.ws35{word-spacing:3.762000px;}
.wsbe{word-spacing:4.026000px;}
.ws88{word-spacing:4.040640px;}
.wscc{word-spacing:4.488000px;}
.ws1e{word-spacing:4.554000px;}
.wsa7{word-spacing:5.148000px;}
.wsbb{word-spacing:5.346000px;}
.ws13{word-spacing:5.412000px;}
.ws1d{word-spacing:5.676000px;}
.ws1f{word-spacing:5.742000px;}
.wsc8{word-spacing:6.072000px;}
.ws94{word-spacing:6.226560px;}
.ws95{word-spacing:6.292800px;}
.wsca{word-spacing:6.336000px;}
.wsc7{word-spacing:6.402000px;}
.ws6b{word-spacing:6.660000px;}
.wsf{word-spacing:6.864000px;}
.wsb{word-spacing:6.996000px;}
.ws6f{word-spacing:7.140000px;}
.wsa9{word-spacing:7.260000px;}
.wsaa{word-spacing:7.392000px;}
.wsd1{word-spacing:8.052000px;}
.wsb3{word-spacing:8.976000px;}
.wse{word-spacing:9.042000px;}
.ws8a{word-spacing:9.074880px;}
.ws2d{word-spacing:9.174000px;}
.ws89{word-spacing:9.803520px;}
.ws36{word-spacing:10.164000px;}
.ws96{word-spacing:10.532160px;}
.ws97{word-spacing:10.730880px;}
.wsd2{word-spacing:11.616000px;}
.ws85{word-spacing:12.718080px;}
.ws6e{word-spacing:12.936000px;}
.ws17{word-spacing:13.002000px;}
.ws21{word-spacing:13.559400px;}
.ws6c{word-spacing:15.630000px;}
.ws4{word-spacing:16.500000px;}
.ws87{word-spacing:17.752320px;}
.ws7a{word-spacing:18.311040px;}
.ws86{word-spacing:18.414720px;}
.ws76{word-spacing:19.209600px;}
.ws7b{word-spacing:19.739520px;}
.ws75{word-spacing:19.872000px;}
.ws73{word-spacing:20.070720px;}
.ws6a{word-spacing:21.150000px;}
.ws39{word-spacing:37.363800px;}
.ws43{word-spacing:41.511600px;}
.wsc6{word-spacing:42.984000px;}
.ws42{word-spacing:43.473000px;}
.ws4a{word-spacing:45.303000px;}
.ws45{word-spacing:60.057000px;}
.ws46{word-spacing:60.349800px;}
.ws48{word-spacing:60.552000px;}
.ws4b{word-spacing:61.276800px;}
.ws47{word-spacing:61.436400px;}
.ws3c{word-spacing:66.657600px;}
.ws3b{word-spacing:84.339600px;}
.ws3d{word-spacing:121.782600px;}
.wsa5{word-spacing:141.112982px;}
.ws3e{word-spacing:147.267600px;}
.wsc1{word-spacing:152.438400px;}
.wsc3{word-spacing:154.609200px;}
.wsc9{word-spacing:156.635280px;}
.wscb{word-spacing:157.358880px;}
.wsc4{word-spacing:157.841280px;}
.ws29{word-spacing:196.963920px;}
.ws27{word-spacing:219.250800px;}
.ws26{word-spacing:230.104800px;}
.ws2a{word-spacing:264.318480px;}
.wsad{word-spacing:270.336960px;}
.wsae{word-spacing:270.385200px;}
.wsaf{word-spacing:270.772560px;}
.ws1b{word-spacing:308.290200px;}
.ws49{word-spacing:418.428000px;}
.ws44{word-spacing:665.079000px;}
.ws40{word-spacing:936.688200px;}
._3d{margin-left:-349.217280px;}
._13{margin-left:-16.360680px;}
._d{margin-left:-14.702400px;}
._8{margin-left:-13.581000px;}
._62{margin-left:-12.541800px;}
._61{margin-left:-11.320200px;}
._e{margin-left:-10.062600px;}
._20{margin-left:-8.488800px;}
._9{margin-left:-7.195560px;}
._4{margin-left:-5.253600px;}
._2{margin-left:-4.208400px;}
._0{margin-left:-2.919240px;}
._1{margin-left:-1.226400px;}
._f{width:1.149240px;}
._3{width:2.158800px;}
._11{width:3.229200px;}
._b{width:4.902600px;}
._c{width:6.177600px;}
._7{width:7.644000px;}
._6{width:9.297600px;}
._12{width:10.557600px;}
._10{width:11.637600px;}
._a{width:12.912600px;}
._5{width:14.226600px;}
._50{width:15.262800px;}
._1b{width:16.499400px;}
._52{width:18.240000px;}
._1a{width:19.327200px;}
._2d{width:21.238200px;}
._28{width:25.309440px;}
._3a{width:26.746320px;}
._2e{width:29.114640px;}
._4f{width:30.720000px;}
._60{width:31.860000px;}
._3b{width:36.223680px;}
._38{width:40.260000px;}
._4e{width:41.760000px;}
._5c{width:42.900000px;}
._1f{width:46.224000px;}
._39{width:47.502000px;}
._51{width:49.152000px;}
._5f{width:50.406000px;}
._3c{width:51.954480px;}
._21{width:53.700000px;}
._23{width:57.553800px;}
._37{width:59.646000px;}
._44{width:61.785000px;}
._57{width:63.342000px;}
._24{width:64.366800px;}
._1e{width:68.136000px;}
._30{width:69.838200px;}
._35{width:71.790000px;}
._41{width:73.257600px;}
._1d{width:75.222000px;}
._31{width:85.497600px;}
._1c{width:87.366000px;}
._2c{width:92.217240px;}
._56{width:93.795840px;}
._5b{width:107.308800px;}
._25{width:110.662200px;}
._27{width:113.687040px;}
._2f{width:117.777600px;}
._42{width:119.544000px;}
._33{width:124.446960px;}
._32{width:129.504600px;}
._3e{width:130.767600px;}
._3f{width:132.897600px;}
._40{width:141.807600px;}
._29{width:146.140440px;}
._4b{width:156.283812px;}
._34{width:170.238076px;}
._54{width:175.545360px;}
._58{width:177.101160px;}
._5e{width:179.790480px;}
._5a{width:180.948240px;}
._53{width:186.833520px;}
._55{width:189.715800px;}
._5d{width:191.030400px;}
._59{width:192.139920px;}
._4c{width:203.445902px;}
._4a{width:238.244028px;}
._49{width:244.367719px;}
._36{width:269.099280px;}
._4d{width:275.553360px;}
._22{width:296.517000px;}
._45{width:304.673880px;}
._16{width:324.430200px;}
._17{width:416.677200px;}
._46{width:438.870360px;}
._18{width:450.060000px;}
._19{width:451.979400px;}
._43{width:472.067400px;}
._14{width:488.148000px;}
._15{width:492.345600px;}
._48{width:852.471065px;}
._47{width:976.646104px;}
._2b{width:1060.743600px;}
._26{width:1082.370600px;}
._2a{width:1103.949000px;}
.fcf{color:transparent;}
.fcd{color:rgb(46,42,43);}
.fce{color:rgb(35,31,32);}
.fc0{color:rgb(35,31,32);}
.fc2{color:rgb(204,204,204);}
.fc1{color:rgb(66,178,60);}
.fc5{color:rgb(161,219,131);}
.fc6{color:rgb(4,6,6);}
.fcb{color:rgb(145,143,144);}
.fcc{color:rgb(189,187,188);}
.fc3{color:rgb(102,102,102);}
.fc7{color:rgb(51,52,54);}
.fc4{color:rgb(0,173,239);}
.fc8{color:rgb(74,76,79);}
.fc9{color:rgb(178,177,177);}
.fca{color:rgb(31,73,125);}
.fs74{font-size:23.760000px;}
.fs72{font-size:30.000000px;}
.fs77{font-size:33.444000px;}
.fs76{font-size:33.603000px;}
.fs6b{font-size:38.478000px;}
.fs6c{font-size:38.847600px;}
.fs79{font-size:39.076800px;}
.fs75{font-size:41.760000px;}
.fs71{font-size:42.000000px;}
.fs78{font-size:43.742400px;}
.fs6e{font-size:48.240000px;}
.fs6d{font-size:48.600000px;}
.fs3e{font-size:51.713441px;}
.fs2a{font-size:51.713490px;}
.fs35{font-size:51.713602px;}
.fs45{font-size:51.713654px;}
.fs25{font-size:51.713655px;}
.fs15{font-size:51.713664px;}
.fs30{font-size:51.713678px;}
.fs4c{font-size:51.713685px;}
.fs8{font-size:51.713704px;}
.fs44{font-size:51.713749px;}
.fs66{font-size:51.713757px;}
.fs38{font-size:51.713758px;}
.fs1d{font-size:51.713792px;}
.fs18{font-size:51.713795px;}
.fs5a{font-size:51.713796px;}
.fs69{font-size:51.713830px;}
.fs47{font-size:51.713835px;}
.fs37{font-size:51.713852px;}
.fs39{font-size:51.713896px;}
.fs1c{font-size:51.713900px;}
.fs49{font-size:51.713907px;}
.fs62{font-size:51.713908px;}
.fs65{font-size:51.713912px;}
.fs46{font-size:51.713923px;}
.fs55{font-size:51.713928px;}
.fs41{font-size:51.713941px;}
.fs48{font-size:51.713952px;}
.fsb{font-size:51.713967px;}
.fs27{font-size:51.713972px;}
.fs36{font-size:51.713973px;}
.fs23{font-size:51.713982px;}
.fs11{font-size:51.713991px;}
.fs31{font-size:51.713994px;}
.fs32{font-size:51.714010px;}
.fs1e{font-size:51.714015px;}
.fs64{font-size:51.714026px;}
.fs51{font-size:51.714027px;}
.fs57{font-size:51.714035px;}
.fs1b{font-size:51.714041px;}
.fs4f{font-size:51.714047px;}
.fs4b{font-size:51.714056px;}
.fs21{font-size:51.714064px;}
.fsd{font-size:51.714086px;}
.fs4e{font-size:51.714088px;}
.fs43{font-size:51.714089px;}
.fs2b{font-size:51.714098px;}
.fs3d{font-size:51.714115px;}
.fs3c{font-size:51.714122px;}
.fs2e{font-size:51.714132px;}
.fs2d{font-size:51.714134px;}
.fs3b{font-size:51.714139px;}
.fs12{font-size:51.714152px;}
.fs33{font-size:51.714154px;}
.fs2c{font-size:51.714159px;}
.fs5e{font-size:51.714162px;}
.fs68{font-size:51.714173px;}
.fs1a{font-size:51.714180px;}
.fs3a{font-size:51.714181px;}
.fs5d{font-size:51.714191px;}
.fsc{font-size:51.714192px;}
.fs34{font-size:51.714193px;}
.fse{font-size:51.714203px;}
.fs4a{font-size:51.714216px;}
.fs42{font-size:51.714221px;}
.fs13{font-size:51.714225px;}
.fs5b{font-size:51.714233px;}
.fs50{font-size:51.714250px;}
.fsa{font-size:51.714252px;}
.fs20{font-size:51.714254px;}
.fs5c{font-size:51.714260px;}
.fs29{font-size:51.714262px;}
.fs5f{font-size:51.714264px;}
.fs3f{font-size:51.714282px;}
.fs24{font-size:51.714289px;}
.fs40{font-size:51.714300px;}
.fs59{font-size:51.714334px;}
.fs61{font-size:51.714336px;}
.fs19{font-size:51.714362px;}
.fs54{font-size:51.714378px;}
.fs2f{font-size:51.714397px;}
.fs63{font-size:51.714399px;}
.fs4d{font-size:51.714418px;}
.fs67{font-size:51.714423px;}
.fs7{font-size:51.714442px;}
.fs14{font-size:51.714443px;}
.fs58{font-size:51.714445px;}
.fs9{font-size:51.714453px;}
.fs1f{font-size:51.714463px;}
.fs22{font-size:51.714494px;}
.fs26{font-size:51.714496px;}
.fs17{font-size:51.714560px;}
.fs52{font-size:51.714580px;}
.fs60{font-size:51.714629px;}
.fs16{font-size:51.714635px;}
.fs10{font-size:51.714640px;}
.fs56{font-size:51.714657px;}
.fsf{font-size:51.714713px;}
.fs53{font-size:51.714769px;}
.fs28{font-size:51.714777px;}
.fs7a{font-size:53.657400px;}
.fs3{font-size:54.000000px;}
.fs6f{font-size:59.760000px;}
.fs6{font-size:60.000000px;}
.fs73{font-size:63.360000px;}
.fs4{font-size:66.000000px;}
.fs70{font-size:66.240000px;}
.fs6a{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:100.800000px;}
.fs5{font-size:108.000000px;}
.fs0{font-size:144.000000px;}
.y2a8{bottom:-396.862020px;}
.y2bd{bottom:-178.311990px;}
.y2bc{bottom:-152.577750px;}
.y2bb{bottom:-126.843510px;}
.y2ba{bottom:-101.291430px;}
.y2b9{bottom:-75.739350px;}
.y2b8{bottom:-32.539350px;}
.y2b7{bottom:-24.443670px;}
.y2b6{bottom:-4.279350px;}
.y0{bottom:0.000000px;}
.y2f4{bottom:2.780250px;}
.y307{bottom:2.781600px;}
.y2de{bottom:10.082400px;}
.y2ee{bottom:10.370550px;}
.y2dd{bottom:22.629000px;}
.y2ed{bottom:24.046650px;}
.y2cd{bottom:34.710450px;}
.y2ec{bottom:37.014450px;}
.y2c5{bottom:45.231000px;}
.y2e5{bottom:48.148050px;}
.y2c4{bottom:55.311900px;}
.y2e4{bottom:58.228950px;}
.y434{bottom:61.689750px;}
.y435{bottom:61.771800px;}
.y443{bottom:61.788600px;}
.y444{bottom:61.858950px;}
.y6{bottom:63.779550px;}
.y2c3{bottom:65.439600px;}
.y2eb{bottom:69.983250px;}
.y2d2{bottom:77.642550px;}
.y2d1{bottom:87.723450px;}
.y2e3{bottom:91.728600px;}
.y2cf{bottom:100.087200px;}
.y2d0{bottom:111.892200px;}
.y2e9{bottom:119.535000px;}
.y2dc{bottom:123.620850px;}
.y2ce{bottom:127.310550px;}
.y2e8{bottom:129.615900px;}
.y2db{bottom:133.701750px;}
.y2da{bottom:144.561000px;}
.y37a{bottom:148.287450px;}
.y2d6{bottom:148.457550px;}
.y138{bottom:148.818750px;}
.y9{bottom:148.818900px;}
.y20d{bottom:148.819050px;}
.y541{bottom:150.519750px;}
.y26f{bottom:152.601150px;}
.y2cc{bottom:153.949800px;}
.y15e{bottom:154.392450px;}
.y2d9{bottom:154.641900px;}
.y109{bottom:155.604750px;}
.y3b{bottom:157.161600px;}
.y2d5{bottom:158.538450px;}
.y2ea{bottom:158.988300px;}
.y617{bottom:160.999950px;}
.y652{bottom:161.640600px;}
.y2cb{bottom:164.030700px;}
.y379{bottom:164.487450px;}
.y2d8{bottom:164.722800px;}
.y137{bottom:165.018750px;}
.y1c3{bottom:165.018900px;}
.y20c{bottom:165.019050px;}
.y540{bottom:166.719750px;}
.y691{bottom:167.220750px;}
.y2d4{bottom:168.619350px;}
.y15d{bottom:170.592450px;}
.y396{bottom:173.040000px;}
.y2d7{bottom:174.803700px;}
.y26e{bottom:177.351150px;}
.y318{bottom:179.490150px;}
.y108{bottom:180.354750px;}
.y136{bottom:181.218750px;}
.y226{bottom:181.218900px;}
.y463{bottom:181.219050px;}
.y3b4{bottom:181.429500px;}
.y3a{bottom:181.911600px;}
.y442{bottom:182.368500px;}
.y433{bottom:182.458500px;}
.y616{bottom:185.749950px;}
.y651{bottom:186.390600px;}
.y2ca{bottom:186.650850px;}
.y690{bottom:188.220750px;}
.y2e7{bottom:188.678550px;}
.y5{bottom:190.576800px;}
.y317{bottom:195.690150px;}
.y3d1{bottom:196.325550px;}
.y322{bottom:196.594458px;}
.y569{bottom:197.390400px;}
.y135{bottom:197.418750px;}
.y225{bottom:197.418900px;}
.y462{bottom:197.419050px;}
.y599{bottom:197.683500px;}
.y395{bottom:197.790000px;}
.y2d3{bottom:199.081200px;}
.y2c9{bottom:199.281000px;}
.y4c8{bottom:199.789950px;}
.y39{bottom:199.911600px;}
.y49f{bottom:201.345450px;}
.y1ac{bottom:203.738550px;}
.y35b{bottom:204.251700px;}
.y446{bottom:204.301500px;}
.y437{bottom:204.316200px;}
.y107{bottom:205.104750px;}
.y68f{bottom:209.220750px;}
.y40e{bottom:211.725750px;}
.y2c8{bottom:211.986150px;}
.y224{bottom:213.618900px;}
.y3b3{bottom:214.683450px;}
.y26d{bottom:214.857000px;}
.y4d4{bottom:214.905450px;}
.y5a3{bottom:214.917300px;}
.y187{bottom:215.500827px;}
.y2e6{bottom:216.112650px;}
.y134{bottom:216.846000px;}
.y1c5{bottom:217.094250px;}
.y38{bottom:217.911600px;}
.y5c2{bottom:218.176500px;}
.y4f6{bottom:218.182350px;}
.y319{bottom:220.598100px;}
.y323{bottom:221.196150px;}
.y359{bottom:222.943200px;}
.y2c7{bottom:224.401350px;}
.y615{bottom:227.507700px;}
.y2a6{bottom:227.902500px;}
.y650{bottom:228.148500px;}
.y1ab{bottom:228.488550px;}
.y3d0{bottom:229.579500px;}
.y223{bottom:229.818900px;}
.y106{bottom:229.854750px;}
.y68e{bottom:230.220750px;}
.y4{bottom:232.334700px;}
.y1fe{bottom:232.861650px;}
.y1c4{bottom:233.294250px;}
.y567{bottom:233.695200px;}
.y597{bottom:233.999700px;}
.y394{bottom:235.296000px;}
.y2f0{bottom:235.806000px;}
.y37{bottom:235.911600px;}
.y7f{bottom:235.922850px;}
.y4c7{bottom:236.082750px;}
.y2e2{bottom:236.203200px;}
.y5c0{bottom:236.820900px;}
.y4f4{bottom:236.826750px;}
.y2c6{bottom:236.945400px;}
.y86{bottom:237.189150px;}
.y80{bottom:237.246900px;}
.y85{bottom:237.609150px;}
.y49d{bottom:237.661950px;}
.y84{bottom:238.223850px;}
.y81{bottom:238.237350px;}
.y83{bottom:238.347150px;}
.y82{bottom:238.448850px;}
.y3b2{bottom:239.433450px;}
.y34f{bottom:241.360230px;}
.y31a{bottom:243.792508px;}
.y324{bottom:244.398000px;}
.y26c{bottom:245.612850px;}
.y222{bottom:246.018900px;}
.y2e1{bottom:246.284100px;}
.y42a{bottom:247.956900px;}
.y439{bottom:247.965450px;}
.y2c2{bottom:248.414550px;}
.y182{bottom:249.550748px;}
.y68d{bottom:251.220750px;}
.y4d2{bottom:251.221950px;}
.y5a2{bottom:251.233650px;}
.y565{bottom:251.709090px;}
.y306{bottom:251.931762px;}
.y595{bottom:252.037650px;}
.y64f{bottom:252.898500px;}
.y1aa{bottom:253.238550px;}
.y33f{bottom:253.594200px;}
.y4c5{bottom:254.024070px;}
.y3cf{bottom:254.329500px;}
.y133{bottom:254.351850px;}
.y5b5{bottom:254.727150px;}
.y4e9{bottom:254.733000px;}
.y49b{bottom:255.699960px;}
.y2e0{bottom:256.365000px;}
.y36{bottom:256.911600px;}
.y1fd{bottom:257.611650px;}
.y2c1{bottom:258.495450px;}
.y34a{bottom:258.509550px;}
.y2f5{bottom:258.664350px;}
.y393{bottom:260.046000px;}
.y614{bottom:260.063700px;}
.y305{bottom:261.964962px;}
.y3b1{bottom:264.183450px;}
.y55a{bottom:265.710750px;}
.y588{bottom:266.027250px;}
.y31b{bottom:266.986915px;}
.y325{bottom:267.590081px;}
.y4b8{bottom:268.110150px;}
.y2df{bottom:268.114650px;}
.y2c0{bottom:269.128800px;}
.y4d0{bottom:269.223780px;}
.y5a1{bottom:269.247330px;}
.y490{bottom:269.677500px;}
.y33e{bottom:269.794200px;}
.y26b{bottom:270.362850px;}
.y105{bottom:271.612500px;}
.y68c{bottom:272.220750px;}
.y5b6{bottom:273.347790px;}
.y4ea{bottom:273.353640px;}
.y8{bottom:274.092450px;}
.y3{bottom:274.092600px;}
.y35{bottom:274.911600px;}
.y304{bottom:275.317479px;}
.y181{bottom:275.442674px;}
.y221{bottom:275.611650px;}
.y350{bottom:276.165390px;}
.y2f3{bottom:278.740233px;}
.y34b{bottom:279.023610px;}
.y132{bottom:279.101850px;}
.y2bf{bottom:280.847100px;}
.y2f1{bottom:282.682800px;}
.y4c9{bottom:283.237500px;}
.y59a{bottom:283.261050px;}
.y3f2{bottom:284.052000px;}
.y613{bottom:284.813700px;}
.y631{bottom:285.472200px;}
.y42b{bottom:286.512720px;}
.y43a{bottom:286.521270px;}
.y11c{bottom:287.664900px;}
.y309{bottom:288.669600px;}
.y3b0{bottom:288.933450px;}
.y1d0{bottom:289.887450px;}
.y31c{bottom:290.192258px;}
.y589{bottom:290.195490px;}
.y1a9{bottom:290.744400px;}
.y326{bottom:290.772392px;}
.y3ce{bottom:291.835350px;}
.y4b9{bottom:291.940710px;}
.y5b7{bottom:291.956370px;}
.y4eb{bottom:291.962220px;}
.y34{bottom:292.911600px;}
.y68b{bottom:293.220750px;}
.y2be{bottom:293.930100px;}
.y64e{bottom:294.656400px;}
.y26a{bottom:295.112850px;}
.y1fc{bottom:295.117650px;}
.y55b{bottom:295.161270px;}
.y104{bottom:296.362500px;}
.y392{bottom:297.551850px;}
.y491{bottom:297.970260px;}
.y308{bottom:298.702800px;}
.y180{bottom:301.334599px;}
.y2fe{bottom:304.566240px;}
.y3f1{bottom:308.802000px;}
.y612{bottom:309.563700px;}
.y1cf{bottom:310.129350px;}
.y630{bottom:310.222200px;}
.y5b8{bottom:310.577010px;}
.y4ec{bottom:310.582860px;}
.y33{bottom:310.911600px;}
.y351{bottom:310.958490px;}
.y303{bottom:312.047352px;}
.y131{bottom:312.355800px;}
.y11b{bottom:312.414900px;}
.y31d{bottom:313.375730px;}
.y327{bottom:313.974242px;}
.y68a{bottom:314.220750px;}
.y58a{bottom:314.363730px;}
.y4ba{bottom:315.759210px;}
.y7{bottom:315.850350px;}
.y665{bottom:316.025550px;}
.y220{bottom:317.369550px;}
.y64d{bottom:319.406400px;}
.y269{bottom:319.862850px;}
.y2b5{bottom:320.440650px;}
.y103{bottom:321.112650px;}
.y1fb{bottom:321.621600px;}
.y3af{bottom:322.187400px;}
.y391{bottom:324.055800px;}
.y55c{bottom:324.611790px;}
.y30a{bottom:324.672066px;}
.y42c{bottom:325.068540px;}
.y43b{bottom:325.077090px;}
.y492{bottom:326.275080px;}
.y5c1{bottom:327.114000px;}
.y4f5{bottom:327.119850px;}
.y17f{bottom:327.226525px;}
.y34d{bottom:327.227430px;}
.y1a8{bottom:328.250400px;}
.y15c{bottom:328.435500px;}
.y4ed{bottom:329.179380px;}
.y5b9{bottom:329.197650px;}
.y3cd{bottom:329.341350px;}
.y1ce{bottom:329.727300px;}
.y32{bottom:331.911600px;}
.y4ca{bottom:332.924700px;}
.y59b{bottom:332.948250px;}
.y3f0{bottom:333.552000px;}
.y611{bottom:334.313700px;}
.y2fd{bottom:334.782894px;}
.y62f{bottom:334.972200px;}
.y689{bottom:335.220750px;}
.y31e{bottom:336.581074px;}
.y130{bottom:337.105800px;}
.y328{bottom:337.156554px;}
.y11a{bottom:337.164900px;}
.y30e{bottom:338.024583px;}
.y58b{bottom:338.556090px;}
.y4bb{bottom:339.577710px;}
.y1d3{bottom:339.884700px;}
.y30d{bottom:343.041183px;}
.y64c{bottom:344.156400px;}
.y268{bottom:344.612850px;}
.y2fc{bottom:344.816094px;}
.y352{bottom:345.751590px;}
.y102{bottom:345.862650px;}
.y1fa{bottom:346.371450px;}
.y3ae{bottom:346.937400px;}
.y4ee{bottom:347.800020px;}
.y5ba{bottom:347.806230px;}
.y390{bottom:348.805800px;}
.y1cd{bottom:349.300950px;}
.y31{bottom:349.911600px;}
.y1a7{bottom:353.000400px;}
.y15b{bottom:353.185500px;}
.y55d{bottom:354.050250px;}
.y21f{bottom:354.177450px;}
.y493{bottom:354.567840px;}
.y3cc{bottom:355.845300px;}
.y688{bottom:356.220900px;}
.y2{bottom:357.608250px;}
.y664{bottom:357.783450px;}
.y610{bottom:359.063700px;}
.y62e{bottom:359.722200px;}
.y31f{bottom:359.764546px;}
.y329{bottom:360.358404px;}
.y312{bottom:361.510632px;}
.y12f{bottom:361.855800px;}
.y58c{bottom:362.736390px;}
.y4bc{bottom:363.408270px;}
.y42d{bottom:363.624360px;}
.y43c{bottom:363.632910px;}
.y5bb{bottom:366.414810px;}
.y4ef{bottom:366.420660px;}
.y315{bottom:366.527232px;}
.y3ef{bottom:366.805800px;}
.y10b{bottom:367.382400px;}
.y30{bottom:367.911600px;}
.y79{bottom:368.803500px;}
.y1cc{bottom:368.874600px;}
.y1f9{bottom:371.121450px;}
.y311{bottom:371.543832px;}
.y38f{bottom:373.555800px;}
.y2fb{bottom:375.032748px;}
.y53f{bottom:375.268050px;}
.y49c{bottom:376.282950px;}
.y314{bottom:376.560432px;}
.y687{bottom:377.220900px;}
.y2b4{bottom:377.565150px;}
.y1a6{bottom:377.750400px;}
.y15a{bottom:377.935500px;}
.y566{bottom:377.952900px;}
.y35a{bottom:378.251700px;}
.y21e{bottom:378.927450px;}
.y1d2{bottom:379.032000px;}
.y3ad{bottom:380.191350px;}
.y353{bottom:380.556750px;}
.y310{bottom:381.577032px;}
.y267{bottom:382.118700px;}
.y4cb{bottom:382.636020px;}
.y59c{bottom:382.647510px;}
.y494{bottom:382.872660px;}
.y320{bottom:382.958953px;}
.y55e{bottom:383.476650px;}
.y32a{bottom:383.540716px;}
.y10a{bottom:383.582400px;}
.y5bc{bottom:385.035450px;}
.y4f0{bottom:385.041300px;}
.y2f{bottom:385.911600px;}
.y64b{bottom:385.914300px;}
.y313{bottom:386.593632px;}
.y58d{bottom:386.916690px;}
.y186{bottom:387.080964px;}
.y4bd{bottom:387.226770px;}
.y101{bottom:387.620400px;}
.y1cb{bottom:388.460400px;}
.y3cb{bottom:389.099250px;}
.y596{bottom:390.456900px;}
.y4c6{bottom:390.512550px;}
.y3ee{bottom:391.555800px;}
.y30f{bottom:391.610232px;}
.y60f{bottom:392.317500px;}
.y34e{bottom:393.509190px;}
.y78{bottom:393.553500px;}
.y436{bottom:394.183350px;}
.y445{bottom:394.192050px;}
.y1e7{bottom:395.144250px;}
.y1f8{bottom:395.871450px;}
.y686{bottom:398.220900px;}
.y38e{bottom:398.305800px;}
.y12e{bottom:399.361650px;}
.y1{bottom:399.366150px;}
.y663{bottom:399.541350px;}
.y53e{bottom:400.018050px;}
.y62d{bottom:401.480100px;}
.y42e{bottom:402.180180px;}
.y43d{bottom:402.188730px;}
.y159{bottom:402.685500px;}
.y2b3{bottom:403.299390px;}
.y5bd{bottom:403.656090px;}
.y4f1{bottom:403.661940px;}
.y21d{bottom:403.677450px;}
.y302{bottom:404.327709px;}
.y321{bottom:406.153361px;}
.y2fa{bottom:406.603884px;}
.y32b{bottom:406.742566px;}
.y2e{bottom:406.911600px;}
.y1ca{bottom:408.034050px;}
.y64a{bottom:410.664300px;}
.y3ac{bottom:410.947200px;}
.y4be{bottom:411.057330px;}
.y58e{bottom:411.096990px;}
.y495{bottom:411.153360px;}
.y1e6{bottom:411.344250px;}
.y4d1{bottom:411.721950px;}
.y266{bottom:412.874700px;}
.y55f{bottom:412.927170px;}
.y3ca{bottom:413.849250px;}
.y1a5{bottom:415.256250px;}
.y354{bottom:415.349850px;}
.y30c{bottom:416.952423px;}
.y60e{bottom:417.067500px;}
.y1d1{bottom:418.167150px;}
.y77{bottom:418.303500px;}
.y685{bottom:419.220900px;}
.y16e{bottom:421.120574px;}
.y17e{bottom:421.121174px;}
.y5be{bottom:422.264670px;}
.y4f2{bottom:422.270520px;}
.y53d{bottom:424.768050px;}
.y158{bottom:427.435500px;}
.y1c9{bottom:427.607700px;}
.yf2{bottom:428.211000px;}
.y21c{bottom:428.427450px;}
.y2b2{bottom:428.851470px;}
.y3ed{bottom:429.061800px;}
.y1f7{bottom:429.125400px;}
.y30b{bottom:429.569172px;}
.y38d{bottom:431.559750px;}
.y2d{bottom:431.661600px;}
.y4cc{bottom:432.335280px;}
.y59d{bottom:432.346770px;}
.y2f9{bottom:432.431013px;}
.y4bf{bottom:434.887890px;}
.y58f{bottom:435.289350px;}
.y12d{bottom:436.867650px;}
.y265{bottom:437.624700px;}
.y3c9{bottom:438.599250px;}
.y496{bottom:439.470240px;}
.y62c{bottom:440.087850px;}
.y684{bottom:440.220900px;}
.y42f{bottom:440.736000px;}
.y43e{bottom:440.744550px;}
.y5bf{bottom:440.885310px;}
.y4f3{bottom:440.891160px;}
.y662{bottom:441.299250px;}
.y32c{bottom:441.412500px;}
.y60d{bottom:441.817500px;}
.y301{bottom:442.186317px;}
.y560{bottom:442.365630px;}
.y76{bottom:443.053500px;}
.y3ab{bottom:443.503200px;}
.yf1{bottom:444.411000px;}
.y16d{bottom:447.012499px;}
.y17d{bottom:447.013099px;}
.y1c8{bottom:447.193500px;}
.y2c{bottom:449.661600px;}
.y355{bottom:450.142950px;}
.y157{bottom:452.185500px;}
.y649{bottom:452.422200px;}
.y1f6{bottom:453.875400px;}
.y2f8{bottom:453.968949px;}
.y2b1{bottom:454.585710px;}
.y300{bottom:454.803066px;}
.y38c{bottom:456.309750px;}
.y1a4{bottom:457.014150px;}
.y53c{bottom:458.022000px;}
.y4c0{bottom:458.694330px;}
.y590{bottom:459.457590px;}
.yf0{bottom:460.611000px;}
.y683{bottom:461.220900px;}
.y12c{bottom:461.617650px;}
.y264{bottom:462.374700px;}
.y3c8{bottom:463.349250px;}
.y2f7{bottom:464.002149px;}
.y1e4{bottom:464.462100px;}
.y62b{bottom:464.837850px;}
.y5c3{bottom:466.203750px;}
.y4f7{bottom:466.209600px;}
.y60c{bottom:466.567500px;}
.y497{bottom:467.750940px;}
.y75{bottom:467.803500px;}
.y21b{bottom:470.185350px;}
.y7e{bottom:470.649000px;}
.y2b{bottom:470.661600px;}
.y3ec{bottom:470.819700px;}
.y561{bottom:471.816150px;}
.y16c{bottom:472.904425px;}
.y17c{bottom:472.905025px;}
.y316{bottom:473.171787px;}
.y2f6{bottom:474.035349px;}
.y3aa{bottom:476.757000px;}
.y156{bottom:476.935500px;}
.y648{bottom:477.172200px;}
.y1f5{bottom:478.625400px;}
.y430{bottom:479.291820px;}
.y43f{bottom:479.300370px;}
.y2b0{bottom:480.137790px;}
.y38b{bottom:481.059750px;}
.y4cd{bottom:482.034540px;}
.y59e{bottom:482.058090px;}
.y682{bottom:482.220900px;}
.y4c1{bottom:482.524890px;}
.y53b{bottom:482.772000px;}
.y661{bottom:483.057150px;}
.y1e2{bottom:483.141750px;}
.y591{bottom:483.649950px;}
.y356{bottom:484.948110px;}
.y263{bottom:487.124700px;}
.y2a{bottom:488.661600px;}
.y62a{bottom:489.587850px;}
.y2f2{bottom:489.830400px;}
.y60b{bottom:491.317500px;}
.y2ff{bottom:491.541300px;}
.y378{bottom:492.618450px;}
.y1a3{bottom:494.520000px;}
.y12b{bottom:494.871450px;}
.y21a{bottom:494.935350px;}
.y498{bottom:496.043700px;}
.y3c7{bottom:496.603200px;}
.y16b{bottom:498.796350px;}
.y17b{bottom:498.796950px;}
.y3e4{bottom:499.412850px;}
.y562{bottom:501.254610px;}
.y3a9{bottom:501.507000px;}
.y1da{bottom:501.600330px;}
.y155{bottom:501.685500px;}
.y1c7{bottom:502.030050px;}
.y681{bottom:503.220900px;}
.y3eb{bottom:503.375550px;}
.y2ef{bottom:504.160050px;}
.y2af{bottom:505.689870px;}
.y38a{bottom:505.809750px;}
.y4c2{bottom:506.355450px;}
.y29{bottom:506.661600px;}
.y592{bottom:507.830250px;}
.y74{bottom:509.561400px;}
.y1c2{bottom:511.181400px;}
.y262{bottom:511.874700px;}
.y1f4{bottom:511.879350px;}
.y629{bottom:514.337850px;}
.y53a{bottom:516.025800px;}
.y1d6{bottom:516.458250px;}
.y377{bottom:517.368450px;}
.y440{bottom:517.832070px;}
.y431{bottom:517.847640px;}
.y1c6{bottom:518.230050px;}
.y647{bottom:518.929950px;}
.y1a2{bottom:519.270000px;}
.y12a{bottom:519.621450px;}
.y219{bottom:519.685350px;}
.y357{bottom:519.729150px;}
.y3e3{bottom:524.162850px;}
.y680{bottom:524.220900px;}
.y499{bottom:524.348520px;}
.y660{bottom:524.814900px;}
.y28{bottom:527.661600px;}
.y3ea{bottom:528.125550px;}
.y523{bottom:528.216600px;}
.y5ef{bottom:528.222450px;}
.y505{bottom:528.281100px;}
.y5d1{bottom:528.286950px;}
.y60a{bottom:528.823500px;}
.y4c3{bottom:530.186010px;}
.y563{bottom:530.681010px;}
.y2ae{bottom:531.241950px;}
.y4ce{bottom:531.745860px;}
.y59f{bottom:531.757350px;}
.y593{bottom:532.010550px;}
.y34c{bottom:533.031330px;}
.y3c6{bottom:534.109050px;}
.y73{bottom:534.311400px;}
.y3a8{bottom:534.760950px;}
.y1c1{bottom:535.931400px;}
.y1f3{bottom:536.629350px;}
.y154{bottom:539.191350px;}
.y47d{bottom:540.183300px;}
.y539{bottom:540.775800px;}
.y389{bottom:543.315600px;}
.y646{bottom:543.679950px;}
.y129{bottom:544.371450px;}
.y218{bottom:544.435350px;}
.y549{bottom:545.133300px;}
.y67f{bottom:545.220900px;}
.y27{bottom:545.661600px;}
.y1db{bottom:546.330870px;}
.y521{bottom:546.861150px;}
.y5ed{bottom:546.867000px;}
.y503{bottom:546.925500px;}
.y5cf{bottom:546.931200px;}
.y188{bottom:547.278755px;}
.y261{bottom:549.380550px;}
.y461{bottom:550.640100px;}
.y49a{bottom:552.641280px;}
.y3e9{bottom:552.875550px;}
.y609{bottom:553.573500px;}
.y4c4{bottom:554.016570px;}
.y358{bottom:554.522250px;}
.y628{bottom:556.095750px;}
.y594{bottom:556.190850px;}
.y441{bottom:556.387890px;}
.y432{bottom:556.403460px;}
.y33b{bottom:556.442550px;}
.y1a1{bottom:556.775850px;}
.y2ad{bottom:556.976190px;}
.y291{bottom:557.431800px;}
.y1d7{bottom:558.909450px;}
.y72{bottom:559.061400px;}
.y376{bottom:559.126350px;}
.y3a7{bottom:559.510950px;}
.y564{bottom:560.131530px;}
.y1c0{bottom:560.681400px;}
.y1f2{bottom:561.379350px;}
.y3e2{bottom:561.668850px;}
.y65f{bottom:563.422800px;}
.y26{bottom:563.661600px;}
.y516{bottom:564.755700px;}
.y5e2{bottom:564.773250px;}
.y4f8{bottom:564.843600px;}
.y5c4{bottom:564.849450px;}
.y47c{bottom:564.933300px;}
.y244{bottom:564.933900px;}
.y1d9{bottom:565.349490px;}
.y538{bottom:565.525800px;}
.y153{bottom:565.695300px;}
.y67e{bottom:566.220900px;}
.yde{bottom:567.099750px;}
.y388{bottom:568.065600px;}
.y217{bottom:569.185350px;}
.y548{bottom:569.883300px;}
.y55{bottom:570.376200px;}
.y3c5{bottom:571.614900px;}
.yef{bottom:572.245650px;}
.y290{bottom:573.631800px;}
.ydf{bottom:574.353000px;}
.y460{bottom:575.390100px;}
.yee{bottom:576.087900px;}
.ye0{bottom:576.600150px;}
.yb{bottom:577.890900px;}
.y260{bottom:580.136550px;}
.yed{bottom:580.241250px;}
.ye1{bottom:580.795050px;}
.y627{bottom:580.845750px;}
.y243{bottom:581.133750px;}
.y33a{bottom:581.192550px;}
.y4cf{bottom:581.433060px;}
.y49e{bottom:581.446200px;}
.y35c{bottom:581.447550px;}
.y5a0{bottom:581.456610px;}
.y598{bottom:581.464110px;}
.y25{bottom:581.661600px;}
.y128{bottom:581.877450px;}
.y438{bottom:581.920650px;}
.y568{bottom:582.341100px;}
.yec{bottom:582.347250px;}
.y2ac{bottom:582.528270px;}
.y517{bottom:583.376340px;}
.y5e3{bottom:583.381830px;}
.y4f9{bottom:583.452180px;}
.y5c5{bottom:583.458030px;}
.y71{bottom:583.811400px;}
.y375{bottom:583.876350px;}
.ye2{bottom:584.099850px;}
.y1bf{bottom:585.431400px;}
.y645{bottom:585.437850px;}
.yeb{bottom:585.565350px;}
.y1f1{bottom:586.129350px;}
.y3e8{bottom:586.129500px;}
.ye3{bottom:586.317150px;}
.y67d{bottom:587.220900px;}
.ye4{bottom:587.440500px;}
.yea{bottom:587.781150px;}
.y65e{bottom:588.172800px;}
.ye5{bottom:588.927300px;}
.ye9{bottom:589.187850px;}
.ye6{bottom:589.500450px;}
.ye8{bottom:589.560450px;}
.y47b{bottom:589.683300px;}
.ye7{bottom:589.956150px;}
.y537{bottom:590.275800px;}
.y152{bottom:590.445300px;}
.y1dc{bottom:591.073470px;}
.y387{bottom:592.815600px;}
.y216{bottom:593.935350px;}
.y1a0{bottom:594.281850px;}
.y178{bottom:594.283751px;}
.y547{bottom:594.633300px;}
.y3e1{bottom:594.922650px;}
.y5d{bottom:595.126350px;}
.y608{bottom:595.331400px;}
.y168{bottom:595.466855px;}
.y3a6{bottom:597.016950px;}
.y45f{bottom:600.140100px;}
.yd0{bottom:600.696150px;}
.y518{bottom:601.996980px;}
.y5e4{bottom:602.002470px;}
.y4fa{bottom:602.060760px;}
.y5c6{bottom:602.066610px;}
.y3c4{bottom:602.370900px;}
.y24{bottom:602.661600px;}
.y4d3{bottom:602.705400px;}
.ydd{bottom:604.367100px;}
.y25f{bottom:604.886550px;}
.y626{bottom:605.595750px;}
.yd1{bottom:605.816850px;}
.y339{bottom:605.942550px;}
.y451{bottom:606.691350px;}
.yd2{bottom:607.343850px;}
.ydc{bottom:607.640850px;}
.y67c{bottom:608.220900px;}
.y374{bottom:608.626350px;}
.yd3{bottom:610.002150px;}
.ydb{bottom:610.137300px;}
.y644{bottom:610.187850px;}
.yb9{bottom:610.721550px;}
.y3e7{bottom:610.879500px;}
.y28f{bottom:610.894500px;}
.yd4{bottom:611.886300px;}
.yda{bottom:612.043650px;}
.y54{bottom:612.134100px;}
.yd5{bottom:612.942600px;}
.y241{bottom:612.982200px;}
.yd9{bottom:613.054050px;}
.yd6{bottom:613.419150px;}
.yd7{bottom:613.716000px;}
.yd8{bottom:613.731750px;}
.y36a{bottom:614.987250px;}
.y28e{bottom:615.394500px;}
.ycf{bottom:616.145100px;}
.yba{bottom:616.487850px;}
.y2a5{bottom:616.762500px;}
.y19f{bottom:619.031850px;}
.y546{bottom:619.383300px;}
.ya{bottom:619.648800px;}
.y3e0{bottom:619.672650px;}
.y519{bottom:620.617620px;}
.y5e5{bottom:620.623110px;}
.y23{bottom:620.661600px;}
.y4fb{bottom:620.681400px;}
.y5c7{bottom:620.687250px;}
.yce{bottom:620.691000px;}
.ybb{bottom:620.924850px;}
.ycd{bottom:622.910700px;}
.y1be{bottom:622.937250px;}
.y2ab{bottom:623.034030px;}
.y536{bottom:623.529900px;}
.y127{bottom:623.635350px;}
.y151{bottom:623.699250px;}
.ybc{bottom:624.650700px;}
.y70{bottom:625.569150px;}
.ybd{bottom:626.442600px;}
.ycc{bottom:626.660250px;}
.y232{bottom:627.748050px;}
.y233{bottom:627.760110px;}
.y234{bottom:627.772170px;}
.y235{bottom:627.784230px;}
.y236{bottom:627.796290px;}
.y237{bottom:627.808350px;}
.y238{bottom:627.820410px;}
.y239{bottom:627.832470px;}
.y23a{bottom:627.844530px;}
.y23b{bottom:627.856590px;}
.y23c{bottom:627.868650px;}
.y23d{bottom:627.880710px;}
.y607{bottom:627.887250px;}
.y23e{bottom:627.892770px;}
.y23f{bottom:627.904830px;}
.ycb{bottom:628.213050px;}
.y67b{bottom:629.220900px;}
.y2a4{bottom:629.362500px;}
.ybe{bottom:629.506200px;}
.y25e{bottom:629.636550px;}
.y65d{bottom:629.930700px;}
.y386{bottom:630.321600px;}
.y625{bottom:630.345750px;}
.y338{bottom:630.692550px;}
.yca{bottom:630.775650px;}
.y369{bottom:631.187100px;}
.ybf{bottom:631.195200px;}
.y215{bottom:631.441200px;}
.y450{bottom:631.441350px;}
.ya1{bottom:631.984950px;}
.yc9{bottom:633.290700px;}
.y373{bottom:633.376350px;}
.y45e{bottom:633.394200px;}
.yc0{bottom:633.533550px;}
.yc8{bottom:634.483650px;}
.y3a5{bottom:634.522800px;}
.yc1{bottom:634.606050px;}
.y3c3{bottom:634.926750px;}
.y643{bottom:634.937850px;}
.y167{bottom:635.654697px;}
.y177{bottom:635.666157px;}
.y1dd{bottom:635.804010px;}
.yc2{bottom:636.094500px;}
.yc7{bottom:636.129450px;}
.yb8{bottom:636.666750px;}
.yc3{bottom:636.704700px;}
.y53{bottom:636.884100px;}
.y5ee{bottom:637.148250px;}
.y522{bottom:637.153950px;}
.y504{bottom:637.218600px;}
.y5d0{bottom:637.224450px;}
.yc4{bottom:637.442550px;}
.yc5{bottom:637.545000px;}
.yc6{bottom:637.589550px;}
.ya2{bottom:637.706100px;}
.y28d{bottom:637.849050px;}
.y1e3{bottom:638.450400px;}
.y22{bottom:638.661600px;}
.y5e6{bottom:639.231690px;}
.y51a{bottom:639.238260px;}
.y4fc{bottom:639.302040px;}
.y5c8{bottom:639.307890px;}
.yb7{bottom:641.276700px;}
.y46e{bottom:641.815500px;}
.ya3{bottom:642.160200px;}
.y19e{bottom:643.781850px;}
.y545{bottom:644.133300px;}
.yb6{bottom:645.292650px;}
.ya4{bottom:645.983850px;}
.y48f{bottom:646.549050px;}
.y368{bottom:647.387250px;}
.y1bd{bottom:647.687250px;}
.y429{bottom:647.847600px;}
.y535{bottom:648.279900px;}
.yb5{bottom:648.341550px;}
.y126{bottom:648.385350px;}
.y150{bottom:648.449250px;}
.y2aa{bottom:648.768270px;}
.ya5{bottom:649.730550px;}
.y67a{bottom:650.220900px;}
.y6f{bottom:650.319150px;}
.yb4{bottom:651.825300px;}
.y606{bottom:652.637250px;}
.ya6{bottom:652.917300px;}
.y3df{bottom:652.926750px;}
.y22b{bottom:653.985240px;}
.y25d{bottom:654.386550px;}
.yb3{bottom:654.501450px;}
.y624{bottom:655.095750px;}
.ya7{bottom:655.561500px;}
.y28c{bottom:655.803750px;}
.y214{bottom:656.191200px;}
.y44f{bottom:656.191350px;}
.yb2{bottom:656.909400px;}
.ya8{bottom:657.415800px;}
.y5e7{bottom:657.840270px;}
.y51b{bottom:657.846840px;}
.y4fd{bottom:657.910620px;}
.y5c9{bottom:657.916470px;}
.y372{bottom:658.126350px;}
.y45d{bottom:658.144200px;}
.yb1{bottom:658.444650px;}
.ya9{bottom:659.166150px;}
.yb0{bottom:659.196600px;}
.y21{bottom:659.661600px;}
.yaa{bottom:660.344250px;}
.yaf{bottom:660.457800px;}
.yab{bottom:660.835800px;}
.y3a4{bottom:661.026750px;}
.y385{bottom:661.077450px;}
.yae{bottom:661.209900px;}
.yac{bottom:661.321950px;}
.yad{bottom:661.337550px;}
.y52{bottom:661.634100px;}
.y48e{bottom:662.749050px;}
.y428{bottom:664.047600px;}
.y8c{bottom:665.464200px;}
.y2a3{bottom:665.597400px;}
.y46d{bottom:666.565500px;}
.y3c2{bottom:668.180700px;}
.ya0{bottom:669.161700px;}
.y8d{bottom:669.997500px;}
.y679{bottom:671.220900px;}
.y65c{bottom:671.688600px;}
.y47a{bottom:672.437250px;}
.y337{bottom:672.450450px;}
.y9f{bottom:672.725850px;}
.y534{bottom:673.029900px;}
.y125{bottom:673.135350px;}
.y14f{bottom:673.199250px;}
.y8e{bottom:673.430100px;}
.y28b{bottom:673.758300px;}
.y2a9{bottom:674.320350px;}
.y6e{bottom:675.069150px;}
.y9e{bottom:675.954900px;}
.y166{bottom:675.997930px;}
.y176{bottom:676.009389px;}
.y8f{bottom:676.444800px;}
.y5e8{bottom:676.460910px;}
.y51c{bottom:676.467480px;}
.y4fe{bottom:676.531260px;}
.y5ca{bottom:676.537110px;}
.y642{bottom:676.695750px;}
.y22c{bottom:677.188680px;}
.y544{bottom:677.387250px;}
.y20{bottom:677.661600px;}
.y3de{bottom:677.676750px;}
.y9d{bottom:678.625050px;}
.y90{bottom:679.116450px;}
.y9c{bottom:679.720650px;}
.y623{bottom:679.845750px;}
.y1de{bottom:680.546610px;}
.y1bc{bottom:680.941200px;}
.y91{bottom:681.123000px;}
.y19d{bottom:681.287700px;}
.y40d{bottom:681.486000px;}
.y9b{bottom:681.727950px;}
.y92{bottom:682.726500px;}
.y45c{bottom:682.894200px;}
.y9a{bottom:683.318700px;}
.y93{bottom:683.453100px;}
.y99{bottom:684.225900px;}
.y94{bottom:684.528750px;}
.y98{bottom:684.620100px;}
.y95{bottom:685.086300px;}
.y97{bottom:685.173900px;}
.y96{bottom:685.271850px;}
.y384{bottom:685.827450px;}
.y5c{bottom:686.384100px;}
.y29e{bottom:686.864850px;}
.y2a0{bottom:688.055850px;}
.y213{bottom:689.445150px;}
.y44e{bottom:689.445300px;}
.y1f0{bottom:690.143250px;}
.y4a6{bottom:690.636300px;}
.y28a{bottom:691.712850px;}
.y678{bottom:692.220900px;}
.y3c1{bottom:692.930700px;}
.y20b{bottom:693.134250px;}
.y3a3{bottom:694.280700px;}
.y51d{bottom:695.064000px;}
.y5e9{bottom:695.081550px;}
.y4ff{bottom:695.151900px;}
.y5cb{bottom:695.157750px;}
.y371{bottom:695.632200px;}
.y1f{bottom:695.661600px;}
.y25c{bottom:696.144450px;}
.y65b{bottom:696.438600px;}
.y559{bottom:696.535950px;}
.y587{bottom:696.751200px;}
.y479{bottom:697.187250px;}
.y336{bottom:697.200450px;}
.y7a{bottom:697.299150px;}
.y533{bottom:697.779900px;}
.y124{bottom:697.885350px;}
.y367{bottom:697.885500px;}
.y4b7{bottom:698.903100px;}
.y22a{bottom:699.367020px;}
.y8b{bottom:699.561750px;}
.y6d{bottom:699.819150px;}
.y22d{bottom:700.380060px;}
.y48d{bottom:700.411950px;}
.y7b{bottom:700.448850px;}
.y641{bottom:701.445750px;}
.y8a{bottom:702.128850px;}
.y543{bottom:702.137250px;}
.y7c{bottom:702.756150px;}
.y425{bottom:703.329900px;}
.y40f{bottom:703.344450px;}
.y51{bottom:703.392000px;}
.y89{bottom:703.407900px;}
.y46c{bottom:704.071350px;}
.y7d{bottom:704.854800px;}
.y88{bottom:705.469950px;}
.y1bb{bottom:705.691200px;}
.y14e{bottom:706.453200px;}
.y87{bottom:706.903500px;}
.y574{bottom:707.643900px;}
.y5a5{bottom:707.644200px;}
.y2a2{bottom:708.132450px;}
.y289{bottom:709.667400px;}
.y240{bottom:709.804290px;}
.y605{bottom:710.641200px;}
.y5ff{bottom:713.086800px;}
.y677{bottom:713.220900px;}
.y51e{bottom:713.684640px;}
.y5ea{bottom:713.690130px;}
.y500{bottom:713.760480px;}
.y5cc{bottom:713.766330px;}
.y212{bottom:714.195150px;}
.y44d{bottom:714.195300px;}
.y3dd{bottom:715.182600px;}
.y4a5{bottom:715.386300px;}
.y45b{bottom:716.148000px;}
.y165{bottom:716.370298px;}
.y175{bottom:716.381758px;}
.y1e{bottom:716.661600px;}
.y16a{bottom:717.393401px;}
.y20a{bottom:717.884250px;}
.y406{bottom:718.151730px;}
.y41d{bottom:718.160430px;}
.y407{bottom:718.163790px;}
.y41e{bottom:718.172490px;}
.y408{bottom:718.175850px;}
.y41f{bottom:718.184550px;}
.y409{bottom:718.187910px;}
.y420{bottom:718.196610px;}
.y40a{bottom:718.199970px;}
.y421{bottom:718.208670px;}
.y40b{bottom:718.212030px;}
.y422{bottom:718.220730px;}
.y40c{bottom:718.224090px;}
.y423{bottom:718.232790px;}
.y280{bottom:718.644750px;}
.y3a2{bottom:719.030700px;}
.y1b5{bottom:720.317250px;}
.y349{bottom:720.317400px;}
.y622{bottom:721.603650px;}
.y335{bottom:721.950450px;}
.y532{bottom:722.529900px;}
.y366{bottom:722.635500px;}
.y1ef{bottom:722.699100px;}
.y19c{bottom:723.045600px;}
.y169{bottom:723.269100px;}
.y22e{bottom:723.571440px;}
.y401{bottom:723.723450px;}
.y418{bottom:723.732150px;}
.y402{bottom:723.735510px;}
.y419{bottom:723.744210px;}
.y403{bottom:723.747570px;}
.y41a{bottom:723.756270px;}
.y404{bottom:723.759630px;}
.y41b{bottom:723.768330px;}
.y405{bottom:723.771690px;}
.y41c{bottom:723.780390px;}
.y6c{bottom:724.569150px;}
.y1df{bottom:725.277150px;}
.y3c0{bottom:726.184650px;}
.y370{bottom:726.388200px;}
.y542{bottom:726.887250px;}
.y383{bottom:727.585350px;}
.y288{bottom:727.622100px;}
.y27f{bottom:727.644750px;}
.y50{bottom:728.142000px;}
.y46b{bottom:728.821350px;}
.y478{bottom:730.441200px;}
.y14d{bottom:731.203200px;}
.y51f{bottom:732.305280px;}
.y5eb{bottom:732.310770px;}
.y501{bottom:732.369060px;}
.y5cd{bottom:732.374910px;}
.y573{bottom:732.393900px;}
.y5a4{bottom:732.394200px;}
.y557{bottom:732.840600px;}
.y25b{bottom:732.952200px;}
.y584{bottom:733.055850px;}
.y676{bottom:734.220750px;}
.y4b6{bottom:735.219450px;}
.y604{bottom:735.391200px;}
.y33d{bottom:736.192500px;}
.y48b{bottom:736.728300px;}
.y5fe{bottom:737.836800px;}
.y65a{bottom:738.196500px;}
.y211{bottom:738.945150px;}
.y123{bottom:739.643250px;}
.y229{bottom:739.659480px;}
.y3dc{bottom:739.932600px;}
.y4a4{bottom:740.136300px;}
.y45a{bottom:740.898000px;}
.y1d{bottom:741.411600px;}
.y209{bottom:742.634250px;}
.y1ba{bottom:743.197050px;}
.y640{bottom:743.203650px;}
.y100{bottom:743.958900px;}
.y2a7{bottom:744.520500px;}
.y1b4{bottom:745.067250px;}
.y348{bottom:745.067400px;}
.y287{bottom:745.576650px;}
.y334{bottom:746.700300px;}
.y22f{bottom:746.774880px;}
.y3fa{bottom:746.985150px;}
.y411{bottom:746.993850px;}
.y1ee{bottom:747.449100px;}
.y44c{bottom:747.449250px;}
.y119{bottom:747.462000px;}
.y6b{bottom:749.319150px;}
.y29f{bottom:750.667350px;}
.y555{bottom:750.854490px;}
.y520{bottom:750.925920px;}
.y5ec{bottom:750.931410px;}
.y3bf{bottom:750.934650px;}
.y502{bottom:750.989700px;}
.y5ce{bottom:750.995550px;}
.y582{bottom:751.105710px;}
.y36f{bottom:751.138050px;}
.y2a1{bottom:751.858350px;}
.y3a1{bottom:752.284650px;}
.y33c{bottom:752.392500px;}
.y4f{bottom:752.892000px;}
.y4b4{bottom:753.185250px;}
.y46a{bottom:753.571350px;}
.y489{bottom:754.754610px;}
.y228{bottom:755.180700px;}
.y477{bottom:755.191200px;}
.y675{bottom:755.220750px;}
.y14c{bottom:755.953200px;}
.y174{bottom:756.219971px;}
.y164{bottom:756.558140px;}
.y63a{bottom:757.061400px;}
.y572{bottom:757.143900px;}
.y4d9{bottom:757.144200px;}
.y25a{bottom:757.702200px;}
.y1c{bottom:759.411600px;}
.y531{bottom:760.035750px;}
.y382{bottom:760.141200px;}
.y621{bottom:760.211550px;}
.y19b{bottom:760.551450px;}
.y5fd{bottom:762.586800px;}
.y659{bottom:762.946500px;}
.y286{bottom:763.531200px;}
.y365{bottom:764.393400px;}
.y54a{bottom:764.856150px;}
.y4a3{bottom:764.886300px;}
.y575{bottom:765.083250px;}
.y459{bottom:765.648000px;}
.y4a7{bottom:767.235150px;}
.y208{bottom:767.384250px;}
.y63f{bottom:767.953650px;}
.yff{bottom:768.708900px;}
.y47e{bottom:768.732150px;}
.y191{bottom:769.055400px;}
.y1b3{bottom:769.817250px;}
.y347{bottom:769.817400px;}
.y230{bottom:769.954200px;}
.y1e0{bottom:770.019750px;}
.y1ed{bottom:772.199100px;}
.y44b{bottom:772.199250px;}
.y118{bottom:772.212000px;}
.y17a{bottom:772.595141px;}
.y179{bottom:772.643700px;}
.y36e{bottom:775.888050px;}
.y674{bottom:776.220750px;}
.y524{bottom:776.243700px;}
.y5f0{bottom:776.249850px;}
.y506{bottom:776.308350px;}
.y5d2{bottom:776.314200px;}
.y122{bottom:776.451000px;}
.y1b{bottom:777.411600px;}
.y3db{bottom:777.438450px;}
.y4e{bottom:777.642000px;}
.y469{bottom:778.321350px;}
.y476{bottom:779.941200px;}
.y1b9{bottom:780.703050px;}
.y14b{bottom:780.703200px;}
.y285{bottom:781.485750px;}
.y639{bottom:781.811400px;}
.y571{bottom:781.893900px;}
.y4d8{bottom:781.894200px;}
.y259{bottom:782.452200px;}
.y3be{bottom:784.188600px;}
.y530{bottom:784.785750px;}
.y381{bottom:784.891200px;}
.y620{bottom:784.961550px;}
.y19a{bottom:785.301450px;}
.y5fc{bottom:787.336800px;}
.y1d8{bottom:787.554990px;}
.y658{bottom:787.696500px;}
.y333{bottom:788.458350px;}
.y364{bottom:789.143400px;}
.y576{bottom:789.263550px;}
.y3a0{bottom:789.790500px;}
.y458{bottom:790.398000px;}
.y4a8{bottom:791.053650px;}
.y6a{bottom:791.077050px;}
.y63e{bottom:792.703650px;}
.y231{bottom:793.157640px;}
.y227{bottom:793.169700px;}
.yfe{bottom:793.458900px;}
.y190{bottom:793.805400px;}
.y54b{bottom:794.306670px;}
.y29d{bottom:796.600200px;}
.y1ec{bottom:796.949100px;}
.y44a{bottom:796.949250px;}
.y117{bottom:796.962000px;}
.y47f{bottom:797.024910px;}
.y673{bottom:797.220750px;}
.y4a2{bottom:798.140100px;}
.y3fb{bottom:798.384870px;}
.y412{bottom:798.393570px;}
.y1a{bottom:798.411600px;}
.y284{bottom:799.440450px;}
.y36d{bottom:800.638050px;}
.y121{bottom:801.201000px;}
.y4d{bottom:802.392000px;}
.y1b2{bottom:803.071200px;}
.y346{bottom:803.071350px;}
.y283{bottom:803.940450px;}
.y3da{bottom:803.942400px;}
.y3f9{bottom:804.114000px;}
.y207{bottom:804.890100px;}
.y1b8{bottom:805.453050px;}
.y14a{bottom:805.453200px;}
.y638{bottom:806.561400px;}
.y258{bottom:807.202200px;}
.y52f{bottom:809.535750px;}
.y380{bottom:809.641200px;}
.y61f{bottom:809.711550px;}
.y29a{bottom:811.567650px;}
.y468{bottom:811.575300px;}
.y657{bottom:812.446500px;}
.y475{bottom:813.195150px;}
.y332{bottom:813.208350px;}
.y577{bottom:813.443850px;}
.y363{bottom:813.893400px;}
.y210{bottom:813.956850px;}
.y1e1{bottom:814.750290px;}
.y4a9{bottom:814.860090px;}
.y570{bottom:815.147850px;}
.y4d7{bottom:815.148000px;}
.y69{bottom:815.827050px;}
.y185{bottom:816.376080px;}
.y19{bottom:816.411600px;}
.y603{bottom:818.145150px;}
.yfd{bottom:818.208900px;}
.y672{bottom:818.220750px;}
.y242{bottom:818.482200px;}
.y1d5{bottom:819.399900px;}
.y5fb{bottom:820.590750px;}
.y3bd{bottom:821.694450px;}
.y3e6{bottom:821.699100px;}
.y116{bottom:821.712000px;}
.y199{bottom:822.807450px;}
.y4a1{bottom:822.890100px;}
.y457{bottom:823.651950px;}
.y54c{bottom:823.757190px;}
.y299{bottom:824.167650px;}
.y480{bottom:825.305610px;}
.y36c{bottom:825.388050px;}
.y120{bottom:825.951000px;}
.y282{bottom:826.395000px;}
.y3f8{bottom:826.473450px;}
.y18f{bottom:827.059350px;}
.y5b{bottom:827.142000px;}
.y39f{bottom:827.296350px;}
.y1b1{bottom:827.821200px;}
.y345{bottom:827.821350px;}
.y1eb{bottom:830.203050px;}
.y449{bottom:830.203200px;}
.y281{bottom:830.895000px;}
.y206{bottom:831.394200px;}
.y257{bottom:831.952200px;}
.y18{bottom:834.411600px;}
.y61e{bottom:834.461550px;}
.y29c{bottom:836.232900px;}
.y467{bottom:836.325300px;}
.y3d9{bottom:837.196350px;}
.y578{bottom:837.624150px;}
.y474{bottom:837.945150px;}
.y331{bottom:837.958350px;}
.y5b3{bottom:838.326900px;}
.y4e7{bottom:838.332750px;}
.y514{bottom:838.391400px;}
.y5e0{bottom:838.397250px;}
.y4aa{bottom:838.678590px;}
.y1b7{bottom:838.706850px;}
.y149{bottom:838.707150px;}
.y671{bottom:839.220750px;}
.y56f{bottom:839.897850px;}
.y4d6{bottom:839.898000px;}
.y68{bottom:840.577050px;}
.y1e5{bottom:841.591950px;}
.y37f{bottom:842.895150px;}
.yfc{bottom:842.958900px;}
.y4c{bottom:844.149750px;}
.y1d4{bottom:844.149900px;}
.y5fa{bottom:845.340750px;}
.y3bc{bottom:846.444450px;}
.y115{bottom:846.462000px;}
.y637{bottom:848.319300px;}
.y456{bottom:848.401950px;}
.y3f7{bottom:848.832750px;}
.y29b{bottom:848.832900px;}
.y413{bottom:849.793290px;}
.y3fc{bottom:849.808710px;}
.y11f{bottom:850.701000px;}
.y52e{bottom:851.293650px;}
.y18e{bottom:851.809350px;}
.y1b0{bottom:852.571200px;}
.y344{bottom:852.571350px;}
.y54d{bottom:853.195650px;}
.y27e{bottom:853.349550px;}
.y481{bottom:853.574250px;}
.y656{bottom:854.204250px;}
.y1ea{bottom:854.953050px;}
.y448{bottom:854.953200px;}
.y17{bottom:855.411600px;}
.y362{bottom:855.651150px;}
.y205{bottom:856.144200px;}
.y5b1{bottom:856.971450px;}
.y4e5{bottom:856.977300px;}
.y512{bottom:857.035800px;}
.y5de{bottom:857.041800px;}
.y27d{bottom:857.849550px;}
.y39e{bottom:858.052350px;}
.y63d{bottom:859.211550px;}
.y24e{bottom:859.218000px;}
.y670{bottom:860.220750px;}
.y198{bottom:860.313300px;}
.y466{bottom:861.075300px;}
.y579{bottom:861.804450px;}
.y4ab{bottom:862.497090px;}
.y473{bottom:862.695150px;}
.y330{bottom:862.708350px;}
.y36b{bottom:862.894050px;}
.y1b6{bottom:863.456850px;}
.y148{bottom:863.457150px;}
.y56e{bottom:864.647850px;}
.y4d5{bottom:864.648000px;}
.y163{bottom:864.923521px;}
.y173{bottom:864.925268px;}
.y67{bottom:865.327050px;}
.y37e{bottom:867.645150px;}
.yfb{bottom:867.708900px;}
.y4b{bottom:868.899750px;}
.y5a{bottom:868.899900px;}
.y256{bottom:869.458200px;}
.y5f9{bottom:870.090750px;}
.y3d8{bottom:870.450300px;}
.y3f6{bottom:871.203900px;}
.y114{bottom:871.212000px;}
.y20f{bottom:871.960950px;}
.y636{bottom:873.069300px;}
.y455{bottom:873.151950px;}
.y16{bottom:873.411600px;}
.y4da{bottom:874.883550px;}
.y5a6{bottom:874.889400px;}
.y507{bottom:874.942050px;}
.y5d3{bottom:874.948050px;}
.y48a{bottom:875.161950px;}
.y52d{bottom:876.043650px;}
.y61d{bottom:876.219300px;}
.y556{bottom:877.133550px;}
.y655{bottom:878.954250px;}
.y1e9{bottom:879.703050px;}
.y447{bottom:879.703200px;}
.y27c{bottom:880.304100px;}
.y204{bottom:880.894200px;}
.y66f{bottom:881.220750px;}
.y482{bottom:881.842890px;}
.y54e{bottom:882.634110px;}
.y3bb{bottom:883.950300px;}
.y24d{bottom:883.968000px;}
.y18d{bottom:885.063300px;}
.y298{bottom:885.067950px;}
.y343{bottom:885.825300px;}
.y57a{bottom:885.984750px;}
.y4ac{bottom:886.315590px;}
.y32f{bottom:887.458350px;}
.y361{bottom:888.207150px;}
.y56d{bottom:889.397850px;}
.y4b5{bottom:889.426500px;}
.y583{bottom:889.501200px;}
.y1af{bottom:890.077050px;}
.y162{bottom:890.815446px;}
.y172{bottom:890.817194px;}
.y602{bottom:892.395150px;}
.yfa{bottom:892.458900px;}
.y424{bottom:893.356050px;}
.y5a7{bottom:893.485920px;}
.y4db{bottom:893.492130px;}
.y508{bottom:893.562690px;}
.y5d4{bottom:893.568690px;}
.y3f5{bottom:893.574900px;}
.y4a{bottom:893.649750px;}
.y59{bottom:893.649900px;}
.y255{bottom:894.208200px;}
.y15{bottom:894.411600px;}
.y5f8{bottom:894.840750px;}
.y39d{bottom:894.860250px;}
.y113{bottom:895.962000px;}
.y147{bottom:896.710950px;}
.y140{bottom:896.723850px;}
.y454{bottom:897.901950px;}
.y27b{bottom:898.258800px;}
.y472{bottom:900.201000px;}
.y52c{bottom:900.793650px;}
.y61c{bottom:900.969300px;}
.y3fd{bottom:901.208430px;}
.y414{bottom:901.217130px;}
.y66e{bottom:902.220750px;}
.y3d7{bottom:903.704250px;}
.y1e8{bottom:904.453050px;}
.y37d{bottom:905.151000px;}
.y66{bottom:907.084950px;}
.y24c{bottom:908.718000px;}
.y197{bottom:909.813300px;}
.y4ad{bottom:910.122030px;}
.y483{bottom:910.135650px;}
.y57b{bottom:910.177110px;}
.y3ba{bottom:910.454250px;}
.y342{bottom:910.575300px;}
.y54f{bottom:912.084630px;}
.y5a8{bottom:912.106560px;}
.y4dc{bottom:912.112770px;}
.y509{bottom:912.171270px;}
.y5d5{bottom:912.189330px;}
.y360{bottom:912.957150px;}
.y203{bottom:914.148000px;}
.y1ae{bottom:914.827050px;}
.y635{bottom:914.827200px;}
.y3f4{bottom:915.922650px;}
.yf9{bottom:917.208900px;}
.y18c{bottom:918.317250px;}
.y49{bottom:918.399750px;}
.y58{bottom:918.399900px;}
.y465{bottom:919.079100px;}
.y14{bottom:919.161600px;}
.y39c{bottom:919.610250px;}
.y654{bottom:920.712150px;}
.y27a{bottom:920.713350px;}
.y146{bottom:921.460950px;}
.y13f{bottom:921.473850px;}
.y56c{bottom:922.651800px;}
.y453{bottom:922.651950px;}
.y66d{bottom:923.220750px;}
.y471{bottom:924.951000px;}
.y32e{bottom:924.964200px;}
.y52b{bottom:925.543650px;}
.y61b{bottom:925.719300px;}
.y254{bottom:927.462000px;}
.y297{bottom:927.603000px;}
.y5f7{bottom:928.094700px;}
.y3d6{bottom:928.454250px;}
.y296{bottom:928.793850px;}
.y37c{bottom:929.901000px;}
.y5a9{bottom:930.727200px;}
.y4dd{bottom:930.733410px;}
.y5d6{bottom:930.785850px;}
.y50a{bottom:930.791910px;}
.y65{bottom:931.834950px;}
.y24b{bottom:933.468000px;}
.y4ae{bottom:933.928470px;}
.y57c{bottom:934.345350px;}
.y341{bottom:935.325300px;}
.y35f{bottom:937.707150px;}
.y112{bottom:937.720050px;}
.y3f3{bottom:938.293650px;}
.y484{bottom:938.416350px;}
.y202{bottom:938.898000px;}
.y183{bottom:939.338446px;}
.y1ad{bottom:939.577050px;}
.y634{bottom:939.577200px;}
.y550{bottom:941.535150px;}
.y11e{bottom:941.958900px;}
.y3e5{bottom:941.959050px;}
.y57{bottom:943.149900px;}
.y279{bottom:943.167900px;}
.y3b9{bottom:943.708350px;}
.y464{bottom:943.829100px;}
.y13{bottom:943.911600px;}
.y66c{bottom:944.220750px;}
.y653{bottom:945.462150px;}
.y145{bottom:946.210950px;}
.y13e{bottom:946.223850px;}
.y5b2{bottom:947.252700px;}
.y4e6{bottom:947.258550px;}
.y196{bottom:947.319300px;}
.y5df{bottom:947.323050px;}
.y513{bottom:947.328900px;}
.y56b{bottom:947.401800px;}
.y452{bottom:947.401950px;}
.y293{bottom:948.870450px;}
.y5aa{bottom:949.347840px;}
.y4de{bottom:949.354050px;}
.y5d7{bottom:949.406490px;}
.y50b{bottom:949.412550px;}
.y470{bottom:949.701000px;}
.y43{bottom:949.708650px;}
.y61a{bottom:950.469300px;}
.y271{bottom:952.145250px;}
.y253{bottom:952.212000px;}
.y3fe{bottom:952.608150px;}
.y415{bottom:952.616850px;}
.y5f6{bottom:952.844700px;}
.y601{bottom:954.651000px;}
.y18b{bottom:955.823250px;}
.y64{bottom:956.584950px;}
.y4af{bottom:957.746970px;}
.y618{bottom:958.218000px;}
.y57d{bottom:958.537710px;}
.yf8{bottom:958.966800px;}
.y48{bottom:960.157800px;}
.y278{bottom:961.122600px;}
.y39b{bottom:961.368000px;}
.y3d5{bottom:961.708200px;}
.y111{bottom:962.470050px;}
.y4a0{bottom:963.648000px;}
.y633{bottom:964.327200px;}
.y66b{bottom:965.220750px;}
.y485{bottom:966.684990px;}
.y11d{bottom:966.708900px;}
.y24a{bottom:966.721950px;}
.y52a{bottom:967.301550px;}
.y5ab{bottom:967.968480px;}
.y4df{bottom:967.974690px;}
.y5d8{bottom:968.015070px;}
.y50c{bottom:968.021130px;}
.y3b8{bottom:968.458350px;}
.y340{bottom:968.579100px;}
.y12{bottom:968.661600px;}
.y295{bottom:970.137900px;}
.y42{bottom:970.708650px;}
.y20e{bottom:970.960950px;}
.y551{bottom:970.961550px;}
.y13d{bottom:970.973850px;}
.y37b{bottom:971.658900px;}
.y56a{bottom:972.151800px;}
.y201{bottom:972.151950px;}
.y252{bottom:976.962000px;}
.y5f5{bottom:977.594700px;}
.y277{bottom:979.077150px;}
.y63{bottom:981.334950px;}
.y161{bottom:981.408049px;}
.y171{bottom:981.409797px;}
.y4b0{bottom:981.553410px;}
.y695{bottom:981.600750px;}
.y57e{bottom:982.705950px;}
.yf7{bottom:983.716800px;}
.y144{bottom:983.716950px;}
.y47{bottom:984.907800px;}
.y66a{bottom:986.220750px;}
.y4e0{bottom:986.571210px;}
.y5ac{bottom:986.577060px;}
.y50d{bottom:986.629710px;}
.y5d9{bottom:986.635710px;}
.y110{bottom:987.220050px;}
.y195{bottom:989.077200px;}
.y11{bottom:989.661600px;}
.y46f{bottom:991.458900px;}
.y249{bottom:991.471950px;}
.y41{bottom:991.708650px;}
.y529{bottom:992.051550px;}
.y619{bottom:992.227200px;}
.y18a{bottom:993.329100px;}
.y3d4{bottom:994.962000px;}
.y486{bottom:994.977750px;}
.y35e{bottom:995.710950px;}
.y13c{bottom:995.723850px;}
.y39a{bottom:995.724000px;}
.y600{bottom:996.408900px;}
.y200{bottom:996.901950px;}
.y276{bottom:997.031700px;}
.y552{bottom:1000.400010px;}
.y3b7{bottom:1001.712150px;}
.y5f4{bottom:1002.344700px;}
.y694{bottom:1002.600750px;}
.y416{bottom:1004.016570px;}
.y3ff{bottom:1004.019930px;}
.y4e1{bottom:1005.191850px;}
.y5ad{bottom:1005.197700px;}
.y50e{bottom:1005.250350px;}
.y5da{bottom:1005.256350px;}
.y4b1{bottom:1005.371910px;}
.y62{bottom:1006.084950px;}
.y632{bottom:1006.085100px;}
.y57f{bottom:1006.898310px;}
.y669{bottom:1007.220750px;}
.y160{bottom:1007.299975px;}
.y170{bottom:1007.301722px;}
.y10{bottom:1007.661600px;}
.yf6{bottom:1008.466800px;}
.y143{bottom:1008.466950px;}
.y46{bottom:1009.657800px;}
.y10f{bottom:1011.970050px;}
.y294{bottom:1012.672950px;}
.y40{bottom:1012.708650px;}
.y251{bottom:1014.468000px;}
.y275{bottom:1014.986250px;}
.y248{bottom:1016.221950px;}
.y528{bottom:1016.801550px;}
.y63c{bottom:1016.977200px;}
.y189{bottom:1018.079100px;}
.y274{bottom:1019.486250px;}
.y35d{bottom:1020.460950px;}
.y399{bottom:1020.474000px;}
.y1ff{bottom:1021.651950px;}
.y487{bottom:1023.258450px;}
.y693{bottom:1023.600750px;}
.y5ae{bottom:1023.794220px;}
.y4e2{bottom:1023.800430px;}
.y50f{bottom:1023.870990px;}
.y5db{bottom:1023.876990px;}
.y3d3{bottom:1028.216100px;}
.y668{bottom:1028.220750px;}
.yf{bottom:1028.661600px;}
.y13b{bottom:1028.977800px;}
.y4b2{bottom:1029.178350px;}
.y553{bottom:1029.850530px;}
.y61{bottom:1030.834950px;}
.y194{bottom:1030.835100px;}
.y580{bottom:1031.066550px;}
.y15f{bottom:1033.191900px;}
.y16f{bottom:1033.193648px;}
.yf5{bottom:1033.216800px;}
.y142{bottom:1033.216950px;}
.y45{bottom:1034.407800px;}
.y10e{bottom:1036.720050px;}
.y3f{bottom:1037.458650px;}
.y250{bottom:1039.218000px;}
.y3b6{bottom:1039.218150px;}
.y5f3{bottom:1039.850700px;}
.y247{bottom:1040.971950px;}
.y527{bottom:1041.551550px;}
.y273{bottom:1041.940950px;}
.y5af{bottom:1042.414860px;}
.y4e3{bottom:1042.421070px;}
.y510{bottom:1042.479570px;}
.y5dc{bottom:1042.497630px;}
.y398{bottom:1045.224000px;}
.y272{bottom:1046.440950px;}
.ye{bottom:1046.661600px;}
.y667{bottom:1049.220750px;}
.y488{bottom:1051.527090px;}
.y4b3{bottom:1052.996850px;}
.y692{bottom:1053.104700px;}
.y13a{bottom:1053.727800px;}
.y32d{bottom:1053.727950px;}
.y581{bottom:1055.258910px;}
.y417{bottom:1055.416290px;}
.y400{bottom:1055.431710px;}
.y60{bottom:1055.584950px;}
.y193{bottom:1055.585100px;}
.y292{bottom:1056.398850px;}
.yf4{bottom:1057.966800px;}
.y141{bottom:1057.966950px;}
.y63b{bottom:1058.735100px;}
.y44{bottom:1059.157800px;}
.y554{bottom:1059.288990px;}
.y5b0{bottom:1061.035500px;}
.y4e4{bottom:1061.041710px;}
.y5dd{bottom:1061.094150px;}
.y511{bottom:1061.100210px;}
.y10d{bottom:1061.470050px;}
.y3e{bottom:1062.208650px;}
.y5f2{bottom:1064.600700px;}
.y3d2{bottom:1065.721950px;}
.y526{bottom:1066.301550px;}
.yd{bottom:1067.661600px;}
.y270{bottom:1068.895500px;}
.y397{bottom:1069.974000px;}
.y666{bottom:1070.220750px;}
.y24f{bottom:1076.723850px;}
.y3b5{bottom:1076.724000px;}
.y139{bottom:1078.477800px;}
.y246{bottom:1078.477950px;}
.y427{bottom:1080.364890px;}
.y48c{bottom:1080.474450px;}
.y585{bottom:1080.475800px;}
.y586{bottom:1080.508920px;}
.y426{bottom:1080.947550px;}
.y410{bottom:1080.949050px;}
.y558{bottom:1081.369350px;}
.y184{bottom:1081.734324px;}
.y3d{bottom:1083.208650px;}
.y5b4{bottom:1086.354300px;}
.y4e8{bottom:1086.360150px;}
.y515{bottom:1086.418650px;}
.y5e1{bottom:1086.424500px;}
.y5f{bottom:1097.342850px;}
.y192{bottom:1097.343000px;}
.yf3{bottom:1099.724700px;}
.yc{bottom:1100.915550px;}
.y56{bottom:1100.915700px;}
.y5f1{bottom:1102.106550px;}
.y10c{bottom:1103.227800px;}
.y245{bottom:1103.227950px;}
.y525{bottom:1103.807400px;}
.y3c{bottom:1104.208650px;}
.y5e{bottom:1165.886100px;}
.h85{height:17.309531px;}
.h7d{height:24.360352px;}
.h87{height:24.480311px;}
.h86{height:25.714511px;}
.h8c{height:26.750817px;}
.h88{height:27.075270px;}
.h75{height:32.170669px;}
.h7c{height:34.104492px;}
.h82{height:35.143594px;}
.h8b{height:36.608630px;}
.h94{height:37.019531px;}
.h70{height:37.599609px;}
.h80{height:37.919292px;}
.h96{height:38.812500px;}
.h79{height:40.372734px;}
.h77{height:40.674023px;}
.h76{height:40.721484px;}
.h9a{height:41.777344px;}
.h7e{height:42.360352px;}
.h46{height:42.572687px;}
.h34{height:42.572727px;}
.h3e{height:42.572819px;}
.h2f{height:42.572863px;}
.h1f{height:42.572870px;}
.h3a{height:42.572881px;}
.h53{height:42.572887px;}
.h11{height:42.572903px;}
.h4c{height:42.572940px;}
.h40{height:42.572947px;}
.h27{height:42.572975px;}
.h22{height:42.572978px;}
.h61{height:42.572979px;}
.h6f{height:42.573006px;}
.h4e{height:42.573011px;}
.h3f{height:42.573025px;}
.h41{height:42.573061px;}
.h26{height:42.573064px;}
.h50{height:42.573070px;}
.h69{height:42.573071px;}
.h6c{height:42.573074px;}
.h4d{height:42.573083px;}
.h5c{height:42.573087px;}
.h49{height:42.573098px;}
.h4f{height:42.573107px;}
.h15{height:42.573119px;}
.h31{height:42.573124px;}
.h2d{height:42.573131px;}
.h1b{height:42.573139px;}
.h3b{height:42.573141px;}
.h3c{height:42.573155px;}
.h28{height:42.573159px;}
.h6b{height:42.573168px;}
.h58{height:42.573169px;}
.h5e{height:42.573175px;}
.h25{height:42.573180px;}
.h56{height:42.573185px;}
.h52{height:42.573192px;}
.h2b{height:42.573199px;}
.h17{height:42.573217px;}
.h55{height:42.573219px;}
.h4b{height:42.573220px;}
.h35{height:42.573227px;}
.h45{height:42.573241px;}
.h44{height:42.573247px;}
.h38{height:42.573255px;}
.h37{height:42.573257px;}
.h43{height:42.573261px;}
.h1c{height:42.573272px;}
.h3d{height:42.573274px;}
.h36{height:42.573277px;}
.h65{height:42.573280px;}
.h6e{height:42.573289px;}
.h24{height:42.573294px;}
.h42{height:42.573296px;}
.h64{height:42.573304px;}
.h16{height:42.573305px;}
.h18{height:42.573314px;}
.h51{height:42.573324px;}
.h4a{height:42.573329px;}
.h1d{height:42.573332px;}
.h62{height:42.573338px;}
.h57{height:42.573352px;}
.h13{height:42.573354px;}
.h2a{height:42.573356px;}
.h63{height:42.573361px;}
.h33{height:42.573362px;}
.h66{height:42.573364px;}
.h47{height:42.573378px;}
.h2e{height:42.573384px;}
.h48{height:42.573393px;}
.h60{height:42.573421px;}
.h68{height:42.573423px;}
.h23{height:42.573445px;}
.h5b{height:42.573458px;}
.h39{height:42.573473px;}
.h6a{height:42.573475px;}
.h54{height:42.573490px;}
.h6d{height:42.573495px;}
.h10{height:42.573510px;}
.h1e{height:42.573511px;}
.h5f{height:42.573513px;}
.h12{height:42.573519px;}
.h29{height:42.573528px;}
.h2c{height:42.573553px;}
.h30{height:42.573554px;}
.h21{height:42.573607px;}
.h59{height:42.573624px;}
.h67{height:42.573664px;}
.h20{height:42.573669px;}
.h1a{height:42.573673px;}
.h5d{height:42.573688px;}
.h19{height:42.573733px;}
.h5a{height:42.573779px;}
.h32{height:42.573786px;}
.h99{height:42.597656px;}
.h93{height:42.626953px;}
.he{height:43.037109px;}
.h8d{height:44.435034px;}
.h5{height:44.718750px;}
.hb{height:45.193359px;}
.hc{height:45.955078px;}
.h84{height:46.127812px;}
.h8a{height:47.141670px;}
.h83{height:48.256875px;}
.h8f{height:49.488750px;}
.hd{height:49.687500px;}
.h7a{height:50.072344px;}
.ha{height:50.214844px;}
.h73{height:54.180779px;}
.h72{height:54.181379px;}
.h98{height:54.222750px;}
.h7f{height:54.323752px;}
.h97{height:54.762750px;}
.h7b{height:54.855000px;}
.h6{height:55.236328px;}
.h9{height:55.300781px;}
.h74{height:57.333984px;}
.h4{height:58.488281px;}
.h8{height:63.067383px;}
.h78{height:66.036414px;}
.h71{height:68.800781px;}
.h3{height:70.300781px;}
.h95{height:71.083800px;}
.hf{height:80.267578px;}
.h7{height:90.492188px;}
.h90{height:120.420000px;}
.h2{height:120.656250px;}
.h91{height:137.160000px;}
.h92{height:137.340000px;}
.h14{height:251.754000px;}
.h89{height:291.399000px;}
.h81{height:307.204500px;}
.h8e{height:424.980000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w7{width:13.680000px;}
.w8{width:13.681500px;}
.w6{width:13.683000px;}
.w3{width:62.079000px;}
.w2{width:251.752500px;}
.w5{width:278.455500px;}
.w4{width:616.536000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd8{left:3.206400px;}
.xc8{left:9.899250px;}
.x8f{left:54.496500px;}
.x98{left:75.214197px;}
.x97{left:77.791800px;}
.xe{left:79.634250px;}
.x99{left:81.518400px;}
.x92{left:83.915850px;}
.x6{left:85.039350px;}
.x94{left:93.137850px;}
.x14{left:101.353350px;}
.x95{left:103.651500px;}
.xc{left:106.299150px;}
.x15{left:108.367800px;}
.x9{left:110.551200px;}
.x53{left:112.039350px;}
.xa{left:116.562900px;}
.x13{left:119.074500px;}
.x8e{left:121.606500px;}
.x16{left:122.869950px;}
.x55{left:127.559100px;}
.x17{left:129.655650px;}
.xb{left:131.811000px;}
.xd{left:133.634700px;}
.x93{left:134.745839px;}
.xc7{left:138.189000px;}
.x18{left:139.728300px;}
.x19{left:143.106000px;}
.x2{left:145.894200px;}
.xed{left:148.752990px;}
.xec{left:150.837900px;}
.x9a{left:152.644350px;}
.x9c{left:153.870181px;}
.xc5{left:155.827740px;}
.xc2{left:159.355110px;}
.xc4{left:161.447700px;}
.x96{left:163.104750px;}
.x9b{left:164.281345px;}
.x79{left:167.303400px;}
.xf0{left:168.548400px;}
.xeb{left:169.822200px;}
.x87{left:171.553650px;}
.x91{left:172.790250px;}
.x33{left:175.955400px;}
.x7d{left:179.454780px;}
.x78{left:180.763500px;}
.x1f{left:182.750700px;}
.xef{left:184.542570px;}
.xbd{left:185.711323px;}
.x34{left:187.434750px;}
.x20{left:189.719850px;}
.xf{left:193.150050px;}
.x44{left:194.871450px;}
.x21{left:195.876000px;}
.x4d{left:197.826750px;}
.x35{left:199.101450px;}
.x10{left:200.308350px;}
.x22{left:202.228800px;}
.x49{left:203.513100px;}
.x36{left:205.463100px;}
.x11{left:206.488200px;}
.x23{left:209.038200px;}
.xb9{left:210.265758px;}
.x37{left:211.956300px;}
.x12{left:213.308250px;}
.x24{left:215.299200px;}
.x38{left:217.431900px;}
.x45{left:219.275100px;}
.x25{left:221.779800px;}
.x9e{left:223.250814px;}
.x26{left:225.129150px;}
.x4e{left:227.736900px;}
.x46{left:229.304100px;}
.x39{left:230.748600px;}
.x27{left:232.162650px;}
.x3a{left:234.100200px;}
.x9d{left:236.348730px;}
.x4a{left:237.719850px;}
.x28{left:239.240100px;}
.x3b{left:241.185750px;}
.x29{left:242.635500px;}
.x4b{left:244.427550px;}
.x47{left:246.408150px;}
.x3c{left:248.315250px;}
.x2a{left:249.706350px;}
.x3d{left:251.686050px;}
.x71{left:253.451687px;}
.x4c{left:254.978400px;}
.x2b{left:256.513500px;}
.x3e{left:258.714600px;}
.x2c{left:259.897050px;}
.x4f{left:260.984700px;}
.x2d{left:265.474950px;}
.x1a{left:267.779250px;}
.x9f{left:270.831513px;}
.x2e{left:272.418000px;}
.x1b{left:274.257450px;}
.x7e{left:276.029430px;}
.x50{left:277.612200px;}
.x2f{left:278.994300px;}
.x1c{left:281.320050px;}
.x48{left:283.354050px;}
.x1d{left:285.199500px;}
.x3f{left:286.762050px;}
.x30{left:288.781950px;}
.xe8{left:290.303550px;}
.x1e{left:291.698700px;}
.x40{left:293.195250px;}
.x7b{left:294.326280px;}
.x31{left:295.371000px;}
.x41{left:298.080450px;}
.xea{left:300.134700px;}
.x32{left:301.540500px;}
.x42{left:303.630150px;}
.xba{left:306.222240px;}
.x43{left:309.091500px;}
.x72{left:310.565960px;}
.x7f{left:314.645550px;}
.xb7{left:319.284837px;}
.x1{left:321.048000px;}
.xd9{left:329.227500px;}
.xb8{left:331.834698px;}
.x64{left:333.422096px;}
.x63{left:334.568100px;}
.x5e{left:336.820375px;}
.x6e{left:339.341700px;}
.xda{left:347.229000px;}
.x80{left:353.285790px;}
.x8{left:355.476750px;}
.x3{left:356.822250px;}
.xbb{left:359.155731px;}
.x5d{left:362.712300px;}
.x8b{left:366.091500px;}
.x8c{left:371.320950px;}
.x6b{left:375.989353px;}
.x5f{left:377.865600px;}
.xa2{left:383.585699px;}
.x61{left:386.480055px;}
.xa1{left:389.395800px;}
.x62{left:391.724481px;}
.xa5{left:393.020100px;}
.xc6{left:394.625460px;}
.xdb{left:401.229000px;}
.xa3{left:402.393600px;}
.x6d{left:404.921104px;}
.x8d{left:407.360100px;}
.x6c{left:408.747592px;}
.x7c{left:410.234940px;}
.x51{left:413.347200px;}
.xa9{left:414.886800px;}
.x60{left:419.112039px;}
.xd5{left:422.349570px;}
.x69{left:427.219626px;}
.xab{left:428.484150px;}
.xca{left:430.118190px;}
.x68{left:431.502574px;}
.x67{left:434.522975px;}
.xc9{left:435.738150px;}
.x66{left:439.029296px;}
.xe9{left:440.475450px;}
.x56{left:441.934050px;}
.x65{left:443.360804px;}
.x6a{left:445.730507px;}
.xa0{left:447.570900px;}
.xa6{left:449.024100px;}
.xbe{left:453.992970px;}
.x73{left:456.712011px;}
.x74{left:458.697139px;}
.xd6{left:459.698550px;}
.x7a{left:462.053400px;}
.x5b{left:468.165892px;}
.x5c{left:469.632389px;}
.x59{left:471.633040px;}
.x58{left:475.051629px;}
.x57{left:476.751211px;}
.x8a{left:478.346400px;}
.x88{left:484.459050px;}
.xe7{left:486.098700px;}
.xcb{left:487.123830px;}
.x5a{left:492.377659px;}
.xdc{left:493.838190px;}
.xee{left:496.717200px;}
.xa8{left:497.971500px;}
.xa4{left:499.473467px;}
.xa7{left:502.643250px;}
.xcc{left:505.298250px;}
.xae{left:506.474793px;}
.x81{left:507.774390px;}
.xb4{left:510.674955px;}
.xb1{left:516.070726px;}
.xaf{left:517.902959px;}
.xb2{left:521.187005px;}
.xdd{left:522.306000px;}
.x6f{left:524.453100px;}
.xbf{left:529.958910px;}
.xde{left:540.306000px;}
.xcd{left:541.659150px;}
.x82{left:546.414630px;}
.x76{left:549.751260px;}
.xdf{left:558.304500px;}
.xce{left:559.833570px;}
.xb6{left:566.814269px;}
.xe0{left:576.306000px;}
.xcf{left:578.007990px;}
.xb3{left:580.524964px;}
.x5{left:584.810550px;}
.xbc{left:589.396436px;}
.xad{left:592.729500px;}
.xe1{left:594.306000px;}
.xd0{left:596.194470px;}
.xac{left:597.575850px;}
.x89{left:598.937250px;}
.xaa{left:603.182700px;}
.xc0{left:611.677470px;}
.xd1{left:614.368890px;}
.xb5{left:618.186672px;}
.x4{left:619.489350px;}
.x83{left:623.658930px;}
.xb0{left:626.400667px;}
.x77{left:629.889960px;}
.xd2{left:632.543310px;}
.xd7{left:636.603090px;}
.xe2{left:648.126000px;}
.xd3{left:650.729790px;}
.x90{left:655.156500px;}
.x84{left:662.275050px;}
.xe3{left:666.126000px;}
.xd4{left:668.904210px;}
.xf1{left:680.656800px;}
.xe4{left:684.124500px;}
.x70{left:686.965650px;}
.xc1{left:690.525750px;}
.x85{left:700.903230px;}
.xe5{left:702.126000px;}
.xc3{left:706.885200px;}
.xe6{left:720.126000px;}
.x86{left:739.531410px;}
.x75{left:793.761000px;}
.x54{left:796.246050px;}
.x52{left:798.895950px;}
.x7{left:800.524050px;}
@media print{
.v6{vertical-align:-36.276480pt;}
.va{vertical-align:-16.680320pt;}
.v10{vertical-align:-13.012480pt;}
.v9{vertical-align:-12.092160pt;}
.v8{vertical-align:-9.176320pt;}
.v4{vertical-align:-7.718400pt;}
.v5{vertical-align:-5.475840pt;}
.v7{vertical-align:-3.216000pt;}
.vb{vertical-align:-1.243520pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.972480pt;}
.ve{vertical-align:4.234133pt;}
.v12{vertical-align:8.928000pt;}
.v11{vertical-align:14.425600pt;}
.vc{vertical-align:16.000000pt;}
.vf{vertical-align:17.836800pt;}
.v1{vertical-align:19.536533pt;}
.v3{vertical-align:20.839680pt;}
.vd{vertical-align:26.634133pt;}
.ls26{letter-spacing:-1.872000pt;}
.ls3{letter-spacing:-1.392000pt;}
.ls25{letter-spacing:-1.152000pt;}
.ls1b{letter-spacing:-0.765440pt;}
.ls20{letter-spacing:-0.706560pt;}
.ls1c{letter-spacing:-0.647680pt;}
.ls1e{letter-spacing:-0.506880pt;}
.ls19{letter-spacing:-0.412160pt;}
.ls1a{letter-spacing:-0.353280pt;}
.ls21{letter-spacing:-0.328563pt;}
.ls16{letter-spacing:-0.294400pt;}
.ls22{letter-spacing:-0.268824pt;}
.ls18{letter-spacing:-0.235520pt;}
.ls13{letter-spacing:-0.186667pt;}
.ls1{letter-spacing:-0.172656pt;}
.ls15{letter-spacing:-0.171520pt;}
.ls1d{letter-spacing:-0.168960pt;}
.ls17{letter-spacing:-0.117760pt;}
.ls24{letter-spacing:-0.059739pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.018667pt;}
.lsc{letter-spacing:0.056320pt;}
.ls27{letter-spacing:0.058667pt;}
.ls23{letter-spacing:0.059739pt;}
.lsb{letter-spacing:0.076544pt;}
.ls12{letter-spacing:0.119477pt;}
.ls11{letter-spacing:0.149347pt;}
.ls8{letter-spacing:0.235520pt;}
.ls7{letter-spacing:0.294400pt;}
.ls1f{letter-spacing:0.412160pt;}
.ls28{letter-spacing:0.704000pt;}
.ls10{letter-spacing:2.826240pt;}
.ls14{letter-spacing:2.874667pt;}
.lsa{letter-spacing:3.473920pt;}
.lsd{letter-spacing:4.769280pt;}
.lse{letter-spacing:5.416960pt;}
.ls2{letter-spacing:6.233600pt;}
.lsf{letter-spacing:9.244160pt;}
.ls9{letter-spacing:15.603200pt;}
.ls5{letter-spacing:596.353600pt;}
.ls6{letter-spacing:846.965760pt;}
.ws0{word-spacing:-32.000000pt;}
.ws1{word-spacing:-22.400000pt;}
.ws52{word-spacing:-16.663040pt;}
.ws50{word-spacing:-16.368640pt;}
.ws4f{word-spacing:-16.250880pt;}
.ws4d{word-spacing:-16.133120pt;}
.ws53{word-spacing:-16.074240pt;}
.ws51{word-spacing:-16.015360pt;}
.ws5{word-spacing:-15.781333pt;}
.ws4c{word-spacing:-15.656960pt;}
.ws4e{word-spacing:-15.603200pt;}
.wsd5{word-spacing:-15.370667pt;}
.wsd4{word-spacing:-14.725333pt;}
.ws6{word-spacing:-14.666667pt;}
.ws3{word-spacing:-12.000000pt;}
.ws23{word-spacing:-10.800000pt;}
.ws33{word-spacing:-10.720000pt;}
.ws54{word-spacing:-10.319360pt;}
.ws41{word-spacing:-10.042667pt;}
.ws3a{word-spacing:-9.856000pt;}
.wsa4{word-spacing:-9.720533pt;}
.ws18{word-spacing:-9.288893pt;}
.ws19{word-spacing:-9.116237pt;}
.ws10{word-spacing:-8.550667pt;}
.ws59{word-spacing:-8.453021pt;}
.ws57{word-spacing:-8.423152pt;}
.ws5b{word-spacing:-8.303675pt;}
.ws68{word-spacing:-8.243936pt;}
.ws5f{word-spacing:-8.034851pt;}
.ws55{word-spacing:-7.975112pt;}
.ws15{word-spacing:-7.861333pt;}
.wsa6{word-spacing:-7.850095pt;}
.ws3f{word-spacing:-7.173333pt;}
.ws69{word-spacing:-6.986080pt;}
.ws34{word-spacing:-6.101333pt;}
.wsb9{word-spacing:-3.989333pt;}
.wsb7{word-spacing:-3.872000pt;}
.ws84{word-spacing:-3.415040pt;}
.ws6d{word-spacing:-2.874667pt;}
.ws32{word-spacing:-2.757333pt;}
.wsbc{word-spacing:-2.640000pt;}
.wsd0{word-spacing:-2.405333pt;}
.wsd6{word-spacing:-2.346667pt;}
.ws83{word-spacing:-2.178560pt;}
.wsbd{word-spacing:-1.877333pt;}
.ws5a{word-spacing:-1.663722pt;}
.ws64{word-spacing:-1.642813pt;}
.ws82{word-spacing:-1.530880pt;}
.wsc5{word-spacing:-1.466667pt;}
.ws5e{word-spacing:-1.356068pt;}
.ws5c{word-spacing:-1.353081pt;}
.ws61{word-spacing:-1.254512pt;}
.ws1c{word-spacing:-1.232000pt;}
.ws58{word-spacing:-1.176852pt;}
.wsba{word-spacing:-1.173333pt;}
.ws60{word-spacing:-1.114126pt;}
.ws9{word-spacing:-1.056000pt;}
.ws8f{word-spacing:-0.957440pt;}
.ws7f{word-spacing:-0.883200pt;}
.wsac{word-spacing:-0.880000pt;}
.ws65{word-spacing:-0.866211pt;}
.ws5d{word-spacing:-0.848289pt;}
.ws9d{word-spacing:-0.836341pt;}
.wsb5{word-spacing:-0.821333pt;}
.wsa1{word-spacing:-0.776603pt;}
.ws63{word-spacing:-0.758681pt;}
.ws8d{word-spacing:-0.732160pt;}
.ws62{word-spacing:-0.468949pt;}
.ws9e{word-spacing:-0.448040pt;}
.ws93{word-spacing:-0.412160pt;}
.wsb6{word-spacing:-0.410667pt;}
.ws92{word-spacing:-0.385920pt;}
.wsb4{word-spacing:-0.352000pt;}
.ws78{word-spacing:-0.294400pt;}
.ws2e{word-spacing:-0.293333pt;}
.ws90{word-spacing:-0.281600pt;}
.ws7d{word-spacing:-0.235520pt;}
.ws71{word-spacing:-0.214400pt;}
.wsab{word-spacing:-0.176000pt;}
.ws9f{word-spacing:-0.119477pt;}
.wsbf{word-spacing:-0.117333pt;}
.ws8c{word-spacing:-0.112640pt;}
.wsa0{word-spacing:-0.059739pt;}
.ws80{word-spacing:-0.058880pt;}
.ws7{word-spacing:-0.053333pt;}
.ws66{word-spacing:-0.050778pt;}
.wsc{word-spacing:-0.048000pt;}
.ws28{word-spacing:-0.042880pt;}
.ws56{word-spacing:-0.038830pt;}
.ws2{word-spacing:0.000000pt;}
.wsa2{word-spacing:0.059739pt;}
.ws79{word-spacing:0.117760pt;}
.ws72{word-spacing:0.171520pt;}
.ws1a{word-spacing:0.172656pt;}
.wsce{word-spacing:0.176000pt;}
.ws8e{word-spacing:0.225280pt;}
.ws77{word-spacing:0.235520pt;}
.ws91{word-spacing:0.257280pt;}
.ws74{word-spacing:0.294400pt;}
.ws67{word-spacing:0.337523pt;}
.ws8{word-spacing:0.352000pt;}
.ws7e{word-spacing:0.353280pt;}
.ws7c{word-spacing:0.412160pt;}
.ws70{word-spacing:0.428800pt;}
.wsa3{word-spacing:0.477909pt;}
.wsc2{word-spacing:0.645333pt;}
.ws8b{word-spacing:0.647680pt;}
.ws99{word-spacing:0.706560pt;}
.wsa8{word-spacing:0.762667pt;}
.ws81{word-spacing:0.765440pt;}
.ws30{word-spacing:0.821333pt;}
.wsb0{word-spacing:0.938667pt;}
.ws2b{word-spacing:0.997333pt;}
.wsa{word-spacing:1.056000pt;}
.wsb2{word-spacing:1.104000pt;}
.wsb8{word-spacing:1.114667pt;}
.wsb1{word-spacing:1.290667pt;}
.ws24{word-spacing:1.344000pt;}
.ws16{word-spacing:1.349333pt;}
.ws25{word-spacing:1.466667pt;}
.ws14{word-spacing:1.701333pt;}
.ws2c{word-spacing:1.818667pt;}
.wsd3{word-spacing:1.872000pt;}
.wscd{word-spacing:1.936000pt;}
.ws31{word-spacing:1.994667pt;}
.ws12{word-spacing:2.170667pt;}
.ws9a{word-spacing:2.178560pt;}
.wscf{word-spacing:2.229333pt;}
.ws2f{word-spacing:2.288000pt;}
.ws38{word-spacing:2.405333pt;}
.ws22{word-spacing:2.462400pt;}
.ws20{word-spacing:2.505600pt;}
.wsd{word-spacing:2.698667pt;}
.ws37{word-spacing:2.816000pt;}
.ws9c{word-spacing:2.826240pt;}
.wsc0{word-spacing:2.874667pt;}
.ws98{word-spacing:2.944000pt;}
.ws9b{word-spacing:3.120640pt;}
.ws11{word-spacing:3.285333pt;}
.ws35{word-spacing:3.344000pt;}
.wsbe{word-spacing:3.578667pt;}
.ws88{word-spacing:3.591680pt;}
.wscc{word-spacing:3.989333pt;}
.ws1e{word-spacing:4.048000pt;}
.wsa7{word-spacing:4.576000pt;}
.wsbb{word-spacing:4.752000pt;}
.ws13{word-spacing:4.810667pt;}
.ws1d{word-spacing:5.045333pt;}
.ws1f{word-spacing:5.104000pt;}
.wsc8{word-spacing:5.397333pt;}
.ws94{word-spacing:5.534720pt;}
.ws95{word-spacing:5.593600pt;}
.wsca{word-spacing:5.632000pt;}
.wsc7{word-spacing:5.690667pt;}
.ws6b{word-spacing:5.920000pt;}
.wsf{word-spacing:6.101333pt;}
.wsb{word-spacing:6.218667pt;}
.ws6f{word-spacing:6.346667pt;}
.wsa9{word-spacing:6.453333pt;}
.wsaa{word-spacing:6.570667pt;}
.wsd1{word-spacing:7.157333pt;}
.wsb3{word-spacing:7.978667pt;}
.wse{word-spacing:8.037333pt;}
.ws8a{word-spacing:8.066560pt;}
.ws2d{word-spacing:8.154667pt;}
.ws89{word-spacing:8.714240pt;}
.ws36{word-spacing:9.034667pt;}
.ws96{word-spacing:9.361920pt;}
.ws97{word-spacing:9.538560pt;}
.wsd2{word-spacing:10.325333pt;}
.ws85{word-spacing:11.304960pt;}
.ws6e{word-spacing:11.498667pt;}
.ws17{word-spacing:11.557333pt;}
.ws21{word-spacing:12.052800pt;}
.ws6c{word-spacing:13.893333pt;}
.ws4{word-spacing:14.666667pt;}
.ws87{word-spacing:15.779840pt;}
.ws7a{word-spacing:16.276480pt;}
.ws86{word-spacing:16.368640pt;}
.ws76{word-spacing:17.075200pt;}
.ws7b{word-spacing:17.546240pt;}
.ws75{word-spacing:17.664000pt;}
.ws73{word-spacing:17.840640pt;}
.ws6a{word-spacing:18.800000pt;}
.ws39{word-spacing:33.212267pt;}
.ws43{word-spacing:36.899200pt;}
.wsc6{word-spacing:38.208000pt;}
.ws42{word-spacing:38.642667pt;}
.ws4a{word-spacing:40.269333pt;}
.ws45{word-spacing:53.384000pt;}
.ws46{word-spacing:53.644267pt;}
.ws48{word-spacing:53.824000pt;}
.ws4b{word-spacing:54.468267pt;}
.ws47{word-spacing:54.610133pt;}
.ws3c{word-spacing:59.251200pt;}
.ws3b{word-spacing:74.968533pt;}
.ws3d{word-spacing:108.251200pt;}
.wsa5{word-spacing:125.433762pt;}
.ws3e{word-spacing:130.904533pt;}
.wsc1{word-spacing:135.500800pt;}
.wsc3{word-spacing:137.430400pt;}
.wsc9{word-spacing:139.231360pt;}
.wscb{word-spacing:139.874560pt;}
.wsc4{word-spacing:140.303360pt;}
.ws29{word-spacing:175.079040pt;}
.ws27{word-spacing:194.889600pt;}
.ws26{word-spacing:204.537600pt;}
.ws2a{word-spacing:234.949760pt;}
.wsad{word-spacing:240.299520pt;}
.wsae{word-spacing:240.342400pt;}
.wsaf{word-spacing:240.686720pt;}
.ws1b{word-spacing:274.035733pt;}
.ws49{word-spacing:371.936000pt;}
.ws44{word-spacing:591.181333pt;}
.ws40{word-spacing:832.611733pt;}
._3d{margin-left:-310.415360pt;}
._13{margin-left:-14.542827pt;}
._d{margin-left:-13.068800pt;}
._8{margin-left:-12.072000pt;}
._62{margin-left:-11.148267pt;}
._61{margin-left:-10.062400pt;}
._e{margin-left:-8.944533pt;}
._20{margin-left:-7.545600pt;}
._9{margin-left:-6.396053pt;}
._4{margin-left:-4.669867pt;}
._2{margin-left:-3.740800pt;}
._0{margin-left:-2.594880pt;}
._1{margin-left:-1.090133pt;}
._f{width:1.021547pt;}
._3{width:1.918933pt;}
._11{width:2.870400pt;}
._b{width:4.357867pt;}
._c{width:5.491200pt;}
._7{width:6.794667pt;}
._6{width:8.264533pt;}
._12{width:9.384533pt;}
._10{width:10.344533pt;}
._a{width:11.477867pt;}
._5{width:12.645867pt;}
._50{width:13.566933pt;}
._1b{width:14.666133pt;}
._52{width:16.213333pt;}
._1a{width:17.179733pt;}
._2d{width:18.878400pt;}
._28{width:22.497280pt;}
._3a{width:23.774507pt;}
._2e{width:25.879680pt;}
._4f{width:27.306667pt;}
._60{width:28.320000pt;}
._3b{width:32.198827pt;}
._38{width:35.786667pt;}
._4e{width:37.120000pt;}
._5c{width:38.133333pt;}
._1f{width:41.088000pt;}
._39{width:42.224000pt;}
._51{width:43.690667pt;}
._5f{width:44.805333pt;}
._3c{width:46.181760pt;}
._21{width:47.733333pt;}
._23{width:51.158933pt;}
._37{width:53.018667pt;}
._44{width:54.920000pt;}
._57{width:56.304000pt;}
._24{width:57.214933pt;}
._1e{width:60.565333pt;}
._30{width:62.078400pt;}
._35{width:63.813333pt;}
._41{width:65.117867pt;}
._1d{width:66.864000pt;}
._31{width:75.997867pt;}
._1c{width:77.658667pt;}
._2c{width:81.970880pt;}
._56{width:83.374080pt;}
._5b{width:95.385600pt;}
._25{width:98.366400pt;}
._27{width:101.055147pt;}
._2f{width:104.691200pt;}
._42{width:106.261333pt;}
._33{width:110.619520pt;}
._32{width:115.115200pt;}
._3e{width:116.237867pt;}
._3f{width:118.131200pt;}
._40{width:126.051200pt;}
._29{width:129.902613pt;}
._4b{width:138.918944pt;}
._34{width:151.322734pt;}
._54{width:156.040320pt;}
._58{width:157.423253pt;}
._5e{width:159.813760pt;}
._5a{width:160.842880pt;}
._53{width:166.074240pt;}
._55{width:168.636267pt;}
._5d{width:169.804800pt;}
._59{width:170.791040pt;}
._4c{width:180.840802pt;}
._4a{width:211.772469pt;}
._49{width:217.215750pt;}
._36{width:239.199360pt;}
._4d{width:244.936320pt;}
._22{width:263.570667pt;}
._45{width:270.821227pt;}
._16{width:288.382400pt;}
._17{width:370.379733pt;}
._46{width:390.106987pt;}
._18{width:400.053333pt;}
._19{width:401.759467pt;}
._43{width:419.615467pt;}
._14{width:433.909333pt;}
._15{width:437.640533pt;}
._48{width:757.752058pt;}
._47{width:868.129870pt;}
._2b{width:942.883200pt;}
._26{width:962.107200pt;}
._2a{width:981.288000pt;}
.fs74{font-size:21.120000pt;}
.fs72{font-size:26.666667pt;}
.fs77{font-size:29.728000pt;}
.fs76{font-size:29.869333pt;}
.fs6b{font-size:34.202667pt;}
.fs6c{font-size:34.531200pt;}
.fs79{font-size:34.734933pt;}
.fs75{font-size:37.120000pt;}
.fs71{font-size:37.333333pt;}
.fs78{font-size:38.882133pt;}
.fs6e{font-size:42.880000pt;}
.fs6d{font-size:43.200000pt;}
.fs3e{font-size:45.967503pt;}
.fs2a{font-size:45.967547pt;}
.fs35{font-size:45.967646pt;}
.fs45{font-size:45.967693pt;}
.fs25{font-size:45.967694pt;}
.fs15{font-size:45.967702pt;}
.fs30{font-size:45.967714pt;}
.fs4c{font-size:45.967720pt;}
.fs8{font-size:45.967737pt;}
.fs44{font-size:45.967777pt;}
.fs66{font-size:45.967784pt;}
.fs38{font-size:45.967785pt;}
.fs1d{font-size:45.967815pt;}
.fs18{font-size:45.967818pt;}
.fs5a{font-size:45.967819pt;}
.fs69{font-size:45.967849pt;}
.fs47{font-size:45.967853pt;}
.fs37{font-size:45.967868pt;}
.fs39{font-size:45.967908pt;}
.fs1c{font-size:45.967911pt;}
.fs49{font-size:45.967917pt;}
.fs62{font-size:45.967918pt;}
.fs65{font-size:45.967922pt;}
.fs46{font-size:45.967932pt;}
.fs55{font-size:45.967936pt;}
.fs41{font-size:45.967948pt;}
.fs48{font-size:45.967957pt;}
.fsb{font-size:45.967970pt;}
.fs27{font-size:45.967976pt;}
.fs36{font-size:45.967976pt;}
.fs23{font-size:45.967984pt;}
.fs11{font-size:45.967992pt;}
.fs31{font-size:45.967994pt;}
.fs32{font-size:45.968009pt;}
.fs1e{font-size:45.968013pt;}
.fs64{font-size:45.968023pt;}
.fs51{font-size:45.968024pt;}
.fs57{font-size:45.968031pt;}
.fs1b{font-size:45.968036pt;}
.fs4f{font-size:45.968042pt;}
.fs4b{font-size:45.968049pt;}
.fs21{font-size:45.968057pt;}
.fsd{font-size:45.968076pt;}
.fs4e{font-size:45.968078pt;}
.fs43{font-size:45.968079pt;}
.fs2b{font-size:45.968087pt;}
.fs3d{font-size:45.968102pt;}
.fs3c{font-size:45.968108pt;}
.fs2e{font-size:45.968117pt;}
.fs2d{font-size:45.968119pt;}
.fs3b{font-size:45.968123pt;}
.fs12{font-size:45.968135pt;}
.fs33{font-size:45.968137pt;}
.fs2c{font-size:45.968141pt;}
.fs5e{font-size:45.968144pt;}
.fs68{font-size:45.968154pt;}
.fs1a{font-size:45.968160pt;}
.fs3a{font-size:45.968161pt;}
.fs5d{font-size:45.968170pt;}
.fsc{font-size:45.968171pt;}
.fs34{font-size:45.968172pt;}
.fse{font-size:45.968181pt;}
.fs4a{font-size:45.968192pt;}
.fs42{font-size:45.968197pt;}
.fs13{font-size:45.968200pt;}
.fs5b{font-size:45.968207pt;}
.fs50{font-size:45.968222pt;}
.fsa{font-size:45.968224pt;}
.fs20{font-size:45.968226pt;}
.fs5c{font-size:45.968231pt;}
.fs29{font-size:45.968233pt;}
.fs5f{font-size:45.968235pt;}
.fs3f{font-size:45.968250pt;}
.fs24{font-size:45.968257pt;}
.fs40{font-size:45.968266pt;}
.fs59{font-size:45.968297pt;}
.fs61{font-size:45.968298pt;}
.fs19{font-size:45.968322pt;}
.fs54{font-size:45.968336pt;}
.fs2f{font-size:45.968352pt;}
.fs63{font-size:45.968354pt;}
.fs4d{font-size:45.968371pt;}
.fs67{font-size:45.968376pt;}
.fs7{font-size:45.968393pt;}
.fs14{font-size:45.968394pt;}
.fs58{font-size:45.968396pt;}
.fs9{font-size:45.968402pt;}
.fs1f{font-size:45.968412pt;}
.fs22{font-size:45.968439pt;}
.fs26{font-size:45.968441pt;}
.fs17{font-size:45.968498pt;}
.fs52{font-size:45.968515pt;}
.fs60{font-size:45.968559pt;}
.fs16{font-size:45.968564pt;}
.fs10{font-size:45.968569pt;}
.fs56{font-size:45.968584pt;}
.fsf{font-size:45.968633pt;}
.fs53{font-size:45.968683pt;}
.fs28{font-size:45.968691pt;}
.fs7a{font-size:47.695467pt;}
.fs3{font-size:48.000000pt;}
.fs6f{font-size:53.120000pt;}
.fs6{font-size:53.333333pt;}
.fs73{font-size:56.320000pt;}
.fs4{font-size:58.666667pt;}
.fs70{font-size:58.880000pt;}
.fs6a{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:89.600000pt;}
.fs5{font-size:96.000000pt;}
.fs0{font-size:128.000000pt;}
.y2a8{bottom:-352.766240pt;}
.y2bd{bottom:-158.499547pt;}
.y2bc{bottom:-135.624667pt;}
.y2bb{bottom:-112.749787pt;}
.y2ba{bottom:-90.036827pt;}
.y2b9{bottom:-67.323867pt;}
.y2b8{bottom:-28.923867pt;}
.y2b7{bottom:-21.727707pt;}
.y2b6{bottom:-3.803867pt;}
.y0{bottom:0.000000pt;}
.y2f4{bottom:2.471333pt;}
.y307{bottom:2.472533pt;}
.y2de{bottom:8.962133pt;}
.y2ee{bottom:9.218267pt;}
.y2dd{bottom:20.114667pt;}
.y2ed{bottom:21.374800pt;}
.y2cd{bottom:30.853733pt;}
.y2ec{bottom:32.901733pt;}
.y2c5{bottom:40.205333pt;}
.y2e5{bottom:42.798267pt;}
.y2c4{bottom:49.166133pt;}
.y2e4{bottom:51.759067pt;}
.y434{bottom:54.835333pt;}
.y435{bottom:54.908267pt;}
.y443{bottom:54.923200pt;}
.y444{bottom:54.985733pt;}
.y6{bottom:56.692933pt;}
.y2c3{bottom:58.168533pt;}
.y2eb{bottom:62.207333pt;}
.y2d2{bottom:69.015600pt;}
.y2d1{bottom:77.976400pt;}
.y2e3{bottom:81.536533pt;}
.y2cf{bottom:88.966400pt;}
.y2d0{bottom:99.459733pt;}
.y2e9{bottom:106.253333pt;}
.y2dc{bottom:109.885200pt;}
.y2ce{bottom:113.164933pt;}
.y2e8{bottom:115.214133pt;}
.y2db{bottom:118.846000pt;}
.y2da{bottom:128.498667pt;}
.y37a{bottom:131.811067pt;}
.y2d6{bottom:131.962267pt;}
.y138{bottom:132.283333pt;}
.y9{bottom:132.283467pt;}
.y20d{bottom:132.283600pt;}
.y541{bottom:133.795333pt;}
.y26f{bottom:135.645467pt;}
.y2cc{bottom:136.844267pt;}
.y15e{bottom:137.237733pt;}
.y2d9{bottom:137.459467pt;}
.y109{bottom:138.315333pt;}
.y3b{bottom:139.699200pt;}
.y2d5{bottom:140.923067pt;}
.y2ea{bottom:141.322933pt;}
.y617{bottom:143.111067pt;}
.y652{bottom:143.680533pt;}
.y2cb{bottom:145.805067pt;}
.y379{bottom:146.211067pt;}
.y2d8{bottom:146.420267pt;}
.y137{bottom:146.683333pt;}
.y1c3{bottom:146.683467pt;}
.y20c{bottom:146.683600pt;}
.y540{bottom:148.195333pt;}
.y691{bottom:148.640667pt;}
.y2d4{bottom:149.883867pt;}
.y15d{bottom:151.637733pt;}
.y396{bottom:153.813333pt;}
.y2d7{bottom:155.381067pt;}
.y26e{bottom:157.645467pt;}
.y318{bottom:159.546800pt;}
.y108{bottom:160.315333pt;}
.y136{bottom:161.083333pt;}
.y226{bottom:161.083467pt;}
.y463{bottom:161.083600pt;}
.y3b4{bottom:161.270667pt;}
.y3a{bottom:161.699200pt;}
.y442{bottom:162.105333pt;}
.y433{bottom:162.185333pt;}
.y616{bottom:165.111067pt;}
.y651{bottom:165.680533pt;}
.y2ca{bottom:165.911867pt;}
.y690{bottom:167.307333pt;}
.y2e7{bottom:167.714267pt;}
.y5{bottom:169.401600pt;}
.y317{bottom:173.946800pt;}
.y3d1{bottom:174.511600pt;}
.y322{bottom:174.750629pt;}
.y569{bottom:175.458133pt;}
.y135{bottom:175.483333pt;}
.y225{bottom:175.483467pt;}
.y462{bottom:175.483600pt;}
.y599{bottom:175.718667pt;}
.y395{bottom:175.813333pt;}
.y2d3{bottom:176.961067pt;}
.y2c9{bottom:177.138667pt;}
.y4c8{bottom:177.591067pt;}
.y39{bottom:177.699200pt;}
.y49f{bottom:178.973733pt;}
.y1ac{bottom:181.100933pt;}
.y35b{bottom:181.557067pt;}
.y446{bottom:181.601333pt;}
.y437{bottom:181.614400pt;}
.y107{bottom:182.315333pt;}
.y68f{bottom:185.974000pt;}
.y40e{bottom:188.200667pt;}
.y2c8{bottom:188.432133pt;}
.y224{bottom:189.883467pt;}
.y3b3{bottom:190.829733pt;}
.y26d{bottom:190.984000pt;}
.y4d4{bottom:191.027067pt;}
.y5a3{bottom:191.037600pt;}
.y187{bottom:191.556291pt;}
.y2e6{bottom:192.100133pt;}
.y134{bottom:192.752000pt;}
.y1c5{bottom:192.972667pt;}
.y38{bottom:193.699200pt;}
.y5c2{bottom:193.934667pt;}
.y4f6{bottom:193.939867pt;}
.y319{bottom:196.087200pt;}
.y323{bottom:196.618800pt;}
.y359{bottom:198.171733pt;}
.y2c7{bottom:199.467867pt;}
.y615{bottom:202.229067pt;}
.y2a6{bottom:202.580000pt;}
.y650{bottom:202.798667pt;}
.y1ab{bottom:203.100933pt;}
.y3d0{bottom:204.070667pt;}
.y223{bottom:204.283467pt;}
.y106{bottom:204.315333pt;}
.y68e{bottom:204.640667pt;}
.y4{bottom:206.519733pt;}
.y1fe{bottom:206.988133pt;}
.y1c4{bottom:207.372667pt;}
.y567{bottom:207.729067pt;}
.y597{bottom:207.999733pt;}
.y394{bottom:209.152000pt;}
.y2f0{bottom:209.605333pt;}
.y37{bottom:209.699200pt;}
.y7f{bottom:209.709200pt;}
.y4c7{bottom:209.851333pt;}
.y2e2{bottom:209.958400pt;}
.y5c0{bottom:210.507467pt;}
.y4f4{bottom:210.512667pt;}
.y2c6{bottom:210.618133pt;}
.y86{bottom:210.834800pt;}
.y80{bottom:210.886133pt;}
.y85{bottom:211.208133pt;}
.y49d{bottom:211.255067pt;}
.y84{bottom:211.754533pt;}
.y81{bottom:211.766533pt;}
.y83{bottom:211.864133pt;}
.y82{bottom:211.954533pt;}
.y3b2{bottom:212.829733pt;}
.y34f{bottom:214.542427pt;}
.y31a{bottom:216.704451pt;}
.y324{bottom:217.242667pt;}
.y26c{bottom:218.322533pt;}
.y222{bottom:218.683467pt;}
.y2e1{bottom:218.919200pt;}
.y42a{bottom:220.406133pt;}
.y439{bottom:220.413733pt;}
.y2c2{bottom:220.812933pt;}
.y182{bottom:221.822887pt;}
.y68d{bottom:223.307333pt;}
.y4d2{bottom:223.308400pt;}
.y5a2{bottom:223.318800pt;}
.y565{bottom:223.741413pt;}
.y306{bottom:223.939344pt;}
.y595{bottom:224.033467pt;}
.y64f{bottom:224.798667pt;}
.y1aa{bottom:225.100933pt;}
.y33f{bottom:225.417067pt;}
.y4c5{bottom:225.799173pt;}
.y3cf{bottom:226.070667pt;}
.y133{bottom:226.090533pt;}
.y5b5{bottom:226.424133pt;}
.y4e9{bottom:226.429333pt;}
.y49b{bottom:227.288853pt;}
.y2e0{bottom:227.880000pt;}
.y36{bottom:228.365867pt;}
.y1fd{bottom:228.988133pt;}
.y2c1{bottom:229.773733pt;}
.y34a{bottom:229.786267pt;}
.y2f5{bottom:229.923867pt;}
.y393{bottom:231.152000pt;}
.y614{bottom:231.167733pt;}
.y305{bottom:232.857744pt;}
.y3b1{bottom:234.829733pt;}
.y55a{bottom:236.187333pt;}
.y588{bottom:236.468667pt;}
.y31b{bottom:237.321702pt;}
.y325{bottom:237.857850pt;}
.y4b8{bottom:238.320133pt;}
.y2df{bottom:238.324133pt;}
.y2c0{bottom:239.225600pt;}
.y4d0{bottom:239.310027pt;}
.y5a1{bottom:239.330960pt;}
.y490{bottom:239.713333pt;}
.y33e{bottom:239.817067pt;}
.y26b{bottom:240.322533pt;}
.y105{bottom:241.433333pt;}
.y68c{bottom:241.974000pt;}
.y5b6{bottom:242.975813pt;}
.y4ea{bottom:242.981013pt;}
.y8{bottom:243.637733pt;}
.y3{bottom:243.637867pt;}
.y35{bottom:244.365867pt;}
.y304{bottom:244.726648pt;}
.y181{bottom:244.837932pt;}
.y221{bottom:244.988133pt;}
.y350{bottom:245.480347pt;}
.y2f3{bottom:247.769096pt;}
.y34b{bottom:248.020987pt;}
.y132{bottom:248.090533pt;}
.y2bf{bottom:249.641867pt;}
.y2f1{bottom:251.273600pt;}
.y4c9{bottom:251.766667pt;}
.y59a{bottom:251.787600pt;}
.y3f2{bottom:252.490667pt;}
.y613{bottom:253.167733pt;}
.y631{bottom:253.753067pt;}
.y42b{bottom:254.677973pt;}
.y43a{bottom:254.685573pt;}
.y11c{bottom:255.702133pt;}
.y309{bottom:256.595200pt;}
.y3b0{bottom:256.829733pt;}
.y1d0{bottom:257.677733pt;}
.y31c{bottom:257.948674pt;}
.y589{bottom:257.951547pt;}
.y1a9{bottom:258.439467pt;}
.y326{bottom:258.464349pt;}
.y3ce{bottom:259.409200pt;}
.y4b9{bottom:259.502853pt;}
.y5b7{bottom:259.516773pt;}
.y4eb{bottom:259.521973pt;}
.y34{bottom:260.365867pt;}
.y68b{bottom:260.640667pt;}
.y2be{bottom:261.271200pt;}
.y64e{bottom:261.916800pt;}
.y26a{bottom:262.322533pt;}
.y1fc{bottom:262.326800pt;}
.y55b{bottom:262.365573pt;}
.y104{bottom:263.433333pt;}
.y392{bottom:264.490533pt;}
.y491{bottom:264.862453pt;}
.y308{bottom:265.513600pt;}
.y180{bottom:267.852977pt;}
.y2fe{bottom:270.725547pt;}
.y3f1{bottom:274.490667pt;}
.y612{bottom:275.167733pt;}
.y1cf{bottom:275.670533pt;}
.y630{bottom:275.753067pt;}
.y5b8{bottom:276.068453pt;}
.y4ec{bottom:276.073653pt;}
.y33{bottom:276.365867pt;}
.y351{bottom:276.407547pt;}
.y303{bottom:277.375424pt;}
.y131{bottom:277.649600pt;}
.y11b{bottom:277.702133pt;}
.y31d{bottom:278.556205pt;}
.y327{bottom:279.088215pt;}
.y68a{bottom:279.307333pt;}
.y58a{bottom:279.434427pt;}
.y4ba{bottom:280.674853pt;}
.y7{bottom:280.755867pt;}
.y665{bottom:280.911600pt;}
.y220{bottom:282.106267pt;}
.y64d{bottom:283.916800pt;}
.y269{bottom:284.322533pt;}
.y2b5{bottom:284.836133pt;}
.y103{bottom:285.433467pt;}
.y1fb{bottom:285.885867pt;}
.y3af{bottom:286.388800pt;}
.y391{bottom:288.049600pt;}
.y55c{bottom:288.543813pt;}
.y30a{bottom:288.597392pt;}
.y42c{bottom:288.949813pt;}
.y43b{bottom:288.957413pt;}
.y492{bottom:290.022293pt;}
.y5c1{bottom:290.768000pt;}
.y4f5{bottom:290.773200pt;}
.y17f{bottom:290.868022pt;}
.y34d{bottom:290.868827pt;}
.y1a8{bottom:291.778133pt;}
.y15c{bottom:291.942667pt;}
.y4ed{bottom:292.603893pt;}
.y5b9{bottom:292.620133pt;}
.y3cd{bottom:292.747867pt;}
.y1ce{bottom:293.090933pt;}
.y32{bottom:295.032533pt;}
.y4ca{bottom:295.933067pt;}
.y59b{bottom:295.954000pt;}
.y3f0{bottom:296.490667pt;}
.y611{bottom:297.167733pt;}
.y2fd{bottom:297.584795pt;}
.y62f{bottom:297.753067pt;}
.y689{bottom:297.974000pt;}
.y31e{bottom:299.183177pt;}
.y130{bottom:299.649600pt;}
.y328{bottom:299.694715pt;}
.y11a{bottom:299.702133pt;}
.y30e{bottom:300.466296pt;}
.y58b{bottom:300.938747pt;}
.y4bb{bottom:301.846853pt;}
.y1d3{bottom:302.119733pt;}
.y30d{bottom:304.925496pt;}
.y64c{bottom:305.916800pt;}
.y268{bottom:306.322533pt;}
.y2fc{bottom:306.503195pt;}
.y352{bottom:307.334747pt;}
.y102{bottom:307.433467pt;}
.y1fa{bottom:307.885733pt;}
.y3ae{bottom:308.388800pt;}
.y4ee{bottom:309.155573pt;}
.y5ba{bottom:309.161093pt;}
.y390{bottom:310.049600pt;}
.y1cd{bottom:310.489733pt;}
.y31{bottom:311.032533pt;}
.y1a7{bottom:313.778133pt;}
.y15b{bottom:313.942667pt;}
.y55d{bottom:314.711333pt;}
.y21f{bottom:314.824400pt;}
.y493{bottom:315.171413pt;}
.y3cc{bottom:316.306933pt;}
.y688{bottom:316.640800pt;}
.y2{bottom:317.874000pt;}
.y664{bottom:318.029733pt;}
.y610{bottom:319.167733pt;}
.y62e{bottom:319.753067pt;}
.y31f{bottom:319.790707pt;}
.y329{bottom:320.318581pt;}
.y312{bottom:321.342784pt;}
.y12f{bottom:321.649600pt;}
.y58c{bottom:322.432347pt;}
.y4bc{bottom:323.029573pt;}
.y42d{bottom:323.221653pt;}
.y43c{bottom:323.229253pt;}
.y5bb{bottom:325.702053pt;}
.y4ef{bottom:325.707253pt;}
.y315{bottom:325.801984pt;}
.y3ef{bottom:326.049600pt;}
.y10b{bottom:326.562133pt;}
.y30{bottom:327.032533pt;}
.y79{bottom:327.825333pt;}
.y1cc{bottom:327.888533pt;}
.y1f9{bottom:329.885733pt;}
.y311{bottom:330.261184pt;}
.y38f{bottom:332.049600pt;}
.y2fb{bottom:333.362443pt;}
.y53f{bottom:333.571600pt;}
.y49c{bottom:334.473733pt;}
.y314{bottom:334.720384pt;}
.y687{bottom:335.307467pt;}
.y2b4{bottom:335.613467pt;}
.y1a6{bottom:335.778133pt;}
.y15a{bottom:335.942667pt;}
.y566{bottom:335.958133pt;}
.y35a{bottom:336.223733pt;}
.y21e{bottom:336.824400pt;}
.y1d2{bottom:336.917333pt;}
.y3ad{bottom:337.947867pt;}
.y353{bottom:338.272667pt;}
.y310{bottom:339.179584pt;}
.y267{bottom:339.661067pt;}
.y4cb{bottom:340.120907pt;}
.y59c{bottom:340.131120pt;}
.y494{bottom:340.331253pt;}
.y320{bottom:340.407958pt;}
.y55e{bottom:340.868133pt;}
.y32a{bottom:340.925081pt;}
.y10a{bottom:340.962133pt;}
.y5bc{bottom:342.253733pt;}
.y4f0{bottom:342.258933pt;}
.y2f{bottom:343.032533pt;}
.y64b{bottom:343.034933pt;}
.y313{bottom:343.638784pt;}
.y58d{bottom:343.925947pt;}
.y186{bottom:344.071968pt;}
.y4bd{bottom:344.201573pt;}
.y101{bottom:344.551467pt;}
.y1cb{bottom:345.298133pt;}
.y3cb{bottom:345.866000pt;}
.y596{bottom:347.072800pt;}
.y4c6{bottom:347.122267pt;}
.y3ee{bottom:348.049600pt;}
.y30f{bottom:348.097984pt;}
.y60f{bottom:348.726667pt;}
.y34e{bottom:349.785947pt;}
.y78{bottom:349.825333pt;}
.y436{bottom:350.385200pt;}
.y445{bottom:350.392933pt;}
.y1e7{bottom:351.239333pt;}
.y1f8{bottom:351.885733pt;}
.y686{bottom:353.974133pt;}
.y38e{bottom:354.049600pt;}
.y12e{bottom:354.988133pt;}
.y1{bottom:354.992133pt;}
.y663{bottom:355.147867pt;}
.y53e{bottom:355.571600pt;}
.y62d{bottom:356.871200pt;}
.y42e{bottom:357.493493pt;}
.y43d{bottom:357.501093pt;}
.y159{bottom:357.942667pt;}
.y2b3{bottom:358.488347pt;}
.y5bd{bottom:358.805413pt;}
.y4f1{bottom:358.810613pt;}
.y21d{bottom:358.824400pt;}
.y302{bottom:359.402408pt;}
.y321{bottom:361.025210pt;}
.y2fa{bottom:361.425675pt;}
.y32b{bottom:361.548947pt;}
.y2e{bottom:361.699200pt;}
.y1ca{bottom:362.696933pt;}
.y64a{bottom:365.034933pt;}
.y3ac{bottom:365.286400pt;}
.y4be{bottom:365.384293pt;}
.y58e{bottom:365.419547pt;}
.y495{bottom:365.469653pt;}
.y1e6{bottom:365.639333pt;}
.y4d1{bottom:365.975067pt;}
.y266{bottom:366.999733pt;}
.y55f{bottom:367.046373pt;}
.y3ca{bottom:367.866000pt;}
.y1a5{bottom:369.116667pt;}
.y354{bottom:369.199867pt;}
.y30c{bottom:370.624376pt;}
.y60e{bottom:370.726667pt;}
.y1d1{bottom:371.704133pt;}
.y77{bottom:371.825333pt;}
.y685{bottom:372.640800pt;}
.y16e{bottom:374.329399pt;}
.y17e{bottom:374.329932pt;}
.y5be{bottom:375.346373pt;}
.y4f2{bottom:375.351573pt;}
.y53d{bottom:377.571600pt;}
.y158{bottom:379.942667pt;}
.y1c9{bottom:380.095733pt;}
.yf2{bottom:380.632000pt;}
.y21c{bottom:380.824400pt;}
.y2b2{bottom:381.201307pt;}
.y3ed{bottom:381.388267pt;}
.y1f7{bottom:381.444800pt;}
.y30b{bottom:381.839264pt;}
.y38d{bottom:383.608667pt;}
.y2d{bottom:383.699200pt;}
.y4cc{bottom:384.298027pt;}
.y59d{bottom:384.308240pt;}
.y2f9{bottom:384.383123pt;}
.y4bf{bottom:386.567013pt;}
.y58f{bottom:386.923867pt;}
.y12d{bottom:388.326800pt;}
.y265{bottom:388.999733pt;}
.y3c9{bottom:389.866000pt;}
.y496{bottom:390.640213pt;}
.y62c{bottom:391.189200pt;}
.y684{bottom:391.307467pt;}
.y42f{bottom:391.765333pt;}
.y43e{bottom:391.772933pt;}
.y5bf{bottom:391.898053pt;}
.y4f3{bottom:391.903253pt;}
.y662{bottom:392.266000pt;}
.y32c{bottom:392.366667pt;}
.y60d{bottom:392.726667pt;}
.y301{bottom:393.054504pt;}
.y560{bottom:393.213893pt;}
.y76{bottom:393.825333pt;}
.y3ab{bottom:394.225067pt;}
.yf1{bottom:395.032000pt;}
.y16d{bottom:397.344444pt;}
.y17d{bottom:397.344977pt;}
.y1c8{bottom:397.505333pt;}
.y2c{bottom:399.699200pt;}
.y355{bottom:400.127067pt;}
.y157{bottom:401.942667pt;}
.y649{bottom:402.153067pt;}
.y1f6{bottom:403.444800pt;}
.y2f8{bottom:403.527955pt;}
.y2b1{bottom:404.076187pt;}
.y300{bottom:404.269392pt;}
.y38c{bottom:405.608667pt;}
.y1a4{bottom:406.234800pt;}
.y53c{bottom:407.130667pt;}
.y4c0{bottom:407.728293pt;}
.y590{bottom:408.406747pt;}
.yf0{bottom:409.432000pt;}
.y683{bottom:409.974133pt;}
.y12c{bottom:410.326800pt;}
.y264{bottom:410.999733pt;}
.y3c8{bottom:411.866000pt;}
.y2f7{bottom:412.446355pt;}
.y1e4{bottom:412.855200pt;}
.y62b{bottom:413.189200pt;}
.y5c3{bottom:414.403333pt;}
.y4f7{bottom:414.408533pt;}
.y60c{bottom:414.726667pt;}
.y497{bottom:415.778613pt;}
.y75{bottom:415.825333pt;}
.y21b{bottom:417.942533pt;}
.y7e{bottom:418.354667pt;}
.y2b{bottom:418.365867pt;}
.y3ec{bottom:418.506400pt;}
.y561{bottom:419.392133pt;}
.y16c{bottom:420.359489pt;}
.y17c{bottom:420.360022pt;}
.y316{bottom:420.597144pt;}
.y2f6{bottom:421.364755pt;}
.y3aa{bottom:423.784000pt;}
.y156{bottom:423.942667pt;}
.y648{bottom:424.153067pt;}
.y1f5{bottom:425.444800pt;}
.y430{bottom:426.037173pt;}
.y43f{bottom:426.044773pt;}
.y2b0{bottom:426.789147pt;}
.y38b{bottom:427.608667pt;}
.y4cd{bottom:428.475147pt;}
.y59e{bottom:428.496080pt;}
.y682{bottom:428.640800pt;}
.y4c1{bottom:428.911013pt;}
.y53b{bottom:429.130667pt;}
.y661{bottom:429.384133pt;}
.y1e2{bottom:429.459333pt;}
.y591{bottom:429.911067pt;}
.y356{bottom:431.064987pt;}
.y263{bottom:432.999733pt;}
.y2a{bottom:434.365867pt;}
.y62a{bottom:435.189200pt;}
.y2f2{bottom:435.404800pt;}
.y60b{bottom:436.726667pt;}
.y2ff{bottom:436.925600pt;}
.y378{bottom:437.883067pt;}
.y1a3{bottom:439.573333pt;}
.y12b{bottom:439.885733pt;}
.y21a{bottom:439.942533pt;}
.y498{bottom:440.927733pt;}
.y3c7{bottom:441.425067pt;}
.y16b{bottom:443.374533pt;}
.y17b{bottom:443.375067pt;}
.y3e4{bottom:443.922533pt;}
.y562{bottom:445.559653pt;}
.y3a9{bottom:445.784000pt;}
.y1da{bottom:445.866960pt;}
.y155{bottom:445.942667pt;}
.y1c7{bottom:446.248933pt;}
.y681{bottom:447.307467pt;}
.y3eb{bottom:447.444933pt;}
.y2ef{bottom:448.142267pt;}
.y2af{bottom:449.502107pt;}
.y38a{bottom:449.608667pt;}
.y4c2{bottom:450.093733pt;}
.y29{bottom:450.365867pt;}
.y592{bottom:451.404667pt;}
.y74{bottom:452.943467pt;}
.y1c2{bottom:454.383467pt;}
.y262{bottom:454.999733pt;}
.y1f4{bottom:455.003867pt;}
.y629{bottom:457.189200pt;}
.y53a{bottom:458.689600pt;}
.y1d6{bottom:459.074000pt;}
.y377{bottom:459.883067pt;}
.y440{bottom:460.295173pt;}
.y431{bottom:460.309013pt;}
.y1c6{bottom:460.648933pt;}
.y647{bottom:461.271067pt;}
.y1a2{bottom:461.573333pt;}
.y12a{bottom:461.885733pt;}
.y219{bottom:461.942533pt;}
.y357{bottom:461.981467pt;}
.y3e3{bottom:465.922533pt;}
.y680{bottom:465.974133pt;}
.y499{bottom:466.087573pt;}
.y660{bottom:466.502133pt;}
.y28{bottom:469.032533pt;}
.y3ea{bottom:469.444933pt;}
.y523{bottom:469.525867pt;}
.y5ef{bottom:469.531067pt;}
.y505{bottom:469.583200pt;}
.y5d1{bottom:469.588400pt;}
.y60a{bottom:470.065333pt;}
.y4c3{bottom:471.276453pt;}
.y563{bottom:471.716453pt;}
.y2ae{bottom:472.215067pt;}
.y4ce{bottom:472.662987pt;}
.y59f{bottom:472.673200pt;}
.y593{bottom:472.898267pt;}
.y34c{bottom:473.805627pt;}
.y3c6{bottom:474.763600pt;}
.y73{bottom:474.943467pt;}
.y3a8{bottom:475.343067pt;}
.y1c1{bottom:476.383467pt;}
.y1f3{bottom:477.003867pt;}
.y154{bottom:479.281200pt;}
.y47d{bottom:480.162933pt;}
.y539{bottom:480.689600pt;}
.y389{bottom:482.947200pt;}
.y646{bottom:483.271067pt;}
.y129{bottom:483.885733pt;}
.y218{bottom:483.942533pt;}
.y549{bottom:484.562933pt;}
.y67f{bottom:484.640800pt;}
.y27{bottom:485.032533pt;}
.y1db{bottom:485.627440pt;}
.y521{bottom:486.098800pt;}
.y5ed{bottom:486.104000pt;}
.y503{bottom:486.156000pt;}
.y5cf{bottom:486.161067pt;}
.y188{bottom:486.470004pt;}
.y261{bottom:488.338267pt;}
.y461{bottom:489.457867pt;}
.y49a{bottom:491.236693pt;}
.y3e9{bottom:491.444933pt;}
.y609{bottom:492.065333pt;}
.y4c4{bottom:492.459173pt;}
.y358{bottom:492.908667pt;}
.y628{bottom:494.307333pt;}
.y594{bottom:494.391867pt;}
.y441{bottom:494.567013pt;}
.y432{bottom:494.580853pt;}
.y33b{bottom:494.615600pt;}
.y1a1{bottom:494.911867pt;}
.y2ad{bottom:495.089947pt;}
.y291{bottom:495.494933pt;}
.y1d7{bottom:496.808400pt;}
.y72{bottom:496.943467pt;}
.y376{bottom:497.001200pt;}
.y3a7{bottom:497.343067pt;}
.y564{bottom:497.894693pt;}
.y1c0{bottom:498.383467pt;}
.y1f2{bottom:499.003867pt;}
.y3e2{bottom:499.261200pt;}
.y65f{bottom:500.820267pt;}
.y26{bottom:501.032533pt;}
.y516{bottom:502.005067pt;}
.y5e2{bottom:502.020667pt;}
.y4f8{bottom:502.083200pt;}
.y5c4{bottom:502.088400pt;}
.y47c{bottom:502.162933pt;}
.y244{bottom:502.163467pt;}
.y1d9{bottom:502.532880pt;}
.y538{bottom:502.689600pt;}
.y153{bottom:502.840267pt;}
.y67e{bottom:503.307467pt;}
.yde{bottom:504.088667pt;}
.y388{bottom:504.947200pt;}
.y217{bottom:505.942533pt;}
.y548{bottom:506.562933pt;}
.y55{bottom:507.001067pt;}
.y3c5{bottom:508.102133pt;}
.yef{bottom:508.662800pt;}
.y290{bottom:509.894933pt;}
.ydf{bottom:510.536000pt;}
.y460{bottom:511.457867pt;}
.yee{bottom:512.078133pt;}
.ye0{bottom:512.533467pt;}
.yb{bottom:513.680800pt;}
.y260{bottom:515.676933pt;}
.yed{bottom:515.770000pt;}
.ye1{bottom:516.262267pt;}
.y627{bottom:516.307333pt;}
.y243{bottom:516.563333pt;}
.y33a{bottom:516.615600pt;}
.y4cf{bottom:516.829387pt;}
.y49e{bottom:516.841067pt;}
.y35c{bottom:516.842267pt;}
.y5a0{bottom:516.850320pt;}
.y598{bottom:516.856987pt;}
.y25{bottom:517.032533pt;}
.y128{bottom:517.224400pt;}
.y438{bottom:517.262800pt;}
.y568{bottom:517.636533pt;}
.yec{bottom:517.642000pt;}
.y2ac{bottom:517.802907pt;}
.y517{bottom:518.556747pt;}
.y5e3{bottom:518.561627pt;}
.y4f9{bottom:518.624160pt;}
.y5c5{bottom:518.629360pt;}
.y71{bottom:518.943467pt;}
.y375{bottom:519.001200pt;}
.ye2{bottom:519.199867pt;}
.y1bf{bottom:520.383467pt;}
.y645{bottom:520.389200pt;}
.yeb{bottom:520.502533pt;}
.y1f1{bottom:521.003867pt;}
.y3e8{bottom:521.004000pt;}
.ye3{bottom:521.170800pt;}
.y67d{bottom:521.974133pt;}
.ye4{bottom:522.169333pt;}
.yea{bottom:522.472133pt;}
.y65e{bottom:522.820267pt;}
.ye5{bottom:523.490933pt;}
.ye9{bottom:523.722533pt;}
.ye6{bottom:524.000400pt;}
.ye8{bottom:524.053733pt;}
.y47b{bottom:524.162933pt;}
.ye7{bottom:524.405467pt;}
.y537{bottom:524.689600pt;}
.y152{bottom:524.840267pt;}
.y1dc{bottom:525.398640pt;}
.y387{bottom:526.947200pt;}
.y216{bottom:527.942533pt;}
.y1a0{bottom:528.250533pt;}
.y178{bottom:528.252223pt;}
.y547{bottom:528.562933pt;}
.y3e1{bottom:528.820133pt;}
.y5d{bottom:529.001200pt;}
.y608{bottom:529.183467pt;}
.y168{bottom:529.303871pt;}
.y3a6{bottom:530.681733pt;}
.y45f{bottom:533.457867pt;}
.yd0{bottom:533.952133pt;}
.y518{bottom:535.108427pt;}
.y5e4{bottom:535.113307pt;}
.y4fa{bottom:535.165120pt;}
.y5c6{bottom:535.170320pt;}
.y3c4{bottom:535.440800pt;}
.y24{bottom:535.699200pt;}
.y4d3{bottom:535.738133pt;}
.ydd{bottom:537.215200pt;}
.y25f{bottom:537.676933pt;}
.y626{bottom:538.307333pt;}
.yd1{bottom:538.503867pt;}
.y339{bottom:538.615600pt;}
.y451{bottom:539.281200pt;}
.yd2{bottom:539.861200pt;}
.ydc{bottom:540.125200pt;}
.y67c{bottom:540.640800pt;}
.y374{bottom:541.001200pt;}
.yd3{bottom:542.224133pt;}
.ydb{bottom:542.344267pt;}
.y644{bottom:542.389200pt;}
.yb9{bottom:542.863600pt;}
.y3e7{bottom:543.004000pt;}
.y28f{bottom:543.017333pt;}
.yd4{bottom:543.898933pt;}
.yda{bottom:544.038800pt;}
.y54{bottom:544.119200pt;}
.yd5{bottom:544.837867pt;}
.y241{bottom:544.873067pt;}
.yd9{bottom:544.936933pt;}
.yd6{bottom:545.261467pt;}
.yd7{bottom:545.525333pt;}
.yd8{bottom:545.539333pt;}
.y36a{bottom:546.655333pt;}
.y28e{bottom:547.017333pt;}
.ycf{bottom:547.684533pt;}
.yba{bottom:547.989200pt;}
.y2a5{bottom:548.233333pt;}
.y19f{bottom:550.250533pt;}
.y546{bottom:550.562933pt;}
.ya{bottom:550.798933pt;}
.y3e0{bottom:550.820133pt;}
.y519{bottom:551.660107pt;}
.y5e5{bottom:551.664987pt;}
.y23{bottom:551.699200pt;}
.y4fb{bottom:551.716800pt;}
.y5c7{bottom:551.722000pt;}
.yce{bottom:551.725333pt;}
.ybb{bottom:551.933200pt;}
.ycd{bottom:553.698400pt;}
.y1be{bottom:553.722000pt;}
.y2ab{bottom:553.808027pt;}
.y536{bottom:554.248800pt;}
.y127{bottom:554.342533pt;}
.y151{bottom:554.399333pt;}
.ybc{bottom:555.245067pt;}
.y70{bottom:556.061467pt;}
.ybd{bottom:556.837867pt;}
.ycc{bottom:557.031333pt;}
.y232{bottom:557.998267pt;}
.y233{bottom:558.008987pt;}
.y234{bottom:558.019707pt;}
.y235{bottom:558.030427pt;}
.y236{bottom:558.041147pt;}
.y237{bottom:558.051867pt;}
.y238{bottom:558.062587pt;}
.y239{bottom:558.073307pt;}
.y23a{bottom:558.084027pt;}
.y23b{bottom:558.094747pt;}
.y23c{bottom:558.105467pt;}
.y23d{bottom:558.116187pt;}
.y607{bottom:558.122000pt;}
.y23e{bottom:558.126907pt;}
.y23f{bottom:558.137627pt;}
.ycb{bottom:558.411600pt;}
.y67b{bottom:559.307467pt;}
.y2a4{bottom:559.433333pt;}
.ybe{bottom:559.561067pt;}
.y25e{bottom:559.676933pt;}
.y65d{bottom:559.938400pt;}
.y386{bottom:560.285867pt;}
.y625{bottom:560.307333pt;}
.y338{bottom:560.615600pt;}
.yca{bottom:560.689467pt;}
.y369{bottom:561.055200pt;}
.ybf{bottom:561.062400pt;}
.y215{bottom:561.281067pt;}
.y450{bottom:561.281200pt;}
.ya1{bottom:561.764400pt;}
.yc9{bottom:562.925067pt;}
.y373{bottom:563.001200pt;}
.y45e{bottom:563.017067pt;}
.yc0{bottom:563.140933pt;}
.yc8{bottom:563.985467pt;}
.y3a5{bottom:564.020267pt;}
.yc1{bottom:564.094267pt;}
.y3c3{bottom:564.379333pt;}
.y643{bottom:564.389200pt;}
.y167{bottom:565.026398pt;}
.y177{bottom:565.036584pt;}
.y1dd{bottom:565.159120pt;}
.yc2{bottom:565.417333pt;}
.yc7{bottom:565.448400pt;}
.yb8{bottom:565.926000pt;}
.yc3{bottom:565.959733pt;}
.y53{bottom:566.119200pt;}
.y5ee{bottom:566.354000pt;}
.y522{bottom:566.359067pt;}
.y504{bottom:566.416533pt;}
.y5d0{bottom:566.421733pt;}
.yc4{bottom:566.615600pt;}
.yc5{bottom:566.706667pt;}
.yc6{bottom:566.746267pt;}
.ya2{bottom:566.849867pt;}
.y28d{bottom:566.976933pt;}
.y1e3{bottom:567.511467pt;}
.y22{bottom:567.699200pt;}
.y5e6{bottom:568.205947pt;}
.y51a{bottom:568.211787pt;}
.y4fc{bottom:568.268480pt;}
.y5c8{bottom:568.273680pt;}
.yb7{bottom:570.023733pt;}
.y46e{bottom:570.502667pt;}
.ya3{bottom:570.809067pt;}
.y19e{bottom:572.250533pt;}
.y545{bottom:572.562933pt;}
.yb6{bottom:573.593467pt;}
.ya4{bottom:574.207867pt;}
.y48f{bottom:574.710267pt;}
.y368{bottom:575.455333pt;}
.y1bd{bottom:575.722000pt;}
.y429{bottom:575.864533pt;}
.y535{bottom:576.248800pt;}
.yb5{bottom:576.303600pt;}
.y126{bottom:576.342533pt;}
.y150{bottom:576.399333pt;}
.y2aa{bottom:576.682907pt;}
.ya5{bottom:577.538267pt;}
.y67a{bottom:577.974133pt;}
.y6f{bottom:578.061467pt;}
.yb4{bottom:579.400267pt;}
.y606{bottom:580.122000pt;}
.ya6{bottom:580.370933pt;}
.y3df{bottom:580.379333pt;}
.y22b{bottom:581.320213pt;}
.y25d{bottom:581.676933pt;}
.yb3{bottom:581.779067pt;}
.y624{bottom:582.307333pt;}
.ya7{bottom:582.721333pt;}
.y28c{bottom:582.936667pt;}
.y214{bottom:583.281067pt;}
.y44f{bottom:583.281200pt;}
.yb2{bottom:583.919467pt;}
.ya8{bottom:584.369600pt;}
.y5e7{bottom:584.746907pt;}
.y51b{bottom:584.752747pt;}
.y4fd{bottom:584.809440pt;}
.y5c9{bottom:584.814640pt;}
.y372{bottom:585.001200pt;}
.y45d{bottom:585.017067pt;}
.yb1{bottom:585.284133pt;}
.ya9{bottom:585.925467pt;}
.yb0{bottom:585.952533pt;}
.y21{bottom:586.365867pt;}
.yaa{bottom:586.972667pt;}
.yaf{bottom:587.073600pt;}
.yab{bottom:587.409600pt;}
.y3a4{bottom:587.579333pt;}
.y385{bottom:587.624400pt;}
.yae{bottom:587.742133pt;}
.yac{bottom:587.841733pt;}
.yad{bottom:587.855600pt;}
.y52{bottom:588.119200pt;}
.y48e{bottom:589.110267pt;}
.y428{bottom:590.264533pt;}
.y8c{bottom:591.523733pt;}
.y2a3{bottom:591.642133pt;}
.y46d{bottom:592.502667pt;}
.y3c2{bottom:593.938400pt;}
.ya0{bottom:594.810400pt;}
.y8d{bottom:595.553333pt;}
.y679{bottom:596.640800pt;}
.y65c{bottom:597.056533pt;}
.y47a{bottom:597.722000pt;}
.y337{bottom:597.733733pt;}
.y9f{bottom:597.978533pt;}
.y534{bottom:598.248800pt;}
.y125{bottom:598.342533pt;}
.y14f{bottom:598.399333pt;}
.y8e{bottom:598.604533pt;}
.y28b{bottom:598.896267pt;}
.y2a9{bottom:599.395867pt;}
.y6e{bottom:600.061467pt;}
.y9e{bottom:600.848800pt;}
.y166{bottom:600.887049pt;}
.y176{bottom:600.897235pt;}
.y8f{bottom:601.284267pt;}
.y5e8{bottom:601.298587pt;}
.y51c{bottom:601.304427pt;}
.y4fe{bottom:601.361120pt;}
.y5ca{bottom:601.366320pt;}
.y642{bottom:601.507333pt;}
.y22c{bottom:601.945493pt;}
.y544{bottom:602.122000pt;}
.y20{bottom:602.365867pt;}
.y3de{bottom:602.379333pt;}
.y9d{bottom:603.222267pt;}
.y90{bottom:603.659067pt;}
.y9c{bottom:604.196133pt;}
.y623{bottom:604.307333pt;}
.y1de{bottom:604.930320pt;}
.y1bc{bottom:605.281067pt;}
.y91{bottom:605.442667pt;}
.y19d{bottom:605.589067pt;}
.y40d{bottom:605.765333pt;}
.y9b{bottom:605.980400pt;}
.y92{bottom:606.868000pt;}
.y45c{bottom:607.017067pt;}
.y9a{bottom:607.394400pt;}
.y93{bottom:607.513867pt;}
.y99{bottom:608.200800pt;}
.y94{bottom:608.470000pt;}
.y98{bottom:608.551200pt;}
.y95{bottom:608.965600pt;}
.y97{bottom:609.043467pt;}
.y96{bottom:609.130533pt;}
.y384{bottom:609.624400pt;}
.y5c{bottom:610.119200pt;}
.y29e{bottom:610.546533pt;}
.y2a0{bottom:611.605200pt;}
.y213{bottom:612.840133pt;}
.y44e{bottom:612.840267pt;}
.y1f0{bottom:613.460667pt;}
.y4a6{bottom:613.898933pt;}
.y28a{bottom:614.855867pt;}
.y678{bottom:615.307467pt;}
.y3c1{bottom:615.938400pt;}
.y20b{bottom:616.119333pt;}
.y3a3{bottom:617.138400pt;}
.y51d{bottom:617.834667pt;}
.y5e9{bottom:617.850267pt;}
.y4ff{bottom:617.912800pt;}
.y5cb{bottom:617.918000pt;}
.y371{bottom:618.339733pt;}
.y1f{bottom:618.365867pt;}
.y25c{bottom:618.795067pt;}
.y65b{bottom:619.056533pt;}
.y559{bottom:619.143067pt;}
.y587{bottom:619.334400pt;}
.y479{bottom:619.722000pt;}
.y336{bottom:619.733733pt;}
.y7a{bottom:619.821467pt;}
.y533{bottom:620.248800pt;}
.y124{bottom:620.342533pt;}
.y367{bottom:620.342667pt;}
.y4b7{bottom:621.247200pt;}
.y22a{bottom:621.659573pt;}
.y8b{bottom:621.832667pt;}
.y6d{bottom:622.061467pt;}
.y22d{bottom:622.560053pt;}
.y48d{bottom:622.588400pt;}
.y7b{bottom:622.621200pt;}
.y641{bottom:623.507333pt;}
.y8a{bottom:624.114533pt;}
.y543{bottom:624.122000pt;}
.y7c{bottom:624.672133pt;}
.y425{bottom:625.182133pt;}
.y40f{bottom:625.195067pt;}
.y51{bottom:625.237333pt;}
.y89{bottom:625.251467pt;}
.y46c{bottom:625.841200pt;}
.y7d{bottom:626.537600pt;}
.y88{bottom:627.084400pt;}
.y1bb{bottom:627.281067pt;}
.y14e{bottom:627.958400pt;}
.y87{bottom:628.358667pt;}
.y574{bottom:629.016800pt;}
.y5a5{bottom:629.017067pt;}
.y2a2{bottom:629.451067pt;}
.y289{bottom:630.815467pt;}
.y240{bottom:630.937147pt;}
.y605{bottom:631.681067pt;}
.y5ff{bottom:633.854933pt;}
.y677{bottom:633.974133pt;}
.y51e{bottom:634.386347pt;}
.y5ea{bottom:634.391227pt;}
.y500{bottom:634.453760pt;}
.y5cc{bottom:634.458960pt;}
.y212{bottom:634.840133pt;}
.y44d{bottom:634.840267pt;}
.y3dd{bottom:635.717867pt;}
.y4a5{bottom:635.898933pt;}
.y45b{bottom:636.576000pt;}
.y165{bottom:636.773598pt;}
.y175{bottom:636.783785pt;}
.y1e{bottom:637.032533pt;}
.y16a{bottom:637.683023pt;}
.y20a{bottom:638.119333pt;}
.y406{bottom:638.357093pt;}
.y41d{bottom:638.364827pt;}
.y407{bottom:638.367813pt;}
.y41e{bottom:638.375547pt;}
.y408{bottom:638.378533pt;}
.y41f{bottom:638.386267pt;}
.y409{bottom:638.389253pt;}
.y420{bottom:638.396987pt;}
.y40a{bottom:638.399973pt;}
.y421{bottom:638.407707pt;}
.y40b{bottom:638.410693pt;}
.y422{bottom:638.418427pt;}
.y40c{bottom:638.421413pt;}
.y423{bottom:638.429147pt;}
.y280{bottom:638.795333pt;}
.y3a2{bottom:639.138400pt;}
.y1b5{bottom:640.282000pt;}
.y349{bottom:640.282133pt;}
.y622{bottom:641.425467pt;}
.y335{bottom:641.733733pt;}
.y532{bottom:642.248800pt;}
.y366{bottom:642.342667pt;}
.y1ef{bottom:642.399200pt;}
.y19c{bottom:642.707200pt;}
.y169{bottom:642.905867pt;}
.y22e{bottom:643.174613pt;}
.y401{bottom:643.309733pt;}
.y418{bottom:643.317467pt;}
.y402{bottom:643.320453pt;}
.y419{bottom:643.328187pt;}
.y403{bottom:643.331173pt;}
.y41a{bottom:643.338907pt;}
.y404{bottom:643.341893pt;}
.y41b{bottom:643.349627pt;}
.y405{bottom:643.352613pt;}
.y41c{bottom:643.360347pt;}
.y6c{bottom:644.061467pt;}
.y1df{bottom:644.690800pt;}
.y3c0{bottom:645.497467pt;}
.y370{bottom:645.678400pt;}
.y542{bottom:646.122000pt;}
.y383{bottom:646.742533pt;}
.y288{bottom:646.775200pt;}
.y27f{bottom:646.795333pt;}
.y50{bottom:647.237333pt;}
.y46b{bottom:647.841200pt;}
.y478{bottom:649.281067pt;}
.y14d{bottom:649.958400pt;}
.y51f{bottom:650.938027pt;}
.y5eb{bottom:650.942907pt;}
.y501{bottom:650.994720pt;}
.y5cd{bottom:650.999920pt;}
.y573{bottom:651.016800pt;}
.y5a4{bottom:651.017067pt;}
.y557{bottom:651.413867pt;}
.y25b{bottom:651.513067pt;}
.y584{bottom:651.605200pt;}
.y676{bottom:652.640667pt;}
.y4b6{bottom:653.528400pt;}
.y604{bottom:653.681067pt;}
.y33d{bottom:654.393333pt;}
.y48b{bottom:654.869600pt;}
.y5fe{bottom:655.854933pt;}
.y65a{bottom:656.174667pt;}
.y211{bottom:656.840133pt;}
.y123{bottom:657.460667pt;}
.y229{bottom:657.475093pt;}
.y3dc{bottom:657.717867pt;}
.y4a4{bottom:657.898933pt;}
.y45a{bottom:658.576000pt;}
.y1d{bottom:659.032533pt;}
.y209{bottom:660.119333pt;}
.y1ba{bottom:660.619600pt;}
.y640{bottom:660.625467pt;}
.y100{bottom:661.296800pt;}
.y2a7{bottom:661.796000pt;}
.y1b4{bottom:662.282000pt;}
.y348{bottom:662.282133pt;}
.y287{bottom:662.734800pt;}
.y334{bottom:663.733600pt;}
.y22f{bottom:663.799893pt;}
.y3fa{bottom:663.986800pt;}
.y411{bottom:663.994533pt;}
.y1ee{bottom:664.399200pt;}
.y44c{bottom:664.399333pt;}
.y119{bottom:664.410667pt;}
.y6b{bottom:666.061467pt;}
.y29f{bottom:667.259867pt;}
.y555{bottom:667.426213pt;}
.y520{bottom:667.489707pt;}
.y5ec{bottom:667.494587pt;}
.y3bf{bottom:667.497467pt;}
.y502{bottom:667.546400pt;}
.y5ce{bottom:667.551600pt;}
.y582{bottom:667.649520pt;}
.y36f{bottom:667.678267pt;}
.y2a1{bottom:668.318533pt;}
.y3a1{bottom:668.697467pt;}
.y33c{bottom:668.793333pt;}
.y4f{bottom:669.237333pt;}
.y4b4{bottom:669.498000pt;}
.y46a{bottom:669.841200pt;}
.y489{bottom:670.892987pt;}
.y228{bottom:671.271733pt;}
.y477{bottom:671.281067pt;}
.y675{bottom:671.307333pt;}
.y14c{bottom:671.958400pt;}
.y174{bottom:672.195530pt;}
.y164{bottom:672.496125pt;}
.y63a{bottom:672.943467pt;}
.y572{bottom:673.016800pt;}
.y4d9{bottom:673.017067pt;}
.y25a{bottom:673.513067pt;}
.y1c{bottom:675.032533pt;}
.y531{bottom:675.587333pt;}
.y382{bottom:675.681067pt;}
.y621{bottom:675.743600pt;}
.y19b{bottom:676.045733pt;}
.y5fd{bottom:677.854933pt;}
.y659{bottom:678.174667pt;}
.y286{bottom:678.694400pt;}
.y365{bottom:679.460800pt;}
.y54a{bottom:679.872133pt;}
.y4a3{bottom:679.898933pt;}
.y575{bottom:680.074000pt;}
.y459{bottom:680.576000pt;}
.y4a7{bottom:681.986800pt;}
.y208{bottom:682.119333pt;}
.y63f{bottom:682.625467pt;}
.yff{bottom:683.296800pt;}
.y47e{bottom:683.317467pt;}
.y191{bottom:683.604800pt;}
.y1b3{bottom:684.282000pt;}
.y347{bottom:684.282133pt;}
.y230{bottom:684.403733pt;}
.y1e0{bottom:684.462000pt;}
.y1ed{bottom:686.399200pt;}
.y44b{bottom:686.399333pt;}
.y118{bottom:686.410667pt;}
.y17a{bottom:686.751236pt;}
.y179{bottom:686.794400pt;}
.y36e{bottom:689.678267pt;}
.y674{bottom:689.974000pt;}
.y524{bottom:689.994400pt;}
.y5f0{bottom:689.999867pt;}
.y506{bottom:690.051867pt;}
.y5d2{bottom:690.057067pt;}
.y122{bottom:690.178667pt;}
.y1b{bottom:691.032533pt;}
.y3db{bottom:691.056400pt;}
.y4e{bottom:691.237333pt;}
.y469{bottom:691.841200pt;}
.y476{bottom:693.281067pt;}
.y1b9{bottom:693.958267pt;}
.y14b{bottom:693.958400pt;}
.y285{bottom:694.654000pt;}
.y639{bottom:694.943467pt;}
.y571{bottom:695.016800pt;}
.y4d8{bottom:695.017067pt;}
.y259{bottom:695.513067pt;}
.y3be{bottom:697.056533pt;}
.y530{bottom:697.587333pt;}
.y381{bottom:697.681067pt;}
.y620{bottom:697.743600pt;}
.y19a{bottom:698.045733pt;}
.y5fc{bottom:699.854933pt;}
.y1d8{bottom:700.048880pt;}
.y658{bottom:700.174667pt;}
.y333{bottom:700.851867pt;}
.y364{bottom:701.460800pt;}
.y576{bottom:701.567600pt;}
.y3a0{bottom:702.036000pt;}
.y458{bottom:702.576000pt;}
.y4a8{bottom:703.158800pt;}
.y6a{bottom:703.179600pt;}
.y63e{bottom:704.625467pt;}
.y231{bottom:705.029013pt;}
.y227{bottom:705.039733pt;}
.yfe{bottom:705.296800pt;}
.y190{bottom:705.604800pt;}
.y54b{bottom:706.050373pt;}
.y29d{bottom:708.089067pt;}
.y1ec{bottom:708.399200pt;}
.y44a{bottom:708.399333pt;}
.y117{bottom:708.410667pt;}
.y47f{bottom:708.466587pt;}
.y673{bottom:708.640667pt;}
.y4a2{bottom:709.457867pt;}
.y3fb{bottom:709.675440pt;}
.y412{bottom:709.683173pt;}
.y1a{bottom:709.699200pt;}
.y284{bottom:710.613733pt;}
.y36d{bottom:711.678267pt;}
.y121{bottom:712.178667pt;}
.y4d{bottom:713.237333pt;}
.y1b2{bottom:713.841067pt;}
.y346{bottom:713.841200pt;}
.y283{bottom:714.613733pt;}
.y3da{bottom:714.615467pt;}
.y3f9{bottom:714.768000pt;}
.y207{bottom:715.457867pt;}
.y1b8{bottom:715.958267pt;}
.y14a{bottom:715.958400pt;}
.y638{bottom:716.943467pt;}
.y258{bottom:717.513067pt;}
.y52f{bottom:719.587333pt;}
.y380{bottom:719.681067pt;}
.y61f{bottom:719.743600pt;}
.y29a{bottom:721.393467pt;}
.y468{bottom:721.400267pt;}
.y657{bottom:722.174667pt;}
.y475{bottom:722.840133pt;}
.y332{bottom:722.851867pt;}
.y577{bottom:723.061200pt;}
.y363{bottom:723.460800pt;}
.y210{bottom:723.517200pt;}
.y1e1{bottom:724.222480pt;}
.y4a9{bottom:724.320080pt;}
.y570{bottom:724.575867pt;}
.y4d7{bottom:724.576000pt;}
.y69{bottom:725.179600pt;}
.y185{bottom:725.667627pt;}
.y19{bottom:725.699200pt;}
.y603{bottom:727.240133pt;}
.yfd{bottom:727.296800pt;}
.y672{bottom:727.307333pt;}
.y242{bottom:727.539733pt;}
.y1d5{bottom:728.355467pt;}
.y5fb{bottom:729.414000pt;}
.y3bd{bottom:730.395067pt;}
.y3e6{bottom:730.399200pt;}
.y116{bottom:730.410667pt;}
.y199{bottom:731.384400pt;}
.y4a1{bottom:731.457867pt;}
.y457{bottom:732.135067pt;}
.y54c{bottom:732.228613pt;}
.y299{bottom:732.593467pt;}
.y480{bottom:733.604987pt;}
.y36c{bottom:733.678267pt;}
.y120{bottom:734.178667pt;}
.y282{bottom:734.573333pt;}
.y3f8{bottom:734.643067pt;}
.y18f{bottom:735.163867pt;}
.y5b{bottom:735.237333pt;}
.y39f{bottom:735.374533pt;}
.y1b1{bottom:735.841067pt;}
.y345{bottom:735.841200pt;}
.y1eb{bottom:737.958267pt;}
.y449{bottom:737.958400pt;}
.y281{bottom:738.573333pt;}
.y206{bottom:739.017067pt;}
.y257{bottom:739.513067pt;}
.y18{bottom:741.699200pt;}
.y61e{bottom:741.743600pt;}
.y29c{bottom:743.318133pt;}
.y467{bottom:743.400267pt;}
.y3d9{bottom:744.174533pt;}
.y578{bottom:744.554800pt;}
.y474{bottom:744.840133pt;}
.y331{bottom:744.851867pt;}
.y5b3{bottom:745.179467pt;}
.y4e7{bottom:745.184667pt;}
.y514{bottom:745.236800pt;}
.y5e0{bottom:745.242000pt;}
.y4aa{bottom:745.492080pt;}
.y1b7{bottom:745.517200pt;}
.y149{bottom:745.517467pt;}
.y671{bottom:745.974000pt;}
.y56f{bottom:746.575867pt;}
.y4d6{bottom:746.576000pt;}
.y68{bottom:747.179600pt;}
.y1e5{bottom:748.081733pt;}
.y37f{bottom:749.240133pt;}
.yfc{bottom:749.296800pt;}
.y4c{bottom:750.355333pt;}
.y1d4{bottom:750.355467pt;}
.y5fa{bottom:751.414000pt;}
.y3bc{bottom:752.395067pt;}
.y115{bottom:752.410667pt;}
.y637{bottom:754.061600pt;}
.y456{bottom:754.135067pt;}
.y3f7{bottom:754.518000pt;}
.y29b{bottom:754.518133pt;}
.y413{bottom:755.371813pt;}
.y3fc{bottom:755.385520pt;}
.y11f{bottom:756.178667pt;}
.y52e{bottom:756.705467pt;}
.y18e{bottom:757.163867pt;}
.y1b0{bottom:757.841067pt;}
.y344{bottom:757.841200pt;}
.y54d{bottom:758.396133pt;}
.y27e{bottom:758.532933pt;}
.y481{bottom:758.732667pt;}
.y656{bottom:759.292667pt;}
.y1ea{bottom:759.958267pt;}
.y448{bottom:759.958400pt;}
.y17{bottom:760.365867pt;}
.y362{bottom:760.578800pt;}
.y205{bottom:761.017067pt;}
.y5b1{bottom:761.752400pt;}
.y4e5{bottom:761.757600pt;}
.y512{bottom:761.809600pt;}
.y5de{bottom:761.814933pt;}
.y27d{bottom:762.532933pt;}
.y39e{bottom:762.713200pt;}
.y63d{bottom:763.743600pt;}
.y24e{bottom:763.749333pt;}
.y670{bottom:764.640667pt;}
.y198{bottom:764.722933pt;}
.y466{bottom:765.400267pt;}
.y579{bottom:766.048400pt;}
.y4ab{bottom:766.664080pt;}
.y473{bottom:766.840133pt;}
.y330{bottom:766.851867pt;}
.y36b{bottom:767.016933pt;}
.y1b6{bottom:767.517200pt;}
.y148{bottom:767.517467pt;}
.y56e{bottom:768.575867pt;}
.y4d5{bottom:768.576000pt;}
.y163{bottom:768.820907pt;}
.y173{bottom:768.822461pt;}
.y67{bottom:769.179600pt;}
.y37e{bottom:771.240133pt;}
.yfb{bottom:771.296800pt;}
.y4b{bottom:772.355333pt;}
.y5a{bottom:772.355467pt;}
.y256{bottom:772.851733pt;}
.y5f9{bottom:773.414000pt;}
.y3d8{bottom:773.733600pt;}
.y3f6{bottom:774.403467pt;}
.y114{bottom:774.410667pt;}
.y20f{bottom:775.076400pt;}
.y636{bottom:776.061600pt;}
.y455{bottom:776.135067pt;}
.y16{bottom:776.365867pt;}
.y4da{bottom:777.674267pt;}
.y5a6{bottom:777.679467pt;}
.y507{bottom:777.726267pt;}
.y5d3{bottom:777.731600pt;}
.y48a{bottom:777.921733pt;}
.y52d{bottom:778.705467pt;}
.y61d{bottom:778.861600pt;}
.y556{bottom:779.674267pt;}
.y655{bottom:781.292667pt;}
.y1e9{bottom:781.958267pt;}
.y447{bottom:781.958400pt;}
.y27c{bottom:782.492533pt;}
.y204{bottom:783.017067pt;}
.y66f{bottom:783.307333pt;}
.y482{bottom:783.860347pt;}
.y54e{bottom:784.563653pt;}
.y3bb{bottom:785.733600pt;}
.y24d{bottom:785.749333pt;}
.y18d{bottom:786.722933pt;}
.y298{bottom:786.727067pt;}
.y343{bottom:787.400267pt;}
.y57a{bottom:787.542000pt;}
.y4ac{bottom:787.836080pt;}
.y32f{bottom:788.851867pt;}
.y361{bottom:789.517467pt;}
.y56d{bottom:790.575867pt;}
.y4b5{bottom:790.601333pt;}
.y583{bottom:790.667733pt;}
.y1af{bottom:791.179600pt;}
.y162{bottom:791.835952pt;}
.y172{bottom:791.837505pt;}
.y602{bottom:793.240133pt;}
.yfa{bottom:793.296800pt;}
.y424{bottom:794.094267pt;}
.y5a7{bottom:794.209707pt;}
.y4db{bottom:794.215227pt;}
.y508{bottom:794.277947pt;}
.y5d4{bottom:794.283280pt;}
.y3f5{bottom:794.288800pt;}
.y4a{bottom:794.355333pt;}
.y59{bottom:794.355467pt;}
.y255{bottom:794.851733pt;}
.y15{bottom:795.032533pt;}
.y5f8{bottom:795.414000pt;}
.y39d{bottom:795.431333pt;}
.y113{bottom:796.410667pt;}
.y147{bottom:797.076400pt;}
.y140{bottom:797.087867pt;}
.y454{bottom:798.135067pt;}
.y27b{bottom:798.452267pt;}
.y472{bottom:800.178667pt;}
.y52c{bottom:800.705467pt;}
.y61c{bottom:800.861600pt;}
.y3fd{bottom:801.074160pt;}
.y414{bottom:801.081893pt;}
.y66e{bottom:801.974000pt;}
.y3d7{bottom:803.292667pt;}
.y1e8{bottom:803.958267pt;}
.y37d{bottom:804.578667pt;}
.y66{bottom:806.297733pt;}
.y24c{bottom:807.749333pt;}
.y197{bottom:808.722933pt;}
.y4ad{bottom:808.997360pt;}
.y483{bottom:809.009467pt;}
.y57b{bottom:809.046320pt;}
.y3ba{bottom:809.292667pt;}
.y342{bottom:809.400267pt;}
.y54f{bottom:810.741893pt;}
.y5a8{bottom:810.761387pt;}
.y4dc{bottom:810.766907pt;}
.y509{bottom:810.818907pt;}
.y5d5{bottom:810.834960pt;}
.y360{bottom:811.517467pt;}
.y203{bottom:812.576000pt;}
.y1ae{bottom:813.179600pt;}
.y635{bottom:813.179733pt;}
.y3f4{bottom:814.153467pt;}
.yf9{bottom:815.296800pt;}
.y18c{bottom:816.282000pt;}
.y49{bottom:816.355333pt;}
.y58{bottom:816.355467pt;}
.y465{bottom:816.959200pt;}
.y14{bottom:817.032533pt;}
.y39c{bottom:817.431333pt;}
.y654{bottom:818.410800pt;}
.y27a{bottom:818.411867pt;}
.y146{bottom:819.076400pt;}
.y13f{bottom:819.087867pt;}
.y56c{bottom:820.134933pt;}
.y453{bottom:820.135067pt;}
.y66d{bottom:820.640667pt;}
.y471{bottom:822.178667pt;}
.y32e{bottom:822.190400pt;}
.y52b{bottom:822.705467pt;}
.y61b{bottom:822.861600pt;}
.y254{bottom:824.410667pt;}
.y297{bottom:824.536000pt;}
.y5f7{bottom:824.973067pt;}
.y3d6{bottom:825.292667pt;}
.y296{bottom:825.594533pt;}
.y37c{bottom:826.578667pt;}
.y5a9{bottom:827.313067pt;}
.y4dd{bottom:827.318587pt;}
.y5d6{bottom:827.365200pt;}
.y50a{bottom:827.370587pt;}
.y65{bottom:828.297733pt;}
.y24b{bottom:829.749333pt;}
.y4ae{bottom:830.158640pt;}
.y57c{bottom:830.529200pt;}
.y341{bottom:831.400267pt;}
.y35f{bottom:833.517467pt;}
.y112{bottom:833.528933pt;}
.y3f3{bottom:834.038800pt;}
.y484{bottom:834.147867pt;}
.y202{bottom:834.576000pt;}
.y183{bottom:834.967507pt;}
.y1ad{bottom:835.179600pt;}
.y634{bottom:835.179733pt;}
.y550{bottom:836.920133pt;}
.y11e{bottom:837.296800pt;}
.y3e5{bottom:837.296933pt;}
.y57{bottom:838.355467pt;}
.y279{bottom:838.371467pt;}
.y3b9{bottom:838.851867pt;}
.y464{bottom:838.959200pt;}
.y13{bottom:839.032533pt;}
.y66c{bottom:839.307333pt;}
.y653{bottom:840.410800pt;}
.y145{bottom:841.076400pt;}
.y13e{bottom:841.087867pt;}
.y5b2{bottom:842.002400pt;}
.y4e6{bottom:842.007600pt;}
.y196{bottom:842.061600pt;}
.y5df{bottom:842.064933pt;}
.y513{bottom:842.070133pt;}
.y56b{bottom:842.134933pt;}
.y452{bottom:842.135067pt;}
.y293{bottom:843.440400pt;}
.y5aa{bottom:843.864747pt;}
.y4de{bottom:843.870267pt;}
.y5d7{bottom:843.916880pt;}
.y50b{bottom:843.922267pt;}
.y470{bottom:844.178667pt;}
.y43{bottom:844.185467pt;}
.y61a{bottom:844.861600pt;}
.y271{bottom:846.351333pt;}
.y253{bottom:846.410667pt;}
.y3fe{bottom:846.762800pt;}
.y415{bottom:846.770533pt;}
.y5f6{bottom:846.973067pt;}
.y601{bottom:848.578667pt;}
.y18b{bottom:849.620667pt;}
.y64{bottom:850.297733pt;}
.y4af{bottom:851.330640pt;}
.y618{bottom:851.749333pt;}
.y57d{bottom:852.033520pt;}
.yf8{bottom:852.414933pt;}
.y48{bottom:853.473600pt;}
.y278{bottom:854.331200pt;}
.y39b{bottom:854.549333pt;}
.y3d5{bottom:854.851733pt;}
.y111{bottom:855.528933pt;}
.y4a0{bottom:856.576000pt;}
.y633{bottom:857.179733pt;}
.y66b{bottom:857.974000pt;}
.y485{bottom:859.275547pt;}
.y11d{bottom:859.296800pt;}
.y24a{bottom:859.308400pt;}
.y52a{bottom:859.823600pt;}
.y5ab{bottom:860.416427pt;}
.y4df{bottom:860.421947pt;}
.y5d8{bottom:860.457840pt;}
.y50c{bottom:860.463227pt;}
.y3b8{bottom:860.851867pt;}
.y340{bottom:860.959200pt;}
.y12{bottom:861.032533pt;}
.y295{bottom:862.344800pt;}
.y42{bottom:862.852133pt;}
.y20e{bottom:863.076400pt;}
.y551{bottom:863.076933pt;}
.y13d{bottom:863.087867pt;}
.y37b{bottom:863.696800pt;}
.y56a{bottom:864.134933pt;}
.y201{bottom:864.135067pt;}
.y252{bottom:868.410667pt;}
.y5f5{bottom:868.973067pt;}
.y277{bottom:870.290800pt;}
.y63{bottom:872.297733pt;}
.y161{bottom:872.362710pt;}
.y171{bottom:872.364264pt;}
.y4b0{bottom:872.491920pt;}
.y695{bottom:872.534000pt;}
.y57e{bottom:873.516400pt;}
.yf7{bottom:874.414933pt;}
.y144{bottom:874.415067pt;}
.y47{bottom:875.473600pt;}
.y66a{bottom:876.640667pt;}
.y4e0{bottom:876.952187pt;}
.y5ac{bottom:876.957387pt;}
.y50d{bottom:877.004187pt;}
.y5d9{bottom:877.009520pt;}
.y110{bottom:877.528933pt;}
.y195{bottom:879.179733pt;}
.y11{bottom:879.699200pt;}
.y46f{bottom:881.296800pt;}
.y249{bottom:881.308400pt;}
.y41{bottom:881.518800pt;}
.y529{bottom:881.823600pt;}
.y619{bottom:881.979733pt;}
.y18a{bottom:882.959200pt;}
.y3d4{bottom:884.410667pt;}
.y486{bottom:884.424667pt;}
.y35e{bottom:885.076400pt;}
.y13c{bottom:885.087867pt;}
.y39a{bottom:885.088000pt;}
.y600{bottom:885.696800pt;}
.y200{bottom:886.135067pt;}
.y276{bottom:886.250400pt;}
.y552{bottom:889.244453pt;}
.y3b7{bottom:890.410800pt;}
.y5f4{bottom:890.973067pt;}
.y694{bottom:891.200667pt;}
.y416{bottom:892.459173pt;}
.y3ff{bottom:892.462160pt;}
.y4e1{bottom:893.503867pt;}
.y5ad{bottom:893.509067pt;}
.y50e{bottom:893.555867pt;}
.y5da{bottom:893.561200pt;}
.y4b1{bottom:893.663920pt;}
.y62{bottom:894.297733pt;}
.y632{bottom:894.297867pt;}
.y57f{bottom:895.020720pt;}
.y669{bottom:895.307333pt;}
.y160{bottom:895.377755pt;}
.y170{bottom:895.379309pt;}
.y10{bottom:895.699200pt;}
.yf6{bottom:896.414933pt;}
.y143{bottom:896.415067pt;}
.y46{bottom:897.473600pt;}
.y10f{bottom:899.528933pt;}
.y294{bottom:900.153733pt;}
.y40{bottom:900.185467pt;}
.y251{bottom:901.749333pt;}
.y275{bottom:902.210000pt;}
.y248{bottom:903.308400pt;}
.y528{bottom:903.823600pt;}
.y63c{bottom:903.979733pt;}
.y189{bottom:904.959200pt;}
.y274{bottom:906.210000pt;}
.y35d{bottom:907.076400pt;}
.y399{bottom:907.088000pt;}
.y1ff{bottom:908.135067pt;}
.y487{bottom:909.563067pt;}
.y693{bottom:909.867333pt;}
.y5ae{bottom:910.039307pt;}
.y4e2{bottom:910.044827pt;}
.y50f{bottom:910.107547pt;}
.y5db{bottom:910.112880pt;}
.y3d3{bottom:913.969867pt;}
.y668{bottom:913.974000pt;}
.yf{bottom:914.365867pt;}
.y13b{bottom:914.646933pt;}
.y4b2{bottom:914.825200pt;}
.y553{bottom:915.422693pt;}
.y61{bottom:916.297733pt;}
.y194{bottom:916.297867pt;}
.y580{bottom:916.503600pt;}
.y15f{bottom:918.392800pt;}
.y16f{bottom:918.394353pt;}
.yf5{bottom:918.414933pt;}
.y142{bottom:918.415067pt;}
.y45{bottom:919.473600pt;}
.y10e{bottom:921.528933pt;}
.y3f{bottom:922.185467pt;}
.y250{bottom:923.749333pt;}
.y3b6{bottom:923.749467pt;}
.y5f3{bottom:924.311733pt;}
.y247{bottom:925.308400pt;}
.y527{bottom:925.823600pt;}
.y273{bottom:926.169733pt;}
.y5af{bottom:926.590987pt;}
.y4e3{bottom:926.596507pt;}
.y510{bottom:926.648507pt;}
.y5dc{bottom:926.664560pt;}
.y398{bottom:929.088000pt;}
.y272{bottom:930.169733pt;}
.ye{bottom:930.365867pt;}
.y667{bottom:932.640667pt;}
.y488{bottom:934.690747pt;}
.y4b3{bottom:935.997200pt;}
.y692{bottom:936.093067pt;}
.y13a{bottom:936.646933pt;}
.y32d{bottom:936.647067pt;}
.y581{bottom:938.007920pt;}
.y417{bottom:938.147813pt;}
.y400{bottom:938.161520pt;}
.y60{bottom:938.297733pt;}
.y193{bottom:938.297867pt;}
.y292{bottom:939.021200pt;}
.yf4{bottom:940.414933pt;}
.y141{bottom:940.415067pt;}
.y63b{bottom:941.097867pt;}
.y44{bottom:941.473600pt;}
.y554{bottom:941.590213pt;}
.y5b0{bottom:943.142667pt;}
.y4e4{bottom:943.148187pt;}
.y5dd{bottom:943.194800pt;}
.y511{bottom:943.200187pt;}
.y10d{bottom:943.528933pt;}
.y3e{bottom:944.185467pt;}
.y5f2{bottom:946.311733pt;}
.y3d2{bottom:947.308400pt;}
.y526{bottom:947.823600pt;}
.yd{bottom:949.032533pt;}
.y270{bottom:950.129333pt;}
.y397{bottom:951.088000pt;}
.y666{bottom:951.307333pt;}
.y24f{bottom:957.087867pt;}
.y3b5{bottom:957.088000pt;}
.y139{bottom:958.646933pt;}
.y246{bottom:958.647067pt;}
.y427{bottom:960.324347pt;}
.y48c{bottom:960.421733pt;}
.y585{bottom:960.422933pt;}
.y586{bottom:960.452373pt;}
.y426{bottom:960.842267pt;}
.y410{bottom:960.843600pt;}
.y558{bottom:961.217200pt;}
.y184{bottom:961.541621pt;}
.y3d{bottom:962.852133pt;}
.y5b4{bottom:965.648267pt;}
.y4e8{bottom:965.653467pt;}
.y515{bottom:965.705467pt;}
.y5e1{bottom:965.710667pt;}
.y5f{bottom:975.415867pt;}
.y192{bottom:975.416000pt;}
.yf3{bottom:977.533067pt;}
.yc{bottom:978.591600pt;}
.y56{bottom:978.591733pt;}
.y5f1{bottom:979.650267pt;}
.y10c{bottom:980.646933pt;}
.y245{bottom:980.647067pt;}
.y525{bottom:981.162133pt;}
.y3c{bottom:981.518800pt;}
.y5e{bottom:1036.343200pt;}
.h85{height:15.386250pt;}
.h7d{height:21.653646pt;}
.h87{height:21.760276pt;}
.h86{height:22.857343pt;}
.h8c{height:23.778504pt;}
.h88{height:24.066906pt;}
.h75{height:28.596150pt;}
.h7c{height:30.315104pt;}
.h82{height:31.238750pt;}
.h8b{height:32.541004pt;}
.h94{height:32.906250pt;}
.h70{height:33.421875pt;}
.h80{height:33.706038pt;}
.h96{height:34.500000pt;}
.h79{height:35.886875pt;}
.h77{height:36.154687pt;}
.h76{height:36.196875pt;}
.h9a{height:37.135417pt;}
.h7e{height:37.653646pt;}
.h46{height:37.842388pt;}
.h34{height:37.842424pt;}
.h3e{height:37.842505pt;}
.h2f{height:37.842545pt;}
.h1f{height:37.842551pt;}
.h3a{height:37.842561pt;}
.h53{height:37.842566pt;}
.h11{height:37.842580pt;}
.h4c{height:37.842613pt;}
.h40{height:37.842620pt;}
.h27{height:37.842645pt;}
.h22{height:37.842647pt;}
.h61{height:37.842648pt;}
.h6f{height:37.842672pt;}
.h4e{height:37.842676pt;}
.h3f{height:37.842689pt;}
.h41{height:37.842721pt;}
.h26{height:37.842723pt;}
.h50{height:37.842729pt;}
.h69{height:37.842730pt;}
.h6c{height:37.842732pt;}
.h4d{height:37.842741pt;}
.h5c{height:37.842744pt;}
.h49{height:37.842754pt;}
.h4f{height:37.842762pt;}
.h15{height:37.842772pt;}
.h31{height:37.842777pt;}
.h2d{height:37.842783pt;}
.h1b{height:37.842791pt;}
.h3b{height:37.842792pt;}
.h3c{height:37.842804pt;}
.h28{height:37.842808pt;}
.h6b{height:37.842816pt;}
.h58{height:37.842817pt;}
.h5e{height:37.842822pt;}
.h25{height:37.842827pt;}
.h56{height:37.842831pt;}
.h52{height:37.842837pt;}
.h2b{height:37.842844pt;}
.h17{height:37.842860pt;}
.h55{height:37.842861pt;}
.h4b{height:37.842862pt;}
.h35{height:37.842869pt;}
.h45{height:37.842881pt;}
.h44{height:37.842886pt;}
.h38{height:37.842893pt;}
.h37{height:37.842895pt;}
.h43{height:37.842898pt;}
.h1c{height:37.842908pt;}
.h3d{height:37.842910pt;}
.h36{height:37.842913pt;}
.h65{height:37.842916pt;}
.h6e{height:37.842924pt;}
.h24{height:37.842928pt;}
.h42{height:37.842930pt;}
.h64{height:37.842937pt;}
.h16{height:37.842938pt;}
.h18{height:37.842945pt;}
.h51{height:37.842955pt;}
.h4a{height:37.842959pt;}
.h1d{height:37.842962pt;}
.h62{height:37.842967pt;}
.h57{height:37.842980pt;}
.h13{height:37.842981pt;}
.h2a{height:37.842983pt;}
.h63{height:37.842987pt;}
.h33{height:37.842989pt;}
.h66{height:37.842990pt;}
.h47{height:37.843003pt;}
.h2e{height:37.843008pt;}
.h48{height:37.843016pt;}
.h60{height:37.843041pt;}
.h68{height:37.843042pt;}
.h23{height:37.843062pt;}
.h5b{height:37.843074pt;}
.h39{height:37.843087pt;}
.h6a{height:37.843089pt;}
.h54{height:37.843103pt;}
.h6d{height:37.843106pt;}
.h10{height:37.843120pt;}
.h1e{height:37.843121pt;}
.h5f{height:37.843123pt;}
.h12{height:37.843128pt;}
.h29{height:37.843136pt;}
.h2c{height:37.843158pt;}
.h30{height:37.843160pt;}
.h21{height:37.843207pt;}
.h59{height:37.843221pt;}
.h67{height:37.843257pt;}
.h20{height:37.843261pt;}
.h1a{height:37.843265pt;}
.h5d{height:37.843278pt;}
.h19{height:37.843318pt;}
.h5a{height:37.843360pt;}
.h32{height:37.843366pt;}
.h99{height:37.864583pt;}
.h93{height:37.890625pt;}
.he{height:38.255208pt;}
.h8d{height:39.497808pt;}
.h5{height:39.750000pt;}
.hb{height:40.171875pt;}
.hc{height:40.848958pt;}
.h84{height:41.002500pt;}
.h8a{height:41.903706pt;}
.h83{height:42.895000pt;}
.h8f{height:43.990000pt;}
.hd{height:44.166667pt;}
.h7a{height:44.508750pt;}
.ha{height:44.635417pt;}
.h73{height:48.160693pt;}
.h72{height:48.161226pt;}
.h98{height:48.198000pt;}
.h7f{height:48.287779pt;}
.h97{height:48.678000pt;}
.h7b{height:48.760000pt;}
.h6{height:49.098958pt;}
.h9{height:49.156250pt;}
.h74{height:50.963542pt;}
.h4{height:51.989583pt;}
.h8{height:56.059896pt;}
.h78{height:58.699035pt;}
.h71{height:61.156250pt;}
.h3{height:62.489583pt;}
.h95{height:63.185600pt;}
.hf{height:71.348958pt;}
.h7{height:80.437500pt;}
.h90{height:107.040000pt;}
.h2{height:107.250000pt;}
.h91{height:121.920000pt;}
.h92{height:122.080000pt;}
.h14{height:223.781333pt;}
.h89{height:259.021333pt;}
.h81{height:273.070667pt;}
.h8e{height:377.760000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w7{width:12.160000pt;}
.w8{width:12.161333pt;}
.w6{width:12.162667pt;}
.w3{width:55.181333pt;}
.w2{width:223.780000pt;}
.w5{width:247.516000pt;}
.w4{width:548.032000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd8{left:2.850133pt;}
.xc8{left:8.799333pt;}
.x8f{left:48.441333pt;}
.x98{left:66.857064pt;}
.x97{left:69.148267pt;}
.xe{left:70.786000pt;}
.x99{left:72.460800pt;}
.x92{left:74.591867pt;}
.x6{left:75.590533pt;}
.x94{left:82.789200pt;}
.x14{left:90.091867pt;}
.x95{left:92.134667pt;}
.xc{left:94.488133pt;}
.x15{left:96.326933pt;}
.x9{left:98.267733pt;}
.x53{left:99.590533pt;}
.xa{left:103.611467pt;}
.x13{left:105.844000pt;}
.x8e{left:108.094667pt;}
.x16{left:109.217733pt;}
.x55{left:113.385867pt;}
.x17{left:115.249467pt;}
.xb{left:117.165333pt;}
.xd{left:118.786400pt;}
.x93{left:119.774079pt;}
.xc7{left:122.834667pt;}
.x18{left:124.202933pt;}
.x19{left:127.205333pt;}
.x2{left:129.683733pt;}
.xed{left:132.224880pt;}
.xec{left:134.078133pt;}
.x9a{left:135.683867pt;}
.x9c{left:136.773494pt;}
.xc5{left:138.513547pt;}
.xc2{left:141.648987pt;}
.xc4{left:143.509067pt;}
.x96{left:144.982000pt;}
.x9b{left:146.027862pt;}
.x79{left:148.714133pt;}
.xf0{left:149.820800pt;}
.xeb{left:150.953067pt;}
.x87{left:152.492133pt;}
.x91{left:153.591333pt;}
.x33{left:156.404800pt;}
.x7d{left:159.515360pt;}
.x78{left:160.678667pt;}
.x1f{left:162.445067pt;}
.xef{left:164.037840pt;}
.xbd{left:165.076732pt;}
.x34{left:166.608667pt;}
.x20{left:168.639867pt;}
.xf{left:171.688933pt;}
.x44{left:173.219067pt;}
.x21{left:174.112000pt;}
.x4d{left:175.846000pt;}
.x35{left:176.979067pt;}
.x10{left:178.051867pt;}
.x22{left:179.758933pt;}
.x49{left:180.900533pt;}
.x36{left:182.633867pt;}
.x11{left:183.545067pt;}
.x23{left:185.811733pt;}
.xb9{left:186.902896pt;}
.x37{left:188.405600pt;}
.x12{left:189.607333pt;}
.x24{left:191.377067pt;}
.x38{left:193.272800pt;}
.x45{left:194.911200pt;}
.x25{left:197.137600pt;}
.x9e{left:198.445168pt;}
.x26{left:200.114800pt;}
.x4e{left:202.432800pt;}
.x46{left:203.825867pt;}
.x39{left:205.109867pt;}
.x27{left:206.366800pt;}
.x3a{left:208.089067pt;}
.x9d{left:210.087760pt;}
.x4a{left:211.306533pt;}
.x28{left:212.657867pt;}
.x3b{left:214.387333pt;}
.x29{left:215.676000pt;}
.x4b{left:217.268933pt;}
.x47{left:219.029467pt;}
.x3c{left:220.724667pt;}
.x2a{left:221.961200pt;}
.x3d{left:223.720933pt;}
.x71{left:225.290388pt;}
.x4c{left:226.647467pt;}
.x2b{left:228.012000pt;}
.x3e{left:229.968533pt;}
.x2c{left:231.019600pt;}
.x4f{left:231.986400pt;}
.x2d{left:235.977733pt;}
.x1a{left:238.026000pt;}
.x9f{left:240.739122pt;}
.x2e{left:242.149333pt;}
.x1b{left:243.784400pt;}
.x7e{left:245.359493pt;}
.x50{left:246.766400pt;}
.x2f{left:247.994933pt;}
.x1c{left:250.062267pt;}
.x48{left:251.870267pt;}
.x1d{left:253.510667pt;}
.x3f{left:254.899600pt;}
.x30{left:256.695067pt;}
.xe8{left:258.047600pt;}
.x1e{left:259.287733pt;}
.x40{left:260.618000pt;}
.x7b{left:261.623360pt;}
.x31{left:262.552000pt;}
.x41{left:264.960400pt;}
.xea{left:266.786400pt;}
.x32{left:268.036000pt;}
.x42{left:269.893467pt;}
.xba{left:272.197547pt;}
.x43{left:274.748000pt;}
.x72{left:276.058631pt;}
.x7f{left:279.684933pt;}
.xb7{left:283.808744pt;}
.x1{left:285.376000pt;}
.xd9{left:292.646667pt;}
.xb8{left:294.964176pt;}
.x64{left:296.375196pt;}
.x63{left:297.393867pt;}
.x5e{left:299.395889pt;}
.x6e{left:301.637067pt;}
.xda{left:308.648000pt;}
.x80{left:314.031813pt;}
.x8{left:315.979333pt;}
.x3{left:317.175333pt;}
.xbb{left:319.249539pt;}
.x5d{left:322.410933pt;}
.x8b{left:325.414667pt;}
.x8c{left:330.063067pt;}
.x6b{left:334.212759pt;}
.x5f{left:335.880533pt;}
.xa2{left:340.965066pt;}
.x61{left:343.537827pt;}
.xa1{left:346.129600pt;}
.x62{left:348.199539pt;}
.xa5{left:349.351200pt;}
.xc6{left:350.778187pt;}
.xdb{left:356.648000pt;}
.xa3{left:357.683200pt;}
.x6d{left:359.929870pt;}
.x8d{left:362.097867pt;}
.x6c{left:363.331193pt;}
.x7c{left:364.653280pt;}
.x51{left:367.419733pt;}
.xa9{left:368.788267pt;}
.x60{left:372.544035pt;}
.xd5{left:375.421840pt;}
.x69{left:379.750779pt;}
.xab{left:380.874800pt;}
.xca{left:382.327280pt;}
.x68{left:383.557843pt;}
.x67{left:386.242644pt;}
.xc9{left:387.322800pt;}
.x66{left:390.248263pt;}
.xe9{left:391.533733pt;}
.x56{left:392.830267pt;}
.x65{left:394.098492pt;}
.x6a{left:396.204895pt;}
.xa0{left:397.840800pt;}
.xa6{left:399.132533pt;}
.xbe{left:403.549307pt;}
.x73{left:405.966232pt;}
.x74{left:407.730790pt;}
.xd6{left:408.620933pt;}
.x7a{left:410.714133pt;}
.x5b{left:416.147459pt;}
.x5c{left:417.451012pt;}
.x59{left:419.229369pt;}
.x58{left:422.268115pt;}
.x57{left:423.778855pt;}
.x8a{left:425.196800pt;}
.x88{left:430.630267pt;}
.xe7{left:432.087733pt;}
.xcb{left:432.998960pt;}
.x5a{left:437.669030pt;}
.xdc{left:438.967280pt;}
.xee{left:441.526400pt;}
.xa8{left:442.641333pt;}
.xa4{left:443.976415pt;}
.xa7{left:446.794000pt;}
.xcc{left:449.154000pt;}
.xae{left:450.199816pt;}
.x81{left:451.355013pt;}
.xb4{left:453.933293pt;}
.xb1{left:458.729534pt;}
.xaf{left:460.358186pt;}
.xb2{left:463.277337pt;}
.xdd{left:464.272000pt;}
.x6f{left:466.180533pt;}
.xbf{left:471.074587pt;}
.xde{left:480.272000pt;}
.xcd{left:481.474800pt;}
.x82{left:485.701893pt;}
.x76{left:488.667787pt;}
.xdf{left:496.270667pt;}
.xce{left:497.629840pt;}
.xb6{left:503.834906pt;}
.xe0{left:512.272000pt;}
.xcf{left:513.784880pt;}
.xb3{left:516.022190pt;}
.x5{left:519.831600pt;}
.xbc{left:523.907943pt;}
.xad{left:526.870667pt;}
.xe1{left:528.272000pt;}
.xd0{left:529.950640pt;}
.xac{left:531.178533pt;}
.x89{left:532.388667pt;}
.xaa{left:536.162400pt;}
.xc0{left:543.713307pt;}
.xd1{left:546.105680pt;}
.xb5{left:549.499264pt;}
.x4{left:550.657200pt;}
.x83{left:554.363493pt;}
.xb0{left:556.800593pt;}
.x77{left:559.902187pt;}
.xd2{left:562.260720pt;}
.xd7{left:565.869413pt;}
.xe2{left:576.112000pt;}
.xd3{left:578.426480pt;}
.x90{left:582.361333pt;}
.x84{left:588.688933pt;}
.xe3{left:592.112000pt;}
.xd4{left:594.581520pt;}
.xf1{left:605.028267pt;}
.xe4{left:608.110667pt;}
.x70{left:610.636133pt;}
.xc1{left:613.800667pt;}
.x85{left:623.025093pt;}
.xe5{left:624.112000pt;}
.xc3{left:628.342400pt;}
.xe6{left:640.112000pt;}
.x86{left:657.361253pt;}
.x75{left:705.565333pt;}
.x54{left:707.774267pt;}
.x52{left:710.129733pt;}
.x7{left:711.576933pt;}
}




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