
    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_73685c3682bd3330cafbeef2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_69c723f57969881f14a15080.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_60bcbad5a03e4f2d32ee2ae7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916504;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_b3e9b3eaac66fc33155f4b72.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.184000;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_6eb7d146cca4e08744908836.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.164000;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_fd3c96c4cc8eba0f009dfa05.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.681641;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_56f9245491de53925fbb988f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_970595118aa33ef711990002.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.689453;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_c60e42aa0d5415da51e22099.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_9a1d0889a6eee636caf3b3da.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_81dc01f277178b40d06e5abd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e16ee3cca5a9d87277d72bfe.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.925293;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_abf077f860eab8032c9985cb.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_bb6f20670d59c74327f9aa0c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.740234;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_0ab66547b2e96328463586ee.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_0d1cd13efe642c1cd28e27de.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.860352;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_a92314354d4814b09a3d7a22.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.740234;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_8647445dca6392d20669cd22.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.717285;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_866e4d0112eac8d20f234d9c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_d2433b6c7c43582ad44c063e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.926758;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_6bd78671f5f8344e2d31fda0.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_dabb1f2d0aaadea076d52055.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.926758;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_9cd5191871fde0edb79bbb57.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.915527;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_c883c8a743a9b28d932cda6e.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.002930;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_56647c793528704cc2b2e1a6.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.677734;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_b6390e5ac4145ebe7755aeda.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.765625;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_dbe46091169846ae9005aeeb.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.860352;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_97cf0ca59722829c98572141.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.740234;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_a7fa7d2f44c27198d4bc16d2.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.717285;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_7b6d15d5ee2850a6577f6ccc.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.862793;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;}
