
    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_1a2ed3e686ccb2894d7774e8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9b5e08da986d85bd002c8f16.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8ebd6c3f18319a4061cb7e0d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c9f5a3585cc742574711d204.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_8baaddc0d3f7d8b9f12888e9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_78a42a81e861a2858e7ba54d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_bc3bc410c33ed2b847c88932.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.757812;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_436acdd43d20a81c10c1cb79.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_502a8b6891a6697bf542f5e9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_81786217c7e0de65b96aad23.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_daa9d0dd6418bb653c8cb5fa.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4cf818fb3e510b3484283185.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d1531bd12be6586e0ab90092.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_03f970db2b3278defbb4e0d1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_ffd85a175bcef8dfc8e5df15.woff2')format("woff");}.fff{font-family:fff;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e8a87af3b0cf43b352cc9308.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_c66f9ecac9c967a106b1dbef.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_6252566619a72a1255fc74af.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_e1eb224a7319561e7463ef41.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_8d2908782ddad827e8e6b492.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_69fd6b109fec509a2bceeefd.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_450174da1da71e1554b96219.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_f7ff71696d6b5f052820658a.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_d75a367921c4f596e06a8968.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_8d712eb06d50d49f3fd85b54.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_b4e4932c74b27922a6004547.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_2f2b713216c5bac69f9cdc90.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_a274b80bc63a22cf52b9b192.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_368c1cb8ca9f62c3c268fefc.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_7977bcce70129b6cf35c7c31.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_25057c98811272c51d0dcb21.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_863340abb395a15f5cf030eb.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_ba6597b749553387f973cc09.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_d7d135942d7520064c2e7456.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_d47c4c926cf2c41de0969e51.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_a14d85795882a7390d753489.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_2f2b713216c5bac69f9cdc90.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_653ef4bd1aaca59bcf3ccff8.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_2b54b3901ae408cec281c8f8.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.v1{vertical-align:33.119400px;}
