
    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_6b7f7de42f15d74d2b5055bb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_e73580f07f24d5a9b82a795e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0d93f6f578c012c3f0c6139d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.909668;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_ab50497d7d44ddc5d6d0f2b9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911621;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_c8dcfd88da6d673cd6b177f7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.906250;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_76db2f80f51bbbf42656a09d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.897461;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_b5781bc99334794e423efab6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.906250;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_933bf5b45a09a2c81500b0c3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.991211;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_01b8cdcf1774d59d85509385.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.884766;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_2f6df06b62af38c646f836c7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.979004;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_8c5e5b533e13f976df0c0acd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.894043;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_8fa284d175a7d5178eca593b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.585840;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_04ca33d2d66e6c689bd37b82.woff2')format("woff");}.fff{font-family:fff;line-height:0.706543;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_1a94c33f725d34789fa1b04b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.911621;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_d840d915de85c6a8195ca158.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.712402;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_5b1a8401cf1242e7742564fc.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.887971;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_356fe26fe26adcaec62ba2d3.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.908691;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_bb2427e93875b2919c1d5a70.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.909668;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_0ec88a8534d2c7c505f444ea.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.897461;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_73fb6739dfd1a145435371af.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.906250;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_2dfd91882e549be0dfbc480e.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.906738;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_49e52bbff53d0d2a20274f20.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.689941;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_0118f8736a87a21b97f4d6ea.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.984863;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_cf907d1181583eb7f51d30b3.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.018066;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_178c4e4ed6f42067d26745d8.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.909668;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_79f628c9d84e301425e3f6b7.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.906000;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_dcaf0afe002d2cd81df4764a.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.673340;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_3694af854a4ae9ba3339632d.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.467235;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_be025682b63e337ca9e16419.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.722000;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_9ce0256781064e7dcb7cb21b.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.680176;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_56657bf2a242555eba424618.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.906250;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_a78cfa1da3e65252bd0728fd.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.908691;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;}