.m6{transform:matrix(-0.004363,-0.249572,0.249962,-0.004356,0,0);-ms-transform:matrix(-0.004363,-0.249572,0.249962,-0.004356,0,0);-webkit-transform:matrix(-0.004363,-0.249572,0.249962,-0.004356,0,0);}
.mb{transform:matrix(-0.004363,-0.257923,0.249959,-0.004502,0,0);-ms-transform:matrix(-0.004363,-0.257923,0.249959,-0.004502,0,0);-webkit-transform:matrix(-0.004363,-0.257923,0.249959,-0.004502,0,0);}
.ma{transform:matrix(0.242281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242281,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249747,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249917,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249986,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);}
.m7{transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-27.360000px;}
.v4{vertical-align:-18.573000px;}
.v5{vertical-align:-14.859000px;}
.v6{vertical-align:-11.143800px;}
.v3{vertical-align:-7.429200px;}
.v8{vertical-align:-5.944800px;}
.v9{vertical-align:-4.458600px;}
.v7{vertical-align:-2.973000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:7.053600px;}
.v1{vertical-align:27.360000px;}
.ls81{letter-spacing:-8.477211px;}
.ls9a{letter-spacing:-4.329957px;}
.ls90{letter-spacing:-3.800957px;}
.ls9e{letter-spacing:-3.486986px;}
.ls83{letter-spacing:-2.796348px;}
.ls33{letter-spacing:-2.576736px;}
.ls1b{letter-spacing:-1.901088px;}
.ls50{letter-spacing:-1.861158px;}
.ls3f{letter-spacing:-1.803339px;}
.ls1c{letter-spacing:-1.742112px;}
.ls96{letter-spacing:-1.665368px;}
.ls41{letter-spacing:-1.633484px;}
.ls58{letter-spacing:-1.614330px;}
.ls19{letter-spacing:-1.589760px;}
.ls17{letter-spacing:-1.437408px;}
.ls1d{letter-spacing:-1.245312px;}
.ls37{letter-spacing:-1.203138px;}
.ls4c{letter-spacing:-1.150534px;}
.lse{letter-spacing:-1.132704px;}
.ls4d{letter-spacing:-1.127974px;}
.ls8c{letter-spacing:-1.121674px;}
.lsa2{letter-spacing:-1.097184px;}
.ls3c{letter-spacing:-1.070732px;}
.ls42{letter-spacing:-1.070214px;}
.ls54{letter-spacing:-0.997950px;}
.ls1a{letter-spacing:-0.980352px;}
.ls55{letter-spacing:-0.978382px;}
.ls35{letter-spacing:-0.977550px;}
.ls97{letter-spacing:-0.964934px;}
.ls8b{letter-spacing:-0.896360px;}
.ls9f{letter-spacing:-0.864032px;}
.lsa{letter-spacing:-0.828000px;}
.ls5d{letter-spacing:-0.722016px;}
.ls34{letter-spacing:-0.714363px;}
.ls2{letter-spacing:-0.634752px;}
.lsa1{letter-spacing:-0.631860px;}
.ls61{letter-spacing:-0.609408px;}
.ls93{letter-spacing:-0.592675px;}
.ls7f{letter-spacing:-0.504000px;}
.ls27{letter-spacing:-0.465696px;}
.ls8a{letter-spacing:-0.460425px;}
.ls18{letter-spacing:-0.457056px;}
.ls85{letter-spacing:-0.421240px;}
.ls26{letter-spacing:-0.364320px;}
.ls8{letter-spacing:-0.304704px;}
.ls3{letter-spacing:-0.216000px;}
.ls1e{letter-spacing:-0.152352px;}
.ls6{letter-spacing:-0.144000px;}
.ls8d{letter-spacing:-0.068574px;}
.ls87{letter-spacing:-0.053880px;}
.ls82{letter-spacing:-0.048492px;}
.ls88{letter-spacing:-0.044083px;}
.ls80{letter-spacing:-0.039675px;}
.ls92{letter-spacing:-0.034287px;}
.ls84{letter-spacing:-0.024491px;}
.ls89{letter-spacing:-0.019593px;}
.ls99{letter-spacing:-0.009796px;}
.ls1{letter-spacing:0.000000px;}
.ls7b{letter-spacing:0.000478px;}
.ls8e{letter-spacing:0.004898px;}
.ls6e{letter-spacing:0.006169px;}
.ls6f{letter-spacing:0.012485px;}
.ls91{letter-spacing:0.019593px;}
.ls98{letter-spacing:0.024491px;}
.ls6d{letter-spacing:0.036754px;}
.ls71{letter-spacing:0.036934px;}
.ls9b{letter-spacing:0.039185px;}
.ls9c{letter-spacing:0.039675px;}
.ls6c{letter-spacing:0.044083px;}
.ls86{letter-spacing:0.048981px;}
.ls65{letter-spacing:0.053880px;}
.lsa0{letter-spacing:0.061717px;}
.ls77{letter-spacing:0.066125px;}
.ls8f{letter-spacing:0.068574px;}
.ls9d{letter-spacing:0.074942px;}
.ls94{letter-spacing:0.076411px;}
.ls95{letter-spacing:0.093065px;}
.ls21{letter-spacing:0.144000px;}
.ls4b{letter-spacing:0.152352px;}
.ls4{letter-spacing:0.175392px;}
.ls25{letter-spacing:0.198720px;}
.ls43{letter-spacing:0.225308px;}
.ls3a{letter-spacing:0.263187px;}
.ls62{letter-spacing:0.274786px;}
.ls16{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.304704px;}
.ls0{letter-spacing:0.305280px;}
.lsd{letter-spacing:0.324576px;}
.ls5a{letter-spacing:0.342434px;}
.ls36{letter-spacing:0.375981px;}
.ls56{letter-spacing:0.391353px;}
.ls52{letter-spacing:0.394791px;}
.ls5{letter-spacing:0.451008px;}
.ls4f{letter-spacing:0.451190px;}
.lsf{letter-spacing:0.457056px;}
.ls22{letter-spacing:0.465696px;}
.ls2a{letter-spacing:0.466560px;}
.ls2e{letter-spacing:0.504000px;}
.ls5c{letter-spacing:0.521280px;}
.ls3e{letter-spacing:0.563543px;}
.ls9{letter-spacing:0.609408px;}
.ls24{letter-spacing:0.610560px;}
.ls7{letter-spacing:0.648000px;}
.ls23{letter-spacing:0.719712px;}
.ls20{letter-spacing:0.720000px;}
.ls5e{letter-spacing:0.722016px;}
.ls38{letter-spacing:0.827158px;}
.ls59{letter-spacing:1.027301px;}
.ls32{letter-spacing:1.052746px;}
.ls51{letter-spacing:1.184373px;}
.ls31{letter-spacing:1.240333px;}
.ls53{letter-spacing:1.320816px;}
.ls39{letter-spacing:1.353531px;}
.ls45{letter-spacing:1.408176px;}
.ls4a{letter-spacing:1.522765px;}
.ls40{letter-spacing:1.577157px;}
.ls3b{letter-spacing:1.577921px;}
.ls5b{letter-spacing:1.584000px;}
.ls57{letter-spacing:1.712169px;}
.ls1f{letter-spacing:1.745280px;}
.ls4e{letter-spacing:1.973955px;}
.ls44{letter-spacing:2.027773px;}
.ls3d{letter-spacing:2.028756px;}
.ls14{letter-spacing:3.185280px;}
.ls74{letter-spacing:3.959958px;}
.ls12{letter-spacing:4.625280px;}
.ls30{letter-spacing:6.065280px;}
.ls2c{letter-spacing:7.505280px;}
.ls15{letter-spacing:8.945280px;}
.ls78{letter-spacing:9.884375px;}
.ls48{letter-spacing:9.895715px;}
.ls76{letter-spacing:9.929840px;}
.ls28{letter-spacing:10.385280px;}
.ls67{letter-spacing:10.965765px;}
.ls79{letter-spacing:11.014971px;}
.ls7a{letter-spacing:11.020972px;}
.ls68{letter-spacing:11.027043px;}
.ls72{letter-spacing:11.391825px;}
.ls29{letter-spacing:11.825280px;}
.ls69{letter-spacing:11.841351px;}
.ls7d{letter-spacing:12.636987px;}
.ls7e{letter-spacing:12.698099px;}
.ls7c{letter-spacing:12.698699px;}
.ls75{letter-spacing:12.877703px;}
.ls60{letter-spacing:13.265280px;}
.ls13{letter-spacing:14.705280px;}
.ls63{letter-spacing:14.971270px;}
.ls64{letter-spacing:14.979582px;}
.ls5f{letter-spacing:16.145280px;}
.ls2d{letter-spacing:17.585280px;}
.ls11{letter-spacing:19.025280px;}
.ls70{letter-spacing:20.217019px;}
.ls2f{letter-spacing:20.465280px;}
.ls66{letter-spacing:21.974300px;}
.ls73{letter-spacing:26.255558px;}
.ls6b{letter-spacing:27.141941px;}
.ls10{letter-spacing:27.504000px;}
.ls6a{letter-spacing:27.625514px;}
.ls46{letter-spacing:28.469120px;}
.ls49{letter-spacing:32.183921px;}
.lsc{letter-spacing:34.865280px;}
.ls2b{letter-spacing:59.345280px;}
.ls47{letter-spacing:65.615930px;}
.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;}
}
.ws6{word-spacing:-40.491738px;}
.ws0{word-spacing:-23.393952px;}
.ws2{word-spacing:-20.664000px;}
.wsf{word-spacing:-20.304000px;}
.ws14{word-spacing:-20.160000px;}
.ws1{word-spacing:-19.872000px;}
.ws36{word-spacing:-19.512000px;}
.wsa{word-spacing:-19.024128px;}
.wsd{word-spacing:-18.871776px;}
.wse{word-spacing:-18.739296px;}
.ws9{word-spacing:-18.719424px;}
.wsb{word-spacing:-18.414720px;}
.ws18{word-spacing:-18.262368px;}
.ws3{word-spacing:-18.110016px;}
.ws13{word-spacing:-17.957664px;}
.ws29{word-spacing:-17.686687px;}
.ws4{word-spacing:-17.586720px;}
.wsc{word-spacing:-17.282016px;}
.ws24{word-spacing:-17.244427px;}
.ws28{word-spacing:-17.236071px;}
.ws2f{word-spacing:-17.201610px;}
.ws10{word-spacing:-16.977312px;}
.ws11{word-spacing:-16.824960px;}
.ws17{word-spacing:-16.813440px;}
.ws12{word-spacing:-16.672608px;}
.ws15{word-spacing:-16.513632px;}
.ws25{word-spacing:-16.230049px;}
.ws30{word-spacing:-16.130034px;}
.ws2c{word-spacing:-15.514363px;}
.ws85{word-spacing:-14.944225px;}
.ws33{word-spacing:-14.920327px;}
.ws37{word-spacing:-14.904550px;}
.ws23{word-spacing:-14.595773px;}
.ws27{word-spacing:-14.588701px;}
.ws2e{word-spacing:-14.550870px;}
.ws34{word-spacing:-13.990864px;}
.ws31{word-spacing:-13.817687px;}
.ws84{word-spacing:-13.360167px;}
.ws62{word-spacing:-13.283756px;}
.ws32{word-spacing:-12.621129px;}
.ws35{word-spacing:-11.985181px;}
.ws21{word-spacing:-11.805795px;}
.ws19{word-spacing:-11.609280px;}
.ws1b{word-spacing:-11.505011px;}
.ws1f{word-spacing:-11.279422px;}
.wsa3{word-spacing:-11.162863px;}
.wsd8{word-spacing:-11.118780px;}
.ws45{word-spacing:-11.069799px;}
.wse7{word-spacing:-11.045308px;}
.ws83{word-spacing:-11.035512px;}
.ws96{word-spacing:-11.025715px;}
.ws1d{word-spacing:-10.828245px;}
.ws22{word-spacing:-10.715451px;}
.wsa0{word-spacing:-10.477124px;}
.wsc4{word-spacing:-10.028942px;}
.ws1a{word-spacing:-9.737901px;}
.ws1c{word-spacing:-9.474715px;}
.wsb5{word-spacing:-9.404431px;}
.ws1e{word-spacing:-9.259227px;}
.ws20{word-spacing:-9.249126px;}
.ws75{word-spacing:-7.268841px;}
.wsb6{word-spacing:-6.739842px;}
.wsc5{word-spacing:-6.475831px;}
.wsc2{word-spacing:-6.006943px;}
.ws89{word-spacing:-0.279205px;}
.ws91{word-spacing:-0.243714px;}
.ws71{word-spacing:-0.230328px;}
.wsd4{word-spacing:-0.223938px;}
.wsbb{word-spacing:-0.214100px;}
.wscf{word-spacing:-0.175120px;}
.ws95{word-spacing:-0.159187px;}
.ws72{word-spacing:-0.153350px;}
.ws5{word-spacing:-0.134972px;}
.ws8b{word-spacing:-0.116649px;}
.ws8a{word-spacing:-0.106515px;}
.ws80{word-spacing:-0.106057px;}
.ws8c{word-spacing:-0.104068px;}
.ws82{word-spacing:-0.104051px;}
.wsba{word-spacing:-0.100421px;}
.ws94{word-spacing:-0.099278px;}
.ws7{word-spacing:-0.097191px;}
.ws6d{word-spacing:-0.093073px;}
.wsff{word-spacing:-0.093013px;}
.ws87{word-spacing:-0.092984px;}
.ws5b{word-spacing:-0.091870px;}
.ws86{word-spacing:-0.079354px;}
.ws92{word-spacing:-0.070095px;}
.ws9f{word-spacing:-0.068713px;}
.ws16{word-spacing:-0.066240px;}
.ws100{word-spacing:-0.057634px;}
.wsc9{word-spacing:-0.055445px;}
.wsd6{word-spacing:-0.051053px;}
.wsbd{word-spacing:-0.050172px;}
.wsce{word-spacing:-0.048844px;}
.ws60{word-spacing:-0.048097px;}
.ws93{word-spacing:-0.046301px;}
.ws5e{word-spacing:-0.045307px;}
.ws2b{word-spacing:-0.033432px;}
.ws74{word-spacing:-0.032379px;}
.wsca{word-spacing:-0.031838px;}
.ws70{word-spacing:-0.031779px;}
.wsd3{word-spacing:-0.030598px;}
.ws2d{word-spacing:-0.029717px;}
.ws73{word-spacing:-0.025598px;}
.ws81{word-spacing:-0.024393px;}
.wsc1{word-spacing:-0.013378px;}
.wsc6{word-spacing:-0.012004px;}
.wsc3{word-spacing:-0.011891px;}
.ws38{word-spacing:-0.005388px;}
.ws5d{word-spacing:-0.002515px;}
.ws8{word-spacing:0.000000px;}
.ws5f{word-spacing:0.004796px;}
.wsbf{word-spacing:0.006204px;}
.wsd9{word-spacing:0.006353px;}
.ws6e{word-spacing:0.007313px;}
.ws8d{word-spacing:0.014349px;}
.ws61{word-spacing:0.014949px;}
.ws7f{word-spacing:0.023239px;}
.ws8f{word-spacing:0.023384px;}
.wscc{word-spacing:0.029788px;}
.wsc7{word-spacing:0.030633px;}
.wsd7{word-spacing:0.035189px;}
.wsd1{word-spacing:0.035789px;}
.wsbc{word-spacing:0.040246px;}
.wsd2{word-spacing:0.048728px;}
.ws90{word-spacing:0.058627px;}
.wsbe{word-spacing:0.109880px;}
.ws79{word-spacing:0.704239px;}
.ws7c{word-spacing:0.765454px;}
.ws7e{word-spacing:0.794290px;}
.ws7d{word-spacing:0.794890px;}
.ws5a{word-spacing:0.802037px;}
.ws88{word-spacing:0.816811px;}
.ws6f{word-spacing:0.816931px;}
.ws7b{word-spacing:0.835191px;}
.ws8e{word-spacing:0.849958px;}
.ws5c{word-spacing:0.924696px;}
.wscd{word-spacing:0.973302px;}
.wsc8{word-spacing:1.280847px;}
.wsef{word-spacing:1.392077px;}
.ws97{word-spacing:1.403325px;}
.wseb{word-spacing:1.441495px;}
.ws9a{word-spacing:1.541951px;}
.ws9e{word-spacing:1.543168px;}
.ws9c{word-spacing:1.548965px;}
.ws9b{word-spacing:1.554666px;}
.wsf2{word-spacing:1.555173px;}
.wsf1{word-spacing:1.566373px;}
.wsf4{word-spacing:1.573155px;}
.ws26{word-spacing:1.577157px;}
.ws98{word-spacing:1.582018px;}
.wse9{word-spacing:1.585621px;}
.wsec{word-spacing:1.590778px;}
.wsf6{word-spacing:1.596779px;}
.ws77{word-spacing:1.606349px;}
.wsea{word-spacing:1.639443px;}
.ws76{word-spacing:1.662673px;}
.wsee{word-spacing:1.677426px;}
.ws78{word-spacing:1.703573px;}
.ws9d{word-spacing:1.705847px;}
.wsed{word-spacing:1.737407px;}
.ws7a{word-spacing:1.979114px;}
.wscb{word-spacing:2.140276px;}
.wsd0{word-spacing:2.146277px;}
.wsf3{word-spacing:2.488034px;}
.wse8{word-spacing:2.488094px;}
.ws99{word-spacing:2.496577px;}
.wsf5{word-spacing:2.527781px;}
.ws39{word-spacing:2.742468px;}
.ws59{word-spacing:2.750379px;}
.ws53{word-spacing:2.767331px;}
.ws58{word-spacing:2.767380px;}
.ws51{word-spacing:2.767479px;}
.ws56{word-spacing:2.773512px;}
.ws57{word-spacing:2.834504px;}
.ws55{word-spacing:2.868867px;}
.ws52{word-spacing:3.054044px;}
.ws50{word-spacing:3.664998px;}
.ws54{word-spacing:3.796078px;}
.wsfb{word-spacing:6.196187px;}
.wsfe{word-spacing:6.200972px;}
.wsfa{word-spacing:6.217125px;}
.wsf7{word-spacing:6.235224px;}
.wsf9{word-spacing:6.251385px;}
.wsfd{word-spacing:6.363827px;}
.wsf8{word-spacing:6.365824px;}
.wsda{word-spacing:6.846439px;}
.wsdc{word-spacing:6.850875px;}
.wsdf{word-spacing:6.850892px;}
.wse1{word-spacing:6.909929px;}
.wsde{word-spacing:6.923441px;}
.wse0{word-spacing:6.936107px;}
.wse3{word-spacing:6.957108px;}
.wse6{word-spacing:6.961729px;}
.wsdb{word-spacing:6.972309px;}
.wse4{word-spacing:7.003756px;}
.wse5{word-spacing:7.021711px;}
.wse2{word-spacing:7.050829px;}
.wsd5{word-spacing:7.654470px;}
.wsb0{word-spacing:9.049171px;}
.wsb1{word-spacing:9.049818px;}
.wsb8{word-spacing:9.071709px;}
.wsb4{word-spacing:9.089782px;}
.wsb2{word-spacing:9.098271px;}
.wsb7{word-spacing:9.175173px;}
.wsf0{word-spacing:9.271085px;}
.ws48{word-spacing:9.850955px;}
.ws4f{word-spacing:9.883325px;}
.ws4a{word-spacing:9.892856px;}
.ws47{word-spacing:9.917213px;}
.ws49{word-spacing:9.977413px;}
.ws46{word-spacing:9.977453px;}
.ws4d{word-spacing:9.992133px;}
.ws4b{word-spacing:10.040233px;}
.ws3d{word-spacing:10.739464px;}
.ws64{word-spacing:10.759173px;}
.ws3b{word-spacing:10.794600px;}
.ws3e{word-spacing:10.833405px;}
.ws42{word-spacing:10.834610px;}
.ws43{word-spacing:10.850590px;}
.ws3a{word-spacing:10.855466px;}
.ws41{word-spacing:10.856574px;}
.ws65{word-spacing:10.860212px;}
.ws40{word-spacing:10.896136px;}
.ws69{word-spacing:10.896454px;}
.ws6a{word-spacing:10.921059px;}
.ws6c{word-spacing:10.938502px;}
.ws63{word-spacing:10.943419px;}
.ws68{word-spacing:10.944742px;}
.ws3f{word-spacing:10.955638px;}
.ws67{word-spacing:11.004845px;}
.wsb9{word-spacing:11.065952px;}
.ws3c{word-spacing:11.616080px;}
.ws44{word-spacing:11.748008px;}
.ws4c{word-spacing:11.827581px;}
.ws6b{word-spacing:11.871953px;}
.ws4e{word-spacing:12.094698px;}
.wsb3{word-spacing:12.422972px;}
.wsfc{word-spacing:13.809035px;}
.wsdd{word-spacing:14.464922px;}
.wsa5{word-spacing:15.954821px;}
.wsa7{word-spacing:15.960484px;}
.wsa8{word-spacing:15.972076px;}
.wsae{word-spacing:15.981310px;}
.wsad{word-spacing:16.004542px;}
.wsab{word-spacing:16.053898px;}
.wsac{word-spacing:16.065848px;}
.wsa2{word-spacing:16.068469px;}
.wsaa{word-spacing:16.072142px;}
.wsa9{word-spacing:16.106184px;}
.wsa6{word-spacing:17.984873px;}
.ws66{word-spacing:18.456053px;}
.wsa4{word-spacing:19.347294px;}
.wsaf{word-spacing:20.045398px;}
.wsa1{word-spacing:26.970380px;}
.wsc0{word-spacing:118.892187px;}
.ws2a{word-spacing:297.125414px;}
._21{margin-left:-146.119928px;}
._39{margin-left:-58.468590px;}
._37{margin-left:-12.960000px;}
._4{margin-left:-6.748465px;}
._17{margin-left:-5.190287px;}
._5{margin-left:-3.887653px;}
._7{margin-left:-2.243232px;}
._2{margin-left:-1.220544px;}
._0{width:1.670400px;}
._1{width:3.090240px;}
._f{width:4.615429px;}
._13{width:5.848992px;}
._a{width:6.888960px;}
._c{width:8.346816px;}
._b{width:9.389088px;}
._11{width:11.184480px;}
._10{width:12.737952px;}
._3{width:13.851269px;}
._12{width:15.270229px;}
._e{width:17.228736px;}
._d{width:19.959840px;}
._18{width:21.080448px;}
._1a{width:22.304160px;}
._15{width:23.397984px;}
._16{width:24.422688px;}
._1f{width:25.689312px;}
._26{width:27.444384px;}
._22{width:28.501920px;}
._23{width:30.681792px;}
._27{width:32.809536px;}
._6{width:34.342848px;}
._8{width:35.365536px;}
._1d{width:37.524960px;}
._1c{width:38.726784px;}
._1b{width:39.796992px;}
._2e{width:49.178304px;}
._32{width:50.363483px;}
._2f{width:51.420325px;}
._2b{width:55.124640px;}
._36{width:56.197728px;}
._2a{width:57.208032px;}
._1e{width:59.114880px;}
._24{width:63.175104px;}
._25{width:64.389888px;}
._31{width:102.421440px;}
._30{width:109.047456px;}
._2d{width:111.587616px;}
._2c{width:112.645440px;}
._38{width:122.601049px;}
._19{width:167.650560px;}
._29{width:171.079200px;}
._28{width:172.848960px;}
._34{width:178.416288px;}
._33{width:179.563392px;}
._35{width:181.291968px;}
._14{width:193.265280px;}
._20{width:308.637139px;}
._9{width:845.585280px;}
._3a{width:1058.323579px;}
.fc3{color:rgb(255,51,51);}
.fc2{color:transparent;}
.fc1{color:rgb(199,10,78);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1b{font-size:11.891155px;}
.fs18{font-size:13.377550px;}
.fs1a{font-size:21.607707px;}
.fs19{font-size:22.295916px;}
.fsa{font-size:28.844944px;}
.fs10{font-size:29.717381px;}
.fsd{font-size:33.432053px;}
.fs9{font-size:37.598074px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs1c{font-size:44.083260px;}
.fs12{font-size:48.919104px;}
.fs16{font-size:48.981410px;}
.fs15{font-size:53.879530px;}
.fse{font-size:55.720089px;}
.fsf{font-size:55.807060px;}
.fsc{font-size:56.327029px;}
.fsb{font-size:56.354336px;}
.fs11{font-size:56.398721px;}
.fs17{font-size:58.777680px;}
.fs8{font-size:60.480000px;}
.fs14{font-size:66.124890px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs13{font-size:80.819310px;}
.fs1{font-size:83.520000px;}
.fs5{font-size:97.191317px;}
.fs2{font-size:108.000000px;}
.fs4{font-size:134.972461px;}
.y0{bottom:0.000000px;}
.y105{bottom:2.884755px;}
.y10b{bottom:3.605038px;}
.y10f{bottom:3.605247px;}
.y219{bottom:3.776061px;}
.y1c{bottom:3.779970px;}
.y177{bottom:4.321860px;}
.yf5{bottom:4.326202px;}
.y109{bottom:4.326211px;}
.yf3{bottom:4.326252px;}
.yf7{bottom:4.326302px;}
.y10d{bottom:4.326621px;}
.yf1{bottom:4.327303px;}
.yeb{bottom:4.347310px;}
.yef{bottom:4.352245px;}
.y1f4{bottom:4.353455px;}
.y144{bottom:4.353950px;}
.ye9{bottom:4.357372px;}
.y102{bottom:5.047415px;}
.y103{bottom:5.047516px;}
.yf9{bottom:5.068524px;}
.yfd{bottom:5.072457px;}
.yff{bottom:5.072507px;}
.yfe{bottom:5.072557px;}
.yf8{bottom:5.078586px;}
.y20f{bottom:5.646494px;}
.y217{bottom:5.646495px;}
.y215{bottom:5.646533px;}
.y211{bottom:5.646606px;}
.y20d{bottom:5.647828px;}
.y213{bottom:5.647868px;}
.y169{bottom:6.482249px;}
.y159{bottom:6.482880px;}
.y167{bottom:6.482930px;}
.y132{bottom:6.484395px;}
.y12c{bottom:6.484414px;}
.y138{bottom:6.484675px;}
.y128{bottom:6.485922px;}
.y126{bottom:6.485929px;}
.y1ea{bottom:6.509950px;}
.y1f0{bottom:6.509998px;}
.y1ec{bottom:6.510005px;}
.y1f2{bottom:6.510053px;}
.y1e8{bottom:6.511510px;}
.y1ee{bottom:6.511558px;}
.y12a{bottom:6.515928px;}
.y15d{bottom:6.518885px;}
.y165{bottom:6.520361px;}
.y161{bottom:6.520374px;}
.y163{bottom:6.520443px;}
.y15f{bottom:6.520455px;}
.y12e{bottom:6.521931px;}
.y136{bottom:6.522043px;}
.y134{bottom:6.522061px;}
.y130{bottom:6.522063px;}
.y15b{bottom:6.527817px;}
.y21f{bottom:6.582398px;}
.y21e{bottom:6.582436px;}
.y21c{bottom:6.582508px;}
.y21a{bottom:6.583731px;}
.y21d{bottom:6.583770px;}
.y21b{bottom:6.614893px;}
.y172{bottom:7.562726px;}
.y171{bottom:7.563407px;}
.y13f{bottom:7.565395px;}
.y13c{bottom:7.565415px;}
.y142{bottom:7.565675px;}
.y139{bottom:7.566929px;}
.y1f9{bottom:7.588998px;}
.y1f7{bottom:7.589004px;}
.y1fa{bottom:7.589053px;}
.y1f5{bottom:7.590510px;}
.y1f8{bottom:7.590558px;}
.y13b{bottom:7.596929px;}
.y13a{bottom:7.596950px;}
.y16c{bottom:7.599361px;}
.y16d{bottom:7.599430px;}
.y170{bottom:7.600838px;}
.y16e{bottom:7.600850px;}
.y16f{bottom:7.600919px;}
.y13d{bottom:7.602931px;}
.y141{bottom:7.603043px;}
.y140{bottom:7.603061px;}
.y13e{bottom:7.603063px;}
.y16b{bottom:7.608294px;}
.y16a{bottom:7.608376px;}
.y1f6{bottom:7.626415px;}
.y279{bottom:8.902650px;}
.ye7{bottom:9.395732px;}
.yed{bottom:10.848222px;}
.y20b{bottom:12.270694px;}
.y8d{bottom:13.140000px;}
.y124{bottom:14.082971px;}
.y157{bottom:14.121246px;}
.y1e6{bottom:14.146921px;}
.y106{bottom:14.444209px;}
.yfa{bottom:17.359179px;}
.y278{bottom:18.564300px;}
.y223{bottom:18.840192px;}
.y101{bottom:20.962248px;}
.y178{bottom:21.684513px;}
.y1fe{bottom:21.720857px;}
.y188{bottom:22.248900px;}
.y276{bottom:23.413136px;}
.y222{bottom:24.459436px;}
.y221{bottom:24.459508px;}
.y220{bottom:24.491931px;}
.y107{bottom:26.003663px;}
.y1fd{bottom:28.199448px;}
.y1fc{bottom:28.199454px;}
.y1fb{bottom:28.236810px;}
.y2a4{bottom:28.597500px;}
.y282{bottom:28.969200px;}
.yfb{bottom:31.082274px;}
.y285{bottom:31.942050px;}
.y100{bottom:32.524707px;}
.y2a8{bottom:33.056700px;}
.yfc{bottom:33.967129px;}
.y27a{bottom:34.542900px;}
.y29c{bottom:35.657850px;}
.y295{bottom:36.401100px;}
.y29b{bottom:37.515750px;}
.y28d{bottom:37.887450px;}
.y275{bottom:38.107586px;}
.y2b8{bottom:38.259150px;}
.y297{bottom:39.745350px;}
.y28e{bottom:40.488600px;}
.y281{bottom:40.860300px;}
.y28c{bottom:41.232000px;}
.y90{bottom:41.580000px;}
.y93{bottom:41.940000px;}
.y294{bottom:41.974950px;}
.y287{bottom:43.089900px;}
.y2be{bottom:43.461600px;}
.y29e{bottom:43.832850px;}
.y2a6{bottom:44.204550px;}
.y27f{bottom:44.947800px;}
.y187{bottom:46.394250px;}
.y286{bottom:46.434150px;}
.y2c1{bottom:46.805700px;}
.y2b0{bottom:47.549100px;}
.y175{bottom:48.764888px;}
.y174{bottom:48.801580px;}
.y173{bottom:48.807526px;}
.y290{bottom:49.407000px;}
.y296{bottom:50.150250px;}
.y28b{bottom:50.893200px;}
.y2b2{bottom:52.008150px;}
.y1b{bottom:52.343130px;}
.y299{bottom:52.751400px;}
.y274{bottom:52.802036px;}
.y2b5{bottom:54.237750px;}
.y291{bottom:54.609450px;}
.y28a{bottom:54.981000px;}
.y2aa{bottom:55.724400px;}
.y1a{bottom:56.123100px;}
.y19{bottom:56.496044px;}
.y2b9{bottom:57.582300px;}
.y2ac{bottom:58.325250px;}
.y2c0{bottom:58.696950px;}
.y292{bottom:59.068500px;}
.y2b6{bottom:59.440200px;}
.y27b{bottom:60.554850px;}
.y29f{bottom:61.298100px;}
.y2a0{bottom:61.669800px;}
.y283{bottom:64.270950px;}
.y288{bottom:65.757300px;}
.y29a{bottom:66.500550px;}
.y2a5{bottom:67.615200px;}
.y2ae{bottom:67.986750px;}
.y2a1{bottom:68.358450px;}
.y2bc{bottom:68.730150px;}
.y280{bottom:69.101700px;}
.y2a9{bottom:69.845100px;}
.y2bb{bottom:70.959750px;}
.y1b3{bottom:71.468250px;}
.y289{bottom:72.074550px;}
.y191{bottom:72.396900px;}
.y27e{bottom:72.817650px;}
.y298{bottom:74.304150px;}
.y2b3{bottom:74.675550px;}
.y293{bottom:75.790500px;}
.y26e{bottom:76.460036px;}
.y284{bottom:77.276700px;}
.y194{bottom:79.826250px;}
.y1b7{bottom:82.612350px;}
.y2ba{bottom:83.222550px;}
.y2b1{bottom:85.080450px;}
.y28f{bottom:85.823700px;}
.y189{bottom:86.326950px;}
.y2a3{bottom:86.566950px;}
.y27c{bottom:86.938350px;}
.y2bf{bottom:87.681600px;}
.y2a7{bottom:88.053300px;}
.y1ab{bottom:89.113050px;}
.y2ad{bottom:89.167950px;}
.y2af{bottom:89.539500px;}
.y1a4{bottom:90.970350px;}
.y2b4{bottom:93.255750px;}
.y1aa{bottom:93.756300px;}
.y19c{bottom:94.684950px;}
.y1c7{bottom:95.613600px;}
.y2b7{bottom:96.228300px;}
.y2ab{bottom:96.599850px;}
.y1a6{bottom:99.328350px;}
.y19d{bottom:101.185650px;}
.y273{bottom:102.028286px;}
.y190{bottom:102.114300px;}
.y19b{bottom:103.042950px;}
.y1a3{bottom:104.900400px;}
.y196{bottom:107.686350px;}
.y1cd{bottom:108.615000px;}
.y7b{bottom:109.043100px;}
.y1ad{bottom:109.543650px;}
.y1b5{bottom:110.472300px;}
.yb7{bottom:112.283100px;}
.y18e{bottom:112.329750px;}
.y27d{bottom:112.950150px;}
.y209{bottom:113.363100px;}
.y22e{bottom:113.723100px;}
.y122{bottom:114.083100px;}
.y7a{bottom:114.443100px;}
.y2bd{bottom:115.551450px;}
.y18{bottom:115.843582px;}
.ydb{bottom:115.883100px;}
.y195{bottom:116.044350px;}
.ya5{bottom:116.243100px;}
.y272{bottom:116.722736px;}
.y1d0{bottom:116.973000px;}
.y17{bottom:117.683100px;}
.y1bf{bottom:118.830300px;}
.y250{bottom:119.123100px;}
.y29d{bottom:119.267550px;}
.y258{bottom:122.363100px;}
.y19f{bottom:123.473700px;}
.y1a5{bottom:125.331000px;}
.y79{bottom:126.323100px;}
.ye5{bottom:127.043100px;}
.y19a{bottom:127.188300px;}
.y63{bottom:127.763100px;}
.y2a2{bottom:127.814250px;}
.y1c1{bottom:129.974400px;}
.y271{bottom:131.417186px;}
.y78{bottom:131.723100px;}
.y1a8{bottom:131.831700px;}
.y1c4{bottom:135.546450px;}
.y1e4{bottom:135.683100px;}
.y24d{bottom:136.403100px;}
.y1a0{bottom:136.475100px;}
.y199{bottom:137.403750px;}
.y259{bottom:137.755515px;}
.y121{bottom:138.563100px;}
.y1b9{bottom:139.261050px;}
.yb6{bottom:140.723100px;}
.y208{bottom:141.803100px;}
.y22d{bottom:142.163100px;}
.ya4{bottom:143.603100px;}
.y1c8{bottom:143.904450px;}
.yda{bottom:144.323100px;}
.y77{bottom:144.683100px;}
.y1bb{bottom:145.761750px;}
.y270{bottom:146.111636px;}
.y62{bottom:146.483100px;}
.y1cf{bottom:146.690400px;}
.y16{bottom:147.203100px;}
.y24f{bottom:147.563100px;}
.y1a1{bottom:147.619050px;}
.y1c5{bottom:148.547700px;}
.y257{bottom:148.643100px;}
.ya3{bottom:149.003100px;}
.y18a{bottom:151.333800px;}
.y1ae{bottom:153.191100px;}
.y1af{bottom:154.119750px;}
.y192{bottom:160.620450px;}
.y26f{bottom:160.805936px;}
.ya2{bottom:160.883100px;}
.y1e3{bottom:164.123100px;}
.y197{bottom:164.335200px;}
.y24c{bottom:164.843100px;}
.y1a9{bottom:166.192500px;}
.ya1{bottom:166.283100px;}
.y1b4{bottom:168.978450px;}
.y1bd{bottom:169.907100px;}
.yb5{bottom:170.243100px;}
.y22c{bottom:170.603100px;}
.y1b0{bottom:170.835750px;}
.y1cb{bottom:171.764550px;}
.y24e{bottom:172.403100px;}
.y18f{bottom:172.693050px;}
.yd9{bottom:172.763100px;}
.y8b{bottom:173.123100px;}
.y185{bottom:173.483100px;}
.y1b8{bottom:174.550500px;}
.y61{bottom:174.923100px;}
.y1ca{bottom:177.336450px;}
.y15{bottom:178.163100px;}
.ya0{bottom:179.243100px;}
.y256{bottom:179.963100px;}
.y198{bottom:180.122400px;}
.y18d{bottom:181.979850px;}
.y26d{bottom:182.994536px;}
.y14c{bottom:183.563100px;}
.y1a7{bottom:185.694450px;}
.y1c2{bottom:186.623100px;}
.y1a2{bottom:189.409200px;}
.y1e2{bottom:192.563100px;}
.y193{bottom:193.123800px;}
.y24b{bottom:193.283100px;}
.y76{bottom:195.083100px;}
.y251{bottom:197.603100px;}
.yb4{bottom:198.683100px;}
.y22b{bottom:199.043100px;}
.yd8{bottom:201.203100px;}
.y8a{bottom:201.563100px;}
.y184{bottom:201.923100px;}
.y60{bottom:203.363100px;}
.y1c9{bottom:207.982500px;}
.y14{bottom:209.483100px;}
.y2c8{bottom:209.811836px;}
.y255{bottom:210.923100px;}
.y2c2{bottom:211.134386px;}
.y14b{bottom:212.003100px;}
.y1c0{bottom:212.625900px;}
.y9f{bottom:214.163100px;}
.y19e{bottom:214.483200px;}
.y155{bottom:215.243100px;}
.y1b2{bottom:216.340500px;}
.y18b{bottom:217.269150px;}
.y1ce{bottom:219.126450px;}
.y1b6{bottom:220.055250px;}
.y1e1{bottom:221.003100px;}
.y24a{bottom:221.723100px;}
.y1bc{bottom:222.841200px;}
.y75{bottom:223.523100px;}
.y1be{bottom:223.769850px;}
.y207{bottom:227.123100px;}
.y22a{bottom:227.483100px;}
.yd7{bottom:229.643100px;}
.y89{bottom:230.003100px;}
.y183{bottom:230.723100px;}
.y5f{bottom:231.803100px;}
.y1c3{bottom:233.056500px;}
.y154{bottom:239.723100px;}
.yb3{bottom:240.083100px;}
.y13{bottom:240.443100px;}
.y1c6{bottom:240.485850px;}
.y1ba{bottom:241.414500px;}
.y254{bottom:241.883100px;}
.y9e{bottom:242.603100px;}
.y168{bottom:248.569350px;}
.y1e0{bottom:249.443100px;}
.y249{bottom:250.163100px;}
.y74{bottom:252.323100px;}
.y206{bottom:255.563100px;}
.y229{bottom:255.923100px;}
.yd6{bottom:258.083100px;}
.y88{bottom:258.443100px;}
.y182{bottom:259.163100px;}
.y5e{bottom:260.243100px;}
.y166{bottom:269.169750px;}
.y9d{bottom:271.043100px;}
.y12{bottom:271.403100px;}
.y253{bottom:271.763100px;}
.y1df{bottom:278.243100px;}
.y248{bottom:278.603100px;}
.y73{bottom:280.763100px;}
.y18c{bottom:282.276000px;}
.y205{bottom:284.003100px;}
.y228{bottom:284.363100px;}
.yd5{bottom:286.523100px;}
.y87{bottom:286.883100px;}
.y181{bottom:287.603100px;}
.y5d{bottom:288.683100px;}
.y1cc{bottom:288.776550px;}
.y164{bottom:289.733400px;}
.y252{bottom:296.603100px;}
.y1ac{bottom:298.063200px;}
.y9c{bottom:299.483100px;}
.y11{bottom:302.363100px;}
.y1de{bottom:306.683100px;}
.y247{bottom:307.403100px;}
.y72{bottom:309.203100px;}
.y162{bottom:310.334400px;}
.y204{bottom:312.443100px;}
.y227{bottom:312.803100px;}
.yd4{bottom:314.963100px;}
.y86{bottom:315.323100px;}
.y180{bottom:316.043100px;}
.y5c{bottom:317.123100px;}
.y1b1{bottom:319.422600px;}
.y9b{bottom:327.923100px;}
.y160{bottom:330.935550px;}
.y10{bottom:333.683100px;}
.y1dd{bottom:335.123100px;}
.y246{bottom:335.843100px;}
.y71{bottom:337.643100px;}
.yb2{bottom:338.723100px;}
.y17f{bottom:340.883100px;}
.y226{bottom:341.243100px;}
.yd3{bottom:343.403100px;}
.y85{bottom:343.763100px;}
.y2c5{bottom:346.323086px;}
.y2c7{bottom:346.616936px;}
.y277{bottom:350.178000px;}
.y15e{bottom:351.536550px;}
.y40{bottom:353.483100px;}
.y9a{bottom:356.723100px;}
.y2c3{bottom:357.343886px;}
.y5b{bottom:357.803100px;}
.y2c4{bottom:359.474486px;}
.y2c6{bottom:359.768486px;}
.y1dc{bottom:363.563100px;}
.y245{bottom:364.283100px;}
.yf{bottom:364.643100px;}
.y70{bottom:366.083100px;}
.yb1{bottom:367.163100px;}
.y203{bottom:369.323100px;}
.y225{bottom:369.683100px;}
.yd2{bottom:371.843100px;}
.y15c{bottom:372.137700px;}
.y84{bottom:372.203100px;}
.y3f{bottom:372.563100px;}
.y99{bottom:385.163100px;}
.y5a{bottom:386.243100px;}
.y1db{bottom:388.043100px;}
.ye4{bottom:389.843100px;}
.y3e{bottom:391.283100px;}
.y244{bottom:392.723100px;}
.y15a{bottom:392.732850px;}
.y202{bottom:393.803100px;}
.y6f{bottom:394.523100px;}
.yb0{bottom:396.683100px;}
.y1f1{bottom:397.507650px;}
.ye{bottom:397.763100px;}
.y224{bottom:398.123100px;}
.yd1{bottom:400.283100px;}
.y83{bottom:400.643100px;}
.y216{bottom:401.703000px;}
.y3d{bottom:410.363100px;}
.y158{bottom:413.336850px;}
.y98{bottom:413.603100px;}
.y59{bottom:414.683100px;}
.y1ef{bottom:418.118100px;}
.ye3{bottom:419.363100px;}
.y214{bottom:419.580000px;}
.y243{bottom:421.163100px;}
.y6e{bottom:422.963100px;}
.y120{bottom:423.323100px;}
.yaf{bottom:426.563100px;}
.yd0{bottom:428.723100px;}
.y82{bottom:429.083100px;}
.y3c{bottom:429.443100px;}
.yd{bottom:431.963100px;}
.y176{bottom:433.941000px;}
.y212{bottom:437.488200px;}
.y1ed{bottom:438.764400px;}
.y97{bottom:442.043100px;}
.y58{bottom:443.123100px;}
.y3b{bottom:448.163100px;}
.ye2{bottom:448.883100px;}
.y242{bottom:449.603100px;}
.y6d{bottom:451.403100px;}
.y11f{bottom:451.763100px;}
.yae{bottom:455.003100px;}
.y210{bottom:455.365200px;}
.ycf{bottom:457.163100px;}
.y81{bottom:457.523100px;}
.y1eb{bottom:459.374850px;}
.yc{bottom:462.923100px;}
.y3a{bottom:467.243100px;}
.y96{bottom:470.483100px;}
.y57{bottom:471.563100px;}
.y156{bottom:471.862650px;}
.y20e{bottom:473.242350px;}
.ye1{bottom:478.043100px;}
.y6c{bottom:479.843100px;}
.y1e9{bottom:479.985300px;}
.y11e{bottom:480.203100px;}
.yad{bottom:483.443100px;}
.yce{bottom:485.963100px;}
.y39{bottom:486.323100px;}
.y20c{bottom:491.150550px;}
.y2cd{bottom:492.752936px;}
.yb{bottom:493.883100px;}
.y95{bottom:498.923100px;}
.y56{bottom:500.003100px;}
.y1e7{bottom:500.631600px;}
.y38{bottom:505.403100px;}
.y241{bottom:506.483100px;}
.y2cc{bottom:507.447386px;}
.y6b{bottom:508.283100px;}
.y11d{bottom:508.643100px;}
.y218{bottom:509.027550px;}
.yac{bottom:511.883100px;}
.ycd{bottom:514.403100px;}
.y80{bottom:514.763100px;}
.ye0{bottom:515.123100px;}
.y94{bottom:516.383100px;}
.y1f3{bottom:521.242050px;}
.y2cb{bottom:522.141686px;}
.y37{bottom:524.123100px;}
.y153{bottom:525.203100px;}
.y55{bottom:528.443100px;}
.ya{bottom:532.403100px;}
.y240{bottom:534.923100px;}
.y6a{bottom:536.723100px;}
.y2ca{bottom:536.836136px;}
.y11c{bottom:537.083100px;}
.ydf{bottom:538.523100px;}
.yab{bottom:540.323100px;}
.y20a{bottom:541.971300px;}
.ycc{bottom:542.843100px;}
.y36{bottom:543.203100px;}
.y2c9{bottom:551.530586px;}
.y11b{bottom:553.463100px;}
.y152{bottom:553.643100px;}
.y54{bottom:556.883100px;}
.y1e5{bottom:559.222800px;}
.y35{bottom:562.283100px;}
.y23f{bottom:563.363100px;}
.y69{bottom:565.163100px;}
.yaa{bottom:568.763100px;}
.ycb{bottom:571.283100px;}
.y7f{bottom:571.643100px;}
.y26c{bottom:574.527386px;}
.y92{bottom:575.423100px;}
.y9{bottom:578.843100px;}
.y34{bottom:581.003100px;}
.y151{bottom:582.083100px;}
.y11a{bottom:582.623100px;}
.y53{bottom:585.323100px;}
.y201{bottom:590.003100px;}
.y23e{bottom:591.803100px;}
.y68{bottom:593.603100px;}
.ya9{bottom:597.563100px;}
.yde{bottom:599.363100px;}
.yca{bottom:599.723100px;}
.y33{bottom:600.083100px;}
.y267{bottom:607.957136px;}
.y26b{bottom:608.985836px;}
.y150{bottom:610.523100px;}
.y14a{bottom:610.883100px;}
.y119{bottom:611.783100px;}
.y1da{bottom:612.683100px;}
.y200{bottom:618.443100px;}
.y32{bottom:619.163100px;}
.y23d{bottom:620.243100px;}
.y266{bottom:622.651586px;}
.y67{bottom:622.763100px;}
.y26a{bottom:623.680136px;}
.y8{bottom:625.283100px;}
.y52{bottom:626.003100px;}
.yc9{bottom:628.163100px;}
.y7e{bottom:628.523100px;}
.ydd{bottom:628.883100px;}
.y91{bottom:634.823100px;}
.y265{bottom:637.346036px;}
.y31{bottom:637.883100px;}
.y269{bottom:638.374586px;}
.y14f{bottom:638.963100px;}
.y149{bottom:639.323100px;}
.y118{bottom:640.943100px;}
.y1d9{bottom:641.123100px;}
.y1ff{bottom:643.283100px;}
.y17e{bottom:645.083100px;}
.y23c{bottom:648.683100px;}
.y65{bottom:653.363100px;}
.y7{bottom:654.443100px;}
.yc8{bottom:656.603100px;}
.y30{bottom:656.963100px;}
.ydc{bottom:657.323100px;}
.y66{bottom:660.203100px;}
.y268{bottom:661.738736px;}
.y264{bottom:661.885736px;}
.y14e{bottom:667.403100px;}
.y148{bottom:667.763100px;}
.y1d8{bottom:669.563100px;}
.y117{bottom:670.103100px;}
.y17d{bottom:673.523100px;}
.y6{bottom:674.963100px;}
.y2f{bottom:676.043100px;}
.y23b{bottom:677.123100px;}
.y10c{bottom:678.601350px;}
.y10e{bottom:680.764650px;}
.y51{bottom:682.883100px;}
.yc7{bottom:685.043100px;}
.y7d{bottom:685.403100px;}
.y14d{bottom:692.603100px;}
.y262{bottom:692.670491px;}
.y8f{bottom:693.863100px;}
.y108{bottom:694.491000px;}
.y2e{bottom:695.123100px;}
.y5{bottom:695.843100px;}
.y147{bottom:696.203100px;}
.y10a{bottom:696.654600px;}
.y1d7{bottom:698.003100px;}
.y116{bottom:699.263100px;}
.y17c{bottom:701.963100px;}
.y23a{bottom:705.563100px;}
.y261{bottom:707.364911px;}
.yf6{bottom:710.380650px;}
.y50{bottom:711.323100px;}
.yc6{bottom:713.483100px;}
.y2d{bottom:713.843100px;}
.y4{bottom:716.363100px;}
.y260{bottom:722.059331px;}
.yf4{bottom:724.106850px;}
.y146{bottom:724.643100px;}
.y1d6{bottom:726.443100px;}
.y17b{bottom:730.403100px;}
.y2c{bottom:732.923100px;}
.y239{bottom:734.003100px;}
.y25f{bottom:736.753736px;}
.y3{bottom:737.603100px;}
.yf2{bottom:737.832900px;}
.y4f{bottom:739.763100px;}
.y115{bottom:740.843100px;}
.yc5{bottom:741.923100px;}
.y7c{bottom:742.283100px;}
.yf0{bottom:751.558950px;}
.y2b{bottom:752.003100px;}
.y145{bottom:753.083100px;}
.y8e{bottom:753.263100px;}
.y1d5{bottom:754.883100px;}
.y17a{bottom:758.843100px;}
.y263{bottom:759.309671px;}
.y2{bottom:761.363100px;}
.y238{bottom:762.803100px;}
.yee{bottom:765.285150px;}
.y4e{bottom:768.203100px;}
.y114{bottom:769.283100px;}
.yc4{bottom:770.363100px;}
.y2a{bottom:770.723100px;}
.y1{bottom:778.283100px;}
.yec{bottom:779.008200px;}
.y1d4{bottom:783.323100px;}
.y186{bottom:783.671250px;}
.y179{bottom:783.683100px;}
.y8c{bottom:783.863100px;}
.y237{bottom:792.323100px;}
.y4d{bottom:796.643100px;}
.y113{bottom:797.723100px;}
.yc3{bottom:798.803100px;}
.y29{bottom:799.163100px;}
.yea{bottom:805.021950px;}
.y25e{bottom:808.682923px;}
.y1d3{bottom:811.763100px;}
.ye8{bottom:818.745000px;}
.y236{bottom:820.763100px;}
.y25d{bottom:824.920256px;}
.y4c{bottom:825.083100px;}
.y112{bottom:826.523100px;}
.yc2{bottom:827.243100px;}
.y28{bottom:827.603100px;}
.y104{bottom:832.478250px;}
.y1d2{bottom:840.203100px;}
.y235{bottom:850.283100px;}
.y25c{bottom:852.178406px;}
.y4b{bottom:853.523100px;}
.ya8{bottom:854.603100px;}
.y111{bottom:854.963100px;}
.yc1{bottom:855.683100px;}
.y27{bottom:856.043100px;}
.y1d1{bottom:865.043100px;}
.ye6{bottom:869.330250px;}
.y234{bottom:878.723100px;}
.y110{bottom:879.443100px;}
.y4a{bottom:881.963100px;}
.y25b{bottom:882.448901px;}
.yc0{bottom:884.123100px;}
.y26{bottom:884.483100px;}
.y137{bottom:889.348050px;}
.y25a{bottom:906.988586px;}
.y233{bottom:908.243100px;}
.y135{bottom:909.921750px;}
.y49{bottom:910.403100px;}
.ybf{bottom:912.563100px;}
.y25{bottom:912.923100px;}
.y133{bottom:930.532800px;}
.y232{bottom:936.683100px;}
.y48{bottom:938.843100px;}
.y24{bottom:941.363100px;}
.ybe{bottom:942.443100px;}
.y64{bottom:945.683100px;}
.y131{bottom:951.144000px;}
.y231{bottom:966.203100px;}
.y47{bottom:967.283100px;}
.y23{bottom:969.803100px;}
.y12f{bottom:971.717400px;}
.ya7{bottom:976.643100px;}
.ybd{bottom:984.203100px;}
.y12d{bottom:992.328600px;}
.y230{bottom:994.643100px;}
.y46{bottom:995.723100px;}
.y22{bottom:998.603100px;}
.ya6{bottom:1005.443100px;}
.y12b{bottom:1012.939650px;}
.y45{bottom:1024.163100px;}
.ybc{bottom:1024.523100px;}
.y21{bottom:1027.043100px;}
.y129{bottom:1033.514700px;}
.y44{bottom:1052.603100px;}
.ybb{bottom:1052.963100px;}
.y22f{bottom:1054.043100px;}
.y127{bottom:1054.128750px;}
.y20{bottom:1055.483100px;}
.y125{bottom:1074.727800px;}
.y43{bottom:1081.043100px;}
.yba{bottom:1081.763100px;}
.y1f{bottom:1083.923100px;}
.y143{bottom:1095.311850px;}
.y42{bottom:1109.843100px;}
.yb9{bottom:1111.283100px;}
.y1e{bottom:1112.363100px;}
.y123{bottom:1115.925900px;}
.y41{bottom:1139.363100px;}
.yb8{bottom:1139.723100px;}
.y1d{bottom:1140.803100px;}
.h49{height:8.529349px;}
.h46{height:9.615114px;}
.h20{height:12.283673px;}
.h19{height:14.447314px;}
.h48{height:15.731001px;}
.h47{height:16.232037px;}
.h1f{height:16.610955px;}
.h3a{height:18.812940px;}
.h3b{height:18.845430px;}
.hc{height:19.080000px;}
.h17{height:19.494810px;}
.h1c{height:20.999908px;}
.h30{height:21.315836px;}
.h23{height:21.654540px;}
.h28{height:21.681555px;}
.h33{height:21.689400px;}
.h24{height:21.692070px;}
.h34{height:21.726855px;}
.h2d{height:24.029288px;}
.h38{height:25.427955px;}
.h11{height:26.274375px;}
.h1a{height:26.730990px;}
.h18{height:27.372426px;}
.h13{height:28.440000px;}
.h21{height:29.257575px;}
.h26{height:29.280900px;}
.h31{height:29.315820px;}
.h3c{height:33.914760px;}
.h39{height:35.614446px;}
.h4a{height:36.355774px;}
.h3e{height:36.688680px;}
.h3d{height:36.721170px;}
.hf{height:37.437188px;}
.h1e{height:37.573230px;}
.h2b{height:39.003690px;}
.h35{height:39.100260px;}
.h43{height:40.395313px;}
.h1b{height:40.457085px;}
.h2e{height:40.565748px;}
.h2f{height:40.629066px;}
.h27{height:41.007618px;}
.h22{height:41.027497px;}
.h32{height:41.059811px;}
.h1d{height:41.899515px;}
.h37{height:42.298290px;}
.h36{height:42.335760px;}
.h4b{height:43.409374px;}
.h42{height:44.434827px;}
.h25{height:48.224531px;}
.h44{height:48.474366px;}
.h10{height:48.656250px;}
.h12{height:54.219375px;}
.h41{height:54.533662px;}
.h15{height:56.880000px;}
.h16{height:57.240000px;}
.hb{height:59.383125px;}
.hd{height:59.803594px;}
.h7{height:59.868281px;}
.h2a{height:62.846205px;}
.h29{height:62.883720px;}
.h2{height:64.546875px;}
.h14{height:64.797188px;}
.h6{height:65.003906px;}
.h40{height:72.966262px;}
.h5{height:74.874375px;}
.h3{height:75.404531px;}
.ha{height:90.776690px;}
.h4{height:97.505859px;}
.h9{height:126.064279px;}
.h45{height:148.995300px;}
.h2c{height:372.356700px;}
.h8{height:377.728050px;}
.h3f{height:954.524985px;}
.he{height:1248.623100px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w3{width:4.680000px;}
.w4{width:9.360000px;}
.w16{width:18.360000px;}
.w13{width:24.518415px;}
.w1d{width:33.840000px;}
.w1f{width:47.520000px;}
.w22{width:47.880000px;}
.wb{width:54.799695px;}
.w1c{width:56.160000px;}
.w20{width:56.520000px;}
.w1e{width:56.880000px;}
.w10{width:57.680625px;}
.wc{width:62.003520px;}
.w21{width:65.880000px;}
.wf{width:66.325410px;}
.wd{width:67.045905px;}
.w30{width:68.161545px;}
.w33{width:71.281005px;}
.w34{width:71.313555px;}
.we{width:72.809760px;}
.w2d{width:82.203765px;}
.w27{width:82.207080px;}
.w24{width:82.215810px;}
.w36{width:83.494185px;}
.w35{width:88.147500px;}
.w17{width:91.080000px;}
.w2f{width:96.281985px;}
.w2e{width:101.683410px;}
.w18{width:105.840000px;}
.w1b{width:106.200000px;}
.w28{width:109.225665px;}
.w9{width:114.120000px;}
.w19{width:115.200000px;}
.w6{width:115.560000px;}
.w12{width:121.121115px;}
.w1a{width:124.200000px;}
.w3a{width:146.006400px;}
.w38{width:154.776450px;}
.w37{width:155.713650px;}
.w2a{width:168.725700px;}
.w29{width:178.484850px;}
.w31{width:178.487250px;}
.w25{width:179.600850px;}
.w11{width:241.531800px;}
.w7{width:253.080000px;}
.w8{width:263.160000px;}
.w2b{width:377.100000px;}
.w2{width:535.275000px;}
.w23{width:585.267600px;}
.w2c{width:603.624750px;}
.w26{width:616.541850px;}
.w32{width:620.043150px;}
.w15{width:690.682500px;}
.w14{width:715.919400px;}
.wa{width:726.036150px;}
.w39{width:737.684100px;}
.w5{width:878.701950px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x62{left:3.242801px;}
.x1f{left:6.660000px;}
.x19{left:8.100000px;}
.x44{left:9.366203px;}
.x53{left:11.340000px;}
.x1e{left:13.140000px;}
.x12{left:14.211450px;}
.x3d{left:15.870640px;}
.x43{left:17.311617px;}
.x58{left:18.540000px;}
.x3c{left:20.914017px;}
.x24{left:22.860000px;}
.x3a{left:25.206922px;}
.x23{left:27.180000px;}
.x21{left:29.340000px;}
.x3b{left:31.000766px;}
.x40{left:32.441773px;}
.x9a{left:33.534023px;}
.x4f{left:34.740000px;}
.x52{left:35.820000px;}
.x20{left:36.900000px;}
.xb6{left:38.533350px;}
.x22{left:39.780000px;}
.x3e{left:41.087557px;}
.x32{left:43.249010px;}
.x4b{left:45.180000px;}
.x3f{left:46.851381px;}
.x34{left:48.282375px;}
.xab{left:49.337100px;}
.x63{left:50.834041px;}
.xb2{left:52.938300px;}
.x36{left:54.076219px;}
.xb5{left:55.099050px;}
.xb4{left:56.899650px;}
.xb1{left:58.340250px;}
.xae{left:59.780700px;}
.x6f{left:61.628647px;}
.xac{left:62.661750px;}
.xb0{left:64.462350px;}
.x70{left:65.976093px;}
.xb8{left:67.343400px;}
.xb9{left:68.783850px;}
.x6e{left:70.293544px;}
.xad{left:72.025050px;}
.xa3{left:74.406450px;}
.x77{left:77.199750px;}
.xb3{left:78.507150px;}
.x8b{left:79.990050px;}
.x72{left:81.132161px;}
.xaf{left:84.629250px;}
.xd{left:87.621976px;}
.xba{left:90.031200px;}
.x71{left:93.005168px;}
.x1c{left:94.140000px;}
.xbb{left:96.873600px;}
.x45{left:98.321280px;}
.x86{left:99.522600px;}
.x7c{left:103.243050px;}
.x46{left:105.525105px;}
.x92{left:107.893650px;}
.xb7{left:109.838250px;}
.x79{left:111.614100px;}
.x17{left:113.580000px;}
.x78{left:115.334550px;}
.x90{left:117.194850px;}
.x7e{left:119.055000px;}
.x7f{left:120.915300px;}
.x4a{left:122.571450px;}
.x4{left:127.791450px;}
.x1d{left:129.771450px;}
.x18{left:132.831450px;}
.x84{left:134.867100px;}
.x81{left:136.727250px;}
.x6a{left:139.235925px;}
.x28{left:140.940000px;}
.x7{left:142.551450px;}
.x9b{left:143.991450px;}
.x66{left:145.431450px;}
.x8{left:146.871450px;}
.x83{left:148.818750px;}
.xe{left:151.000696px;}
.x25{left:152.631450px;}
.x10{left:154.791450px;}
.x91{left:156.259800px;}
.x8c{left:158.119950px;}
.x6{left:159.831450px;}
.x29{left:160.911450px;}
.x7d{left:166.491000px;}
.x8e{left:170.211450px;}
.x5{left:171.351450px;}
.x88{left:173.932050px;}
.x2b{left:177.111450px;}
.xc{left:179.127000px;}
.x26{left:180.711450px;}
.x2a{left:181.791450px;}
.x42{left:184.816200px;}
.x59{left:186.831450px;}
.x85{left:189.744000px;}
.x7a{left:193.464450px;}
.x8f{left:197.184900px;}
.x94{left:200.905500px;}
.x82{left:202.765650px;}
.x5c{left:206.625469px;}
.x41{left:208.612200px;}
.x4c{left:213.651450px;}
.x7b{left:218.577750px;}
.x65{left:219.591450px;}
.x5b{left:220.671450px;}
.xa4{left:221.687700px;}
.x95{left:225.088650px;}
.x93{left:226.948650px;}
.xbe{left:231.160050px;}
.x8a{left:232.529400px;}
.xbc{left:239.940300px;}
.x67{left:244.071450px;}
.x1a{left:246.411450px;}
.x2e{left:249.457959px;}
.x80{left:252.061950px;}
.x76{left:258.231600px;}
.x6b{left:259.611250px;}
.x8d{left:266.013750px;}
.x68{left:269.631450px;}
.x49{left:270.711450px;}
.x75{left:278.631450px;}
.xa6{left:281.764650px;}
.x87{left:283.686000px;}
.xa5{left:287.135100px;}
.xa0{left:291.317550px;}
.xa{left:295.911450px;}
.x3{left:298.791450px;}
.x73{left:306.891300px;}
.xaa{left:309.420300px;}
.xb{left:315.351450px;}
.x89{left:318.100350px;}
.x4d{left:319.491450px;}
.x9{left:322.191450px;}
.x13{left:323.820000px;}
.x2f{left:329.022750px;}
.xa9{left:331.018200px;}
.x5d{left:333.485700px;}
.x14{left:343.791450px;}
.x97{left:349.191450px;}
.x9c{left:375.831450px;}
.x54{left:377.451450px;}
.x30{left:383.098950px;}
.xa8{left:386.775150px;}
.x5e{left:414.616050px;}
.x4e{left:434.691450px;}
.x31{left:437.175150px;}
.x2{left:446.391450px;}
.x98{left:464.510550px;}
.xbd{left:475.061550px;}
.xa7{left:476.231100px;}
.x6c{left:484.296900px;}
.x55{left:492.651450px;}
.x5f{left:495.746400px;}
.x33{left:498.466200px;}
.x1b{left:500.211450px;}
.x9d{left:516.434100px;}
.x50{left:540.531450px;}
.x99{left:545.637150px;}
.x35{left:564.790650px;}
.x60{left:576.891750px;}
.x9e{left:586.813050px;}
.x56{left:607.491450px;}
.x5a{left:624.591450px;}
.x64{left:630.711450px;}
.x74{left:634.671450px;}
.x37{left:636.879000px;}
.x6d{left:646.546350px;}
.x61{left:658.022250px;}
.x51{left:664.731450px;}
.x2c{left:669.780000px;}
.x9f{left:674.022000px;}
.x2d{left:689.751450px;}
.x38{left:702.482850px;}
.xa2{left:705.591450px;}
.x15{left:711.540000px;}
.x1{left:713.871450px;}
.x57{left:722.691450px;}
.x16{left:731.511450px;}
.x27{left:734.031450px;}
.xa1{left:745.551450px;}
.x47{left:747.171450px;}
.x48{left:748.791450px;}
.x96{left:750.951450px;}
.x11{left:756.171450px;}
.x39{left:759.441000px;}
.xf{left:760.851450px;}
.x69{left:764.631450px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v4{vertical-align:-16.509333pt;}
.v5{vertical-align:-13.208000pt;}
.v6{vertical-align:-9.905600pt;}
.v3{vertical-align:-6.603733pt;}
.v8{vertical-align:-5.284267pt;}
.v9{vertical-align:-3.963200pt;}
.v7{vertical-align:-2.642667pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:6.269867pt;}
.v1{vertical-align:24.320000pt;}
.ls81{letter-spacing:-7.535299pt;}
.ls9a{letter-spacing:-3.848850pt;}
.ls90{letter-spacing:-3.378629pt;}
.ls9e{letter-spacing:-3.099543pt;}
.ls83{letter-spacing:-2.485642pt;}
.ls33{letter-spacing:-2.290432pt;}
.ls1b{letter-spacing:-1.689856pt;}
.ls50{letter-spacing:-1.654362pt;}
.ls3f{letter-spacing:-1.602968pt;}
.ls1c{letter-spacing:-1.548544pt;}
.ls96{letter-spacing:-1.480327pt;}
.ls41{letter-spacing:-1.451986pt;}
.ls58{letter-spacing:-1.434960pt;}
.ls19{letter-spacing:-1.413120pt;}
.ls17{letter-spacing:-1.277696pt;}
.ls1d{letter-spacing:-1.106944pt;}
.ls37{letter-spacing:-1.069456pt;}
.ls4c{letter-spacing:-1.022697pt;}
.lse{letter-spacing:-1.006848pt;}
.ls4d{letter-spacing:-1.002644pt;}
.ls8c{letter-spacing:-0.997044pt;}
.lsa2{letter-spacing:-0.975274pt;}
.ls3c{letter-spacing:-0.951762pt;}
.ls42{letter-spacing:-0.951301pt;}
.ls54{letter-spacing:-0.887066pt;}
.ls1a{letter-spacing:-0.871424pt;}
.ls55{letter-spacing:-0.869673pt;}
.ls35{letter-spacing:-0.868933pt;}
.ls97{letter-spacing:-0.857719pt;}
.ls8b{letter-spacing:-0.796764pt;}
.ls9f{letter-spacing:-0.768028pt;}
.lsa{letter-spacing:-0.736000pt;}
.ls5d{letter-spacing:-0.641792pt;}
.ls34{letter-spacing:-0.634990pt;}
.ls2{letter-spacing:-0.564224pt;}
.lsa1{letter-spacing:-0.561653pt;}
.ls61{letter-spacing:-0.541696pt;}
.ls93{letter-spacing:-0.526822pt;}
.ls7f{letter-spacing:-0.448000pt;}
.ls27{letter-spacing:-0.413952pt;}
.ls8a{letter-spacing:-0.409267pt;}
.ls18{letter-spacing:-0.406272pt;}
.ls85{letter-spacing:-0.374436pt;}
.ls26{letter-spacing:-0.323840pt;}
.ls8{letter-spacing:-0.270848pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls1e{letter-spacing:-0.135424pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls8d{letter-spacing:-0.060955pt;}
.ls87{letter-spacing:-0.047893pt;}
.ls82{letter-spacing:-0.043104pt;}
.ls88{letter-spacing:-0.039185pt;}
.ls80{letter-spacing:-0.035267pt;}
.ls92{letter-spacing:-0.030477pt;}
.ls84{letter-spacing:-0.021770pt;}
.ls89{letter-spacing:-0.017416pt;}
.ls99{letter-spacing:-0.008708pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7b{letter-spacing:0.000425pt;}
.ls8e{letter-spacing:0.004354pt;}
.ls6e{letter-spacing:0.005484pt;}
.ls6f{letter-spacing:0.011098pt;}
.ls91{letter-spacing:0.017416pt;}
.ls98{letter-spacing:0.021770pt;}
.ls6d{letter-spacing:0.032671pt;}
.ls71{letter-spacing:0.032831pt;}
.ls9b{letter-spacing:0.034831pt;}
.ls9c{letter-spacing:0.035267pt;}
.ls6c{letter-spacing:0.039185pt;}
.ls86{letter-spacing:0.043539pt;}
.ls65{letter-spacing:0.047893pt;}
.lsa0{letter-spacing:0.054859pt;}
.ls77{letter-spacing:0.058778pt;}
.ls8f{letter-spacing:0.060955pt;}
.ls9d{letter-spacing:0.066615pt;}
.ls94{letter-spacing:0.067921pt;}
.ls95{letter-spacing:0.082724pt;}
.ls21{letter-spacing:0.128000pt;}
.ls4b{letter-spacing:0.135424pt;}
.ls4{letter-spacing:0.155904pt;}
.ls25{letter-spacing:0.176640pt;}
.ls43{letter-spacing:0.200274pt;}
.ls3a{letter-spacing:0.233944pt;}
.ls62{letter-spacing:0.244254pt;}
.ls16{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.270848pt;}
.ls0{letter-spacing:0.271360pt;}
.lsd{letter-spacing:0.288512pt;}
.ls5a{letter-spacing:0.304386pt;}
.ls36{letter-spacing:0.334205pt;}
.ls56{letter-spacing:0.347869pt;}
.ls52{letter-spacing:0.350925pt;}
.ls5{letter-spacing:0.400896pt;}
.ls4f{letter-spacing:0.401058pt;}
.lsf{letter-spacing:0.406272pt;}
.ls22{letter-spacing:0.413952pt;}
.ls2a{letter-spacing:0.414720pt;}
.ls2e{letter-spacing:0.448000pt;}
.ls5c{letter-spacing:0.463360pt;}
.ls3e{letter-spacing:0.500927pt;}
.ls9{letter-spacing:0.541696pt;}
.ls24{letter-spacing:0.542720pt;}
.ls7{letter-spacing:0.576000pt;}
.ls23{letter-spacing:0.639744pt;}
.ls20{letter-spacing:0.640000pt;}
.ls5e{letter-spacing:0.641792pt;}
.ls38{letter-spacing:0.735251pt;}
.ls59{letter-spacing:0.913157pt;}
.ls32{letter-spacing:0.935774pt;}
.ls51{letter-spacing:1.052776pt;}
.ls31{letter-spacing:1.102518pt;}
.ls53{letter-spacing:1.174059pt;}
.ls39{letter-spacing:1.203138pt;}
.ls45{letter-spacing:1.251712pt;}
.ls4a{letter-spacing:1.353569pt;}
.ls40{letter-spacing:1.401917pt;}
.ls3b{letter-spacing:1.402597pt;}
.ls5b{letter-spacing:1.408000pt;}
.ls57{letter-spacing:1.521928pt;}
.ls1f{letter-spacing:1.551360pt;}
.ls4e{letter-spacing:1.754627pt;}
.ls44{letter-spacing:1.802465pt;}
.ls3d{letter-spacing:1.803339pt;}
.ls14{letter-spacing:2.831360pt;}
.ls74{letter-spacing:3.519962pt;}
.ls12{letter-spacing:4.111360pt;}
.ls30{letter-spacing:5.391360pt;}
.ls2c{letter-spacing:6.671360pt;}
.ls15{letter-spacing:7.951360pt;}
.ls78{letter-spacing:8.786111pt;}
.ls48{letter-spacing:8.796191pt;}
.ls76{letter-spacing:8.826524pt;}
.ls28{letter-spacing:9.231360pt;}
.ls67{letter-spacing:9.747346pt;}
.ls79{letter-spacing:9.791085pt;}
.ls7a{letter-spacing:9.796419pt;}
.ls68{letter-spacing:9.801816pt;}
.ls72{letter-spacing:10.126066pt;}
.ls29{letter-spacing:10.511360pt;}
.ls69{letter-spacing:10.525645pt;}
.ls7d{letter-spacing:11.232877pt;}
.ls7e{letter-spacing:11.287199pt;}
.ls7c{letter-spacing:11.287732pt;}
.ls75{letter-spacing:11.446847pt;}
.ls60{letter-spacing:11.791360pt;}
.ls13{letter-spacing:13.071360pt;}
.ls63{letter-spacing:13.307795pt;}
.ls64{letter-spacing:13.315184pt;}
.ls5f{letter-spacing:14.351360pt;}
.ls2d{letter-spacing:15.631360pt;}
.ls11{letter-spacing:16.911360pt;}
.ls70{letter-spacing:17.970683pt;}
.ls2f{letter-spacing:18.191360pt;}
.ls66{letter-spacing:19.532711pt;}
.ls73{letter-spacing:23.338274pt;}
.ls6b{letter-spacing:24.126169pt;}
.ls10{letter-spacing:24.448000pt;}
.ls6a{letter-spacing:24.556012pt;}
.ls46{letter-spacing:25.305885pt;}
.ls49{letter-spacing:28.607930pt;}
.lsc{letter-spacing:30.991360pt;}
.ls2b{letter-spacing:52.751360pt;}
.ls47{letter-spacing:58.325271pt;}
.ws6{word-spacing:-35.992656pt;}
.ws0{word-spacing:-20.794624pt;}
.ws2{word-spacing:-18.368000pt;}
.wsf{word-spacing:-18.048000pt;}
.ws14{word-spacing:-17.920000pt;}
.ws1{word-spacing:-17.664000pt;}
.ws36{word-spacing:-17.344000pt;}
.wsa{word-spacing:-16.910336pt;}
.wsd{word-spacing:-16.774912pt;}
.wse{word-spacing:-16.657152pt;}
.ws9{word-spacing:-16.639488pt;}
.wsb{word-spacing:-16.368640pt;}
.ws18{word-spacing:-16.233216pt;}
.ws3{word-spacing:-16.097792pt;}
.ws13{word-spacing:-15.962368pt;}
.ws29{word-spacing:-15.721500pt;}
.ws4{word-spacing:-15.632640pt;}
.wsc{word-spacing:-15.361792pt;}
.ws24{word-spacing:-15.328379pt;}
.ws28{word-spacing:-15.320952pt;}
.ws2f{word-spacing:-15.290320pt;}
.ws10{word-spacing:-15.090944pt;}
.ws11{word-spacing:-14.955520pt;}
.ws17{word-spacing:-14.945280pt;}
.ws12{word-spacing:-14.820096pt;}
.ws15{word-spacing:-14.678784pt;}
.ws25{word-spacing:-14.426710pt;}
.ws30{word-spacing:-14.337808pt;}
.ws2c{word-spacing:-13.790545pt;}
.ws85{word-spacing:-13.283756pt;}
.ws33{word-spacing:-13.262513pt;}
.ws37{word-spacing:-13.248489pt;}
.ws23{word-spacing:-12.974020pt;}
.ws27{word-spacing:-12.967734pt;}
.ws2e{word-spacing:-12.934107pt;}
.ws34{word-spacing:-12.436323pt;}
.ws31{word-spacing:-12.282388pt;}
.ws84{word-spacing:-11.875704pt;}
.ws62{word-spacing:-11.807783pt;}
.ws32{word-spacing:-11.218781pt;}
.ws35{word-spacing:-10.653494pt;}
.ws21{word-spacing:-10.494040pt;}
.ws19{word-spacing:-10.319360pt;}
.ws1b{word-spacing:-10.226676pt;}
.ws1f{word-spacing:-10.026153pt;}
.wsa3{word-spacing:-9.922545pt;}
.wsd8{word-spacing:-9.883360pt;}
.ws45{word-spacing:-9.839821pt;}
.wse7{word-spacing:-9.818051pt;}
.ws83{word-spacing:-9.809344pt;}
.ws96{word-spacing:-9.800636pt;}
.ws1d{word-spacing:-9.625107pt;}
.ws22{word-spacing:-9.524845pt;}
.wsa0{word-spacing:-9.312999pt;}
.wsc4{word-spacing:-8.914615pt;}
.ws1a{word-spacing:-8.655912pt;}
.ws1c{word-spacing:-8.421969pt;}
.wsb5{word-spacing:-8.359494pt;}
.ws1e{word-spacing:-8.230424pt;}
.ws20{word-spacing:-8.221446pt;}
.ws75{word-spacing:-6.461192pt;}
.wsb6{word-spacing:-5.990971pt;}
.wsc5{word-spacing:-5.756294pt;}
.wsc2{word-spacing:-5.339504pt;}
.ws89{word-spacing:-0.248182pt;}
.ws91{word-spacing:-0.216635pt;}
.ws71{word-spacing:-0.204736pt;}
.wsd4{word-spacing:-0.199056pt;}
.wsbb{word-spacing:-0.190311pt;}
.wscf{word-spacing:-0.155663pt;}
.ws95{word-spacing:-0.141500pt;}
.ws72{word-spacing:-0.136311pt;}
.ws5{word-spacing:-0.119976pt;}
.ws8b{word-spacing:-0.103688pt;}
.ws8a{word-spacing:-0.094680pt;}
.ws80{word-spacing:-0.094273pt;}
.ws8c{word-spacing:-0.092505pt;}
.ws82{word-spacing:-0.092490pt;}
.wsba{word-spacing:-0.089263pt;}
.ws94{word-spacing:-0.088247pt;}
.ws7{word-spacing:-0.086392pt;}
.ws6d{word-spacing:-0.082732pt;}
.wsff{word-spacing:-0.082678pt;}
.ws87{word-spacing:-0.082652pt;}
.ws5b{word-spacing:-0.081662pt;}
.ws86{word-spacing:-0.070537pt;}
.ws92{word-spacing:-0.062306pt;}
.ws9f{word-spacing:-0.061078pt;}
.ws16{word-spacing:-0.058880pt;}
.ws100{word-spacing:-0.051230pt;}
.wsc9{word-spacing:-0.049284pt;}
.wsd6{word-spacing:-0.045380pt;}
.wsbd{word-spacing:-0.044597pt;}
.wsce{word-spacing:-0.043417pt;}
.ws60{word-spacing:-0.042753pt;}
.ws93{word-spacing:-0.041156pt;}
.ws5e{word-spacing:-0.040273pt;}
.ws2b{word-spacing:-0.029717pt;}
.ws74{word-spacing:-0.028781pt;}
.wsca{word-spacing:-0.028301pt;}
.ws70{word-spacing:-0.028248pt;}
.wsd3{word-spacing:-0.027198pt;}
.ws2d{word-spacing:-0.026415pt;}
.ws73{word-spacing:-0.022753pt;}
.ws81{word-spacing:-0.021682pt;}
.wsc1{word-spacing:-0.011891pt;}
.wsc6{word-spacing:-0.010670pt;}
.wsc3{word-spacing:-0.010570pt;}
.ws38{word-spacing:-0.004789pt;}
.ws5d{word-spacing:-0.002236pt;}
.ws8{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.004263pt;}
.wsbf{word-spacing:0.005514pt;}
.wsd9{word-spacing:0.005647pt;}
.ws6e{word-spacing:0.006501pt;}
.ws8d{word-spacing:0.012755pt;}
.ws61{word-spacing:0.013288pt;}
.ws7f{word-spacing:0.020657pt;}
.ws8f{word-spacing:0.020786pt;}
.wscc{word-spacing:0.026478pt;}
.wsc7{word-spacing:0.027229pt;}
.wsd7{word-spacing:0.031279pt;}
.wsd1{word-spacing:0.031812pt;}
.wsbc{word-spacing:0.035774pt;}
.wsd2{word-spacing:0.043314pt;}
.ws90{word-spacing:0.052113pt;}
.wsbe{word-spacing:0.097671pt;}
.ws79{word-spacing:0.625990pt;}
.ws7c{word-spacing:0.680404pt;}
.ws7e{word-spacing:0.706035pt;}
.ws7d{word-spacing:0.706569pt;}
.ws5a{word-spacing:0.712922pt;}
.ws88{word-spacing:0.726055pt;}
.ws6f{word-spacing:0.726161pt;}
.ws7b{word-spacing:0.742392pt;}
.ws8e{word-spacing:0.755518pt;}
.ws5c{word-spacing:0.821952pt;}
.wscd{word-spacing:0.865158pt;}
.wsc8{word-spacing:1.138530pt;}
.wsef{word-spacing:1.237402pt;}
.ws97{word-spacing:1.247400pt;}
.wseb{word-spacing:1.281329pt;}
.ws9a{word-spacing:1.370623pt;}
.ws9e{word-spacing:1.371705pt;}
.ws9c{word-spacing:1.376858pt;}
.ws9b{word-spacing:1.381925pt;}
.wsf2{word-spacing:1.382376pt;}
.wsf1{word-spacing:1.392331pt;}
.wsf4{word-spacing:1.398360pt;}
.ws26{word-spacing:1.401917pt;}
.ws98{word-spacing:1.406238pt;}
.wse9{word-spacing:1.409441pt;}
.wsec{word-spacing:1.414025pt;}
.wsf6{word-spacing:1.419359pt;}
.ws77{word-spacing:1.427866pt;}
.wsea{word-spacing:1.457283pt;}
.ws76{word-spacing:1.477932pt;}
.wsee{word-spacing:1.491045pt;}
.ws78{word-spacing:1.514287pt;}
.ws9d{word-spacing:1.516308pt;}
.wsed{word-spacing:1.544362pt;}
.ws7a{word-spacing:1.759212pt;}
.wscb{word-spacing:1.902468pt;}
.wsd0{word-spacing:1.907802pt;}
.wsf3{word-spacing:2.211586pt;}
.wse8{word-spacing:2.211639pt;}
.ws99{word-spacing:2.219179pt;}
.wsf5{word-spacing:2.246916pt;}
.ws39{word-spacing:2.437749pt;}
.ws59{word-spacing:2.444782pt;}
.ws53{word-spacing:2.459850pt;}
.ws58{word-spacing:2.459893pt;}
.ws51{word-spacing:2.459982pt;}
.ws56{word-spacing:2.465344pt;}
.ws57{word-spacing:2.519559pt;}
.ws55{word-spacing:2.550104pt;}
.ws52{word-spacing:2.714706pt;}
.ws50{word-spacing:3.257776pt;}
.ws54{word-spacing:3.374292pt;}
.wsfb{word-spacing:5.507722pt;}
.wsfe{word-spacing:5.511975pt;}
.wsfa{word-spacing:5.526333pt;}
.wsf7{word-spacing:5.542422pt;}
.wsf9{word-spacing:5.556786pt;}
.wsfd{word-spacing:5.656735pt;}
.wsf8{word-spacing:5.658510pt;}
.wsda{word-spacing:6.085723pt;}
.wsdc{word-spacing:6.089666pt;}
.wsdf{word-spacing:6.089682pt;}
.wse1{word-spacing:6.142159pt;}
.wsde{word-spacing:6.154169pt;}
.wse0{word-spacing:6.165429pt;}
.wse3{word-spacing:6.184096pt;}
.wse6{word-spacing:6.188204pt;}
.wsdb{word-spacing:6.197608pt;}
.wse4{word-spacing:6.225561pt;}
.wse5{word-spacing:6.241521pt;}
.wse2{word-spacing:6.267404pt;}
.wsd5{word-spacing:6.803973pt;}
.wsb0{word-spacing:8.043708pt;}
.wsb1{word-spacing:8.044283pt;}
.wsb8{word-spacing:8.063742pt;}
.wsb4{word-spacing:8.079806pt;}
.wsb2{word-spacing:8.087352pt;}
.wsb7{word-spacing:8.155709pt;}
.wsf0{word-spacing:8.240964pt;}
.ws48{word-spacing:8.756405pt;}
.ws4f{word-spacing:8.785178pt;}
.ws4a{word-spacing:8.793650pt;}
.ws47{word-spacing:8.815300pt;}
.ws49{word-spacing:8.868812pt;}
.ws46{word-spacing:8.868847pt;}
.ws4d{word-spacing:8.881896pt;}
.ws4b{word-spacing:8.924651pt;}
.ws3d{word-spacing:9.546190pt;}
.ws64{word-spacing:9.563710pt;}
.ws3b{word-spacing:9.595200pt;}
.ws3e{word-spacing:9.629693pt;}
.ws42{word-spacing:9.630764pt;}
.ws43{word-spacing:9.644969pt;}
.ws3a{word-spacing:9.649303pt;}
.ws41{word-spacing:9.650288pt;}
.ws65{word-spacing:9.653522pt;}
.ws40{word-spacing:9.685454pt;}
.ws69{word-spacing:9.685737pt;}
.ws6a{word-spacing:9.707608pt;}
.ws6c{word-spacing:9.723113pt;}
.ws63{word-spacing:9.727483pt;}
.ws68{word-spacing:9.728660pt;}
.ws3f{word-spacing:9.738345pt;}
.ws67{word-spacing:9.782084pt;}
.wsb9{word-spacing:9.836402pt;}
.ws3c{word-spacing:10.325405pt;}
.ws44{word-spacing:10.442674pt;}
.ws4c{word-spacing:10.513405pt;}
.ws6b{word-spacing:10.552847pt;}
.ws4e{word-spacing:10.750842pt;}
.wsb3{word-spacing:11.042642pt;}
.wsfc{word-spacing:12.274698pt;}
.wsdd{word-spacing:12.857709pt;}
.wsa5{word-spacing:14.182063pt;}
.wsa7{word-spacing:14.187097pt;}
.wsa8{word-spacing:14.197400pt;}
.wsae{word-spacing:14.205609pt;}
.wsad{word-spacing:14.226260pt;}
.wsab{word-spacing:14.270131pt;}
.wsac{word-spacing:14.280754pt;}
.wsa2{word-spacing:14.283084pt;}
.wsaa{word-spacing:14.286349pt;}
.wsa9{word-spacing:14.316608pt;}
.wsa6{word-spacing:15.986553pt;}
.ws66{word-spacing:16.405381pt;}
.wsa4{word-spacing:17.197594pt;}
.wsaf{word-spacing:17.818131pt;}
.wsa1{word-spacing:23.973671pt;}
.wsc0{word-spacing:105.681944pt;}
.ws2a{word-spacing:264.111479pt;}
._21{margin-left:-129.884380pt;}
._39{margin-left:-51.972080pt;}
._37{margin-left:-11.520000pt;}
._4{margin-left:-5.998635pt;}
._17{margin-left:-4.613589pt;}
._5{margin-left:-3.455691pt;}
._7{margin-left:-1.993984pt;}
._2{margin-left:-1.084928pt;}
._0{width:1.484800pt;}
._1{width:2.746880pt;}
._f{width:4.102603pt;}
._13{width:5.199104pt;}
._a{width:6.123520pt;}
._c{width:7.419392pt;}
._b{width:8.345856pt;}
._11{width:9.941760pt;}
._10{width:11.322624pt;}
._3{width:12.312239pt;}
._12{width:13.573537pt;}
._e{width:15.314432pt;}
._d{width:17.742080pt;}
._18{width:18.738176pt;}
._1a{width:19.825920pt;}
._15{width:20.798208pt;}
._16{width:21.709056pt;}
._1f{width:22.834944pt;}
._26{width:24.395008pt;}
._22{width:25.335040pt;}
._23{width:27.272704pt;}
._27{width:29.164032pt;}
._6{width:30.526976pt;}
._8{width:31.436032pt;}
._1d{width:33.355520pt;}
._1c{width:34.423808pt;}
._1b{width:35.375104pt;}
._2e{width:43.714048pt;}
._32{width:44.767541pt;}
._2f{width:45.706955pt;}
._2b{width:48.999680pt;}
._36{width:49.953536pt;}
._2a{width:50.851584pt;}
._1e{width:52.546560pt;}
._24{width:56.155648pt;}
._25{width:57.235456pt;}
._31{width:91.041280pt;}
._30{width:96.931072pt;}
._2d{width:99.188992pt;}
._2c{width:100.129280pt;}
._38{width:108.978710pt;}
._19{width:149.022720pt;}
._29{width:152.070400pt;}
._28{width:153.643520pt;}
._34{width:158.592256pt;}
._33{width:159.611904pt;}
._35{width:161.148416pt;}
._14{width:171.791360pt;}
._20{width:274.344124pt;}
._9{width:751.631360pt;}
._3a{width:940.732070pt;}
.fs1b{font-size:10.569916pt;}
.fs18{font-size:11.891155pt;}
.fs1a{font-size:19.206851pt;}
.fs19{font-size:19.818592pt;}
.fsa{font-size:25.639950pt;}
.fs10{font-size:26.415450pt;}
.fsd{font-size:29.717381pt;}
.fs9{font-size:33.420510pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs1c{font-size:39.185120pt;}
.fs12{font-size:43.483648pt;}
.fs16{font-size:43.539031pt;}
.fs15{font-size:47.892916pt;}
.fse{font-size:49.528968pt;}
.fsf{font-size:49.606276pt;}
.fsc{font-size:50.068470pt;}
.fsb{font-size:50.092743pt;}
.fs11{font-size:50.132196pt;}
.fs17{font-size:52.246827pt;}
.fs8{font-size:53.760000pt;}
.fs14{font-size:58.777680pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs13{font-size:71.839387pt;}
.fs1{font-size:74.240000pt;}
.fs5{font-size:86.392282pt;}
.fs2{font-size:96.000000pt;}
.fs4{font-size:119.975521pt;}
.y0{bottom:0.000000pt;}
.y105{bottom:2.564227pt;}
.y10b{bottom:3.204478pt;}
.y10f{bottom:3.204664pt;}
.y219{bottom:3.356499pt;}
.y1c{bottom:3.359973pt;}
.y177{bottom:3.841653pt;}
.yf5{bottom:3.845513pt;}
.y109{bottom:3.845521pt;}
.yf3{bottom:3.845557pt;}
.yf7{bottom:3.845602pt;}
.y10d{bottom:3.845885pt;}
.yf1{bottom:3.846492pt;}
.yeb{bottom:3.864276pt;}
.yef{bottom:3.868662pt;}
.y1f4{bottom:3.869738pt;}
.y144{bottom:3.870177pt;}
.ye9{bottom:3.873219pt;}
.y102{bottom:4.486591pt;}
.y103{bottom:4.486681pt;}
.yf9{bottom:4.505355pt;}
.yfd{bottom:4.508851pt;}
.yff{bottom:4.508895pt;}
.yfe{bottom:4.508940pt;}
.yf8{bottom:4.514298pt;}
.y20f{bottom:5.019105pt;}
.y217{bottom:5.019107pt;}
.y215{bottom:5.019141pt;}
.y211{bottom:5.019205pt;}
.y20d{bottom:5.020292pt;}
.y213{bottom:5.020327pt;}
.y169{bottom:5.761999pt;}
.y159{bottom:5.762560pt;}
.y167{bottom:5.762605pt;}
.y132{bottom:5.763906pt;}
.y12c{bottom:5.763924pt;}
.y138{bottom:5.764155pt;}
.y128{bottom:5.765264pt;}
.y126{bottom:5.765270pt;}
.y1ea{bottom:5.786622pt;}
.y1f0{bottom:5.786665pt;}
.y1ec{bottom:5.786671pt;}
.y1f2{bottom:5.786714pt;}
.y1e8{bottom:5.788009pt;}
.y1ee{bottom:5.788052pt;}
.y12a{bottom:5.791936pt;}
.y15d{bottom:5.794564pt;}
.y165{bottom:5.795877pt;}
.y161{bottom:5.795888pt;}
.y163{bottom:5.795949pt;}
.y15f{bottom:5.795960pt;}
.y12e{bottom:5.797272pt;}
.y136{bottom:5.797372pt;}
.y134{bottom:5.797388pt;}
.y130{bottom:5.797389pt;}
.y15b{bottom:5.802504pt;}
.y21f{bottom:5.851020pt;}
.y21e{bottom:5.851054pt;}
.y21c{bottom:5.851118pt;}
.y21a{bottom:5.852205pt;}
.y21d{bottom:5.852240pt;}
.y21b{bottom:5.879905pt;}
.y172{bottom:6.722423pt;}
.y171{bottom:6.723028pt;}
.y13f{bottom:6.724795pt;}
.y13c{bottom:6.724813pt;}
.y142{bottom:6.725044pt;}
.y139{bottom:6.726159pt;}
.y1f9{bottom:6.745776pt;}
.y1f7{bottom:6.745782pt;}
.y1fa{bottom:6.745825pt;}
.y1f5{bottom:6.747120pt;}
.y1f8{bottom:6.747163pt;}
.y13b{bottom:6.752825pt;}
.y13a{bottom:6.752844pt;}
.y16c{bottom:6.754988pt;}
.y16d{bottom:6.755049pt;}
.y170{bottom:6.756300pt;}
.y16e{bottom:6.756311pt;}
.y16f{bottom:6.756372pt;}
.y13d{bottom:6.758161pt;}
.y141{bottom:6.758260pt;}
.y140{bottom:6.758277pt;}
.y13e{bottom:6.758278pt;}
.y16b{bottom:6.762928pt;}
.y16a{bottom:6.763001pt;}
.y1f6{bottom:6.779035pt;}
.y279{bottom:7.913467pt;}
.ye7{bottom:8.351761pt;}
.yed{bottom:9.642864pt;}
.y20b{bottom:10.907284pt;}
.y8d{bottom:11.680000pt;}
.y124{bottom:12.518197pt;}
.y157{bottom:12.552218pt;}
.y1e6{bottom:12.575041pt;}
.y106{bottom:12.839297pt;}
.yfa{bottom:15.430382pt;}
.y278{bottom:16.501600pt;}
.y223{bottom:16.746837pt;}
.y101{bottom:18.633110pt;}
.y178{bottom:19.275123pt;}
.y1fe{bottom:19.307428pt;}
.y188{bottom:19.776800pt;}
.y276{bottom:20.811677pt;}
.y222{bottom:21.741721pt;}
.y221{bottom:21.741785pt;}
.y220{bottom:21.770605pt;}
.y107{bottom:23.114367pt;}
.y1fd{bottom:25.066176pt;}
.y1fc{bottom:25.066182pt;}
.y1fb{bottom:25.099386pt;}
.y2a4{bottom:25.420000pt;}
.y282{bottom:25.750400pt;}
.yfb{bottom:27.628688pt;}
.y285{bottom:28.392933pt;}
.y100{bottom:28.910851pt;}
.y2a8{bottom:29.383733pt;}
.yfc{bottom:30.193004pt;}
.y27a{bottom:30.704800pt;}
.y29c{bottom:31.695867pt;}
.y295{bottom:32.356533pt;}
.y29b{bottom:33.347333pt;}
.y28d{bottom:33.677733pt;}
.y275{bottom:33.873410pt;}
.y2b8{bottom:34.008133pt;}
.y297{bottom:35.329200pt;}
.y28e{bottom:35.989867pt;}
.y281{bottom:36.320267pt;}
.y28c{bottom:36.650667pt;}
.y90{bottom:36.960000pt;}
.y93{bottom:37.280000pt;}
.y294{bottom:37.311067pt;}
.y287{bottom:38.302133pt;}
.y2be{bottom:38.632533pt;}
.y29e{bottom:38.962533pt;}
.y2a6{bottom:39.292933pt;}
.y27f{bottom:39.953600pt;}
.y187{bottom:41.239333pt;}
.y286{bottom:41.274800pt;}
.y2c1{bottom:41.605067pt;}
.y2b0{bottom:42.265867pt;}
.y175{bottom:43.346567pt;}
.y174{bottom:43.379182pt;}
.y173{bottom:43.384468pt;}
.y290{bottom:43.917333pt;}
.y296{bottom:44.578000pt;}
.y28b{bottom:45.238400pt;}
.y2b2{bottom:46.229467pt;}
.y1b{bottom:46.527227pt;}
.y299{bottom:46.890133pt;}
.y274{bottom:46.935143pt;}
.y2b5{bottom:48.211333pt;}
.y291{bottom:48.541733pt;}
.y28a{bottom:48.872000pt;}
.y2aa{bottom:49.532800pt;}
.y1a{bottom:49.887200pt;}
.y19{bottom:50.218706pt;}
.y2b9{bottom:51.184267pt;}
.y2ac{bottom:51.844667pt;}
.y2c0{bottom:52.175067pt;}
.y292{bottom:52.505333pt;}
.y2b6{bottom:52.835733pt;}
.y27b{bottom:53.826533pt;}
.y29f{bottom:54.487200pt;}
.y2a0{bottom:54.817600pt;}
.y283{bottom:57.129733pt;}
.y288{bottom:58.450933pt;}
.y29a{bottom:59.111600pt;}
.y2a5{bottom:60.102400pt;}
.y2ae{bottom:60.432667pt;}
.y2a1{bottom:60.763067pt;}
.y2bc{bottom:61.093467pt;}
.y280{bottom:61.423733pt;}
.y2a9{bottom:62.084533pt;}
.y2bb{bottom:63.075333pt;}
.y1b3{bottom:63.527333pt;}
.y289{bottom:64.066267pt;}
.y191{bottom:64.352800pt;}
.y27e{bottom:64.726800pt;}
.y298{bottom:66.048133pt;}
.y2b3{bottom:66.378267pt;}
.y293{bottom:67.369333pt;}
.y26e{bottom:67.964477pt;}
.y284{bottom:68.690400pt;}
.y194{bottom:70.956667pt;}
.y1b7{bottom:73.433200pt;}
.y2ba{bottom:73.975600pt;}
.y2b1{bottom:75.627067pt;}
.y28f{bottom:76.287733pt;}
.y189{bottom:76.735067pt;}
.y2a3{bottom:76.948400pt;}
.y27c{bottom:77.278533pt;}
.y2bf{bottom:77.939200pt;}
.y2a7{bottom:78.269600pt;}
.y1ab{bottom:79.211600pt;}
.y2ad{bottom:79.260400pt;}
.y2af{bottom:79.590667pt;}
.y1a4{bottom:80.862533pt;}
.y2b4{bottom:82.894000pt;}
.y1aa{bottom:83.338933pt;}
.y19c{bottom:84.164400pt;}
.y1c7{bottom:84.989867pt;}
.y2b7{bottom:85.536267pt;}
.y2ab{bottom:85.866533pt;}
.y1a6{bottom:88.291867pt;}
.y19d{bottom:89.942800pt;}
.y273{bottom:90.691810pt;}
.y190{bottom:90.768267pt;}
.y19b{bottom:91.593733pt;}
.y1a3{bottom:93.244800pt;}
.y196{bottom:95.721200pt;}
.y1cd{bottom:96.546667pt;}
.y7b{bottom:96.927200pt;}
.y1ad{bottom:97.372133pt;}
.y1b5{bottom:98.197600pt;}
.yb7{bottom:99.807200pt;}
.y18e{bottom:99.848667pt;}
.y27d{bottom:100.400133pt;}
.y209{bottom:100.767200pt;}
.y22e{bottom:101.087200pt;}
.y122{bottom:101.407200pt;}
.y7a{bottom:101.727200pt;}
.y2bd{bottom:102.712400pt;}
.y18{bottom:102.972073pt;}
.ydb{bottom:103.007200pt;}
.y195{bottom:103.150533pt;}
.ya5{bottom:103.327200pt;}
.y272{bottom:103.753543pt;}
.y1d0{bottom:103.976000pt;}
.y17{bottom:104.607200pt;}
.y1bf{bottom:105.626933pt;}
.y250{bottom:105.887200pt;}
.y29d{bottom:106.015600pt;}
.y258{bottom:108.767200pt;}
.y19f{bottom:109.754400pt;}
.y1a5{bottom:111.405333pt;}
.y79{bottom:112.287200pt;}
.ye5{bottom:112.927200pt;}
.y19a{bottom:113.056267pt;}
.y63{bottom:113.567200pt;}
.y2a2{bottom:113.612667pt;}
.y1c1{bottom:115.532800pt;}
.y271{bottom:116.815277pt;}
.y78{bottom:117.087200pt;}
.y1a8{bottom:117.183733pt;}
.y1c4{bottom:120.485733pt;}
.y1e4{bottom:120.607200pt;}
.y24d{bottom:121.247200pt;}
.y1a0{bottom:121.311200pt;}
.y199{bottom:122.136667pt;}
.y259{bottom:122.449347pt;}
.y121{bottom:123.167200pt;}
.y1b9{bottom:123.787600pt;}
.yb6{bottom:125.087200pt;}
.y208{bottom:126.047200pt;}
.y22d{bottom:126.367200pt;}
.ya4{bottom:127.647200pt;}
.y1c8{bottom:127.915067pt;}
.yda{bottom:128.287200pt;}
.y77{bottom:128.607200pt;}
.y1bb{bottom:129.566000pt;}
.y270{bottom:129.877010pt;}
.y62{bottom:130.207200pt;}
.y1cf{bottom:130.391467pt;}
.y16{bottom:130.847200pt;}
.y24f{bottom:131.167200pt;}
.y1a1{bottom:131.216933pt;}
.y1c5{bottom:132.042400pt;}
.y257{bottom:132.127200pt;}
.ya3{bottom:132.447200pt;}
.y18a{bottom:134.518933pt;}
.y1ae{bottom:136.169867pt;}
.y1af{bottom:136.995333pt;}
.y192{bottom:142.773733pt;}
.y26f{bottom:142.938610pt;}
.ya2{bottom:143.007200pt;}
.y1e3{bottom:145.887200pt;}
.y197{bottom:146.075733pt;}
.y24c{bottom:146.527200pt;}
.y1a9{bottom:147.726667pt;}
.ya1{bottom:147.807200pt;}
.y1b4{bottom:150.203067pt;}
.y1bd{bottom:151.028533pt;}
.yb5{bottom:151.327200pt;}
.y22c{bottom:151.647200pt;}
.y1b0{bottom:151.854000pt;}
.y1cb{bottom:152.679600pt;}
.y24e{bottom:153.247200pt;}
.y18f{bottom:153.504933pt;}
.yd9{bottom:153.567200pt;}
.y8b{bottom:153.887200pt;}
.y185{bottom:154.207200pt;}
.y1b8{bottom:155.156000pt;}
.y61{bottom:155.487200pt;}
.y1ca{bottom:157.632400pt;}
.y15{bottom:158.367200pt;}
.ya0{bottom:159.327200pt;}
.y256{bottom:159.967200pt;}
.y198{bottom:160.108800pt;}
.y18d{bottom:161.759867pt;}
.y26d{bottom:162.661810pt;}
.y14c{bottom:163.167200pt;}
.y1a7{bottom:165.061733pt;}
.y1c2{bottom:165.887200pt;}
.y1a2{bottom:168.363733pt;}
.y1e2{bottom:171.167200pt;}
.y193{bottom:171.665600pt;}
.y24b{bottom:171.807200pt;}
.y76{bottom:173.407200pt;}
.y251{bottom:175.647200pt;}
.yb4{bottom:176.607200pt;}
.y22b{bottom:176.927200pt;}
.yd8{bottom:178.847200pt;}
.y8a{bottom:179.167200pt;}
.y184{bottom:179.487200pt;}
.y60{bottom:180.767200pt;}
.y1c9{bottom:184.873333pt;}
.y14{bottom:186.207200pt;}
.y2c8{bottom:186.499410pt;}
.y255{bottom:187.487200pt;}
.y2c2{bottom:187.675010pt;}
.y14b{bottom:188.447200pt;}
.y1c0{bottom:189.000800pt;}
.y9f{bottom:190.367200pt;}
.y19e{bottom:190.651733pt;}
.y155{bottom:191.327200pt;}
.y1b2{bottom:192.302667pt;}
.y18b{bottom:193.128133pt;}
.y1ce{bottom:194.779067pt;}
.y1b6{bottom:195.604667pt;}
.y1e1{bottom:196.447200pt;}
.y24a{bottom:197.087200pt;}
.y1bc{bottom:198.081067pt;}
.y75{bottom:198.687200pt;}
.y1be{bottom:198.906533pt;}
.y207{bottom:201.887200pt;}
.y22a{bottom:202.207200pt;}
.yd7{bottom:204.127200pt;}
.y89{bottom:204.447200pt;}
.y183{bottom:205.087200pt;}
.y5f{bottom:206.047200pt;}
.y1c3{bottom:207.161333pt;}
.y154{bottom:213.087200pt;}
.yb3{bottom:213.407200pt;}
.y13{bottom:213.727200pt;}
.y1c6{bottom:213.765200pt;}
.y1ba{bottom:214.590667pt;}
.y254{bottom:215.007200pt;}
.y9e{bottom:215.647200pt;}
.y168{bottom:220.950533pt;}
.y1e0{bottom:221.727200pt;}
.y249{bottom:222.367200pt;}
.y74{bottom:224.287200pt;}
.y206{bottom:227.167200pt;}
.y229{bottom:227.487200pt;}
.yd6{bottom:229.407200pt;}
.y88{bottom:229.727200pt;}
.y182{bottom:230.367200pt;}
.y5e{bottom:231.327200pt;}
.y166{bottom:239.262000pt;}
.y9d{bottom:240.927200pt;}
.y12{bottom:241.247200pt;}
.y253{bottom:241.567200pt;}
.y1df{bottom:247.327200pt;}
.y248{bottom:247.647200pt;}
.y73{bottom:249.567200pt;}
.y18c{bottom:250.912000pt;}
.y205{bottom:252.447200pt;}
.y228{bottom:252.767200pt;}
.yd5{bottom:254.687200pt;}
.y87{bottom:255.007200pt;}
.y181{bottom:255.647200pt;}
.y5d{bottom:256.607200pt;}
.y1cc{bottom:256.690267pt;}
.y164{bottom:257.540800pt;}
.y252{bottom:263.647200pt;}
.y1ac{bottom:264.945067pt;}
.y9c{bottom:266.207200pt;}
.y11{bottom:268.767200pt;}
.y1de{bottom:272.607200pt;}
.y247{bottom:273.247200pt;}
.y72{bottom:274.847200pt;}
.y162{bottom:275.852800pt;}
.y204{bottom:277.727200pt;}
.y227{bottom:278.047200pt;}
.yd4{bottom:279.967200pt;}
.y86{bottom:280.287200pt;}
.y180{bottom:280.927200pt;}
.y5c{bottom:281.887200pt;}
.y1b1{bottom:283.931200pt;}
.y9b{bottom:291.487200pt;}
.y160{bottom:294.164933pt;}
.y10{bottom:296.607200pt;}
.y1dd{bottom:297.887200pt;}
.y246{bottom:298.527200pt;}
.y71{bottom:300.127200pt;}
.yb2{bottom:301.087200pt;}
.y17f{bottom:303.007200pt;}
.y226{bottom:303.327200pt;}
.yd3{bottom:305.247200pt;}
.y85{bottom:305.567200pt;}
.y2c5{bottom:307.842743pt;}
.y2c7{bottom:308.103943pt;}
.y277{bottom:311.269333pt;}
.y15e{bottom:312.476933pt;}
.y40{bottom:314.207200pt;}
.y9a{bottom:317.087200pt;}
.y2c3{bottom:317.639010pt;}
.y5b{bottom:318.047200pt;}
.y2c4{bottom:319.532877pt;}
.y2c6{bottom:319.794210pt;}
.y1dc{bottom:323.167200pt;}
.y245{bottom:323.807200pt;}
.yf{bottom:324.127200pt;}
.y70{bottom:325.407200pt;}
.yb1{bottom:326.367200pt;}
.y203{bottom:328.287200pt;}
.y225{bottom:328.607200pt;}
.yd2{bottom:330.527200pt;}
.y15c{bottom:330.789067pt;}
.y84{bottom:330.847200pt;}
.y3f{bottom:331.167200pt;}
.y99{bottom:342.367200pt;}
.y5a{bottom:343.327200pt;}
.y1db{bottom:344.927200pt;}
.ye4{bottom:346.527200pt;}
.y3e{bottom:347.807200pt;}
.y244{bottom:349.087200pt;}
.y15a{bottom:349.095867pt;}
.y202{bottom:350.047200pt;}
.y6f{bottom:350.687200pt;}
.yb0{bottom:352.607200pt;}
.y1f1{bottom:353.340133pt;}
.ye{bottom:353.567200pt;}
.y224{bottom:353.887200pt;}
.yd1{bottom:355.807200pt;}
.y83{bottom:356.127200pt;}
.y216{bottom:357.069333pt;}
.y3d{bottom:364.767200pt;}
.y158{bottom:367.410533pt;}
.y98{bottom:367.647200pt;}
.y59{bottom:368.607200pt;}
.y1ef{bottom:371.660533pt;}
.ye3{bottom:372.767200pt;}
.y214{bottom:372.960000pt;}
.y243{bottom:374.367200pt;}
.y6e{bottom:375.967200pt;}
.y120{bottom:376.287200pt;}
.yaf{bottom:379.167200pt;}
.yd0{bottom:381.087200pt;}
.y82{bottom:381.407200pt;}
.y3c{bottom:381.727200pt;}
.yd{bottom:383.967200pt;}
.y176{bottom:385.725333pt;}
.y212{bottom:388.878400pt;}
.y1ed{bottom:390.012800pt;}
.y97{bottom:392.927200pt;}
.y58{bottom:393.887200pt;}
.y3b{bottom:398.367200pt;}
.ye2{bottom:399.007200pt;}
.y242{bottom:399.647200pt;}
.y6d{bottom:401.247200pt;}
.y11f{bottom:401.567200pt;}
.yae{bottom:404.447200pt;}
.y210{bottom:404.769067pt;}
.ycf{bottom:406.367200pt;}
.y81{bottom:406.687200pt;}
.y1eb{bottom:408.333200pt;}
.yc{bottom:411.487200pt;}
.y3a{bottom:415.327200pt;}
.y96{bottom:418.207200pt;}
.y57{bottom:419.167200pt;}
.y156{bottom:419.433467pt;}
.y20e{bottom:420.659867pt;}
.ye1{bottom:424.927200pt;}
.y6c{bottom:426.527200pt;}
.y1e9{bottom:426.653600pt;}
.y11e{bottom:426.847200pt;}
.yad{bottom:429.727200pt;}
.yce{bottom:431.967200pt;}
.y39{bottom:432.287200pt;}
.y20c{bottom:436.578267pt;}
.y2cd{bottom:438.002610pt;}
.yb{bottom:439.007200pt;}
.y95{bottom:443.487200pt;}
.y56{bottom:444.447200pt;}
.y1e7{bottom:445.005867pt;}
.y38{bottom:449.247200pt;}
.y241{bottom:450.207200pt;}
.y2cc{bottom:451.064343pt;}
.y6b{bottom:451.807200pt;}
.y11d{bottom:452.127200pt;}
.y218{bottom:452.468933pt;}
.yac{bottom:455.007200pt;}
.ycd{bottom:457.247200pt;}
.y80{bottom:457.567200pt;}
.ye0{bottom:457.887200pt;}
.y94{bottom:459.007200pt;}
.y1f3{bottom:463.326267pt;}
.y2cb{bottom:464.125943pt;}
.y37{bottom:465.887200pt;}
.y153{bottom:466.847200pt;}
.y55{bottom:469.727200pt;}
.ya{bottom:473.247200pt;}
.y240{bottom:475.487200pt;}
.y6a{bottom:477.087200pt;}
.y2ca{bottom:477.187677pt;}
.y11c{bottom:477.407200pt;}
.ydf{bottom:478.687200pt;}
.yab{bottom:480.287200pt;}
.y20a{bottom:481.752267pt;}
.ycc{bottom:482.527200pt;}
.y36{bottom:482.847200pt;}
.y2c9{bottom:490.249410pt;}
.y11b{bottom:491.967200pt;}
.y152{bottom:492.127200pt;}
.y54{bottom:495.007200pt;}
.y1e5{bottom:497.086933pt;}
.y35{bottom:499.807200pt;}
.y23f{bottom:500.767200pt;}
.y69{bottom:502.367200pt;}
.yaa{bottom:505.567200pt;}
.ycb{bottom:507.807200pt;}
.y7f{bottom:508.127200pt;}
.y26c{bottom:510.691010pt;}
.y92{bottom:511.487200pt;}
.y9{bottom:514.527200pt;}
.y34{bottom:516.447200pt;}
.y151{bottom:517.407200pt;}
.y11a{bottom:517.887200pt;}
.y53{bottom:520.287200pt;}
.y201{bottom:524.447200pt;}
.y23e{bottom:526.047200pt;}
.y68{bottom:527.647200pt;}
.ya9{bottom:531.167200pt;}
.yde{bottom:532.767200pt;}
.yca{bottom:533.087200pt;}
.y33{bottom:533.407200pt;}
.y267{bottom:540.406343pt;}
.y26b{bottom:541.320743pt;}
.y150{bottom:542.687200pt;}
.y14a{bottom:543.007200pt;}
.y119{bottom:543.807200pt;}
.y1da{bottom:544.607200pt;}
.y200{bottom:549.727200pt;}
.y32{bottom:550.367200pt;}
.y23d{bottom:551.327200pt;}
.y266{bottom:553.468077pt;}
.y67{bottom:553.567200pt;}
.y26a{bottom:554.382343pt;}
.y8{bottom:555.807200pt;}
.y52{bottom:556.447200pt;}
.yc9{bottom:558.367200pt;}
.y7e{bottom:558.687200pt;}
.ydd{bottom:559.007200pt;}
.y91{bottom:564.287200pt;}
.y265{bottom:566.529810pt;}
.y31{bottom:567.007200pt;}
.y269{bottom:567.444077pt;}
.y14f{bottom:567.967200pt;}
.y149{bottom:568.287200pt;}
.y118{bottom:569.727200pt;}
.y1d9{bottom:569.887200pt;}
.y1ff{bottom:571.807200pt;}
.y17e{bottom:573.407200pt;}
.y23c{bottom:576.607200pt;}
.y65{bottom:580.767200pt;}
.y7{bottom:581.727200pt;}
.yc8{bottom:583.647200pt;}
.y30{bottom:583.967200pt;}
.ydc{bottom:584.287200pt;}
.y66{bottom:586.847200pt;}
.y268{bottom:588.212210pt;}
.y264{bottom:588.342877pt;}
.y14e{bottom:593.247200pt;}
.y148{bottom:593.567200pt;}
.y1d8{bottom:595.167200pt;}
.y117{bottom:595.647200pt;}
.y17d{bottom:598.687200pt;}
.y6{bottom:599.967200pt;}
.y2f{bottom:600.927200pt;}
.y23b{bottom:601.887200pt;}
.y10c{bottom:603.201200pt;}
.y10e{bottom:605.124133pt;}
.y51{bottom:607.007200pt;}
.yc7{bottom:608.927200pt;}
.y7d{bottom:609.247200pt;}
.y14d{bottom:615.647200pt;}
.y262{bottom:615.707103pt;}
.y8f{bottom:616.767200pt;}
.y108{bottom:617.325333pt;}
.y2e{bottom:617.887200pt;}
.y5{bottom:618.527200pt;}
.y147{bottom:618.847200pt;}
.y10a{bottom:619.248533pt;}
.y1d7{bottom:620.447200pt;}
.y116{bottom:621.567200pt;}
.y17c{bottom:623.967200pt;}
.y23a{bottom:627.167200pt;}
.y261{bottom:628.768810pt;}
.yf6{bottom:631.449467pt;}
.y50{bottom:632.287200pt;}
.yc6{bottom:634.207200pt;}
.y2d{bottom:634.527200pt;}
.y4{bottom:636.767200pt;}
.y260{bottom:641.830517pt;}
.yf4{bottom:643.650533pt;}
.y146{bottom:644.127200pt;}
.y1d6{bottom:645.727200pt;}
.y17b{bottom:649.247200pt;}
.y2c{bottom:651.487200pt;}
.y239{bottom:652.447200pt;}
.y25f{bottom:654.892210pt;}
.y3{bottom:655.647200pt;}
.yf2{bottom:655.851467pt;}
.y4f{bottom:657.567200pt;}
.y115{bottom:658.527200pt;}
.yc5{bottom:659.487200pt;}
.y7c{bottom:659.807200pt;}
.yf0{bottom:668.052400pt;}
.y2b{bottom:668.447200pt;}
.y145{bottom:669.407200pt;}
.y8e{bottom:669.567200pt;}
.y1d5{bottom:671.007200pt;}
.y17a{bottom:674.527200pt;}
.y263{bottom:674.941930pt;}
.y2{bottom:676.767200pt;}
.y238{bottom:678.047200pt;}
.yee{bottom:680.253467pt;}
.y4e{bottom:682.847200pt;}
.y114{bottom:683.807200pt;}
.yc4{bottom:684.767200pt;}
.y2a{bottom:685.087200pt;}
.y1{bottom:691.807200pt;}
.yec{bottom:692.451733pt;}
.y1d4{bottom:696.287200pt;}
.y186{bottom:696.596667pt;}
.y179{bottom:696.607200pt;}
.y8c{bottom:696.767200pt;}
.y237{bottom:704.287200pt;}
.y4d{bottom:708.127200pt;}
.y113{bottom:709.087200pt;}
.yc3{bottom:710.047200pt;}
.y29{bottom:710.367200pt;}
.yea{bottom:715.575067pt;}
.y25e{bottom:718.829265pt;}
.y1d3{bottom:721.567200pt;}
.ye8{bottom:727.773333pt;}
.y236{bottom:729.567200pt;}
.y25d{bottom:733.262450pt;}
.y4c{bottom:733.407200pt;}
.y112{bottom:734.687200pt;}
.yc2{bottom:735.327200pt;}
.y28{bottom:735.647200pt;}
.y104{bottom:739.980667pt;}
.y1d2{bottom:746.847200pt;}
.y235{bottom:755.807200pt;}
.y25c{bottom:757.491917pt;}
.y4b{bottom:758.687200pt;}
.ya8{bottom:759.647200pt;}
.y111{bottom:759.967200pt;}
.yc1{bottom:760.607200pt;}
.y27{bottom:760.927200pt;}
.y1d1{bottom:768.927200pt;}
.ye6{bottom:772.738000pt;}
.y234{bottom:781.087200pt;}
.y110{bottom:781.727200pt;}
.y4a{bottom:783.967200pt;}
.y25b{bottom:784.399023pt;}
.yc0{bottom:785.887200pt;}
.y26{bottom:786.207200pt;}
.y137{bottom:790.531600pt;}
.y25a{bottom:806.212077pt;}
.y233{bottom:807.327200pt;}
.y135{bottom:808.819333pt;}
.y49{bottom:809.247200pt;}
.ybf{bottom:811.167200pt;}
.y25{bottom:811.487200pt;}
.y133{bottom:827.140267pt;}
.y232{bottom:832.607200pt;}
.y48{bottom:834.527200pt;}
.y24{bottom:836.767200pt;}
.ybe{bottom:837.727200pt;}
.y64{bottom:840.607200pt;}
.y131{bottom:845.461333pt;}
.y231{bottom:858.847200pt;}
.y47{bottom:859.807200pt;}
.y23{bottom:862.047200pt;}
.y12f{bottom:863.748800pt;}
.ya7{bottom:868.127200pt;}
.ybd{bottom:874.847200pt;}
.y12d{bottom:882.069867pt;}
.y230{bottom:884.127200pt;}
.y46{bottom:885.087200pt;}
.y22{bottom:887.647200pt;}
.ya6{bottom:893.727200pt;}
.y12b{bottom:900.390800pt;}
.y45{bottom:910.367200pt;}
.ybc{bottom:910.687200pt;}
.y21{bottom:912.927200pt;}
.y129{bottom:918.679733pt;}
.y44{bottom:935.647200pt;}
.ybb{bottom:935.967200pt;}
.y22f{bottom:936.927200pt;}
.y127{bottom:937.003333pt;}
.y20{bottom:938.207200pt;}
.y125{bottom:955.313600pt;}
.y43{bottom:960.927200pt;}
.yba{bottom:961.567200pt;}
.y1f{bottom:963.487200pt;}
.y143{bottom:973.610533pt;}
.y42{bottom:986.527200pt;}
.yb9{bottom:987.807200pt;}
.y1e{bottom:988.767200pt;}
.y123{bottom:991.934133pt;}
.y41{bottom:1012.767200pt;}
.yb8{bottom:1013.087200pt;}
.y1d{bottom:1014.047200pt;}
.h49{height:7.581644pt;}
.h46{height:8.546768pt;}
.h20{height:10.918820pt;}
.h19{height:12.842057pt;}
.h48{height:13.983112pt;}
.h47{height:14.428477pt;}
.h1f{height:14.765293pt;}
.h3a{height:16.722613pt;}
.h3b{height:16.751493pt;}
.hc{height:16.960000pt;}
.h17{height:17.328720pt;}
.h1c{height:18.666585pt;}
.h30{height:18.947410pt;}
.h23{height:19.248480pt;}
.h28{height:19.272493pt;}
.h33{height:19.279467pt;}
.h24{height:19.281840pt;}
.h34{height:19.312760pt;}
.h2d{height:21.359367pt;}
.h38{height:22.602627pt;}
.h11{height:23.355000pt;}
.h1a{height:23.760880pt;}
.h18{height:24.331045pt;}
.h13{height:25.280000pt;}
.h21{height:26.006733pt;}
.h26{height:26.027467pt;}
.h31{height:26.058507pt;}
.h3c{height:30.146453pt;}
.h39{height:31.657285pt;}
.h4a{height:32.316244pt;}
.h3e{height:32.612160pt;}
.h3d{height:32.641040pt;}
.hf{height:33.277500pt;}
.h1e{height:33.398427pt;}
.h2b{height:34.669947pt;}
.h35{height:34.755787pt;}
.h43{height:35.906945pt;}
.h1b{height:35.961853pt;}
.h2e{height:36.058443pt;}
.h2f{height:36.114725pt;}
.h27{height:36.451216pt;}
.h22{height:36.468887pt;}
.h32{height:36.497610pt;}
.h1d{height:37.244013pt;}
.h37{height:37.598480pt;}
.h36{height:37.631787pt;}
.h4b{height:38.586111pt;}
.h42{height:39.497624pt;}
.h25{height:42.866250pt;}
.h44{height:43.088325pt;}
.h10{height:43.250000pt;}
.h12{height:48.195000pt;}
.h41{height:48.474366pt;}
.h15{height:50.560000pt;}
.h16{height:50.880000pt;}
.hb{height:52.785000pt;}
.hd{height:53.158750pt;}
.h7{height:53.216250pt;}
.h2a{height:55.863293pt;}
.h29{height:55.896640pt;}
.h2{height:57.375000pt;}
.h14{height:57.597500pt;}
.h6{height:57.781250pt;}
.h40{height:64.858899pt;}
.h5{height:66.555000pt;}
.h3{height:67.026250pt;}
.ha{height:80.690391pt;}
.h4{height:86.671875pt;}
.h9{height:112.057137pt;}
.h45{height:132.440267pt;}
.h2c{height:330.983733pt;}
.h8{height:335.758267pt;}
.h3f{height:848.466653pt;}
.he{height:1109.887200pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w3{width:4.160000pt;}
.w4{width:8.320000pt;}
.w16{width:16.320000pt;}
.w13{width:21.794147pt;}
.w1d{width:30.080000pt;}
.w1f{width:42.240000pt;}
.w22{width:42.560000pt;}
.wb{width:48.710840pt;}
.w1c{width:49.920000pt;}
.w20{width:50.240000pt;}
.w1e{width:50.560000pt;}
.w10{width:51.271667pt;}
.wc{width:55.114240pt;}
.w21{width:58.560000pt;}
.wf{width:58.955920pt;}
.wd{width:59.596360pt;}
.w30{width:60.588040pt;}
.w33{width:63.360893pt;}
.w34{width:63.389827pt;}
.we{width:64.719787pt;}
.w2d{width:73.070013pt;}
.w27{width:73.072960pt;}
.w24{width:73.080720pt;}
.w36{width:74.217053pt;}
.w35{width:78.353333pt;}
.w17{width:80.960000pt;}
.w2f{width:85.583987pt;}
.w2e{width:90.385253pt;}
.w18{width:94.080000pt;}
.w1b{width:94.400000pt;}
.w28{width:97.089480pt;}
.w9{width:101.440000pt;}
.w19{width:102.400000pt;}
.w6{width:102.720000pt;}
.w12{width:107.663213pt;}
.w1a{width:110.400000pt;}
.w3a{width:129.783467pt;}
.w38{width:137.579067pt;}
.w37{width:138.412133pt;}
.w2a{width:149.978400pt;}
.w29{width:158.653200pt;}
.w31{width:158.655333pt;}
.w25{width:159.645200pt;}
.w11{width:214.694933pt;}
.w7{width:224.960000pt;}
.w8{width:233.920000pt;}
.w2b{width:335.200000pt;}
.w2{width:475.800000pt;}
.w23{width:520.237867pt;}
.w2c{width:536.555333pt;}
.w26{width:548.037200pt;}
.w32{width:551.149467pt;}
.w15{width:613.940000pt;}
.w14{width:636.372800pt;}
.wa{width:645.365467pt;}
.w39{width:655.719200pt;}
.w5{width:781.068400pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x62{left:2.882490pt;}
.x1f{left:5.920000pt;}
.x19{left:7.200000pt;}
.x44{left:8.325513pt;}
.x53{left:10.080000pt;}
.x1e{left:11.680000pt;}
.x12{left:12.632400pt;}
.x3d{left:14.107236pt;}
.x43{left:15.388104pt;}
.x58{left:16.480000pt;}
.x3c{left:18.590238pt;}
.x24{left:20.320000pt;}
.x3a{left:22.406153pt;}
.x23{left:24.160000pt;}
.x21{left:26.080000pt;}
.x3b{left:27.556237pt;}
.x40{left:28.837132pt;}
.x9a{left:29.808020pt;}
.x4f{left:30.880000pt;}
.x52{left:31.840000pt;}
.x20{left:32.800000pt;}
.xb6{left:34.251867pt;}
.x22{left:35.360000pt;}
.x3e{left:36.522273pt;}
.x32{left:38.443565pt;}
.x4b{left:40.160000pt;}
.x3f{left:41.645672pt;}
.x34{left:42.917666pt;}
.xab{left:43.855200pt;}
.x63{left:45.185814pt;}
.xb2{left:47.056267pt;}
.x36{left:48.067750pt;}
.xb5{left:48.976933pt;}
.xb4{left:50.577467pt;}
.xb1{left:51.858000pt;}
.xae{left:53.138400pt;}
.x6f{left:54.781020pt;}
.xac{left:55.699333pt;}
.xb0{left:57.299867pt;}
.x70{left:58.645416pt;}
.xb8{left:59.860800pt;}
.xb9{left:61.141200pt;}
.x6e{left:62.483150pt;}
.xad{left:64.022267pt;}
.xa3{left:66.139067pt;}
.x77{left:68.622000pt;}
.xb3{left:69.784133pt;}
.x8b{left:71.102267pt;}
.x72{left:72.117476pt;}
.xaf{left:75.226000pt;}
.xd{left:77.886201pt;}
.xba{left:80.027733pt;}
.x71{left:82.671261pt;}
.x1c{left:83.680000pt;}
.xbb{left:86.109867pt;}
.x45{left:87.396693pt;}
.x86{left:88.464533pt;}
.x7c{left:91.771600pt;}
.x46{left:93.800093pt;}
.x92{left:95.905467pt;}
.xb7{left:97.634000pt;}
.x79{left:99.212533pt;}
.x17{left:100.960000pt;}
.x78{left:102.519600pt;}
.x90{left:104.173200pt;}
.x7e{left:105.826667pt;}
.x7f{left:107.480267pt;}
.x4a{left:108.952400pt;}
.x4{left:113.592400pt;}
.x1d{left:115.352400pt;}
.x18{left:118.072400pt;}
.x84{left:119.881867pt;}
.x81{left:121.535333pt;}
.x6a{left:123.765267pt;}
.x28{left:125.280000pt;}
.x7{left:126.712400pt;}
.x9b{left:127.992400pt;}
.x66{left:129.272400pt;}
.x8{left:130.552400pt;}
.x83{left:132.283333pt;}
.xe{left:134.222841pt;}
.x25{left:135.672400pt;}
.x10{left:137.592400pt;}
.x91{left:138.897600pt;}
.x8c{left:140.551067pt;}
.x6{left:142.072400pt;}
.x29{left:143.032400pt;}
.x7d{left:147.992000pt;}
.x8e{left:151.299067pt;}
.x5{left:152.312400pt;}
.x88{left:154.606267pt;}
.x2b{left:157.432400pt;}
.xc{left:159.224000pt;}
.x26{left:160.632400pt;}
.x2a{left:161.592400pt;}
.x42{left:164.281067pt;}
.x59{left:166.072400pt;}
.x85{left:168.661333pt;}
.x7a{left:171.968400pt;}
.x8f{left:175.275467pt;}
.x94{left:178.582667pt;}
.x82{left:180.236133pt;}
.x5c{left:183.667083pt;}
.x41{left:185.433067pt;}
.x4c{left:189.912400pt;}
.x7b{left:194.291333pt;}
.x65{left:195.192400pt;}
.x5b{left:196.152400pt;}
.xa4{left:197.055733pt;}
.x95{left:200.078800pt;}
.x93{left:201.732133pt;}
.xbe{left:205.475600pt;}
.x8a{left:206.692800pt;}
.xbc{left:213.280267pt;}
.x67{left:216.952400pt;}
.x1a{left:219.032400pt;}
.x2e{left:221.740408pt;}
.x80{left:224.055067pt;}
.x76{left:229.539200pt;}
.x6b{left:230.765555pt;}
.x8d{left:236.456667pt;}
.x68{left:239.672400pt;}
.x49{left:240.632400pt;}
.x75{left:247.672400pt;}
.xa6{left:250.457467pt;}
.x87{left:252.165333pt;}
.xa5{left:255.231200pt;}
.xa0{left:258.948933pt;}
.xa{left:263.032400pt;}
.x3{left:265.592400pt;}
.x73{left:272.792267pt;}
.xaa{left:275.040267pt;}
.xb{left:280.312400pt;}
.x89{left:282.755867pt;}
.x4d{left:283.992400pt;}
.x9{left:286.392400pt;}
.x13{left:287.840000pt;}
.x2f{left:292.464667pt;}
.xa9{left:294.238400pt;}
.x5d{left:296.431733pt;}
.x14{left:305.592400pt;}
.x97{left:310.392400pt;}
.x9c{left:334.072400pt;}
.x54{left:335.512400pt;}
.x30{left:340.532400pt;}
.xa8{left:343.800133pt;}
.x5e{left:368.547600pt;}
.x4e{left:386.392400pt;}
.x31{left:388.600133pt;}
.x2{left:396.792400pt;}
.x98{left:412.898267pt;}
.xbd{left:422.276933pt;}
.xa7{left:423.316533pt;}
.x6c{left:430.486133pt;}
.x55{left:437.912400pt;}
.x5f{left:440.663467pt;}
.x33{left:443.081067pt;}
.x1b{left:444.632400pt;}
.x9d{left:459.052533pt;}
.x50{left:480.472400pt;}
.x99{left:485.010800pt;}
.x35{left:502.036133pt;}
.x60{left:512.792667pt;}
.x9e{left:521.611600pt;}
.x56{left:539.992400pt;}
.x5a{left:555.192400pt;}
.x64{left:560.632400pt;}
.x74{left:564.152400pt;}
.x37{left:566.114667pt;}
.x6d{left:574.707867pt;}
.x61{left:584.908667pt;}
.x51{left:590.872400pt;}
.x2c{left:595.360000pt;}
.x9f{left:599.130667pt;}
.x2d{left:613.112400pt;}
.x38{left:624.429200pt;}
.xa2{left:627.192400pt;}
.x15{left:632.480000pt;}
.x1{left:634.552400pt;}
.x57{left:642.392400pt;}
.x16{left:650.232400pt;}
.x27{left:652.472400pt;}
.xa1{left:662.712400pt;}
.x47{left:664.152400pt;}
.x48{left:665.592400pt;}
.x96{left:667.512400pt;}
.x11{left:672.152400pt;}
.x39{left:675.058667pt;}
.xf{left:676.312400pt;}
.x69{left:679.672400pt;}
}




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