
    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_ce1127bdedfb786201763266.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191000;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_080b0f271a92383bfd757920.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986000;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_3256977451d6971cef13d9dc.woff')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_cd51bb40910f33bcdee2a8b9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.734000;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_ef19be7fd9daa407b4f265e8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.900000;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_c6dfb74d44717ee27bf0aba0.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_9c864c578a0bfafc8155761e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.712402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9c864c578a0bfafc8155761e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.712402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9fd248cbf6793873e1dce159.woff')format("woff");}.ff9{font-family:ff9;line-height:0.675781;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_84386592d5a0911e4146602b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.712402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9fd248cbf6793873e1dce159.woff')format("woff");}.ffb{font-family:ffb;line-height:0.675781;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_35e3a1c94924de71a0a7b21b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.712402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8f5c2188bcc9373f2d498c70.woff')format("woff");}.ffd{font-family:ffd;line-height:0.712000;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_9fd248cbf6793873e1dce159.woff')format("woff");}.ffe{font-family:ffe;line-height:0.675781;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_35e3a1c94924de71a0a7b21b.woff')format("woff");}.fff{font-family:fff;line-height:0.712402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_9fd248cbf6793873e1dce159.woff')format("woff");}.ff10{font-family:ff10;line-height:0.675781;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_8667a3c2ba6f7dc20d82f220.woff')format("woff");}.ff11{font-family:ff11;line-height:0.712402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_9fd248cbf6793873e1dce159.woff')format("woff");}.ff12{font-family:ff12;line-height:0.675781;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_76fdaed1598161ef943d1cae.woff')format("woff");}.ff13{font-family:ff13;line-height:0.712402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_f7d922be58dd25698c1345fe.woff')format("woff");}.ff14{font-family:ff14;line-height:1.000000;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_58709ff720d2ef53c7fc6714.woff')format("woff");}.ff15{font-family:ff15;line-height:1.850000;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_9fd248cbf6793873e1dce159.woff')format("woff");}.ff16{font-family:ff16;line-height:0.675781;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_a985e31c9365556a7ec03856.woff')format("woff");}.ff17{font-family:ff17;line-height:0.712402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_9fd248cbf6793873e1dce159.woff')format("woff");}.ff18{font-family:ff18;line-height:0.675781;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_23a3e4a533c9805faa83118c.woff')format("woff");}.ff19{font-family:ff19;line-height:0.712402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_9fd248cbf6793873e1dce159.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.675781;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_d953bb16e516d58d18b36beb.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.712402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_6022d2b0fa74654167850e0c.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.505000;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_9fd248cbf6793873e1dce159.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.675781;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_7c52a5fa3ad6e40fffd2eaf7.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.712402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_9fd248cbf6793873e1dce159.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.675781;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_f51c76dc5559e2e8c04f9e09.woff')format("woff");}.ff20{font-family:ff20;line-height:0.712402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_9fd248cbf6793873e1dce159.woff')format("woff");}.ff21{font-family:ff21;line-height:0.675781;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_f51c76dc5559e2e8c04f9e09.woff')format("woff");}.ff22{font-family:ff22;line-height:0.712402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_9fd248cbf6793873e1dce159.woff')format("woff");}.ff23{font-family:ff23;line-height:0.675781;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_0238f1aeac25d8bc7e5c6d4e.woff')format("woff");}.ff24{font-family:ff24;line-height:0.712402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_9fd248cbf6793873e1dce159.woff')format("woff");}.ff25{font-family:ff25;line-height:0.675781;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_bfd75a7667520b7d2839388d.woff')format("woff");}.ff26{font-family:ff26;line-height:0.712402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_9fd248cbf6793873e1dce159.woff')format("woff");}.ff27{font-family:ff27;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_0f07b9d8ae843836444c29d2.woff')format("woff");}.ff28{font-family:ff28;line-height:0.712402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m14{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v7{vertical-align:-14.940000px;}
.v3{vertical-align:-11.952000px;}
.v5{vertical-align:-10.920000px;}
.v8{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.482000px;}
.v13{vertical-align:17.154000px;}
.v11{vertical-align:18.222000px;}
.v1{vertical-align:21.702000px;}
.v10{vertical-align:24.684000px;}
.vd{vertical-align:29.286000px;}
.vc{vertical-align:33.504000px;}
.v9{vertical-align:35.868000px;}
.v12{vertical-align:42.906000px;}
.va{vertical-align:48.450000px;}
.vb{vertical-align:50.808000px;}
.vf{vertical-align:71.958000px;}
.v6{vertical-align:95.652000px;}
.ve{vertical-align:140.472000px;}
.ls8{letter-spacing:0.000000px;}
.ls52{letter-spacing:0.000113px;}
.ls53{letter-spacing:0.000370px;}
.ls21{letter-spacing:0.000476px;}
.ls9{letter-spacing:0.000612px;}
.ls5{letter-spacing:0.001933px;}
.ls1f{letter-spacing:0.002378px;}
.ls3f{letter-spacing:0.002537px;}
.ls40{letter-spacing:0.002728px;}
.ls54{letter-spacing:0.002780px;}
.ls5e{letter-spacing:0.003830px;}
.ls25{letter-spacing:0.548815px;}
.ls2e{letter-spacing:0.590725px;}
.ls46{letter-spacing:0.670741px;}
.ls48{letter-spacing:0.676741px;}
.ls19{letter-spacing:0.717483px;}
.ls10{letter-spacing:0.723483px;}
.ls57{letter-spacing:0.746400px;}
.lsf{letter-spacing:0.746725px;}
.ls51{letter-spacing:0.747634px;}
.ls4b{letter-spacing:0.748200px;}
.ls5b{letter-spacing:1.044337px;}
.ls5a{letter-spacing:1.050337px;}
.ls2a{letter-spacing:1.348200px;}
.ls28{letter-spacing:1.412725px;}
.ls31{letter-spacing:1.420741px;}
.ls33{letter-spacing:1.461483px;}
.ls37{letter-spacing:1.464783px;}
.ls3a{letter-spacing:1.476843px;}
.ls32{letter-spacing:1.478793px;}
.ls50{letter-spacing:1.491634px;}
.ls35{letter-spacing:1.492200px;}
.ls42{letter-spacing:1.492483px;}
.ls49{letter-spacing:1.497634px;}
.ls2c{letter-spacing:1.498200px;}
.ls45{letter-spacing:1.498483px;}
.ls44{letter-spacing:2.086200px;}
.ls30{letter-spacing:2.092200px;}
.ls29{letter-spacing:2.434741px;}
.ls16{letter-spacing:2.989200px;}
.ls1{letter-spacing:2.998354px;}
.lsd{letter-spacing:3.536815px;}
.ls18{letter-spacing:3.559200px;}
.ls34{letter-spacing:4.303200px;}
.ls36{letter-spacing:4.458783px;}
.ls3b{letter-spacing:4.460793px;}
.ls2d{letter-spacing:4.466793px;}
.ls2f{letter-spacing:4.759200px;}
.ls0{letter-spacing:8.367300px;}
.ls2b{letter-spacing:10.706100px;}
.ls47{letter-spacing:10.712100px;}
.ls7{letter-spacing:11.960850px;}
.ls63{letter-spacing:12.068767px;}
.ls39{letter-spacing:12.339483px;}
.ls38{letter-spacing:13.042741px;}
.ls4d{letter-spacing:13.089483px;}
.ls23{letter-spacing:13.090856px;}
.ls27{letter-spacing:13.150632px;}
.ls60{letter-spacing:13.152952px;}
.ls64{letter-spacing:13.196765px;}
.ls65{letter-spacing:13.217067px;}
.ls66{letter-spacing:13.394087px;}
.ls55{letter-spacing:13.443828px;}
.ls5f{letter-spacing:13.448400px;}
.ls67{letter-spacing:13.454400px;}
.ls62{letter-spacing:13.484268px;}
.ls61{letter-spacing:13.487210px;}
.ls5d{letter-spacing:13.526158px;}
.ls5c{letter-spacing:13.559463px;}
.ls69{letter-spacing:13.568582px;}
.ls41{letter-spacing:13.959292px;}
.lsc{letter-spacing:14.645022px;}
.lsa{letter-spacing:14.704798px;}
.ls1b{letter-spacing:14.764573px;}
.ls1e{letter-spacing:14.942971px;}
.ls3d{letter-spacing:14.943900px;}
.ls24{letter-spacing:14.944200px;}
.ls1d{letter-spacing:15.003676px;}
.ls1c{letter-spacing:15.063451px;}
.ls3e{letter-spacing:15.183002px;}
.lsb{letter-spacing:15.302554px;}
.ls4f{letter-spacing:15.355200px;}
.ls4c{letter-spacing:15.361200px;}
.ls1a{letter-spacing:15.663483px;}
.ls26{letter-spacing:15.690476px;}
.ls56{letter-spacing:17.319483px;}
.ls59{letter-spacing:17.325483px;}
.ls68{letter-spacing:17.526871px;}
.lse{letter-spacing:17.929200px;}
.ls13{letter-spacing:17.935200px;}
.ls43{letter-spacing:18.022741px;}
.ls4e{letter-spacing:18.069483px;}
.ls58{letter-spacing:18.396337px;}
.ls4a{letter-spacing:19.083483px;}
.ls2{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.ls3{letter-spacing:72.361200px;}
.ls20{letter-spacing:425.318725px;}
.ls3c{letter-spacing:637.476843px;}
.ls11{letter-spacing:696.020725px;}
.ls14{letter-spacing:721.004725px;}
.ls15{letter-spacing:722.348725px;}
.ls12{letter-spacing:724.652725px;}
.ls22{letter-spacing:765.896725px;}
.ls17{letter-spacing:909.146725px;}
.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;}
}
.ws41{word-spacing:-14.943900px;}
.wsb{word-spacing:-14.355754px;}
.ws82{word-spacing:-13.449600px;}
.ws24{word-spacing:-11.955150px;}
.ws9{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws26{word-spacing:-3.227882px;}
.ws43{word-spacing:-3.168107px;}
.ws2f{word-spacing:-2.570351px;}
.wsea{word-spacing:-2.528525px;}
.ws45{word-spacing:-2.450800px;}
.ws9d{word-spacing:-2.331248px;}
.ws49{word-spacing:-2.271473px;}
.wsca{word-spacing:-2.259533px;}
.ws7f{word-spacing:-2.092146px;}
.ws0{word-spacing:-2.092140px;}
.ws2{word-spacing:-2.050297px;}
.ws88{word-spacing:-1.972595px;}
.wsf5{word-spacing:-1.882944px;}
.ws54{word-spacing:-1.853044px;}
.wse0{word-spacing:-1.829146px;}
.ws39{word-spacing:-1.793268px;}
.wse2{word-spacing:-1.775347px;}
.ws7e{word-spacing:-1.733492px;}
.wsc8{word-spacing:-1.721549px;}
.ws59{word-spacing:-1.613941px;}
.ws29{word-spacing:-1.434614px;}
.ws51{word-spacing:-1.398758px;}
.ws5a{word-spacing:-1.315063px;}
.wsbc{word-spacing:-1.255288px;}
.wsbb{word-spacing:-1.195512px;}
.ws94{word-spacing:-1.075961px;}
.ws56{word-spacing:-1.016185px;}
.wsec{word-spacing:-0.968371px;}
.ws71{word-spacing:-0.956410px;}
.ws4b{word-spacing:-0.896634px;}
.wsa6{word-spacing:-0.860774px;}
.ws4a{word-spacing:-0.836858px;}
.ws44{word-spacing:-0.777083px;}
.ws5d{word-spacing:-0.717307px;}
.ws98{word-spacing:-0.699379px;}
.ws57{word-spacing:-0.657532px;}
.wsc6{word-spacing:-0.645581px;}
.ws31{word-spacing:-0.537980px;}
.wsc4{word-spacing:-0.484186px;}
.ws9b{word-spacing:-0.478205px;}
.ws78{word-spacing:-0.418429px;}
.wsee{word-spacing:-0.376589px;}
.ws14{word-spacing:-0.358654px;}
.wsd5{word-spacing:-0.322790px;}
.wse{word-spacing:-0.298878px;}
.ws8d{word-spacing:-0.268992px;}
.ws1f{word-spacing:-0.239102px;}
.ws4e{word-spacing:-0.215194px;}
.ws10{word-spacing:-0.179327px;}
.wsbd{word-spacing:-0.161395px;}
.ws15{word-spacing:-0.119551px;}
.ws83{word-spacing:-0.107597px;}
.ws1c{word-spacing:-0.059776px;}
.ws84{word-spacing:-0.053798px;}
.ws25{word-spacing:-0.047821px;}
.ws89{word-spacing:-0.045430px;}
.ws5{word-spacing:-0.041843px;}
.wsf8{word-spacing:-0.025699px;}
.ws99{word-spacing:-0.006394px;}
.ws2d{word-spacing:-0.003514px;}
.ws8{word-spacing:0.000000px;}
.wsc5{word-spacing:0.053798px;}
.ws16{word-spacing:0.059776px;}
.wscf{word-spacing:0.107597px;}
.ws13{word-spacing:0.119551px;}
.ws9e{word-spacing:0.161395px;}
.ws20{word-spacing:0.179327px;}
.wsc3{word-spacing:0.215194px;}
.ws18{word-spacing:0.239102px;}
.wsc7{word-spacing:0.268992px;}
.ws3f{word-spacing:0.298878px;}
.ws6f{word-spacing:0.322790px;}
.ws17{word-spacing:0.358654px;}
.ws19{word-spacing:0.418429px;}
.ws7{word-spacing:0.422252px;}
.ws75{word-spacing:0.484186px;}
.ws9a{word-spacing:0.537980px;}
.wsa7{word-spacing:0.591782px;}
.ws12{word-spacing:0.597756px;}
.ws70{word-spacing:0.645581px;}
.ws2a{word-spacing:0.657532px;}
.ws68{word-spacing:0.717307px;}
.ws6c{word-spacing:0.742500px;}
.wsaf{word-spacing:0.744600px;}
.ws80{word-spacing:0.746092px;}
.ws46{word-spacing:0.748500px;}
.wsb9{word-spacing:0.777083px;}
.wsf3{word-spacing:0.806976px;}
.ws3e{word-spacing:0.836858px;}
.ws81{word-spacing:0.860774px;}
.ws5e{word-spacing:0.896634px;}
.ws7c{word-spacing:0.956410px;}
.wsb5{word-spacing:0.968371px;}
.wsba{word-spacing:1.016185px;}
.ws3c{word-spacing:1.075961px;}
.wsf4{word-spacing:1.129766px;}
.ws1d{word-spacing:1.135736px;}
.wse6{word-spacing:1.183565px;}
.ws85{word-spacing:1.195512px;}
.ws2e{word-spacing:1.255288px;}
.wsa4{word-spacing:1.315063px;}
.ws30{word-spacing:1.374839px;}
.ws72{word-spacing:1.434614px;}
.ws61{word-spacing:1.452557px;}
.wsf{word-spacing:1.494390px;}
.ws37{word-spacing:1.554166px;}
.ws5f{word-spacing:1.613941px;}
.ws27{word-spacing:1.673717px;}
.wsab{word-spacing:1.721549px;}
.ws7d{word-spacing:1.733492px;}
.ws60{word-spacing:1.793268px;}
.ws4d{word-spacing:1.912819px;}
.ws22{word-spacing:1.972595px;}
.wsa9{word-spacing:2.032370px;}
.wsbe{word-spacing:2.044339px;}
.wsb8{word-spacing:2.092146px;}
.ws4f{word-spacing:2.151922px;}
.wsd4{word-spacing:2.259533px;}
.ws7a{word-spacing:2.271473px;}
.wsb4{word-spacing:2.331248px;}
.wsbf{word-spacing:2.367130px;}
.ws4c{word-spacing:2.391024px;}
.ws86{word-spacing:2.450800px;}
.ws95{word-spacing:2.510575px;}
.ws6b{word-spacing:2.570351px;}
.wsd2{word-spacing:2.582323px;}
.ws34{word-spacing:2.689902px;}
.ws53{word-spacing:2.749678px;}
.ws6a{word-spacing:2.809453px;}
.ws6d{word-spacing:2.869229px;}
.wsc{word-spacing:2.869236px;}
.ws67{word-spacing:2.929004px;}
.ws6e{word-spacing:2.988780px;}
.ws77{word-spacing:3.108331px;}
.wsf7{word-spacing:3.120307px;}
.wsf0{word-spacing:3.174106px;}
.wsfc{word-spacing:3.222902px;}
.ws3d{word-spacing:3.227882px;}
.wse5{word-spacing:3.227904px;}
.wsd{word-spacing:3.258590px;}
.wsc2{word-spacing:3.281702px;}
.ws58{word-spacing:3.287658px;}
.ws52{word-spacing:3.347434px;}
.wsaa{word-spacing:3.389299px;}
.ws74{word-spacing:3.407209px;}
.ws2b{word-spacing:3.466985px;}
.wsa0{word-spacing:3.496896px;}
.ws2c{word-spacing:3.526760px;}
.ws1a{word-spacing:3.583475px;}
.wsa1{word-spacing:3.586536px;}
.ws96{word-spacing:3.646312px;}
.wsac{word-spacing:3.706087px;}
.ws38{word-spacing:3.765863px;}
.wsa5{word-spacing:3.825638px;}
.wsdc{word-spacing:3.873485px;}
.ws8e{word-spacing:3.885414px;}
.ws28{word-spacing:3.945190px;}
.wsb7{word-spacing:4.004965px;}
.ws62{word-spacing:4.034880px;}
.wsad{word-spacing:4.064741px;}
.wsf2{word-spacing:4.088678px;}
.ws35{word-spacing:4.124516px;}
.ws91{word-spacing:4.184292px;}
.ws9f{word-spacing:4.196275px;}
.ws8f{word-spacing:4.244068px;}
.wsce{word-spacing:4.250074px;}
.ws32{word-spacing:4.303843px;}
.ws1b{word-spacing:4.303872px;}
.wsd8{word-spacing:4.411469px;}
.ws87{word-spacing:4.662497px;}
.ws79{word-spacing:4.722272px;}
.ws48{word-spacing:4.841824px;}
.ws11{word-spacing:4.901599px;}
.ws97{word-spacing:5.021150px;}
.ws73{word-spacing:5.140702px;}
.ws3b{word-spacing:5.200477px;}
.wsa2{word-spacing:5.320028px;}
.ws33{word-spacing:5.379804px;}
.ws90{word-spacing:5.439580px;}
.ws36{word-spacing:5.499355px;}
.ws5b{word-spacing:5.678682px;}
.wseb{word-spacing:5.756429px;}
.ws69{word-spacing:5.858009px;}
.ws21{word-spacing:5.917784px;}
.ws47{word-spacing:5.977560px;}
.ws50{word-spacing:6.037336px;}
.wsa3{word-spacing:6.455765px;}
.ws5c{word-spacing:6.515540px;}
.wsb6{word-spacing:6.563405px;}
.ws64{word-spacing:6.573000px;}
.ws8c{word-spacing:6.635092px;}
.ws8b{word-spacing:6.694867px;}
.ws93{word-spacing:6.814418px;}
.ws92{word-spacing:6.933970px;}
.ws3a{word-spacing:7.053521px;}
.wsc0{word-spacing:7.208986px;}
.ws7b{word-spacing:7.471950px;}
.ws76{word-spacing:7.531776px;}
.ws1e{word-spacing:7.591501px;}
.wsa8{word-spacing:7.950155px;}
.ws3{word-spacing:8.325364px;}
.wscb{word-spacing:8.537236px;}
.wsfb{word-spacing:9.468518px;}
.wsc1{word-spacing:10.037646px;}
.wscd{word-spacing:10.705882px;}
.wsc9{word-spacing:11.136269px;}
.ws6{word-spacing:11.297556px;}
.wse1{word-spacing:11.620454px;}
.ws23{word-spacing:11.904472px;}
.wse4{word-spacing:13.121766px;}
.wse7{word-spacing:13.181283px;}
.wsfa{word-spacing:13.275296px;}
.wsdf{word-spacing:13.288205px;}
.wsed{word-spacing:13.310567px;}
.wsdb{word-spacing:13.342003px;}
.wsd7{word-spacing:13.386586px;}
.wsde{word-spacing:13.387555px;}
.wse8{word-spacing:13.389581px;}
.wsf9{word-spacing:13.395802px;}
.wsd1{word-spacing:13.449600px;}
.wsd9{word-spacing:13.503398px;}
.wsf6{word-spacing:13.557197px;}
.ws55{word-spacing:14.884124px;}
.wsb2{word-spacing:15.880694px;}
.wsd6{word-spacing:16.282933px;}
.wse9{word-spacing:16.408512px;}
.wse3{word-spacing:16.617629px;}
.wsfd{word-spacing:16.622314px;}
.wsd3{word-spacing:16.623706px;}
.wsda{word-spacing:16.677504px;}
.wsd0{word-spacing:16.785101px;}
.wsef{word-spacing:17.054093px;}
.ws8a{word-spacing:17.938541px;}
.ws9c{word-spacing:18.000827px;}
.wsae{word-spacing:18.340834px;}
.wsdd{word-spacing:18.883238px;}
.wsb1{word-spacing:20.861131px;}
.wscc{word-spacing:21.895949px;}
.ws1{word-spacing:22.179541px;}
.wsf1{word-spacing:26.684006px;}
.wsa{word-spacing:40.042186px;}
.ws63{word-spacing:493.567129px;}
.ws65{word-spacing:643.783212px;}
.ws40{word-spacing:692.500326px;}
.wsb0{word-spacing:703.465892px;}
.wsb3{word-spacing:772.460779px;}
.ws42{word-spacing:867.523283px;}
.ws66{word-spacing:952.882840px;}
._2b{margin-left:-23.988522px;}
._7{margin-left:-7.591501px;}
._3{margin-left:-5.917824px;}
._6{margin-left:-4.399495px;}
._1{margin-left:-3.138210px;}
._2{margin-left:-1.506341px;}
._23{width:1.308211px;}
._4{width:2.997796px;}
._2d{width:4.003820px;}
._26{width:5.266679px;}
._29{width:7.412174px;}
._0{width:10.879128px;}
._19{width:13.270183px;}
._f{width:14.585246px;}
._16{width:15.673198px;}
._24{width:17.089460px;}
._8{width:18.231558px;}
._10{width:19.427070px;}
._9{width:20.455206px;}
._a{width:22.415850px;}
._1a{width:23.551586px;}
._12{width:24.866650px;}
._2a{width:25.894825px;}
._14{width:27.197898px;}
._22{width:28.249960px;}
._11{width:29.529146px;}
._e{width:30.844210px;}
._13{width:31.991897px;}
._15{width:34.908950px;}
._b{width:36.761994px;}
._28{width:38.531363px;}
._2e{width:45.746543px;}
._5{width:54.405284px;}
._2c{width:61.868160px;}
._27{width:118.807396px;}
._1e{width:464.037983px;}
._1c{width:529.611816px;}
._1b{width:551.669012px;}
._1f{width:599.967697px;}
._1d{width:611.623939px;}
._20{width:683.713313px;}
._17{width:795.912114px;}
._21{width:810.975565px;}
._18{width:950.282592px;}
._c{width:1964.109000px;}
._25{width:2557.323000px;}
._d{width:2581.233000px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:14.472000px;}
.fs13{font-size:17.928000px;}
.fs16{font-size:24.120000px;}
.fs17{font-size:29.880000px;}
.fs14{font-size:31.356000px;}
.fsd{font-size:33.768000px;}
.fs4{font-size:35.865600px;}
.fsf{font-size:36.180000px;}
.fsc{font-size:38.592000px;}
.fs15{font-size:38.844000px;}
.fse{font-size:41.832000px;}
.fs0{font-size:41.842800px;}
.fs10{font-size:44.820000px;}
.fs3{font-size:45.429600px;}
.fs8{font-size:47.337600px;}
.fsa{font-size:47.808000px;}
.fs5{font-size:47.820600px;}
.fsb{font-size:50.796000px;}
.fs7{font-size:53.798400px;}
.fs11{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fs9{font-size:62.286600px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y1f0{bottom:-581.486400px;}
.y241{bottom:-568.015200px;}
.y100{bottom:-515.210400px;}
.y196{bottom:-411.801000px;}
.y108{bottom:-390.503232px;}
.y107{bottom:-373.650912px;}
.y106{bottom:-360.408096px;}
.y9a{bottom:-327.701328px;}
.y1fb{bottom:-321.279408px;}
.y99{bottom:-310.860960px;}
.y200{bottom:-304.759200px;}
.y1fa{bottom:-304.570512px;}
.y98{bottom:-294.152064px;}
.y1f9{bottom:-287.718192px;}
.y97{bottom:-280.909248px;}
.y1f8{bottom:-274.475376px;}
.y269{bottom:-273.196125px;}
.y14c{bottom:-258.664500px;}
.y140{bottom:-251.301375px;}
.y226{bottom:-241.406550px;}
.ye9{bottom:-235.485600px;}
.y177{bottom:-177.036600px;}
.y12b{bottom:-142.911300px;}
.y105{bottom:-61.034400px;}
.y96{bottom:-48.347232px;}
.y150{bottom:-48.335445px;}
.yac{bottom:-47.208711px;}
.yed{bottom:-47.134032px;}
.y22a{bottom:-45.099432px;}
.y20b{bottom:-44.552208px;}
.y104{bottom:-44.325504px;}
.y245{bottom:-43.704864px;}
.y26d{bottom:-43.157475px;}
.y1f7{bottom:-42.343632px;}
.y144{bottom:-40.972320px;}
.y19a{bottom:-37.985766px;}
.y17e{bottom:-35.702706px;}
.y133{bottom:-33.792528px;}
.y14f{bottom:-32.670855px;}
.y95{bottom:-31.494912px;}
.y229{bottom:-30.479148px;}
.yec{bottom:-30.425136px;}
.yab{bottom:-29.315820px;}
.y20a{bottom:-27.843312px;}
.y26c{bottom:-27.492885px;}
.y103{bottom:-27.473184px;}
.y244{bottom:-27.007920px;}
.y1f6{bottom:-25.503264px;}
.y143{bottom:-25.307730px;}
.y199{bottom:-24.293256px;}
.y17d{bottom:-22.126728px;}
.y132{bottom:-19.046748px;}
.y14e{bottom:-16.871805px;}
.y228{bottom:-15.733368px;}
.y94{bottom:-14.642592px;}
.yeb{bottom:-13.572816px;}
.y26b{bottom:-11.693835px;}
.yaa{bottom:-11.562618px;}
.y209{bottom:-10.990992px;}
.y102{bottom:-10.632816px;}
.y198{bottom:-10.600746px;}
.y243{bottom:-10.155600px;}
.y142{bottom:-9.508680px;}
.y1f5{bottom:-8.650944px;}
.y17c{bottom:-8.434218px;}
.y131{bottom:-7.459284px;}
.y1cc{bottom:-6.516075px;}
.y14d{bottom:-4.456665px;}
.y227{bottom:-4.145904px;}
.y16a{bottom:-3.006900px;}
.y93{bottom:-1.543200px;}
.yea{bottom:-0.330000px;}
.y1cd{bottom:-0.301035px;}
.y0{bottom:0.000000px;}
.y197{bottom:0.042510px;}
.y26a{bottom:0.721305px;}
.y16b{bottom:0.722124px;}
.y208{bottom:2.251824px;}
.y17b{bottom:2.325570px;}
.y101{bottom:2.478528px;}
.ya9{bottom:2.507874px;}
.y141{bottom:2.906460px;}
.y242{bottom:3.087216px;}
.y1f4{bottom:4.448448px;}
.y3f{bottom:45.921000px;}
.yb7{bottom:99.720000px;}
.y14{bottom:100.260000px;}
.y1b9{bottom:100.729500px;}
.y91{bottom:102.189000px;}
.y13c{bottom:102.249000px;}
.y157{bottom:105.144000px;}
.y1ba{bottom:106.153500px;}
.y294{bottom:106.699500px;}
.y223{bottom:106.966500px;}
.y3e{bottom:107.907000px;}
.y23e{bottom:109.422000px;}
.y273{bottom:109.582500px;}
.y193{bottom:112.512000px;}
.y1d3{bottom:112.737000px;}
.y71{bottom:114.882000px;}
.y13{bottom:118.147500px;}
.y148{bottom:120.535500px;}
.yb6{bottom:120.610500px;}
.y1b8{bottom:121.620000px;}
.y90{bottom:123.081000px;}
.y13b{bottom:123.139500px;}
.yfa{bottom:124.051500px;}
.y293{bottom:126.198000px;}
.y222{bottom:127.858500px;}
.y3d{bottom:128.797500px;}
.y23d{bottom:130.314000px;}
.y272{bottom:130.473000px;}
.y25a{bottom:131.071500px;}
.y1d1{bottom:131.970000px;}
.ye6{bottom:132.234000px;}
.y192{bottom:133.404000px;}
.y2c5{bottom:135.424500px;}
.y70{bottom:135.774000px;}
.y12{bottom:136.035000px;}
.y1d2{bottom:136.852500px;}
.y147{bottom:139.768500px;}
.yb5{bottom:141.502500px;}
.yf9{bottom:141.984000px;}
.y1b7{bottom:142.512000px;}
.y8f{bottom:143.973000px;}
.y13a{bottom:144.031500px;}
.y292{bottom:145.696500px;}
.y221{bottom:148.749000px;}
.y3c{bottom:149.689500px;}
.y1d0{bottom:151.203000px;}
.y23c{bottom:151.204500px;}
.y271{bottom:151.365000px;}
.ye5{bottom:153.126000px;}
.y11{bottom:153.924000px;}
.y191{bottom:154.294500px;}
.y2c4{bottom:154.575000px;}
.y146{bottom:159.001500px;}
.yf8{bottom:160.659000px;}
.y6f{bottom:161.149500px;}
.yb4{bottom:162.394500px;}
.y1b5{bottom:163.404000px;}
.y2f3{bottom:163.413000px;}
.y10b{bottom:163.699500px;}
.y8e{bottom:164.863500px;}
.y139{bottom:164.923500px;}
.y291{bottom:165.195000px;}
.y1b6{bottom:168.828000px;}
.y220{bottom:169.641000px;}
.y1ce{bottom:170.436000px;}
.y3b{bottom:170.581500px;}
.y10{bottom:171.811500px;}
.y23b{bottom:172.096500px;}
.y270{bottom:172.257000px;}
.y259{bottom:173.344500px;}
.y2c3{bottom:173.725500px;}
.ye3{bottom:174.016500px;}
.y190{bottom:175.186500px;}
.y1cf{bottom:175.318500px;}
.y145{bottom:178.234500px;}
.ye4{bottom:179.442000px;}
.y1ed{bottom:181.039500px;}
.y2f2{bottom:182.563500px;}
.y10a{bottom:182.932500px;}
.yb3{bottom:183.285000px;}
.y1b4{bottom:184.296000px;}
.y290{bottom:184.695000px;}
.y8d{bottom:185.755500px;}
.yf7{bottom:185.793000px;}
.y138{bottom:185.814000px;}
.yf{bottom:189.699000px;}
.y21f{bottom:190.533000px;}
.y3a{bottom:191.472000px;}
.y1ca{bottom:192.865575px;}
.y2c2{bottom:192.876000px;}
.y23a{bottom:192.988500px;}
.y258{bottom:194.236500px;}
.ye2{bottom:194.908500px;}
.y18f{bottom:196.078500px;}
.y6e{bottom:199.972500px;}
.y13e{bottom:200.662500px;}
.y2f1{bottom:201.714000px;}
.y1ec{bottom:201.930000px;}
.y109{bottom:202.165500px;}
.yb2{bottom:204.177000px;}
.y28f{bottom:204.193500px;}
.y1b3{bottom:205.186500px;}
.y8c{bottom:206.647500px;}
.y137{bottom:206.706000px;}
.ye{bottom:207.586500px;}
.y26f{bottom:207.885000px;}
.y21e{bottom:211.423500px;}
.y2c1{bottom:212.026500px;}
.y39{bottom:212.364000px;}
.y239{bottom:213.879000px;}
.y257{bottom:215.127000px;}
.ye1{bottom:215.800500px;}
.y18e{bottom:216.969000px;}
.yf6{bottom:218.460000px;}
.y6d{bottom:220.864500px;}
.y1eb{bottom:222.822000px;}
.y28e{bottom:223.692000px;}
.yfe{bottom:224.595000px;}
.yb1{bottom:225.069000px;}
.yd{bottom:225.475500px;}
.y1b2{bottom:226.078500px;}
.y26e{bottom:227.116500px;}
.y8b{bottom:227.538000px;}
.y2c0{bottom:231.177000px;}
.y21d{bottom:232.315500px;}
.y38{bottom:233.256000px;}
.y207{bottom:234.383568px;}
.y237{bottom:234.771000px;}
.y256{bottom:236.019000px;}
.ye0{bottom:236.691000px;}
.y18d{bottom:237.861000px;}
.y2f0{bottom:240.015000px;}
.y238{bottom:240.195000px;}
.y6c{bottom:241.756500px;}
.y1f3{bottom:242.197632px;}
.y136{bottom:242.334000px;}
.y1ea{bottom:243.714000px;}
.yb0{bottom:245.961000px;}
.y1b1{bottom:246.970500px;}
.y8a{bottom:248.430000px;}
.y267{bottom:249.546000px;}
.ya8{bottom:249.605016px;}
.y2bf{bottom:250.327500px;}
.y206{bottom:251.223936px;}
.yc{bottom:252.330000px;}
.y21c{bottom:253.207500px;}
.y37{bottom:254.148000px;}
.y130{bottom:254.492700px;}
.y236{bottom:255.663000px;}
.y255{bottom:256.911000px;}
.yde{bottom:257.583000px;}
.y18c{bottom:258.753000px;}
.y1f2{bottom:259.049952px;}
.y2ef{bottom:259.165500px;}
.y28d{bottom:261.123000px;}
.y135{bottom:261.567000px;}
.y6b{bottom:262.647000px;}
.ydf{bottom:263.007000px;}
.y1e9{bottom:264.606000px;}
.yaf{bottom:266.851500px;}
.ya7{bottom:267.510606px;}
.y1b0{bottom:267.861000px;}
.y205{bottom:268.076256px;}
.y12f{bottom:269.112984px;}
.y89{bottom:269.322000px;}
.yf5{bottom:269.464500px;}
.y2be{bottom:269.478000px;}
.yb{bottom:270.217500px;}
.y21b{bottom:274.099500px;}
.y36{bottom:275.038500px;}
.y1f1{bottom:275.890320px;}
.y235{bottom:276.553500px;}
.y254{bottom:277.801500px;}
.y2ee{bottom:278.316000px;}
.ydd{bottom:278.475000px;}
.y18b{bottom:279.643500px;}
.y134{bottom:280.800000px;}
.y204{bottom:281.175648px;}
.y28c{bottom:282.015000px;}
.y6a{bottom:283.539000px;}
.y12e{bottom:283.858764px;}
.ya6{bottom:285.416196px;}
.y1e8{bottom:285.496500px;}
.yf4{bottom:287.397000px;}
.y156{bottom:287.743500px;}
.ya{bottom:288.105000px;}
.y2bd{bottom:288.628500px;}
.y1ae{bottom:288.753000px;}
.y88{bottom:290.212500px;}
.y1af{bottom:294.177000px;}
.y21a{bottom:294.990000px;}
.y35{bottom:295.930500px;}
.y234{bottom:297.445500px;}
.y2ed{bottom:297.466500px;}
.y12d{bottom:298.594086px;}
.y253{bottom:298.693500px;}
.y1ef{bottom:298.936656px;}
.ya5{bottom:299.334300px;}
.ydc{bottom:299.365500px;}
.y18a{bottom:300.535500px;}
.yae{bottom:301.597500px;}
.y28b{bottom:302.907000px;}
.y129{bottom:303.229500px;}
.y195{bottom:303.542733px;}
.y69{bottom:304.431000px;}
.y9{bottom:305.994000px;}
.yf3{bottom:306.072000px;}
.y1e7{bottom:306.388500px;}
.y2bc{bottom:307.779000px;}
.y155{bottom:308.635500px;}
.y1ad{bottom:309.645000px;}
.y12c{bottom:310.066512px;}
.y87{bottom:311.104500px;}
.y240{bottom:312.407856px;}
.y219{bottom:315.882000px;}
.y2ec{bottom:316.617000px;}
.y34{bottom:316.822500px;}
.y233{bottom:318.337500px;}
.y252{bottom:319.585500px;}
.ydb{bottom:320.257500px;}
.yad{bottom:320.830500px;}
.y189{bottom:321.427500px;}
.y28a{bottom:323.797500px;}
.y8{bottom:323.881500px;}
.y68{bottom:325.323000px;}
.y2bb{bottom:326.931000px;}
.y169{bottom:327.151746px;}
.y1e6{bottom:327.280500px;}
.y173{bottom:329.526000px;}
.y1ac{bottom:330.535500px;}
.yf2{bottom:331.207500px;}
.y86{bottom:331.996500px;}
.y2eb{bottom:335.767500px;}
.y218{bottom:336.774000px;}
.y232{bottom:339.228000px;}
.y251{bottom:340.476000px;}
.yda{bottom:341.149500px;}
.y154{bottom:341.283000px;}
.y7{bottom:341.769000px;}
.y33{bottom:342.196500px;}
.y188{bottom:342.319500px;}
.ya4{bottom:343.260000px;}
.y289{bottom:344.689500px;}
.y2ba{bottom:346.081500px;}
.y67{bottom:346.213500px;}
.y1e5{bottom:348.171000px;}
.y2f6{bottom:350.188500px;}
.y172{bottom:350.418000px;}
.y1ab{bottom:351.427500px;}
.y85{bottom:352.888500px;}
.y2ea{bottom:354.918000px;}
.y217{bottom:357.664500px;}
.y6{bottom:359.658000px;}
.y231{bottom:360.120000px;}
.y153{bottom:360.516000px;}
.y250{bottom:361.368000px;}
.yd9{bottom:362.041500px;}
.y187{bottom:363.210000px;}
.yf1{bottom:363.873000px;}
.yff{bottom:365.212656px;}
.y2b9{bottom:365.232000px;}
.y288{bottom:365.581500px;}
.y66{bottom:367.105500px;}
.y1e4{bottom:369.063000px;}
.y2f5{bottom:369.339000px;}
.y171{bottom:371.310000px;}
.y1aa{bottom:372.319500px;}
.y84{bottom:373.779000px;}
.y2e9{bottom:374.070000px;}
.y216{bottom:378.556500px;}
.y152{bottom:379.749000px;}
.y230{bottom:381.012000px;}
.y24f{bottom:382.260000px;}
.yd8{bottom:382.932000px;}
.y5{bottom:383.523000px;}
.y186{bottom:384.102000px;}
.y2b8{bottom:384.382500px;}
.y287{bottom:386.472000px;}
.y65{bottom:387.997500px;}
.y2f4{bottom:388.489500px;}
.y1e3{bottom:389.955000px;}
.y170{bottom:392.200500px;}
.y1a9{bottom:393.210000px;}
.y2e8{bottom:393.220500px;}
.y83{bottom:394.671000px;}
.y151{bottom:398.982000px;}
.y215{bottom:399.448500px;}
.y4{bottom:401.410500px;}
.y22f{bottom:401.904000px;}
.yf0{bottom:402.532500px;}
.y24e{bottom:403.152000px;}
.y2b7{bottom:403.533000px;}
.yd7{bottom:403.824000px;}
.y185{bottom:404.994000px;}
.y286{bottom:407.364000px;}
.y64{bottom:408.888000px;}
.y1e2{bottom:410.845500px;}
.y2e7{bottom:412.371000px;}
.y16f{bottom:413.092500px;}
.y1a8{bottom:414.102000px;}
.y82{bottom:415.563000px;}
.y3{bottom:419.299500px;}
.y214{bottom:420.339000px;}
.y32{bottom:421.408500px;}
.y14a{bottom:421.410000px;}
.yef{bottom:421.765500px;}
.y2b6{bottom:422.683500px;}
.y22e{bottom:422.794500px;}
.y24d{bottom:424.042500px;}
.yd6{bottom:424.716000px;}
.y184{bottom:425.884500px;}
.y285{bottom:428.256000px;}
.y63{bottom:429.780000px;}
.y2e6{bottom:431.521500px;}
.y1e1{bottom:431.737500px;}
.y16e{bottom:433.984500px;}
.y1a7{bottom:434.994000px;}
.y81{bottom:436.453500px;}
.y2{bottom:437.187000px;}
.yee{bottom:440.998500px;}
.y213{bottom:441.231000px;}
.y2b5{bottom:441.834000px;}
.y24c{bottom:444.934500px;}
.yd5{bottom:445.606500px;}
.y183{bottom:446.776500px;}
.y284{bottom:449.146500px;}
.y62{bottom:450.672000px;}
.y1e0{bottom:452.629500px;}
.y1a6{bottom:455.886000px;}
.y80{bottom:457.345500px;}
.y22d{bottom:458.422500px;}
.y31{bottom:460.233000px;}
.y2b4{bottom:460.984500px;}
.y1{bottom:461.052000px;}
.y212{bottom:462.123000px;}
.ye7{bottom:463.428000px;}
.y24b{bottom:465.826500px;}
.yd4{bottom:466.498500px;}
.y16d{bottom:469.594500px;}
.y2e5{bottom:469.822500px;}
.y283{bottom:470.038500px;}
.y61{bottom:471.562500px;}
.y182{bottom:472.150500px;}
.y1df{bottom:473.520000px;}
.y1a5{bottom:476.776500px;}
.y22c{bottom:477.655500px;}
.y7f{bottom:478.237500px;}
.y2b3{bottom:480.135000px;}
.y30{bottom:481.123500px;}
.y211{bottom:483.013500px;}
.y24a{bottom:486.717000px;}
.yd3{bottom:487.390500px;}
.y16c{bottom:488.827500px;}
.y2e4{bottom:488.973000px;}
.y282{bottom:490.930500px;}
.y17a{bottom:492.206676px;}
.y60{bottom:492.454500px;}
.y1de{bottom:494.412000px;}
.y22b{bottom:496.888500px;}
.y1a4{bottom:497.668500px;}
.y7e{bottom:499.128000px;}
.y2b2{bottom:499.285500px;}
.y2f{bottom:502.015500px;}
.y210{bottom:503.905500px;}
.y181{bottom:504.297000px;}
.y179{bottom:505.899186px;}
.y249{bottom:507.609000px;}
.y2e3{bottom:508.123500px;}
.yd2{bottom:508.281000px;}
.y168{bottom:511.257000px;}
.y281{bottom:511.822500px;}
.y5f{bottom:513.346500px;}
.y1dc{bottom:515.304000px;}
.y2b1{bottom:518.436000px;}
.y203{bottom:518.924832px;}
.y224{bottom:519.318000px;}
.y178{bottom:519.581985px;}
.y7d{bottom:520.020000px;}
.y1dd{bottom:520.728000px;}
.y2e{bottom:522.907500px;}
.y1a3{bottom:523.042500px;}
.y180{bottom:523.530000px;}
.y20f{bottom:524.797500px;}
.y2e2{bottom:527.274000px;}
.y248{bottom:528.501000px;}
.y225{bottom:528.963624px;}
.yd1{bottom:529.173000px;}
.y280{bottom:532.713000px;}
.y5e{bottom:534.237000px;}
.y202{bottom:535.777152px;}
.y1db{bottom:536.194500px;}
.y2b0{bottom:537.586500px;}
.y176{bottom:538.307133px;}
.y7c{bottom:540.912000px;}
.y17f{bottom:542.763000px;}
.y1cb{bottom:543.748335px;}
.y2d{bottom:543.799500px;}
.y2e1{bottom:546.424500px;}
.yd0{bottom:550.065000px;}
.y268{bottom:552.200490px;}
.y201{bottom:552.617520px;}
.y27f{bottom:553.605000px;}
.y5d{bottom:555.129000px;}
.y2af{bottom:556.737000px;}
.y1da{bottom:557.086500px;}
.y1a2{bottom:558.385500px;}
.y20e{bottom:560.425500px;}
.y247{bottom:564.129000px;}
.y2c{bottom:564.690000px;}
.y175{bottom:565.192500px;}
.y2e0{bottom:565.575000px;}
.y14b{bottom:566.732115px;}
.ycf{bottom:570.955500px;}
.y128{bottom:571.537500px;}
.y13f{bottom:574.095240px;}
.y27e{bottom:574.497000px;}
.y1ff{bottom:575.663856px;}
.y2ae{bottom:575.887500px;}
.y5c{bottom:576.021000px;}
.y1d9{bottom:577.978500px;}
.y1a1{bottom:579.277500px;}
.y20d{bottom:579.658500px;}
.y246{bottom:583.360500px;}
.y2df{bottom:584.725500px;}
.y2b{bottom:585.582000px;}
.y7b{bottom:588.883500px;}
.yce{bottom:591.847500px;}
.y127{bottom:592.429500px;}
.y2ad{bottom:595.038000px;}
.y27d{bottom:595.387500px;}
.y5b{bottom:596.913000px;}
.y1d8{bottom:598.870500px;}
.y20c{bottom:598.890000px;}
.y1a0{bottom:600.168000px;}
.y2de{bottom:603.876000px;}
.y23f{bottom:605.790000px;}
.ya3{bottom:606.472500px;}
.y2a{bottom:606.474000px;}
.y7a{bottom:606.817500px;}
.ycd{bottom:612.739500px;}
.y126{bottom:613.320000px;}
.y2ac{bottom:614.188500px;}
.y27c{bottom:616.279500px;}
.y5a{bottom:617.803500px;}
.y1d7{bottom:619.761000px;}
.y19f{bottom:621.060000px;}
.y1fe{bottom:621.319500px;}
.y2dd{bottom:623.026500px;}
.y79{bottom:625.492500px;}
.ya2{bottom:627.363000px;}
.y29{bottom:627.364500px;}
.y12a{bottom:627.458874px;}
.y2ab{bottom:633.339000px;}
.ycc{bottom:633.631500px;}
.y125{bottom:634.212000px;}
.y27b{bottom:637.171500px;}
.y59{bottom:638.695500px;}
.y1d6{bottom:640.653000px;}
.y19e{bottom:641.952000px;}
.y2dc{bottom:642.177000px;}
.y78{bottom:644.167500px;}
.ye8{bottom:644.937456px;}
.ya1{bottom:648.255000px;}
.y28{bottom:648.256500px;}
.y2aa{bottom:652.489500px;}
.ycb{bottom:654.522000px;}
.y124{bottom:655.104000px;}
.y27a{bottom:658.062000px;}
.y58{bottom:659.587500px;}
.y2db{bottom:661.327500px;}
.y1d5{bottom:661.545000px;}
.y77{bottom:662.842500px;}
.ya0{bottom:669.147000px;}
.y27{bottom:669.148500px;}
.y2a9{bottom:671.640000px;}
.yc9{bottom:675.414000px;}
.y123{bottom:675.996000px;}
.y279{bottom:678.954000px;}
.y57{bottom:680.478000px;}
.yca{bottom:680.838000px;}
.y76{bottom:681.517500px;}
.y1d4{bottom:686.919000px;}
.y26{bottom:690.039000px;}
.y2a8{bottom:690.790500px;}
.yc8{bottom:696.306000px;}
.y122{bottom:696.886500px;}
.y19d{bottom:698.470500px;}
.y2da{bottom:699.628500px;}
.y278{bottom:699.846000px;}
.y75{bottom:700.192500px;}
.y56{bottom:701.370000px;}
.yfd{bottom:706.794000px;}
.y9f{bottom:710.929500px;}
.y25{bottom:710.931000px;}
.y2a7{bottom:714.424500px;}
.yc7{bottom:717.196500px;}
.y19c{bottom:717.703500px;}
.y121{bottom:717.778500px;}
.y74{bottom:718.125000px;}
.y2d9{bottom:718.779000px;}
.y277{bottom:720.736500px;}
.y55{bottom:722.262000px;}
.yfc{bottom:727.686000px;}
.y9e{bottom:731.821500px;}
.y24{bottom:731.823000px;}
.y73{bottom:736.057500px;}
.y19b{bottom:736.936500px;}
.y2d8{bottom:737.929500px;}
.yc6{bottom:738.088500px;}
.y120{bottom:738.670500px;}
.y276{bottom:741.628500px;}
.y54{bottom:743.152500px;}
.yfb{bottom:748.578000px;}
.y23{bottom:752.713500px;}
.y1c9{bottom:752.904000px;}
.y2a6{bottom:753.249000px;}
.y2d7{bottom:757.081500px;}
.yc5{bottom:758.980500px;}
.y194{bottom:759.366000px;}
.y11f{bottom:759.561000px;}
.y275{bottom:762.520500px;}
.y53{bottom:764.044500px;}
.y72{bottom:768.723000px;}
.y9d{bottom:773.604000px;}
.y22{bottom:773.605500px;}
.y1c8{bottom:773.796000px;}
.y2d6{bottom:776.232000px;}
.yc3{bottom:779.871000px;}
.y11e{bottom:780.453000px;}
.y2a5{bottom:781.714500px;}
.y52{bottom:784.936500px;}
.yc4{bottom:785.296500px;}
.y274{bottom:787.894500px;}
.y21{bottom:794.497500px;}
.y1c7{bottom:794.686500px;}
.y2d5{bottom:795.382500px;}
.yc2{bottom:800.763000px;}
.y2a4{bottom:801.213000px;}
.y11d{bottom:801.345000px;}
.y51{bottom:805.827000px;}
.y9c{bottom:808.350000px;}
.y266{bottom:812.791500px;}
.y2d4{bottom:814.533000px;}
.y1c6{bottom:815.578500px;}
.yc1{bottom:821.655000px;}
.y11c{bottom:822.235500px;}
.y50{bottom:826.719000px;}
.y9b{bottom:827.583000px;}
.y2a3{bottom:829.678500px;}
.y265{bottom:833.683500px;}
.y20{bottom:834.517500px;}
.y1c5{bottom:836.470500px;}
.yc0{bottom:842.545500px;}
.y11b{bottom:843.127500px;}
.y4f{bottom:847.611000px;}
.y92{bottom:850.012500px;}
.y2d3{bottom:852.834000px;}
.y264{bottom:854.574000px;}
.y1f{bottom:854.997000px;}
.y2a2{bottom:858.144000px;}
.y167{bottom:858.882000px;}
.ybf{bottom:863.437500px;}
.y11a{bottom:864.019500px;}
.y1e{bottom:866.796000px;}
.y4e{bottom:868.503000px;}
.y2d2{bottom:871.984500px;}
.y1c4{bottom:872.497500px;}
.y263{bottom:875.466000px;}
.y1fd{bottom:877.444500px;}
.y1c1{bottom:879.634500px;}
.y166{bottom:879.772500px;}
.y1c0{bottom:884.118000px;}
.ybe{bottom:884.329500px;}
.y119{bottom:884.910000px;}
.y2a1{bottom:886.608000px;}
.y1d{bottom:887.275500px;}
.y4d{bottom:889.393500px;}
.y2d1{bottom:891.135000px;}
.y1c3{bottom:893.389500px;}
.y1bd{bottom:893.832000px;}
.y262{bottom:896.358000px;}
.y1fc{bottom:896.677500px;}
.y165{bottom:900.664500px;}
.y1c{bottom:903.415500px;}
.y1bc{bottom:904.045500px;}
.ybd{bottom:905.220000px;}
.y118{bottom:905.802000px;}
.y2a0{bottom:906.108000px;}
.y4c{bottom:910.285500px;}
.y1bf{bottom:911.017500px;}
.y1c2{bottom:914.281500px;}
.y1b{bottom:915.214500px;}
.y1be{bottom:915.501000px;}
.y261{bottom:917.248500px;}
.y1ee{bottom:919.107000px;}
.y164{bottom:921.556500px;}
.y29f{bottom:925.606500px;}
.ybc{bottom:926.112000px;}
.y117{bottom:926.694000px;}
.y2d0{bottom:929.436000px;}
.y4b{bottom:931.177500px;}
.y1a{bottom:935.694000px;}
.y260{bottom:938.140500px;}
.y163{bottom:942.448500px;}
.y29e{bottom:945.105000px;}
.ybb{bottom:947.004000px;}
.y116{bottom:947.584500px;}
.y2cf{bottom:948.586500px;}
.y4a{bottom:952.068000px;}
.y25f{bottom:959.032500px;}
.y162{bottom:961.098000px;}
.y161{bottom:963.339000px;}
.y29d{bottom:964.603500px;}
.y2ce{bottom:967.737000px;}
.yba{bottom:967.896000px;}
.y115{bottom:968.476500px;}
.y49{bottom:972.960000px;}
.y25e{bottom:979.924500px;}
.y19{bottom:980.370000px;}
.y29c{bottom:984.102000px;}
.y160{bottom:984.231000px;}
.y2cd{bottom:986.887500px;}
.y114{bottom:989.368500px;}
.y1bb{bottom:991.122000px;}
.yb9{bottom:993.270000px;}
.y48{bottom:993.852000px;}
.y18{bottom:1001.262000px;}
.y15e{bottom:1002.393000px;}
.y15f{bottom:1002.880500px;}
.y29b{bottom:1003.600500px;}
.y15d{bottom:1005.123000px;}
.y2cc{bottom:1006.038000px;}
.y112{bottom:1007.530500px;}
.y111{bottom:1010.260500px;}
.y25c{bottom:1013.670000px;}
.y25d{bottom:1013.937000px;}
.y47{bottom:1014.742500px;}
.y113{bottom:1015.684500px;}
.yb8{bottom:1017.702000px;}
.y25b{bottom:1018.225500px;}
.y29a{bottom:1023.100500px;}
.y2cb{bottom:1025.188500px;}
.y110{bottom:1031.151000px;}
.y46{bottom:1035.634500px;}
.y17{bottom:1040.086500px;}
.y15b{bottom:1040.220000px;}
.y149{bottom:1041.058500px;}
.y299{bottom:1042.599000px;}
.y15c{bottom:1043.956500px;}
.y2ca{bottom:1044.339000px;}
.y159{bottom:1051.278000px;}
.y10f{bottom:1052.043000px;}
.y45{bottom:1056.526500px;}
.y298{bottom:1062.097500px;}
.y2c9{bottom:1063.489500px;}
.y15a{bottom:1066.224000px;}
.y16{bottom:1071.424500px;}
.y10e{bottom:1072.935000px;}
.y44{bottom:1077.417000px;}
.y297{bottom:1081.596000px;}
.y2c8{bottom:1082.640000px;}
.y10d{bottom:1093.825500px;}
.y43{bottom:1098.309000px;}
.y296{bottom:1101.094500px;}
.y2c7{bottom:1101.790500px;}
.y15{bottom:1102.761000px;}
.y13d{bottom:1103.734500px;}
.y10c{bottom:1114.717500px;}
.y158{bottom:1116.471000px;}
.y42{bottom:1119.201000px;}
.y295{bottom:1120.593000px;}
.y2c6{bottom:1120.941000px;}
.y174{bottom:1124.625000px;}
.y41{bottom:1140.091500px;}
.y40{bottom:1200.543000px;}
.h23{height:2.391024px;}
.h27{height:9.645645px;}
.h28{height:12.421793px;}
.h2f{height:16.076074px;}
.h30{height:20.702988px;}
.h2a{height:20.898896px;}
.h1a{height:22.506504px;}
.h1d{height:24.114111px;}
.h16{height:25.721719px;}
.h2b{height:26.913885px;}
.h1b{height:28.984184px;}
.h1e{height:31.054482px;}
.h6{height:32.565965px;}
.h10{height:33.124781px;}
.h12{height:35.195080px;}
.h14{height:35.503200px;}
.h31{height:37.551283px;}
.h2{height:37.993262px;}
.h24{height:38.253024px;}
.h22{height:38.259024px;}
.h13{height:41.250077px;}
.ha{height:41.723369px;}
.h1f{height:42.043500px;}
.h34{height:42.380900px;}
.h17{height:43.038432px;}
.h7{height:43.421105px;}
.h3{height:43.815515px;}
.he{height:46.714950px;}
.hb{height:48.848947px;}
.h9{height:51.646464px;}
.h8{height:54.276245px;}
.h5{height:54.411312px;}
.hc{height:57.205200px;}
.hd{height:62.946077px;}
.h38{height:65.934077px;}
.h3a{height:71.430245px;}
.h37{height:74.349024px;}
.h4{height:77.469696px;}
.h25{height:83.562245px;}
.h39{height:84.156077px;}
.h21{height:98.043024px;}
.h2d{height:142.863024px;}
.hf{height:225.537600px;}
.h33{height:230.926800px;}
.h32{height:235.929600px;}
.h11{height:240.452250px;}
.h19{height:244.668900px;}
.h2c{height:294.413925px;}
.h36{height:301.744800px;}
.h26{height:323.998650px;}
.h18{height:357.642000px;}
.h29{height:488.590050px;}
.h35{height:513.570750px;}
.h2e{height:536.398425px;}
.h3b{height:539.605125px;}
.h20{height:551.781000px;}
.h1c{height:563.562000px;}
.h15{height:632.131200px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w9{width:176.255325px;}
.wc{width:267.053850px;}
.w6{width:405.489735px;}
.wa{width:418.135088px;}
.wb{width:428.857455px;}
.wf{width:440.829480px;}
.w7{width:477.653175px;}
.w8{width:480.107925px;}
.w11{width:495.423787px;}
.w10{width:507.268920px;}
.w2{width:526.512360px;}
.w4{width:529.080120px;}
.we{width:530.745720px;}
.w5{width:532.013880px;}
.wd{width:533.825880px;}
.w3{width:559.828913px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xd7{left:-11.881254px;}
.x87{left:-10.573290px;}
.x8d{left:-9.100665px;}
.xa4{left:-7.036166px;}
.x9e{left:-3.247461px;}
.x50{left:-1.650216px;}
.x0{left:0.000000px;}
.xcf{left:1.816584px;}
.x1{left:53.574000px;}
.xeb{left:85.848000px;}
.x9f{left:95.086539px;}
.xc3{left:159.786540px;}
.xa0{left:179.003025px;}
.xa5{left:206.020835px;}
.xb0{left:212.402502px;}
.xd8{left:215.044368px;}
.x80{left:227.366601px;}
.x88{left:235.261710px;}
.x8e{left:236.734335px;}
.xe7{left:242.674043px;}
.xe1{left:246.534792px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x25{left:254.143500px;}
.x66{left:261.104424px;}
.x79{left:262.989384px;}
.xae{left:265.096500px;}
.x83{left:267.825000px;}
.x69{left:268.908000px;}
.x3{left:269.914500px;}
.x8b{left:273.154500px;}
.xaf{left:277.387500px;}
.xaa{left:278.977500px;}
.x84{left:280.116000px;}
.x5{left:281.479500px;}
.xa2{left:285.202500px;}
.x6a{left:287.662500px;}
.x3d{left:289.341000px;}
.x16{left:290.467500px;}
.x68{left:291.763500px;}
.x37{left:294.660000px;}
.x3e{left:296.499000px;}
.x9b{left:299.589000px;}
.xd1{left:302.146500px;}
.x26{left:304.305000px;}
.x17{left:305.412000px;}
.xd2{left:307.212000px;}
.x38{left:309.604500px;}
.x70{left:311.286000px;}
.x3b{left:312.451500px;}
.x67{left:316.272000px;}
.xe{left:317.892000px;}
.x7b{left:319.309500px;}
.xd3{left:322.156500px;}
.xa{left:325.185000px;}
.x3f{left:330.354000px;}
.xb{left:332.658000px;}
.x63{left:333.736500px;}
.x14{left:337.176000px;}
.xd5{left:338.442000px;}
.x57{left:340.182000px;}
.x39{left:342.099000px;}
.x3c{left:343.602000px;}
.x15{left:344.647500px;}
.x58{left:346.608000px;}
.x44{left:348.082500px;}
.x5b{left:351.967500px;}
.xd6{left:353.386500px;}
.x52{left:354.519000px;}
.x3a{left:357.043500px;}
.xe8{left:361.840500px;}
.x45{left:364.125000px;}
.x6b{left:365.382000px;}
.xa3{left:367.041000px;}
.x53{left:369.463500px;}
.x4b{left:370.653000px;}
.x4e{left:373.480500px;}
.x91{left:374.725500px;}
.xbe{left:377.025000px;}
.x71{left:379.813500px;}
.x1b{left:383.361000px;}
.x4c{left:385.597500px;}
.xc1{left:387.993000px;}
.x76{left:390.232500px;}
.x2f{left:396.273000px;}
.x1c{left:398.304000px;}
.x64{left:402.037500px;}
.x77{left:406.267500px;}
.x65{left:408.463500px;}
.x30{left:411.217500px;}
.xbf{left:412.851000px;}
.x31{left:415.027500px;}
.xc0{left:419.277000px;}
.x94{left:423.849000px;}
.x74{left:424.900500px;}
.x32{left:429.972000px;}
.x75{left:431.326500px;}
.xc6{left:432.330000px;}
.x40{left:435.067500px;}
.x72{left:436.611000px;}
.x85{left:437.923500px;}
.x81{left:442.079799px;}
.x1f{left:443.536500px;}
.xb1{left:444.759000px;}
.x86{left:447.153000px;}
.x41{left:450.010500px;}
.x78{left:451.554000px;}
.x42{left:453.672000px;}
.xb2{left:455.821500px;}
.x20{left:458.479500px;}
.x54{left:459.688500px;}
.x59{left:463.375500px;}
.xe3{left:466.077000px;}
.x43{left:468.616500px;}
.x5a{left:470.182500px;}
.xb3{left:471.516000px;}
.x55{left:475.717500px;}
.xc7{left:476.790000px;}
.xb4{left:480.745500px;}
.x18{left:484.239000px;}
.x89{left:487.172520px;}
.x6e{left:488.452500px;}
.xf{left:491.419500px;}
.x33{left:496.509000px;}
.x6f{left:497.683500px;}
.x10{left:498.891000px;}
.x73{left:500.206500px;}
.xcd{left:502.197000px;}
.x46{left:505.722000px;}
.x7a{left:508.375896px;}
.xc4{left:509.467500px;}
.x34{left:511.452000px;}
.x7c{left:514.408500px;}
.x98{left:516.234000px;}
.x1d{left:517.549500px;}
.x47{left:520.666500px;}
.xbb{left:522.367500px;}
.xc5{left:523.896000px;}
.xab{left:526.026000px;}
.x4f{left:529.281528px;}
.xd9{left:531.034500px;}
.x1e{left:532.494000px;}
.x56{left:534.982500px;}
.x6c{left:536.448000px;}
.xbc{left:538.386000px;}
.x95{left:539.806500px;}
.x7d{left:543.150000px;}
.xcc{left:544.255500px;}
.x6d{left:545.677500px;}
.xda{left:547.359000px;}
.xdf{left:548.457000px;}
.xbd{left:553.240500px;}
.xa1{left:556.503000px;}
.xb5{left:558.460500px;}
.x7e{left:560.634000px;}
.x51{left:561.952604px;}
.x5c{left:563.502000px;}
.x8a{left:566.470500px;}
.xac{left:573.742500px;}
.x19{left:576.258000px;}
.x5d{left:578.445000px;}
.xb8{left:579.799500px;}
.x1a{left:591.201000px;}
.xc2{left:595.255500px;}
.x96{left:596.794500px;}
.xb6{left:599.745000px;}
.xe4{left:603.768000px;}
.xb7{left:606.171000px;}
.xd4{left:611.977500px;}
.xb9{left:613.632000px;}
.xba{left:620.439000px;}
.xe9{left:624.274500px;}
.x99{left:633.631500px;}
.x97{left:635.245500px;}
.x5e{left:637.435500px;}
.xe0{left:638.619000px;}
.xdd{left:642.642000px;}
.xdb{left:647.595000px;}
.x9a{left:651.414000px;}
.x5f{left:653.568000px;}
.x35{left:655.080000px;}
.xde{left:657.585000px;}
.xdc{left:662.539500px;}
.x60{left:668.811000px;}
.x36{left:670.023000px;}
.x27{left:674.613000px;}
.x61{left:684.757500px;}
.x82{left:686.956500px;}
.x28{left:688.587000px;}
.x21{left:691.468500px;}
.xe5{left:695.296500px;}
.xa7{left:700.546500px;}
.x49{left:704.290500px;}
.x22{left:706.411500px;}
.xe6{left:707.587500px;}
.x90{left:712.510500px;}
.xea{left:715.051500px;}
.x29{left:718.525500px;}
.x11{left:721.962000px;}
.x62{left:726.811500px;}
.x12{left:729.435000px;}
.x2a{left:732.559500px;}
.xc8{left:734.124000px;}
.x92{left:736.248000px;}
.xc{left:739.651500px;}
.x23{left:744.556500px;}
.xd{left:747.123000px;}
.xc9{left:748.555500px;}
.xd0{left:753.930000px;}
.x13{left:754.987500px;}
.x9c{left:758.287500px;}
.x24{left:759.499500px;}
.x9d{left:764.895000px;}
.x93{left:767.148000px;}
.xe2{left:773.160000px;}
.x8c{left:775.794000px;}
.xca{left:778.584000px;}
.x48{left:781.551000px;}
.xa6{left:782.889000px;}
.x6{left:785.442000px;}
.xcb{left:786.891000px;}
.x8f{left:788.220000px;}
.xa8{left:790.488000px;}
.x7{left:792.913500px;}
.x8{left:796.725000px;}
.x2b{left:798.943500px;}
.xce{left:801.030000px;}
.xa9{left:802.780500px;}
.x9{left:804.196500px;}
.x7f{left:811.875000px;}
.x2c{left:813.886500px;}
.x2d{left:817.698000px;}
.xad{left:823.404000px;}
.x4d{left:826.621500px;}
.x2e{left:832.642500px;}
.x4a{left:837.829500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v7{vertical-align:-13.280000pt;}
.v3{vertical-align:-10.624000pt;}
.v5{vertical-align:-9.706667pt;}
.v8{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.317333pt;}
.v13{vertical-align:15.248000pt;}
.v11{vertical-align:16.197333pt;}
.v1{vertical-align:19.290667pt;}
.v10{vertical-align:21.941333pt;}
.vd{vertical-align:26.032000pt;}
.vc{vertical-align:29.781333pt;}
.v9{vertical-align:31.882667pt;}
.v12{vertical-align:38.138667pt;}
.va{vertical-align:43.066667pt;}
.vb{vertical-align:45.162667pt;}
.vf{vertical-align:63.962667pt;}
.v6{vertical-align:85.024000pt;}
.ve{vertical-align:124.864000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls52{letter-spacing:0.000100pt;}
.ls53{letter-spacing:0.000329pt;}
.ls21{letter-spacing:0.000423pt;}
.ls9{letter-spacing:0.000544pt;}
.ls5{letter-spacing:0.001718pt;}
.ls1f{letter-spacing:0.002114pt;}
.ls3f{letter-spacing:0.002255pt;}
.ls40{letter-spacing:0.002425pt;}
.ls54{letter-spacing:0.002471pt;}
.ls5e{letter-spacing:0.003405pt;}
.ls25{letter-spacing:0.487835pt;}
.ls2e{letter-spacing:0.525089pt;}
.ls46{letter-spacing:0.596214pt;}
.ls48{letter-spacing:0.601548pt;}
.ls19{letter-spacing:0.637762pt;}
.ls10{letter-spacing:0.643096pt;}
.ls57{letter-spacing:0.663467pt;}
.lsf{letter-spacing:0.663756pt;}
.ls51{letter-spacing:0.664563pt;}
.ls4b{letter-spacing:0.665067pt;}
.ls5b{letter-spacing:0.928300pt;}
.ls5a{letter-spacing:0.933633pt;}
.ls2a{letter-spacing:1.198400pt;}
.ls28{letter-spacing:1.255756pt;}
.ls31{letter-spacing:1.262881pt;}
.ls33{letter-spacing:1.299096pt;}
.ls37{letter-spacing:1.302029pt;}
.ls3a{letter-spacing:1.312749pt;}
.ls32{letter-spacing:1.314482pt;}
.ls50{letter-spacing:1.325897pt;}
.ls35{letter-spacing:1.326400pt;}
.ls42{letter-spacing:1.326652pt;}
.ls49{letter-spacing:1.331230pt;}
.ls2c{letter-spacing:1.331733pt;}
.ls45{letter-spacing:1.331985pt;}
.ls44{letter-spacing:1.854400pt;}
.ls30{letter-spacing:1.859733pt;}
.ls29{letter-spacing:2.164214pt;}
.ls16{letter-spacing:2.657067pt;}
.ls1{letter-spacing:2.665203pt;}
.lsd{letter-spacing:3.143835pt;}
.ls18{letter-spacing:3.163733pt;}
.ls34{letter-spacing:3.825067pt;}
.ls36{letter-spacing:3.963362pt;}
.ls3b{letter-spacing:3.965149pt;}
.ls2d{letter-spacing:3.970482pt;}
.ls2f{letter-spacing:4.230400pt;}
.ls0{letter-spacing:7.437600pt;}
.ls2b{letter-spacing:9.516533pt;}
.ls47{letter-spacing:9.521867pt;}
.ls7{letter-spacing:10.631867pt;}
.ls63{letter-spacing:10.727793pt;}
.ls39{letter-spacing:10.968429pt;}
.ls38{letter-spacing:11.593548pt;}
.ls4d{letter-spacing:11.635096pt;}
.ls23{letter-spacing:11.636317pt;}
.ls27{letter-spacing:11.689451pt;}
.ls60{letter-spacing:11.691512pt;}
.ls64{letter-spacing:11.730458pt;}
.ls65{letter-spacing:11.748504pt;}
.ls66{letter-spacing:11.905855pt;}
.ls55{letter-spacing:11.950070pt;}
.ls5f{letter-spacing:11.954133pt;}
.ls67{letter-spacing:11.959467pt;}
.ls62{letter-spacing:11.986016pt;}
.ls61{letter-spacing:11.988631pt;}
.ls5d{letter-spacing:12.023251pt;}
.ls5c{letter-spacing:12.052856pt;}
.ls69{letter-spacing:12.060962pt;}
.ls41{letter-spacing:12.408259pt;}
.lsc{letter-spacing:13.017797pt;}
.lsa{letter-spacing:13.070931pt;}
.ls1b{letter-spacing:13.124065pt;}
.ls1e{letter-spacing:13.282641pt;}
.ls3d{letter-spacing:13.283467pt;}
.ls24{letter-spacing:13.283733pt;}
.ls1d{letter-spacing:13.336601pt;}
.ls1c{letter-spacing:13.389734pt;}
.ls3e{letter-spacing:13.496002pt;}
.lsb{letter-spacing:13.602270pt;}
.ls4f{letter-spacing:13.649067pt;}
.ls4c{letter-spacing:13.654400pt;}
.ls1a{letter-spacing:13.923096pt;}
.ls26{letter-spacing:13.947090pt;}
.ls56{letter-spacing:15.395096pt;}
.ls59{letter-spacing:15.400429pt;}
.ls68{letter-spacing:15.579441pt;}
.lse{letter-spacing:15.937067pt;}
.ls13{letter-spacing:15.942400pt;}
.ls43{letter-spacing:16.020214pt;}
.ls4e{letter-spacing:16.061762pt;}
.ls58{letter-spacing:16.352300pt;}
.ls4a{letter-spacing:16.963096pt;}
.ls2{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.ls3{letter-spacing:64.321067pt;}
.ls20{letter-spacing:378.061089pt;}
.ls3c{letter-spacing:566.646082pt;}
.ls11{letter-spacing:618.685089pt;}
.ls14{letter-spacing:640.893089pt;}
.ls15{letter-spacing:642.087756pt;}
.ls12{letter-spacing:644.135756pt;}
.ls22{letter-spacing:680.797089pt;}
.ls17{letter-spacing:808.130422pt;}
.ws41{word-spacing:-13.283467pt;}
.wsb{word-spacing:-12.760670pt;}
.ws82{word-spacing:-11.955200pt;}
.ws24{word-spacing:-10.626800pt;}
.ws9{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws26{word-spacing:-2.869229pt;}
.ws43{word-spacing:-2.816095pt;}
.ws2f{word-spacing:-2.284756pt;}
.wsea{word-spacing:-2.247578pt;}
.ws45{word-spacing:-2.178489pt;}
.ws9d{word-spacing:-2.072221pt;}
.ws49{word-spacing:-2.019087pt;}
.wsca{word-spacing:-2.008474pt;}
.ws7f{word-spacing:-1.859685pt;}
.ws0{word-spacing:-1.859680pt;}
.ws2{word-spacing:-1.822486pt;}
.ws88{word-spacing:-1.753418pt;}
.wsf5{word-spacing:-1.673728pt;}
.ws54{word-spacing:-1.647150pt;}
.wse0{word-spacing:-1.625907pt;}
.ws39{word-spacing:-1.594016pt;}
.wse2{word-spacing:-1.578086pt;}
.ws7e{word-spacing:-1.540882pt;}
.wsc8{word-spacing:-1.530266pt;}
.ws59{word-spacing:-1.434614pt;}
.ws29{word-spacing:-1.275213pt;}
.ws51{word-spacing:-1.243341pt;}
.ws5a{word-spacing:-1.168945pt;}
.wsbc{word-spacing:-1.115811pt;}
.wsbb{word-spacing:-1.062677pt;}
.ws94{word-spacing:-0.956410pt;}
.ws56{word-spacing:-0.903276pt;}
.wsec{word-spacing:-0.860774pt;}
.ws71{word-spacing:-0.850142pt;}
.ws4b{word-spacing:-0.797008pt;}
.wsa6{word-spacing:-0.765133pt;}
.ws4a{word-spacing:-0.743874pt;}
.ws44{word-spacing:-0.690740pt;}
.ws5d{word-spacing:-0.637606pt;}
.ws98{word-spacing:-0.621670pt;}
.ws57{word-spacing:-0.584473pt;}
.wsc6{word-spacing:-0.573850pt;}
.ws31{word-spacing:-0.478205pt;}
.wsc4{word-spacing:-0.430387pt;}
.ws9b{word-spacing:-0.425071pt;}
.ws78{word-spacing:-0.371937pt;}
.wsee{word-spacing:-0.334746pt;}
.ws14{word-spacing:-0.318803pt;}
.wsd5{word-spacing:-0.286925pt;}
.wse{word-spacing:-0.265669pt;}
.ws8d{word-spacing:-0.239104pt;}
.ws1f{word-spacing:-0.212535pt;}
.ws4e{word-spacing:-0.191283pt;}
.ws10{word-spacing:-0.159402pt;}
.wsbd{word-spacing:-0.143462pt;}
.ws15{word-spacing:-0.106268pt;}
.ws83{word-spacing:-0.095642pt;}
.ws1c{word-spacing:-0.053134pt;}
.ws84{word-spacing:-0.047821pt;}
.ws25{word-spacing:-0.042507pt;}
.ws89{word-spacing:-0.040382pt;}
.ws5{word-spacing:-0.037194pt;}
.wsf8{word-spacing:-0.022844pt;}
.ws99{word-spacing:-0.005683pt;}
.ws2d{word-spacing:-0.003123pt;}
.ws8{word-spacing:0.000000pt;}
.wsc5{word-spacing:0.047821pt;}
.ws16{word-spacing:0.053134pt;}
.wscf{word-spacing:0.095642pt;}
.ws13{word-spacing:0.106268pt;}
.ws9e{word-spacing:0.143462pt;}
.ws20{word-spacing:0.159402pt;}
.wsc3{word-spacing:0.191283pt;}
.ws18{word-spacing:0.212535pt;}
.wsc7{word-spacing:0.239104pt;}
.ws3f{word-spacing:0.265669pt;}
.ws6f{word-spacing:0.286925pt;}
.ws17{word-spacing:0.318803pt;}
.ws19{word-spacing:0.371937pt;}
.ws7{word-spacing:0.375335pt;}
.ws75{word-spacing:0.430387pt;}
.ws9a{word-spacing:0.478205pt;}
.wsa7{word-spacing:0.526029pt;}
.ws12{word-spacing:0.531339pt;}
.ws70{word-spacing:0.573850pt;}
.ws2a{word-spacing:0.584473pt;}
.ws68{word-spacing:0.637606pt;}
.ws6c{word-spacing:0.660000pt;}
.wsaf{word-spacing:0.661867pt;}
.ws80{word-spacing:0.663193pt;}
.ws46{word-spacing:0.665333pt;}
.wsb9{word-spacing:0.690740pt;}
.wsf3{word-spacing:0.717312pt;}
.ws3e{word-spacing:0.743874pt;}
.ws81{word-spacing:0.765133pt;}
.ws5e{word-spacing:0.797008pt;}
.ws7c{word-spacing:0.850142pt;}
.wsb5{word-spacing:0.860774pt;}
.wsba{word-spacing:0.903276pt;}
.ws3c{word-spacing:0.956410pt;}
.wsf4{word-spacing:1.004237pt;}
.ws1d{word-spacing:1.009543pt;}
.wse6{word-spacing:1.052058pt;}
.ws85{word-spacing:1.062677pt;}
.ws2e{word-spacing:1.115811pt;}
.wsa4{word-spacing:1.168945pt;}
.ws30{word-spacing:1.222079pt;}
.ws72{word-spacing:1.275213pt;}
.ws61{word-spacing:1.291162pt;}
.wsf{word-spacing:1.328347pt;}
.ws37{word-spacing:1.381481pt;}
.ws5f{word-spacing:1.434614pt;}
.ws27{word-spacing:1.487748pt;}
.wsab{word-spacing:1.530266pt;}
.ws7d{word-spacing:1.540882pt;}
.ws60{word-spacing:1.594016pt;}
.ws4d{word-spacing:1.700284pt;}
.ws22{word-spacing:1.753418pt;}
.wsa9{word-spacing:1.806551pt;}
.wsbe{word-spacing:1.817190pt;}
.wsb8{word-spacing:1.859685pt;}
.ws4f{word-spacing:1.912819pt;}
.wsd4{word-spacing:2.008474pt;}
.ws7a{word-spacing:2.019087pt;}
.wsb4{word-spacing:2.072221pt;}
.wsbf{word-spacing:2.104115pt;}
.ws4c{word-spacing:2.125355pt;}
.ws86{word-spacing:2.178489pt;}
.ws95{word-spacing:2.231622pt;}
.ws6b{word-spacing:2.284756pt;}
.wsd2{word-spacing:2.295398pt;}
.ws34{word-spacing:2.391024pt;}
.ws53{word-spacing:2.444158pt;}
.ws6a{word-spacing:2.497292pt;}
.ws6d{word-spacing:2.550426pt;}
.wsc{word-spacing:2.550432pt;}
.ws67{word-spacing:2.603559pt;}
.ws6e{word-spacing:2.656693pt;}
.ws77{word-spacing:2.762961pt;}
.wsf7{word-spacing:2.773606pt;}
.wsf0{word-spacing:2.821427pt;}
.wsfc{word-spacing:2.864802pt;}
.ws3d{word-spacing:2.869229pt;}
.wse5{word-spacing:2.869248pt;}
.wsd{word-spacing:2.896525pt;}
.wsc2{word-spacing:2.917069pt;}
.ws58{word-spacing:2.922363pt;}
.ws52{word-spacing:2.975497pt;}
.wsaa{word-spacing:3.012710pt;}
.ws74{word-spacing:3.028630pt;}
.ws2b{word-spacing:3.081764pt;}
.wsa0{word-spacing:3.108352pt;}
.ws2c{word-spacing:3.134898pt;}
.ws1a{word-spacing:3.185311pt;}
.wsa1{word-spacing:3.188032pt;}
.ws96{word-spacing:3.241166pt;}
.wsac{word-spacing:3.294300pt;}
.ws38{word-spacing:3.347434pt;}
.wsa5{word-spacing:3.400567pt;}
.wsdc{word-spacing:3.443098pt;}
.ws8e{word-spacing:3.453701pt;}
.ws28{word-spacing:3.506835pt;}
.wsb7{word-spacing:3.559969pt;}
.ws62{word-spacing:3.586560pt;}
.wsad{word-spacing:3.613103pt;}
.wsf2{word-spacing:3.634381pt;}
.ws35{word-spacing:3.666237pt;}
.ws91{word-spacing:3.719371pt;}
.ws9f{word-spacing:3.730022pt;}
.ws8f{word-spacing:3.772505pt;}
.wsce{word-spacing:3.777843pt;}
.ws32{word-spacing:3.825638pt;}
.ws1b{word-spacing:3.825664pt;}
.wsd8{word-spacing:3.921306pt;}
.ws87{word-spacing:4.144442pt;}
.ws79{word-spacing:4.197575pt;}
.ws48{word-spacing:4.303843pt;}
.ws11{word-spacing:4.356977pt;}
.ws97{word-spacing:4.463245pt;}
.ws73{word-spacing:4.569513pt;}
.ws3b{word-spacing:4.622646pt;}
.wsa2{word-spacing:4.728914pt;}
.ws33{word-spacing:4.782048pt;}
.ws90{word-spacing:4.835182pt;}
.ws36{word-spacing:4.888316pt;}
.ws5b{word-spacing:5.047717pt;}
.wseb{word-spacing:5.116826pt;}
.ws69{word-spacing:5.207119pt;}
.ws21{word-spacing:5.260253pt;}
.ws47{word-spacing:5.313387pt;}
.ws50{word-spacing:5.366521pt;}
.wsa3{word-spacing:5.738458pt;}
.ws5c{word-spacing:5.791591pt;}
.wsb6{word-spacing:5.834138pt;}
.ws64{word-spacing:5.842667pt;}
.ws8c{word-spacing:5.897859pt;}
.ws8b{word-spacing:5.950993pt;}
.ws93{word-spacing:6.057261pt;}
.ws92{word-spacing:6.163529pt;}
.ws3a{word-spacing:6.269796pt;}
.wsc0{word-spacing:6.407987pt;}
.ws7b{word-spacing:6.641733pt;}
.ws76{word-spacing:6.694912pt;}
.ws1e{word-spacing:6.748001pt;}
.wsa8{word-spacing:7.066804pt;}
.ws3{word-spacing:7.400323pt;}
.wscb{word-spacing:7.588655pt;}
.wsfb{word-spacing:8.416461pt;}
.wsc1{word-spacing:8.922352pt;}
.wscd{word-spacing:9.516339pt;}
.wsc9{word-spacing:9.898906pt;}
.ws6{word-spacing:10.042272pt;}
.wse1{word-spacing:10.329293pt;}
.ws23{word-spacing:10.581753pt;}
.wse4{word-spacing:11.663792pt;}
.wse7{word-spacing:11.716696pt;}
.wsfa{word-spacing:11.800263pt;}
.wsdf{word-spacing:11.811738pt;}
.wsed{word-spacing:11.831615pt;}
.wsdb{word-spacing:11.859558pt;}
.wsd7{word-spacing:11.899187pt;}
.wsde{word-spacing:11.900049pt;}
.wse8{word-spacing:11.901850pt;}
.wsf9{word-spacing:11.907379pt;}
.wsd1{word-spacing:11.955200pt;}
.wsd9{word-spacing:12.003021pt;}
.wsf6{word-spacing:12.050842pt;}
.ws55{word-spacing:13.230333pt;}
.wsb2{word-spacing:14.116173pt;}
.wsd6{word-spacing:14.473718pt;}
.wse9{word-spacing:14.585344pt;}
.wse3{word-spacing:14.771226pt;}
.wsfd{word-spacing:14.775390pt;}
.wsd3{word-spacing:14.776627pt;}
.wsda{word-spacing:14.824448pt;}
.wsd0{word-spacing:14.920090pt;}
.wsef{word-spacing:15.159194pt;}
.ws8a{word-spacing:15.945370pt;}
.ws9c{word-spacing:16.000735pt;}
.wsae{word-spacing:16.302963pt;}
.wsdd{word-spacing:16.785101pt;}
.wsb1{word-spacing:18.543228pt;}
.wscc{word-spacing:19.463066pt;}
.ws1{word-spacing:19.715148pt;}
.wsf1{word-spacing:23.719117pt;}
.wsa{word-spacing:35.593054pt;}
.ws63{word-spacing:438.726337pt;}
.ws65{word-spacing:572.251744pt;}
.ws40{word-spacing:615.555845pt;}
.wsb0{word-spacing:625.303015pt;}
.wsb3{word-spacing:686.631804pt;}
.ws42{word-spacing:771.131807pt;}
.ws66{word-spacing:847.006969pt;}
._2b{margin-left:-21.323131pt;}
._7{margin-left:-6.748001pt;}
._3{margin-left:-5.260288pt;}
._6{margin-left:-3.910662pt;}
._1{margin-left:-2.789520pt;}
._2{margin-left:-1.338970pt;}
._23{width:1.162854pt;}
._4{width:2.664707pt;}
._2d{width:3.558952pt;}
._26{width:4.681492pt;}
._29{width:6.588599pt;}
._0{width:9.670336pt;}
._19{width:11.795718pt;}
._f{width:12.964663pt;}
._16{width:13.931731pt;}
._24{width:15.190631pt;}
._8{width:16.205829pt;}
._10{width:17.268507pt;}
._9{width:18.182405pt;}
._a{width:19.925200pt;}
._1a{width:20.934743pt;}
._12{width:22.103689pt;}
._2a{width:23.017622pt;}
._14{width:24.175909pt;}
._22{width:25.111075pt;}
._11{width:26.248130pt;}
._e{width:27.417075pt;}
._13{width:28.437242pt;}
._15{width:31.030178pt;}
._b{width:32.677328pt;}
._28{width:34.250100pt;}
._2e{width:40.663594pt;}
._5{width:48.360253pt;}
._2c{width:54.993920pt;}
._27{width:105.606575pt;}
._1e{width:412.478207pt;}
._1c{width:470.766059pt;}
._1b{width:490.372455pt;}
._1f{width:533.304620pt;}
._1d{width:543.665724pt;}
._20{width:607.745167pt;}
._17{width:707.477435pt;}
._21{width:720.867169pt;}
._18{width:844.695637pt;}
._c{width:1745.874667pt;}
._25{width:2273.176000pt;}
._d{width:2294.429333pt;}
.fs12{font-size:12.864000pt;}
.fs13{font-size:15.936000pt;}
.fs16{font-size:21.440000pt;}
.fs17{font-size:26.560000pt;}
.fs14{font-size:27.872000pt;}
.fsd{font-size:30.016000pt;}
.fs4{font-size:31.880533pt;}
.fsf{font-size:32.160000pt;}
.fsc{font-size:34.304000pt;}
.fs15{font-size:34.528000pt;}
.fse{font-size:37.184000pt;}
.fs0{font-size:37.193600pt;}
.fs10{font-size:39.840000pt;}
.fs3{font-size:40.381867pt;}
.fs8{font-size:42.077867pt;}
.fsa{font-size:42.496000pt;}
.fs5{font-size:42.507200pt;}
.fsb{font-size:45.152000pt;}
.fs7{font-size:47.820800pt;}
.fs11{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fs9{font-size:55.365867pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y1f0{bottom:-516.876800pt;}
.y241{bottom:-504.902400pt;}
.y100{bottom:-457.964800pt;}
.y196{bottom:-366.045333pt;}
.y108{bottom:-347.113984pt;}
.y107{bottom:-332.134144pt;}
.y106{bottom:-320.362752pt;}
.y9a{bottom:-291.290069pt;}
.y1fb{bottom:-285.581696pt;}
.y99{bottom:-276.320853pt;}
.y200{bottom:-270.897067pt;}
.y1fa{bottom:-270.729344pt;}
.y98{bottom:-261.468501pt;}
.y1f9{bottom:-255.749504pt;}
.y97{bottom:-249.697109pt;}
.y1f8{bottom:-243.978112pt;}
.y269{bottom:-242.841000pt;}
.y14c{bottom:-229.924000pt;}
.y140{bottom:-223.379000pt;}
.y226{bottom:-214.583600pt;}
.ye9{bottom:-209.320533pt;}
.y177{bottom:-157.365867pt;}
.y12b{bottom:-127.032267pt;}
.y105{bottom:-54.252800pt;}
.y96{bottom:-42.975317pt;}
.y150{bottom:-42.964840pt;}
.yac{bottom:-41.963299pt;}
.yed{bottom:-41.896917pt;}
.y22a{bottom:-40.088384pt;}
.y20b{bottom:-39.601963pt;}
.y104{bottom:-39.400448pt;}
.y245{bottom:-38.848768pt;}
.y26d{bottom:-38.362200pt;}
.y1f7{bottom:-37.638784pt;}
.y144{bottom:-36.419840pt;}
.y19a{bottom:-33.765125pt;}
.y17e{bottom:-31.735739pt;}
.y133{bottom:-30.037803pt;}
.y14f{bottom:-29.040760pt;}
.y95{bottom:-27.995477pt;}
.y229{bottom:-27.092576pt;}
.yec{bottom:-27.044565pt;}
.yab{bottom:-26.058507pt;}
.y20a{bottom:-24.749611pt;}
.y26c{bottom:-24.438120pt;}
.y103{bottom:-24.420608pt;}
.y244{bottom:-24.007040pt;}
.y1f6{bottom:-22.669568pt;}
.y143{bottom:-22.495760pt;}
.y199{bottom:-21.594005pt;}
.y17d{bottom:-19.668203pt;}
.y132{bottom:-16.930443pt;}
.y14e{bottom:-14.997160pt;}
.y228{bottom:-13.985216pt;}
.y94{bottom:-13.015637pt;}
.yeb{bottom:-12.064725pt;}
.y26b{bottom:-10.394520pt;}
.yaa{bottom:-10.277883pt;}
.y209{bottom:-9.769771pt;}
.y102{bottom:-9.451392pt;}
.y198{bottom:-9.422885pt;}
.y243{bottom:-9.027200pt;}
.y142{bottom:-8.452160pt;}
.y1f5{bottom:-7.689728pt;}
.y17c{bottom:-7.497083pt;}
.y131{bottom:-6.630475pt;}
.y1cc{bottom:-5.792067pt;}
.y14d{bottom:-3.961480pt;}
.y227{bottom:-3.685248pt;}
.y16a{bottom:-2.672800pt;}
.y93{bottom:-1.371733pt;}
.yea{bottom:-0.293333pt;}
.y1cd{bottom:-0.267587pt;}
.y0{bottom:0.000000pt;}
.y197{bottom:0.037787pt;}
.y26a{bottom:0.641160pt;}
.y16b{bottom:0.641888pt;}
.y208{bottom:2.001621pt;}
.y17b{bottom:2.067173pt;}
.y101{bottom:2.203136pt;}
.ya9{bottom:2.229221pt;}
.y141{bottom:2.583520pt;}
.y242{bottom:2.744192pt;}
.y1f4{bottom:3.954176pt;}
.y3f{bottom:40.818667pt;}
.yb7{bottom:88.640000pt;}
.y14{bottom:89.120000pt;}
.y1b9{bottom:89.537333pt;}
.y91{bottom:90.834667pt;}
.y13c{bottom:90.888000pt;}
.y157{bottom:93.461333pt;}
.y1ba{bottom:94.358667pt;}
.y294{bottom:94.844000pt;}
.y223{bottom:95.081333pt;}
.y3e{bottom:95.917333pt;}
.y23e{bottom:97.264000pt;}
.y273{bottom:97.406667pt;}
.y193{bottom:100.010667pt;}
.y1d3{bottom:100.210667pt;}
.y71{bottom:102.117333pt;}
.y13{bottom:105.020000pt;}
.y148{bottom:107.142667pt;}
.yb6{bottom:107.209333pt;}
.y1b8{bottom:108.106667pt;}
.y90{bottom:109.405333pt;}
.y13b{bottom:109.457333pt;}
.yfa{bottom:110.268000pt;}
.y293{bottom:112.176000pt;}
.y222{bottom:113.652000pt;}
.y3d{bottom:114.486667pt;}
.y23d{bottom:115.834667pt;}
.y272{bottom:115.976000pt;}
.y25a{bottom:116.508000pt;}
.y1d1{bottom:117.306667pt;}
.ye6{bottom:117.541333pt;}
.y192{bottom:118.581333pt;}
.y2c5{bottom:120.377333pt;}
.y70{bottom:120.688000pt;}
.y12{bottom:120.920000pt;}
.y1d2{bottom:121.646667pt;}
.y147{bottom:124.238667pt;}
.yb5{bottom:125.780000pt;}
.yf9{bottom:126.208000pt;}
.y1b7{bottom:126.677333pt;}
.y8f{bottom:127.976000pt;}
.y13a{bottom:128.028000pt;}
.y292{bottom:129.508000pt;}
.y221{bottom:132.221333pt;}
.y3c{bottom:133.057333pt;}
.y1d0{bottom:134.402667pt;}
.y23c{bottom:134.404000pt;}
.y271{bottom:134.546667pt;}
.ye5{bottom:136.112000pt;}
.y11{bottom:136.821333pt;}
.y191{bottom:137.150667pt;}
.y2c4{bottom:137.400000pt;}
.y146{bottom:141.334667pt;}
.yf8{bottom:142.808000pt;}
.y6f{bottom:143.244000pt;}
.yb4{bottom:144.350667pt;}
.y1b5{bottom:145.248000pt;}
.y2f3{bottom:145.256000pt;}
.y10b{bottom:145.510667pt;}
.y8e{bottom:146.545333pt;}
.y139{bottom:146.598667pt;}
.y291{bottom:146.840000pt;}
.y1b6{bottom:150.069333pt;}
.y220{bottom:150.792000pt;}
.y1ce{bottom:151.498667pt;}
.y3b{bottom:151.628000pt;}
.y10{bottom:152.721333pt;}
.y23b{bottom:152.974667pt;}
.y270{bottom:153.117333pt;}
.y259{bottom:154.084000pt;}
.y2c3{bottom:154.422667pt;}
.ye3{bottom:154.681333pt;}
.y190{bottom:155.721333pt;}
.y1cf{bottom:155.838667pt;}
.y145{bottom:158.430667pt;}
.ye4{bottom:159.504000pt;}
.y1ed{bottom:160.924000pt;}
.y2f2{bottom:162.278667pt;}
.y10a{bottom:162.606667pt;}
.yb3{bottom:162.920000pt;}
.y1b4{bottom:163.818667pt;}
.y290{bottom:164.173333pt;}
.y8d{bottom:165.116000pt;}
.yf7{bottom:165.149333pt;}
.y138{bottom:165.168000pt;}
.yf{bottom:168.621333pt;}
.y21f{bottom:169.362667pt;}
.y3a{bottom:170.197333pt;}
.y1ca{bottom:171.436067pt;}
.y2c2{bottom:171.445333pt;}
.y23a{bottom:171.545333pt;}
.y258{bottom:172.654667pt;}
.ye2{bottom:173.252000pt;}
.y18f{bottom:174.292000pt;}
.y6e{bottom:177.753333pt;}
.y13e{bottom:178.366667pt;}
.y2f1{bottom:179.301333pt;}
.y1ec{bottom:179.493333pt;}
.y109{bottom:179.702667pt;}
.yb2{bottom:181.490667pt;}
.y28f{bottom:181.505333pt;}
.y1b3{bottom:182.388000pt;}
.y8c{bottom:183.686667pt;}
.y137{bottom:183.738667pt;}
.ye{bottom:184.521333pt;}
.y26f{bottom:184.786667pt;}
.y21e{bottom:187.932000pt;}
.y2c1{bottom:188.468000pt;}
.y39{bottom:188.768000pt;}
.y239{bottom:190.114667pt;}
.y257{bottom:191.224000pt;}
.ye1{bottom:191.822667pt;}
.y18e{bottom:192.861333pt;}
.yf6{bottom:194.186667pt;}
.y6d{bottom:196.324000pt;}
.y1eb{bottom:198.064000pt;}
.y28e{bottom:198.837333pt;}
.yfe{bottom:199.640000pt;}
.yb1{bottom:200.061333pt;}
.yd{bottom:200.422667pt;}
.y1b2{bottom:200.958667pt;}
.y26e{bottom:201.881333pt;}
.y8b{bottom:202.256000pt;}
.y2c0{bottom:205.490667pt;}
.y21d{bottom:206.502667pt;}
.y38{bottom:207.338667pt;}
.y207{bottom:208.340949pt;}
.y237{bottom:208.685333pt;}
.y256{bottom:209.794667pt;}
.ye0{bottom:210.392000pt;}
.y18d{bottom:211.432000pt;}
.y2f0{bottom:213.346667pt;}
.y238{bottom:213.506667pt;}
.y6c{bottom:214.894667pt;}
.y1f3{bottom:215.286784pt;}
.y136{bottom:215.408000pt;}
.y1ea{bottom:216.634667pt;}
.yb0{bottom:218.632000pt;}
.y1b1{bottom:219.529333pt;}
.y8a{bottom:220.826667pt;}
.y267{bottom:221.818667pt;}
.ya8{bottom:221.871125pt;}
.y2bf{bottom:222.513333pt;}
.y206{bottom:223.310165pt;}
.yc{bottom:224.293333pt;}
.y21c{bottom:225.073333pt;}
.y37{bottom:225.909333pt;}
.y130{bottom:226.215733pt;}
.y236{bottom:227.256000pt;}
.y255{bottom:228.365333pt;}
.yde{bottom:228.962667pt;}
.y18c{bottom:230.002667pt;}
.y1f2{bottom:230.266624pt;}
.y2ef{bottom:230.369333pt;}
.y28d{bottom:232.109333pt;}
.y135{bottom:232.504000pt;}
.y6b{bottom:233.464000pt;}
.ydf{bottom:233.784000pt;}
.y1e9{bottom:235.205333pt;}
.yaf{bottom:237.201333pt;}
.ya7{bottom:237.787205pt;}
.y1b0{bottom:238.098667pt;}
.y205{bottom:238.290005pt;}
.y12f{bottom:239.211541pt;}
.y89{bottom:239.397333pt;}
.yf5{bottom:239.524000pt;}
.y2be{bottom:239.536000pt;}
.yb{bottom:240.193333pt;}
.y21b{bottom:243.644000pt;}
.y36{bottom:244.478667pt;}
.y1f1{bottom:245.235840pt;}
.y235{bottom:245.825333pt;}
.y254{bottom:246.934667pt;}
.y2ee{bottom:247.392000pt;}
.ydd{bottom:247.533333pt;}
.y18b{bottom:248.572000pt;}
.y134{bottom:249.600000pt;}
.y204{bottom:249.933909pt;}
.y28c{bottom:250.680000pt;}
.y6a{bottom:252.034667pt;}
.y12e{bottom:252.318901pt;}
.ya6{bottom:253.703285pt;}
.y1e8{bottom:253.774667pt;}
.yf4{bottom:255.464000pt;}
.y156{bottom:255.772000pt;}
.ya{bottom:256.093333pt;}
.y2bd{bottom:256.558667pt;}
.y1ae{bottom:256.669333pt;}
.y88{bottom:257.966667pt;}
.y1af{bottom:261.490667pt;}
.y21a{bottom:262.213333pt;}
.y35{bottom:263.049333pt;}
.y234{bottom:264.396000pt;}
.y2ed{bottom:264.414667pt;}
.y12d{bottom:265.416965pt;}
.y253{bottom:265.505333pt;}
.y1ef{bottom:265.721472pt;}
.ya5{bottom:266.074933pt;}
.ydc{bottom:266.102667pt;}
.y18a{bottom:267.142667pt;}
.yae{bottom:268.086667pt;}
.y28b{bottom:269.250667pt;}
.y129{bottom:269.537333pt;}
.y195{bottom:269.815763pt;}
.y69{bottom:270.605333pt;}
.y9{bottom:271.994667pt;}
.yf3{bottom:272.064000pt;}
.y1e7{bottom:272.345333pt;}
.y2bc{bottom:273.581333pt;}
.y155{bottom:274.342667pt;}
.y1ad{bottom:275.240000pt;}
.y12c{bottom:275.614677pt;}
.y87{bottom:276.537333pt;}
.y240{bottom:277.695872pt;}
.y219{bottom:280.784000pt;}
.y2ec{bottom:281.437333pt;}
.y34{bottom:281.620000pt;}
.y233{bottom:282.966667pt;}
.y252{bottom:284.076000pt;}
.ydb{bottom:284.673333pt;}
.yad{bottom:285.182667pt;}
.y189{bottom:285.713333pt;}
.y28a{bottom:287.820000pt;}
.y8{bottom:287.894667pt;}
.y68{bottom:289.176000pt;}
.y2bb{bottom:290.605333pt;}
.y169{bottom:290.801552pt;}
.y1e6{bottom:290.916000pt;}
.y173{bottom:292.912000pt;}
.y1ac{bottom:293.809333pt;}
.yf2{bottom:294.406667pt;}
.y86{bottom:295.108000pt;}
.y2eb{bottom:298.460000pt;}
.y218{bottom:299.354667pt;}
.y232{bottom:301.536000pt;}
.y251{bottom:302.645333pt;}
.yda{bottom:303.244000pt;}
.y154{bottom:303.362667pt;}
.y7{bottom:303.794667pt;}
.y33{bottom:304.174667pt;}
.y188{bottom:304.284000pt;}
.ya4{bottom:305.120000pt;}
.y289{bottom:306.390667pt;}
.y2ba{bottom:307.628000pt;}
.y67{bottom:307.745333pt;}
.y1e5{bottom:309.485333pt;}
.y2f6{bottom:311.278667pt;}
.y172{bottom:311.482667pt;}
.y1ab{bottom:312.380000pt;}
.y85{bottom:313.678667pt;}
.y2ea{bottom:315.482667pt;}
.y217{bottom:317.924000pt;}
.y6{bottom:319.696000pt;}
.y231{bottom:320.106667pt;}
.y153{bottom:320.458667pt;}
.y250{bottom:321.216000pt;}
.yd9{bottom:321.814667pt;}
.y187{bottom:322.853333pt;}
.yf1{bottom:323.442667pt;}
.yff{bottom:324.633472pt;}
.y2b9{bottom:324.650667pt;}
.y288{bottom:324.961333pt;}
.y66{bottom:326.316000pt;}
.y1e4{bottom:328.056000pt;}
.y2f5{bottom:328.301333pt;}
.y171{bottom:330.053333pt;}
.y1aa{bottom:330.950667pt;}
.y84{bottom:332.248000pt;}
.y2e9{bottom:332.506667pt;}
.y216{bottom:336.494667pt;}
.y152{bottom:337.554667pt;}
.y230{bottom:338.677333pt;}
.y24f{bottom:339.786667pt;}
.yd8{bottom:340.384000pt;}
.y5{bottom:340.909333pt;}
.y186{bottom:341.424000pt;}
.y2b8{bottom:341.673333pt;}
.y287{bottom:343.530667pt;}
.y65{bottom:344.886667pt;}
.y2f4{bottom:345.324000pt;}
.y1e3{bottom:346.626667pt;}
.y170{bottom:348.622667pt;}
.y1a9{bottom:349.520000pt;}
.y2e8{bottom:349.529333pt;}
.y83{bottom:350.818667pt;}
.y151{bottom:354.650667pt;}
.y215{bottom:355.065333pt;}
.y4{bottom:356.809333pt;}
.y22f{bottom:357.248000pt;}
.yf0{bottom:357.806667pt;}
.y24e{bottom:358.357333pt;}
.y2b7{bottom:358.696000pt;}
.yd7{bottom:358.954667pt;}
.y185{bottom:359.994667pt;}
.y286{bottom:362.101333pt;}
.y64{bottom:363.456000pt;}
.y1e2{bottom:365.196000pt;}
.y2e7{bottom:366.552000pt;}
.y16f{bottom:367.193333pt;}
.y1a8{bottom:368.090667pt;}
.y82{bottom:369.389333pt;}
.y3{bottom:372.710667pt;}
.y214{bottom:373.634667pt;}
.y32{bottom:374.585333pt;}
.y14a{bottom:374.586667pt;}
.yef{bottom:374.902667pt;}
.y2b6{bottom:375.718667pt;}
.y22e{bottom:375.817333pt;}
.y24d{bottom:376.926667pt;}
.yd6{bottom:377.525333pt;}
.y184{bottom:378.564000pt;}
.y285{bottom:380.672000pt;}
.y63{bottom:382.026667pt;}
.y2e6{bottom:383.574667pt;}
.y1e1{bottom:383.766667pt;}
.y16e{bottom:385.764000pt;}
.y1a7{bottom:386.661333pt;}
.y81{bottom:387.958667pt;}
.y2{bottom:388.610667pt;}
.yee{bottom:391.998667pt;}
.y213{bottom:392.205333pt;}
.y2b5{bottom:392.741333pt;}
.y24c{bottom:395.497333pt;}
.yd5{bottom:396.094667pt;}
.y183{bottom:397.134667pt;}
.y284{bottom:399.241333pt;}
.y62{bottom:400.597333pt;}
.y1e0{bottom:402.337333pt;}
.y1a6{bottom:405.232000pt;}
.y80{bottom:406.529333pt;}
.y22d{bottom:407.486667pt;}
.y31{bottom:409.096000pt;}
.y2b4{bottom:409.764000pt;}
.y1{bottom:409.824000pt;}
.y212{bottom:410.776000pt;}
.ye7{bottom:411.936000pt;}
.y24b{bottom:414.068000pt;}
.yd4{bottom:414.665333pt;}
.y16d{bottom:417.417333pt;}
.y2e5{bottom:417.620000pt;}
.y283{bottom:417.812000pt;}
.y61{bottom:419.166667pt;}
.y182{bottom:419.689333pt;}
.y1df{bottom:420.906667pt;}
.y1a5{bottom:423.801333pt;}
.y22c{bottom:424.582667pt;}
.y7f{bottom:425.100000pt;}
.y2b3{bottom:426.786667pt;}
.y30{bottom:427.665333pt;}
.y211{bottom:429.345333pt;}
.y24a{bottom:432.637333pt;}
.yd3{bottom:433.236000pt;}
.y16c{bottom:434.513333pt;}
.y2e4{bottom:434.642667pt;}
.y282{bottom:436.382667pt;}
.y17a{bottom:437.517045pt;}
.y60{bottom:437.737333pt;}
.y1de{bottom:439.477333pt;}
.y22b{bottom:441.678667pt;}
.y1a4{bottom:442.372000pt;}
.y7e{bottom:443.669333pt;}
.y2b2{bottom:443.809333pt;}
.y2f{bottom:446.236000pt;}
.y210{bottom:447.916000pt;}
.y181{bottom:448.264000pt;}
.y179{bottom:449.688165pt;}
.y249{bottom:451.208000pt;}
.y2e3{bottom:451.665333pt;}
.yd2{bottom:451.805333pt;}
.y168{bottom:454.450667pt;}
.y281{bottom:454.953333pt;}
.y5f{bottom:456.308000pt;}
.y1dc{bottom:458.048000pt;}
.y2b1{bottom:460.832000pt;}
.y203{bottom:461.266517pt;}
.y224{bottom:461.616000pt;}
.y178{bottom:461.850653pt;}
.y7d{bottom:462.240000pt;}
.y1dd{bottom:462.869333pt;}
.y2e{bottom:464.806667pt;}
.y1a3{bottom:464.926667pt;}
.y180{bottom:465.360000pt;}
.y20f{bottom:466.486667pt;}
.y2e2{bottom:468.688000pt;}
.y248{bottom:469.778667pt;}
.y225{bottom:470.189888pt;}
.yd1{bottom:470.376000pt;}
.y280{bottom:473.522667pt;}
.y5e{bottom:474.877333pt;}
.y202{bottom:476.246357pt;}
.y1db{bottom:476.617333pt;}
.y2b0{bottom:477.854667pt;}
.y176{bottom:478.495229pt;}
.y7c{bottom:480.810667pt;}
.y17f{bottom:482.456000pt;}
.y1cb{bottom:483.331853pt;}
.y2d{bottom:483.377333pt;}
.y2e1{bottom:485.710667pt;}
.yd0{bottom:488.946667pt;}
.y268{bottom:490.844880pt;}
.y201{bottom:491.215573pt;}
.y27f{bottom:492.093333pt;}
.y5d{bottom:493.448000pt;}
.y2af{bottom:494.877333pt;}
.y1da{bottom:495.188000pt;}
.y1a2{bottom:496.342667pt;}
.y20e{bottom:498.156000pt;}
.y247{bottom:501.448000pt;}
.y2c{bottom:501.946667pt;}
.y175{bottom:502.393333pt;}
.y2e0{bottom:502.733333pt;}
.y14b{bottom:503.761880pt;}
.ycf{bottom:507.516000pt;}
.y128{bottom:508.033333pt;}
.y13f{bottom:510.306880pt;}
.y27e{bottom:510.664000pt;}
.y1ff{bottom:511.701205pt;}
.y2ae{bottom:511.900000pt;}
.y5c{bottom:512.018667pt;}
.y1d9{bottom:513.758667pt;}
.y1a1{bottom:514.913333pt;}
.y20d{bottom:515.252000pt;}
.y246{bottom:518.542667pt;}
.y2df{bottom:519.756000pt;}
.y2b{bottom:520.517333pt;}
.y7b{bottom:523.452000pt;}
.yce{bottom:526.086667pt;}
.y127{bottom:526.604000pt;}
.y2ad{bottom:528.922667pt;}
.y27d{bottom:529.233333pt;}
.y5b{bottom:530.589333pt;}
.y1d8{bottom:532.329333pt;}
.y20c{bottom:532.346667pt;}
.y1a0{bottom:533.482667pt;}
.y2de{bottom:536.778667pt;}
.y23f{bottom:538.480000pt;}
.ya3{bottom:539.086667pt;}
.y2a{bottom:539.088000pt;}
.y7a{bottom:539.393333pt;}
.ycd{bottom:544.657333pt;}
.y126{bottom:545.173333pt;}
.y2ac{bottom:545.945333pt;}
.y27c{bottom:547.804000pt;}
.y5a{bottom:549.158667pt;}
.y1d7{bottom:550.898667pt;}
.y19f{bottom:552.053333pt;}
.y1fe{bottom:552.284000pt;}
.y2dd{bottom:553.801333pt;}
.y79{bottom:555.993333pt;}
.ya2{bottom:557.656000pt;}
.y29{bottom:557.657333pt;}
.y12a{bottom:557.741221pt;}
.y2ab{bottom:562.968000pt;}
.ycc{bottom:563.228000pt;}
.y125{bottom:563.744000pt;}
.y27b{bottom:566.374667pt;}
.y59{bottom:567.729333pt;}
.y1d6{bottom:569.469333pt;}
.y19e{bottom:570.624000pt;}
.y2dc{bottom:570.824000pt;}
.y78{bottom:572.593333pt;}
.ye8{bottom:573.277739pt;}
.ya1{bottom:576.226667pt;}
.y28{bottom:576.228000pt;}
.y2aa{bottom:579.990667pt;}
.ycb{bottom:581.797333pt;}
.y124{bottom:582.314667pt;}
.y27a{bottom:584.944000pt;}
.y58{bottom:586.300000pt;}
.y2db{bottom:587.846667pt;}
.y1d5{bottom:588.040000pt;}
.y77{bottom:589.193333pt;}
.ya0{bottom:594.797333pt;}
.y27{bottom:594.798667pt;}
.y2a9{bottom:597.013333pt;}
.yc9{bottom:600.368000pt;}
.y123{bottom:600.885333pt;}
.y279{bottom:603.514667pt;}
.y57{bottom:604.869333pt;}
.yca{bottom:605.189333pt;}
.y76{bottom:605.793333pt;}
.y1d4{bottom:610.594667pt;}
.y26{bottom:613.368000pt;}
.y2a8{bottom:614.036000pt;}
.yc8{bottom:618.938667pt;}
.y122{bottom:619.454667pt;}
.y19d{bottom:620.862667pt;}
.y2da{bottom:621.892000pt;}
.y278{bottom:622.085333pt;}
.y75{bottom:622.393333pt;}
.y56{bottom:623.440000pt;}
.yfd{bottom:628.261333pt;}
.y9f{bottom:631.937333pt;}
.y25{bottom:631.938667pt;}
.y2a7{bottom:635.044000pt;}
.yc7{bottom:637.508000pt;}
.y19c{bottom:637.958667pt;}
.y121{bottom:638.025333pt;}
.y74{bottom:638.333333pt;}
.y2d9{bottom:638.914667pt;}
.y277{bottom:640.654667pt;}
.y55{bottom:642.010667pt;}
.yfc{bottom:646.832000pt;}
.y9e{bottom:650.508000pt;}
.y24{bottom:650.509333pt;}
.y73{bottom:654.273333pt;}
.y19b{bottom:655.054667pt;}
.y2d8{bottom:655.937333pt;}
.yc6{bottom:656.078667pt;}
.y120{bottom:656.596000pt;}
.y276{bottom:659.225333pt;}
.y54{bottom:660.580000pt;}
.yfb{bottom:665.402667pt;}
.y23{bottom:669.078667pt;}
.y1c9{bottom:669.248000pt;}
.y2a6{bottom:669.554667pt;}
.y2d7{bottom:672.961333pt;}
.yc5{bottom:674.649333pt;}
.y194{bottom:674.992000pt;}
.y11f{bottom:675.165333pt;}
.y275{bottom:677.796000pt;}
.y53{bottom:679.150667pt;}
.y72{bottom:683.309333pt;}
.y9d{bottom:687.648000pt;}
.y22{bottom:687.649333pt;}
.y1c8{bottom:687.818667pt;}
.y2d6{bottom:689.984000pt;}
.yc3{bottom:693.218667pt;}
.y11e{bottom:693.736000pt;}
.y2a5{bottom:694.857333pt;}
.y52{bottom:697.721333pt;}
.yc4{bottom:698.041333pt;}
.y274{bottom:700.350667pt;}
.y21{bottom:706.220000pt;}
.y1c7{bottom:706.388000pt;}
.y2d5{bottom:707.006667pt;}
.yc2{bottom:711.789333pt;}
.y2a4{bottom:712.189333pt;}
.y11d{bottom:712.306667pt;}
.y51{bottom:716.290667pt;}
.y9c{bottom:718.533333pt;}
.y266{bottom:722.481333pt;}
.y2d4{bottom:724.029333pt;}
.y1c6{bottom:724.958667pt;}
.yc1{bottom:730.360000pt;}
.y11c{bottom:730.876000pt;}
.y50{bottom:734.861333pt;}
.y9b{bottom:735.629333pt;}
.y2a3{bottom:737.492000pt;}
.y265{bottom:741.052000pt;}
.y20{bottom:741.793333pt;}
.y1c5{bottom:743.529333pt;}
.yc0{bottom:748.929333pt;}
.y11b{bottom:749.446667pt;}
.y4f{bottom:753.432000pt;}
.y92{bottom:755.566667pt;}
.y2d3{bottom:758.074667pt;}
.y264{bottom:759.621333pt;}
.y1f{bottom:759.997333pt;}
.y2a2{bottom:762.794667pt;}
.y167{bottom:763.450667pt;}
.ybf{bottom:767.500000pt;}
.y11a{bottom:768.017333pt;}
.y1e{bottom:770.485333pt;}
.y4e{bottom:772.002667pt;}
.y2d2{bottom:775.097333pt;}
.y1c4{bottom:775.553333pt;}
.y263{bottom:778.192000pt;}
.y1fd{bottom:779.950667pt;}
.y1c1{bottom:781.897333pt;}
.y166{bottom:782.020000pt;}
.y1c0{bottom:785.882667pt;}
.ybe{bottom:786.070667pt;}
.y119{bottom:786.586667pt;}
.y2a1{bottom:788.096000pt;}
.y1d{bottom:788.689333pt;}
.y4d{bottom:790.572000pt;}
.y2d1{bottom:792.120000pt;}
.y1c3{bottom:794.124000pt;}
.y1bd{bottom:794.517333pt;}
.y262{bottom:796.762667pt;}
.y1fc{bottom:797.046667pt;}
.y165{bottom:800.590667pt;}
.y1c{bottom:803.036000pt;}
.y1bc{bottom:803.596000pt;}
.ybd{bottom:804.640000pt;}
.y118{bottom:805.157333pt;}
.y2a0{bottom:805.429333pt;}
.y4c{bottom:809.142667pt;}
.y1bf{bottom:809.793333pt;}
.y1c2{bottom:812.694667pt;}
.y1b{bottom:813.524000pt;}
.y1be{bottom:813.778667pt;}
.y261{bottom:815.332000pt;}
.y1ee{bottom:816.984000pt;}
.y164{bottom:819.161333pt;}
.y29f{bottom:822.761333pt;}
.ybc{bottom:823.210667pt;}
.y117{bottom:823.728000pt;}
.y2d0{bottom:826.165333pt;}
.y4b{bottom:827.713333pt;}
.y1a{bottom:831.728000pt;}
.y260{bottom:833.902667pt;}
.y163{bottom:837.732000pt;}
.y29e{bottom:840.093333pt;}
.ybb{bottom:841.781333pt;}
.y116{bottom:842.297333pt;}
.y2cf{bottom:843.188000pt;}
.y4a{bottom:846.282667pt;}
.y25f{bottom:852.473333pt;}
.y162{bottom:854.309333pt;}
.y161{bottom:856.301333pt;}
.y29d{bottom:857.425333pt;}
.y2ce{bottom:860.210667pt;}
.yba{bottom:860.352000pt;}
.y115{bottom:860.868000pt;}
.y49{bottom:864.853333pt;}
.y25e{bottom:871.044000pt;}
.y19{bottom:871.440000pt;}
.y29c{bottom:874.757333pt;}
.y160{bottom:874.872000pt;}
.y2cd{bottom:877.233333pt;}
.y114{bottom:879.438667pt;}
.y1bb{bottom:880.997333pt;}
.yb9{bottom:882.906667pt;}
.y48{bottom:883.424000pt;}
.y18{bottom:890.010667pt;}
.y15e{bottom:891.016000pt;}
.y15f{bottom:891.449333pt;}
.y29b{bottom:892.089333pt;}
.y15d{bottom:893.442667pt;}
.y2cc{bottom:894.256000pt;}
.y112{bottom:895.582667pt;}
.y111{bottom:898.009333pt;}
.y25c{bottom:901.040000pt;}
.y25d{bottom:901.277333pt;}
.y47{bottom:901.993333pt;}
.y113{bottom:902.830667pt;}
.yb8{bottom:904.624000pt;}
.y25b{bottom:905.089333pt;}
.y29a{bottom:909.422667pt;}
.y2cb{bottom:911.278667pt;}
.y110{bottom:916.578667pt;}
.y46{bottom:920.564000pt;}
.y17{bottom:924.521333pt;}
.y15b{bottom:924.640000pt;}
.y149{bottom:925.385333pt;}
.y299{bottom:926.754667pt;}
.y15c{bottom:927.961333pt;}
.y2ca{bottom:928.301333pt;}
.y159{bottom:934.469333pt;}
.y10f{bottom:935.149333pt;}
.y45{bottom:939.134667pt;}
.y298{bottom:944.086667pt;}
.y2c9{bottom:945.324000pt;}
.y15a{bottom:947.754667pt;}
.y16{bottom:952.377333pt;}
.y10e{bottom:953.720000pt;}
.y44{bottom:957.704000pt;}
.y297{bottom:961.418667pt;}
.y2c8{bottom:962.346667pt;}
.y10d{bottom:972.289333pt;}
.y43{bottom:976.274667pt;}
.y296{bottom:978.750667pt;}
.y2c7{bottom:979.369333pt;}
.y15{bottom:980.232000pt;}
.y13d{bottom:981.097333pt;}
.y10c{bottom:990.860000pt;}
.y158{bottom:992.418667pt;}
.y42{bottom:994.845333pt;}
.y295{bottom:996.082667pt;}
.y2c6{bottom:996.392000pt;}
.y174{bottom:999.666667pt;}
.y41{bottom:1013.414667pt;}
.y40{bottom:1067.149333pt;}
.h23{height:2.125355pt;}
.h27{height:8.573906pt;}
.h28{height:11.041594pt;}
.h2f{height:14.289844pt;}
.h30{height:18.402656pt;}
.h2a{height:18.576797pt;}
.h1a{height:20.005781pt;}
.h1d{height:21.434766pt;}
.h16{height:22.863750pt;}
.h2b{height:23.923453pt;}
.h1b{height:25.763719pt;}
.h1e{height:27.603984pt;}
.h6{height:28.947524pt;}
.h10{height:29.444250pt;}
.h12{height:31.284516pt;}
.h14{height:31.558400pt;}
.h31{height:33.378918pt;}
.h2{height:33.771789pt;}
.h24{height:34.002688pt;}
.h22{height:34.008021pt;}
.h13{height:36.666735pt;}
.ha{height:37.087439pt;}
.h1f{height:37.372000pt;}
.h34{height:37.671911pt;}
.h17{height:38.256384pt;}
.h7{height:38.596538pt;}
.h3{height:38.947124pt;}
.he{height:41.524400pt;}
.hb{height:43.421286pt;}
.h9{height:45.907968pt;}
.h8{height:48.245551pt;}
.h5{height:48.365611pt;}
.hc{height:50.849067pt;}
.hd{height:55.952068pt;}
.h38{height:58.608068pt;}
.h3a{height:63.493551pt;}
.h37{height:66.088021pt;}
.h4{height:68.861952pt;}
.h25{height:74.277551pt;}
.h39{height:74.805402pt;}
.h21{height:87.149355pt;}
.h2d{height:126.989355pt;}
.hf{height:200.477867pt;}
.h33{height:205.268267pt;}
.h32{height:209.715200pt;}
.h11{height:213.735333pt;}
.h19{height:217.483467pt;}
.h2c{height:261.701267pt;}
.h36{height:268.217600pt;}
.h26{height:287.998800pt;}
.h18{height:317.904000pt;}
.h29{height:434.302267pt;}
.h35{height:456.507333pt;}
.h2e{height:476.798600pt;}
.h3b{height:479.649000pt;}
.h20{height:490.472000pt;}
.h1c{height:500.944000pt;}
.h15{height:561.894400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w9{width:156.671400pt;}
.wc{width:237.381200pt;}
.w6{width:360.435320pt;}
.wa{width:371.675633pt;}
.wb{width:381.206627pt;}
.wf{width:391.848427pt;}
.w7{width:424.580600pt;}
.w8{width:426.762600pt;}
.w11{width:440.376700pt;}
.w10{width:450.905707pt;}
.w2{width:468.010987pt;}
.w4{width:470.293440pt;}
.we{width:471.773973pt;}
.w5{width:472.901227pt;}
.wd{width:474.511893pt;}
.w3{width:497.625700pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xd7{left:-10.561115pt;}
.x87{left:-9.398480pt;}
.x8d{left:-8.089480pt;}
.xa4{left:-6.254369pt;}
.x9e{left:-2.886632pt;}
.x50{left:-1.466859pt;}
.x0{left:0.000000pt;}
.xcf{left:1.614741pt;}
.x1{left:47.621333pt;}
.xeb{left:76.309333pt;}
.x9f{left:84.521368pt;}
.xc3{left:142.032480pt;}
.xa0{left:159.113800pt;}
.xa5{left:183.129631pt;}
.xb0{left:188.802224pt;}
.xd8{left:191.150549pt;}
.x80{left:202.103645pt;}
.x88{left:209.121520pt;}
.x8e{left:210.430520pt;}
.xe7{left:215.710260pt;}
.xe1{left:219.142037pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x25{left:225.905333pt;}
.x66{left:232.092821pt;}
.x79{left:233.768341pt;}
.xae{left:235.641333pt;}
.x83{left:238.066667pt;}
.x69{left:239.029333pt;}
.x3{left:239.924000pt;}
.x8b{left:242.804000pt;}
.xaf{left:246.566667pt;}
.xaa{left:247.980000pt;}
.x84{left:248.992000pt;}
.x5{left:250.204000pt;}
.xa2{left:253.513333pt;}
.x6a{left:255.700000pt;}
.x3d{left:257.192000pt;}
.x16{left:258.193333pt;}
.x68{left:259.345333pt;}
.x37{left:261.920000pt;}
.x3e{left:263.554667pt;}
.x9b{left:266.301333pt;}
.xd1{left:268.574667pt;}
.x26{left:270.493333pt;}
.x17{left:271.477333pt;}
.xd2{left:273.077333pt;}
.x38{left:275.204000pt;}
.x70{left:276.698667pt;}
.x3b{left:277.734667pt;}
.x67{left:281.130667pt;}
.xe{left:282.570667pt;}
.x7b{left:283.830667pt;}
.xd3{left:286.361333pt;}
.xa{left:289.053333pt;}
.x3f{left:293.648000pt;}
.xb{left:295.696000pt;}
.x63{left:296.654667pt;}
.x14{left:299.712000pt;}
.xd5{left:300.837333pt;}
.x57{left:302.384000pt;}
.x39{left:304.088000pt;}
.x3c{left:305.424000pt;}
.x15{left:306.353333pt;}
.x58{left:308.096000pt;}
.x44{left:309.406667pt;}
.x5b{left:312.860000pt;}
.xd6{left:314.121333pt;}
.x52{left:315.128000pt;}
.x3a{left:317.372000pt;}
.xe8{left:321.636000pt;}
.x45{left:323.666667pt;}
.x6b{left:324.784000pt;}
.xa3{left:326.258667pt;}
.x53{left:328.412000pt;}
.x4b{left:329.469333pt;}
.x4e{left:331.982667pt;}
.x91{left:333.089333pt;}
.xbe{left:335.133333pt;}
.x71{left:337.612000pt;}
.x1b{left:340.765333pt;}
.x4c{left:342.753333pt;}
.xc1{left:344.882667pt;}
.x76{left:346.873333pt;}
.x2f{left:352.242667pt;}
.x1c{left:354.048000pt;}
.x64{left:357.366667pt;}
.x77{left:361.126667pt;}
.x65{left:363.078667pt;}
.x30{left:365.526667pt;}
.xbf{left:366.978667pt;}
.x31{left:368.913333pt;}
.xc0{left:372.690667pt;}
.x94{left:376.754667pt;}
.x74{left:377.689333pt;}
.x32{left:382.197333pt;}
.x75{left:383.401333pt;}
.xc6{left:384.293333pt;}
.x40{left:386.726667pt;}
.x72{left:388.098667pt;}
.x85{left:389.265333pt;}
.x81{left:392.959821pt;}
.x1f{left:394.254667pt;}
.xb1{left:395.341333pt;}
.x86{left:397.469333pt;}
.x41{left:400.009333pt;}
.x78{left:401.381333pt;}
.x42{left:403.264000pt;}
.xb2{left:405.174667pt;}
.x20{left:407.537333pt;}
.x54{left:408.612000pt;}
.x59{left:411.889333pt;}
.xe3{left:414.290667pt;}
.x43{left:416.548000pt;}
.x5a{left:417.940000pt;}
.xb3{left:419.125333pt;}
.x55{left:422.860000pt;}
.xc7{left:423.813333pt;}
.xb4{left:427.329333pt;}
.x18{left:430.434667pt;}
.x89{left:433.042240pt;}
.x6e{left:434.180000pt;}
.xf{left:436.817333pt;}
.x33{left:441.341333pt;}
.x6f{left:442.385333pt;}
.x10{left:443.458667pt;}
.x73{left:444.628000pt;}
.xcd{left:446.397333pt;}
.x46{left:449.530667pt;}
.x7a{left:451.889685pt;}
.xc4{left:452.860000pt;}
.x34{left:454.624000pt;}
.x7c{left:457.252000pt;}
.x98{left:458.874667pt;}
.x1d{left:460.044000pt;}
.x47{left:462.814667pt;}
.xbb{left:464.326667pt;}
.xc5{left:465.685333pt;}
.xab{left:467.578667pt;}
.x4f{left:470.472469pt;}
.xd9{left:472.030667pt;}
.x1e{left:473.328000pt;}
.x56{left:475.540000pt;}
.x6c{left:476.842667pt;}
.xbc{left:478.565333pt;}
.x95{left:479.828000pt;}
.x7d{left:482.800000pt;}
.xcc{left:483.782667pt;}
.x6d{left:485.046667pt;}
.xda{left:486.541333pt;}
.xdf{left:487.517333pt;}
.xbd{left:491.769333pt;}
.xa1{left:494.669333pt;}
.xb5{left:496.409333pt;}
.x7e{left:498.341333pt;}
.x51{left:499.513425pt;}
.x5c{left:500.890667pt;}
.x8a{left:503.529333pt;}
.xac{left:509.993333pt;}
.x19{left:512.229333pt;}
.x5d{left:514.173333pt;}
.xb8{left:515.377333pt;}
.x1a{left:525.512000pt;}
.xc2{left:529.116000pt;}
.x96{left:530.484000pt;}
.xb6{left:533.106667pt;}
.xe4{left:536.682667pt;}
.xb7{left:538.818667pt;}
.xd4{left:543.980000pt;}
.xb9{left:545.450667pt;}
.xba{left:551.501333pt;}
.xe9{left:554.910667pt;}
.x99{left:563.228000pt;}
.x97{left:564.662667pt;}
.x5e{left:566.609333pt;}
.xe0{left:567.661333pt;}
.xdd{left:571.237333pt;}
.xdb{left:575.640000pt;}
.x9a{left:579.034667pt;}
.x5f{left:580.949333pt;}
.x35{left:582.293333pt;}
.xde{left:584.520000pt;}
.xdc{left:588.924000pt;}
.x60{left:594.498667pt;}
.x36{left:595.576000pt;}
.x27{left:599.656000pt;}
.x61{left:608.673333pt;}
.x82{left:610.628000pt;}
.x28{left:612.077333pt;}
.x21{left:614.638667pt;}
.xe5{left:618.041333pt;}
.xa7{left:622.708000pt;}
.x49{left:626.036000pt;}
.x22{left:627.921333pt;}
.xe6{left:628.966667pt;}
.x90{left:633.342667pt;}
.xea{left:635.601333pt;}
.x29{left:638.689333pt;}
.x11{left:641.744000pt;}
.x62{left:646.054667pt;}
.x12{left:648.386667pt;}
.x2a{left:651.164000pt;}
.xc8{left:652.554667pt;}
.x92{left:654.442667pt;}
.xc{left:657.468000pt;}
.x23{left:661.828000pt;}
.xd{left:664.109333pt;}
.xc9{left:665.382667pt;}
.xd0{left:670.160000pt;}
.x13{left:671.100000pt;}
.x9c{left:674.033333pt;}
.x24{left:675.110667pt;}
.x9d{left:679.906667pt;}
.x93{left:681.909333pt;}
.xe2{left:687.253333pt;}
.x8c{left:689.594667pt;}
.xca{left:692.074667pt;}
.x48{left:694.712000pt;}
.xa6{left:695.901333pt;}
.x6{left:698.170667pt;}
.xcb{left:699.458667pt;}
.x8f{left:700.640000pt;}
.xa8{left:702.656000pt;}
.x7{left:704.812000pt;}
.x8{left:708.200000pt;}
.x2b{left:710.172000pt;}
.xce{left:712.026667pt;}
.xa9{left:713.582667pt;}
.x9{left:714.841333pt;}
.x7f{left:721.666667pt;}
.x2c{left:723.454667pt;}
.x2d{left:726.842667pt;}
.xad{left:731.914667pt;}
.x4d{left:734.774667pt;}
.x2e{left:740.126667pt;}
.x4a{left:744.737333pt;}
}




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