.ls4f{letter-spacing:-0.560880px;}
.ls4a{letter-spacing:-0.549072px;}
.ls21{letter-spacing:-0.538128px;}
.ls5d{letter-spacing:-0.490032px;}
.ls5a{letter-spacing:-0.484128px;}
.ls34{letter-spacing:-0.478224px;}
.ls48{letter-spacing:-0.472320px;}
.ls44{letter-spacing:-0.466416px;}
.ls56{letter-spacing:-0.454608px;}
.ls68{letter-spacing:-0.448704px;}
.ls6b{letter-spacing:-0.442800px;}
.ls78{letter-spacing:-0.436896px;}
.ls3a{letter-spacing:-0.430992px;}
.ls32{letter-spacing:-0.425088px;}
.ls2b{letter-spacing:-0.419184px;}
.ls63{letter-spacing:-0.413280px;}
.ls3b{letter-spacing:-0.407376px;}
.ls5b{letter-spacing:-0.401472px;}
.ls35{letter-spacing:-0.395568px;}
.ls75{letter-spacing:-0.389664px;}
.ls4c{letter-spacing:-0.383760px;}
.ls49{letter-spacing:-0.377856px;}
.ls57{letter-spacing:-0.371952px;}
.ls5c{letter-spacing:-0.366048px;}
.ls41{letter-spacing:-0.365904px;}
.ls1c{letter-spacing:-0.361152px;}
.ls53{letter-spacing:-0.360144px;}
.ls2d{letter-spacing:-0.354240px;}
.ls59{letter-spacing:-0.342432px;}
.ls36{letter-spacing:-0.336528px;}
.ls7e{letter-spacing:-0.330624px;}
.ls4d{letter-spacing:-0.324720px;}
.ls30{letter-spacing:-0.301104px;}
.ls6a{letter-spacing:-0.295200px;}
.ls43{letter-spacing:-0.283392px;}
.ls42{letter-spacing:-0.280368px;}
.ls80{letter-spacing:-0.275616px;}
.ls9a{letter-spacing:-0.270864px;}
.lsab{letter-spacing:-0.261360px;}
.ls96{letter-spacing:-0.256608px;}
.ls38{letter-spacing:-0.251856px;}
.ls8f{letter-spacing:-0.247104px;}
.ls81{letter-spacing:-0.242352px;}
.lsa4{letter-spacing:-0.237600px;}
.ls19{letter-spacing:-0.228096px;}
.ls1e{letter-spacing:-0.216000px;}
.lsb3{letter-spacing:-0.209088px;}
.ls6f{letter-spacing:-0.177120px;}
.ls46{letter-spacing:-0.094464px;}
.ls47{letter-spacing:-0.064944px;}
.lsb5{letter-spacing:-0.057024px;}
.ls6c{letter-spacing:-0.029520px;}
.lsb2{letter-spacing:-0.023760px;}
.lsa1{letter-spacing:-0.019008px;}
.ls97{letter-spacing:-0.009504px;}
.ls1a{letter-spacing:0.000000px;}
.ls76{letter-spacing:0.011664px;}
.ls98{letter-spacing:0.014256px;}
.lsaf{letter-spacing:0.023760px;}
.ls2{letter-spacing:0.028512px;}
.ls9d{letter-spacing:0.042768px;}
.lsae{letter-spacing:0.047520px;}
.lsb0{letter-spacing:0.057024px;}
.lsa0{letter-spacing:0.071280px;}
.ls5{letter-spacing:0.079200px;}
.ls3{letter-spacing:0.100800px;}
.ls51{letter-spacing:0.135792px;}
.ls6e{letter-spacing:0.159408px;}
.lsb1{letter-spacing:0.171072px;}
.lsa2{letter-spacing:0.228096px;}
.ls1{letter-spacing:0.237600px;}
.ls92{letter-spacing:0.242352px;}
.ls90{letter-spacing:0.270864px;}
.ls70{letter-spacing:0.283392px;}
.ls9c{letter-spacing:0.289872px;}
.lsac{letter-spacing:0.299376px;}
.lsa6{letter-spacing:0.318384px;}
.ls9b{letter-spacing:0.323136px;}
.ls95{letter-spacing:0.365904px;}
.ls60{letter-spacing:0.501840px;}
.ls45{letter-spacing:0.543168px;}
.lsa9{letter-spacing:0.546480px;}
.lsa3{letter-spacing:0.551232px;}
.ls17{letter-spacing:0.554976px;}
.ls1b{letter-spacing:0.560736px;}
.ls5e{letter-spacing:0.560880px;}
.ls7d{letter-spacing:0.566784px;}
.ls99{letter-spacing:0.570240px;}
.ls61{letter-spacing:0.572688px;}
.lsb4{letter-spacing:0.574992px;}
.ls50{letter-spacing:0.584496px;}
.ls9e{letter-spacing:0.589248px;}
.ls7c{letter-spacing:0.590400px;}
.lsad{letter-spacing:0.594000px;}
.lsa{letter-spacing:0.596304px;}
.ls7a{letter-spacing:0.598752px;}
.ls40{letter-spacing:0.603504px;}
.ls9f{letter-spacing:0.608256px;}
.ls85{letter-spacing:0.613008px;}
.ls58{letter-spacing:0.614016px;}
.ls8d{letter-spacing:0.617760px;}
.ls62{letter-spacing:0.619920px;}
.ls8b{letter-spacing:0.622512px;}
.ls16{letter-spacing:0.625824px;}
.ls37{letter-spacing:0.627264px;}
.ls2a{letter-spacing:0.631728px;}
.ls93{letter-spacing:0.632016px;}
.ls7b{letter-spacing:0.636768px;}
.ls15{letter-spacing:0.637632px;}
.ls82{letter-spacing:0.641520px;}
.ls18{letter-spacing:0.643536px;}
.ls91{letter-spacing:0.646272px;}
.ls39{letter-spacing:0.649440px;}
.ls89{letter-spacing:0.651024px;}
.ls12{letter-spacing:0.655344px;}
.ls79{letter-spacing:0.655776px;}
.ls84{letter-spacing:0.660528px;}
.ls31{letter-spacing:0.661248px;}
.ls87{letter-spacing:0.665280px;}
.ls2e{letter-spacing:0.667152px;}
.ls52{letter-spacing:0.670032px;}
.ls3f{letter-spacing:0.673056px;}
.ls94{letter-spacing:0.674784px;}
.ls6{letter-spacing:0.678960px;}
.ls8a{letter-spacing:0.679536px;}
.lsa5{letter-spacing:0.684288px;}
.ls13{letter-spacing:0.684864px;}
.ls83{letter-spacing:0.689040px;}
.ls14{letter-spacing:0.690768px;}
.ls8e{letter-spacing:0.693792px;}
.ls9{letter-spacing:0.696672px;}
.ls10{letter-spacing:0.698544px;}
.lsd{letter-spacing:0.702576px;}
.ls88{letter-spacing:0.703296px;}
.lsaa{letter-spacing:0.708048px;}
.ls7{letter-spacing:0.708480px;}
.ls11{letter-spacing:0.712800px;}
.lsf{letter-spacing:0.714384px;}
.ls1d{letter-spacing:0.717552px;}
.ls71{letter-spacing:0.718272px;}
.ls4{letter-spacing:0.720000px;}
.ls1f{letter-spacing:0.720288px;}
.ls0{letter-spacing:0.722304px;}
.ls4b{letter-spacing:0.726192px;}
.lsa8{letter-spacing:0.727056px;}
.ls29{letter-spacing:0.732096px;}
.ls27{letter-spacing:0.735264px;}
.ls3c{letter-spacing:0.738000px;}
.ls26{letter-spacing:0.740592px;}
.ls2c{letter-spacing:0.743904px;}
.ls3e{letter-spacing:0.749808px;}
.ls24{letter-spacing:0.751248px;}
.ls67{letter-spacing:0.755712px;}
.ls69{letter-spacing:0.761616px;}
.ls22{letter-spacing:0.761904px;}
.ls28{letter-spacing:0.767232px;}
.ls66{letter-spacing:0.767520px;}
.ls23{letter-spacing:0.772560px;}
.ls54{letter-spacing:0.773424px;}
.ls25{letter-spacing:0.777888px;}
.ls33{letter-spacing:0.785232px;}
.ls20{letter-spacing:0.791136px;}
.ls7f{letter-spacing:0.797040px;}
.ls6d{letter-spacing:0.814752px;}
.ls4e{letter-spacing:0.838368px;}
.ls65{letter-spacing:0.873792px;}
.ls73{letter-spacing:1.062720px;}
.lsa7{letter-spacing:1.078704px;}
.ls55{letter-spacing:1.080432px;}
.ls8{letter-spacing:1.081584px;}
.ls2f{letter-spacing:1.109952px;}
.ls77{letter-spacing:1.133568px;}
.ls64{letter-spacing:1.157184px;}
.ls74{letter-spacing:1.375632px;}
.lsc{letter-spacing:3.961584px;}
.lsb{letter-spacing:5.136480px;}
.ls5f{letter-spacing:6.836832px;}
.ls72{letter-spacing:6.842736px;}
.lse{letter-spacing:8.277408px;}
.ls3d{letter-spacing:9.717984px;}
.ls86{letter-spacing:15.591312px;}
.ls8c{letter-spacing:77.400576px;}
.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;}
}
.ws134{word-spacing:-59.040000px;}
.ws191{word-spacing:-47.520000px;}
.ws133{word-spacing:-38.880000px;}
.wsef{word-spacing:-15.515712px;}
.ws3{word-spacing:-15.480288px;}
.ws5d{word-spacing:-15.450768px;}
.ws1{word-spacing:-15.438960px;}
.ws15e{word-spacing:-15.320880px;}
.wsf1{word-spacing:-14.582880px;}
.ws136{word-spacing:-14.476608px;}
.ws2{word-spacing:-14.405760px;}
.wsf0{word-spacing:-14.199120px;}
.ws5c{word-spacing:-12.602304px;}
.ws18b{word-spacing:-12.569040px;}
.ws1fa{word-spacing:-12.550032px;}
.ws18d{word-spacing:-12.535776px;}
.ws18c{word-spacing:-12.245904px;}
.ws18f{word-spacing:-12.203136px;}
.ws1f8{word-spacing:-12.198384px;}
.ws18a{word-spacing:-12.122352px;}
.ws18e{word-spacing:-12.117600px;}
.ws193{word-spacing:-12.108096px;}
.ws192{word-spacing:-11.880000px;}
.ws5b{word-spacing:-11.651904px;}
.ws1f9{word-spacing:-11.637648px;}
.ws190{word-spacing:-11.623392px;}
.ws15f{word-spacing:-11.604384px;}
.ws0{word-spacing:-11.518848px;}
.ws135{word-spacing:-9.731664px;}
.ws107{word-spacing:-1.517328px;}
.wsb6{word-spacing:-1.440576px;}
.ws8b{word-spacing:-1.198512px;}
.ws11{word-spacing:-1.151280px;}
.ws22{word-spacing:-1.129536px;}
.ws10e{word-spacing:-1.127664px;}
.ws18{word-spacing:-1.118880px;}
.ws79{word-spacing:-1.109952px;}
.ws8a{word-spacing:-1.104048px;}
.ws14e{word-spacing:-1.098144px;}
.ws64{word-spacing:-1.092240px;}
.ws214{word-spacing:-1.088208px;}
.ws156{word-spacing:-1.086336px;}
.ws7{word-spacing:-1.083456px;}
.ws10{word-spacing:-1.080432px;}
.ws9{word-spacing:-1.078704px;}
.wsed{word-spacing:-1.074528px;}
.ws40{word-spacing:-1.073952px;}
.ws13{word-spacing:-1.068624px;}
.ws1bb{word-spacing:-1.064448px;}
.ws139{word-spacing:-1.062720px;}
.ws3f{word-spacing:-1.059696px;}
.ws24{word-spacing:-1.056816px;}
.ws1f0{word-spacing:-1.054944px;}
.wsa5{word-spacing:-1.050912px;}
.ws1c0{word-spacing:-1.050192px;}
.ws21d{word-spacing:-1.045440px;}
.ws75{word-spacing:-1.045008px;}
.ws1cd{word-spacing:-1.040688px;}
.ws12{word-spacing:-1.039104px;}
.ws22f{word-spacing:-1.035936px;}
.ws166{word-spacing:-1.033200px;}
.ws1ee{word-spacing:-1.031184px;}
.ws98{word-spacing:-1.027296px;}
.wsab{word-spacing:-1.026432px;}
.ws1cf{word-spacing:-1.021680px;}
.wsea{word-spacing:-1.021392px;}
.ws201{word-spacing:-1.016928px;}
.ws44{word-spacing:-1.015488px;}
.ws1ae{word-spacing:-1.007424px;}
.ws78{word-spacing:-0.997776px;}
.ws12f{word-spacing:-0.985968px;}
.ws187{word-spacing:-0.983664px;}
.ws23f{word-spacing:-0.978912px;}
.ws171{word-spacing:-0.974160px;}
.ws5e{word-spacing:-0.964656px;}
.ws25{word-spacing:-0.956448px;}
.ws165{word-spacing:-0.950544px;}
.ws95{word-spacing:-0.944640px;}
.ws11a{word-spacing:-0.932832px;}
.ws16e{word-spacing:-0.926928px;}
.wse9{word-spacing:-0.921024px;}
.ws240{word-spacing:-0.907632px;}
.wsa9{word-spacing:-0.832464px;}
.wsaa{word-spacing:-0.779328px;}
.ws236{word-spacing:-0.660528px;}
.ws196{word-spacing:-0.632016px;}
.ws237{word-spacing:-0.532224px;}
.wse{word-spacing:-0.504000px;}
.ws19a{word-spacing:-0.356400px;}
.ws1e1{word-spacing:-0.342144px;}
.ws241{word-spacing:-0.304128px;}
.ws23e{word-spacing:-0.152064px;}
.ws219{word-spacing:-0.123552px;}
.ws41{word-spacing:-0.109296px;}
.ws225{word-spacing:-0.104544px;}
.ws235{word-spacing:-0.099792px;}
.ws60{word-spacing:-0.080784px;}
.wsa{word-spacing:-0.079200px;}
.ws178{word-spacing:-0.059040px;}
.ws159{word-spacing:-0.053136px;}
.ws10d{word-spacing:-0.023616px;}
.ws5{word-spacing:0.000000px;}
.ws5f{word-spacing:0.004752px;}
.ws7d{word-spacing:0.017712px;}
.ws83{word-spacing:0.023616px;}
.ws155{word-spacing:0.029520px;}
.ws144{word-spacing:0.035424px;}
.wsc3{word-spacing:0.059040px;}
.ws34{word-spacing:0.118080px;}
.wsd0{word-spacing:0.123984px;}
.wse7{word-spacing:0.129888px;}
.ws19{word-spacing:0.303696px;}
.ws15{word-spacing:0.309024px;}
.ws14{word-spacing:0.319680px;}
.wsda{word-spacing:0.336528px;}
.ws53{word-spacing:0.342432px;}
.wsf8{word-spacing:0.348336px;}
.wscf{word-spacing:0.354240px;}
.wsd9{word-spacing:0.360144px;}
.ws12b{word-spacing:0.366048px;}
.ws9f{word-spacing:0.371952px;}
.ws215{word-spacing:0.375408px;}
.ws6c{word-spacing:0.377856px;}
.ws9a{word-spacing:0.383760px;}
.ws22c{word-spacing:0.384912px;}
.wsbb{word-spacing:0.389664px;}
.wsdd{word-spacing:0.395568px;}
.ws1a4{word-spacing:0.399168px;}
.wse0{word-spacing:0.401472px;}
.ws19b{word-spacing:0.403920px;}
.ws9b{word-spacing:0.407376px;}
.ws211{word-spacing:0.408672px;}
.wsee{word-spacing:0.413280px;}
.ws1d1{word-spacing:0.418176px;}
.ws30{word-spacing:0.419184px;}
.ws1c3{word-spacing:0.427680px;}
.ws49{word-spacing:0.430992px;}
.ws194{word-spacing:0.437184px;}
.ws1c8{word-spacing:0.446688px;}
.ws12c{word-spacing:0.448704px;}
.ws182{word-spacing:0.451440px;}
.ws1ca{word-spacing:0.456192px;}
.ws1bd{word-spacing:0.460944px;}
.ws1d9{word-spacing:0.470448px;}
.ws226{word-spacing:0.475200px;}
.ws1bc{word-spacing:0.508464px;}
.ws6{word-spacing:0.517968px;}
.ws6f{word-spacing:0.537264px;}
.wsd{word-spacing:0.619200px;}
.wsf{word-spacing:0.640800px;}
.wsc{word-spacing:0.722304px;}
.ws20d{word-spacing:0.836352px;}
.ws99{word-spacing:0.944640px;}
.ws1be{word-spacing:1.321056px;}
.ws20e{word-spacing:1.325808px;}
.ws1f6{word-spacing:1.335312px;}
.ws222{word-spacing:1.340064px;}
.ws16d{word-spacing:1.440576px;}
.ws71{word-spacing:1.505520px;}
.wsc0{word-spacing:1.535040px;}
.ws76{word-spacing:1.546848px;}
.ws6b{word-spacing:1.558656px;}
.ws7e{word-spacing:1.629504px;}
.ws20{word-spacing:1.752912px;}
.ws1a{word-spacing:1.768896px;}
.ws89{word-spacing:1.771200px;}
.ws177{word-spacing:1.783008px;}
.ws1f{word-spacing:1.784880px;}
.ws87{word-spacing:1.788912px;}
.ws9c{word-spacing:1.794816px;}
.ws91{word-spacing:1.800720px;}
.ws68{word-spacing:1.806624px;}
.ws38{word-spacing:1.812528px;}
.ws46{word-spacing:1.818432px;}
.wsd2{word-spacing:1.824336px;}
.ws1c5{word-spacing:1.824768px;}
.ws8c{word-spacing:1.830240px;}
.ws6e{word-spacing:1.836144px;}
.ws45{word-spacing:1.842048px;}
.ws72{word-spacing:1.847952px;}
.ws221{word-spacing:1.848528px;}
.ws170{word-spacing:1.853856px;}
.ws1ef{word-spacing:1.858032px;}
.ws93{word-spacing:1.859760px;}
.ws183{word-spacing:1.862784px;}
.wsa2{word-spacing:1.865664px;}
.wsb9{word-spacing:1.871568px;}
.ws212{word-spacing:1.877040px;}
.ws1ec{word-spacing:1.881792px;}
.wse6{word-spacing:1.895184px;}
.ws1f4{word-spacing:1.896048px;}
.ws21f{word-spacing:1.900800px;}
.ws1db{word-spacing:1.905552px;}
.ws227{word-spacing:1.915056px;}
.ws186{word-spacing:1.919808px;}
.ws1a3{word-spacing:1.948320px;}
.ws220{word-spacing:2.280960px;}
.ws21e{word-spacing:2.471040px;}
.ws1b5{word-spacing:2.518560px;}
.ws23c{word-spacing:2.528064px;}
.ws188{word-spacing:2.760912px;}
.ws1e0{word-spacing:2.798928px;}
.ws2c{word-spacing:2.851632px;}
.wsdb{word-spacing:2.904768px;}
.ws16f{word-spacing:2.946096px;}
.ws7c{word-spacing:2.993328px;}
.ws21{word-spacing:3.196800px;}
.ws1b{word-spacing:3.202128px;}
.ws16{word-spacing:3.207456px;}
.wsf9{word-spacing:3.211776px;}
.ws2a{word-spacing:3.217680px;}
.ws1c{word-spacing:3.218112px;}
.wsc6{word-spacing:3.229488px;}
.wsa1{word-spacing:3.235392px;}
.ws1fe{word-spacing:3.236112px;}
.ws1d5{word-spacing:3.240864px;}
.ws62{word-spacing:3.241296px;}
.ws1d6{word-spacing:3.245616px;}
.wsb0{word-spacing:3.247200px;}
.ws8e{word-spacing:3.253104px;}
.ws50{word-spacing:3.259008px;}
.ws1aa{word-spacing:3.264624px;}
.ws131{word-spacing:3.264912px;}
.ws108{word-spacing:3.270816px;}
.ws1f2{word-spacing:3.274128px;}
.ws47{word-spacing:3.276720px;}
.ws94{word-spacing:3.282624px;}
.ws19e{word-spacing:3.283632px;}
.ws1e5{word-spacing:3.288384px;}
.ws109{word-spacing:3.288528px;}
.ws23d{word-spacing:3.293136px;}
.ws2b{word-spacing:3.294432px;}
.ws19d{word-spacing:3.297888px;}
.wsa4{word-spacing:3.300336px;}
.ws36{word-spacing:3.306240px;}
.ws230{word-spacing:3.307392px;}
.ws111{word-spacing:3.312144px;}
.wsb1{word-spacing:3.318048px;}
.ws4f{word-spacing:3.323952px;}
.wsa7{word-spacing:3.329856px;}
.ws1b8{word-spacing:3.331152px;}
.ws1d0{word-spacing:3.335904px;}
.ws1bf{word-spacing:3.340656px;}
.ws129{word-spacing:3.341664px;}
.ws1a7{word-spacing:3.345408px;}
.ws1ff{word-spacing:3.369168px;}
.ws1eb{word-spacing:3.407184px;}
.ws1b6{word-spacing:3.720816px;}
.ws128{word-spacing:3.802176px;}
.ws1d4{word-spacing:3.915648px;}
.ws1f1{word-spacing:4.196016px;}
.ws1b7{word-spacing:4.200768px;}
.ws1e4{word-spacing:4.205520px;}
.ws88{word-spacing:4.286304px;}
.ws85{word-spacing:4.339440px;}
.ws12d{word-spacing:4.357152px;}
.wse1{word-spacing:4.363056px;}
.ws4e{word-spacing:4.368960px;}
.ws11f{word-spacing:4.404384px;}
.ws174{word-spacing:4.445712px;}
.wse4{word-spacing:4.451616px;}
.ws15a{word-spacing:4.616928px;}
.ws1e{word-spacing:4.619376px;}
.ws127{word-spacing:4.652352px;}
.ws110{word-spacing:4.658256px;}
.wseb{word-spacing:4.670064px;}
.wsfe{word-spacing:4.675968px;}
.wsaf{word-spacing:4.681872px;}
.ws57{word-spacing:4.687776px;}
.wsd6{word-spacing:4.693680px;}
.wse5{word-spacing:4.699584px;}
.ws52{word-spacing:4.705488px;}
.ws10f{word-spacing:4.711392px;}
.ws37{word-spacing:4.717296px;}
.wsdf{word-spacing:4.723200px;}
.ws21b{word-spacing:4.728240px;}
.wsdc{word-spacing:4.729104px;}
.ws228{word-spacing:4.732992px;}
.wsd7{word-spacing:4.735008px;}
.ws1a8{word-spacing:4.737744px;}
.ws7b{word-spacing:4.740912px;}
.ws20b{word-spacing:4.742496px;}
.ws97{word-spacing:4.746816px;}
.ws1dc{word-spacing:4.747248px;}
.ws162{word-spacing:4.758624px;}
.ws223{word-spacing:4.766256px;}
.wsc4{word-spacing:4.770432px;}
.ws51{word-spacing:4.776336px;}
.ws229{word-spacing:4.780512px;}
.ws22d{word-spacing:4.794768px;}
.ws1c6{word-spacing:4.799520px;}
.ws1ea{word-spacing:4.804272px;}
.ws1c7{word-spacing:4.809024px;}
.ws1da{word-spacing:5.326992px;}
.ws22a{word-spacing:5.379264px;}
.ws22e{word-spacing:5.407776px;}
.ws153{word-spacing:5.467104px;}
.ws1a9{word-spacing:5.640624px;}
.ws195{word-spacing:5.645376px;}
.ws1c2{word-spacing:5.650128px;}
.ws1ce{word-spacing:5.654880px;}
.wsf6{word-spacing:5.685552px;}
.ws13c{word-spacing:5.756400px;}
.wse3{word-spacing:5.768208px;}
.wsc8{word-spacing:5.774112px;}
.ws152{word-spacing:5.815440px;}
.ws169{word-spacing:5.821344px;}
.ws4d{word-spacing:5.833152px;}
.ws120{word-spacing:5.844960px;}
.ws67{word-spacing:5.868576px;}
.ws54{word-spacing:5.880384px;}
.ws126{word-spacing:5.963040px;}
.wsf7{word-spacing:5.968944px;}
.ws125{word-spacing:6.027984px;}
.ws33{word-spacing:6.098832px;}
.ws17f{word-spacing:6.110640px;}
.ws101{word-spacing:6.116544px;}
.wsf5{word-spacing:6.122448px;}
.ws160{word-spacing:6.128352px;}
.wsff{word-spacing:6.134256px;}
.ws74{word-spacing:6.140160px;}
.wsa0{word-spacing:6.146064px;}
.wsfd{word-spacing:6.151968px;}
.ws2d{word-spacing:6.157872px;}
.ws112{word-spacing:6.163776px;}
.ws1cb{word-spacing:6.168096px;}
.ws151{word-spacing:6.169680px;}
.ws1e3{word-spacing:6.172848px;}
.ws96{word-spacing:6.175584px;}
.ws4c{word-spacing:6.181488px;}
.ws1d3{word-spacing:6.187104px;}
.ws70{word-spacing:6.187392px;}
.ws115{word-spacing:6.193296px;}
.ws1b3{word-spacing:6.201360px;}
.ws1b9{word-spacing:6.215616px;}
.ws1f7{word-spacing:6.220368px;}
.ws1a1{word-spacing:6.823872px;}
.ws22b{word-spacing:6.847632px;}
.ws1e9{word-spacing:6.857136px;}
.ws1af{word-spacing:7.080480px;}
.ws207{word-spacing:7.094736px;}
.ws1a6{word-spacing:7.108992px;}
.ws180{word-spacing:7.126128px;}
.ws3b{word-spacing:7.179264px;}
.ws86{word-spacing:7.191072px;}
.ws14a{word-spacing:7.196976px;}
.ws8d{word-spacing:7.214688px;}
.ws163{word-spacing:7.232400px;}
.ws150{word-spacing:7.267824px;}
.ws15c{word-spacing:7.279632px;}
.ws148{word-spacing:7.403616px;}
.ws17{word-spacing:7.528464px;}
.ws17d{word-spacing:7.539408px;}
.ws26{word-spacing:7.545312px;}
.ws80{word-spacing:7.551216px;}
.ws130{word-spacing:7.557120px;}
.wsc9{word-spacing:7.563024px;}
.ws23{word-spacing:7.568928px;}
.ws2e{word-spacing:7.574832px;}
.ws3d{word-spacing:7.580736px;}
.ws39{word-spacing:7.586640px;}
.wsc7{word-spacing:7.592544px;}
.ws213{word-spacing:7.593696px;}
.ws173{word-spacing:7.598448px;}
.wsc2{word-spacing:7.604352px;}
.ws218{word-spacing:7.607952px;}
.wsa8{word-spacing:7.610256px;}
.ws1c1{word-spacing:7.612704px;}
.ws9d{word-spacing:7.616160px;}
.ws197{word-spacing:7.631712px;}
.wsb8{word-spacing:7.633872px;}
.ws189{word-spacing:7.641216px;}
.ws210{word-spacing:7.655472px;}
.wscd{word-spacing:7.663392px;}
.ws216{word-spacing:7.683984px;}
.ws123{word-spacing:8.306928px;}
.ws185{word-spacing:8.520336px;}
.ws1f5{word-spacing:8.534592px;}
.ws145{word-spacing:8.560800px;}
.ws2f{word-spacing:8.578512px;}
.ws176{word-spacing:8.608032px;}
.wsce{word-spacing:8.619840px;}
.ws17b{word-spacing:8.667072px;}
.ws3a{word-spacing:8.672976px;}
.ws13e{word-spacing:8.690688px;}
.ws149{word-spacing:8.702496px;}
.ws116{word-spacing:8.726112px;}
.ws179{word-spacing:8.920944px;}
.wsca{word-spacing:8.974080px;}
.wsc1{word-spacing:8.985888px;}
.wsb2{word-spacing:8.991792px;}
.ws104{word-spacing:8.997696px;}
.ws10a{word-spacing:9.003600px;}
.ws12a{word-spacing:9.009504px;}
.ws1fc{word-spacing:9.009792px;}
.ws1dd{word-spacing:9.014544px;}
.wsde{word-spacing:9.021312px;}
.ws6d{word-spacing:9.027216px;}
.ws58{word-spacing:9.033120px;}
.ws1c4{word-spacing:9.038304px;}
.wsb4{word-spacing:9.039024px;}
.ws1ad{word-spacing:9.043056px;}
.wsbf{word-spacing:9.044928px;}
.ws61{word-spacing:9.050832px;}
.ws1fb{word-spacing:9.052560px;}
.ws65{word-spacing:9.056736px;}
.ws1a2{word-spacing:9.057312px;}
.ws132{word-spacing:9.062640px;}
.ws105{word-spacing:9.068544px;}
.ws217{word-spacing:9.071568px;}
.ws5a{word-spacing:9.074448px;}
.ws1e2{word-spacing:9.076320px;}
.ws146{word-spacing:9.080352px;}
.ws224{word-spacing:9.085824px;}
.ws27{word-spacing:9.086256px;}
.wsd8{word-spacing:9.092160px;}
.ws1fd{word-spacing:9.100080px;}
.ws10b{word-spacing:9.174816px;}
.ws233{word-spacing:9.660816px;}
.ws1ed{word-spacing:9.960192px;}
.ws66{word-spacing:10.001376px;}
.ws13f{word-spacing:10.078128px;}
.ws29{word-spacing:10.137168px;}
.wsec{word-spacing:10.143072px;}
.ws69{word-spacing:10.148976px;}
.ws13d{word-spacing:10.396944px;}
.ws118{word-spacing:10.408752px;}
.ws35{word-spacing:10.414656px;}
.ws16c{word-spacing:10.426464px;}
.ws119{word-spacing:10.432368px;}
.wsd5{word-spacing:10.438272px;}
.ws56{word-spacing:10.444176px;}
.ws55{word-spacing:10.450080px;}
.wsf4{word-spacing:10.455984px;}
.ws121{word-spacing:10.461888px;}
.ws28{word-spacing:10.467792px;}
.wsfb{word-spacing:10.473696px;}
.wsbd{word-spacing:10.479600px;}
.ws1b0{word-spacing:10.487664px;}
.wsbe{word-spacing:10.491408px;}
.ws63{word-spacing:10.497312px;}
.wsa3{word-spacing:10.503216px;}
.wsd4{word-spacing:10.509120px;}
.ws21c{word-spacing:10.511424px;}
.ws137{word-spacing:10.515024px;}
.ws117{word-spacing:10.520928px;}
.ws199{word-spacing:10.539936px;}
.ws1df{word-spacing:10.558944px;}
.ws208{word-spacing:11.395296px;}
.ws1a5{word-spacing:11.414304px;}
.wsb5{word-spacing:11.518704px;}
.ws17c{word-spacing:11.878848px;}
.wsb7{word-spacing:11.884752px;}
.wscc{word-spacing:11.890656px;}
.ws9e{word-spacing:11.896560px;}
.wscb{word-spacing:11.902464px;}
.ws114{word-spacing:11.908368px;}
.ws90{word-spacing:11.914272px;}
.ws157{word-spacing:11.920176px;}
.ws1c9{word-spacing:11.922768px;}
.ws164{word-spacing:11.926080px;}
.wsf3{word-spacing:11.931984px;}
.ws184{word-spacing:11.937024px;}
.wsac{word-spacing:11.943792px;}
.ws231{word-spacing:11.946528px;}
.ws232{word-spacing:11.951280px;}
.ws3e{word-spacing:11.975040px;}
.wsb{word-spacing:12.212640px;}
.ws1ba{word-spacing:12.554784px;}
.ws20a{word-spacing:12.825648px;}
.ws1d2{word-spacing:12.844656px;}
.ws205{word-spacing:12.849408px;}
.ws238{word-spacing:12.863664px;}
.ws138{word-spacing:12.976992px;}
.ws17e{word-spacing:13.024224px;}
.ws10c{word-spacing:13.030128px;}
.ws175{word-spacing:13.041936px;}
.ws181{word-spacing:13.083264px;}
.ws8f{word-spacing:13.160016px;}
.ws1d{word-spacing:13.298688px;}
.ws172{word-spacing:13.313520px;}
.ws100{word-spacing:13.325328px;}
.wsae{word-spacing:13.331232px;}
.wse2{word-spacing:13.337136px;}
.ws7a{word-spacing:13.343040px;}
.ws6a{word-spacing:13.348944px;}
.ws13b{word-spacing:13.360752px;}
.ws141{word-spacing:13.366656px;}
.ws48{word-spacing:13.378464px;}
.ws200{word-spacing:13.391136px;}
.ws17a{word-spacing:13.396176px;}
.ws1a0{word-spacing:13.400640px;}
.ws124{word-spacing:13.407984px;}
.ws1e7{word-spacing:13.419648px;}
.ws209{word-spacing:13.970880px;}
.ws239{word-spacing:14.065920px;}
.ws1f3{word-spacing:14.279760px;}
.ws21a{word-spacing:14.284512px;}
.ws1b4{word-spacing:14.298768px;}
.wsba{word-spacing:14.417568px;}
.ws77{word-spacing:14.742288px;}
.ws23a{word-spacing:14.759712px;}
.ws73{word-spacing:14.760000px;}
.ws82{word-spacing:14.765904px;}
.ws43{word-spacing:14.771808px;}
.ws161{word-spacing:14.777712px;}
.ws42{word-spacing:14.783616px;}
.ws4a{word-spacing:14.789520px;}
.ws59{word-spacing:14.795424px;}
.ws16a{word-spacing:14.801328px;}
.ws103{word-spacing:14.813136px;}
.ws1b2{word-spacing:14.816736px;}
.ws1ab{word-spacing:14.830992px;}
.wsbc{word-spacing:14.836752px;}
.ws13a{word-spacing:14.842656px;}
.ws1ac{word-spacing:14.845248px;}
.ws113{word-spacing:14.848560px;}
.ws16b{word-spacing:15.875856px;}
.wsd3{word-spacing:16.182864px;}
.wsfa{word-spacing:16.206480px;}
.wsb3{word-spacing:16.218288px;}
.wsc5{word-spacing:16.224192px;}
.ws15b{word-spacing:16.230096px;}
.ws106{word-spacing:16.236000px;}
.ws143{word-spacing:16.241904px;}
.ws14c{word-spacing:16.247808px;}
.ws1e8{word-spacing:16.304112px;}
.ws1cc{word-spacing:16.323120px;}
.wsf2{word-spacing:17.334144px;}
.wsd1{word-spacing:17.652960px;}
.ws14d{word-spacing:17.658864px;}
.ws167{word-spacing:17.664768px;}
.ws168{word-spacing:17.670672px;}
.ws122{word-spacing:17.676576px;}
.ws1d7{word-spacing:17.691696px;}
.ws4b{word-spacing:17.694288px;}
.wsfc{word-spacing:17.712000px;}
.ws3c{word-spacing:19.087632px;}
.ws142{word-spacing:19.099440px;}
.ws92{word-spacing:19.105344px;}
.wsad{word-spacing:19.128960px;}
.ws102{word-spacing:19.140768px;}
.wse8{word-spacing:19.217520px;}
.ws19c{word-spacing:19.811088px;}
.ws19f{word-spacing:20.043936px;}
.ws32{word-spacing:20.457360px;}
.ws154{word-spacing:20.498688px;}
.ws202{word-spacing:20.528640px;}
.ws14b{word-spacing:20.540016px;}
.ws1de{word-spacing:20.571408px;}
.ws203{word-spacing:20.623680px;}
.ws204{word-spacing:21.502800px;}
.ws12e{word-spacing:21.596832px;}
.ws31{word-spacing:21.667680px;}
.ws81{word-spacing:21.951072px;}
.ws15d{word-spacing:21.986496px;}
.ws140{word-spacing:22.004208px;}
.ws7f{word-spacing:23.031504px;}
.ws11b{word-spacing:23.356224px;}
.wsa6{word-spacing:23.427072px;}
.ws84{word-spacing:23.462496px;}
.ws234{word-spacing:23.479632px;}
.ws1b1{word-spacing:25.271136px;}
.ws1e6{word-spacing:25.803360px;}
.ws147{word-spacing:27.766512px;}
.ws11c{word-spacing:32.058720px;}
.ws11e{word-spacing:32.105952px;}
.ws11d{word-spacing:33.056496px;}
.ws23b{word-spacing:35.012736px;}
.ws158{word-spacing:37.826928px;}
.ws198{word-spacing:45.053712px;}
.ws206{word-spacing:53.664336px;}
.ws14f{word-spacing:69.584544px;}
.ws20c{word-spacing:89.674992px;}
.ws1d8{word-spacing:120.843360px;}
.ws20f{word-spacing:133.260336px;}
.ws8{word-spacing:985.317696px;}
.ws4{word-spacing:1026.588816px;}
._19{margin-left:-62.905536px;}
._2d{margin-left:-24.482304px;}
._9{margin-left:-8.501760px;}
._2c{margin-left:-5.759424px;}
._1e{margin-left:-3.231360px;}
._1{margin-left:-2.209680px;}
._0{margin-left:-1.140480px;}
._2{width:1.035936px;}
._5{width:2.185920px;}
._7{width:3.424752px;}
._18{width:5.904864px;}
._30{width:7.921584px;}
._13{width:11.218032px;}
._2f{width:43.746912px;}
._12{width:46.080720px;}
._11{width:47.521296px;}
._1a{width:53.277696px;}
._f{width:54.718272px;}
._10{width:56.158848px;}
._16{width:57.599424px;}
._8{width:59.040000px;}
._17{width:60.480576px;}
._6{width:61.921152px;}
._e{width:63.355824px;}
._b{width:64.796400px;}
._d{width:66.236976px;}
._a{width:67.677552px;}
._14{width:69.118128px;}
._26{width:71.047152px;}
._27{width:72.981216px;}
._2a{width:74.264256px;}
._29{width:75.361968px;}
._28{width:77.243760px;}
._2b{width:78.251184px;}
._22{width:82.822608px;}
._23{width:87.802704px;}
._20{width:90.758448px;}
._1c{width:94.042080px;}
._1f{width:96.936048px;}
._24{width:98.399664px;}
._1d{width:99.801504px;}
._1b{width:100.808928px;}
._4{width:114.409152px;}
._2e{width:143.957088px;}
._25{width:170.777376px;}
._21{width:178.770240px;}
._31{width:737.724240px;}
._32{width:779.945760px;}
._15{width:926.174304px;}
._3{width:1189.439856px;}
._c{width:1690.044048px;}
.fc3{color:rgb(255,40,0);}
.fc2{color:rgb(14,47,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:11.520000px;}
.fs6{font-size:23.040000px;}
.fs3{font-size:38.880000px;}
.fs0{font-size:47.520000px;}
.fs5{font-size:53.280000px;}
.fs4{font-size:59.040000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:95.040000px;}
.y0{bottom:0.000000px;}
.y35{bottom:0.045000px;}
.y3{bottom:64.080546px;}
.y195{bottom:68.389848px;}
.y15d{bottom:68.410512px;}
.yf1{bottom:69.827226px;}
.y232{bottom:73.068768px;}
.y86{bottom:74.509344px;}
.ybd{bottom:78.807456px;}
.y129{bottom:78.836730px;}
.y201{bottom:78.836838px;}
.y2b8{bottom:79.572168px;}
.y2{bottom:79.920150px;}
.y194{bottom:84.950568px;}
.y15c{bottom:84.969756px;}
.y1c7{bottom:85.691520px;}
.yf0{bottom:86.387946px;}
.y26c{bottom:88.561446px;}
.y231{bottom:89.629488px;}
.y85{bottom:91.070064px;}
.y2b7{bottom:93.251988px;}
.ybc{bottom:95.368176px;}
.y200{bottom:95.396082px;}
.y128{bottom:95.397450px;}
.y52{bottom:97.549386px;}
.y193{bottom:101.511288px;}
.y15b{bottom:101.529000px;}
.y26b{bottom:102.241266px;}
.y1c6{bottom:102.250764px;}
.yef{bottom:102.948666px;}
.y230{bottom:105.830064px;}
.y302{bottom:106.570548px;}
.y2b6{bottom:106.571844px;}
.y36{bottom:107.595150px;}
.y84{bottom:107.630784px;}
.y37{bottom:107.640150px;}
.y34{bottom:107.640546px;}
.ybb{bottom:111.928896px;}
.y1ff{bottom:111.955326px;}
.y127{bottom:111.958170px;}
.y51{bottom:113.749962px;}
.y26a{bottom:115.561122px;}
.y192{bottom:118.072008px;}
.y15a{bottom:118.088244px;}
.y1c5{bottom:119.170152px;}
.yee{bottom:119.509386px;}
.y301{bottom:120.250368px;}
.y2b5{bottom:120.251664px;}
.y33{bottom:121.320366px;}
.y83{bottom:123.831360px;}
.yba{bottom:128.489616px;}
.y1fe{bottom:128.514570px;}
.y126{bottom:128.518890px;}
.y269{bottom:129.240942px;}
.y50{bottom:130.310682px;}
.y22f{bottom:131.389956px;}
.y300{bottom:133.570224px;}
.y2b4{bottom:133.571520px;}
.y191{bottom:134.632728px;}
.y159{bottom:134.648964px;}
.y32{bottom:135.360150px;}
.yed{bottom:136.070106px;}
.y1c4{bottom:136.089540px;}
.y82{bottom:140.392080px;}
.y268{bottom:142.560798px;}
.y1fd{bottom:145.073814px;}
.y31{bottom:146.520150px;}
.y4f{bottom:146.871402px;}
.y2ff{bottom:147.250044px;}
.y2b3{bottom:147.251340px;}
.y383{bottom:148.680294px;}
.y190{bottom:150.833304px;}
.y158{bottom:150.849540px;}
.yec{bottom:152.630826px;}
.y125{bottom:152.638206px;}
.y1c3{bottom:153.008928px;}
.yb9{bottom:154.049508px;}
.y267{bottom:156.240618px;}
.y81{bottom:156.952800px;}
.y2fe{bottom:160.569900px;}
.y2b2{bottom:160.571196px;}
.y30{bottom:161.995392px;}
.y382{bottom:162.000150px;}
.y22e{bottom:163.069344px;}
.y4e{bottom:163.432122px;}
.y18f{bottom:167.394024px;}
.yeb{bottom:168.831402px;}
.y1fc{bottom:168.834462px;}
.y124{bottom:168.838782px;}
.y266{bottom:169.560474px;}
.y1c2{bottom:169.928316px;}
.y2fd{bottom:174.249720px;}
.y2b1{bottom:174.251016px;}
.y157{bottom:174.968856px;}
.y2f{bottom:178.556112px;}
.yb8{bottom:179.249256px;}
.y22d{bottom:179.630064px;}
.y381{bottom:179.640150px;}
.y4d{bottom:179.992842px;}
.y80{bottom:182.512692px;}
.y265{bottom:183.240294px;}
.y18e{bottom:183.954744px;}
.y380{bottom:185.040150px;}
.yea{bottom:185.392122px;}
.y1fb{bottom:185.395182px;}
.y123{bottom:185.399502px;}
.y1c1{bottom:186.847704px;}
.y2fc{bottom:187.569576px;}
.y2b0{bottom:187.570872px;}
.y156{bottom:191.529576px;}
.y2e{bottom:194.756688px;}
.y22c{bottom:195.830640px;}
.y4c{bottom:196.553562px;}
.y264{bottom:196.560150px;}
.y18d{bottom:200.515464px;}
.y2fb{bottom:201.249396px;}
.y2af{bottom:201.250692px;}
.ye9{bottom:201.952842px;}
.y1fa{bottom:201.955902px;}
.y122{bottom:201.960222px;}
.y1c0{bottom:203.767092px;}
.y37f{bottom:207.000150px;}
.y155{bottom:208.090296px;}
.yb7{bottom:210.928644px;}
.y2d{bottom:211.317408px;}
.y22b{bottom:212.391360px;}
.y7f{bottom:213.833412px;}
.y2fa{bottom:214.569252px;}
.y2ae{bottom:214.570548px;}
.y18c{bottom:217.076184px;}
.ye8{bottom:218.513562px;}
.y1f9{bottom:218.516622px;}
.y121{bottom:218.520942px;}
.y263{bottom:219.947004px;}
.y4b{bottom:220.314210px;}
.y1bf{bottom:220.686480px;}
.y37e{bottom:222.840150px;}
.y154{bottom:224.651016px;}
.yb6{bottom:227.489364px;}
.y2c{bottom:227.878128px;}
.y2f9{bottom:228.249072px;}
.y2ad{bottom:228.250368px;}
.y22a{bottom:228.952080px;}
.y7e{bottom:230.394132px;}
.ye7{bottom:235.074282px;}
.y1f8{bottom:235.077342px;}
.y37d{bottom:235.080150px;}
.y4a{bottom:236.874930px;}
.y1be{bottom:237.605868px;}
.y18b{bottom:240.836832px;}
.y153{bottom:240.851592px;}
.y2f8{bottom:241.568928px;}
.y2ac{bottom:241.570224px;}
.y120{bottom:243.720690px;}
.yb5{bottom:244.050084px;}
.y2b{bottom:244.438848px;}
.y229{bottom:245.512800px;}
.y262{bottom:251.626392px;}
.y37c{bottom:253.080150px;}
.y49{bottom:253.435650px;}
.y1bd{bottom:254.525256px;}
.y2f7{bottom:255.248748px;}
.y2ab{bottom:255.250044px;}
.y7d{bottom:255.954024px;}
.y18a{bottom:257.397552px;}
.y152{bottom:257.412312px;}
.ye6{bottom:258.834930px;}
.y1f7{bottom:258.837990px;}
.yb4{bottom:260.610804px;}
.y2a{bottom:260.999568px;}
.y228{bottom:262.073520px;}
.y261{bottom:267.826968px;}
.y2f6{bottom:268.568604px;}
.y340{bottom:268.569468px;}
.y2aa{bottom:268.569900px;}
.y48{bottom:269.996370px;}
.y1bc{bottom:271.444644px;}
.y189{bottom:273.958272px;}
.y151{bottom:273.971556px;}
.ye5{bottom:275.395650px;}
.y1f6{bottom:275.398710px;}
.y11f{bottom:275.400078px;}
.yb3{bottom:276.811380px;}
.y29{bottom:277.560288px;}
.y227{bottom:278.634240px;}
.y2f5{bottom:282.248424px;}
.y33f{bottom:282.249288px;}
.y2a9{bottom:282.249720px;}
.y260{bottom:284.387688px;}
.y47{bottom:286.557090px;}
.y7c{bottom:287.633412px;}
.y188{bottom:290.518992px;}
.y150{bottom:290.530800px;}
.ye4{bottom:291.956370px;}
.y1f5{bottom:291.959430px;}
.y11e{bottom:291.960798px;}
.yb2{bottom:293.372100px;}
.y28{bottom:293.760864px;}
.y226{bottom:294.834816px;}
.y2f4{bottom:295.568280px;}
.y33e{bottom:295.569144px;}
.y2a8{bottom:295.569576px;}
.y1bb{bottom:296.284248px;}
.y25f{bottom:300.948408px;}
.y46{bottom:302.757666px;}
.y7b{bottom:303.833988px;}
.y187{bottom:307.079712px;}
.y14f{bottom:307.090044px;}
.ye3{bottom:308.517090px;}
.y1f4{bottom:308.523168px;}
.y37b{bottom:309.247596px;}
.y2f3{bottom:309.248100px;}
.y33d{bottom:309.248964px;}
.y2a7{bottom:309.249396px;}
.yb1{bottom:309.932820px;}
.y27{bottom:310.321584px;}
.y225{bottom:311.394060px;}
.y1ba{bottom:312.844968px;}
.y25e{bottom:317.509128px;}
.y45{bottom:319.318386px;}
.y7a{bottom:320.394708px;}
.y37a{bottom:322.567452px;}
.y2f2{bottom:322.567956px;}
.y33c{bottom:322.568820px;}
.y2a6{bottom:322.569252px;}
.y11d{bottom:323.640186px;}
.y186{bottom:323.640432px;}
.ye2{bottom:325.077810px;}
.y1f3{bottom:325.083888px;}
.yb0{bottom:326.493540px;}
.y224{bottom:327.953304px;}
.y1b9{bottom:330.124500px;}
.y14e{bottom:332.649936px;}
.y26{bottom:334.440900px;}
.y44{bottom:335.879106px;}
.y379{bottom:336.247272px;}
.y2f1{bottom:336.247776px;}
.y33b{bottom:336.248640px;}
.y2a5{bottom:336.249072px;}
.y11c{bottom:339.840762px;}
.y185{bottom:339.841008px;}
.ye1{bottom:341.638530px;}
.y1f2{bottom:341.644608px;}
.yaf{bottom:343.054260px;}
.y25d{bottom:343.069020px;}
.y223{bottom:344.512548px;}
.y79{bottom:345.954600px;}
.y1b8{bottom:347.043888px;}
.y378{bottom:349.567128px;}
.y2f0{bottom:349.567632px;}
.y33a{bottom:349.568496px;}
.y2a4{bottom:349.568928px;}
.y25{bottom:351.000144px;}
.y43{bottom:352.439826px;}
.y11b{bottom:356.400006px;}
.y184{bottom:356.401728px;}
.y14d{bottom:356.410584px;}
.ye0{bottom:357.839106px;}
.yae{bottom:359.614980px;}
.y222{bottom:361.071792px;}
.y377{bottom:363.246948px;}
.y2ef{bottom:363.247452px;}
.y339{bottom:363.248316px;}
.y2a3{bottom:363.248748px;}
.y1b7{bottom:363.963276px;}
.y1f1{bottom:365.405256px;}
.y24{bottom:367.560864px;}
.y42{bottom:369.000546px;}
.y11a{bottom:372.959250px;}
.y183{bottom:372.962448px;}
.y14c{bottom:372.969828px;}
.y25c{bottom:374.389740px;}
.ydf{bottom:374.399826px;}
.yad{bottom:375.815556px;}
.y376{bottom:376.566804px;}
.y2ee{bottom:376.567308px;}
.y338{bottom:376.568172px;}
.y2a2{bottom:376.568604px;}
.y78{bottom:377.633988px;}
.y1b6{bottom:380.882664px;}
.y1f0{bottom:381.964500px;}
.y23{bottom:383.761440px;}
.y221{bottom:384.832440px;}
.y41{bottom:385.561266px;}
.y119{bottom:389.518494px;}
.y182{bottom:389.523168px;}
.y14b{bottom:389.529072px;}
.y375{bottom:390.246624px;}
.y2ed{bottom:390.247128px;}
.y337{bottom:390.247992px;}
.y2a1{bottom:390.248424px;}
.y25b{bottom:390.948984px;}
.yde{bottom:390.960546px;}
.yac{bottom:392.374800px;}
.y77{bottom:393.834564px;}
.y1b5{bottom:397.802052px;}
.y1ef{bottom:398.523744px;}
.y22{bottom:400.322160px;}
.y220{bottom:401.391684px;}
.y40{bottom:401.761842px;}
.y374{bottom:403.566480px;}
.y2ec{bottom:403.566984px;}
.y336{bottom:403.567848px;}
.y2a0{bottom:403.568280px;}
.y118{bottom:406.077738px;}
.y181{bottom:406.083888px;}
.y14a{bottom:406.088316px;}
.y25a{bottom:407.508228px;}
.ydd{bottom:407.521266px;}
.yab{bottom:408.934044px;}
.y76{bottom:410.393808px;}
.y1ee{bottom:415.082988px;}
.y21{bottom:416.882880px;}
.y373{bottom:417.246300px;}
.y2eb{bottom:417.246804px;}
.y335{bottom:417.247668px;}
.y29f{bottom:417.248100px;}
.y21f{bottom:417.950928px;}
.y3f{bottom:418.321086px;}
.y117{bottom:422.636982px;}
.y1b4{bottom:422.641656px;}
.y149{bottom:422.647560px;}
.y259{bottom:424.067472px;}
.ydc{bottom:424.081986px;}
.y372{bottom:430.566156px;}
.y2ea{bottom:430.566660px;}
.y334{bottom:430.567524px;}
.y29e{bottom:430.567956px;}
.y1ed{bottom:431.642232px;}
.y180{bottom:431.643780px;}
.yaa{bottom:433.054836px;}
.y20{bottom:433.443600px;}
.y21e{bottom:434.510172px;}
.y3e{bottom:434.880330px;}
.y75{bottom:435.953700px;}
.y116{bottom:438.837558px;}
.y1b3{bottom:438.842232px;}
.y148{bottom:438.848136px;}
.y258{bottom:440.626716px;}
.y371{bottom:444.245976px;}
.y2e9{bottom:444.246480px;}
.y333{bottom:444.247344px;}
.y29d{bottom:444.247776px;}
.ydb{bottom:447.842634px;}
.y1ec{bottom:447.842808px;}
.y17f{bottom:447.844356px;}
.ya9{bottom:449.614080px;}
.y1f{bottom:450.002844px;}
.y21d{bottom:451.069416px;}
.y3d{bottom:451.439574px;}
.y115{bottom:455.396802px;}
.y1b2{bottom:455.401476px;}
.y147{bottom:455.407380px;}
.y257{bottom:456.827292px;}
.y370{bottom:457.565832px;}
.y2e8{bottom:457.566336px;}
.y332{bottom:457.567200px;}
.y29c{bottom:457.567632px;}
.yda{bottom:464.401878px;}
.y1eb{bottom:464.402052px;}
.ya8{bottom:465.814656px;}
.y1e{bottom:466.562088px;}
.y21c{bottom:467.628660px;}
.y74{bottom:467.633088px;}
.y3c{bottom:467.998818px;}
.y36f{bottom:471.245652px;}
.y2e7{bottom:471.246156px;}
.y331{bottom:471.247020px;}
.y29b{bottom:471.247452px;}
.y114{bottom:471.956046px;}
.y1b1{bottom:471.960720px;}
.y17e{bottom:471.963672px;}
.y146{bottom:471.966624px;}
.y256{bottom:473.386536px;}
.yd9{bottom:480.961122px;}
.ya7{bottom:482.375376px;}
.y1d{bottom:482.762664px;}
.y21b{bottom:483.829236px;}
.y73{bottom:483.833664px;}
.y3b{bottom:484.558062px;}
.y36e{bottom:484.565508px;}
.y2e6{bottom:484.566012px;}
.y330{bottom:484.566876px;}
.y29a{bottom:484.567308px;}
.y113{bottom:488.515290px;}
.y1b0{bottom:488.519964px;}
.y17d{bottom:488.524392px;}
.y145{bottom:488.525868px;}
.y255{bottom:489.945780px;}
.y1ea{bottom:489.961944px;}
.yd8{bottom:497.520366px;}
.y36d{bottom:498.245328px;}
.y2e5{bottom:498.245832px;}
.y32f{bottom:498.246696px;}
.y299{bottom:498.247128px;}
.ya6{bottom:498.936096px;}
.y1c{bottom:499.321908px;}
.y21a{bottom:500.389956px;}
.y112{bottom:505.074534px;}
.y1af{bottom:505.079208px;}
.y144{bottom:505.085112px;}
.y254{bottom:506.505024px;}
.y3a{bottom:508.318710px;}
.y72{bottom:509.393556px;}
.y36c{bottom:511.565184px;}
.y2e4{bottom:511.565688px;}
.y32e{bottom:511.566552px;}
.y298{bottom:511.566984px;}
.yd7{bottom:514.079610px;}
.ya5{bottom:515.496816px;}
.y1b{bottom:515.881152px;}
.y219{bottom:516.950676px;}
.y111{bottom:521.633778px;}
.y1ae{bottom:521.638452px;}
.y1e9{bottom:521.641332px;}
.y143{bottom:521.644356px;}
.y253{bottom:523.064268px;}
.y39{bottom:524.879430px;}
.y36b{bottom:525.245004px;}
.y2e3{bottom:525.245508px;}
.y32d{bottom:525.246372px;}
.y297{bottom:525.246804px;}
.yd6{bottom:530.638854px;}
.ya4{bottom:532.057536px;}
.y218{bottom:533.511396px;}
.y1ad{bottom:537.839028px;}
.y1e8{bottom:537.841908px;}
.y142{bottom:537.844932px;}
.y36a{bottom:538.564860px;}
.y2e2{bottom:538.565364px;}
.y32c{bottom:538.566228px;}
.y296{bottom:538.566660px;}
.y252{bottom:539.623512px;}
.y71{bottom:541.072944px;}
.y38{bottom:541.440150px;}
.y1a{bottom:541.441044px;}
.y110{bottom:546.833526px;}
.yd5{bottom:546.839430px;}
.y369{bottom:552.244680px;}
.y2e1{bottom:552.245184px;}
.y32b{bottom:552.246048px;}
.y295{bottom:552.246480px;}
.y1ac{bottom:554.398272px;}
.y1e7{bottom:554.402628px;}
.y141{bottom:554.404176px;}
.y251{bottom:555.824088px;}
.ya3{bottom:557.257284px;}
.y217{bottom:557.630712px;}
.y70{bottom:557.632188px;}
.yd4{bottom:563.398674px;}
.y368{bottom:565.564536px;}
.y2e0{bottom:565.565040px;}
.y32a{bottom:565.565904px;}
.y294{bottom:565.566336px;}
.y1ab{bottom:570.957516px;}
.y1e6{bottom:570.963348px;}
.y140{bottom:570.963420px;}
.y17c{bottom:570.964896px;}
.y250{bottom:572.383332px;}
.y216{bottom:573.831288px;}
.y6f{bottom:573.832764px;}
.y10f{bottom:578.512914px;}
.y367{bottom:579.244356px;}
.y2df{bottom:579.244860px;}
.y329{bottom:579.245724px;}
.y293{bottom:579.246156px;}
.yd3{bottom:579.957918px;}
.y19{bottom:585.000756px;}
.y1aa{bottom:587.516760px;}
.y13f{bottom:587.522664px;}
.y1e5{bottom:587.524068px;}
.y17b{bottom:587.525616px;}
.ya2{bottom:588.936672px;}
.y24f{bottom:588.942576px;}
.y215{bottom:590.392008px;}
.y6e{bottom:590.393484px;}
.y366{bottom:592.564212px;}
.y2de{bottom:592.564716px;}
.y328{bottom:592.565580px;}
.y292{bottom:592.566012px;}
.y10e{bottom:595.072158px;}
.yd2{bottom:596.517162px;}
.y18{bottom:601.560000px;}
.y1a9{bottom:604.076004px;}
.y13e{bottom:604.081908px;}
.y1e4{bottom:604.083312px;}
.y17a{bottom:604.084860px;}
.y24e{bottom:605.501820px;}
.y365{bottom:606.244032px;}
.y2dd{bottom:606.244536px;}
.y327{bottom:606.245400px;}
.y291{bottom:606.245832px;}
.y214{bottom:606.952728px;}
.y6d{bottom:606.954204px;}
.y10d{bottom:611.631402px;}
.yd1{bottom:613.076406px;}
.y364{bottom:619.563888px;}
.y2dc{bottom:619.564392px;}
.y326{bottom:619.565256px;}
.y290{bottom:619.565688px;}
.ya1{bottom:620.616060px;}
.y1a8{bottom:620.635248px;}
.y13d{bottom:620.641152px;}
.y1e3{bottom:620.642556px;}
.y179{bottom:620.644104px;}
.y24d{bottom:622.061064px;}
.y213{bottom:623.513448px;}
.y6c{bottom:623.514924px;}
.y10c{bottom:627.831978px;}
.yd0{bottom:629.635650px;}
.y363{bottom:633.243708px;}
.y2db{bottom:633.244212px;}
.y325{bottom:633.245076px;}
.y28f{bottom:633.245508px;}
.y17{bottom:635.765262px;}
.ya0{bottom:636.816636px;}
.y1a7{bottom:636.835824px;}
.y13c{bottom:636.841728px;}
.y1e2{bottom:636.843132px;}
.y178{bottom:636.844680px;}
.y24c{bottom:638.620308px;}
.y212{bottom:640.074168px;}
.y10b{bottom:644.391222px;}
.ycf{bottom:645.836226px;}
.y362{bottom:646.563564px;}
.y2da{bottom:646.564068px;}
.y324{bottom:646.564932px;}
.y28e{bottom:646.565364px;}
.y6b{bottom:648.714672px;}
.y16{bottom:652.324686px;}
.y9f{bottom:653.377356px;}
.y1a6{bottom:653.396544px;}
.y13b{bottom:653.400972px;}
.y177{bottom:653.403924px;}
.y24b{bottom:654.820884px;}
.y361{bottom:660.243384px;}
.y2d9{bottom:660.243888px;}
.y323{bottom:660.244752px;}
.y28d{bottom:660.245184px;}
.y10a{bottom:660.950466px;}
.y1e1{bottom:660.962448px;}
.yce{bottom:662.395470px;}
.y211{bottom:665.273916px;}
.y15{bottom:668.884110px;}
.y9e{bottom:669.938076px;}
.y1a5{bottom:669.957264px;}
.y13a{bottom:669.960216px;}
.y176{bottom:669.963168px;}
.y24a{bottom:671.380128px;}
.y360{bottom:673.563240px;}
.y2d8{bottom:673.563744px;}
.y322{bottom:673.564608px;}
.y28c{bottom:673.565040px;}
.y109{bottom:677.509710px;}
.y1e0{bottom:677.521692px;}
.ycd{bottom:678.954714px;}
.y6a{bottom:680.395536px;}
.y14{bottom:685.443534px;}
.y9d{bottom:686.498796px;}
.y1a4{bottom:686.517984px;}
.y139{bottom:686.519460px;}
.y175{bottom:686.522412px;}
.y35f{bottom:687.243060px;}
.y2d7{bottom:687.243564px;}
.y321{bottom:687.244428px;}
.y28b{bottom:687.244860px;}
.y249{bottom:687.939372px;}
.y108{bottom:694.068954px;}
.y1df{bottom:694.080936px;}
.ycc{bottom:695.513958px;}
.y210{bottom:696.953304px;}
.y35e{bottom:700.562916px;}
.y2d6{bottom:700.563420px;}
.y320{bottom:700.564284px;}
.y28a{bottom:700.564716px;}
.y13{bottom:702.002958px;}
.y9c{bottom:703.059516px;}
.y138{bottom:703.078704px;}
.y174{bottom:703.081656px;}
.y107{bottom:710.628198px;}
.y1de{bottom:710.640180px;}
.y248{bottom:712.060164px;}
.ycb{bottom:712.073202px;}
.y69{bottom:712.076400px;}
.y35d{bottom:714.242736px;}
.y2d5{bottom:714.243240px;}
.y31f{bottom:714.244104px;}
.y289{bottom:714.244536px;}
.y12{bottom:718.562382px;}
.y137{bottom:719.637948px;}
.y173{bottom:719.640900px;}
.y9b{bottom:726.820164px;}
.y106{bottom:726.828774px;}
.y1dd{bottom:726.840756px;}
.y35c{bottom:727.562592px;}
.y2d4{bottom:727.563096px;}
.y31e{bottom:727.563960px;}
.y288{bottom:727.564392px;}
.y1a3{bottom:728.278452px;}
.y247{bottom:728.619408px;}
.yca{bottom:728.632446px;}
.y20f{bottom:728.632692px;}
.y68{bottom:728.635644px;}
.y11{bottom:734.762166px;}
.y136{bottom:735.838524px;}
.y172{bottom:735.841476px;}
.y35b{bottom:741.242412px;}
.y2d3{bottom:741.242916px;}
.y31d{bottom:741.243780px;}
.y287{bottom:741.244212px;}
.y9a{bottom:743.380884px;}
.y105{bottom:743.388018px;}
.y1dc{bottom:743.397516px;}
.y246{bottom:744.819984px;}
.y20e{bottom:744.833268px;}
.y67{bottom:744.836220px;}
.y10{bottom:751.321590px;}
.yc9{bottom:752.393094px;}
.y135{bottom:752.399244px;}
.y35a{bottom:754.562268px;}
.y2d2{bottom:754.562772px;}
.y31c{bottom:754.563636px;}
.y286{bottom:754.564068px;}
.y99{bottom:759.941604px;}
.y1a2{bottom:759.957840px;}
.y1db{bottom:759.958236px;}
.y171{bottom:759.960792px;}
.y245{bottom:761.380704px;}
.y20d{bottom:761.393988px;}
.y66{bottom:761.396940px;}
.yf{bottom:767.881014px;}
.y359{bottom:768.242088px;}
.y2d1{bottom:768.242592px;}
.y31b{bottom:768.243456px;}
.y285{bottom:768.243888px;}
.y104{bottom:768.947910px;}
.yc8{bottom:768.953814px;}
.y134{bottom:768.959964px;}
.y98{bottom:776.502324px;}
.y1a1{bottom:776.518560px;}
.y1da{bottom:776.518956px;}
.y170{bottom:776.521512px;}
.y244{bottom:777.941424px;}
.y20c{bottom:777.954708px;}
.y65{bottom:777.957660px;}
.y358{bottom:781.561944px;}
.y2d0{bottom:781.562448px;}
.y31a{bottom:781.563312px;}
.y284{bottom:781.563744px;}
.ye{bottom:784.440438px;}
.yc7{bottom:785.514534px;}
.y97{bottom:793.063044px;}
.y103{bottom:793.067226px;}
.y1a0{bottom:793.079280px;}
.y1d9{bottom:793.079676px;}
.y16f{bottom:793.082232px;}
.y243{bottom:794.502144px;}
.y20b{bottom:794.515428px;}
.y64{bottom:794.518380px;}
.y133{bottom:794.519856px;}
.y357{bottom:795.241764px;}
.y2cf{bottom:795.242268px;}
.y319{bottom:795.243132px;}
.y283{bottom:795.243564px;}
.yc6{bottom:802.075254px;}
.y356{bottom:808.561620px;}
.y2ce{bottom:808.562124px;}
.y318{bottom:808.562988px;}
.y282{bottom:808.563420px;}
.y96{bottom:809.623764px;}
.y102{bottom:809.627946px;}
.y19f{bottom:809.640000px;}
.y1d8{bottom:809.640396px;}
.y16e{bottom:809.642952px;}
.yd{bottom:810.000186px;}
.y242{bottom:811.062864px;}
.y20a{bottom:811.076148px;}
.y63{bottom:811.079100px;}
.yc5{bottom:818.635974px;}
.y132{bottom:818.639172px;}
.y355{bottom:822.241440px;}
.y2cd{bottom:822.241944px;}
.y317{bottom:822.242808px;}
.y281{bottom:822.243240px;}
.y95{bottom:825.824340px;}
.y101{bottom:825.828522px;}
.y19e{bottom:825.840576px;}
.y1d7{bottom:825.840972px;}
.y16d{bottom:825.843528px;}
.yc{bottom:826.559610px;}
.y241{bottom:827.623584px;}
.y209{bottom:827.636868px;}
.y62{bottom:827.639820px;}
.yc4{bottom:834.836550px;}
.y131{bottom:834.839748px;}
.y354{bottom:835.561296px;}
.y2cc{bottom:835.561800px;}
.y316{bottom:835.562664px;}
.y280{bottom:835.563096px;}
.y94{bottom:842.383584px;}
.y100{bottom:842.389242px;}
.y19d{bottom:842.399820px;}
.y1d6{bottom:842.401692px;}
.y16c{bottom:842.404248px;}
.yb{bottom:842.759394px;}
.y208{bottom:843.837444px;}
.y353{bottom:849.241116px;}
.y2cb{bottom:849.241620px;}
.y315{bottom:849.242484px;}
.y27f{bottom:849.242916px;}
.y240{bottom:851.382756px;}
.yc3{bottom:851.397270px;}
.y61{bottom:851.398992px;}
.y130{bottom:851.400468px;}
.y93{bottom:858.944304px;}
.yff{bottom:858.949962px;}
.y19c{bottom:858.960540px;}
.y1d5{bottom:858.962412px;}
.y16b{bottom:858.964968px;}
.ya{bottom:859.320150px;}
.y207{bottom:860.398164px;}
.y352{bottom:862.560972px;}
.y2ca{bottom:862.561476px;}
.y314{bottom:862.562340px;}
.y27e{bottom:862.562772px;}
.y23f{bottom:867.943476px;}
.yc2{bottom:867.957990px;}
.y60{bottom:867.959712px;}
.y12f{bottom:867.961188px;}
.y92{bottom:875.505024px;}
.yfe{bottom:875.510682px;}
.y19b{bottom:875.521260px;}
.y1d4{bottom:875.523132px;}
.y16a{bottom:875.525688px;}
.y351{bottom:876.240792px;}
.y2c9{bottom:876.241296px;}
.y313{bottom:876.242160px;}
.y27d{bottom:876.242592px;}
.y206{bottom:876.958884px;}
.y23e{bottom:884.504196px;}
.yc1{bottom:884.518710px;}
.y5f{bottom:884.520432px;}
.y12e{bottom:884.521908px;}
.y350{bottom:889.560648px;}
.y2c8{bottom:889.561152px;}
.y312{bottom:889.562016px;}
.y27c{bottom:889.562448px;}
.y91{bottom:892.065744px;}
.yfd{bottom:892.071402px;}
.y19a{bottom:892.081980px;}
.y169{bottom:892.086408px;}
.y9{bottom:893.880618px;}
.y1d3{bottom:899.642448px;}
.y23d{bottom:901.064916px;}
.y205{bottom:901.078200px;}
.yc0{bottom:901.079430px;}
.y5e{bottom:901.081152px;}
.y12d{bottom:901.082628px;}
.y34f{bottom:903.240468px;}
.y2c7{bottom:903.240972px;}
.y311{bottom:903.241836px;}
.y27b{bottom:903.242268px;}
.y90{bottom:908.626464px;}
.yfc{bottom:908.632122px;}
.y199{bottom:908.642700px;}
.y168{bottom:908.647128px;}
.y1d2{bottom:915.843024px;}
.y34e{bottom:916.560324px;}
.y2c6{bottom:916.560828px;}
.y310{bottom:916.561692px;}
.y27a{bottom:916.562124px;}
.y23c{bottom:917.625636px;}
.y204{bottom:917.638920px;}
.y5d{bottom:917.641872px;}
.y12c{bottom:917.643348px;}
.y8{bottom:918.000150px;}
.yfb{bottom:924.832698px;}
.y198{bottom:924.843276px;}
.y167{bottom:924.847704px;}
.y34d{bottom:930.240144px;}
.y2c5{bottom:930.240648px;}
.y30f{bottom:930.241512px;}
.y279{bottom:930.241944px;}
.y1d1{bottom:932.402268px;}
.y8f{bottom:933.826212px;}
.y203{bottom:933.839496px;}
.y5c{bottom:933.842448px;}
.yfa{bottom:941.391942px;}
.y197{bottom:941.402520px;}
.y166{bottom:941.408424px;}
.y12b{bottom:942.843096px;}
.y34c{bottom:943.560000px;}
.y2c4{bottom:943.560504px;}
.y30e{bottom:943.561368px;}
.y278{bottom:943.561800px;}
.y1d0{bottom:948.961512px;}
.y23b{bottom:950.386932px;}
.y202{bottom:950.400216px;}
.y5b{bottom:950.401692px;}
.y2c3{bottom:957.240324px;}
.y30d{bottom:957.241188px;}
.y277{bottom:957.241620px;}
.y34b{bottom:957.250692px;}
.yf9{bottom:957.951186px;}
.y196{bottom:957.961764px;}
.y165{bottom:957.969144px;}
.y7{bottom:965.160150px;}
.y8e{bottom:965.505600px;}
.y1cf{bottom:965.520756px;}
.y23a{bottom:966.947652px;}
.y5a{bottom:966.960936px;}
.y2c2{bottom:970.560180px;}
.y30c{bottom:970.561044px;}
.y276{bottom:970.561476px;}
.y34a{bottom:970.570548px;}
.yf8{bottom:974.510430px;}
.ybf{bottom:974.521008px;}
.y12a{bottom:974.522484px;}
.y164{bottom:974.529864px;}
.y8d{bottom:982.066320px;}
.y1ce{bottom:982.079430px;}
.y239{bottom:983.508372px;}
.y59{bottom:983.521656px;}
.y2c1{bottom:984.240000px;}
.y30b{bottom:984.240864px;}
.y275{bottom:984.241296px;}
.y349{bottom:984.250368px;}
.yf7{bottom:991.069674px;}
.ybe{bottom:991.081728px;}
.y163{bottom:991.090584px;}
.y30a{bottom:997.560720px;}
.y274{bottom:997.561152px;}
.y348{bottom:997.570224px;}
.y2c0{bottom:997.573032px;}
.y8c{bottom:998.627040px;}
.y1cd{bottom:998.649180px;}
.y238{bottom:1000.069092px;}
.y58{bottom:1007.642448px;}
.y162{bottom:1007.651304px;}
.y309{bottom:1011.240540px;}
.y273{bottom:1011.240972px;}
.y347{bottom:1011.250044px;}
.y2bf{bottom:1011.252852px;}
.y8b{bottom:1014.827616px;}
.y1cc{bottom:1014.849756px;}
.yf6{bottom:1016.629566px;}
.y237{bottom:1016.629812px;}
.y6{bottom:1022.758920px;}
.y57{bottom:1023.843024px;}
.y161{bottom:1023.851880px;}
.y308{bottom:1024.560396px;}
.y272{bottom:1024.560828px;}
.y346{bottom:1024.569900px;}
.y2be{bottom:1024.572708px;}
.y8a{bottom:1031.388336px;}
.y1cb{bottom:1031.410476px;}
.y236{bottom:1032.830388px;}
.y307{bottom:1038.240216px;}
.y271{bottom:1038.240648px;}
.y345{bottom:1038.249720px;}
.y2bd{bottom:1038.252528px;}
.yf5{bottom:1040.388738px;}
.y56{bottom:1040.402268px;}
.y5{bottom:1047.600000px;}
.y89{bottom:1047.949056px;}
.y1ca{bottom:1047.971196px;}
.y235{bottom:1049.389632px;}
.y160{bottom:1049.411772px;}
.y306{bottom:1051.560072px;}
.y270{bottom:1051.560504px;}
.y344{bottom:1051.569576px;}
.y2bc{bottom:1051.572384px;}
.yf4{bottom:1056.947982px;}
.y55{bottom:1056.961512px;}
.y88{bottom:1064.509776px;}
.y1c9{bottom:1064.531916px;}
.y305{bottom:1065.239892px;}
.y26f{bottom:1065.240324px;}
.y343{bottom:1065.249396px;}
.y2bb{bottom:1065.252204px;}
.yf3{bottom:1073.507226px;}
.y234{bottom:1073.508948px;}
.y54{bottom:1073.520756px;}
.y15f{bottom:1073.531088px;}
.y304{bottom:1078.559748px;}
.y26e{bottom:1078.560180px;}
.y342{bottom:1078.569252px;}
.y2ba{bottom:1078.572060px;}
.y4{bottom:1086.120000px;}
.yf2{bottom:1090.066470px;}
.y233{bottom:1090.068192px;}
.y87{bottom:1090.069668px;}
.y53{bottom:1090.080000px;}
.y15e{bottom:1090.090332px;}
.y1c8{bottom:1090.091808px;}
.y303{bottom:1092.239568px;}
.y26d{bottom:1092.240000px;}
.y341{bottom:1092.249072px;}
.y2b9{bottom:1092.251880px;}
.y1{bottom:1123.560000px;}
.h18{height:11.306250px;}
.h17{height:22.612500px;}
.h7{height:38.139609px;}
.hf{height:44.741250px;}
.h2{height:46.638281px;}
.h3{height:47.891250px;}
.h16{height:48.843072px;}
.ha{height:52.291406px;}
.h9{height:53.696250px;}
.h10{height:57.915703px;}
.hc{height:57.944531px;}
.hb{height:59.501250px;}
.hd{height:60.683816px;}
.h12{height:65.482474px;}
.h8{height:65.497137px;}
.h15{height:65.506522px;}
.h11{height:65.511706px;}
.h13{height:65.520874px;}
.h14{height:65.528530px;}
.h1{height:70.664062px;}
.h4{height:75.093750px;}
.h6{height:79.757681px;}
.h5{height:95.782500px;}
.he{height:1187.955000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:95.760000px;}
.x8{left:138.240000px;}
.x3{left:159.480000px;}
.x4{left:309.960000px;}
.x5{left:318.960000px;}
.x6{left:496.080000px;}
.x7{left:538.560504px;}
.x2{left:750.240000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.v1{vertical-align:29.439467pt;}
.ls4f{letter-spacing:-0.498560pt;}
.ls4a{letter-spacing:-0.488064pt;}
.ls21{letter-spacing:-0.478336pt;}
.ls5d{letter-spacing:-0.435584pt;}
.ls5a{letter-spacing:-0.430336pt;}
.ls34{letter-spacing:-0.425088pt;}
.ls48{letter-spacing:-0.419840pt;}
.ls44{letter-spacing:-0.414592pt;}
.ls56{letter-spacing:-0.404096pt;}
.ls68{letter-spacing:-0.398848pt;}
.ls6b{letter-spacing:-0.393600pt;}
.ls78{letter-spacing:-0.388352pt;}
.ls3a{letter-spacing:-0.383104pt;}
.ls32{letter-spacing:-0.377856pt;}
.ls2b{letter-spacing:-0.372608pt;}
.ls63{letter-spacing:-0.367360pt;}
.ls3b{letter-spacing:-0.362112pt;}
.ls5b{letter-spacing:-0.356864pt;}
.ls35{letter-spacing:-0.351616pt;}
.ls75{letter-spacing:-0.346368pt;}
.ls4c{letter-spacing:-0.341120pt;}
.ls49{letter-spacing:-0.335872pt;}
.ls57{letter-spacing:-0.330624pt;}
.ls5c{letter-spacing:-0.325376pt;}
.ls41{letter-spacing:-0.325248pt;}
.ls1c{letter-spacing:-0.321024pt;}
.ls53{letter-spacing:-0.320128pt;}
.ls2d{letter-spacing:-0.314880pt;}
.ls59{letter-spacing:-0.304384pt;}
.ls36{letter-spacing:-0.299136pt;}
.ls7e{letter-spacing:-0.293888pt;}
.ls4d{letter-spacing:-0.288640pt;}
.ls30{letter-spacing:-0.267648pt;}
.ls6a{letter-spacing:-0.262400pt;}
.ls43{letter-spacing:-0.251904pt;}
.ls42{letter-spacing:-0.249216pt;}
.ls80{letter-spacing:-0.244992pt;}
.ls9a{letter-spacing:-0.240768pt;}
.lsab{letter-spacing:-0.232320pt;}
.ls96{letter-spacing:-0.228096pt;}
.ls38{letter-spacing:-0.223872pt;}
.ls8f{letter-spacing:-0.219648pt;}
.ls81{letter-spacing:-0.215424pt;}
.lsa4{letter-spacing:-0.211200pt;}
.ls19{letter-spacing:-0.202752pt;}
.ls1e{letter-spacing:-0.192000pt;}
.lsb3{letter-spacing:-0.185856pt;}
.ls6f{letter-spacing:-0.157440pt;}
.ls46{letter-spacing:-0.083968pt;}
.ls47{letter-spacing:-0.057728pt;}
.lsb5{letter-spacing:-0.050688pt;}
.ls6c{letter-spacing:-0.026240pt;}
.lsb2{letter-spacing:-0.021120pt;}
.lsa1{letter-spacing:-0.016896pt;}
.ls97{letter-spacing:-0.008448pt;}
.ls1a{letter-spacing:0.000000pt;}
.ls76{letter-spacing:0.010368pt;}
.ls98{letter-spacing:0.012672pt;}
.lsaf{letter-spacing:0.021120pt;}
.ls2{letter-spacing:0.025344pt;}
.ls9d{letter-spacing:0.038016pt;}
.lsae{letter-spacing:0.042240pt;}
.lsb0{letter-spacing:0.050688pt;}
.lsa0{letter-spacing:0.063360pt;}
.ls5{letter-spacing:0.070400pt;}
.ls3{letter-spacing:0.089600pt;}
.ls51{letter-spacing:0.120704pt;}
.ls6e{letter-spacing:0.141696pt;}
.lsb1{letter-spacing:0.152064pt;}
.lsa2{letter-spacing:0.202752pt;}
.ls1{letter-spacing:0.211200pt;}
.ls92{letter-spacing:0.215424pt;}
.ls90{letter-spacing:0.240768pt;}
.ls70{letter-spacing:0.251904pt;}
.ls9c{letter-spacing:0.257664pt;}
.lsac{letter-spacing:0.266112pt;}
.lsa6{letter-spacing:0.283008pt;}
.ls9b{letter-spacing:0.287232pt;}
.ls95{letter-spacing:0.325248pt;}
.ls60{letter-spacing:0.446080pt;}
.ls45{letter-spacing:0.482816pt;}
.lsa9{letter-spacing:0.485760pt;}
.lsa3{letter-spacing:0.489984pt;}
.ls17{letter-spacing:0.493312pt;}
.ls1b{letter-spacing:0.498432pt;}
.ls5e{letter-spacing:0.498560pt;}
.ls7d{letter-spacing:0.503808pt;}
.ls99{letter-spacing:0.506880pt;}
.ls61{letter-spacing:0.509056pt;}
.lsb4{letter-spacing:0.511104pt;}
.ls50{letter-spacing:0.519552pt;}
.ls9e{letter-spacing:0.523776pt;}
.ls7c{letter-spacing:0.524800pt;}
.lsad{letter-spacing:0.528000pt;}
.lsa{letter-spacing:0.530048pt;}
.ls7a{letter-spacing:0.532224pt;}
.ls40{letter-spacing:0.536448pt;}
.ls9f{letter-spacing:0.540672pt;}
.ls85{letter-spacing:0.544896pt;}
.ls58{letter-spacing:0.545792pt;}
.ls8d{letter-spacing:0.549120pt;}
.ls62{letter-spacing:0.551040pt;}
.ls8b{letter-spacing:0.553344pt;}
.ls16{letter-spacing:0.556288pt;}
.ls37{letter-spacing:0.557568pt;}
.ls2a{letter-spacing:0.561536pt;}
.ls93{letter-spacing:0.561792pt;}
.ls7b{letter-spacing:0.566016pt;}
.ls15{letter-spacing:0.566784pt;}
.ls82{letter-spacing:0.570240pt;}
.ls18{letter-spacing:0.572032pt;}
.ls91{letter-spacing:0.574464pt;}
.ls39{letter-spacing:0.577280pt;}
.ls89{letter-spacing:0.578688pt;}
.ls12{letter-spacing:0.582528pt;}
.ls79{letter-spacing:0.582912pt;}
.ls84{letter-spacing:0.587136pt;}
.ls31{letter-spacing:0.587776pt;}
.ls87{letter-spacing:0.591360pt;}
.ls2e{letter-spacing:0.593024pt;}
.ls52{letter-spacing:0.595584pt;}
.ls3f{letter-spacing:0.598272pt;}
.ls94{letter-spacing:0.599808pt;}
.ls6{letter-spacing:0.603520pt;}
.ls8a{letter-spacing:0.604032pt;}
.lsa5{letter-spacing:0.608256pt;}
.ls13{letter-spacing:0.608768pt;}
.ls83{letter-spacing:0.612480pt;}
.ls14{letter-spacing:0.614016pt;}
.ls8e{letter-spacing:0.616704pt;}
.ls9{letter-spacing:0.619264pt;}
.ls10{letter-spacing:0.620928pt;}
.lsd{letter-spacing:0.624512pt;}
.ls88{letter-spacing:0.625152pt;}
.lsaa{letter-spacing:0.629376pt;}
.ls7{letter-spacing:0.629760pt;}
.ls11{letter-spacing:0.633600pt;}
.lsf{letter-spacing:0.635008pt;}
.ls1d{letter-spacing:0.637824pt;}
.ls71{letter-spacing:0.638464pt;}
.ls4{letter-spacing:0.640000pt;}
.ls1f{letter-spacing:0.640256pt;}
.ls0{letter-spacing:0.642048pt;}
.ls4b{letter-spacing:0.645504pt;}
.lsa8{letter-spacing:0.646272pt;}
.ls29{letter-spacing:0.650752pt;}
.ls27{letter-spacing:0.653568pt;}
.ls3c{letter-spacing:0.656000pt;}
.ls26{letter-spacing:0.658304pt;}
.ls2c{letter-spacing:0.661248pt;}
.ls3e{letter-spacing:0.666496pt;}
.ls24{letter-spacing:0.667776pt;}
.ls67{letter-spacing:0.671744pt;}
.ls69{letter-spacing:0.676992pt;}
.ls22{letter-spacing:0.677248pt;}
.ls28{letter-spacing:0.681984pt;}
.ls66{letter-spacing:0.682240pt;}
.ls23{letter-spacing:0.686720pt;}
.ls54{letter-spacing:0.687488pt;}
.ls25{letter-spacing:0.691456pt;}
.ls33{letter-spacing:0.697984pt;}
.ls20{letter-spacing:0.703232pt;}
.ls7f{letter-spacing:0.708480pt;}
.ls6d{letter-spacing:0.724224pt;}
.ls4e{letter-spacing:0.745216pt;}
.ls65{letter-spacing:0.776704pt;}
.ls73{letter-spacing:0.944640pt;}
.lsa7{letter-spacing:0.958848pt;}
.ls55{letter-spacing:0.960384pt;}
.ls8{letter-spacing:0.961408pt;}
.ls2f{letter-spacing:0.986624pt;}
.ls77{letter-spacing:1.007616pt;}
.ls64{letter-spacing:1.028608pt;}
.ls74{letter-spacing:1.222784pt;}
.lsc{letter-spacing:3.521408pt;}
.lsb{letter-spacing:4.565760pt;}
.ls5f{letter-spacing:6.077184pt;}
.ls72{letter-spacing:6.082432pt;}
.lse{letter-spacing:7.357696pt;}
.ls3d{letter-spacing:8.638208pt;}
.ls86{letter-spacing:13.858944pt;}
.ls8c{letter-spacing:68.800512pt;}
.ws134{word-spacing:-52.480000pt;}
.ws191{word-spacing:-42.240000pt;}
.ws133{word-spacing:-34.560000pt;}
.wsef{word-spacing:-13.791744pt;}
.ws3{word-spacing:-13.760256pt;}
.ws5d{word-spacing:-13.734016pt;}
.ws1{word-spacing:-13.723520pt;}
.ws15e{word-spacing:-13.618560pt;}
.wsf1{word-spacing:-12.962560pt;}
.ws136{word-spacing:-12.868096pt;}
.ws2{word-spacing:-12.805120pt;}
.wsf0{word-spacing:-12.621440pt;}
.ws5c{word-spacing:-11.202048pt;}
.ws18b{word-spacing:-11.172480pt;}
.ws1fa{word-spacing:-11.155584pt;}
.ws18d{word-spacing:-11.142912pt;}
.ws18c{word-spacing:-10.885248pt;}
.ws18f{word-spacing:-10.847232pt;}
.ws1f8{word-spacing:-10.843008pt;}
.ws18a{word-spacing:-10.775424pt;}
.ws18e{word-spacing:-10.771200pt;}
.ws193{word-spacing:-10.762752pt;}
.ws192{word-spacing:-10.560000pt;}
.ws5b{word-spacing:-10.357248pt;}
.ws1f9{word-spacing:-10.344576pt;}
.ws190{word-spacing:-10.331904pt;}
.ws15f{word-spacing:-10.315008pt;}
.ws0{word-spacing:-10.238976pt;}
.ws135{word-spacing:-8.650368pt;}
.ws107{word-spacing:-1.348736pt;}
.wsb6{word-spacing:-1.280512pt;}
.ws8b{word-spacing:-1.065344pt;}
.ws11{word-spacing:-1.023360pt;}
.ws22{word-spacing:-1.004032pt;}
.ws10e{word-spacing:-1.002368pt;}
.ws18{word-spacing:-0.994560pt;}
.ws79{word-spacing:-0.986624pt;}
.ws8a{word-spacing:-0.981376pt;}
.ws14e{word-spacing:-0.976128pt;}
.ws64{word-spacing:-0.970880pt;}
.ws214{word-spacing:-0.967296pt;}
.ws156{word-spacing:-0.965632pt;}
.ws7{word-spacing:-0.963072pt;}
.ws10{word-spacing:-0.960384pt;}
.ws9{word-spacing:-0.958848pt;}
.wsed{word-spacing:-0.955136pt;}
.ws40{word-spacing:-0.954624pt;}
.ws13{word-spacing:-0.949888pt;}
.ws1bb{word-spacing:-0.946176pt;}
.ws139{word-spacing:-0.944640pt;}
.ws3f{word-spacing:-0.941952pt;}
.ws24{word-spacing:-0.939392pt;}
.ws1f0{word-spacing:-0.937728pt;}
.wsa5{word-spacing:-0.934144pt;}
.ws1c0{word-spacing:-0.933504pt;}
.ws21d{word-spacing:-0.929280pt;}
.ws75{word-spacing:-0.928896pt;}
.ws1cd{word-spacing:-0.925056pt;}
.ws12{word-spacing:-0.923648pt;}
.ws22f{word-spacing:-0.920832pt;}
.ws166{word-spacing:-0.918400pt;}
.ws1ee{word-spacing:-0.916608pt;}
.ws98{word-spacing:-0.913152pt;}
.wsab{word-spacing:-0.912384pt;}
.ws1cf{word-spacing:-0.908160pt;}
.wsea{word-spacing:-0.907904pt;}
.ws201{word-spacing:-0.903936pt;}
.ws44{word-spacing:-0.902656pt;}
.ws1ae{word-spacing:-0.895488pt;}
.ws78{word-spacing:-0.886912pt;}
.ws12f{word-spacing:-0.876416pt;}
.ws187{word-spacing:-0.874368pt;}
.ws23f{word-spacing:-0.870144pt;}
.ws171{word-spacing:-0.865920pt;}
.ws5e{word-spacing:-0.857472pt;}
.ws25{word-spacing:-0.850176pt;}
.ws165{word-spacing:-0.844928pt;}
.ws95{word-spacing:-0.839680pt;}
.ws11a{word-spacing:-0.829184pt;}
.ws16e{word-spacing:-0.823936pt;}
.wse9{word-spacing:-0.818688pt;}
.ws240{word-spacing:-0.806784pt;}
.wsa9{word-spacing:-0.739968pt;}
.wsaa{word-spacing:-0.692736pt;}
.ws236{word-spacing:-0.587136pt;}
.ws196{word-spacing:-0.561792pt;}
.ws237{word-spacing:-0.473088pt;}
.wse{word-spacing:-0.448000pt;}
.ws19a{word-spacing:-0.316800pt;}
.ws1e1{word-spacing:-0.304128pt;}
.ws241{word-spacing:-0.270336pt;}
.ws23e{word-spacing:-0.135168pt;}
.ws219{word-spacing:-0.109824pt;}
.ws41{word-spacing:-0.097152pt;}
.ws225{word-spacing:-0.092928pt;}
.ws235{word-spacing:-0.088704pt;}
.ws60{word-spacing:-0.071808pt;}
.wsa{word-spacing:-0.070400pt;}
.ws178{word-spacing:-0.052480pt;}
.ws159{word-spacing:-0.047232pt;}
.ws10d{word-spacing:-0.020992pt;}
.ws5{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.004224pt;}
.ws7d{word-spacing:0.015744pt;}
.ws83{word-spacing:0.020992pt;}
.ws155{word-spacing:0.026240pt;}
.ws144{word-spacing:0.031488pt;}
.wsc3{word-spacing:0.052480pt;}
.ws34{word-spacing:0.104960pt;}
.wsd0{word-spacing:0.110208pt;}
.wse7{word-spacing:0.115456pt;}
.ws19{word-spacing:0.269952pt;}
.ws15{word-spacing:0.274688pt;}
.ws14{word-spacing:0.284160pt;}
.wsda{word-spacing:0.299136pt;}
.ws53{word-spacing:0.304384pt;}
.wsf8{word-spacing:0.309632pt;}
.wscf{word-spacing:0.314880pt;}
.wsd9{word-spacing:0.320128pt;}
.ws12b{word-spacing:0.325376pt;}
.ws9f{word-spacing:0.330624pt;}
.ws215{word-spacing:0.333696pt;}
.ws6c{word-spacing:0.335872pt;}
.ws9a{word-spacing:0.341120pt;}
.ws22c{word-spacing:0.342144pt;}
.wsbb{word-spacing:0.346368pt;}
.wsdd{word-spacing:0.351616pt;}
.ws1a4{word-spacing:0.354816pt;}
.wse0{word-spacing:0.356864pt;}
.ws19b{word-spacing:0.359040pt;}
.ws9b{word-spacing:0.362112pt;}
.ws211{word-spacing:0.363264pt;}
.wsee{word-spacing:0.367360pt;}
.ws1d1{word-spacing:0.371712pt;}
.ws30{word-spacing:0.372608pt;}
.ws1c3{word-spacing:0.380160pt;}
.ws49{word-spacing:0.383104pt;}
.ws194{word-spacing:0.388608pt;}
.ws1c8{word-spacing:0.397056pt;}
.ws12c{word-spacing:0.398848pt;}
.ws182{word-spacing:0.401280pt;}
.ws1ca{word-spacing:0.405504pt;}
.ws1bd{word-spacing:0.409728pt;}
.ws1d9{word-spacing:0.418176pt;}
.ws226{word-spacing:0.422400pt;}
.ws1bc{word-spacing:0.451968pt;}
.ws6{word-spacing:0.460416pt;}
.ws6f{word-spacing:0.477568pt;}
.wsd{word-spacing:0.550400pt;}
.wsf{word-spacing:0.569600pt;}
.wsc{word-spacing:0.642048pt;}
.ws20d{word-spacing:0.743424pt;}
.ws99{word-spacing:0.839680pt;}
.ws1be{word-spacing:1.174272pt;}
.ws20e{word-spacing:1.178496pt;}
.ws1f6{word-spacing:1.186944pt;}
.ws222{word-spacing:1.191168pt;}
.ws16d{word-spacing:1.280512pt;}
.ws71{word-spacing:1.338240pt;}
.wsc0{word-spacing:1.364480pt;}
.ws76{word-spacing:1.374976pt;}
.ws6b{word-spacing:1.385472pt;}
.ws7e{word-spacing:1.448448pt;}
.ws20{word-spacing:1.558144pt;}
.ws1a{word-spacing:1.572352pt;}
.ws89{word-spacing:1.574400pt;}
.ws177{word-spacing:1.584896pt;}
.ws1f{word-spacing:1.586560pt;}
.ws87{word-spacing:1.590144pt;}
.ws9c{word-spacing:1.595392pt;}
.ws91{word-spacing:1.600640pt;}
.ws68{word-spacing:1.605888pt;}
.ws38{word-spacing:1.611136pt;}
.ws46{word-spacing:1.616384pt;}
.wsd2{word-spacing:1.621632pt;}
.ws1c5{word-spacing:1.622016pt;}
.ws8c{word-spacing:1.626880pt;}
.ws6e{word-spacing:1.632128pt;}
.ws45{word-spacing:1.637376pt;}
.ws72{word-spacing:1.642624pt;}
.ws221{word-spacing:1.643136pt;}
.ws170{word-spacing:1.647872pt;}
.ws1ef{word-spacing:1.651584pt;}
.ws93{word-spacing:1.653120pt;}
.ws183{word-spacing:1.655808pt;}
.wsa2{word-spacing:1.658368pt;}
.wsb9{word-spacing:1.663616pt;}
.ws212{word-spacing:1.668480pt;}
.ws1ec{word-spacing:1.672704pt;}
.wse6{word-spacing:1.684608pt;}
.ws1f4{word-spacing:1.685376pt;}
.ws21f{word-spacing:1.689600pt;}
.ws1db{word-spacing:1.693824pt;}
.ws227{word-spacing:1.702272pt;}
.ws186{word-spacing:1.706496pt;}
.ws1a3{word-spacing:1.731840pt;}
.ws220{word-spacing:2.027520pt;}
.ws21e{word-spacing:2.196480pt;}
.ws1b5{word-spacing:2.238720pt;}
.ws23c{word-spacing:2.247168pt;}
.ws188{word-spacing:2.454144pt;}
.ws1e0{word-spacing:2.487936pt;}
.ws2c{word-spacing:2.534784pt;}
.wsdb{word-spacing:2.582016pt;}
.ws16f{word-spacing:2.618752pt;}
.ws7c{word-spacing:2.660736pt;}
.ws21{word-spacing:2.841600pt;}
.ws1b{word-spacing:2.846336pt;}
.ws16{word-spacing:2.851072pt;}
.wsf9{word-spacing:2.854912pt;}
.ws2a{word-spacing:2.860160pt;}
.ws1c{word-spacing:2.860544pt;}
.wsc6{word-spacing:2.870656pt;}
.wsa1{word-spacing:2.875904pt;}
.ws1fe{word-spacing:2.876544pt;}
.ws1d5{word-spacing:2.880768pt;}
.ws62{word-spacing:2.881152pt;}
.ws1d6{word-spacing:2.884992pt;}
.wsb0{word-spacing:2.886400pt;}
.ws8e{word-spacing:2.891648pt;}
.ws50{word-spacing:2.896896pt;}
.ws1aa{word-spacing:2.901888pt;}
.ws131{word-spacing:2.902144pt;}
.ws108{word-spacing:2.907392pt;}
.ws1f2{word-spacing:2.910336pt;}
.ws47{word-spacing:2.912640pt;}
.ws94{word-spacing:2.917888pt;}
.ws19e{word-spacing:2.918784pt;}
.ws1e5{word-spacing:2.923008pt;}
.ws109{word-spacing:2.923136pt;}
.ws23d{word-spacing:2.927232pt;}
.ws2b{word-spacing:2.928384pt;}
.ws19d{word-spacing:2.931456pt;}
.wsa4{word-spacing:2.933632pt;}
.ws36{word-spacing:2.938880pt;}
.ws230{word-spacing:2.939904pt;}
.ws111{word-spacing:2.944128pt;}
.wsb1{word-spacing:2.949376pt;}
.ws4f{word-spacing:2.954624pt;}
.wsa7{word-spacing:2.959872pt;}
.ws1b8{word-spacing:2.961024pt;}
.ws1d0{word-spacing:2.965248pt;}
.ws1bf{word-spacing:2.969472pt;}
.ws129{word-spacing:2.970368pt;}
.ws1a7{word-spacing:2.973696pt;}
.ws1ff{word-spacing:2.994816pt;}
.ws1eb{word-spacing:3.028608pt;}
.ws1b6{word-spacing:3.307392pt;}
.ws128{word-spacing:3.379712pt;}
.ws1d4{word-spacing:3.480576pt;}
.ws1f1{word-spacing:3.729792pt;}
.ws1b7{word-spacing:3.734016pt;}
.ws1e4{word-spacing:3.738240pt;}
.ws88{word-spacing:3.810048pt;}
.ws85{word-spacing:3.857280pt;}
.ws12d{word-spacing:3.873024pt;}
.wse1{word-spacing:3.878272pt;}
.ws4e{word-spacing:3.883520pt;}
.ws11f{word-spacing:3.915008pt;}
.ws174{word-spacing:3.951744pt;}
.wse4{word-spacing:3.956992pt;}
.ws15a{word-spacing:4.103936pt;}
.ws1e{word-spacing:4.106112pt;}
.ws127{word-spacing:4.135424pt;}
.ws110{word-spacing:4.140672pt;}
.wseb{word-spacing:4.151168pt;}
.wsfe{word-spacing:4.156416pt;}
.wsaf{word-spacing:4.161664pt;}
.ws57{word-spacing:4.166912pt;}
.wsd6{word-spacing:4.172160pt;}
.wse5{word-spacing:4.177408pt;}
.ws52{word-spacing:4.182656pt;}
.ws10f{word-spacing:4.187904pt;}
.ws37{word-spacing:4.193152pt;}
.wsdf{word-spacing:4.198400pt;}
.ws21b{word-spacing:4.202880pt;}
.wsdc{word-spacing:4.203648pt;}
.ws228{word-spacing:4.207104pt;}
.wsd7{word-spacing:4.208896pt;}
.ws1a8{word-spacing:4.211328pt;}
.ws7b{word-spacing:4.214144pt;}
.ws20b{word-spacing:4.215552pt;}
.ws97{word-spacing:4.219392pt;}
.ws1dc{word-spacing:4.219776pt;}
.ws162{word-spacing:4.229888pt;}
.ws223{word-spacing:4.236672pt;}
.wsc4{word-spacing:4.240384pt;}
.ws51{word-spacing:4.245632pt;}
.ws229{word-spacing:4.249344pt;}
.ws22d{word-spacing:4.262016pt;}
.ws1c6{word-spacing:4.266240pt;}
.ws1ea{word-spacing:4.270464pt;}
.ws1c7{word-spacing:4.274688pt;}
.ws1da{word-spacing:4.735104pt;}
.ws22a{word-spacing:4.781568pt;}
.ws22e{word-spacing:4.806912pt;}
.ws153{word-spacing:4.859648pt;}
.ws1a9{word-spacing:5.013888pt;}
.ws195{word-spacing:5.018112pt;}
.ws1c2{word-spacing:5.022336pt;}
.ws1ce{word-spacing:5.026560pt;}
.wsf6{word-spacing:5.053824pt;}
.ws13c{word-spacing:5.116800pt;}
.wse3{word-spacing:5.127296pt;}
.wsc8{word-spacing:5.132544pt;}
.ws152{word-spacing:5.169280pt;}
.ws169{word-spacing:5.174528pt;}
.ws4d{word-spacing:5.185024pt;}
.ws120{word-spacing:5.195520pt;}
.ws67{word-spacing:5.216512pt;}
.ws54{word-spacing:5.227008pt;}
.ws126{word-spacing:5.300480pt;}
.wsf7{word-spacing:5.305728pt;}
.ws125{word-spacing:5.358208pt;}
.ws33{word-spacing:5.421184pt;}
.ws17f{word-spacing:5.431680pt;}
.ws101{word-spacing:5.436928pt;}
.wsf5{word-spacing:5.442176pt;}
.ws160{word-spacing:5.447424pt;}
.wsff{word-spacing:5.452672pt;}
.ws74{word-spacing:5.457920pt;}
.wsa0{word-spacing:5.463168pt;}
.wsfd{word-spacing:5.468416pt;}
.ws2d{word-spacing:5.473664pt;}
.ws112{word-spacing:5.478912pt;}
.ws1cb{word-spacing:5.482752pt;}
.ws151{word-spacing:5.484160pt;}
.ws1e3{word-spacing:5.486976pt;}
.ws96{word-spacing:5.489408pt;}
.ws4c{word-spacing:5.494656pt;}
.ws1d3{word-spacing:5.499648pt;}
.ws70{word-spacing:5.499904pt;}
.ws115{word-spacing:5.505152pt;}
.ws1b3{word-spacing:5.512320pt;}
.ws1b9{word-spacing:5.524992pt;}
.ws1f7{word-spacing:5.529216pt;}
.ws1a1{word-spacing:6.065664pt;}
.ws22b{word-spacing:6.086784pt;}
.ws1e9{word-spacing:6.095232pt;}
.ws1af{word-spacing:6.293760pt;}
.ws207{word-spacing:6.306432pt;}
.ws1a6{word-spacing:6.319104pt;}
.ws180{word-spacing:6.334336pt;}
.ws3b{word-spacing:6.381568pt;}
.ws86{word-spacing:6.392064pt;}
.ws14a{word-spacing:6.397312pt;}
.ws8d{word-spacing:6.413056pt;}
.ws163{word-spacing:6.428800pt;}
.ws150{word-spacing:6.460288pt;}
.ws15c{word-spacing:6.470784pt;}
.ws148{word-spacing:6.580992pt;}
.ws17{word-spacing:6.691968pt;}
.ws17d{word-spacing:6.701696pt;}
.ws26{word-spacing:6.706944pt;}
.ws80{word-spacing:6.712192pt;}
.ws130{word-spacing:6.717440pt;}
.wsc9{word-spacing:6.722688pt;}
.ws23{word-spacing:6.727936pt;}
.ws2e{word-spacing:6.733184pt;}
.ws3d{word-spacing:6.738432pt;}
.ws39{word-spacing:6.743680pt;}
.wsc7{word-spacing:6.748928pt;}
.ws213{word-spacing:6.749952pt;}
.ws173{word-spacing:6.754176pt;}
.wsc2{word-spacing:6.759424pt;}
.ws218{word-spacing:6.762624pt;}
.wsa8{word-spacing:6.764672pt;}
.ws1c1{word-spacing:6.766848pt;}
.ws9d{word-spacing:6.769920pt;}
.ws197{word-spacing:6.783744pt;}
.wsb8{word-spacing:6.785664pt;}
.ws189{word-spacing:6.792192pt;}
.ws210{word-spacing:6.804864pt;}
.wscd{word-spacing:6.811904pt;}
.ws216{word-spacing:6.830208pt;}
.ws123{word-spacing:7.383936pt;}
.ws185{word-spacing:7.573632pt;}
.ws1f5{word-spacing:7.586304pt;}
.ws145{word-spacing:7.609600pt;}
.ws2f{word-spacing:7.625344pt;}
.ws176{word-spacing:7.651584pt;}
.wsce{word-spacing:7.662080pt;}
.ws17b{word-spacing:7.704064pt;}
.ws3a{word-spacing:7.709312pt;}
.ws13e{word-spacing:7.725056pt;}
.ws149{word-spacing:7.735552pt;}
.ws116{word-spacing:7.756544pt;}
.ws179{word-spacing:7.929728pt;}
.wsca{word-spacing:7.976960pt;}
.wsc1{word-spacing:7.987456pt;}
.wsb2{word-spacing:7.992704pt;}
.ws104{word-spacing:7.997952pt;}
.ws10a{word-spacing:8.003200pt;}
.ws12a{word-spacing:8.008448pt;}
.ws1fc{word-spacing:8.008704pt;}
.ws1dd{word-spacing:8.012928pt;}
.wsde{word-spacing:8.018944pt;}
.ws6d{word-spacing:8.024192pt;}
.ws58{word-spacing:8.029440pt;}
.ws1c4{word-spacing:8.034048pt;}
.wsb4{word-spacing:8.034688pt;}
.ws1ad{word-spacing:8.038272pt;}
.wsbf{word-spacing:8.039936pt;}
.ws61{word-spacing:8.045184pt;}
.ws1fb{word-spacing:8.046720pt;}
.ws65{word-spacing:8.050432pt;}
.ws1a2{word-spacing:8.050944pt;}
.ws132{word-spacing:8.055680pt;}
.ws105{word-spacing:8.060928pt;}
.ws217{word-spacing:8.063616pt;}
.ws5a{word-spacing:8.066176pt;}
.ws1e2{word-spacing:8.067840pt;}
.ws146{word-spacing:8.071424pt;}
.ws224{word-spacing:8.076288pt;}
.ws27{word-spacing:8.076672pt;}
.wsd8{word-spacing:8.081920pt;}
.ws1fd{word-spacing:8.088960pt;}
.ws10b{word-spacing:8.155392pt;}
.ws233{word-spacing:8.587392pt;}
.ws1ed{word-spacing:8.853504pt;}
.ws66{word-spacing:8.890112pt;}
.ws13f{word-spacing:8.958336pt;}
.ws29{word-spacing:9.010816pt;}
.wsec{word-spacing:9.016064pt;}
.ws69{word-spacing:9.021312pt;}
.ws13d{word-spacing:9.241728pt;}
.ws118{word-spacing:9.252224pt;}
.ws35{word-spacing:9.257472pt;}
.ws16c{word-spacing:9.267968pt;}
.ws119{word-spacing:9.273216pt;}
.wsd5{word-spacing:9.278464pt;}
.ws56{word-spacing:9.283712pt;}
.ws55{word-spacing:9.288960pt;}
.wsf4{word-spacing:9.294208pt;}
.ws121{word-spacing:9.299456pt;}
.ws28{word-spacing:9.304704pt;}
.wsfb{word-spacing:9.309952pt;}
.wsbd{word-spacing:9.315200pt;}
.ws1b0{word-spacing:9.322368pt;}
.wsbe{word-spacing:9.325696pt;}
.ws63{word-spacing:9.330944pt;}
.wsa3{word-spacing:9.336192pt;}
.wsd4{word-spacing:9.341440pt;}
.ws21c{word-spacing:9.343488pt;}
.ws137{word-spacing:9.346688pt;}
.ws117{word-spacing:9.351936pt;}
.ws199{word-spacing:9.368832pt;}
.ws1df{word-spacing:9.385728pt;}
.ws208{word-spacing:10.129152pt;}
.ws1a5{word-spacing:10.146048pt;}
.wsb5{word-spacing:10.238848pt;}
.ws17c{word-spacing:10.558976pt;}
.wsb7{word-spacing:10.564224pt;}
.wscc{word-spacing:10.569472pt;}
.ws9e{word-spacing:10.574720pt;}
.wscb{word-spacing:10.579968pt;}
.ws114{word-spacing:10.585216pt;}
.ws90{word-spacing:10.590464pt;}
.ws157{word-spacing:10.595712pt;}
.ws1c9{word-spacing:10.598016pt;}
.ws164{word-spacing:10.600960pt;}
.wsf3{word-spacing:10.606208pt;}
.ws184{word-spacing:10.610688pt;}
.wsac{word-spacing:10.616704pt;}
.ws231{word-spacing:10.619136pt;}
.ws232{word-spacing:10.623360pt;}
.ws3e{word-spacing:10.644480pt;}
.wsb{word-spacing:10.855680pt;}
.ws1ba{word-spacing:11.159808pt;}
.ws20a{word-spacing:11.400576pt;}
.ws1d2{word-spacing:11.417472pt;}
.ws205{word-spacing:11.421696pt;}
.ws238{word-spacing:11.434368pt;}
.ws138{word-spacing:11.535104pt;}
.ws17e{word-spacing:11.577088pt;}
.ws10c{word-spacing:11.582336pt;}
.ws175{word-spacing:11.592832pt;}
.ws181{word-spacing:11.629568pt;}
.ws8f{word-spacing:11.697792pt;}
.ws1d{word-spacing:11.821056pt;}
.ws172{word-spacing:11.834240pt;}
.ws100{word-spacing:11.844736pt;}
.wsae{word-spacing:11.849984pt;}
.wse2{word-spacing:11.855232pt;}
.ws7a{word-spacing:11.860480pt;}
.ws6a{word-spacing:11.865728pt;}
.ws13b{word-spacing:11.876224pt;}
.ws141{word-spacing:11.881472pt;}
.ws48{word-spacing:11.891968pt;}
.ws200{word-spacing:11.903232pt;}
.ws17a{word-spacing:11.907712pt;}
.ws1a0{word-spacing:11.911680pt;}
.ws124{word-spacing:11.918208pt;}
.ws1e7{word-spacing:11.928576pt;}
.ws209{word-spacing:12.418560pt;}
.ws239{word-spacing:12.503040pt;}
.ws1f3{word-spacing:12.693120pt;}
.ws21a{word-spacing:12.697344pt;}
.ws1b4{word-spacing:12.710016pt;}
.wsba{word-spacing:12.815616pt;}
.ws77{word-spacing:13.104256pt;}
.ws23a{word-spacing:13.119744pt;}
.ws73{word-spacing:13.120000pt;}
.ws82{word-spacing:13.125248pt;}
.ws43{word-spacing:13.130496pt;}
.ws161{word-spacing:13.135744pt;}
.ws42{word-spacing:13.140992pt;}
.ws4a{word-spacing:13.146240pt;}
.ws59{word-spacing:13.151488pt;}
.ws16a{word-spacing:13.156736pt;}
.ws103{word-spacing:13.167232pt;}
.ws1b2{word-spacing:13.170432pt;}
.ws1ab{word-spacing:13.183104pt;}
.wsbc{word-spacing:13.188224pt;}
.ws13a{word-spacing:13.193472pt;}
.ws1ac{word-spacing:13.195776pt;}
.ws113{word-spacing:13.198720pt;}
.ws16b{word-spacing:14.111872pt;}
.wsd3{word-spacing:14.384768pt;}
.wsfa{word-spacing:14.405760pt;}
.wsb3{word-spacing:14.416256pt;}
.wsc5{word-spacing:14.421504pt;}
.ws15b{word-spacing:14.426752pt;}
.ws106{word-spacing:14.432000pt;}
.ws143{word-spacing:14.437248pt;}
.ws14c{word-spacing:14.442496pt;}
.ws1e8{word-spacing:14.492544pt;}
.ws1cc{word-spacing:14.509440pt;}
.wsf2{word-spacing:15.408128pt;}
.wsd1{word-spacing:15.691520pt;}
.ws14d{word-spacing:15.696768pt;}
.ws167{word-spacing:15.702016pt;}
.ws168{word-spacing:15.707264pt;}
.ws122{word-spacing:15.712512pt;}
.ws1d7{word-spacing:15.725952pt;}
.ws4b{word-spacing:15.728256pt;}
.wsfc{word-spacing:15.744000pt;}
.ws3c{word-spacing:16.966784pt;}
.ws142{word-spacing:16.977280pt;}
.ws92{word-spacing:16.982528pt;}
.wsad{word-spacing:17.003520pt;}
.ws102{word-spacing:17.014016pt;}
.wse8{word-spacing:17.082240pt;}
.ws19c{word-spacing:17.609856pt;}
.ws19f{word-spacing:17.816832pt;}
.ws32{word-spacing:18.184320pt;}
.ws154{word-spacing:18.221056pt;}
.ws202{word-spacing:18.247680pt;}
.ws14b{word-spacing:18.257792pt;}
.ws1de{word-spacing:18.285696pt;}
.ws203{word-spacing:18.332160pt;}
.ws204{word-spacing:19.113600pt;}
.ws12e{word-spacing:19.197184pt;}
.ws31{word-spacing:19.260160pt;}
.ws81{word-spacing:19.512064pt;}
.ws15d{word-spacing:19.543552pt;}
.ws140{word-spacing:19.559296pt;}
.ws7f{word-spacing:20.472448pt;}
.ws11b{word-spacing:20.761088pt;}
.wsa6{word-spacing:20.824064pt;}
.ws84{word-spacing:20.855552pt;}
.ws234{word-spacing:20.870784pt;}
.ws1b1{word-spacing:22.463232pt;}
.ws1e6{word-spacing:22.936320pt;}
.ws147{word-spacing:24.681344pt;}
.ws11c{word-spacing:28.496640pt;}
.ws11e{word-spacing:28.538624pt;}
.ws11d{word-spacing:29.383552pt;}
.ws23b{word-spacing:31.122432pt;}
.ws158{word-spacing:33.623936pt;}
.ws198{word-spacing:40.047744pt;}
.ws206{word-spacing:47.701632pt;}
.ws14f{word-spacing:61.852928pt;}
.ws20c{word-spacing:79.711104pt;}
.ws1d8{word-spacing:107.416320pt;}
.ws20f{word-spacing:118.453632pt;}
.ws8{word-spacing:875.837952pt;}
.ws4{word-spacing:912.523392pt;}
._19{margin-left:-55.916032pt;}
._2d{margin-left:-21.762048pt;}
._9{margin-left:-7.557120pt;}
._2c{margin-left:-5.119488pt;}
._1e{margin-left:-2.872320pt;}
._1{margin-left:-1.964160pt;}
._0{margin-left:-1.013760pt;}
._2{width:0.920832pt;}
._5{width:1.943040pt;}
._7{width:3.044224pt;}
._18{width:5.248768pt;}
._30{width:7.041408pt;}
._13{width:9.971584pt;}
._2f{width:38.886144pt;}
._12{width:40.960640pt;}
._11{width:42.241152pt;}
._1a{width:47.357952pt;}
._f{width:48.638464pt;}
._10{width:49.918976pt;}
._16{width:51.199488pt;}
._8{width:52.480000pt;}
._17{width:53.760512pt;}
._6{width:55.041024pt;}
._e{width:56.316288pt;}
._b{width:57.596800pt;}
._d{width:58.877312pt;}
._a{width:60.157824pt;}
._14{width:61.438336pt;}
._26{width:63.153024pt;}
._27{width:64.872192pt;}
._2a{width:66.012672pt;}
._29{width:66.988416pt;}
._28{width:68.661120pt;}
._2b{width:69.556608pt;}
._22{width:73.620096pt;}
._23{width:78.046848pt;}
._20{width:80.674176pt;}
._1c{width:83.592960pt;}
._1f{width:86.165376pt;}
._24{width:87.466368pt;}
._1d{width:88.712448pt;}
._1b{width:89.607936pt;}
._4{width:101.697024pt;}
._2e{width:127.961856pt;}
._25{width:151.802112pt;}
._21{width:158.906880pt;}
._31{width:655.754880pt;}
._32{width:693.285120pt;}
._15{width:823.266048pt;}
._3{width:1057.279872pt;}
._c{width:1502.261376pt;}
.fs7{font-size:10.240000pt;}
.fs6{font-size:20.480000pt;}
.fs3{font-size:34.560000pt;}
.fs0{font-size:42.240000pt;}
.fs5{font-size:47.360000pt;}
.fs4{font-size:52.480000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:84.480000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:0.040000pt;}
.y3{bottom:56.960485pt;}
.y195{bottom:60.790976pt;}
.y15d{bottom:60.809344pt;}
.yf1{bottom:62.068645pt;}
.y232{bottom:64.950016pt;}
.y86{bottom:66.230528pt;}
.ybd{bottom:70.051072pt;}
.y129{bottom:70.077093pt;}
.y201{bottom:70.077189pt;}
.y2b8{bottom:70.730816pt;}
.y2{bottom:71.040133pt;}
.y194{bottom:75.511616pt;}
.y15c{bottom:75.528672pt;}
.y1c7{bottom:76.170240pt;}
.yf0{bottom:76.789285pt;}
.y26c{bottom:78.721285pt;}
.y231{bottom:79.670656pt;}
.y85{bottom:80.951168pt;}
.y2b7{bottom:82.890656pt;}
.ybc{bottom:84.771712pt;}
.y200{bottom:84.796517pt;}
.y128{bottom:84.797733pt;}
.y52{bottom:86.710565pt;}
.y193{bottom:90.232256pt;}
.y15b{bottom:90.248000pt;}
.y26b{bottom:90.881125pt;}
.y1c6{bottom:90.889568pt;}
.yef{bottom:91.509925pt;}
.y230{bottom:94.071168pt;}
.y302{bottom:94.729376pt;}
.y2b6{bottom:94.730528pt;}
.y36{bottom:95.640133pt;}
.y84{bottom:95.671808pt;}
.y37{bottom:95.680133pt;}
.y34{bottom:95.680485pt;}
.ybb{bottom:99.492352pt;}
.y1ff{bottom:99.515845pt;}
.y127{bottom:99.518373pt;}
.y51{bottom:101.111077pt;}
.y26a{bottom:102.720997pt;}
.y192{bottom:104.952896pt;}
.y15a{bottom:104.967328pt;}
.y1c5{bottom:105.929024pt;}
.yee{bottom:106.230565pt;}
.y301{bottom:106.889216pt;}
.y2b5{bottom:106.890368pt;}
.y33{bottom:107.840325pt;}
.y83{bottom:110.072320pt;}
.yba{bottom:114.212992pt;}
.y1fe{bottom:114.235173pt;}
.y126{bottom:114.239013pt;}
.y269{bottom:114.880837pt;}
.y50{bottom:115.831717pt;}
.y22f{bottom:116.791072pt;}
.y300{bottom:118.729088pt;}
.y2b4{bottom:118.730240pt;}
.y191{bottom:119.673536pt;}
.y159{bottom:119.687968pt;}
.y32{bottom:120.320133pt;}
.yed{bottom:120.951205pt;}
.y1c4{bottom:120.968480pt;}
.y82{bottom:124.792960pt;}
.y268{bottom:126.720709pt;}
.y1fd{bottom:128.954501pt;}
.y31{bottom:130.240133pt;}
.y4f{bottom:130.552357pt;}
.y2ff{bottom:130.888928pt;}
.y2b3{bottom:130.890080pt;}
.y383{bottom:132.160261pt;}
.y190{bottom:134.074048pt;}
.y158{bottom:134.088480pt;}
.yec{bottom:135.671845pt;}
.y125{bottom:135.678405pt;}
.y1c3{bottom:136.007936pt;}
.yb9{bottom:136.932896pt;}
.y267{bottom:138.880549pt;}
.y81{bottom:139.513600pt;}
.y2fe{bottom:142.728800pt;}
.y2b2{bottom:142.729952pt;}
.y30{bottom:143.995904pt;}
.y382{bottom:144.000133pt;}
.y22e{bottom:144.950528pt;}
.y4e{bottom:145.272997pt;}
.y18f{bottom:148.794688pt;}
.yeb{bottom:150.072357pt;}
.y1fc{bottom:150.075077pt;}
.y124{bottom:150.078917pt;}
.y266{bottom:150.720421pt;}
.y1c2{bottom:151.047392pt;}
.y2fd{bottom:154.888640pt;}
.y2b1{bottom:154.889792pt;}
.y157{bottom:155.527872pt;}
.y2f{bottom:158.716544pt;}
.yb8{bottom:159.332672pt;}
.y22d{bottom:159.671168pt;}
.y381{bottom:159.680133pt;}
.y4d{bottom:159.993637pt;}
.y80{bottom:162.233504pt;}
.y265{bottom:162.880261pt;}
.y18e{bottom:163.515328pt;}
.y380{bottom:164.480133pt;}
.yea{bottom:164.792997pt;}
.y1fb{bottom:164.795717pt;}
.y123{bottom:164.799557pt;}
.y1c1{bottom:166.086848pt;}
.y2fc{bottom:166.728512pt;}
.y2b0{bottom:166.729664pt;}
.y156{bottom:170.248512pt;}
.y2e{bottom:173.117056pt;}
.y22c{bottom:174.071680pt;}
.y4c{bottom:174.714277pt;}
.y264{bottom:174.720133pt;}
.y18d{bottom:178.235968pt;}
.y2fb{bottom:178.888352pt;}
.y2af{bottom:178.889504pt;}
.ye9{bottom:179.513637pt;}
.y1fa{bottom:179.516357pt;}
.y122{bottom:179.520197pt;}
.y1c0{bottom:181.126304pt;}
.y37f{bottom:184.000133pt;}
.y155{bottom:184.969152pt;}
.yb7{bottom:187.492128pt;}
.y2d{bottom:187.837696pt;}
.y22b{bottom:188.792320pt;}
.y7f{bottom:190.074144pt;}
.y2fa{bottom:190.728224pt;}
.y2ae{bottom:190.729376pt;}
.y18c{bottom:192.956608pt;}
.ye8{bottom:194.234277pt;}
.y1f9{bottom:194.236997pt;}
.y121{bottom:194.240837pt;}
.y263{bottom:195.508448pt;}
.y4b{bottom:195.834853pt;}
.y1bf{bottom:196.165760pt;}
.y37e{bottom:198.080133pt;}
.y154{bottom:199.689792pt;}
.yb6{bottom:202.212768pt;}
.y2c{bottom:202.558336pt;}
.y2f9{bottom:202.888064pt;}
.y2ad{bottom:202.889216pt;}
.y22a{bottom:203.512960pt;}
.y7e{bottom:204.794784pt;}
.ye7{bottom:208.954917pt;}
.y1f8{bottom:208.957637pt;}
.y37d{bottom:208.960133pt;}
.y4a{bottom:210.555493pt;}
.y1be{bottom:211.205216pt;}
.y18b{bottom:214.077184pt;}
.y153{bottom:214.090304pt;}
.y2f8{bottom:214.727936pt;}
.y2ac{bottom:214.729088pt;}
.y120{bottom:216.640613pt;}
.yb5{bottom:216.933408pt;}
.y2b{bottom:217.278976pt;}
.y229{bottom:218.233600pt;}
.y262{bottom:223.667904pt;}
.y37c{bottom:224.960133pt;}
.y49{bottom:225.276133pt;}
.y1bd{bottom:226.244672pt;}
.y2f7{bottom:226.887776pt;}
.y2ab{bottom:226.888928pt;}
.y7d{bottom:227.514688pt;}
.y18a{bottom:228.797824pt;}
.y152{bottom:228.810944pt;}
.ye6{bottom:230.075493pt;}
.y1f7{bottom:230.078213pt;}
.yb4{bottom:231.654048pt;}
.y2a{bottom:231.999616pt;}
.y228{bottom:232.954240pt;}
.y261{bottom:238.068416pt;}
.y2f6{bottom:238.727648pt;}
.y340{bottom:238.728416pt;}
.y2aa{bottom:238.728800pt;}
.y48{bottom:239.996773pt;}
.y1bc{bottom:241.284128pt;}
.y189{bottom:243.518464pt;}
.y151{bottom:243.530272pt;}
.ye5{bottom:244.796133pt;}
.y1f6{bottom:244.798853pt;}
.y11f{bottom:244.800069pt;}
.yb3{bottom:246.054560pt;}
.y29{bottom:246.720256pt;}
.y227{bottom:247.674880pt;}
.y2f5{bottom:250.887488pt;}
.y33f{bottom:250.888256pt;}
.y2a9{bottom:250.888640pt;}
.y260{bottom:252.789056pt;}
.y47{bottom:254.717413pt;}
.y7c{bottom:255.674144pt;}
.y188{bottom:258.239104pt;}
.y150{bottom:258.249600pt;}
.ye4{bottom:259.516773pt;}
.y1f5{bottom:259.519493pt;}
.y11e{bottom:259.520709pt;}
.yb2{bottom:260.775200pt;}
.y28{bottom:261.120768pt;}
.y226{bottom:262.075392pt;}
.y2f4{bottom:262.727360pt;}
.y33e{bottom:262.728128pt;}
.y2a8{bottom:262.728512pt;}
.y1bb{bottom:263.363776pt;}
.y25f{bottom:267.509696pt;}
.y46{bottom:269.117925pt;}
.y7b{bottom:270.074656pt;}
.y187{bottom:272.959744pt;}
.y14f{bottom:272.968928pt;}
.ye3{bottom:274.237413pt;}
.y1f4{bottom:274.242816pt;}
.y37b{bottom:274.886752pt;}
.y2f3{bottom:274.887200pt;}
.y33d{bottom:274.887968pt;}
.y2a7{bottom:274.888352pt;}
.yb1{bottom:275.495840pt;}
.y27{bottom:275.841408pt;}
.y225{bottom:276.794720pt;}
.y1ba{bottom:278.084416pt;}
.y25e{bottom:282.230336pt;}
.y45{bottom:283.838565pt;}
.y7a{bottom:284.795296pt;}
.y37a{bottom:286.726624pt;}
.y2f2{bottom:286.727072pt;}
.y33c{bottom:286.727840pt;}
.y2a6{bottom:286.728224pt;}
.y11d{bottom:287.680165pt;}
.y186{bottom:287.680384pt;}
.ye2{bottom:288.958053pt;}
.y1f3{bottom:288.963456pt;}
.yb0{bottom:290.216480pt;}
.y224{bottom:291.514048pt;}
.y1b9{bottom:293.444000pt;}
.y14e{bottom:295.688832pt;}
.y26{bottom:297.280800pt;}
.y44{bottom:298.559205pt;}
.y379{bottom:298.886464pt;}
.y2f1{bottom:298.886912pt;}
.y33b{bottom:298.887680pt;}
.y2a5{bottom:298.888064pt;}
.y11c{bottom:302.080677pt;}
.y185{bottom:302.080896pt;}
.ye1{bottom:303.678693pt;}
.y1f2{bottom:303.684096pt;}
.yaf{bottom:304.937120pt;}
.y25d{bottom:304.950240pt;}
.y223{bottom:306.233376pt;}
.y79{bottom:307.515200pt;}
.y1b8{bottom:308.483456pt;}
.y378{bottom:310.726336pt;}
.y2f0{bottom:310.726784pt;}
.y33a{bottom:310.727552pt;}
.y2a4{bottom:310.727936pt;}
.y25{bottom:312.000128pt;}
.y43{bottom:313.279845pt;}
.y11b{bottom:316.800005pt;}
.y184{bottom:316.801536pt;}
.y14d{bottom:316.809408pt;}
.ye0{bottom:318.079205pt;}
.yae{bottom:319.657760pt;}
.y222{bottom:320.952704pt;}
.y377{bottom:322.886176pt;}
.y2ef{bottom:322.886624pt;}
.y339{bottom:322.887392pt;}
.y2a3{bottom:322.887776pt;}
.y1b7{bottom:323.522912pt;}
.y1f1{bottom:324.804672pt;}
.y24{bottom:326.720768pt;}
.y42{bottom:328.000485pt;}
.y11a{bottom:331.519333pt;}
.y183{bottom:331.522176pt;}
.y14c{bottom:331.528736pt;}
.y25c{bottom:332.790880pt;}
.ydf{bottom:332.799845pt;}
.yad{bottom:334.058272pt;}
.y376{bottom:334.726048pt;}
.y2ee{bottom:334.726496pt;}
.y338{bottom:334.727264pt;}
.y2a2{bottom:334.727648pt;}
.y78{bottom:335.674656pt;}
.y1b6{bottom:338.562368pt;}
.y1f0{bottom:339.524000pt;}
.y23{bottom:341.121280pt;}
.y221{bottom:342.073280pt;}
.y41{bottom:342.721125pt;}
.y119{bottom:346.238661pt;}
.y182{bottom:346.242816pt;}
.y14b{bottom:346.248064pt;}
.y375{bottom:346.885888pt;}
.y2ed{bottom:346.886336pt;}
.y337{bottom:346.887104pt;}
.y2a1{bottom:346.887488pt;}
.y25b{bottom:347.510208pt;}
.yde{bottom:347.520485pt;}
.yac{bottom:348.777600pt;}
.y77{bottom:350.075168pt;}
.y1b5{bottom:353.601824pt;}
.y1ef{bottom:354.243328pt;}
.y22{bottom:355.841920pt;}
.y220{bottom:356.792608pt;}
.y40{bottom:357.121637pt;}
.y374{bottom:358.725760pt;}
.y2ec{bottom:358.726208pt;}
.y336{bottom:358.726976pt;}
.y2a0{bottom:358.727360pt;}
.y118{bottom:360.957989pt;}
.y181{bottom:360.963456pt;}
.y14a{bottom:360.967392pt;}
.y25a{bottom:362.229536pt;}
.ydd{bottom:362.241125pt;}
.yab{bottom:363.496928pt;}
.y76{bottom:364.794496pt;}
.y1ee{bottom:368.962656pt;}
.y21{bottom:370.562560pt;}
.y373{bottom:370.885600pt;}
.y2eb{bottom:370.886048pt;}
.y335{bottom:370.886816pt;}
.y29f{bottom:370.887200pt;}
.y21f{bottom:371.511936pt;}
.y3f{bottom:371.840965pt;}
.y117{bottom:375.677317pt;}
.y1b4{bottom:375.681472pt;}
.y149{bottom:375.686720pt;}
.y259{bottom:376.948864pt;}
.ydc{bottom:376.961765pt;}
.y372{bottom:382.725472pt;}
.y2ea{bottom:382.725920pt;}
.y334{bottom:382.726688pt;}
.y29e{bottom:382.727072pt;}
.y1ed{bottom:383.681984pt;}
.y180{bottom:383.683360pt;}
.yaa{bottom:384.937632pt;}
.y20{bottom:385.283200pt;}
.y21e{bottom:386.231264pt;}
.y3e{bottom:386.560293pt;}
.y75{bottom:387.514400pt;}
.y116{bottom:390.077829pt;}
.y1b3{bottom:390.081984pt;}
.y148{bottom:390.087232pt;}
.y258{bottom:391.668192pt;}
.y371{bottom:394.885312pt;}
.y2e9{bottom:394.885760pt;}
.y333{bottom:394.886528pt;}
.y29d{bottom:394.886912pt;}
.ydb{bottom:398.082341pt;}
.y1ec{bottom:398.082496pt;}
.y17f{bottom:398.083872pt;}
.ya9{bottom:399.656960pt;}
.y1f{bottom:400.002528pt;}
.y21d{bottom:400.950592pt;}
.y3d{bottom:401.279621pt;}
.y115{bottom:404.797157pt;}
.y1b2{bottom:404.801312pt;}
.y147{bottom:404.806560pt;}
.y257{bottom:406.068704pt;}
.y370{bottom:406.725184pt;}
.y2e8{bottom:406.725632pt;}
.y332{bottom:406.726400pt;}
.y29c{bottom:406.726784pt;}
.yda{bottom:412.801669pt;}
.y1eb{bottom:412.801824pt;}
.ya8{bottom:414.057472pt;}
.y1e{bottom:414.721856pt;}
.y21c{bottom:415.669920pt;}
.y74{bottom:415.673856pt;}
.y3c{bottom:415.998949pt;}
.y36f{bottom:418.885024pt;}
.y2e7{bottom:418.885472pt;}
.y331{bottom:418.886240pt;}
.y29b{bottom:418.886624pt;}
.y114{bottom:419.516485pt;}
.y1b1{bottom:419.520640pt;}
.y17e{bottom:419.523264pt;}
.y146{bottom:419.525888pt;}
.y256{bottom:420.788032pt;}
.yd9{bottom:427.520997pt;}
.ya7{bottom:428.778112pt;}
.y1d{bottom:429.122368pt;}
.y21b{bottom:430.070432pt;}
.y73{bottom:430.074368pt;}
.y3b{bottom:430.718277pt;}
.y36e{bottom:430.724896pt;}
.y2e6{bottom:430.725344pt;}
.y330{bottom:430.726112pt;}
.y29a{bottom:430.726496pt;}
.y113{bottom:434.235813pt;}
.y1b0{bottom:434.239968pt;}
.y17d{bottom:434.243904pt;}
.y145{bottom:434.245216pt;}
.y255{bottom:435.507360pt;}
.y1ea{bottom:435.521728pt;}
.yd8{bottom:442.240325pt;}
.y36d{bottom:442.884736pt;}
.y2e5{bottom:442.885184pt;}
.y32f{bottom:442.885952pt;}
.y299{bottom:442.886336pt;}
.ya6{bottom:443.498752pt;}
.y1c{bottom:443.841696pt;}
.y21a{bottom:444.791072pt;}
.y112{bottom:448.955141pt;}
.y1af{bottom:448.959296pt;}
.y144{bottom:448.964544pt;}
.y254{bottom:450.226688pt;}
.y3a{bottom:451.838853pt;}
.y72{bottom:452.794272pt;}
.y36c{bottom:454.724608pt;}
.y2e4{bottom:454.725056pt;}
.y32e{bottom:454.725824pt;}
.y298{bottom:454.726208pt;}
.yd7{bottom:456.959653pt;}
.ya5{bottom:458.219392pt;}
.y1b{bottom:458.561024pt;}
.y219{bottom:459.511712pt;}
.y111{bottom:463.674469pt;}
.y1ae{bottom:463.678624pt;}
.y1e9{bottom:463.681184pt;}
.y143{bottom:463.683872pt;}
.y253{bottom:464.946016pt;}
.y39{bottom:466.559493pt;}
.y36b{bottom:466.884448pt;}
.y2e3{bottom:466.884896pt;}
.y32d{bottom:466.885664pt;}
.y297{bottom:466.886048pt;}
.yd6{bottom:471.678981pt;}
.ya4{bottom:472.940032pt;}
.y218{bottom:474.232352pt;}
.y1ad{bottom:478.079136pt;}
.y1e8{bottom:478.081696pt;}
.y142{bottom:478.084384pt;}
.y36a{bottom:478.724320pt;}
.y2e2{bottom:478.724768pt;}
.y32c{bottom:478.725536pt;}
.y296{bottom:478.725920pt;}
.y252{bottom:479.665344pt;}
.y71{bottom:480.953728pt;}
.y38{bottom:481.280133pt;}
.y1a{bottom:481.280928pt;}
.y110{bottom:486.074245pt;}
.yd5{bottom:486.079493pt;}
.y369{bottom:490.884160pt;}
.y2e1{bottom:490.884608pt;}
.y32b{bottom:490.885376pt;}
.y295{bottom:490.885760pt;}
.y1ac{bottom:492.798464pt;}
.y1e7{bottom:492.802336pt;}
.y141{bottom:492.803712pt;}
.y251{bottom:494.065856pt;}
.ya3{bottom:495.339808pt;}
.y217{bottom:495.671744pt;}
.y70{bottom:495.673056pt;}
.yd4{bottom:500.798821pt;}
.y368{bottom:502.724032pt;}
.y2e0{bottom:502.724480pt;}
.y32a{bottom:502.725248pt;}
.y294{bottom:502.725632pt;}
.y1ab{bottom:507.517792pt;}
.y1e6{bottom:507.522976pt;}
.y140{bottom:507.523040pt;}
.y17c{bottom:507.524352pt;}
.y250{bottom:508.785184pt;}
.y216{bottom:510.072256pt;}
.y6f{bottom:510.073568pt;}
.y10f{bottom:514.233701pt;}
.y367{bottom:514.883872pt;}
.y2df{bottom:514.884320pt;}
.y329{bottom:514.885088pt;}
.y293{bottom:514.885472pt;}
.yd3{bottom:515.518149pt;}
.y19{bottom:520.000672pt;}
.y1aa{bottom:522.237120pt;}
.y13f{bottom:522.242368pt;}
.y1e5{bottom:522.243616pt;}
.y17b{bottom:522.244992pt;}
.ya2{bottom:523.499264pt;}
.y24f{bottom:523.504512pt;}
.y215{bottom:524.792896pt;}
.y6e{bottom:524.794208pt;}
.y366{bottom:526.723744pt;}
.y2de{bottom:526.724192pt;}
.y328{bottom:526.724960pt;}
.y292{bottom:526.725344pt;}
.y10e{bottom:528.953029pt;}
.yd2{bottom:530.237477pt;}
.y18{bottom:534.720000pt;}
.y1a9{bottom:536.956448pt;}
.y13e{bottom:536.961696pt;}
.y1e4{bottom:536.962944pt;}
.y17a{bottom:536.964320pt;}
.y24e{bottom:538.223840pt;}
.y365{bottom:538.883584pt;}
.y2dd{bottom:538.884032pt;}
.y327{bottom:538.884800pt;}
.y291{bottom:538.885184pt;}
.y214{bottom:539.513536pt;}
.y6d{bottom:539.514848pt;}
.y10d{bottom:543.672357pt;}
.yd1{bottom:544.956805pt;}
.y364{bottom:550.723456pt;}
.y2dc{bottom:550.723904pt;}
.y326{bottom:550.724672pt;}
.y290{bottom:550.725056pt;}
.ya1{bottom:551.658720pt;}
.y1a8{bottom:551.675776pt;}
.y13d{bottom:551.681024pt;}
.y1e3{bottom:551.682272pt;}
.y179{bottom:551.683648pt;}
.y24d{bottom:552.943168pt;}
.y213{bottom:554.234176pt;}
.y6c{bottom:554.235488pt;}
.y10c{bottom:558.072869pt;}
.yd0{bottom:559.676133pt;}
.y363{bottom:562.883296pt;}
.y2db{bottom:562.883744pt;}
.y325{bottom:562.884512pt;}
.y28f{bottom:562.884896pt;}
.y17{bottom:565.124677pt;}
.ya0{bottom:566.059232pt;}
.y1a7{bottom:566.076288pt;}
.y13c{bottom:566.081536pt;}
.y1e2{bottom:566.082784pt;}
.y178{bottom:566.084160pt;}
.y24c{bottom:567.662496pt;}
.y212{bottom:568.954816pt;}
.y10b{bottom:572.792197pt;}
.ycf{bottom:574.076645pt;}
.y362{bottom:574.723168pt;}
.y2da{bottom:574.723616pt;}
.y324{bottom:574.724384pt;}
.y28e{bottom:574.724768pt;}
.y6b{bottom:576.635264pt;}
.y16{bottom:579.844165pt;}
.y9f{bottom:580.779872pt;}
.y1a6{bottom:580.796928pt;}
.y13b{bottom:580.800864pt;}
.y177{bottom:580.803488pt;}
.y24b{bottom:582.063008pt;}
.y361{bottom:586.883008pt;}
.y2d9{bottom:586.883456pt;}
.y323{bottom:586.884224pt;}
.y28d{bottom:586.884608pt;}
.y10a{bottom:587.511525pt;}
.y1e1{bottom:587.522176pt;}
.yce{bottom:588.795973pt;}
.y211{bottom:591.354592pt;}
.y15{bottom:594.563653pt;}
.y9e{bottom:595.500512pt;}
.y1a5{bottom:595.517568pt;}
.y13a{bottom:595.520192pt;}
.y176{bottom:595.522816pt;}
.y24a{bottom:596.782336pt;}
.y360{bottom:598.722880pt;}
.y2d8{bottom:598.723328pt;}
.y322{bottom:598.724096pt;}
.y28c{bottom:598.724480pt;}
.y109{bottom:602.230853pt;}
.y1e0{bottom:602.241504pt;}
.ycd{bottom:603.515301pt;}
.y6a{bottom:604.796032pt;}
.y14{bottom:609.283141pt;}
.y9d{bottom:610.221152pt;}
.y1a4{bottom:610.238208pt;}
.y139{bottom:610.239520pt;}
.y175{bottom:610.242144pt;}
.y35f{bottom:610.882720pt;}
.y2d7{bottom:610.883168pt;}
.y321{bottom:610.883936pt;}
.y28b{bottom:610.884320pt;}
.y249{bottom:611.501664pt;}
.y108{bottom:616.950181pt;}
.y1df{bottom:616.960832pt;}
.ycc{bottom:618.234629pt;}
.y210{bottom:619.514048pt;}
.y35e{bottom:622.722592pt;}
.y2d6{bottom:622.723040pt;}
.y320{bottom:622.723808pt;}
.y28a{bottom:622.724192pt;}
.y13{bottom:624.002629pt;}
.y9c{bottom:624.941792pt;}
.y138{bottom:624.958848pt;}
.y174{bottom:624.961472pt;}
.y107{bottom:631.669509pt;}
.y1de{bottom:631.680160pt;}
.y248{bottom:632.942368pt;}
.ycb{bottom:632.953957pt;}
.y69{bottom:632.956800pt;}
.y35d{bottom:634.882432pt;}
.y2d5{bottom:634.882880pt;}
.y31f{bottom:634.883648pt;}
.y289{bottom:634.884032pt;}
.y12{bottom:638.722117pt;}
.y137{bottom:639.678176pt;}
.y173{bottom:639.680800pt;}
.y9b{bottom:646.062368pt;}
.y106{bottom:646.070021pt;}
.y1dd{bottom:646.080672pt;}
.y35c{bottom:646.722304pt;}
.y2d4{bottom:646.722752pt;}
.y31e{bottom:646.723520pt;}
.y288{bottom:646.723904pt;}
.y1a3{bottom:647.358624pt;}
.y247{bottom:647.661696pt;}
.yca{bottom:647.673285pt;}
.y20f{bottom:647.673504pt;}
.y68{bottom:647.676128pt;}
.y11{bottom:653.121925pt;}
.y136{bottom:654.078688pt;}
.y172{bottom:654.081312pt;}
.y35b{bottom:658.882144pt;}
.y2d3{bottom:658.882592pt;}
.y31d{bottom:658.883360pt;}
.y287{bottom:658.883744pt;}
.y9a{bottom:660.783008pt;}
.y105{bottom:660.789349pt;}
.y1dc{bottom:660.797792pt;}
.y246{bottom:662.062208pt;}
.y20e{bottom:662.074016pt;}
.y67{bottom:662.076640pt;}
.y10{bottom:667.841413pt;}
.yc9{bottom:668.793861pt;}
.y135{bottom:668.799328pt;}
.y35a{bottom:670.722016pt;}
.y2d2{bottom:670.722464pt;}
.y31c{bottom:670.723232pt;}
.y286{bottom:670.723616pt;}
.y99{bottom:675.503648pt;}
.y1a2{bottom:675.518080pt;}
.y1db{bottom:675.518432pt;}
.y171{bottom:675.520704pt;}
.y245{bottom:676.782848pt;}
.y20d{bottom:676.794656pt;}
.y66{bottom:676.797280pt;}
.yf{bottom:682.560901pt;}
.y359{bottom:682.881856pt;}
.y2d1{bottom:682.882304pt;}
.y31b{bottom:682.883072pt;}
.y285{bottom:682.883456pt;}
.y104{bottom:683.509253pt;}
.yc8{bottom:683.514501pt;}
.y134{bottom:683.519968pt;}
.y98{bottom:690.224288pt;}
.y1a1{bottom:690.238720pt;}
.y1da{bottom:690.239072pt;}
.y170{bottom:690.241344pt;}
.y244{bottom:691.503488pt;}
.y20c{bottom:691.515296pt;}
.y65{bottom:691.517920pt;}
.y358{bottom:694.721728pt;}
.y2d0{bottom:694.722176pt;}
.y31a{bottom:694.722944pt;}
.y284{bottom:694.723328pt;}
.ye{bottom:697.280389pt;}
.yc7{bottom:698.235141pt;}
.y97{bottom:704.944928pt;}
.y103{bottom:704.948645pt;}
.y1a0{bottom:704.959360pt;}
.y1d9{bottom:704.959712pt;}
.y16f{bottom:704.961984pt;}
.y243{bottom:706.224128pt;}
.y20b{bottom:706.235936pt;}
.y64{bottom:706.238560pt;}
.y133{bottom:706.239872pt;}
.y357{bottom:706.881568pt;}
.y2cf{bottom:706.882016pt;}
.y319{bottom:706.882784pt;}
.y283{bottom:706.883168pt;}
.yc6{bottom:712.955781pt;}
.y356{bottom:718.721440pt;}
.y2ce{bottom:718.721888pt;}
.y318{bottom:718.722656pt;}
.y282{bottom:718.723040pt;}
.y96{bottom:719.665568pt;}
.y102{bottom:719.669285pt;}
.y19f{bottom:719.680000pt;}
.y1d8{bottom:719.680352pt;}
.y16e{bottom:719.682624pt;}
.yd{bottom:720.000165pt;}
.y242{bottom:720.944768pt;}
.y20a{bottom:720.956576pt;}
.y63{bottom:720.959200pt;}
.yc5{bottom:727.676421pt;}
.y132{bottom:727.679264pt;}
.y355{bottom:730.881280pt;}
.y2cd{bottom:730.881728pt;}
.y317{bottom:730.882496pt;}
.y281{bottom:730.882880pt;}
.y95{bottom:734.066080pt;}
.y101{bottom:734.069797pt;}
.y19e{bottom:734.080512pt;}
.y1d7{bottom:734.080864pt;}
.y16d{bottom:734.083136pt;}
.yc{bottom:734.719653pt;}
.y241{bottom:735.665408pt;}
.y209{bottom:735.677216pt;}
.y62{bottom:735.679840pt;}
.yc4{bottom:742.076933pt;}
.y131{bottom:742.079776pt;}
.y354{bottom:742.721152pt;}
.y2cc{bottom:742.721600pt;}
.y316{bottom:742.722368pt;}
.y280{bottom:742.722752pt;}
.y94{bottom:748.785408pt;}
.y100{bottom:748.790437pt;}
.y19d{bottom:748.799840pt;}
.y1d6{bottom:748.801504pt;}
.y16c{bottom:748.803776pt;}
.yb{bottom:749.119461pt;}
.y208{bottom:750.077728pt;}
.y353{bottom:754.880992pt;}
.y2cb{bottom:754.881440pt;}
.y315{bottom:754.882208pt;}
.y27f{bottom:754.882592pt;}
.y240{bottom:756.784672pt;}
.yc3{bottom:756.797573pt;}
.y61{bottom:756.799104pt;}
.y130{bottom:756.800416pt;}
.y93{bottom:763.506048pt;}
.yff{bottom:763.511077pt;}
.y19c{bottom:763.520480pt;}
.y1d5{bottom:763.522144pt;}
.y16b{bottom:763.524416pt;}
.ya{bottom:763.840133pt;}
.y207{bottom:764.798368pt;}
.y352{bottom:766.720864pt;}
.y2ca{bottom:766.721312pt;}
.y314{bottom:766.722080pt;}
.y27e{bottom:766.722464pt;}
.y23f{bottom:771.505312pt;}
.yc2{bottom:771.518213pt;}
.y60{bottom:771.519744pt;}
.y12f{bottom:771.521056pt;}
.y92{bottom:778.226688pt;}
.yfe{bottom:778.231717pt;}
.y19b{bottom:778.241120pt;}
.y1d4{bottom:778.242784pt;}
.y16a{bottom:778.245056pt;}
.y351{bottom:778.880704pt;}
.y2c9{bottom:778.881152pt;}
.y313{bottom:778.881920pt;}
.y27d{bottom:778.882304pt;}
.y206{bottom:779.519008pt;}
.y23e{bottom:786.225952pt;}
.yc1{bottom:786.238853pt;}
.y5f{bottom:786.240384pt;}
.y12e{bottom:786.241696pt;}
.y350{bottom:790.720576pt;}
.y2c8{bottom:790.721024pt;}
.y312{bottom:790.721792pt;}
.y27c{bottom:790.722176pt;}
.y91{bottom:792.947328pt;}
.yfd{bottom:792.952357pt;}
.y19a{bottom:792.961760pt;}
.y169{bottom:792.965696pt;}
.y9{bottom:794.560549pt;}
.y1d3{bottom:799.682176pt;}
.y23d{bottom:800.946592pt;}
.y205{bottom:800.958400pt;}
.yc0{bottom:800.959493pt;}
.y5e{bottom:800.961024pt;}
.y12d{bottom:800.962336pt;}
.y34f{bottom:802.880416pt;}
.y2c7{bottom:802.880864pt;}
.y311{bottom:802.881632pt;}
.y27b{bottom:802.882016pt;}
.y90{bottom:807.667968pt;}
.yfc{bottom:807.672997pt;}
.y199{bottom:807.682400pt;}
.y168{bottom:807.686336pt;}
.y1d2{bottom:814.082688pt;}
.y34e{bottom:814.720288pt;}
.y2c6{bottom:814.720736pt;}
.y310{bottom:814.721504pt;}
.y27a{bottom:814.721888pt;}
.y23c{bottom:815.667232pt;}
.y204{bottom:815.679040pt;}
.y5d{bottom:815.681664pt;}
.y12c{bottom:815.682976pt;}
.y8{bottom:816.000133pt;}
.yfb{bottom:822.073509pt;}
.y198{bottom:822.082912pt;}
.y167{bottom:822.086848pt;}
.y34d{bottom:826.880128pt;}
.y2c5{bottom:826.880576pt;}
.y30f{bottom:826.881344pt;}
.y279{bottom:826.881728pt;}
.y1d1{bottom:828.802016pt;}
.y8f{bottom:830.067744pt;}
.y203{bottom:830.079552pt;}
.y5c{bottom:830.082176pt;}
.yfa{bottom:836.792837pt;}
.y197{bottom:836.802240pt;}
.y166{bottom:836.807488pt;}
.y12b{bottom:838.082752pt;}
.y34c{bottom:838.720000pt;}
.y2c4{bottom:838.720448pt;}
.y30e{bottom:838.721216pt;}
.y278{bottom:838.721600pt;}
.y1d0{bottom:843.521344pt;}
.y23b{bottom:844.788384pt;}
.y202{bottom:844.800192pt;}
.y5b{bottom:844.801504pt;}
.y2c3{bottom:850.880288pt;}
.y30d{bottom:850.881056pt;}
.y277{bottom:850.881440pt;}
.y34b{bottom:850.889504pt;}
.yf9{bottom:851.512165pt;}
.y196{bottom:851.521568pt;}
.y165{bottom:851.528128pt;}
.y7{bottom:857.920133pt;}
.y8e{bottom:858.227200pt;}
.y1cf{bottom:858.240672pt;}
.y23a{bottom:859.509024pt;}
.y5a{bottom:859.520832pt;}
.y2c2{bottom:862.720160pt;}
.y30c{bottom:862.720928pt;}
.y276{bottom:862.721312pt;}
.y34a{bottom:862.729376pt;}
.yf8{bottom:866.231493pt;}
.ybf{bottom:866.240896pt;}
.y12a{bottom:866.242208pt;}
.y164{bottom:866.248768pt;}
.y8d{bottom:872.947840pt;}
.y1ce{bottom:872.959493pt;}
.y239{bottom:874.229664pt;}
.y59{bottom:874.241472pt;}
.y2c1{bottom:874.880000pt;}
.y30b{bottom:874.880768pt;}
.y275{bottom:874.881152pt;}
.y349{bottom:874.889216pt;}
.yf7{bottom:880.950821pt;}
.ybe{bottom:880.961536pt;}
.y163{bottom:880.969408pt;}
.y30a{bottom:886.720640pt;}
.y274{bottom:886.721024pt;}
.y348{bottom:886.729088pt;}
.y2c0{bottom:886.731584pt;}
.y8c{bottom:887.668480pt;}
.y1cd{bottom:887.688160pt;}
.y238{bottom:888.950304pt;}
.y58{bottom:895.682176pt;}
.y162{bottom:895.690048pt;}
.y309{bottom:898.880480pt;}
.y273{bottom:898.880864pt;}
.y347{bottom:898.888928pt;}
.y2bf{bottom:898.891424pt;}
.y8b{bottom:902.068992pt;}
.y1cc{bottom:902.088672pt;}
.yf6{bottom:903.670725pt;}
.y237{bottom:903.670944pt;}
.y6{bottom:909.119040pt;}
.y57{bottom:910.082688pt;}
.y161{bottom:910.090560pt;}
.y308{bottom:910.720352pt;}
.y272{bottom:910.720736pt;}
.y346{bottom:910.728800pt;}
.y2be{bottom:910.731296pt;}
.y8a{bottom:916.789632pt;}
.y1cb{bottom:916.809312pt;}
.y236{bottom:918.071456pt;}
.y307{bottom:922.880192pt;}
.y271{bottom:922.880576pt;}
.y345{bottom:922.888640pt;}
.y2bd{bottom:922.891136pt;}
.yf5{bottom:924.789989pt;}
.y56{bottom:924.802016pt;}
.y5{bottom:931.200000pt;}
.y89{bottom:931.510272pt;}
.y1ca{bottom:931.529952pt;}
.y235{bottom:932.790784pt;}
.y160{bottom:932.810464pt;}
.y306{bottom:934.720064pt;}
.y270{bottom:934.720448pt;}
.y344{bottom:934.728512pt;}
.y2bc{bottom:934.731008pt;}
.yf4{bottom:939.509317pt;}
.y55{bottom:939.521344pt;}
.y88{bottom:946.230912pt;}
.y1c9{bottom:946.250592pt;}
.y305{bottom:946.879904pt;}
.y26f{bottom:946.880288pt;}
.y343{bottom:946.888352pt;}
.y2bb{bottom:946.890848pt;}
.yf3{bottom:954.228645pt;}
.y234{bottom:954.230176pt;}
.y54{bottom:954.240672pt;}
.y15f{bottom:954.249856pt;}
.y304{bottom:958.719776pt;}
.y26e{bottom:958.720160pt;}
.y342{bottom:958.728224pt;}
.y2ba{bottom:958.730720pt;}
.y4{bottom:965.440000pt;}
.yf2{bottom:968.947973pt;}
.y233{bottom:968.949504pt;}
.y87{bottom:968.950816pt;}
.y53{bottom:968.960000pt;}
.y15e{bottom:968.969184pt;}
.y1c8{bottom:968.970496pt;}
.y303{bottom:970.879616pt;}
.y26d{bottom:970.880000pt;}
.y341{bottom:970.888064pt;}
.y2b9{bottom:970.890560pt;}
.y1{bottom:998.720000pt;}
.h18{height:10.050000pt;}
.h17{height:20.100000pt;}
.h7{height:33.901875pt;}
.hf{height:39.770000pt;}
.h2{height:41.456250pt;}
.h3{height:42.570000pt;}
.h16{height:43.416064pt;}
.ha{height:46.481250pt;}
.h9{height:47.730000pt;}
.h10{height:51.480625pt;}
.hc{height:51.506250pt;}
.hb{height:52.890000pt;}
.hd{height:53.941170pt;}
.h12{height:58.206643pt;}
.h8{height:58.219678pt;}
.h15{height:58.228019pt;}
.h11{height:58.232627pt;}
.h13{height:58.240777pt;}
.h14{height:58.247582pt;}
.h1{height:62.812500pt;}
.h4{height:66.750000pt;}
.h6{height:70.895717pt;}
.h5{height:85.140000pt;}
.he{height:1055.960000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:85.120000pt;}
.x8{left:122.880000pt;}
.x3{left:141.760000pt;}
.x4{left:275.520000pt;}
.x5{left:283.520000pt;}
.x6{left:440.960000pt;}
.x7{left:478.720448pt;}
.x2{left:666.880000pt;}
}




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