.m8{transform:matrix(0.229876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229876,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251880,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-30.240000px;}
.v4{vertical-align:-18.720000px;}
.v7{vertical-align:-5.759352px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.440792px;}
.v6{vertical-align:18.360000px;}
.v5{vertical-align:28.799820px;}
.v2{vertical-align:30.240000px;}
.ls7f{letter-spacing:-6.113952px;}
.ls84{letter-spacing:-5.756112px;}
.ls91{letter-spacing:-5.045544px;}
.ls24{letter-spacing:-4.355208px;}
.ls6d{letter-spacing:-4.055544px;}
.ls83{letter-spacing:-3.966912px;}
.ls82{letter-spacing:-3.961800px;}
.ls1{letter-spacing:-3.960000px;}
.ls3f{letter-spacing:-3.685824px;}
.ls80{letter-spacing:-3.609072px;}
.ls18{letter-spacing:-3.603960px;}
.lsc{letter-spacing:-3.601152px;}
.ls73{letter-spacing:-3.598848px;}
.ls2{letter-spacing:-3.595500px;}
.ls58{letter-spacing:-3.321792px;}
.ls48{letter-spacing:-3.316104px;}
.ls26{letter-spacing:-3.297996px;}
.ls90{letter-spacing:-3.246120px;}
.ls79{letter-spacing:-3.241008px;}
.ls8c{letter-spacing:-3.235896px;}
.ls32{letter-spacing:-2.952072px;}
.ls47{letter-spacing:-2.946384px;}
.ls28{letter-spacing:-2.931552px;}
.ls8a{letter-spacing:-2.893392px;}
.lsd{letter-spacing:-2.889216px;}
.ls71{letter-spacing:-2.883168px;}
.ls1f{letter-spacing:-2.878056px;}
.ls6{letter-spacing:-2.582352px;}
.ls43{letter-spacing:-2.576664px;}
.ls25{letter-spacing:-2.565108px;}
.ls8b{letter-spacing:-2.530440px;}
.ls77{letter-spacing:-2.525328px;}
.ls68{letter-spacing:-2.523276px;}
.ls7b{letter-spacing:-2.520216px;}
.ls9{letter-spacing:-2.519100px;}
.ls4f{letter-spacing:-2.518488px;}
.ls89{letter-spacing:-2.515104px;}
.ls61{letter-spacing:-2.513700px;}
.ls10{letter-spacing:-2.509056px;}
.ls4b{letter-spacing:-2.218320px;}
.ls35{letter-spacing:-2.212632px;}
.ls38{letter-spacing:-2.206944px;}
.ls2f{letter-spacing:-2.201256px;}
.ls75{letter-spacing:-2.172600px;}
.ls3{letter-spacing:-2.169000px;}
.ls1d{letter-spacing:-2.167488px;}
.ls74{letter-spacing:-2.162376px;}
.ls69{letter-spacing:-2.159388px;}
.ls41{letter-spacing:-1.848600px;}
.ls2a{letter-spacing:-1.842912px;}
.ls37{letter-spacing:-1.837224px;}
.ls27{letter-spacing:-1.832220px;}
.ls5d{letter-spacing:-1.825848px;}
.ls81{letter-spacing:-1.814760px;}
.ls21{letter-spacing:-1.809648px;}
.ls6f{letter-spacing:-1.805076px;}
.ls19{letter-spacing:-1.804536px;}
.ls7c{letter-spacing:-1.799424px;}
.ls8d{letter-spacing:-1.794312px;}
.ls8f{letter-spacing:-1.789200px;}
.lse{letter-spacing:-1.721088px;}
.ls2d{letter-spacing:-1.478880px;}
.ls29{letter-spacing:-1.473192px;}
.ls36{letter-spacing:-1.467504px;}
.ls5f{letter-spacing:-1.461816px;}
.ls20{letter-spacing:-1.451808px;}
.ls22{letter-spacing:-1.446696px;}
.ls1b{letter-spacing:-1.441584px;}
.ls12{letter-spacing:-1.435500px;}
.ls14{letter-spacing:-1.242000px;}
.ls13{letter-spacing:-1.233000px;}
.ls46{letter-spacing:-1.177416px;}
.ls15{letter-spacing:-1.147500px;}
.ls23{letter-spacing:-1.115604px;}
.ls30{letter-spacing:-1.114848px;}
.ls5{letter-spacing:-1.109160px;}
.ls2c{letter-spacing:-1.103472px;}
.ls1e{letter-spacing:-1.093968px;}
.ls7a{letter-spacing:-1.088856px;}
.ls72{letter-spacing:-1.083744px;}
.ls66{letter-spacing:-1.082088px;}
.ls11{letter-spacing:-1.080432px;}
.ls78{letter-spacing:-1.078632px;}
.ls87{letter-spacing:-1.073520px;}
.ls2e{letter-spacing:-0.745128px;}
.ls31{letter-spacing:-0.739440px;}
.ls44{letter-spacing:-0.733752px;}
.ls1a{letter-spacing:-0.731016px;}
.ls3e{letter-spacing:-0.728064px;}
.ls1c{letter-spacing:-0.725904px;}
.ls64{letter-spacing:-0.722988px;}
.lsa{letter-spacing:-0.719316px;}
.ls16{letter-spacing:-0.715500px;}
.ls65{letter-spacing:-0.713412px;}
.ls63{letter-spacing:-0.708624px;}
.ls4d{letter-spacing:-0.688248px;}
.ls4a{letter-spacing:-0.648432px;}
.ls57{letter-spacing:-0.614304px;}
.ls49{letter-spacing:-0.585864px;}
.ls4e{letter-spacing:-0.568800px;}
.ls56{letter-spacing:-0.483480px;}
.ls6c{letter-spacing:-0.466416px;}
.ls42{letter-spacing:-0.392472px;}
.ls34{letter-spacing:-0.375408px;}
.ls33{letter-spacing:-0.369720px;}
.ls59{letter-spacing:-0.368676px;}
.ls51{letter-spacing:-0.364032px;}
.ls7d{letter-spacing:-0.362952px;}
.ls5e{letter-spacing:-0.358344px;}
.ls8{letter-spacing:-0.358020px;}
.ls60{letter-spacing:-0.349524px;}
.ls55{letter-spacing:-0.108000px;}
.ls39{letter-spacing:-0.093600px;}
.ls4c{letter-spacing:-0.079200px;}
.ls4{letter-spacing:-0.064800px;}
.ls3a{letter-spacing:-0.021600px;}
.lsf{letter-spacing:-0.013824px;}
.ls3d{letter-spacing:-0.013176px;}
.ls40{letter-spacing:-0.011376px;}
.ls54{letter-spacing:-0.009576px;}
.ls3c{letter-spacing:-0.006588px;}
.ls2b{letter-spacing:-0.005688px;}
.ls50{letter-spacing:-0.004788px;}
.ls7{letter-spacing:-0.004212px;}
.ls0{letter-spacing:0.000000px;}
.ls5b{letter-spacing:0.004788px;}
.ls5c{letter-spacing:0.005688px;}
.ls3b{letter-spacing:0.007200px;}
.ls62{letter-spacing:0.344736px;}
.ls85{letter-spacing:0.352728px;}
.ls53{letter-spacing:0.354312px;}
.ls6e{letter-spacing:0.358344px;}
.ls6a{letter-spacing:0.359100px;}
.ls6b{letter-spacing:0.363888px;}
.ls45{letter-spacing:0.392472px;}
.ls7e{letter-spacing:4.687704px;}
.ls76{letter-spacing:6.124176px;}
.ls67{letter-spacing:6.842052px;}
.ls17{letter-spacing:9.499392px;}
.ls8e{letter-spacing:9.723024px;}
.ls5a{letter-spacing:11.883816px;}
.ls52{letter-spacing:12.242916px;}
.ls70{letter-spacing:13.986792px;}
.ls86{letter-spacing:14.763456px;}
.lsb{letter-spacing:20.857500px;}
.ls88{letter-spacing:25.565112px;}
.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;}
}
.ws53{word-spacing:-26.638632px;}
.wse{word-spacing:-25.523100px;}
.wsf{word-spacing:-25.344900px;}
.ws40{word-spacing:-17.935200px;}
.ws28{word-spacing:-16.522704px;}
.ws51{word-spacing:-15.479136px;}
.ws4{word-spacing:-14.770944px;}
.ws3a{word-spacing:-14.411880px;}
.ws21{word-spacing:-14.333760px;}
.ws1a{word-spacing:-14.328072px;}
.ws20{word-spacing:-14.322384px;}
.ws1{word-spacing:-14.025960px;}
.ws27{word-spacing:-12.238128px;}
.ws3d{word-spacing:-12.233340px;}
.ws29{word-spacing:-11.879028px;}
.ws2e{word-spacing:-11.874240px;}
.ws23{word-spacing:-11.869452px;}
.ws30{word-spacing:-11.524716px;}
.ws3f{word-spacing:-11.505564px;}
.ws8{word-spacing:-11.491776px;}
.wsa{word-spacing:-11.486664px;}
.ws37{word-spacing:-11.165616px;}
.ws39{word-spacing:-11.160828px;}
.ws55{word-spacing:-10.796544px;}
.ws9{word-spacing:-10.765872px;}
.ws2{word-spacing:-10.441548px;}
.ws4d{word-spacing:-9.360072px;}
.ws7{word-spacing:-9.329400px;}
.wsb{word-spacing:-8.824140px;}
.ws4b{word-spacing:-8.644392px;}
.ws44{word-spacing:-8.639280px;}
.ws19{word-spacing:-1.465776px;}
.wsc{word-spacing:-1.426500px;}
.ws2c{word-spacing:-0.375408px;}
.ws18{word-spacing:-0.373464px;}
.ws33{word-spacing:-0.369720px;}
.wsd{word-spacing:-0.366444px;}
.ws4f{word-spacing:-0.362952px;}
.ws4a{word-spacing:-0.352728px;}
.ws42{word-spacing:-0.347616px;}
.ws35{word-spacing:-0.344736px;}
.ws46{word-spacing:-0.342504px;}
.ws3{word-spacing:-0.044280px;}
.ws3b{word-spacing:-0.030600px;}
.ws6{word-spacing:-0.027000px;}
.ws1e{word-spacing:-0.011376px;}
.ws1c{word-spacing:-0.005688px;}
.ws1b{word-spacing:-0.004212px;}
.ws0{word-spacing:0.000000px;}
.ws36{word-spacing:0.004788px;}
.ws43{word-spacing:0.005112px;}
.ws26{word-spacing:0.009576px;}
.ws13{word-spacing:0.010224px;}
.ws2a{word-spacing:0.013176px;}
.ws3e{word-spacing:0.014364px;}
.ws12{word-spacing:0.015336px;}
.ws45{word-spacing:0.020448px;}
.ws25{word-spacing:0.352656px;}
.ws1d{word-spacing:0.358344px;}
.ws11{word-spacing:0.360000px;}
.ws24{word-spacing:0.362340px;}
.ws47{word-spacing:0.362952px;}
.ws1f{word-spacing:0.364032px;}
.ws14{word-spacing:0.368064px;}
.ws34{word-spacing:0.368676px;}
.ws2b{word-spacing:0.368928px;}
.ws41{word-spacing:0.373176px;}
.ws10{word-spacing:0.526500px;}
.ws56{word-spacing:0.715680px;}
.ws16{word-spacing:0.725904px;}
.ws22{word-spacing:0.728064px;}
.ws17{word-spacing:0.731016px;}
.ws52{word-spacing:0.736128px;}
.ws5{word-spacing:1.036152px;}
.ws15{word-spacing:1.083744px;}
.ws4c{word-spacing:1.088856px;}
.ws49{word-spacing:1.099080px;}
.ws57{word-spacing:1.446696px;}
.ws54{word-spacing:1.456920px;}
.ws48{word-spacing:1.809648px;}
.ws50{word-spacing:2.883168px;}
.ws4e{word-spacing:3.614184px;}
.ws38{word-spacing:41.406624px;}
.ws32{word-spacing:108.275832px;}
.ws3c{word-spacing:117.717768px;}
.ws2d{word-spacing:151.286436px;}
.ws2f{word-spacing:197.639064px;}
.ws31{word-spacing:209.527668px;}
._49{margin-left:-27.737712px;}
._10{margin-left:-26.649000px;}
._d{margin-left:-25.547400px;}
._c{margin-left:-24.453900px;}
._f{margin-left:-23.344200px;}
._11{margin-left:-20.800800px;}
._47{margin-left:-16.567992px;}
._48{margin-left:-15.494472px;}
._44{margin-left:-13.975416px;}
._14{margin-left:-12.774384px;}
._22{margin-left:-11.711448px;}
._23{margin-left:-10.629360px;}
._3e{margin-left:-9.350964px;}
._3f{margin-left:-8.307180px;}
._45{margin-left:-6.067764px;}
._6{margin-left:-4.522500px;}
._5{margin-left:-3.195000px;}
._2{margin-left:-1.557000px;}
._0{width:1.057500px;}
._1{width:2.506500px;}
._b{width:3.724200px;}
._46{width:4.869324px;}
._15{width:6.096240px;}
._9{width:7.210944px;}
._7{width:9.208872px;}
._8{width:10.309320px;}
._4{width:11.862000px;}
._16{width:13.401360px;}
._43{width:14.456844px;}
._1b{width:15.465672px;}
._13{width:17.007696px;}
._1c{width:18.036648px;}
._12{width:19.107324px;}
._19{width:20.237904px;}
._18{width:21.352752px;}
._3{width:23.089500px;}
._a{width:24.372900px;}
._e{width:26.244000px;}
._17{width:27.871632px;}
._1d{width:29.502144px;}
._1a{width:32.012064px;}
._20{width:33.167196px;}
._26{width:40.180500px;}
._1f{width:42.313032px;}
._1e{width:44.150256px;}
._3a{width:45.156672px;}
._40{width:98.231292px;}
._38{width:101.113884px;}
._42{width:132.799968px;}
._41{width:139.311648px;}
._31{width:141.480612px;}
._2a{width:144.722088px;}
._25{width:155.523816px;}
._30{width:156.988944px;}
._37{width:163.433592px;}
._21{width:170.717436px;}
._28{width:207.378504px;}
._24{width:214.565292px;}
._2f{width:216.005832px;}
._29{width:220.674132px;}
._27{width:241.574400px;}
._3c{width:252.400968px;}
._36{width:257.820084px;}
._33{width:259.567056px;}
._39{width:264.240792px;}
._34{width:268.927596px;}
._3d{width:296.342928px;}
._35{width:310.028436px;}
._3b{width:327.746628px;}
._2e{width:377.629560px;}
._2c{width:381.666492px;}
._32{width:416.536848px;}
._2b{width:432.740088px;}
._2d{width:437.781204px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:4.680000px;}
.fsc{font-size:27.000000px;}
.fs11{font-size:30.600000px;}
.fs10{font-size:36.360000px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:42.120000px;}
.fsb{font-size:44.280000px;}
.fs5{font-size:45.000000px;}
.fsd{font-size:47.880000px;}
.fse{font-size:51.120000px;}
.fs6{font-size:56.880000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsf{font-size:65.880000px;}
.fsa{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:81.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y57{bottom:2.519850px;}
.y4c{bottom:3.059850px;}
.y220{bottom:3.239700px;}
.y3a{bottom:3.239850px;}
.y7{bottom:35.925007px;}
.y58{bottom:66.167850px;}
.y6{bottom:66.525004px;}
.y5a{bottom:73.817448px;}
.y56{bottom:74.178000px;}
.y55{bottom:76.697355px;}
.y54{bottom:87.137850px;}
.y5{bottom:97.125005px;}
.y27{bottom:116.387850px;}
.y2a1{bottom:117.197526px;}
.y140{bottom:117.737850px;}
.y23c{bottom:117.737940px;}
.y1c5{bottom:120.801189px;}
.y2d9{bottom:122.950896px;}
.y86{bottom:124.033206px;}
.y279{bottom:124.307418px;}
.y272{bottom:125.383530px;}
.y256{bottom:125.656554px;}
.y120{bottom:125.924934px;}
.yff{bottom:127.817418px;}
.y2a{bottom:128.447742px;}
.y196{bottom:131.597202px;}
.y26{bottom:131.597850px;}
.y2a0{bottom:131.867688px;}
.y311{bottom:131.953800px;}
.y1e2{bottom:131.957634px;}
.y1d4{bottom:131.957742px;}
.y23b{bottom:132.137850px;}
.y1c4{bottom:135.201099px;}
.y24{bottom:139.264499px;}
.y16b{bottom:142.040478px;}
.y2d8{bottom:142.120896px;}
.yb1{bottom:144.099048px;}
.y85{bottom:144.103314px;}
.y278{bottom:144.377526px;}
.y271{bottom:145.453638px;}
.y255{bottom:145.726662px;}
.y11f{bottom:145.995042px;}
.y29f{bottom:146.537850px;}
.y310{bottom:146.623962px;}
.yfe{bottom:147.887526px;}
.y29{bottom:148.517850px;}
.y1c3{bottom:149.601009px;}
.y25{bottom:149.687850px;}
.y195{bottom:151.667310px;}
.y1d2{bottom:152.026662px;}
.y1e1{bottom:152.027742px;}
.y1d3{bottom:152.027850px;}
.y16a{bottom:156.440388px;}
.y2d7{bottom:156.791058px;}
.y30f{bottom:161.294124px;}
.y16d{bottom:163.640343px;}
.y1c2{bottom:164.000919px;}
.yb0{bottom:164.169156px;}
.y84{bottom:164.173422px;}
.y277{bottom:164.447634px;}
.y270{bottom:165.523746px;}
.y254{bottom:165.796770px;}
.y11e{bottom:166.065150px;}
.yfd{bottom:167.957634px;}
.y169{bottom:170.840298px;}
.y2d6{bottom:171.461220px;}
.y194{bottom:171.737418px;}
.y1d1{bottom:172.096770px;}
.y1df{bottom:172.097742px;}
.y1e0{bottom:172.097850px;}
.y30e{bottom:175.964286px;}
.y16c{bottom:178.040253px;}
.y1c1{bottom:178.400829px;}
.yaf{bottom:184.239264px;}
.y83{bottom:184.243530px;}
.y276{bottom:184.517742px;}
.y168{bottom:185.240208px;}
.y26f{bottom:185.593854px;}
.y253{bottom:185.866878px;}
.y2d5{bottom:186.131382px;}
.y11d{bottom:186.135258px;}
.yfc{bottom:188.027742px;}
.yd8{bottom:188.564178px;}
.y30d{bottom:190.634448px;}
.y193{bottom:191.807526px;}
.y1d0{bottom:192.166878px;}
.y1dd{bottom:192.167094px;}
.y1de{bottom:192.167850px;}
.y1c0{bottom:192.800739px;}
.y1b{bottom:196.933500px;}
.y167{bottom:199.640118px;}
.y2d4{bottom:200.801544px;}
.y29e{bottom:201.167850px;}
.yae{bottom:204.309372px;}
.y82{bottom:204.313638px;}
.y28{bottom:204.587850px;}
.y30c{bottom:205.304610px;}
.y26e{bottom:205.663962px;}
.y252{bottom:205.936986px;}
.y148{bottom:206.203854px;}
.y11c{bottom:206.205366px;}
.y1bf{bottom:207.200649px;}
.yfb{bottom:208.097850px;}
.yd7{bottom:208.634286px;}
.y23{bottom:209.518500px;}
.y1a{bottom:209.533503px;}
.y192{bottom:211.877634px;}
.y1cf{bottom:212.236986px;}
.y1dc{bottom:212.237202px;}
.y2d3{bottom:219.971544px;}
.y30b{bottom:219.974772px;}
.y166{bottom:220.160289px;}
.y1be{bottom:221.600559px;}
.y22{bottom:222.118502px;}
.y19{bottom:222.133505px;}
.yad{bottom:224.379480px;}
.y81{bottom:224.383746px;}
.y26d{bottom:225.734070px;}
.y251{bottom:226.007094px;}
.y147{bottom:226.273962px;}
.y11b{bottom:226.275474px;}
.yd6{bottom:228.704394px;}
.y191{bottom:231.947742px;}
.y1ce{bottom:232.307094px;}
.y1db{bottom:232.307310px;}
.y165{bottom:234.560199px;}
.y2d2{bottom:234.641706px;}
.y21{bottom:234.718504px;}
.y18{bottom:234.733496px;}
.y30a{bottom:239.144772px;}
.y1ad{bottom:242.118336px;}
.y1b5{bottom:242.119533px;}
.y1bd{bottom:242.120730px;}
.yac{bottom:244.449588px;}
.y80{bottom:244.453854px;}
.yfa{bottom:244.457850px;}
.y26c{bottom:245.804178px;}
.y250{bottom:246.077202px;}
.y146{bottom:246.344070px;}
.y11a{bottom:246.345582px;}
.yd5{bottom:248.774502px;}
.y164{bottom:248.960109px;}
.y2d1{bottom:249.311868px;}
.y18e{bottom:252.017418px;}
.y190{bottom:252.017850px;}
.y1cd{bottom:252.377202px;}
.y1da{bottom:252.377418px;}
.y309{bottom:253.814934px;}
.y1ac{bottom:256.518246px;}
.y1b4{bottom:256.519443px;}
.y1bc{bottom:256.520640px;}
.y18f{bottom:258.407850px;}
.y20{bottom:259.918497px;}
.y17{bottom:259.933500px;}
.y275{bottom:261.377850px;}
.y163{bottom:263.360019px;}
.y2d0{bottom:263.982030px;}
.yab{bottom:264.519696px;}
.y7f{bottom:264.523962px;}
.y26b{bottom:265.874286px;}
.y24f{bottom:266.147310px;}
.y145{bottom:266.414178px;}
.y119{bottom:266.415690px;}
.y334{bottom:268.481868px;}
.y308{bottom:268.485096px;}
.yd4{bottom:268.844610px;}
.y1ab{bottom:270.918156px;}
.y1b3{bottom:270.919353px;}
.y1bb{bottom:270.920550px;}
.y18d{bottom:272.087526px;}
.y1cc{bottom:272.447310px;}
.y1d9{bottom:272.447526px;}
.y1f{bottom:272.518500px;}
.y16{bottom:272.533503px;}
.y34d{bottom:272.987040px;}
.y2cf{bottom:283.152030px;}
.y307{bottom:283.155258px;}
.y160{bottom:283.790415px;}
.yaa{bottom:284.589804px;}
.y29d{bottom:284.593836px;}
.y7e{bottom:284.594070px;}
.y1e{bottom:285.118502px;}
.y15{bottom:285.133499px;}
.y1aa{bottom:285.318066px;}
.y1b2{bottom:285.319263px;}
.y1ba{bottom:285.320460px;}
.y26a{bottom:285.944394px;}
.y24e{bottom:286.217418px;}
.y144{bottom:286.484286px;}
.y118{bottom:286.485798px;}
.y34c{bottom:287.657202px;}
.yd3{bottom:288.914718px;}
.y18c{bottom:292.157634px;}
.y1cb{bottom:292.517418px;}
.y1d8{bottom:292.517634px;}
.y53{bottom:293.957850px;}
.y2ce{bottom:297.822192px;}
.y15f{bottom:298.190325px;}
.y1a9{bottom:299.717976px;}
.y1b1{bottom:299.719173px;}
.y1b9{bottom:299.720370px;}
.y306{bottom:302.325258px;}
.y34b{bottom:302.327364px;}
.ya9{bottom:304.659912px;}
.y29c{bottom:304.663944px;}
.y7d{bottom:304.664178px;}
.y162{bottom:305.390280px;}
.y269{bottom:306.014502px;}
.y24d{bottom:306.287526px;}
.y143{bottom:306.554394px;}
.y117{bottom:306.555906px;}
.yf9{bottom:306.557742px;}
.yd2{bottom:308.984826px;}
.y1d{bottom:310.318501px;}
.y14{bottom:310.333501px;}
.y18b{bottom:312.227742px;}
.y2cd{bottom:312.492354px;}
.y1ca{bottom:312.587526px;}
.y1d7{bottom:312.587742px;}
.y15e{bottom:312.590235px;}
.y1a8{bottom:314.117886px;}
.y1b0{bottom:314.119083px;}
.y1b8{bottom:314.120280px;}
.y305{bottom:316.995420px;}
.y34a{bottom:316.997526px;}
.y161{bottom:319.790190px;}
.y1c{bottom:322.918500px;}
.y13{bottom:322.933500px;}
.ya8{bottom:324.730020px;}
.y29b{bottom:324.734052px;}
.y7c{bottom:324.734286px;}
.y268{bottom:326.084610px;}
.y24c{bottom:326.357634px;}
.y142{bottom:326.624502px;}
.y116{bottom:326.626014px;}
.yf8{bottom:326.627850px;}
.y15d{bottom:326.990145px;}
.y2cc{bottom:327.162516px;}
.y1a7{bottom:328.517796px;}
.y1af{bottom:328.518993px;}
.y1b7{bottom:328.520190px;}
.yd1{bottom:329.054934px;}
.y333{bottom:331.662354px;}
.y304{bottom:331.665582px;}
.y349{bottom:331.667688px;}
.y18a{bottom:332.297850px;}
.y1c9{bottom:332.657634px;}
.y1d6{bottom:332.657850px;}
.y52{bottom:340.038246px;}
.y15c{bottom:341.390055px;}
.y2cb{bottom:341.832678px;}
.y1a6{bottom:342.917706px;}
.y1ae{bottom:342.918903px;}
.y1b6{bottom:342.920100px;}
.ya7{bottom:344.800128px;}
.y29a{bottom:344.804160px;}
.y7b{bottom:344.804394px;}
.y267{bottom:346.154718px;}
.y332{bottom:346.332516px;}
.y303{bottom:346.335744px;}
.y348{bottom:346.337850px;}
.y24b{bottom:346.427742px;}
.y141{bottom:346.694610px;}
.y115{bottom:346.696122px;}
.y12{bottom:348.133500px;}
.yd0{bottom:349.125042px;}
.y1c8{bottom:352.727742px;}
.y51{bottom:355.338462px;}
.y1a5{bottom:357.317616px;}
.y2ca{bottom:361.002678px;}
.y302{bottom:361.005906px;}
.y159{bottom:361.909029px;}
.ya6{bottom:364.870236px;}
.y299{bottom:364.874268px;}
.y7a{bottom:364.874502px;}
.y347{bottom:365.507850px;}
.y266{bottom:366.224826px;}
.y24a{bottom:366.497850px;}
.yf7{bottom:366.764718px;}
.y114{bottom:366.766230px;}
.y189{bottom:368.658264px;}
.ycf{bottom:369.195150px;}
.y50{bottom:370.547940px;}
.y1d5{bottom:372.797616px;}
.y1c7{bottom:372.797850px;}
.y2c9{bottom:375.672840px;}
.y158{bottom:376.308939px;}
.y1a4{bottom:377.748012px;}
.y346{bottom:380.166288px;}
.y331{bottom:380.172678px;}
.y301{bottom:380.175906px;}
.ya5{bottom:384.940344px;}
.y298{bottom:384.944376px;}
.y79{bottom:384.944610px;}
.y4f{bottom:385.848156px;}
.y265{bottom:386.294934px;}
.y11{bottom:386.785499px;}
.yf6{bottom:386.834826px;}
.y113{bottom:386.836338px;}
.y188{bottom:386.837850px;}
.yce{bottom:389.265258px;}
.y2c8{bottom:390.343002px;}
.y157{bottom:390.708849px;}
.y1a3{bottom:392.147922px;}
.y345{bottom:394.836450px;}
.y330{bottom:394.842840px;}
.y300{bottom:394.846068px;}
.y4e{bottom:401.148372px;}
.ya4{bottom:405.010452px;}
.y2c7{bottom:405.013164px;}
.y297{bottom:405.014484px;}
.y78{bottom:405.014718px;}
.y156{bottom:405.108759px;}
.y264{bottom:406.365042px;}
.y1a2{bottom:406.547832px;}
.yf5{bottom:406.904934px;}
.y112{bottom:406.906446px;}
.y10{bottom:408.044999px;}
.ycd{bottom:409.335366px;}
.y344{bottom:409.506612px;}
.y2ff{bottom:409.516230px;}
.y4b{bottom:413.298000px;}
.y32f{bottom:414.012840px;}
.y4a{bottom:416.357778px;}
.y4d{bottom:416.357850px;}
.y155{bottom:419.508669px;}
.y229{bottom:420.675873px;}
.y1a1{bottom:420.947742px;}
.y249{bottom:423.287850px;}
.y2c6{bottom:424.183164px;}
.y2fe{bottom:424.186392px;}
.ya3{bottom:425.080560px;}
.y296{bottom:425.084592px;}
.y77{bottom:425.084826px;}
.y263{bottom:426.435150px;}
.y233{bottom:426.707850px;}
.yf4{bottom:426.975042px;}
.y111{bottom:426.976554px;}
.y343{bottom:428.676612px;}
.y32e{bottom:428.683002px;}
.ycc{bottom:429.405474px;}
.y49{bottom:431.657994px;}
.y154{bottom:433.908579px;}
.y232{bottom:437.237850px;}
.y2c5{bottom:438.853326px;}
.y228{bottom:441.196044px;}
.y1a0{bottom:441.467913px;}
.y342{bottom:443.346774px;}
.y32d{bottom:443.353164px;}
.y2fd{bottom:443.356392px;}
.ya2{bottom:445.150668px;}
.y295{bottom:445.154700px;}
.y76{bottom:445.154934px;}
.y128{bottom:445.157202px;}
.y262{bottom:446.505258px;}
.y48{bottom:446.958210px;}
.yf3{bottom:447.045150px;}
.y110{bottom:447.046662px;}
.y153{bottom:448.308489px;}
.y187{bottom:448.936878px;}
.ycb{bottom:449.475582px;}
.y2c4{bottom:453.523488px;}
.y19f{bottom:455.867823px;}
.y231{bottom:456.406545px;}
.y341{bottom:458.016936px;}
.y32c{bottom:458.023326px;}
.y2fc{bottom:458.026554px;}
.y227{bottom:461.716215px;}
.y47{bottom:462.167688px;}
.y152{bottom:462.708399px;}
.y15b{bottom:462.709596px;}
.ya1{bottom:465.220776px;}
.y294{bottom:465.224808px;}
.y75{bottom:465.225042px;}
.y127{bottom:465.227310px;}
.y261{bottom:466.575366px;}
.yf2{bottom:467.115258px;}
.y10f{bottom:467.116770px;}
.y2c3{bottom:468.193650px;}
.y186{bottom:469.006986px;}
.yca{bottom:469.545690px;}
.y19e{bottom:470.267733px;}
.y340{bottom:472.687098px;}
.y2fb{bottom:472.696716px;}
.y230{bottom:476.926716px;}
.y151{bottom:477.108309px;}
.y15a{bottom:477.109506px;}
.y32b{bottom:477.193326px;}
.y46{bottom:477.467904px;}
.y226{bottom:482.146611px;}
.y23a{bottom:482.237202px;}
.y2c2{bottom:482.863812px;}
.y19d{bottom:484.667643px;}
.yf{bottom:484.864502px;}
.ya0{bottom:485.290884px;}
.y293{bottom:485.294916px;}
.y74{bottom:485.295150px;}
.y126{bottom:485.297418px;}
.y260{bottom:486.645474px;}
.yf1{bottom:487.185366px;}
.y10e{bottom:487.186878px;}
.y33f{bottom:487.357260px;}
.y2fa{bottom:487.366878px;}
.y13f{bottom:487.455582px;}
.y185{bottom:489.077094px;}
.yc9{bottom:489.615798px;}
.y150{bottom:491.508219px;}
.y32a{bottom:491.863488px;}
.y45{bottom:492.768120px;}
.y22f{bottom:497.357112px;}
.y19c{bottom:499.067553px;}
.y2c1{bottom:502.033812px;}
.y225{bottom:502.666782px;}
.y239{bottom:502.667598px;}
.ye{bottom:502.864502px;}
.y9f{bottom:505.360992px;}
.y292{bottom:505.365024px;}
.y73{bottom:505.365258px;}
.y14f{bottom:505.908129px;}
.y33e{bottom:506.527260px;}
.y329{bottom:506.533650px;}
.y2f9{bottom:506.536878px;}
.y25f{bottom:506.715582px;}
.y248{bottom:506.716986px;}
.yf0{bottom:507.255474px;}
.y10d{bottom:507.256986px;}
.y13e{bottom:507.525690px;}
.y44{bottom:507.977598px;}
.y184{bottom:509.147202px;}
.yc8{bottom:509.685906px;}
.y19b{bottom:513.467463px;}
.y2c0{bottom:516.703974px;}
.y22e{bottom:517.877283px;}
.y14e{bottom:520.308039px;}
.yd{bottom:520.864502px;}
.y33d{bottom:521.197422px;}
.y328{bottom:521.203812px;}
.y2f8{bottom:521.207040px;}
.y224{bottom:523.186953px;}
.y238{bottom:523.187769px;}
.y43{bottom:523.277814px;}
.y9e{bottom:525.431100px;}
.y291{bottom:525.435132px;}
.y72{bottom:525.435366px;}
.y125{bottom:525.437634px;}
.y25e{bottom:526.785690px;}
.y247{bottom:526.787094px;}
.yef{bottom:527.325582px;}
.y10c{bottom:527.327094px;}
.y13d{bottom:527.595798px;}
.y183{bottom:529.217310px;}
.yc7{bottom:529.756014px;}
.y2bf{bottom:531.374136px;}
.y19a{bottom:533.987634px;}
.y14d{bottom:534.707949px;}
.y33c{bottom:535.867584px;}
.y2f7{bottom:535.877202px;}
.y22d{bottom:538.397454px;}
.y42{bottom:538.578030px;}
.yc{bottom:538.864499px;}
.y327{bottom:540.373812px;}
.y222{bottom:543.617349px;}
.y237{bottom:543.707940px;}
.y9d{bottom:545.501208px;}
.y290{bottom:545.505240px;}
.y71{bottom:545.505474px;}
.y124{bottom:545.507742px;}
.y2be{bottom:546.044298px;}
.y25d{bottom:546.855798px;}
.y246{bottom:546.857202px;}
.yee{bottom:547.395690px;}
.y10b{bottom:547.397202px;}
.y13c{bottom:547.665906px;}
.y199{bottom:548.387544px;}
.y14c{bottom:549.107859px;}
.y182{bottom:549.287418px;}
.yc6{bottom:549.826122px;}
.y33b{bottom:550.537746px;}
.y2f6{bottom:550.547364px;}
.y221{bottom:550.817304px;}
.y235{bottom:550.907688px;}
.y41{bottom:553.787508px;}
.y326{bottom:555.043974px;}
.yb{bottom:556.864499px;}
.y223{bottom:558.017259px;}
.y236{bottom:558.107850px;}
.y22c{bottom:558.827850px;}
.y2bd{bottom:560.714460px;}
.y198{bottom:562.787454px;}
.y14b{bottom:563.507769px;}
.y33a{bottom:565.207908px;}
.y2f5{bottom:565.217526px;}
.y9c{bottom:565.571316px;}
.y28f{bottom:565.575348px;}
.y70{bottom:565.575582px;}
.y123{bottom:565.577850px;}
.y25c{bottom:566.925906px;}
.y245{bottom:566.927310px;}
.yed{bottom:567.465798px;}
.y10a{bottom:567.467310px;}
.y13b{bottom:567.736014px;}
.y40{bottom:569.087724px;}
.y181{bottom:569.357526px;}
.y325{bottom:569.714136px;}
.yc5{bottom:569.896230px;}
.y14a{bottom:577.907679px;}
.y2bc{bottom:579.884460px;}
.y2f4{bottom:579.887688px;}
.y22b{bottom:580.788000px;}
.y197{bottom:583.217850px;}
.y22a{bottom:584.027850px;}
.y339{bottom:584.377908px;}
.y3f{bottom:584.387940px;}
.y234{bottom:584.837850px;}
.y9b{bottom:585.641424px;}
.y28e{bottom:585.645456px;}
.y6f{bottom:585.645690px;}
.y122{bottom:585.647742px;}
.y25b{bottom:586.996014px;}
.y244{bottom:586.997418px;}
.yec{bottom:587.535906px;}
.y109{bottom:587.537418px;}
.y13a{bottom:587.806122px;}
.y324{bottom:588.884136px;}
.y180{bottom:589.427634px;}
.yc4{bottom:589.966338px;}
.y2bb{bottom:594.554622px;}
.y149{bottom:598.427850px;}
.y338{bottom:599.048070px;}
.y2f3{bottom:599.057688px;}
.y3e{bottom:599.597418px;}
.y323{bottom:603.554298px;}
.y9a{bottom:605.711532px;}
.y28d{bottom:605.715564px;}
.y6e{bottom:605.715798px;}
.y121{bottom:605.717850px;}
.y25a{bottom:607.066122px;}
.y243{bottom:607.067526px;}
.yeb{bottom:607.606014px;}
.y108{bottom:607.607526px;}
.y139{bottom:607.876230px;}
.y1c6{bottom:609.137850px;}
.y2ba{bottom:609.224784px;}
.y17f{bottom:609.497742px;}
.yc3{bottom:610.036446px;}
.y2f2{bottom:613.718232px;}
.y3d{bottom:614.897634px;}
.y322{bottom:618.224460px;}
.y21d{bottom:623.095743px;}
.y16e{bottom:624.347850px;}
.y99{bottom:625.781640px;}
.y28c{bottom:625.785672px;}
.y6d{bottom:625.785906px;}
.y259{bottom:627.136230px;}
.y242{bottom:627.137634px;}
.y23f{bottom:627.137940px;}
.yea{bottom:627.676122px;}
.y107{bottom:627.677634px;}
.y138{bottom:627.946338px;}
.y2f1{bottom:628.388394px;}
.y2b9{bottom:628.394784px;}
.y17d{bottom:629.567742px;}
.y17e{bottom:629.567850px;}
.yc2{bottom:630.106554px;}
.y3c{bottom:630.197850px;}
.y321{bottom:632.894622px;}
.y21c{bottom:637.495653px;}
.y23e{bottom:638.298000px;}
.y23d{bottom:641.537850px;}
.y2f0{bottom:643.058556px;}
.y2b8{bottom:643.064946px;}
.ya{bottom:645.510000px;}
.y98{bottom:645.851748px;}
.y28b{bottom:645.855780px;}
.y6c{bottom:645.856014px;}
.y258{bottom:647.206338px;}
.y241{bottom:647.207742px;}
.y320{bottom:647.564784px;}
.ye9{bottom:647.746230px;}
.y106{bottom:647.747742px;}
.y137{bottom:648.016446px;}
.y17c{bottom:649.637850px;}
.yc1{bottom:650.176662px;}
.y21b{bottom:651.895563px;}
.y39{bottom:654.408000px;}
.y3b{bottom:657.647850px;}
.y2b7{bottom:657.735108px;}
.y2ef{bottom:662.228556px;}
.y97{bottom:665.921856px;}
.y28a{bottom:665.925888px;}
.y6b{bottom:665.926122px;}
.y31f{bottom:666.734784px;}
.y9{bottom:666.771000px;}
.y257{bottom:667.276446px;}
.y240{bottom:667.277850px;}
.ye8{bottom:667.816338px;}
.y105{bottom:667.817850px;}
.y136{bottom:668.086554px;}
.yc0{bottom:670.246770px;}
.y21a{bottom:672.415734px;}
.y2ee{bottom:676.898718px;}
.y2b6{bottom:676.905108px;}
.y31e{bottom:681.404946px;}
.y96{bottom:685.991964px;}
.y289{bottom:685.995996px;}
.y6a{bottom:685.996230px;}
.y17b{bottom:685.998264px;}
.y219{bottom:686.815644px;}
.ye7{bottom:687.886446px;}
.y135{bottom:688.156662px;}
.ybf{bottom:690.316878px;}
.y2ed{bottom:691.568880px;}
.y2b5{bottom:691.575270px;}
.y31d{bottom:696.075108px;}
.y218{bottom:701.215554px;}
.y104{bottom:704.177850px;}
.y95{bottom:706.062072px;}
.y288{bottom:706.066104px;}
.y69{bottom:706.066338px;}
.y2ec{bottom:706.239042px;}
.y2b4{bottom:706.245432px;}
.ye6{bottom:707.956554px;}
.y134{bottom:708.226770px;}
.ybe{bottom:710.386986px;}
.y31c{bottom:710.745270px;}
.y38{bottom:712.457850px;}
.y274{bottom:716.417940px;}
.y2eb{bottom:720.909204px;}
.y2b3{bottom:720.915594px;}
.y217{bottom:721.645950px;}
.y37{bottom:724.427850px;}
.y31b{bottom:725.415432px;}
.y94{bottom:726.132180px;}
.y287{bottom:726.136212px;}
.y68{bottom:726.136446px;}
.y8{bottom:726.298500px;}
.ye5{bottom:728.026662px;}
.y133{bottom:728.296878px;}
.ybd{bottom:730.457094px;}
.y273{bottom:730.817850px;}
.y216{bottom:736.045860px;}
.y36{bottom:736.397850px;}
.y2ea{bottom:740.079204px;}
.y2b2{bottom:740.085594px;}
.y31a{bottom:744.585432px;}
.y93{bottom:746.202288px;}
.y286{bottom:746.206320px;}
.y67{bottom:746.206554px;}
.ye4{bottom:748.096770px;}
.y132{bottom:748.366986px;}
.y35{bottom:748.457850px;}
.y215{bottom:750.445770px;}
.ybc{bottom:750.527202px;}
.y4{bottom:752.599495px;}
.y2e9{bottom:754.749366px;}
.y2b1{bottom:754.755756px;}
.y319{bottom:759.255594px;}
.y92{bottom:766.272396px;}
.y17a{bottom:766.275654px;}
.y285{bottom:766.276428px;}
.y66{bottom:766.276662px;}
.y103{bottom:766.277742px;}
.ye3{bottom:768.166878px;}
.y131{bottom:768.437094px;}
.y2e8{bottom:769.419528px;}
.y2b0{bottom:769.425918px;}
.ybb{bottom:770.597310px;}
.y1f5{bottom:770.959956px;}
.y200{bottom:770.961153px;}
.y20b{bottom:770.962350px;}
.y34{bottom:773.747130px;}
.y318{bottom:773.925756px;}
.y2e7{bottom:784.089690px;}
.y2af{bottom:784.096080px;}
.y1f4{bottom:785.359866px;}
.y1ff{bottom:785.361063px;}
.y20a{bottom:785.362260px;}
.y91{bottom:786.342504px;}
.y179{bottom:786.345762px;}
.y284{bottom:786.346536px;}
.y65{bottom:786.346770px;}
.y102{bottom:786.347850px;}
.ye2{bottom:788.236986px;}
.y130{bottom:788.507202px;}
.y317{bottom:788.595918px;}
.yba{bottom:790.667418px;}
.y2e6{bottom:798.759852px;}
.y2ae{bottom:798.766242px;}
.y1f3{bottom:799.759776px;}
.y1fe{bottom:799.760973px;}
.y209{bottom:799.762170px;}
.y33{bottom:801.377850px;}
.y316{bottom:803.266080px;}
.y90{bottom:806.412612px;}
.y178{bottom:806.415870px;}
.y283{bottom:806.416644px;}
.y64{bottom:806.416878px;}
.y101{bottom:806.417742px;}
.ye1{bottom:808.307094px;}
.y12f{bottom:808.577310px;}
.yb9{bottom:810.737526px;}
.y1ea{bottom:814.158489px;}
.y1f2{bottom:814.159686px;}
.y1fd{bottom:814.160883px;}
.y208{bottom:814.162080px;}
.y20e{bottom:814.163277px;}
.y211{bottom:814.164474px;}
.y214{bottom:814.165671px;}
.y2e5{bottom:817.929852px;}
.y2ad{bottom:817.936242px;}
.y8f{bottom:826.482720px;}
.y177{bottom:826.485978px;}
.y282{bottom:826.486752px;}
.y63{bottom:826.486986px;}
.y100{bottom:826.487850px;}
.ye0{bottom:828.377202px;}
.y1f1{bottom:828.559596px;}
.y1fc{bottom:828.560793px;}
.y207{bottom:828.561990px;}
.y12e{bottom:828.647418px;}
.yb8{bottom:830.807634px;}
.y2e4{bottom:832.600014px;}
.y2ac{bottom:832.606404px;}
.y32{bottom:840.076950px;}
.y1f0{bottom:842.959506px;}
.y1fb{bottom:842.960703px;}
.y206{bottom:842.961900px;}
.y8e{bottom:846.552828px;}
.y176{bottom:846.556086px;}
.y281{bottom:846.556860px;}
.y62{bottom:846.557094px;}
.y2e3{bottom:847.270176px;}
.y2ab{bottom:847.276566px;}
.ydf{bottom:848.447310px;}
.y12d{bottom:848.717526px;}
.yb7{bottom:850.877742px;}
.y1e9{bottom:857.358219px;}
.y1ef{bottom:857.359416px;}
.y1fa{bottom:857.360613px;}
.y205{bottom:857.361810px;}
.y20d{bottom:857.363007px;}
.y210{bottom:857.364204px;}
.y213{bottom:857.365401px;}
.y31{bottom:861.047850px;}
.y2e2{bottom:861.940338px;}
.y2aa{bottom:861.946728px;}
.y315{bottom:866.446566px;}
.y8d{bottom:866.622936px;}
.y175{bottom:866.626194px;}
.y280{bottom:866.626968px;}
.y61{bottom:866.627202px;}
.yde{bottom:868.517418px;}
.y12c{bottom:868.787634px;}
.yb6{bottom:870.947850px;}
.y1ee{bottom:871.759326px;}
.y1f9{bottom:871.760523px;}
.y204{bottom:871.761720px;}
.y337{bottom:876.610500px;}
.y2a9{bottom:876.616890px;}
.y3{bottom:879.369000px;}
.y2e1{bottom:881.110338px;}
.y314{bottom:881.116728px;}
.y1ed{bottom:886.159236px;}
.y1f8{bottom:886.160433px;}
.y203{bottom:886.161630px;}
.y8c{bottom:886.693044px;}
.y174{bottom:886.696302px;}
.y27f{bottom:886.697076px;}
.y60{bottom:886.697310px;}
.ydd{bottom:888.587526px;}
.y12b{bottom:888.857742px;}
.y2e0{bottom:895.780500px;}
.y2a8{bottom:895.786890px;}
.y1ec{bottom:900.559146px;}
.y1f7{bottom:900.560343px;}
.y202{bottom:900.561540px;}
.y8b{bottom:906.763152px;}
.y173{bottom:906.766410px;}
.y27e{bottom:906.767184px;}
.y5f{bottom:906.767418px;}
.yb5{bottom:907.308264px;}
.ydc{bottom:908.657634px;}
.y12a{bottom:908.927850px;}
.y2df{bottom:910.450662px;}
.y2a7{bottom:910.457052px;}
.y1e8{bottom:914.957859px;}
.y1eb{bottom:914.959056px;}
.y1f6{bottom:914.960253px;}
.y201{bottom:914.961450px;}
.y20c{bottom:914.962647px;}
.y20f{bottom:914.963844px;}
.y212{bottom:914.965041px;}
.y2de{bottom:925.120824px;}
.y2a6{bottom:925.127214px;}
.yb4{bottom:925.487850px;}
.y30{bottom:926.567652px;}
.y8a{bottom:926.833260px;}
.y172{bottom:926.836518px;}
.y27d{bottom:926.837292px;}
.y5e{bottom:926.837526px;}
.ydb{bottom:928.727742px;}
.y1e7{bottom:929.357769px;}
.y2f{bottom:939.167850px;}
.y2dd{bottom:939.790986px;}
.y2a5{bottom:939.797376px;}
.y313{bottom:944.297214px;}
.y2{bottom:945.126001px;}
.y129{bottom:945.287850px;}
.y89{bottom:946.903368px;}
.y171{bottom:946.906626px;}
.y27c{bottom:946.907400px;}
.y5d{bottom:946.907634px;}
.yda{bottom:948.797850px;}
.y1e6{bottom:949.877940px;}
.y336{bottom:954.461148px;}
.y2a4{bottom:954.467538px;}
.y1e3{bottom:957.077850px;}
.y1e4{bottom:957.257850px;}
.y2dc{bottom:958.960986px;}
.y312{bottom:958.967376px;}
.y2e{bottom:963.287850px;}
.yb3{bottom:964.097850px;}
.y1e5{bottom:964.277850px;}
.y1{bottom:966.726000px;}
.y88{bottom:966.973476px;}
.y170{bottom:966.976734px;}
.y27b{bottom:966.977508px;}
.y5c{bottom:966.977742px;}
.y335{bottom:969.131310px;}
.y2db{bottom:973.631148px;}
.y2a3{bottom:973.637538px;}
.yb2{bottom:983.897850px;}
.yd9{bottom:985.157850px;}
.y21f{bottom:986.958000px;}
.y87{bottom:987.043584px;}
.y16f{bottom:987.046842px;}
.y27a{bottom:987.047616px;}
.y5b{bottom:987.047850px;}
.y2da{bottom:988.301310px;}
.y2a2{bottom:988.307700px;}
.y21e{bottom:990.197700px;}
.y2d{bottom:1000.637304px;}
.y2c{bottom:1013.237502px;}
.y2b{bottom:1025.837700px;}
.y59{bottom:1032.767700px;}
.h17{height:11.880000px;}
.h1f{height:12.240000px;}
.h15{height:14.400000px;}
.h12{height:14.670000px;}
.h11{height:18.720703px;}
.h1d{height:21.903617px;}
.h1c{height:24.482637px;}
.hc{height:29.163164px;}
.h9{height:31.311035px;}
.h7{height:32.130000px;}
.h13{height:33.244805px;}
.h16{height:33.478594px;}
.hd{height:33.852305px;}
.h20{height:34.569360px;}
.h14{height:35.644219px;}
.h22{height:35.682691px;}
.h21{height:36.724746px;}
.h1a{height:36.868535px;}
.h19{height:38.521758px;}
.hb{height:39.604922px;}
.h1b{height:41.863680px;}
.h18{height:45.710684px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.ha{height:50.027344px;}
.h2{height:55.080000px;}
.he{height:59.761230px;}
.h1e{height:62.278414px;}
.hf{height:62.995957px;}
.h10{height:63.358837px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h8{height:1119.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w5{width:8.280000px;}
.w4{width:12.420000px;}
.w9{width:23.670000px;}
.w6{width:41.760000px;}
.w7{width:44.730000px;}
.w8{width:49.950000px;}
.w2{width:637.794021px;}
.w3{width:799.500000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:39.870000px;}
.x5{left:89.280000px;}
.x41{left:90.540000px;}
.x1c{left:93.510459px;}
.x39{left:94.769667px;}
.xd{left:96.840000px;}
.x6{left:99.810266px;}
.x1{left:102.045000px;}
.x11{left:103.950000px;}
.x2{left:106.297500px;}
.x52{left:107.910198px;}
.x17{left:109.529865px;}
.x16{left:114.750000px;}
.x1b{left:119.070000px;}
.x35{left:126.630000px;}
.x19{left:129.420000px;}
.xe{left:132.300000px;}
.x1a{left:133.560000px;}
.x44{left:155.879640px;}
.x4d{left:157.410225px;}
.x9{left:183.240000px;}
.x4{left:203.484001px;}
.x4e{left:217.349514px;}
.x42{left:224.010000px;}
.x14{left:226.530000px;}
.x43{left:229.950000px;}
.xa{left:252.180000px;}
.x29{left:267.298182px;}
.x26{left:270.360108px;}
.x2a{left:273.326274px;}
.x2b{left:275.130000px;}
.x50{left:276.840414px;}
.x3f{left:278.279343px;}
.x40{left:279.630756px;}
.x4f{left:284.130144px;}
.x2c{left:288.630000px;}
.x47{left:292.140000px;}
.x48{left:296.550000px;}
.xc{left:305.099865px;}
.x1f{left:308.249865px;}
.x20{left:310.860522px;}
.x1d{left:312.840360px;}
.x21{left:313.920054px;}
.x1e{left:325.260432px;}
.x49{left:336.060000px;}
.x27{left:337.949910px;}
.x28{left:341.008245px;}
.x51{left:344.340441px;}
.x3a{left:354.509091px;}
.xb{left:401.760000px;}
.x7{left:416.610000px;}
.x4c{left:420.840000px;}
.x4a{left:425.070414px;}
.x8{left:431.640000px;}
.x22{left:435.870018px;}
.x4b{left:453.509766px;}
.x3{left:454.959000px;}
.x18{left:457.290000px;}
.x23{left:464.670000px;}
.x2f{left:486.810000px;}
.x30{left:501.120000px;}
.x3b{left:507.330081px;}
.x12{left:536.220000px;}
.x2d{left:543.690000px;}
.x36{left:544.770000px;}
.x2e{left:556.290000px;}
.x37{left:568.170000px;}
.x38{left:570.779460px;}
.x3c{left:583.740576px;}
.x33{left:596.790000px;}
.x34{left:610.110000px;}
.x45{left:616.409829px;}
.x46{left:630.269892px;}
.x31{left:650.340000px;}
.x3d{left:657.180117px;}
.x3e{left:660.149874px;}
.x32{left:663.030000px;}
.x53{left:686.430000px;}
.x54{left:695.250000px;}
.x15{left:699.479685px;}
.xf{left:701.460000px;}
.x24{left:705.870000px;}
.x10{left:707.940000px;}
.x25{left:710.370000px;}
@media print{
.v3{vertical-align:-26.880000pt;}
.v4{vertical-align:-16.640000pt;}
.v7{vertical-align:-5.119424pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.280704pt;}
.v6{vertical-align:16.320000pt;}
.v5{vertical-align:25.599840pt;}
.v2{vertical-align:26.880000pt;}
.ls7f{letter-spacing:-5.434624pt;}
.ls84{letter-spacing:-5.116544pt;}
.ls91{letter-spacing:-4.484928pt;}
.ls24{letter-spacing:-3.871296pt;}
.ls6d{letter-spacing:-3.604928pt;}
.ls83{letter-spacing:-3.526144pt;}
.ls82{letter-spacing:-3.521600pt;}
.ls1{letter-spacing:-3.520000pt;}
.ls3f{letter-spacing:-3.276288pt;}
.ls80{letter-spacing:-3.208064pt;}
.ls18{letter-spacing:-3.203520pt;}
.lsc{letter-spacing:-3.201024pt;}
.ls73{letter-spacing:-3.198976pt;}
.ls2{letter-spacing:-3.196000pt;}
.ls58{letter-spacing:-2.952704pt;}
.ls48{letter-spacing:-2.947648pt;}
.ls26{letter-spacing:-2.931552pt;}
.ls90{letter-spacing:-2.885440pt;}
.ls79{letter-spacing:-2.880896pt;}
.ls8c{letter-spacing:-2.876352pt;}
.ls32{letter-spacing:-2.624064pt;}
.ls47{letter-spacing:-2.619008pt;}
.ls28{letter-spacing:-2.605824pt;}
.ls8a{letter-spacing:-2.571904pt;}
.lsd{letter-spacing:-2.568192pt;}
.ls71{letter-spacing:-2.562816pt;}
.ls1f{letter-spacing:-2.558272pt;}
.ls6{letter-spacing:-2.295424pt;}
.ls43{letter-spacing:-2.290368pt;}
.ls25{letter-spacing:-2.280096pt;}
.ls8b{letter-spacing:-2.249280pt;}
.ls77{letter-spacing:-2.244736pt;}
.ls68{letter-spacing:-2.242912pt;}
.ls7b{letter-spacing:-2.240192pt;}
.ls9{letter-spacing:-2.239200pt;}
.ls4f{letter-spacing:-2.238656pt;}
.ls89{letter-spacing:-2.235648pt;}
.ls61{letter-spacing:-2.234400pt;}
.ls10{letter-spacing:-2.230272pt;}
.ls4b{letter-spacing:-1.971840pt;}
.ls35{letter-spacing:-1.966784pt;}
.ls38{letter-spacing:-1.961728pt;}
.ls2f{letter-spacing:-1.956672pt;}
.ls75{letter-spacing:-1.931200pt;}
.ls3{letter-spacing:-1.928000pt;}
.ls1d{letter-spacing:-1.926656pt;}
.ls74{letter-spacing:-1.922112pt;}
.ls69{letter-spacing:-1.919456pt;}
.ls41{letter-spacing:-1.643200pt;}
.ls2a{letter-spacing:-1.638144pt;}
.ls37{letter-spacing:-1.633088pt;}
.ls27{letter-spacing:-1.628640pt;}
.ls5d{letter-spacing:-1.622976pt;}
.ls81{letter-spacing:-1.613120pt;}
.ls21{letter-spacing:-1.608576pt;}
.ls6f{letter-spacing:-1.604512pt;}
.ls19{letter-spacing:-1.604032pt;}
.ls7c{letter-spacing:-1.599488pt;}
.ls8d{letter-spacing:-1.594944pt;}
.ls8f{letter-spacing:-1.590400pt;}
.lse{letter-spacing:-1.529856pt;}
.ls2d{letter-spacing:-1.314560pt;}
.ls29{letter-spacing:-1.309504pt;}
.ls36{letter-spacing:-1.304448pt;}
.ls5f{letter-spacing:-1.299392pt;}
.ls20{letter-spacing:-1.290496pt;}
.ls22{letter-spacing:-1.285952pt;}
.ls1b{letter-spacing:-1.281408pt;}
.ls12{letter-spacing:-1.276000pt;}
.ls14{letter-spacing:-1.104000pt;}
.ls13{letter-spacing:-1.096000pt;}
.ls46{letter-spacing:-1.046592pt;}
.ls15{letter-spacing:-1.020000pt;}
.ls23{letter-spacing:-0.991648pt;}
.ls30{letter-spacing:-0.990976pt;}
.ls5{letter-spacing:-0.985920pt;}
.ls2c{letter-spacing:-0.980864pt;}
.ls1e{letter-spacing:-0.972416pt;}
.ls7a{letter-spacing:-0.967872pt;}
.ls72{letter-spacing:-0.963328pt;}
.ls66{letter-spacing:-0.961856pt;}
.ls11{letter-spacing:-0.960384pt;}
.ls78{letter-spacing:-0.958784pt;}
.ls87{letter-spacing:-0.954240pt;}
.ls2e{letter-spacing:-0.662336pt;}
.ls31{letter-spacing:-0.657280pt;}
.ls44{letter-spacing:-0.652224pt;}
.ls1a{letter-spacing:-0.649792pt;}
.ls3e{letter-spacing:-0.647168pt;}
.ls1c{letter-spacing:-0.645248pt;}
.ls64{letter-spacing:-0.642656pt;}
.lsa{letter-spacing:-0.639392pt;}
.ls16{letter-spacing:-0.636000pt;}
.ls65{letter-spacing:-0.634144pt;}
.ls63{letter-spacing:-0.629888pt;}
.ls4d{letter-spacing:-0.611776pt;}
.ls4a{letter-spacing:-0.576384pt;}
.ls57{letter-spacing:-0.546048pt;}
.ls49{letter-spacing:-0.520768pt;}
.ls4e{letter-spacing:-0.505600pt;}
.ls56{letter-spacing:-0.429760pt;}
.ls6c{letter-spacing:-0.414592pt;}
.ls42{letter-spacing:-0.348864pt;}
.ls34{letter-spacing:-0.333696pt;}
.ls33{letter-spacing:-0.328640pt;}
.ls59{letter-spacing:-0.327712pt;}
.ls51{letter-spacing:-0.323584pt;}
.ls7d{letter-spacing:-0.322624pt;}
.ls5e{letter-spacing:-0.318528pt;}
.ls8{letter-spacing:-0.318240pt;}
.ls60{letter-spacing:-0.310688pt;}
.ls55{letter-spacing:-0.096000pt;}
.ls39{letter-spacing:-0.083200pt;}
.ls4c{letter-spacing:-0.070400pt;}
.ls4{letter-spacing:-0.057600pt;}
.ls3a{letter-spacing:-0.019200pt;}
.lsf{letter-spacing:-0.012288pt;}
.ls3d{letter-spacing:-0.011712pt;}
.ls40{letter-spacing:-0.010112pt;}
.ls54{letter-spacing:-0.008512pt;}
.ls3c{letter-spacing:-0.005856pt;}
.ls2b{letter-spacing:-0.005056pt;}
.ls50{letter-spacing:-0.004256pt;}
.ls7{letter-spacing:-0.003744pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5b{letter-spacing:0.004256pt;}
.ls5c{letter-spacing:0.005056pt;}
.ls3b{letter-spacing:0.006400pt;}
.ls62{letter-spacing:0.306432pt;}
.ls85{letter-spacing:0.313536pt;}
.ls53{letter-spacing:0.314944pt;}
.ls6e{letter-spacing:0.318528pt;}
.ls6a{letter-spacing:0.319200pt;}
.ls6b{letter-spacing:0.323456pt;}
.ls45{letter-spacing:0.348864pt;}
.ls7e{letter-spacing:4.166848pt;}
.ls76{letter-spacing:5.443712pt;}
.ls67{letter-spacing:6.081824pt;}
.ls17{letter-spacing:8.443904pt;}
.ls8e{letter-spacing:8.642688pt;}
.ls5a{letter-spacing:10.563392pt;}
.ls52{letter-spacing:10.882592pt;}
.ls70{letter-spacing:12.432704pt;}
.ls86{letter-spacing:13.123072pt;}
.lsb{letter-spacing:18.540000pt;}
.ls88{letter-spacing:22.724544pt;}
.ws53{word-spacing:-23.678784pt;}
.wse{word-spacing:-22.687200pt;}
.wsf{word-spacing:-22.528800pt;}
.ws40{word-spacing:-15.942400pt;}
.ws28{word-spacing:-14.686848pt;}
.ws51{word-spacing:-13.759232pt;}
.ws4{word-spacing:-13.129728pt;}
.ws3a{word-spacing:-12.810560pt;}
.ws21{word-spacing:-12.741120pt;}
.ws1a{word-spacing:-12.736064pt;}
.ws20{word-spacing:-12.731008pt;}
.ws1{word-spacing:-12.467520pt;}
.ws27{word-spacing:-10.878336pt;}
.ws3d{word-spacing:-10.874080pt;}
.ws29{word-spacing:-10.559136pt;}
.ws2e{word-spacing:-10.554880pt;}
.ws23{word-spacing:-10.550624pt;}
.ws30{word-spacing:-10.244192pt;}
.ws3f{word-spacing:-10.227168pt;}
.ws8{word-spacing:-10.214912pt;}
.wsa{word-spacing:-10.210368pt;}
.ws37{word-spacing:-9.924992pt;}
.ws39{word-spacing:-9.920736pt;}
.ws55{word-spacing:-9.596928pt;}
.ws9{word-spacing:-9.569664pt;}
.ws2{word-spacing:-9.281376pt;}
.ws4d{word-spacing:-8.320064pt;}
.ws7{word-spacing:-8.292800pt;}
.wsb{word-spacing:-7.843680pt;}
.ws4b{word-spacing:-7.683904pt;}
.ws44{word-spacing:-7.679360pt;}
.ws19{word-spacing:-1.302912pt;}
.wsc{word-spacing:-1.268000pt;}
.ws2c{word-spacing:-0.333696pt;}
.ws18{word-spacing:-0.331968pt;}
.ws33{word-spacing:-0.328640pt;}
.wsd{word-spacing:-0.325728pt;}
.ws4f{word-spacing:-0.322624pt;}
.ws4a{word-spacing:-0.313536pt;}
.ws42{word-spacing:-0.308992pt;}
.ws35{word-spacing:-0.306432pt;}
.ws46{word-spacing:-0.304448pt;}
.ws3{word-spacing:-0.039360pt;}
.ws3b{word-spacing:-0.027200pt;}
.ws6{word-spacing:-0.024000pt;}
.ws1e{word-spacing:-0.010112pt;}
.ws1c{word-spacing:-0.005056pt;}
.ws1b{word-spacing:-0.003744pt;}
.ws0{word-spacing:0.000000pt;}
.ws36{word-spacing:0.004256pt;}
.ws43{word-spacing:0.004544pt;}
.ws26{word-spacing:0.008512pt;}
.ws13{word-spacing:0.009088pt;}
.ws2a{word-spacing:0.011712pt;}
.ws3e{word-spacing:0.012768pt;}
.ws12{word-spacing:0.013632pt;}
.ws45{word-spacing:0.018176pt;}
.ws25{word-spacing:0.313472pt;}
.ws1d{word-spacing:0.318528pt;}
.ws11{word-spacing:0.320000pt;}
.ws24{word-spacing:0.322080pt;}
.ws47{word-spacing:0.322624pt;}
.ws1f{word-spacing:0.323584pt;}
.ws14{word-spacing:0.327168pt;}
.ws34{word-spacing:0.327712pt;}
.ws2b{word-spacing:0.327936pt;}
.ws41{word-spacing:0.331712pt;}
.ws10{word-spacing:0.468000pt;}
.ws56{word-spacing:0.636160pt;}
.ws16{word-spacing:0.645248pt;}
.ws22{word-spacing:0.647168pt;}
.ws17{word-spacing:0.649792pt;}
.ws52{word-spacing:0.654336pt;}
.ws5{word-spacing:0.921024pt;}
.ws15{word-spacing:0.963328pt;}
.ws4c{word-spacing:0.967872pt;}
.ws49{word-spacing:0.976960pt;}
.ws57{word-spacing:1.285952pt;}
.ws54{word-spacing:1.295040pt;}
.ws48{word-spacing:1.608576pt;}
.ws50{word-spacing:2.562816pt;}
.ws4e{word-spacing:3.212608pt;}
.ws38{word-spacing:36.805888pt;}
.ws32{word-spacing:96.245184pt;}
.ws3c{word-spacing:104.638016pt;}
.ws2d{word-spacing:134.476832pt;}
.ws2f{word-spacing:175.679168pt;}
.ws31{word-spacing:186.246816pt;}
._49{margin-left:-24.655744pt;}
._10{margin-left:-23.688000pt;}
._d{margin-left:-22.708800pt;}
._c{margin-left:-21.736800pt;}
._f{margin-left:-20.750400pt;}
._11{margin-left:-18.489600pt;}
._47{margin-left:-14.727104pt;}
._48{margin-left:-13.772864pt;}
._44{margin-left:-12.422592pt;}
._14{margin-left:-11.355008pt;}
._22{margin-left:-10.410176pt;}
._23{margin-left:-9.448320pt;}
._3e{margin-left:-8.311968pt;}
._3f{margin-left:-7.384160pt;}
._45{margin-left:-5.393568pt;}
._6{margin-left:-4.020000pt;}
._5{margin-left:-2.840000pt;}
._2{margin-left:-1.384000pt;}
._0{width:0.940000pt;}
._1{width:2.228000pt;}
._b{width:3.310400pt;}
._46{width:4.328288pt;}
._15{width:5.418880pt;}
._9{width:6.409728pt;}
._7{width:8.185664pt;}
._8{width:9.163840pt;}
._4{width:10.544000pt;}
._16{width:11.912320pt;}
._43{width:12.850528pt;}
._1b{width:13.747264pt;}
._13{width:15.117952pt;}
._1c{width:16.032576pt;}
._12{width:16.984288pt;}
._19{width:17.989248pt;}
._18{width:18.980224pt;}
._3{width:20.524000pt;}
._a{width:21.664800pt;}
._e{width:23.328000pt;}
._17{width:24.774784pt;}
._1d{width:26.224128pt;}
._1a{width:28.455168pt;}
._20{width:29.481952pt;}
._26{width:35.716000pt;}
._1f{width:37.611584pt;}
._1e{width:39.244672pt;}
._3a{width:40.139264pt;}
._40{width:87.316704pt;}
._38{width:89.879008pt;}
._42{width:118.044416pt;}
._41{width:123.832576pt;}
._31{width:125.760544pt;}
._2a{width:128.641856pt;}
._25{width:138.243392pt;}
._30{width:139.545728pt;}
._37{width:145.274304pt;}
._21{width:151.748832pt;}
._28{width:184.336448pt;}
._24{width:190.724704pt;}
._2f{width:192.005184pt;}
._29{width:196.154784pt;}
._27{width:214.732800pt;}
._3c{width:224.356416pt;}
._36{width:229.173408pt;}
._33{width:230.726272pt;}
._39{width:234.880704pt;}
._34{width:239.046752pt;}
._3d{width:263.415936pt;}
._35{width:275.580832pt;}
._3b{width:291.330336pt;}
._2e{width:335.670720pt;}
._2c{width:339.259104pt;}
._32{width:370.254976pt;}
._2b{width:384.657856pt;}
._2d{width:389.138848pt;}
.fs9{font-size:4.160000pt;}
.fsc{font-size:24.000000pt;}
.fs11{font-size:27.200000pt;}
.fs10{font-size:32.320000pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:37.440000pt;}
.fsb{font-size:39.360000pt;}
.fs5{font-size:40.000000pt;}
.fsd{font-size:42.560000pt;}
.fse{font-size:45.440000pt;}
.fs6{font-size:50.560000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsf{font-size:58.560000pt;}
.fsa{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:72.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:2.239867pt;}
.y4c{bottom:2.719867pt;}
.y220{bottom:2.879733pt;}
.y3a{bottom:2.879867pt;}
.y7{bottom:31.933340pt;}
.y58{bottom:58.815867pt;}
.y6{bottom:59.133337pt;}
.y5a{bottom:65.615509pt;}
.y56{bottom:65.936000pt;}
.y55{bottom:68.175427pt;}
.y54{bottom:77.455867pt;}
.y5{bottom:86.333337pt;}
.y27{bottom:103.455867pt;}
.y2a1{bottom:104.175579pt;}
.y140{bottom:104.655867pt;}
.y23c{bottom:104.655947pt;}
.y1c5{bottom:107.378835pt;}
.y2d9{bottom:109.289685pt;}
.y86{bottom:110.251739pt;}
.y279{bottom:110.495483pt;}
.y272{bottom:111.452027pt;}
.y256{bottom:111.694715pt;}
.y120{bottom:111.933275pt;}
.yff{bottom:113.615483pt;}
.y2a{bottom:114.175771pt;}
.y196{bottom:116.975291pt;}
.y26{bottom:116.975867pt;}
.y2a0{bottom:117.215723pt;}
.y311{bottom:117.292267pt;}
.y1e2{bottom:117.295675pt;}
.y1d4{bottom:117.295771pt;}
.y23b{bottom:117.455867pt;}
.y1c4{bottom:120.178755pt;}
.y24{bottom:123.790666pt;}
.y16b{bottom:126.258203pt;}
.y2d8{bottom:126.329685pt;}
.yb1{bottom:128.088043pt;}
.y85{bottom:128.091835pt;}
.y278{bottom:128.335579pt;}
.y271{bottom:129.292123pt;}
.y255{bottom:129.534811pt;}
.y11f{bottom:129.773371pt;}
.y29f{bottom:130.255867pt;}
.y310{bottom:130.332411pt;}
.yfe{bottom:131.455579pt;}
.y29{bottom:132.015867pt;}
.y1c3{bottom:132.978675pt;}
.y25{bottom:133.055867pt;}
.y195{bottom:134.815387pt;}
.y1d2{bottom:135.134811pt;}
.y1e1{bottom:135.135771pt;}
.y1d3{bottom:135.135867pt;}
.y16a{bottom:139.058123pt;}
.y2d7{bottom:139.369829pt;}
.y30f{bottom:143.372555pt;}
.y16d{bottom:145.458083pt;}
.y1c2{bottom:145.778595pt;}
.yb0{bottom:145.928139pt;}
.y84{bottom:145.931931pt;}
.y277{bottom:146.175675pt;}
.y270{bottom:147.132219pt;}
.y254{bottom:147.374907pt;}
.y11e{bottom:147.613467pt;}
.yfd{bottom:149.295675pt;}
.y169{bottom:151.858043pt;}
.y2d6{bottom:152.409973pt;}
.y194{bottom:152.655483pt;}
.y1d1{bottom:152.974907pt;}
.y1df{bottom:152.975771pt;}
.y1e0{bottom:152.975867pt;}
.y30e{bottom:156.412699pt;}
.y16c{bottom:158.258003pt;}
.y1c1{bottom:158.578515pt;}
.yaf{bottom:163.768235pt;}
.y83{bottom:163.772027pt;}
.y276{bottom:164.015771pt;}
.y168{bottom:164.657963pt;}
.y26f{bottom:164.972315pt;}
.y253{bottom:165.215003pt;}
.y2d5{bottom:165.450117pt;}
.y11d{bottom:165.453563pt;}
.yfc{bottom:167.135771pt;}
.yd8{bottom:167.612603pt;}
.y30d{bottom:169.452843pt;}
.y193{bottom:170.495579pt;}
.y1d0{bottom:170.815003pt;}
.y1dd{bottom:170.815195pt;}
.y1de{bottom:170.815867pt;}
.y1c0{bottom:171.378435pt;}
.y1b{bottom:175.052000pt;}
.y167{bottom:177.457883pt;}
.y2d4{bottom:178.490261pt;}
.y29e{bottom:178.815867pt;}
.yae{bottom:181.608331pt;}
.y82{bottom:181.612123pt;}
.y28{bottom:181.855867pt;}
.y30c{bottom:182.492987pt;}
.y26e{bottom:182.812411pt;}
.y252{bottom:183.055099pt;}
.y148{bottom:183.292315pt;}
.y11c{bottom:183.293659pt;}
.y1bf{bottom:184.178355pt;}
.yfb{bottom:184.975867pt;}
.yd7{bottom:185.452699pt;}
.y23{bottom:186.238666pt;}
.y1a{bottom:186.252002pt;}
.y192{bottom:188.335675pt;}
.y1cf{bottom:188.655099pt;}
.y1dc{bottom:188.655291pt;}
.y2d3{bottom:195.530261pt;}
.y30b{bottom:195.533131pt;}
.y166{bottom:195.698035pt;}
.y1be{bottom:196.978275pt;}
.y22{bottom:197.438668pt;}
.y19{bottom:197.452004pt;}
.yad{bottom:199.448427pt;}
.y81{bottom:199.452219pt;}
.y26d{bottom:200.652507pt;}
.y251{bottom:200.895195pt;}
.y147{bottom:201.132411pt;}
.y11b{bottom:201.133755pt;}
.yd6{bottom:203.292795pt;}
.y191{bottom:206.175771pt;}
.y1ce{bottom:206.495195pt;}
.y1db{bottom:206.495387pt;}
.y165{bottom:208.497955pt;}
.y2d2{bottom:208.570405pt;}
.y21{bottom:208.638670pt;}
.y18{bottom:208.651996pt;}
.y30a{bottom:212.573131pt;}
.y1ad{bottom:215.216299pt;}
.y1b5{bottom:215.217363pt;}
.y1bd{bottom:215.218427pt;}
.yac{bottom:217.288523pt;}
.y80{bottom:217.292315pt;}
.yfa{bottom:217.295867pt;}
.y26c{bottom:218.492603pt;}
.y250{bottom:218.735291pt;}
.y146{bottom:218.972507pt;}
.y11a{bottom:218.973851pt;}
.yd5{bottom:221.132891pt;}
.y164{bottom:221.297875pt;}
.y2d1{bottom:221.610549pt;}
.y18e{bottom:224.015483pt;}
.y190{bottom:224.015867pt;}
.y1cd{bottom:224.335291pt;}
.y1da{bottom:224.335483pt;}
.y309{bottom:225.613275pt;}
.y1ac{bottom:228.016219pt;}
.y1b4{bottom:228.017283pt;}
.y1bc{bottom:228.018347pt;}
.y18f{bottom:229.695867pt;}
.y20{bottom:231.038664pt;}
.y17{bottom:231.052000pt;}
.y275{bottom:232.335867pt;}
.y163{bottom:234.097795pt;}
.y2d0{bottom:234.650693pt;}
.yab{bottom:235.128619pt;}
.y7f{bottom:235.132411pt;}
.y26b{bottom:236.332699pt;}
.y24f{bottom:236.575387pt;}
.y145{bottom:236.812603pt;}
.y119{bottom:236.813947pt;}
.y334{bottom:238.650549pt;}
.y308{bottom:238.653419pt;}
.yd4{bottom:238.972987pt;}
.y1ab{bottom:240.816139pt;}
.y1b3{bottom:240.817203pt;}
.y1bb{bottom:240.818267pt;}
.y18d{bottom:241.855579pt;}
.y1cc{bottom:242.175387pt;}
.y1d9{bottom:242.175579pt;}
.y1f{bottom:242.238666pt;}
.y16{bottom:242.252002pt;}
.y34d{bottom:242.655147pt;}
.y2cf{bottom:251.690693pt;}
.y307{bottom:251.693563pt;}
.y160{bottom:252.258147pt;}
.yaa{bottom:252.968715pt;}
.y29d{bottom:252.972299pt;}
.y7e{bottom:252.972507pt;}
.y1e{bottom:253.438668pt;}
.y15{bottom:253.451999pt;}
.y1aa{bottom:253.616059pt;}
.y1b2{bottom:253.617123pt;}
.y1ba{bottom:253.618187pt;}
.y26a{bottom:254.172795pt;}
.y24e{bottom:254.415483pt;}
.y144{bottom:254.652699pt;}
.y118{bottom:254.654043pt;}
.y34c{bottom:255.695291pt;}
.yd3{bottom:256.813083pt;}
.y18c{bottom:259.695675pt;}
.y1cb{bottom:260.015483pt;}
.y1d8{bottom:260.015675pt;}
.y53{bottom:261.295867pt;}
.y2ce{bottom:264.730837pt;}
.y15f{bottom:265.058067pt;}
.y1a9{bottom:266.415979pt;}
.y1b1{bottom:266.417043pt;}
.y1b9{bottom:266.418107pt;}
.y306{bottom:268.733563pt;}
.y34b{bottom:268.735435pt;}
.ya9{bottom:270.808811pt;}
.y29c{bottom:270.812395pt;}
.y7d{bottom:270.812603pt;}
.y162{bottom:271.458027pt;}
.y269{bottom:272.012891pt;}
.y24d{bottom:272.255579pt;}
.y143{bottom:272.492795pt;}
.y117{bottom:272.494139pt;}
.yf9{bottom:272.495771pt;}
.yd2{bottom:274.653179pt;}
.y1d{bottom:275.838667pt;}
.y14{bottom:275.852001pt;}
.y18b{bottom:277.535771pt;}
.y2cd{bottom:277.770981pt;}
.y1ca{bottom:277.855579pt;}
.y1d7{bottom:277.855771pt;}
.y15e{bottom:277.857987pt;}
.y1a8{bottom:279.215899pt;}
.y1b0{bottom:279.216963pt;}
.y1b8{bottom:279.218027pt;}
.y305{bottom:281.773707pt;}
.y34a{bottom:281.775579pt;}
.y161{bottom:284.257947pt;}
.y1c{bottom:287.038667pt;}
.y13{bottom:287.052000pt;}
.ya8{bottom:288.648907pt;}
.y29b{bottom:288.652491pt;}
.y7c{bottom:288.652699pt;}
.y268{bottom:289.852987pt;}
.y24c{bottom:290.095675pt;}
.y142{bottom:290.332891pt;}
.y116{bottom:290.334235pt;}
.yf8{bottom:290.335867pt;}
.y15d{bottom:290.657907pt;}
.y2cc{bottom:290.811125pt;}
.y1a7{bottom:292.015819pt;}
.y1af{bottom:292.016883pt;}
.y1b7{bottom:292.017947pt;}
.yd1{bottom:292.493275pt;}
.y333{bottom:294.810981pt;}
.y304{bottom:294.813851pt;}
.y349{bottom:294.815723pt;}
.y18a{bottom:295.375867pt;}
.y1c9{bottom:295.695675pt;}
.y1d6{bottom:295.695867pt;}
.y52{bottom:302.256219pt;}
.y15c{bottom:303.457827pt;}
.y2cb{bottom:303.851269pt;}
.y1a6{bottom:304.815739pt;}
.y1ae{bottom:304.816803pt;}
.y1b6{bottom:304.817867pt;}
.ya7{bottom:306.489003pt;}
.y29a{bottom:306.492587pt;}
.y7b{bottom:306.492795pt;}
.y267{bottom:307.693083pt;}
.y332{bottom:307.851125pt;}
.y303{bottom:307.853995pt;}
.y348{bottom:307.855867pt;}
.y24b{bottom:307.935771pt;}
.y141{bottom:308.172987pt;}
.y115{bottom:308.174331pt;}
.y12{bottom:309.452000pt;}
.yd0{bottom:310.333371pt;}
.y1c8{bottom:313.535771pt;}
.y51{bottom:315.856411pt;}
.y1a5{bottom:317.615659pt;}
.y2ca{bottom:320.891269pt;}
.y302{bottom:320.894139pt;}
.y159{bottom:321.696915pt;}
.ya6{bottom:324.329099pt;}
.y299{bottom:324.332683pt;}
.y7a{bottom:324.332891pt;}
.y347{bottom:324.895867pt;}
.y266{bottom:325.533179pt;}
.y24a{bottom:325.775867pt;}
.yf7{bottom:326.013083pt;}
.y114{bottom:326.014427pt;}
.y189{bottom:327.696235pt;}
.ycf{bottom:328.173467pt;}
.y50{bottom:329.375947pt;}
.y1d5{bottom:331.375659pt;}
.y1c7{bottom:331.375867pt;}
.y2c9{bottom:333.931413pt;}
.y158{bottom:334.496835pt;}
.y1a4{bottom:335.776011pt;}
.y346{bottom:337.925589pt;}
.y331{bottom:337.931269pt;}
.y301{bottom:337.934139pt;}
.ya5{bottom:342.169195pt;}
.y298{bottom:342.172779pt;}
.y79{bottom:342.172987pt;}
.y4f{bottom:342.976139pt;}
.y265{bottom:343.373275pt;}
.y11{bottom:343.809333pt;}
.yf6{bottom:343.853179pt;}
.y113{bottom:343.854523pt;}
.y188{bottom:343.855867pt;}
.yce{bottom:346.013563pt;}
.y2c8{bottom:346.971557pt;}
.y157{bottom:347.296755pt;}
.y1a3{bottom:348.575931pt;}
.y345{bottom:350.965733pt;}
.y330{bottom:350.971413pt;}
.y300{bottom:350.974283pt;}
.y4e{bottom:356.576331pt;}
.ya4{bottom:360.009291pt;}
.y2c7{bottom:360.011701pt;}
.y297{bottom:360.012875pt;}
.y78{bottom:360.013083pt;}
.y156{bottom:360.096675pt;}
.y264{bottom:361.213371pt;}
.y1a2{bottom:361.375851pt;}
.yf5{bottom:361.693275pt;}
.y112{bottom:361.694619pt;}
.y10{bottom:362.706666pt;}
.ycd{bottom:363.853659pt;}
.y344{bottom:364.005877pt;}
.y2ff{bottom:364.014427pt;}
.y4b{bottom:367.376000pt;}
.y32f{bottom:368.011413pt;}
.y4a{bottom:370.095803pt;}
.y4d{bottom:370.095867pt;}
.y155{bottom:372.896595pt;}
.y229{bottom:373.934109pt;}
.y1a1{bottom:374.175771pt;}
.y249{bottom:376.255867pt;}
.y2c6{bottom:377.051701pt;}
.y2fe{bottom:377.054571pt;}
.ya3{bottom:377.849387pt;}
.y296{bottom:377.852971pt;}
.y77{bottom:377.853179pt;}
.y263{bottom:379.053467pt;}
.y233{bottom:379.295867pt;}
.yf4{bottom:379.533371pt;}
.y111{bottom:379.534715pt;}
.y343{bottom:381.045877pt;}
.y32e{bottom:381.051557pt;}
.ycc{bottom:381.693755pt;}
.y49{bottom:383.695995pt;}
.y154{bottom:385.696515pt;}
.y232{bottom:388.655867pt;}
.y2c5{bottom:390.091845pt;}
.y228{bottom:392.174261pt;}
.y1a0{bottom:392.415923pt;}
.y342{bottom:394.086021pt;}
.y32d{bottom:394.091701pt;}
.y2fd{bottom:394.094571pt;}
.ya2{bottom:395.689483pt;}
.y295{bottom:395.693067pt;}
.y76{bottom:395.693275pt;}
.y128{bottom:395.695291pt;}
.y262{bottom:396.893563pt;}
.y48{bottom:397.296187pt;}
.yf3{bottom:397.373467pt;}
.y110{bottom:397.374811pt;}
.y153{bottom:398.496435pt;}
.y187{bottom:399.055003pt;}
.ycb{bottom:399.533851pt;}
.y2c4{bottom:403.131989pt;}
.y19f{bottom:405.215843pt;}
.y231{bottom:405.694707pt;}
.y341{bottom:407.126165pt;}
.y32c{bottom:407.131845pt;}
.y2fc{bottom:407.134715pt;}
.y227{bottom:410.414413pt;}
.y47{bottom:410.815723pt;}
.y152{bottom:411.296355pt;}
.y15b{bottom:411.297419pt;}
.ya1{bottom:413.529579pt;}
.y294{bottom:413.533163pt;}
.y75{bottom:413.533371pt;}
.y127{bottom:413.535387pt;}
.y261{bottom:414.733659pt;}
.yf2{bottom:415.213563pt;}
.y10f{bottom:415.214907pt;}
.y2c3{bottom:416.172133pt;}
.y186{bottom:416.895099pt;}
.yca{bottom:417.373947pt;}
.y19e{bottom:418.015763pt;}
.y340{bottom:420.166309pt;}
.y2fb{bottom:420.174859pt;}
.y230{bottom:423.934859pt;}
.y151{bottom:424.096275pt;}
.y15a{bottom:424.097339pt;}
.y32b{bottom:424.171845pt;}
.y46{bottom:424.415915pt;}
.y226{bottom:428.574765pt;}
.y23a{bottom:428.655291pt;}
.y2c2{bottom:429.212277pt;}
.y19d{bottom:430.815683pt;}
.yf{bottom:430.990669pt;}
.ya0{bottom:431.369675pt;}
.y293{bottom:431.373259pt;}
.y74{bottom:431.373467pt;}
.y126{bottom:431.375483pt;}
.y260{bottom:432.573755pt;}
.yf1{bottom:433.053659pt;}
.y10e{bottom:433.055003pt;}
.y33f{bottom:433.206453pt;}
.y2fa{bottom:433.215003pt;}
.y13f{bottom:433.293851pt;}
.y185{bottom:434.735195pt;}
.yc9{bottom:435.214043pt;}
.y150{bottom:436.896195pt;}
.y32a{bottom:437.211989pt;}
.y45{bottom:438.016107pt;}
.y22f{bottom:442.095211pt;}
.y19c{bottom:443.615603pt;}
.y2c1{bottom:446.252277pt;}
.y225{bottom:446.814917pt;}
.y239{bottom:446.815643pt;}
.ye{bottom:446.990669pt;}
.y9f{bottom:449.209771pt;}
.y292{bottom:449.213355pt;}
.y73{bottom:449.213563pt;}
.y14f{bottom:449.696115pt;}
.y33e{bottom:450.246453pt;}
.y329{bottom:450.252133pt;}
.y2f9{bottom:450.255003pt;}
.y25f{bottom:450.413851pt;}
.y248{bottom:450.415099pt;}
.yf0{bottom:450.893755pt;}
.y10d{bottom:450.895099pt;}
.y13e{bottom:451.133947pt;}
.y44{bottom:451.535643pt;}
.y184{bottom:452.575291pt;}
.yc8{bottom:453.054139pt;}
.y19b{bottom:456.415523pt;}
.y2c0{bottom:459.292421pt;}
.y22e{bottom:460.335363pt;}
.y14e{bottom:462.496035pt;}
.yd{bottom:462.990669pt;}
.y33d{bottom:463.286597pt;}
.y328{bottom:463.292277pt;}
.y2f8{bottom:463.295147pt;}
.y224{bottom:465.055069pt;}
.y238{bottom:465.055795pt;}
.y43{bottom:465.135835pt;}
.y9e{bottom:467.049867pt;}
.y291{bottom:467.053451pt;}
.y72{bottom:467.053659pt;}
.y125{bottom:467.055675pt;}
.y25e{bottom:468.253947pt;}
.y247{bottom:468.255195pt;}
.yef{bottom:468.733851pt;}
.y10c{bottom:468.735195pt;}
.y13d{bottom:468.974043pt;}
.y183{bottom:470.415387pt;}
.yc7{bottom:470.894235pt;}
.y2bf{bottom:472.332565pt;}
.y19a{bottom:474.655675pt;}
.y14d{bottom:475.295955pt;}
.y33c{bottom:476.326741pt;}
.y2f7{bottom:476.335291pt;}
.y22d{bottom:478.575515pt;}
.y42{bottom:478.736027pt;}
.yc{bottom:478.990666pt;}
.y327{bottom:480.332277pt;}
.y222{bottom:483.215421pt;}
.y237{bottom:483.295947pt;}
.y9d{bottom:484.889963pt;}
.y290{bottom:484.893547pt;}
.y71{bottom:484.893755pt;}
.y124{bottom:484.895771pt;}
.y2be{bottom:485.372709pt;}
.y25d{bottom:486.094043pt;}
.y246{bottom:486.095291pt;}
.yee{bottom:486.573947pt;}
.y10b{bottom:486.575291pt;}
.y13c{bottom:486.814139pt;}
.y199{bottom:487.455595pt;}
.y14c{bottom:488.095875pt;}
.y182{bottom:488.255483pt;}
.yc6{bottom:488.734331pt;}
.y33b{bottom:489.366885pt;}
.y2f6{bottom:489.375435pt;}
.y221{bottom:489.615381pt;}
.y235{bottom:489.695723pt;}
.y41{bottom:492.255563pt;}
.y326{bottom:493.372421pt;}
.yb{bottom:494.990666pt;}
.y223{bottom:496.015341pt;}
.y236{bottom:496.095867pt;}
.y22c{bottom:496.735867pt;}
.y2bd{bottom:498.412853pt;}
.y198{bottom:500.255515pt;}
.y14b{bottom:500.895795pt;}
.y33a{bottom:502.407029pt;}
.y2f5{bottom:502.415579pt;}
.y9c{bottom:502.730059pt;}
.y28f{bottom:502.733643pt;}
.y70{bottom:502.733851pt;}
.y123{bottom:502.735867pt;}
.y25c{bottom:503.934139pt;}
.y245{bottom:503.935387pt;}
.yed{bottom:504.414043pt;}
.y10a{bottom:504.415387pt;}
.y13b{bottom:504.654235pt;}
.y40{bottom:505.855755pt;}
.y181{bottom:506.095579pt;}
.y325{bottom:506.412565pt;}
.yc5{bottom:506.574427pt;}
.y14a{bottom:513.695715pt;}
.y2bc{bottom:515.452853pt;}
.y2f4{bottom:515.455723pt;}
.y22b{bottom:516.256000pt;}
.y197{bottom:518.415867pt;}
.y22a{bottom:519.135867pt;}
.y339{bottom:519.447029pt;}
.y3f{bottom:519.455947pt;}
.y234{bottom:519.855867pt;}
.y9b{bottom:520.570155pt;}
.y28e{bottom:520.573739pt;}
.y6f{bottom:520.573947pt;}
.y122{bottom:520.575771pt;}
.y25b{bottom:521.774235pt;}
.y244{bottom:521.775483pt;}
.yec{bottom:522.254139pt;}
.y109{bottom:522.255483pt;}
.y13a{bottom:522.494331pt;}
.y324{bottom:523.452565pt;}
.y180{bottom:523.935675pt;}
.yc4{bottom:524.414523pt;}
.y2bb{bottom:528.492997pt;}
.y149{bottom:531.935867pt;}
.y338{bottom:532.487173pt;}
.y2f3{bottom:532.495723pt;}
.y3e{bottom:532.975483pt;}
.y323{bottom:536.492709pt;}
.y9a{bottom:538.410251pt;}
.y28d{bottom:538.413835pt;}
.y6e{bottom:538.414043pt;}
.y121{bottom:538.415867pt;}
.y25a{bottom:539.614331pt;}
.y243{bottom:539.615579pt;}
.yeb{bottom:540.094235pt;}
.y108{bottom:540.095579pt;}
.y139{bottom:540.334427pt;}
.y1c6{bottom:541.455867pt;}
.y2ba{bottom:541.533141pt;}
.y17f{bottom:541.775771pt;}
.yc3{bottom:542.254619pt;}
.y2f2{bottom:545.527317pt;}
.y3d{bottom:546.575675pt;}
.y322{bottom:549.532853pt;}
.y21d{bottom:553.862883pt;}
.y16e{bottom:554.975867pt;}
.y99{bottom:556.250347pt;}
.y28c{bottom:556.253931pt;}
.y6d{bottom:556.254139pt;}
.y259{bottom:557.454427pt;}
.y242{bottom:557.455675pt;}
.y23f{bottom:557.455947pt;}
.yea{bottom:557.934331pt;}
.y107{bottom:557.935675pt;}
.y138{bottom:558.174523pt;}
.y2f1{bottom:558.567461pt;}
.y2b9{bottom:558.573141pt;}
.y17d{bottom:559.615771pt;}
.y17e{bottom:559.615867pt;}
.yc2{bottom:560.094715pt;}
.y3c{bottom:560.175867pt;}
.y321{bottom:562.572997pt;}
.y21c{bottom:566.662803pt;}
.y23e{bottom:567.376000pt;}
.y23d{bottom:570.255867pt;}
.y2f0{bottom:571.607605pt;}
.y2b8{bottom:571.613285pt;}
.ya{bottom:573.786667pt;}
.y98{bottom:574.090443pt;}
.y28b{bottom:574.094027pt;}
.y6c{bottom:574.094235pt;}
.y258{bottom:575.294523pt;}
.y241{bottom:575.295771pt;}
.y320{bottom:575.613141pt;}
.ye9{bottom:575.774427pt;}
.y106{bottom:575.775771pt;}
.y137{bottom:576.014619pt;}
.y17c{bottom:577.455867pt;}
.yc1{bottom:577.934811pt;}
.y21b{bottom:579.462723pt;}
.y39{bottom:581.696000pt;}
.y3b{bottom:584.575867pt;}
.y2b7{bottom:584.653429pt;}
.y2ef{bottom:588.647605pt;}
.y97{bottom:591.930539pt;}
.y28a{bottom:591.934123pt;}
.y6b{bottom:591.934331pt;}
.y31f{bottom:592.653141pt;}
.y9{bottom:592.685334pt;}
.y257{bottom:593.134619pt;}
.y240{bottom:593.135867pt;}
.ye8{bottom:593.614523pt;}
.y105{bottom:593.615867pt;}
.y136{bottom:593.854715pt;}
.yc0{bottom:595.774907pt;}
.y21a{bottom:597.702875pt;}
.y2ee{bottom:601.687749pt;}
.y2b6{bottom:601.693429pt;}
.y31e{bottom:605.693285pt;}
.y96{bottom:609.770635pt;}
.y289{bottom:609.774219pt;}
.y6a{bottom:609.774427pt;}
.y17b{bottom:609.776235pt;}
.y219{bottom:610.502795pt;}
.ye7{bottom:611.454619pt;}
.y135{bottom:611.694811pt;}
.ybf{bottom:613.615003pt;}
.y2ed{bottom:614.727893pt;}
.y2b5{bottom:614.733573pt;}
.y31d{bottom:618.733429pt;}
.y218{bottom:623.302715pt;}
.y104{bottom:625.935867pt;}
.y95{bottom:627.610731pt;}
.y288{bottom:627.614315pt;}
.y69{bottom:627.614523pt;}
.y2ec{bottom:627.768037pt;}
.y2b4{bottom:627.773717pt;}
.ye6{bottom:629.294715pt;}
.y134{bottom:629.534907pt;}
.ybe{bottom:631.455099pt;}
.y31c{bottom:631.773573pt;}
.y38{bottom:633.295867pt;}
.y274{bottom:636.815947pt;}
.y2eb{bottom:640.808181pt;}
.y2b3{bottom:640.813861pt;}
.y217{bottom:641.463067pt;}
.y37{bottom:643.935867pt;}
.y31b{bottom:644.813717pt;}
.y94{bottom:645.450827pt;}
.y287{bottom:645.454411pt;}
.y68{bottom:645.454619pt;}
.y8{bottom:645.598667pt;}
.ye5{bottom:647.134811pt;}
.y133{bottom:647.375003pt;}
.ybd{bottom:649.295195pt;}
.y273{bottom:649.615867pt;}
.y216{bottom:654.262987pt;}
.y36{bottom:654.575867pt;}
.y2ea{bottom:657.848181pt;}
.y2b2{bottom:657.853861pt;}
.y31a{bottom:661.853717pt;}
.y93{bottom:663.290923pt;}
.y286{bottom:663.294507pt;}
.y67{bottom:663.294715pt;}
.ye4{bottom:664.974907pt;}
.y132{bottom:665.215099pt;}
.y35{bottom:665.295867pt;}
.y215{bottom:667.062907pt;}
.ybc{bottom:667.135291pt;}
.y4{bottom:668.977329pt;}
.y2e9{bottom:670.888325pt;}
.y2b1{bottom:670.894005pt;}
.y319{bottom:674.893861pt;}
.y92{bottom:681.131019pt;}
.y17a{bottom:681.133915pt;}
.y285{bottom:681.134603pt;}
.y66{bottom:681.134811pt;}
.y103{bottom:681.135771pt;}
.ye3{bottom:682.815003pt;}
.y131{bottom:683.055195pt;}
.y2e8{bottom:683.928469pt;}
.y2b0{bottom:683.934149pt;}
.ybb{bottom:684.975387pt;}
.y1f5{bottom:685.297739pt;}
.y200{bottom:685.298803pt;}
.y20b{bottom:685.299867pt;}
.y34{bottom:687.775227pt;}
.y318{bottom:687.934005pt;}
.y2e7{bottom:696.968613pt;}
.y2af{bottom:696.974293pt;}
.y1f4{bottom:698.097659pt;}
.y1ff{bottom:698.098723pt;}
.y20a{bottom:698.099787pt;}
.y91{bottom:698.971115pt;}
.y179{bottom:698.974011pt;}
.y284{bottom:698.974699pt;}
.y65{bottom:698.974907pt;}
.y102{bottom:698.975867pt;}
.ye2{bottom:700.655099pt;}
.y130{bottom:700.895291pt;}
.y317{bottom:700.974149pt;}
.yba{bottom:702.815483pt;}
.y2e6{bottom:710.008757pt;}
.y2ae{bottom:710.014437pt;}
.y1f3{bottom:710.897579pt;}
.y1fe{bottom:710.898643pt;}
.y209{bottom:710.899707pt;}
.y33{bottom:712.335867pt;}
.y316{bottom:714.014293pt;}
.y90{bottom:716.811211pt;}
.y178{bottom:716.814107pt;}
.y283{bottom:716.814795pt;}
.y64{bottom:716.815003pt;}
.y101{bottom:716.815771pt;}
.ye1{bottom:718.495195pt;}
.y12f{bottom:718.735387pt;}
.yb9{bottom:720.655579pt;}
.y1ea{bottom:723.696435pt;}
.y1f2{bottom:723.697499pt;}
.y1fd{bottom:723.698563pt;}
.y208{bottom:723.699627pt;}
.y20e{bottom:723.700691pt;}
.y211{bottom:723.701755pt;}
.y214{bottom:723.702819pt;}
.y2e5{bottom:727.048757pt;}
.y2ad{bottom:727.054437pt;}
.y8f{bottom:734.651307pt;}
.y177{bottom:734.654203pt;}
.y282{bottom:734.654891pt;}
.y63{bottom:734.655099pt;}
.y100{bottom:734.655867pt;}
.ye0{bottom:736.335291pt;}
.y1f1{bottom:736.497419pt;}
.y1fc{bottom:736.498483pt;}
.y207{bottom:736.499547pt;}
.y12e{bottom:736.575483pt;}
.yb8{bottom:738.495675pt;}
.y2e4{bottom:740.088901pt;}
.y2ac{bottom:740.094581pt;}
.y32{bottom:746.735067pt;}
.y1f0{bottom:749.297339pt;}
.y1fb{bottom:749.298403pt;}
.y206{bottom:749.299467pt;}
.y8e{bottom:752.491403pt;}
.y176{bottom:752.494299pt;}
.y281{bottom:752.494987pt;}
.y62{bottom:752.495195pt;}
.y2e3{bottom:753.129045pt;}
.y2ab{bottom:753.134725pt;}
.ydf{bottom:754.175387pt;}
.y12d{bottom:754.415579pt;}
.yb7{bottom:756.335771pt;}
.y1e9{bottom:762.096195pt;}
.y1ef{bottom:762.097259pt;}
.y1fa{bottom:762.098323pt;}
.y205{bottom:762.099387pt;}
.y20d{bottom:762.100451pt;}
.y210{bottom:762.101515pt;}
.y213{bottom:762.102579pt;}
.y31{bottom:765.375867pt;}
.y2e2{bottom:766.169189pt;}
.y2aa{bottom:766.174869pt;}
.y315{bottom:770.174725pt;}
.y8d{bottom:770.331499pt;}
.y175{bottom:770.334395pt;}
.y280{bottom:770.335083pt;}
.y61{bottom:770.335291pt;}
.yde{bottom:772.015483pt;}
.y12c{bottom:772.255675pt;}
.yb6{bottom:774.175867pt;}
.y1ee{bottom:774.897179pt;}
.y1f9{bottom:774.898243pt;}
.y204{bottom:774.899307pt;}
.y337{bottom:779.209333pt;}
.y2a9{bottom:779.215013pt;}
.y3{bottom:781.661334pt;}
.y2e1{bottom:783.209189pt;}
.y314{bottom:783.214869pt;}
.y1ed{bottom:787.697099pt;}
.y1f8{bottom:787.698163pt;}
.y203{bottom:787.699227pt;}
.y8c{bottom:788.171595pt;}
.y174{bottom:788.174491pt;}
.y27f{bottom:788.175179pt;}
.y60{bottom:788.175387pt;}
.ydd{bottom:789.855579pt;}
.y12b{bottom:790.095771pt;}
.y2e0{bottom:796.249333pt;}
.y2a8{bottom:796.255013pt;}
.y1ec{bottom:800.497019pt;}
.y1f7{bottom:800.498083pt;}
.y202{bottom:800.499147pt;}
.y8b{bottom:806.011691pt;}
.y173{bottom:806.014587pt;}
.y27e{bottom:806.015275pt;}
.y5f{bottom:806.015483pt;}
.yb5{bottom:806.496235pt;}
.ydc{bottom:807.695675pt;}
.y12a{bottom:807.935867pt;}
.y2df{bottom:809.289477pt;}
.y2a7{bottom:809.295157pt;}
.y1e8{bottom:813.295875pt;}
.y1eb{bottom:813.296939pt;}
.y1f6{bottom:813.298003pt;}
.y201{bottom:813.299067pt;}
.y20c{bottom:813.300131pt;}
.y20f{bottom:813.301195pt;}
.y212{bottom:813.302259pt;}
.y2de{bottom:822.329621pt;}
.y2a6{bottom:822.335301pt;}
.yb4{bottom:822.655867pt;}
.y30{bottom:823.615691pt;}
.y8a{bottom:823.851787pt;}
.y172{bottom:823.854683pt;}
.y27d{bottom:823.855371pt;}
.y5e{bottom:823.855579pt;}
.ydb{bottom:825.535771pt;}
.y1e7{bottom:826.095795pt;}
.y2f{bottom:834.815867pt;}
.y2dd{bottom:835.369765pt;}
.y2a5{bottom:835.375445pt;}
.y313{bottom:839.375301pt;}
.y2{bottom:840.112001pt;}
.y129{bottom:840.255867pt;}
.y89{bottom:841.691883pt;}
.y171{bottom:841.694779pt;}
.y27c{bottom:841.695467pt;}
.y5d{bottom:841.695675pt;}
.yda{bottom:843.375867pt;}
.y1e6{bottom:844.335947pt;}
.y336{bottom:848.409909pt;}
.y2a4{bottom:848.415589pt;}
.y1e3{bottom:850.735867pt;}
.y1e4{bottom:850.895867pt;}
.y2dc{bottom:852.409765pt;}
.y312{bottom:852.415445pt;}
.y2e{bottom:856.255867pt;}
.yb3{bottom:856.975867pt;}
.y1e5{bottom:857.135867pt;}
.y1{bottom:859.312000pt;}
.y88{bottom:859.531979pt;}
.y170{bottom:859.534875pt;}
.y27b{bottom:859.535563pt;}
.y5c{bottom:859.535771pt;}
.y335{bottom:861.450053pt;}
.y2db{bottom:865.449909pt;}
.y2a3{bottom:865.455589pt;}
.yb2{bottom:874.575867pt;}
.yd9{bottom:875.695867pt;}
.y21f{bottom:877.296000pt;}
.y87{bottom:877.372075pt;}
.y16f{bottom:877.374971pt;}
.y27a{bottom:877.375659pt;}
.y5b{bottom:877.375867pt;}
.y2da{bottom:878.490053pt;}
.y2a2{bottom:878.495733pt;}
.y21e{bottom:880.175733pt;}
.y2d{bottom:889.455381pt;}
.y2c{bottom:900.655557pt;}
.y2b{bottom:911.855733pt;}
.y59{bottom:918.015733pt;}
.h17{height:10.560000pt;}
.h1f{height:10.880000pt;}
.h15{height:12.800000pt;}
.h12{height:13.040000pt;}
.h11{height:16.640625pt;}
.h1d{height:19.469881pt;}
.h1c{height:21.762344pt;}
.hc{height:25.922812pt;}
.h9{height:27.832031pt;}
.h7{height:28.560000pt;}
.h13{height:29.550937pt;}
.h16{height:29.758750pt;}
.hd{height:30.090937pt;}
.h20{height:30.728320pt;}
.h14{height:31.683750pt;}
.h22{height:31.717947pt;}
.h21{height:32.644219pt;}
.h1a{height:32.772031pt;}
.h19{height:34.241563pt;}
.hb{height:35.204375pt;}
.h1b{height:37.212160pt;}
.h18{height:40.631719pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.ha{height:44.468750pt;}
.h2{height:48.960000pt;}
.he{height:53.121094pt;}
.h1e{height:55.358590pt;}
.hf{height:55.996406pt;}
.h10{height:56.318966pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h8{height:994.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w5{width:7.360000pt;}
.w4{width:11.040000pt;}
.w9{width:21.040000pt;}
.w6{width:37.120000pt;}
.w7{width:39.760000pt;}
.w8{width:44.400000pt;}
.w2{width:566.928019pt;}
.w3{width:710.666667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:35.440000pt;}
.x5{left:79.360000pt;}
.x41{left:80.480000pt;}
.x1c{left:83.120408pt;}
.x39{left:84.239704pt;}
.xd{left:86.080000pt;}
.x6{left:88.720237pt;}
.x1{left:90.706667pt;}
.x11{left:92.400000pt;}
.x2{left:94.486667pt;}
.x52{left:95.920176pt;}
.x17{left:97.359880pt;}
.x16{left:102.000000pt;}
.x1b{left:105.840000pt;}
.x35{left:112.560000pt;}
.x19{left:115.040000pt;}
.xe{left:117.600000pt;}
.x1a{left:118.720000pt;}
.x44{left:138.559680pt;}
.x4d{left:139.920200pt;}
.x9{left:162.880000pt;}
.x4{left:180.874667pt;}
.x4e{left:193.199568pt;}
.x42{left:199.120000pt;}
.x14{left:201.360000pt;}
.x43{left:204.400000pt;}
.xa{left:224.160000pt;}
.x29{left:237.598384pt;}
.x26{left:240.320096pt;}
.x2a{left:242.956688pt;}
.x2b{left:244.560000pt;}
.x50{left:246.080368pt;}
.x3f{left:247.359416pt;}
.x40{left:248.560672pt;}
.x4f{left:252.560128pt;}
.x2c{left:256.560000pt;}
.x47{left:259.680000pt;}
.x48{left:263.600000pt;}
.xc{left:271.199880pt;}
.x1f{left:273.999880pt;}
.x20{left:276.320464pt;}
.x1d{left:278.080320pt;}
.x21{left:279.040048pt;}
.x1e{left:289.120384pt;}
.x49{left:298.720000pt;}
.x27{left:300.399920pt;}
.x28{left:303.118440pt;}
.x51{left:306.080392pt;}
.x3a{left:315.119192pt;}
.xb{left:357.120000pt;}
.x7{left:370.320000pt;}
.x4c{left:374.080000pt;}
.x4a{left:377.840368pt;}
.x8{left:383.680000pt;}
.x22{left:387.440016pt;}
.x4b{left:403.119792pt;}
.x3{left:404.408000pt;}
.x18{left:406.480000pt;}
.x23{left:413.040000pt;}
.x2f{left:432.720000pt;}
.x30{left:445.440000pt;}
.x3b{left:450.960072pt;}
.x12{left:476.640000pt;}
.x2d{left:483.280000pt;}
.x36{left:484.240000pt;}
.x2e{left:494.480000pt;}
.x37{left:505.040000pt;}
.x38{left:507.359520pt;}
.x3c{left:518.880512pt;}
.x33{left:530.480000pt;}
.x34{left:542.320000pt;}
.x45{left:547.919848pt;}
.x46{left:560.239904pt;}
.x31{left:578.080000pt;}
.x3d{left:584.160104pt;}
.x3e{left:586.799888pt;}
.x32{left:589.360000pt;}
.x53{left:610.160000pt;}
.x54{left:618.000000pt;}
.x15{left:621.759720pt;}
.xf{left:623.520000pt;}
.x24{left:627.440000pt;}
.x10{left:629.280000pt;}
.x25{left:631.440000pt;}
}




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