
    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_048d698695705b37f45595b8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.638000;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_55a787c3dad7f3a70a12eb5a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_574b99009ef83fa20d04062b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_73710946b07a20d3658b0d00.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.011000;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_adabfc228490fe2b1bc30dd8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.773000;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_3baf14248a9985d9e3715c58.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_7cd4b4c9851ca5cf8f38c3e3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003418;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_7a46277962885dc25b804cc1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.011230;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_56b3cb7ba880e97c342dd975.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.908203;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_71b7ade978472a6ba9ee5262.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.208008;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_432f9e5b8f0e2099c1565216.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_089c7f2926a7a9a8811bcb8e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.703000;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_3baf14248a9985d9e3715c58.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.005371;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_7cd4b4c9851ca5cf8f38c3e3.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.003418;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_7a46277962885dc25b804cc1.woff2')format("woff");}.fff{font-family:fff;line-height:1.011230;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_56b3cb7ba880e97c342dd975.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.908203;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_71b7ade978472a6ba9ee5262.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.208008;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_d2baf406d34a5dad2cd86741.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.799000;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_54bee5539f7902f45d498729.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.758000;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_64afa9ad8226162d6b4459c8.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.005371;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_208dbe4527f547f9d6931def.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.003418;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_a4f122ca3848eb2cdb571c03.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.011230;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_56b3cb7ba880e97c342dd975.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.908203;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_9e3b5b75524ddff016b81296.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.208008;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_64afa9ad8226162d6b4459c8.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.005371;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_208dbe4527f547f9d6931def.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.003418;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_a4f122ca3848eb2cdb571c03.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.011230;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_56b3cb7ba880e97c342dd975.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.908203;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_9e3b5b75524ddff016b81296.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.208008;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_8f75a9e9acbafc755d7d329b.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.005371;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_235d4fdedca1b7458cba56bb.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.003418;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_51304c92447374b35b0dd3a8.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.011230;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_56b3cb7ba880e97c342dd975.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.908203;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_ec1364cdc7d1b1b426e6917f.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.208008;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_0653c48a111d3e38bcdddcbf.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.700684;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_c9ee0828a0120b89ac52e315.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.665000;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_64afa9ad8226162d6b4459c8.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.005371;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_35abc987801c251fc7c1c791.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.003418;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_5f35632a83a1046bc55e26f5.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.011230;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_56b3cb7ba880e97c342dd975.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_201c245c9273779e1bcdcaaa.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_fb48b244643c5e1cfca3c123.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.731445;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_2ab95b7ed5cd109d6a7d2f79.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_64afa9ad8226162d6b4459c8.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_35abc987801c251fc7c1c791.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_5f35632a83a1046bc55e26f5.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_56b3cb7ba880e97c342dd975.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_201c245c9273779e1bcdcaaa.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_fb48b244643c5e1cfca3c123.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.731445;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_2ab95b7ed5cd109d6a7d2f79.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{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);}
.m8{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);}
.m1d{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);}
.m2a{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);}
.m1c{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);}
.me{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);}
.mc{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);}
.m24{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);}
.m1a{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);}
.m23{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);}
.m2f{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);}
.m2d{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);}
.m2b{transform:matrix(0.248030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248030,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248036,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m5{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);}
.m1f{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);}
.mf{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);}
.m10{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);}
.m20{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);}
.m1{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);}
.m14{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m27{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);}
.m16{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);}
.m17{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);}
.m15{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);}
.ma{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);}
.m7{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);}
.m25{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);}
.m4{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);}
.m1b{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);}
.m19{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);}
.m18{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);}
.m6{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);}
.m1e{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);}
.m2e{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);}
.m28{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);}
.m30{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);}
.m26{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);}
.m29{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);}
.m2{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);}
.m9{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);}
.v8{vertical-align:-29.413710px;}
.ve{vertical-align:-27.865620px;}
.v2{vertical-align:-19.530000px;}
.v10{vertical-align:-14.940000px;}
.v4{vertical-align:-11.632549px;}
.v9{vertical-align:-9.636000px;}
.v0{vertical-align:0.000000px;}
.v20{vertical-align:2.879748px;}
.v19{vertical-align:6.198000px;}
.v12{vertical-align:8.964000px;}
.v16{vertical-align:10.344000px;}
.v7{vertical-align:11.628000px;}
.v1b{vertical-align:14.136000px;}
.v14{vertical-align:17.724000px;}
.va{vertical-align:20.622000px;}
.v1{vertical-align:21.702000px;}
.v17{vertical-align:30.666000px;}
.vd{vertical-align:31.750574px;}
.v6{vertical-align:33.514495px;}
.v11{vertical-align:35.868000px;}
.vc{vertical-align:38.232000px;}
.v1a{vertical-align:39.342000px;}
.v5{vertical-align:40.356000px;}
.v13{vertical-align:42.090000px;}
.v3{vertical-align:43.092513px;}
.vb{vertical-align:44.178000px;}
.v1e{vertical-align:48.450000px;}
.vf{vertical-align:50.808000px;}
.v15{vertical-align:55.200000px;}
.v18{vertical-align:66.090000px;}
.v1f{vertical-align:69.816000px;}
.v1c{vertical-align:74.370000px;}
.v1d{vertical-align:88.452000px;}
.lsc7{letter-spacing:-0.896400px;}
.lscf{letter-spacing:-0.416665px;}
.lscd{letter-spacing:-0.382574px;}
.lsc8{letter-spacing:-0.306612px;}
.ls42{letter-spacing:-0.171342px;}
.ls57{letter-spacing:-0.162324px;}
.lsbf{letter-spacing:-0.156312px;}
.ls44{letter-spacing:-0.154208px;}
.lsb9{letter-spacing:-0.150300px;}
.ls59{letter-spacing:-0.146092px;}
.lsc0{letter-spacing:-0.144288px;}
.lsc1{letter-spacing:-0.138276px;}
.ls3a{letter-spacing:-0.131362px;}
.ls40{letter-spacing:-0.125651px;}
.ls50{letter-spacing:-0.124448px;}
.lsa7{letter-spacing:-0.120240px;}
.ls55{letter-spacing:-0.119038px;}
.lsa6{letter-spacing:-0.114228px;}
.ls3f{letter-spacing:-0.108517px;}
.lsa5{letter-spacing:-0.108216px;}
.ls41{letter-spacing:-0.102805px;}
.lsaa{letter-spacing:-0.102204px;}
.ls56{letter-spacing:-0.097394px;}
.ls4c{letter-spacing:-0.097094px;}
.lsc2{letter-spacing:-0.096192px;}
.ls61{letter-spacing:-0.091984px;}
.ls4d{letter-spacing:-0.091382px;}
.lsa8{letter-spacing:-0.090180px;}
.ls62{letter-spacing:-0.086573px;}
.ls99{letter-spacing:-0.086184px;}
.ls3b{letter-spacing:-0.085671px;}
.lsba{letter-spacing:-0.084168px;}
.ls38{letter-spacing:-0.081875px;}
.ls51{letter-spacing:-0.081162px;}
.ls4e{letter-spacing:-0.077566px;}
.ls9d{letter-spacing:-0.075600px;}
.lsa1{letter-spacing:-0.072144px;}
.ls4b{letter-spacing:-0.068537px;}
.ls60{letter-spacing:-0.064930px;}
.lsbb{letter-spacing:-0.060120px;}
.ls48{letter-spacing:-0.057114px;}
.ls5d{letter-spacing:-0.054108px;}
.lsbc{letter-spacing:-0.054000px;}
.lscb{letter-spacing:-0.053030px;}
.lsa9{letter-spacing:-0.048096px;}
.lsbe{letter-spacing:-0.042084px;}
.lsa2{letter-spacing:-0.036072px;}
.ls4a{letter-spacing:-0.034268px;}
.ls5f{letter-spacing:-0.032465px;}
.lsa3{letter-spacing:-0.030060px;}
.ls49{letter-spacing:-0.028557px;}
.ls5e{letter-spacing:-0.027054px;}
.lsa0{letter-spacing:-0.024048px;}
.ls39{letter-spacing:-0.022846px;}
.ls4f{letter-spacing:-0.021643px;}
.lsbd{letter-spacing:-0.021600px;}
.lsa4{letter-spacing:-0.018036px;}
.ls3e{letter-spacing:-0.017134px;}
.ls54{letter-spacing:-0.016232px;}
.ls9c{letter-spacing:-0.016200px;}
.ls9f{letter-spacing:-0.012024px;}
.ls3c{letter-spacing:-0.011423px;}
.ls52{letter-spacing:-0.010822px;}
.ls9a{letter-spacing:-0.010800px;}
.lscc{letter-spacing:-0.007576px;}
.ls9e{letter-spacing:-0.006012px;}
.ls3d{letter-spacing:-0.005711px;}
.ls53{letter-spacing:-0.005411px;}
.ls5{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.005411px;}
.ls10{letter-spacing:0.005711px;}
.ls90{letter-spacing:0.006012px;}
.ls36{letter-spacing:0.010822px;}
.ls16{letter-spacing:0.011423px;}
.ls8f{letter-spacing:0.012024px;}
.ls89{letter-spacing:0.016200px;}
.ls35{letter-spacing:0.016232px;}
.ls15{letter-spacing:0.017134px;}
.ls95{letter-spacing:0.018036px;}
.ls37{letter-spacing:0.019440px;}
.ls17{letter-spacing:0.020520px;}
.ls8b{letter-spacing:0.021600px;}
.ls8e{letter-spacing:0.024048px;}
.ls2b{letter-spacing:0.024300px;}
.lsb{letter-spacing:0.025650px;}
.lsce{letter-spacing:0.026515px;}
.lsb4{letter-spacing:0.027000px;}
.ls2a{letter-spacing:0.029160px;}
.lsc4{letter-spacing:0.030060px;}
.lsc6{letter-spacing:0.030303px;}
.lsa{letter-spacing:0.030780px;}
.ls93{letter-spacing:0.032400px;}
.ls2e{letter-spacing:0.032465px;}
.lse{letter-spacing:0.034268px;}
.ls96{letter-spacing:0.036072px;}
.ls31{letter-spacing:0.037876px;}
.ls11{letter-spacing:0.039980px;}
.ls8d{letter-spacing:0.042084px;}
.lsb3{letter-spacing:0.043200px;}
.ls2d{letter-spacing:0.043286px;}
.lsd{letter-spacing:0.045691px;}
.ls92{letter-spacing:0.048096px;}
.ls2c{letter-spacing:0.054108px;}
.lsc{letter-spacing:0.057114px;}
.ls8a{letter-spacing:0.059400px;}
.ls27{letter-spacing:0.060329px;}
.ls7{letter-spacing:0.063680px;}
.ls91{letter-spacing:0.066132px;}
.ls86{letter-spacing:0.067032px;}
.lsc5{letter-spacing:0.072144px;}
.ls94{letter-spacing:0.078156px;}
.ls2f{letter-spacing:0.081162px;}
.lsf{letter-spacing:0.085671px;}
.lsb5{letter-spacing:0.096192px;}
.ls8c{letter-spacing:0.108216px;}
.ls5c{letter-spacing:0.135270px;}
.ls47{letter-spacing:0.142785px;}
.ls9b{letter-spacing:0.145800px;}
.lsab{letter-spacing:0.150300px;}
.ls29{letter-spacing:0.159440px;}
.ls9{letter-spacing:0.168298px;}
.ls28{letter-spacing:0.172368px;}
.ls88{letter-spacing:0.177156px;}
.ls8{letter-spacing:0.181944px;}
.lsca{letter-spacing:0.188079px;}
.ls87{letter-spacing:0.191520px;}
.lsaf{letter-spacing:0.670741px;}
.lsb7{letter-spacing:0.745694px;}
.ls7e{letter-spacing:0.851607px;}
.ls82{letter-spacing:0.880893px;}
.ls76{letter-spacing:0.952543px;}
.ls1b{letter-spacing:1.021200px;}
.ls63{letter-spacing:1.310725px;}
.ls71{letter-spacing:1.312200px;}
.ls72{letter-spacing:1.312766px;}
.ls64{letter-spacing:1.316725px;}
.ls1f{letter-spacing:1.318200px;}
.ls79{letter-spacing:1.318766px;}
.lsb2{letter-spacing:1.322640px;}
.ls7f{letter-spacing:1.414741px;}
.ls6b{letter-spacing:1.420741px;}
.ls21{letter-spacing:1.464783px;}
.ls73{letter-spacing:1.476843px;}
.ls66{letter-spacing:1.478793px;}
.ls1a{letter-spacing:1.489694px;}
.ls6f{letter-spacing:1.490725px;}
.ls22{letter-spacing:1.495694px;}
.ls6c{letter-spacing:1.496725px;}
.ls0{letter-spacing:2.989200px;}
.ls7c{letter-spacing:3.510017px;}
.ls6a{letter-spacing:3.822017px;}
.ls7b{letter-spacing:3.828017px;}
.ls20{letter-spacing:4.303142px;}
.ls77{letter-spacing:4.762457px;}
.ls5b{letter-spacing:11.914582px;}
.ls4{letter-spacing:11.954850px;}
.ls33{letter-spacing:12.087727px;}
.lsad{letter-spacing:12.339483px;}
.ls46{letter-spacing:12.576503px;}
.ls13{letter-spacing:12.759268px;}
.ls6d{letter-spacing:13.042741px;}
.ls75{letter-spacing:13.083483px;}
.ls67{letter-spacing:13.089483px;}
.ls78{letter-spacing:13.098843px;}
.ls74{letter-spacing:13.118725px;}
.lsd3{letter-spacing:13.261996px;}
.lsb1{letter-spacing:13.329959px;}
.ls6e{letter-spacing:13.383483px;}
.ls70{letter-spacing:13.389483px;}
.lsd0{letter-spacing:13.448400px;}
.lsb6{letter-spacing:14.824349px;}
.ls85{letter-spacing:14.943900px;}
.ls5a{letter-spacing:14.960862px;}
.ls6{letter-spacing:15.003676px;}
.ls32{letter-spacing:15.015226px;}
.lsb8{letter-spacing:15.660017px;}
.ls45{letter-spacing:15.792021px;}
.ls12{letter-spacing:15.849406px;}
.lsd1{letter-spacing:16.338635px;}
.ls58{letter-spacing:16.340616px;}
.ls43{letter-spacing:17.248428px;}
.ls81{letter-spacing:17.319483px;}
.ls7d{letter-spacing:17.325483px;}
.ls84{letter-spacing:17.469483px;}
.ls69{letter-spacing:17.475483px;}
.lsae{letter-spacing:17.873108px;}
.ls1{letter-spacing:17.929200px;}
.ls80{letter-spacing:18.022741px;}
.ls83{letter-spacing:18.028741px;}
.ls1e{letter-spacing:18.069483px;}
.ls65{letter-spacing:18.098725px;}
.ls18{letter-spacing:18.696583px;}
.ls1d{letter-spacing:19.515483px;}
.ls97{letter-spacing:20.285021px;}
.lsd2{letter-spacing:20.444518px;}
.lsac{letter-spacing:20.911142px;}
.ls24{letter-spacing:21.153407px;}
.ls25{letter-spacing:21.159566px;}
.ls1c{letter-spacing:22.976726px;}
.ls26{letter-spacing:23.671138px;}
.ls2{letter-spacing:70.236600px;}
.ls3{letter-spacing:72.353510px;}
.lsc3{letter-spacing:83.043756px;}
.ls19{letter-spacing:87.189483px;}
.lsc9{letter-spacing:105.418481px;}
.ls7a{letter-spacing:547.528741px;}
.ls98{letter-spacing:820.860444px;}
.ls34{letter-spacing:843.467969px;}
.lsb0{letter-spacing:870.634741px;}
.ls14{letter-spacing:890.327300px;}
.ls23{letter-spacing:977.462725px;}
.ls68{letter-spacing:1047.284793px;}
.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;}
}
.ws144{word-spacing:-103.870185px;}
.ws35{word-spacing:-69.690503px;}
.ws44{word-spacing:-66.022582px;}
.wsc3{word-spacing:-60.120000px;}
.ws34{word-spacing:-57.114000px;}
.ws37{word-spacing:-56.959792px;}
.ws43{word-spacing:-54.108000px;}
.ws46{word-spacing:-53.961908px;}
.wsc4{word-spacing:-46.845504px;}
.ws33{word-spacing:-21.691897px;}
.ws42{word-spacing:-20.550218px;}
.ws109{word-spacing:-15.030000px;}
.wsac{word-spacing:-14.943900px;}
.ws36{word-spacing:-14.278500px;}
.wsc1{word-spacing:-13.645800px;}
.ws45{word-spacing:-13.527000px;}
.wsc2{word-spacing:-13.483800px;}
.ws108{word-spacing:-13.478400px;}
.ws10a{word-spacing:-13.449600px;}
.ws107{word-spacing:-13.446000px;}
.wsc0{word-spacing:-12.161520px;}
.ws1f{word-spacing:-11.955150px;}
.ws32{word-spacing:-11.553444px;}
.ws1{word-spacing:-11.357400px;}
.ws41{word-spacing:-10.945368px;}
.ws145{word-spacing:-8.177990px;}
.ws146{word-spacing:-8.143899px;}
.wsb9{word-spacing:-4.961375px;}
.wsd8{word-spacing:-3.547080px;}
.wsd9{word-spacing:-3.529044px;}
.ws15a{word-spacing:-3.192372px;}
.wsea{word-spacing:-3.126240px;}
.wsd0{word-spacing:-3.072600px;}
.ws190{word-spacing:-3.066509px;}
.wsb1{word-spacing:-3.048556px;}
.ws15b{word-spacing:-3.048084px;}
.wsd1{word-spacing:-3.045600px;}
.ws17f{word-spacing:-3.012710px;}
.ws140{word-spacing:-2.825640px;}
.ws110{word-spacing:-2.783556px;}
.ws10f{word-spacing:-2.753496px;}
.ws100{word-spacing:-2.571000px;}
.ws123{word-spacing:-2.500992px;}
.ws124{word-spacing:-2.458908px;}
.wsd2{word-spacing:-2.392200px;}
.wsd3{word-spacing:-2.354400px;}
.ws15d{word-spacing:-2.134260px;}
.ws122{word-spacing:-2.116224px;}
.ws113{word-spacing:-2.098188px;}
.wsa3{word-spacing:-2.092146px;}
.ws159{word-spacing:-2.080152px;}
.ws15c{word-spacing:-2.068128px;}
.ws121{word-spacing:-2.038068px;}
.ws114{word-spacing:-1.989972px;}
.ws6c{word-spacing:-1.873339px;}
.ws6d{word-spacing:-1.833359px;}
.wscb{word-spacing:-1.793268px;}
.ws98{word-spacing:-1.774742px;}
.wsfa{word-spacing:-1.743480px;}
.ws99{word-spacing:-1.736867px;}
.ws164{word-spacing:-1.731456px;}
.wsf9{word-spacing:-1.689372px;}
.ws4c{word-spacing:-1.679152px;}
.ws191{word-spacing:-1.667750px;}
.ws106{word-spacing:-1.613941px;}
.ws4b{word-spacing:-1.599192px;}
.ws78{word-spacing:-1.590775px;}
.wscd{word-spacing:-1.554166px;}
.ws6b{word-spacing:-1.524944px;}
.ws77{word-spacing:-1.515024px;}
.ws39{word-spacing:-1.494390px;}
.ws97{word-spacing:-1.444684px;}
.ws105{word-spacing:-1.434614px;}
.ws141{word-spacing:-1.346688px;}
.ws29{word-spacing:-1.315063px;}
.ws127{word-spacing:-1.286568px;}
.ws142{word-spacing:-1.250496px;}
.ws65{word-spacing:-1.245085px;}
.ws2c{word-spacing:-1.195512px;}
.ws91{word-spacing:-1.179554px;}
.ws16c{word-spacing:-1.135736px;}
.wsb6{word-spacing:-1.075961px;}
.ws10b{word-spacing:-1.016185px;}
.ws11e{word-spacing:-1.010016px;}
.wsec{word-spacing:-0.997992px;}
.ws59{word-spacing:-0.993784px;}
.wsed{word-spacing:-0.973944px;}
.ws11d{word-spacing:-0.955908px;}
.ws61{word-spacing:-0.942381px;}
.ws85{word-spacing:-0.941479px;}
.ws64{word-spacing:-0.913824px;}
.ws14c{word-spacing:-0.912600px;}
.ws63{word-spacing:-0.908113px;}
.ws8d{word-spacing:-0.892782px;}
.ws62{word-spacing:-0.879556px;}
.ws90{word-spacing:-0.865728px;}
.ws8f{word-spacing:-0.860317px;}
.ws8e{word-spacing:-0.833263px;}
.ws58{word-spacing:-0.828153px;}
.ws84{word-spacing:-0.784566px;}
.wsdf{word-spacing:-0.625248px;}
.ws168{word-spacing:-0.609845px;}
.wse0{word-spacing:-0.595188px;}
.ws2b{word-spacing:-0.478205px;}
.wsd4{word-spacing:-0.372744px;}
.ws51{word-spacing:-0.336973px;}
.ws18d{word-spacing:-0.322790px;}
.ws7d{word-spacing:-0.319237px;}
.ws16d{word-spacing:-0.298878px;}
.ws154{word-spacing:-0.282564px;}
.wsce{word-spacing:-0.277704px;}
.ws47{word-spacing:-0.263819px;}
.wscf{word-spacing:-0.263340px;}
.ws13b{word-spacing:-0.252504px;}
.ws48{word-spacing:-0.250173px;}
.ws73{word-spacing:-0.249934px;}
.ws14e{word-spacing:-0.240480px;}
.ws23{word-spacing:-0.239102px;}
.ws74{word-spacing:-0.237006px;}
.ws13a{word-spacing:-0.234468px;}
.ws136{word-spacing:-0.216432px;}
.ws180{word-spacing:-0.215194px;}
.ws167{word-spacing:-0.208332px;}
.ws11{word-spacing:-0.179327px;}
.ws50{word-spacing:-0.165631px;}
.ws176{word-spacing:-0.161395px;}
.ws7c{word-spacing:-0.156913px;}
.ws7{word-spacing:-0.119551px;}
.ws135{word-spacing:-0.108216px;}
.ws8{word-spacing:-0.059776px;}
.wsc5{word-spacing:-0.053798px;}
.ws20{word-spacing:-0.047821px;}
.wsa1{word-spacing:-0.045430px;}
.ws2{word-spacing:-0.000224px;}
.ws0{word-spacing:0.000000px;}
.ws143{word-spacing:0.048096px;}
.ws147{word-spacing:0.053798px;}
.ws126{word-spacing:0.054108px;}
.ws3{word-spacing:0.059776px;}
.ws9d{word-spacing:0.075751px;}
.ws71{word-spacing:0.079960px;}
.ws81{word-spacing:0.081162px;}
.ws161{word-spacing:0.084168px;}
.ws55{word-spacing:0.085671px;}
.wse4{word-spacing:0.090180px;}
.ws82{word-spacing:0.091984px;}
.wsfe{word-spacing:0.096192px;}
.ws56{word-spacing:0.097094px;}
.ws125{word-spacing:0.102204px;}
.ws83{word-spacing:0.102805px;}
.wsc7{word-spacing:0.107597px;}
.ws57{word-spacing:0.108517px;}
.ws120{word-spacing:0.114228px;}
.ws169{word-spacing:0.117424px;}
.ws3f{word-spacing:0.119551px;}
.ws12c{word-spacing:0.120240px;}
.wse6{word-spacing:0.124200px;}
.ws75{word-spacing:0.136080px;}
.ws12d{word-spacing:0.140400px;}
.ws76{word-spacing:0.140940px;}
.ws49{word-spacing:0.143640px;}
.wsff{word-spacing:0.144288px;}
.ws9e{word-spacing:0.145800px;}
.ws4a{word-spacing:0.148770px;}
.wse5{word-spacing:0.151200px;}
.ws72{word-spacing:0.153900px;}
.ws12f{word-spacing:0.156600px;}
.ws183{word-spacing:0.161395px;}
.ws14d{word-spacing:0.162000px;}
.ws1d{word-spacing:0.179327px;}
.ws12e{word-spacing:0.205200px;}
.wsc6{word-spacing:0.215194px;}
.ws26{word-spacing:0.239102px;}
.ws8c{word-spacing:0.248897px;}
.ws60{word-spacing:0.262724px;}
.ws28{word-spacing:0.298878px;}
.ws137{word-spacing:0.390780px;}
.wscc{word-spacing:0.418429px;}
.ws138{word-spacing:0.474948px;}
.ws10e{word-spacing:0.478205px;}
.ws104{word-spacing:0.597756px;}
.ws139{word-spacing:0.601200px;}
.ws16f{word-spacing:0.645581px;}
.ws1c{word-spacing:0.657532px;}
.ws103{word-spacing:0.717307px;}
.ws157{word-spacing:0.769536px;}
.ws158{word-spacing:0.805608px;}
.wsc9{word-spacing:0.836858px;}
.ws17{word-spacing:0.896634px;}
.ws189{word-spacing:0.914573px;}
.ws16{word-spacing:0.956410px;}
.ws179{word-spacing:0.968371px;}
.ws3e{word-spacing:1.016185px;}
.ws27{word-spacing:1.135736px;}
.wsfb{word-spacing:1.136268px;}
.ws129{word-spacing:1.172340px;}
.ws13e{word-spacing:1.190376px;}
.ws128{word-spacing:1.196388px;}
.wsca{word-spacing:1.255288px;}
.ws13f{word-spacing:1.316628px;}
.ws9b{word-spacing:1.390576px;}
.ws9c{word-spacing:1.417630px;}
.ws6f{word-spacing:1.467830px;}
.ws70{word-spacing:1.496387px;}
.wsdd{word-spacing:1.533060px;}
.wsdc{word-spacing:1.551096px;}
.ws2a{word-spacing:1.554166px;}
.wsf6{word-spacing:1.569132px;}
.ws18b{word-spacing:1.613952px;}
.ws170{word-spacing:1.667750px;}
.ws1b{word-spacing:1.673717px;}
.wsf5{word-spacing:1.983960px;}
.ws149{word-spacing:2.032370px;}
.ws21{word-spacing:2.092146px;}
.wsf0{word-spacing:2.242476px;}
.ws177{word-spacing:2.259533px;}
.wsf1{word-spacing:2.266524px;}
.ws133{word-spacing:2.290572px;}
.ws10d{word-spacing:2.331248px;}
.ws7f{word-spacing:2.353698px;}
.ws132{word-spacing:2.356704px;}
.wsf{word-spacing:2.450800px;}
.ws53{word-spacing:2.484459px;}
.wsb3{word-spacing:2.510575px;}
.ws13d{word-spacing:2.567124px;}
.ws153{word-spacing:2.585160px;}
.ws115{word-spacing:2.591172px;}
.wsee{word-spacing:2.621232px;}
.wsef{word-spacing:2.633256px;}
.ws80{word-spacing:2.672935px;}
.ws7e{word-spacing:2.689168px;}
.ws13c{word-spacing:2.717424px;}
.wsc8{word-spacing:2.809453px;}
.ws54{word-spacing:2.821432px;}
.ws52{word-spacing:2.838566px;}
.ws178{word-spacing:2.905114px;}
.wsb7{word-spacing:2.929004px;}
.wsb2{word-spacing:2.988780px;}
.wsf2{word-spacing:3.084156px;}
.ws5{word-spacing:3.108331px;}
.ws184{word-spacing:3.224074px;}
.ws17e{word-spacing:3.227904px;}
.wse7{word-spacing:3.258504px;}
.ws18c{word-spacing:3.281702px;}
.ws79{word-spacing:3.284356px;}
.ws10c{word-spacing:3.287658px;}
.ws3b{word-spacing:3.347434px;}
.wse8{word-spacing:3.348684px;}
.wsad{word-spacing:3.407209px;}
.ws7a{word-spacing:3.452090px;}
.ws4d{word-spacing:3.466820px;}
.wsd{word-spacing:3.586536px;}
.ws174{word-spacing:3.604493px;}
.ws95{word-spacing:3.636058px;}
.ws4e{word-spacing:3.643873px;}
.ws94{word-spacing:3.679344px;}
.ws150{word-spacing:3.685356px;}
.ws14{word-spacing:3.706087px;}
.ws93{word-spacing:3.717220px;}
.ws151{word-spacing:3.745476px;}
.ws15{word-spacing:3.765863px;}
.ws11a{word-spacing:3.799584px;}
.ws69{word-spacing:3.838061px;}
.ws68{word-spacing:3.883752px;}
.ws67{word-spacing:3.923732px;}
.ws172{word-spacing:3.927283px;}
.ws9a{word-spacing:3.939062px;}
.ws31{word-spacing:3.945190px;}
.ws18e{word-spacing:3.981082px;}
.ws89{word-spacing:3.987760px;}
.ws96{word-spacing:3.993170px;}
.wsae{word-spacing:4.004965px;}
.ws119{word-spacing:4.034052px;}
.ws118{word-spacing:4.058100px;}
.wse{word-spacing:4.064741px;}
.ws88{word-spacing:4.074332px;}
.ws188{word-spacing:4.088678px;}
.ws6e{word-spacing:4.157899px;}
.ws182{word-spacing:4.196275px;}
.ws5d{word-spacing:4.209302px;}
.ws6a{word-spacing:4.215013px;}
.ws14a{word-spacing:4.244068px;}
.ws171{word-spacing:4.250074px;}
.ws5c{word-spacing:4.300684px;}
.ws3a{word-spacing:4.303843px;}
.ws152{word-spacing:4.364712px;}
.wse9{word-spacing:4.370724px;}
.ws12{word-spacing:4.423394px;}
.ws1a{word-spacing:4.483170px;}
.ws173{word-spacing:4.788058px;}
.ws16a{word-spacing:4.901599px;}
.ws8a{word-spacing:4.907596px;}
.ws16e{word-spacing:4.961375px;}
.ws18a{word-spacing:5.057050px;}
.ws15e{word-spacing:5.074128px;}
.ws4{word-spacing:5.080926px;}
.ws112{word-spacing:5.146272px;}
.ws111{word-spacing:5.164308px;}
.ws5e{word-spacing:5.180240px;}
.wsa0{word-spacing:5.260253px;}
.ws6{word-spacing:5.320028px;}
.ws156{word-spacing:5.494968px;}
.wsd5{word-spacing:5.506992px;}
.ws17a{word-spacing:5.541235px;}
.ws86{word-spacing:5.556892px;}
.ws16b{word-spacing:5.618906px;}
.ws87{word-spacing:5.713805px;}
.ws155{word-spacing:5.801580px;}
.ws9{word-spacing:5.858009px;}
.ws5a{word-spacing:5.865608px;}
.ws165{word-spacing:5.867712px;}
.ws166{word-spacing:5.873724px;}
.ws5b{word-spacing:6.031238px;}
.ws3d{word-spacing:6.216662px;}
.ws3c{word-spacing:6.236954px;}
.ws38{word-spacing:6.515540px;}
.ws11f{word-spacing:6.535044px;}
.ws7b{word-spacing:6.536246px;}
.wsb{word-spacing:6.575316px;}
.ws101{word-spacing:6.694867px;}
.ws14b{word-spacing:6.754643px;}
.ws10{word-spacing:6.814418px;}
.ws92{word-spacing:6.860894px;}
.ws4f{word-spacing:6.899371px;}
.ws15f{word-spacing:6.913800px;}
.wsf3{word-spacing:6.931836px;}
.ws160{word-spacing:6.937848px;}
.ws17c{word-spacing:6.993792px;}
.wsf4{word-spacing:7.058088px;}
.ws13{word-spacing:7.113296px;}
.ws25{word-spacing:7.173072px;}
.ws66{word-spacing:7.242055px;}
.wseb{word-spacing:7.280532px;}
.ws24{word-spacing:7.292623px;}
.ws134{word-spacing:7.304580px;}
.wsa{word-spacing:7.591501px;}
.wsbf{word-spacing:7.890379px;}
.ws17d{word-spacing:7.908365px;}
.ws186{word-spacing:7.962163px;}
.ws12b{word-spacing:8.007984px;}
.ws19{word-spacing:8.009930px;}
.ws12a{word-spacing:8.026020px;}
.ws2e{word-spacing:8.308808px;}
.wsde{word-spacing:8.314596px;}
.ws163{word-spacing:8.368704px;}
.wsd6{word-spacing:8.404776px;}
.ws162{word-spacing:8.416800px;}
.ws187{word-spacing:8.446349px;}
.wsd7{word-spacing:8.452872px;}
.ws18{word-spacing:8.547911px;}
.ws14f{word-spacing:8.729424px;}
.ws40{word-spacing:8.787013px;}
.wsc{word-spacing:9.145667px;}
.ws2f{word-spacing:9.265218px;}
.wsbe{word-spacing:9.324994px;}
.wse3{word-spacing:9.480924px;}
.wse2{word-spacing:9.492948px;}
.ws130{word-spacing:9.498960px;}
.ws30{word-spacing:9.623872px;}
.ws131{word-spacing:9.877716px;}
.ws185{word-spacing:10.221696px;}
.ws11b{word-spacing:10.983924px;}
.ws11c{word-spacing:11.374704px;}
.ws1e{word-spacing:11.904472px;}
.wse1{word-spacing:11.933820px;}
.ws22{word-spacing:12.493100px;}
.ws175{word-spacing:13.395802px;}
.ws2d{word-spacing:13.509286px;}
.wsf7{word-spacing:14.512968px;}
.wsf8{word-spacing:14.518980px;}
.ws8b{word-spacing:14.679500px;}
.ws9f{word-spacing:14.884124px;}
.ws5f{word-spacing:15.495028px;}
.wsfc{word-spacing:15.541020px;}
.wsbd{word-spacing:15.541656px;}
.wsfd{word-spacing:15.589116px;}
.wsa2{word-spacing:15.880567px;}
.ws181{word-spacing:16.462310px;}
.ws18f{word-spacing:16.623706px;}
.wsaa{word-spacing:17.959670px;}
.ws116{word-spacing:18.408744px;}
.wsb8{word-spacing:18.450826px;}
.wsbc{word-spacing:18.504826px;}
.ws117{word-spacing:18.613152px;}
.ws17b{word-spacing:18.937037px;}
.ws102{word-spacing:19.725948px;}
.wsa4{word-spacing:20.860567px;}
.wsa9{word-spacing:20.861858px;}
.wsbb{word-spacing:20.867858px;}
.wsab{word-spacing:23.515670px;}
.wsb5{word-spacing:23.805317px;}
.wsa7{word-spacing:24.929035px;}
.wsa8{word-spacing:25.197317px;}
.wsb0{word-spacing:27.895670px;}
.ws148{word-spacing:32.577702px;}
.wsa5{word-spacing:37.129670px;}
.wsba{word-spacing:37.674826px;}
.wsdb{word-spacing:42.222276px;}
.wsda{word-spacing:42.270372px;}
.wsa6{word-spacing:42.685670px;}
.wsb4{word-spacing:42.981317px;}
.wsaf{word-spacing:47.065670px;}
._26{margin-left:-105.589768px;}
._27{margin-left:-104.248896px;}
._18{margin-left:-12.730711px;}
._19{margin-left:-10.857371px;}
._1e{margin-left:-9.615893px;}
._3{margin-left:-6.939994px;}
._0{margin-left:-5.917824px;}
._8{margin-left:-4.423394px;}
._2{margin-left:-3.306599px;}
._4{margin-left:-1.398758px;}
._17{width:1.237770px;}
._1{width:2.998387px;}
._1f{width:4.088664px;}
._20{width:5.929583px;}
._1a{width:10.736897px;}
._1b{width:12.269691px;}
._14{width:13.891859px;}
._5{width:15.709133px;}
._6{width:17.645875px;}
._c{width:19.451029px;}
._9{width:21.339889px;}
._b{width:22.505569px;}
._e{width:23.611362px;}
._15{width:25.105752px;}
._d{width:26.169776px;}
._28{width:27.197898px;}
._a{width:28.716208px;}
._10{width:30.306229px;}
._f{width:32.338600px;}
._29{width:33.354824px;}
._7{width:34.514441px;}
._2a{width:36.367484px;}
._24{width:38.459630px;}
._25{width:39.750774px;}
._13{width:41.071861px;}
._22{width:42.823249px;}
._1c{width:45.734358px;}
._21{width:46.983622px;}
._2b{width:48.161494px;}
._11{width:1021.691319px;}
._1d{width:1891.562123px;}
._16{width:1996.648907px;}
._23{width:2101.735692px;}
._12{width:2117.019000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(38,38,38);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(54,121,123);}
.fs14{font-size:32.400000px;}
.fs1a{font-size:33.585600px;}
.fsd{font-size:34.200000px;}
.fse{font-size:35.865600px;}
.fs1b{font-size:37.878600px;}
.fs13{font-size:37.908000px;}
.fsc{font-size:40.014000px;}
.fs4{font-size:41.842800px;}
.fs19{font-size:42.120000px;}
.fsf{font-size:43.092000px;}
.fs3{font-size:45.429600px;}
.fs8{font-size:45.486000px;}
.fs6{font-size:47.820600px;}
.fs15{font-size:47.880000px;}
.fs10{font-size:48.600000px;}
.fs9{font-size:51.300000px;}
.fs5{font-size:53.798400px;}
.fs16{font-size:54.000000px;}
.fs12{font-size:54.108000px;}
.fsb{font-size:57.114000px;}
.fs1{font-size:59.775600px;}
.fs18{font-size:60.120000px;}
.fs7{font-size:62.286600px;}
.fs11{font-size:64.800000px;}
.fsa{font-size:68.400000px;}
.fs17{font-size:72.000000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.yf6{bottom:-875.102550px;}
.y116{bottom:-839.550876px;}
.y19c{bottom:-836.810550px;}
.y1b5{bottom:-811.428573px;}
.y115{bottom:-809.581056px;}
.y5c{bottom:-804.919373px;}
.y1b4{bottom:-791.178654px;}
.y114{bottom:-789.331137px;}
.y7d{bottom:-778.756230px;}
.y1b3{bottom:-770.928735px;}
.y113{bottom:-769.081218px;}
.y7c{bottom:-755.585873px;}
.y112{bottom:-748.831299px;}
.y1b2{bottom:-741.678852px;}
.y111{bottom:-728.581380px;}
.y1b1{bottom:-721.428933px;}
.y110{bottom:-708.331461px;}
.y1b0{bottom:-701.179014px;}
.y10f{bottom:-688.171722px;}
.y1af{bottom:-680.929095px;}
.y10e{bottom:-667.921803px;}
.y1ae{bottom:-660.769356px;}
.y10d{bottom:-647.671884px;}
.y1ad{bottom:-640.519437px;}
.y10c{bottom:-627.421965px;}
.y1ac{bottom:-620.269518px;}
.y10b{bottom:-607.172046px;}
.y1ab{bottom:-600.019599px;}
.y10a{bottom:-586.922127px;}
.y1aa{bottom:-579.769680px;}
.y109{bottom:-566.672208px;}
.y1a9{bottom:-559.519761px;}
.y108{bottom:-546.512469px;}
.y1a8{bottom:-539.360022px;}
.y7b{bottom:-530.207796px;}
.y107{bottom:-526.262550px;}
.y1a7{bottom:-519.110103px;}
.y7a{bottom:-510.970372px;}
.y1a6{bottom:-498.860184px;}
.y1cc{bottom:-497.756550px;}
.y79{bottom:-491.732163px;}
.y106{bottom:-488.372550px;}
.y1a5{bottom:-478.610265px;}
.y78{bottom:-472.494740px;}
.y1e5{bottom:-472.374573px;}
.y105{bottom:-463.982400px;}
.y77{bottom:-453.257317px;}
.y1e4{bottom:-452.124654px;}
.y1a4{bottom:-449.360382px;}
.y16b{bottom:-448.175550px;}
.y76{bottom:-434.019894px;}
.y1e3{bottom:-431.874735px;}
.y1a3{bottom:-429.110463px;}
.y75{bottom:-414.868142px;}
.y126{bottom:-409.885050px;}
.y1e2{bottom:-402.624852px;}
.y1a2{bottom:-399.770400px;}
.y74{bottom:-395.630719px;}
.y1e1{bottom:-382.374933px;}
.y73{bottom:-376.393296px;}
.y146{bottom:-374.333376px;}
.y1e0{bottom:-362.125014px;}
.y1a1{bottom:-362.060550px;}
.y72{bottom:-357.155872px;}
.y71{bottom:-357.155787px;}
.y145{bottom:-344.363556px;}
.y1df{bottom:-341.875095px;}
.y1a0{bottom:-337.580550px;}
.y1c2{bottom:-335.238957px;}
.y6e{bottom:-330.565458px;}
.y6d{bottom:-330.564235px;}
.y144{bottom:-324.113637px;}
.y1b6{bottom:-322.820550px;}
.y1de{bottom:-321.715356px;}
.y18d{bottom:-315.874362px;}
.y6c{bottom:-315.003526px;}
.y1b7{bottom:-313.550550px;}
.y70{bottom:-310.130873px;}
.y6f{bottom:-307.223872px;}
.y6b{bottom:-307.223171px;}
.y143{bottom:-303.863718px;}
.y1dd{bottom:-301.465437px;}
.y18c{bottom:-295.624443px;}
.y104{bottom:-292.981524px;}
.y1b8{bottom:-288.440276px;}
.y142{bottom:-283.613799px;}
.y1dc{bottom:-281.215518px;}
.y18b{bottom:-275.374524px;}
.y103{bottom:-272.731605px;}
.y6a{bottom:-271.996684px;}
.y141{bottom:-263.363880px;}
.y1b9{bottom:-263.330002px;}
.y1db{bottom:-260.965599px;}
.y18a{bottom:-255.124605px;}
.y69{bottom:-252.759261px;}
.y102{bottom:-252.571866px;}
.y140{bottom:-243.113961px;}
.y1da{bottom:-240.715680px;}
.y1ba{bottom:-238.129887px;}
.y189{bottom:-234.964866px;}
.y68{bottom:-233.521838px;}
.y101{bottom:-232.321947px;}
.y13f{bottom:-222.954222px;}
.y1d9{bottom:-220.465761px;}
.y188{bottom:-214.714947px;}
.y67{bottom:-214.370086px;}
.y1bb{bottom:-213.019613px;}
.y100{bottom:-212.072028px;}
.y13e{bottom:-202.704303px;}
.y1d8{bottom:-200.306022px;}
.y66{bottom:-195.132663px;}
.y187{bottom:-194.465028px;}
.yff{bottom:-191.822109px;}
.y1bc{bottom:-187.189768px;}
.y13d{bottom:-182.454384px;}
.y1d7{bottom:-180.056103px;}
.y65{bottom:-175.895240px;}
.y186{bottom:-174.215109px;}
.yfe{bottom:-171.572190px;}
.y1c3{bottom:-166.039985px;}
.y13c{bottom:-162.204465px;}
.y1bd{bottom:-162.079494px;}
.y1d6{bottom:-159.806184px;}
.y64{bottom:-156.657817px;}
.y185{bottom:-153.965190px;}
.yfd{bottom:-151.322271px;}
.y1c5{bottom:-144.800507px;}
.y13b{bottom:-141.954546px;}
.y1d5{bottom:-139.556265px;}
.y63{bottom:-137.420394px;}
.y1be{bottom:-136.879379px;}
.y184{bottom:-133.715271px;}
.y1c4{bottom:-133.460601px;}
.yfc{bottom:-131.072352px;}
.y13a{bottom:-121.704627px;}
.y62{bottom:-118.182971px;}
.y183{bottom:-113.465352px;}
.y1c7{bottom:-112.311085px;}
.y1bf{bottom:-111.769105px;}
.yfb{bottom:-110.912613px;}
.y1d4{bottom:-110.306382px;}
.y139{bottom:-101.454708px;}
.y1c6{bottom:-100.881218px;}
.y61{bottom:-98.945548px;}
.y1c1{bottom:-98.000550px;}
.y182{bottom:-93.305613px;}
.y1d3{bottom:-90.056463px;}
.y1c0{bottom:-86.568990px;}
.yfa{bottom:-81.572550px;}
.y138{bottom:-81.294969px;}
.y60{bottom:-79.793796px;}
.y181{bottom:-63.965550px;}
.y137{bottom:-61.045050px;}
.y1d2{bottom:-60.716400px;}
.y5f{bottom:-60.556372px;}
.y19f{bottom:-54.440100px;}
.y9a{bottom:-46.809090px;}
.yf9{bottom:-43.773000px;}
.y19e{bottom:-34.820550px;}
.y180{bottom:-26.165400px;}
.y5e{bottom:-24.560872px;}
.yf8{bottom:-24.242550px;}
.y136{bottom:-23.155050px;}
.y1d1{bottom:-23.006550px;}
.ybb{bottom:-22.022955px;}
.y19d{bottom:-10.430550px;}
.y17f{bottom:-1.775550px;}
.y5d{bottom:-1.390373px;}
.yba{bottom:-0.072090px;}
.y0{bottom:0.000000px;}
.yf7{bottom:0.147450px;}
.y135{bottom:1.235100px;}
.y1d0{bottom:1.473450px;}
.y1e8{bottom:1.800450px;}
.y1f4{bottom:3.815043px;}
.y2{bottom:16.015847px;}
.y1e6{bottom:16.233450px;}
.y1e9{bottom:25.503450px;}
.y1ea{bottom:50.613724px;}
.y2e{bottom:63.780000px;}
.y1eb{bottom:75.723998px;}
.y1ec{bottom:100.924113px;}
.y2d{bottom:108.612000px;}
.y209{bottom:113.415000px;}
.ybc{bottom:114.381000px;}
.y199{bottom:117.844500px;}
.y1ed{bottom:126.034387px;}
.y2c{bottom:128.875500px;}
.y154{bottom:129.696000px;}
.y208{bottom:133.680000px;}
.y198{bottom:138.108000px;}
.y98{bottom:142.787595px;}
.y235{bottom:143.790000px;}
.y2b{bottom:149.139000px;}
.y153{bottom:149.961000px;}
.y1ee{bottom:151.864232px;}
.y207{bottom:155.437500px;}
.y197{bottom:158.373000px;}
.y234{bottom:163.158000px;}
.y2a{bottom:169.404000px;}
.y152{bottom:170.224500px;}
.y134{bottom:172.235976px;}
.y1f5{bottom:173.014015px;}
.y206{bottom:175.702500px;}
.y1ef{bottom:176.974506px;}
.y196{bottom:178.636500px;}
.y233{bottom:182.524500px;}
.y29{bottom:189.667500px;}
.y151{bottom:190.488000px;}
.y133{bottom:192.485895px;}
.y1f7{bottom:194.253493px;}
.y205{bottom:197.460000px;}
.y195{bottom:198.901500px;}
.y232{bottom:201.892500px;}
.y1f0{bottom:202.174621px;}
.y1f6{bottom:205.593399px;}
.y28{bottom:209.932500px;}
.y150{bottom:210.753000px;}
.y132{bottom:212.645634px;}
.yb9{bottom:213.443983px;}
.y204{bottom:217.725000px;}
.y194{bottom:219.165000px;}
.y231{bottom:221.259000px;}
.y1f9{bottom:226.742915px;}
.y1f1{bottom:227.284895px;}
.y27{bottom:230.196000px;}
.y59{bottom:230.331000px;}
.y14f{bottom:231.016500px;}
.yb8{bottom:231.668910px;}
.yf5{bottom:231.717450px;}
.y131{bottom:232.895553px;}
.y203{bottom:237.988500px;}
.y1f8{bottom:238.172782px;}
.y193{bottom:239.428500px;}
.y1f3{bottom:241.053450px;}
.y5b{bottom:246.559628px;}
.yf3{bottom:247.335000px;}
.y230{bottom:249.594000px;}
.yb7{bottom:249.894582px;}
.y26{bottom:250.459500px;}
.y58{bottom:250.594500px;}
.y14e{bottom:251.281500px;}
.y1f2{bottom:252.485010px;}
.y130{bottom:253.145472px;}
.y17e{bottom:256.976448px;}
.y202{bottom:258.253500px;}
.y192{bottom:259.693500px;}
.yf2{bottom:267.598500px;}
.yb6{bottom:268.119509px;}
.y260{bottom:269.680500px;}
.y19b{bottom:270.009450px;}
.y25{bottom:270.724500px;}
.y57{bottom:270.858000px;}
.y14d{bottom:271.545000px;}
.y12f{bottom:273.395391px;}
.y17d{bottom:277.226367px;}
.y191{bottom:279.957000px;}
.y201{bottom:280.011000px;}
.y1cf{bottom:284.613900px;}
.yb5{bottom:286.344436px;}
.y22f{bottom:286.893000px;}
.yf1{bottom:287.863500px;}
.y25f{bottom:289.048500px;}
.y24{bottom:290.988000px;}
.y56{bottom:291.123000px;}
.y14c{bottom:291.808500px;}
.y12e{bottom:293.645310px;}
.y17c{bottom:297.386106px;}
.y190{bottom:300.222000px;}
.y200{bottom:300.276000px;}
.y1ce{bottom:304.233450px;}
.yb4{bottom:304.569364px;}
.yf0{bottom:308.127000px;}
.y25e{bottom:308.416500px;}
.y22e{bottom:311.058000px;}
.y23{bottom:311.253000px;}
.y55{bottom:311.386500px;}
.y14b{bottom:312.073500px;}
.y12d{bottom:313.895229px;}
.y17b{bottom:317.636025px;}
.y1ff{bottom:320.539500px;}
.yb3{bottom:322.713129px;}
.y22d{bottom:326.256000px;}
.yef{bottom:328.392000px;}
.y1cd{bottom:328.623450px;}
.y18f{bottom:329.452500px;}
.y22{bottom:331.516500px;}
.y54{bottom:331.651500px;}
.y14a{bottom:332.337000px;}
.y12c{bottom:334.145148px;}
.y17a{bottom:337.885944px;}
.y1fe{bottom:340.803000px;}
.yb2{bottom:340.938056px;}
.y25d{bottom:341.367000px;}
.y22c{bottom:341.454000px;}
.yee{bottom:348.655500px;}
.y21{bottom:351.780000px;}
.y53{bottom:351.915000px;}
.y149{bottom:352.602000px;}
.y12b{bottom:354.304887px;}
.y179{bottom:358.135863px;}
.yb1{bottom:359.162983px;}
.y97{bottom:359.775000px;}
.y25c{bottom:360.733500px;}
.y22b{bottom:365.619000px;}
.yed{bottom:368.919000px;}
.y18e{bottom:370.041000px;}
.y20{bottom:372.045000px;}
.y52{bottom:372.178500px;}
.y148{bottom:372.865500px;}
.y1fd{bottom:376.011000px;}
.yb0{bottom:377.387910px;}
.yaf{bottom:377.387991px;}
.y178{bottom:378.385782px;}
.y96{bottom:380.038500px;}
.y25b{bottom:380.101500px;}
.y22a{bottom:380.817000px;}
.y12a{bottom:383.644950px;}
.y1f{bottom:392.308500px;}
.y229{bottom:396.015000px;}
.y1fc{bottom:396.276000px;}
.y169{bottom:398.448000px;}
.y177{bottom:398.635701px;}
.yeb{bottom:398.850000px;}
.y25a{bottom:399.468000px;}
.y95{bottom:400.302000px;}
.y51{bottom:401.409000px;}
.yac{bottom:402.578829px;}
.yab{bottom:402.579987px;}
.yea{bottom:404.191500px;}
.y1e{bottom:412.573500px;}
.y147{bottom:416.832000px;}
.yaa{bottom:417.321712px;}
.y259{bottom:418.836000px;}
.y176{bottom:418.885620px;}
.y94{bottom:420.567000px;}
.y129{bottom:421.444500px;}
.yec{bottom:421.687500px;}
.yae{bottom:421.937910px;}
.yad{bottom:424.691910px;}
.ya9{bottom:424.692574px;}
.y1fb{bottom:425.506500px;}
.y228{bottom:429.145500px;}
.ye9{bottom:430.036500px;}
.y1d{bottom:432.837000px;}
.ye8{bottom:435.555000px;}
.y50{bottom:436.228500px;}
.y258{bottom:438.204000px;}
.y175{bottom:439.045359px;}
.y93{bottom:440.830500px;}
.y128{bottom:440.974950px;}
.y124{bottom:445.239000px;}
.y227{bottom:449.409000px;}
.y4f{bottom:456.493500px;}
.y257{bottom:457.570500px;}
.ya8{bottom:458.065036px;}
.y174{bottom:459.295278px;}
.y92{bottom:461.095500px;}
.y1c{bottom:462.067500px;}
.y127{bottom:465.364950px;}
.y1fa{bottom:466.095000px;}
.y226{bottom:469.674000px;}
.ye7{bottom:471.222000px;}
.ya7{bottom:476.289963px;}
.ye6{bottom:476.565000px;}
.y4e{bottom:476.757000px;}
.y256{bottom:476.938500px;}
.y173{bottom:479.545197px;}
.y91{bottom:481.359000px;}
.y225{bottom:489.937500px;}
.y1ca{bottom:494.502000px;}
.ya6{bottom:494.514890px;}
.y255{bottom:496.305000px;}
.ye5{bottom:496.828500px;}
.y4d{bottom:497.022000px;}
.y172{bottom:499.795116px;}
.y90{bottom:501.622500px;}
.y1e7{bottom:508.935000px;}
.y224{bottom:510.202500px;}
.ya5{bottom:512.658655px;}
.y254{bottom:515.673000px;}
.ye4{bottom:517.092000px;}
.y4c{bottom:517.285500px;}
.y171{bottom:520.045035px;}
.y8f{bottom:521.887500px;}
.y223{bottom:530.466000px;}
.ya4{bottom:530.883582px;}
.y253{bottom:535.041000px;}
.y1b{bottom:536.712000px;}
.ye3{bottom:537.357000px;}
.y4b{bottom:537.549000px;}
.y8e{bottom:539.415000px;}
.y170{bottom:540.294954px;}
.y8d{bottom:542.151000px;}
.ya3{bottom:549.108509px;}
.y222{bottom:550.729500px;}
.y252{bottom:554.407500px;}
.y1a{bottom:556.977000px;}
.ye2{bottom:557.620500px;}
.y4a{bottom:557.814000px;}
.y16f{bottom:560.544873px;}
.ya2{bottom:567.333437px;}
.y221{bottom:570.994500px;}
.y251{bottom:573.775500px;}
.y8c{bottom:573.924000px;}
.ye1{bottom:577.885500px;}
.y49{bottom:578.077500px;}
.y16e{bottom:580.704612px;}
.y8b{bottom:584.968500px;}
.ya1{bottom:585.558364px;}
.y8a{bottom:591.252000px;}
.y220{bottom:591.258000px;}
.y250{bottom:593.142000px;}
.y19{bottom:595.173000px;}
.ye0{bottom:598.149000px;}
.y48{bottom:598.342500px;}
.y16d{bottom:600.954531px;}
.ya0{bottom:603.783291px;}
.y1cb{bottom:609.063450px;}
.y21f{bottom:611.523000px;}
.y24f{bottom:612.510000px;}
.ydf{bottom:614.722500px;}
.y18{bottom:615.438000px;}
.yde{bottom:615.672000px;}
.ydd{bottom:618.412500px;}
.y47{bottom:618.606000px;}
.y123{bottom:619.098000px;}
.y16c{bottom:621.204450px;}
.y9f{bottom:622.008218px;}
.y21e{bottom:631.786500px;}
.y24e{bottom:631.878000px;}
.y89{bottom:634.492500px;}
.y17{bottom:635.701500px;}
.y46{bottom:638.869500px;}
.y122{bottom:639.361500px;}
.y9e{bottom:640.151983px;}
.ydc{bottom:641.526000px;}
.y24d{bottom:651.244500px;}
.y21d{bottom:652.050000px;}
.y88{bottom:654.756000px;}
.y16{bottom:655.965000px;}
.ydb{bottom:656.448000px;}
.y168{bottom:656.743500px;}
.y9d{bottom:658.376910px;}
.y16a{bottom:658.644450px;}
.y45{bottom:659.134500px;}
.y121{bottom:659.625000px;}
.yda{bottom:661.791000px;}
.y24c{bottom:670.612500px;}
.y21c{bottom:672.315000px;}
.y87{bottom:675.019500px;}
.y15{bottom:676.230000px;}
.y167{bottom:677.007000px;}
.y120{bottom:679.890000px;}
.yd9{bottom:682.054500px;}
.y24b{bottom:689.979000px;}
.y9c{bottom:692.477910px;}
.y21b{bottom:692.578500px;}
.y44{bottom:694.342500px;}
.y86{bottom:695.284500px;}
.y14{bottom:696.493500px;}
.yd8{bottom:696.799500px;}
.y125{bottom:696.934950px;}
.y166{bottom:697.270500px;}
.y11f{bottom:700.153500px;}
.yd7{bottom:702.318000px;}
.y24a{bottom:709.347000px;}
.y21a{bottom:712.843500px;}
.y9b{bottom:714.428910px;}
.y43{bottom:714.606000px;}
.y85{bottom:715.548000px;}
.y13{bottom:716.758500px;}
.y165{bottom:717.535500px;}
.y11e{bottom:720.418500px;}
.yd6{bottom:722.583000px;}
.y249{bottom:728.715000px;}
.y219{bottom:733.107000px;}
.y42{bottom:734.871000px;}
.y84{bottom:735.813000px;}
.y12{bottom:737.022000px;}
.y164{bottom:737.799000px;}
.y11d{bottom:740.682000px;}
.yd5{bottom:742.846500px;}
.y248{bottom:748.081500px;}
.y218{bottom:753.370500px;}
.y83{bottom:756.076500px;}
.y41{bottom:756.628500px;}
.y11{bottom:757.285500px;}
.y163{bottom:758.064000px;}
.y11c{bottom:760.945500px;}
.yd4{bottom:763.111500px;}
.y247{bottom:767.449500px;}
.y82{bottom:776.340000px;}
.y40{bottom:776.893500px;}
.y10{bottom:777.550500px;}
.y162{bottom:778.327500px;}
.y11b{bottom:781.210500px;}
.y1c9{bottom:782.335500px;}
.y217{bottom:782.601000px;}
.yd3{bottom:783.375000px;}
.y246{bottom:786.816000px;}
.y81{bottom:796.605000px;}
.y3f{bottom:797.157000px;}
.yf{bottom:797.814000px;}
.y161{bottom:798.591000px;}
.yd1{bottom:799.051500px;}
.yd2{bottom:799.228500px;}
.y11a{bottom:801.474000px;}
.y1c8{bottom:801.568500px;}
.yd0{bottom:803.638500px;}
.y245{bottom:806.184000px;}
.y80{bottom:816.868500px;}
.y216{bottom:817.420500px;}
.y160{bottom:818.856000px;}
.yce{bottom:820.858500px;}
.ycf{bottom:821.035500px;}
.ycd{bottom:825.447000px;}
.y244{bottom:825.552000px;}
.y19a{bottom:829.975500px;}
.y119{bottom:830.704500px;}
.y3e{bottom:832.365000px;}
.ye{bottom:833.059500px;}
.y7f{bottom:837.133500px;}
.y215{bottom:837.685500px;}
.y15f{bottom:839.119500px;}
.y243{bottom:844.918500px;}
.yd{bottom:851.217000px;}
.y3d{bottom:852.628500px;}
.y214{bottom:857.949000px;}
.y15e{bottom:859.384500px;}
.ycb{bottom:860.182500px;}
.yca{bottom:861.114000px;}
.ycc{bottom:861.834000px;}
.y242{bottom:864.286500px;}
.yc9{bottom:865.524000px;}
.y118{bottom:871.294500px;}
.y3c{bottom:872.893500px;}
.y213{bottom:878.214000px;}
.y7e{bottom:878.278500px;}
.yc{bottom:878.340000px;}
.y15d{bottom:879.648000px;}
.y241{bottom:883.653000px;}
.yc7{bottom:887.742000px;}
.yc6{bottom:888.673500px;}
.yc8{bottom:890.518500px;}
.y117{bottom:890.527500px;}
.y3b{bottom:893.157000px;}
.yc5{bottom:893.260500px;}
.yb{bottom:896.496000px;}
.y212{bottom:898.477500px;}
.y15c{bottom:899.911500px;}
.y240{bottom:903.021000px;}
.y5a{bottom:906.685500px;}
.y3a{bottom:913.422000px;}
.y211{bottom:918.741000px;}
.yf4{bottom:918.934500px;}
.ya{bottom:919.536000px;}
.y15b{bottom:920.176500px;}
.y23f{bottom:922.389000px;}
.yc4{bottom:931.474500px;}
.y9{bottom:932.811000px;}
.y39{bottom:933.685500px;}
.y210{bottom:939.006000px;}
.y15a{bottom:940.440000px;}
.y23e{bottom:941.755500px;}
.y99{bottom:949.328910px;}
.yc3{bottom:951.738000px;}
.y38{bottom:953.949000px;}
.y8{bottom:955.849500px;}
.y20f{bottom:959.269500px;}
.y159{bottom:960.705000px;}
.y23d{bottom:961.123500px;}
.yc2{bottom:972.001500px;}
.y37{bottom:974.214000px;}
.y7{bottom:977.904000px;}
.y20e{bottom:979.534500px;}
.y23c{bottom:980.490000px;}
.y158{bottom:980.968500px;}
.y36{bottom:994.477500px;}
.y6{bottom:998.167500px;}
.y20d{bottom:999.798000px;}
.y23b{bottom:999.858000px;}
.y157{bottom:1001.232000px;}
.yc0{bottom:1009.153500px;}
.yc1{bottom:1012.888500px;}
.y35{bottom:1014.742500px;}
.y23a{bottom:1019.226000px;}
.y20c{bottom:1020.061500px;}
.y156{bottom:1021.497000px;}
.y34{bottom:1035.006000px;}
.y239{bottom:1038.592500px;}
.y20b{bottom:1040.326500px;}
.y5{bottom:1040.848500px;}
.ybf{bottom:1046.304000px;}
.y33{bottom:1055.269500px;}
.y238{bottom:1057.960500px;}
.y155{bottom:1058.647500px;}
.y20a{bottom:1060.590000px;}
.ybe{bottom:1066.567500px;}
.y4{bottom:1071.244500px;}
.y32{bottom:1075.534500px;}
.y237{bottom:1077.327000px;}
.ybd{bottom:1086.832500px;}
.y31{bottom:1095.798000px;}
.y236{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y30{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y2f{bottom:1168.366500px;}
.h4f{height:-315.261000px;}
.h52{height:9.360000px;}
.h27{height:23.508984px;}
.h4e{height:24.139650px;}
.h18{height:24.815039px;}
.h50{height:25.764106px;}
.h2a{height:28.576637px;}
.h8{height:30.461558px;}
.h1e{height:31.603605px;}
.h1a{height:33.072749px;}
.h1c{height:33.299897px;}
.hf{height:33.359361px;}
.h1f{height:33.744727px;}
.hc{height:35.052500px;}
.h40{height:35.115117px;}
.h10{height:35.619434px;}
.h21{height:35.643164px;}
.h41{height:37.494141px;}
.h12{height:37.623340px;}
.h29{height:38.259024px;}
.h47{height:38.734848px;}
.h9{height:39.165235px;}
.h4d{height:39.418945px;}
.h53{height:39.434227px;}
.h22{height:39.497783px;}
.h43{height:39.603516px;}
.hd{height:39.614278px;}
.h13{height:41.692104px;}
.h4b{height:41.842920px;}
.ha{height:43.038432px;}
.hb{height:43.516637px;}
.h4{height:43.815515px;}
.h45{height:43.886426px;}
.h44{height:44.091914px;}
.h49{height:46.714950px;}
.h20{height:47.302734px;}
.h24{height:48.137098px;}
.h11{height:49.930664px;}
.h15{height:50.811381px;}
.h2{height:50.930649px;}
.h42{height:52.558594px;}
.h28{height:53.199024px;}
.h46{height:53.485664px;}
.h7{height:54.405312px;}
.h6{height:54.411312px;}
.h35{height:54.995897px;}
.h2f{height:55.001897px;}
.h39{height:57.052950px;}
.h26{height:59.153098px;}
.h3a{height:60.850950px;}
.h17{height:62.439381px;}
.h36{height:63.730950px;}
.h34{height:64.438950px;}
.h3b{height:64.888637px;}
.h2e{height:65.969897px;}
.h33{height:66.419897px;}
.h2b{height:66.425897px;}
.h38{height:68.086950px;}
.h37{height:68.164950px;}
.h3c{height:68.769024px;}
.h3e{height:72.207024px;}
.h30{height:72.641897px;}
.h31{height:76.367897px;}
.h1b{height:77.250749px;}
.h5{height:77.469696px;}
.h19{height:84.279515px;}
.h2c{height:84.773897px;}
.h2d{height:88.499897px;}
.h23{height:88.961584px;}
.h3d{height:90.843024px;}
.h14{height:93.903894px;}
.h3{height:94.491000px;}
.h25{height:107.099363px;}
.h16{height:113.049327px;}
.h32{height:117.886637px;}
.h48{height:150.217500px;}
.h1d{height:196.167555px;}
.h3f{height:212.073000px;}
.he{height:224.322075px;}
.h4a{height:234.654000px;}
.h4c{height:242.182500px;}
.h51{height:262.636500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w9{width:8.640000px;}
.w2{width:174.085494px;}
.w4{width:293.955750px;}
.w8{width:329.563500px;}
.wa{width:329.892000px;}
.w5{width:389.782500px;}
.w7{width:390.763500px;}
.w3{width:421.125975px;}
.w6{width:555.217500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x87{left:-166.615500px;}
.x36{left:-149.953950px;}
.x73{left:-135.196500px;}
.x39{left:-121.279950px;}
.x74{left:-103.336500px;}
.x20{left:-99.366675px;}
.x84{left:-87.873000px;}
.x8a{left:-77.155500px;}
.x22{left:-69.099675px;}
.x7c{left:-54.033000px;}
.x7e{left:-22.173000px;}
.x0{left:0.000000px;}
.x8b{left:4.590000px;}
.x8d{left:24.004566px;}
.x8c{left:28.684500px;}
.x92{left:34.299000px;}
.x42{left:35.374050px;}
.x2{left:58.555600px;}
.x38{left:61.861050px;}
.x3a{left:90.618396px;}
.x2c{left:96.257325px;}
.x76{left:102.943020px;}
.x1{left:114.802500px;}
.x7f{left:116.697000px;}
.x3c{left:117.914450px;}
.x3b{left:120.587670px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.x4{left:145.794000px;}
.x3d{left:147.235059px;}
.x23{left:154.570801px;}
.x3e{left:161.005050px;}
.x81{left:162.013500px;}
.x7b{left:168.849000px;}
.x55{left:170.221500px;}
.x82{left:177.208500px;}
.x3f{left:181.498050px;}
.x25{left:183.383302px;}
.x24{left:186.205035px;}
.x6{left:188.388000px;}
.x8f{left:189.515277px;}
.x85{left:199.140000px;}
.x7{left:201.402000px;}
.x90{left:202.475085px;}
.x77{left:203.904000px;}
.x93{left:205.153500px;}
.x56{left:212.109000px;}
.x26{left:214.332834px;}
.x62{left:219.834000px;}
.x91{left:221.825542px;}
.x27{left:228.867825px;}
.x63{left:234.777000px;}
.x1f{left:235.894500px;}
.x94{left:238.072500px;}
.x57{left:242.623500px;}
.x64{left:248.845500px;}
.x28{left:250.499325px;}
.x58{left:252.024000px;}
.x65{left:256.647000px;}
.x95{left:259.104000px;}
.x8e{left:265.655323px;}
.x51{left:268.978500px;}
.x4d{left:275.017500px;}
.x86{left:281.676000px;}
.x80{left:285.831000px;}
.x59{left:289.119000px;}
.x66{left:293.134500px;}
.x35{left:299.479500px;}
.x18{left:300.723000px;}
.x40{left:314.419050px;}
.x19{left:315.666000px;}
.x41{left:318.874050px;}
.x43{left:320.932500px;}
.x1a{left:323.272500px;}
.x31{left:324.720000px;}
.x89{left:327.034500px;}
.x4e{left:331.332000px;}
.x88{left:337.114500px;}
.x1b{left:338.217000px;}
.xe{left:343.221000px;}
.x32{left:345.754500px;}
.x70{left:347.083500px;}
.xf{left:350.694000px;}
.x37{left:355.324050px;}
.x14{left:368.139000px;}
.x15{left:375.612000px;}
.x2b{left:377.381325px;}
.x1c{left:383.185500px;}
.x29{left:390.804825px;}
.x83{left:392.367000px;}
.x4a{left:394.053000px;}
.x2a{left:395.507325px;}
.x2e{left:413.362500px;}
.x2d{left:416.341500px;}
.x52{left:420.109500px;}
.x4b{left:430.657500px;}
.x21{left:433.982325px;}
.x6c{left:436.845000px;}
.x2f{left:447.544500px;}
.x4f{left:459.858000px;}
.x5f{left:461.812500px;}
.x30{left:464.355000px;}
.x69{left:471.307500px;}
.x75{left:474.283500px;}
.x7d{left:475.617000px;}
.x60{left:476.757000px;}
.x53{left:480.274500px;}
.x6d{left:484.101000px;}
.x4c{left:493.884000px;}
.x78{left:500.560500px;}
.x6e{left:513.211500px;}
.x6a{left:515.181000px;}
.x71{left:516.645000px;}
.x50{left:520.966500px;}
.x54{left:536.590500px;}
.x67{left:538.654500px;}
.x6b{left:545.692500px;}
.x16{left:552.255000px;}
.x46{left:553.597500px;}
.x6f{left:555.676500px;}
.x68{left:563.145000px;}
.x17{left:567.199500px;}
.x47{left:579.321000px;}
.x44{left:592.294500px;}
.x8{left:599.008500px;}
.x9{left:606.480000px;}
.x48{left:608.503500px;}
.x45{left:613.092000px;}
.xa{left:614.101500px;}
.xb{left:621.573000px;}
.x5a{left:626.668500px;}
.x49{left:629.434500px;}
.x5b{left:634.468500px;}
.x10{left:645.268500px;}
.x11{left:652.740000px;}
.x12{left:660.361500px;}
.x33{left:664.486500px;}
.x13{left:667.834500px;}
.x98{left:671.115000px;}
.x34{left:676.944000px;}
.x5c{left:678.999000px;}
.x61{left:687.729000px;}
.x99{left:698.014500px;}
.x96{left:700.645500px;}
.x79{left:703.341000px;}
.x5d{left:709.897500px;}
.x9a{left:716.292000px;}
.x5e{left:717.697500px;}
.x97{left:727.545000px;}
.x7a{left:738.457500px;}
.x9b{left:743.191500px;}
.x1d{left:758.260500px;}
.x72{left:760.686000px;}
.xc{left:763.620000px;}
.xd{left:771.091500px;}
.x1e{left:773.203500px;}
@media print{
.v8{vertical-align:-26.145520pt;}
.ve{vertical-align:-24.769440pt;}
.v2{vertical-align:-17.360000pt;}
.v10{vertical-align:-13.280000pt;}
.v4{vertical-align:-10.340043pt;}
.v9{vertical-align:-8.565333pt;}
.v0{vertical-align:0.000000pt;}
.v20{vertical-align:2.559776pt;}
.v19{vertical-align:5.509333pt;}
.v12{vertical-align:7.968000pt;}
.v16{vertical-align:9.194667pt;}
.v7{vertical-align:10.336000pt;}
.v1b{vertical-align:12.565333pt;}
.v14{vertical-align:15.754667pt;}
.va{vertical-align:18.330667pt;}
.v1{vertical-align:19.290667pt;}
.v17{vertical-align:27.258667pt;}
.vd{vertical-align:28.222733pt;}
.v6{vertical-align:29.790662pt;}
.v11{vertical-align:31.882667pt;}
.vc{vertical-align:33.984000pt;}
.v1a{vertical-align:34.970667pt;}
.v5{vertical-align:35.872000pt;}
.v13{vertical-align:37.413333pt;}
.v3{vertical-align:38.304456pt;}
.vb{vertical-align:39.269333pt;}
.v1e{vertical-align:43.066667pt;}
.vf{vertical-align:45.162667pt;}
.v15{vertical-align:49.066667pt;}
.v18{vertical-align:58.746667pt;}
.v1f{vertical-align:62.058667pt;}
.v1c{vertical-align:66.106667pt;}
.v1d{vertical-align:78.624000pt;}
.lsc7{letter-spacing:-0.796800pt;}
.lscf{letter-spacing:-0.370369pt;}
.lscd{letter-spacing:-0.340066pt;}
.lsc8{letter-spacing:-0.272544pt;}
.ls42{letter-spacing:-0.152304pt;}
.ls57{letter-spacing:-0.144288pt;}
.lsbf{letter-spacing:-0.138944pt;}
.ls44{letter-spacing:-0.137074pt;}
.lsb9{letter-spacing:-0.133600pt;}
.ls59{letter-spacing:-0.129859pt;}
.lsc0{letter-spacing:-0.128256pt;}
.lsc1{letter-spacing:-0.122912pt;}
.ls3a{letter-spacing:-0.116766pt;}
.ls40{letter-spacing:-0.111690pt;}
.ls50{letter-spacing:-0.110621pt;}
.lsa7{letter-spacing:-0.106880pt;}
.ls55{letter-spacing:-0.105811pt;}
.lsa6{letter-spacing:-0.101536pt;}
.ls3f{letter-spacing:-0.096459pt;}
.lsa5{letter-spacing:-0.096192pt;}
.ls41{letter-spacing:-0.091382pt;}
.lsaa{letter-spacing:-0.090848pt;}
.ls56{letter-spacing:-0.086573pt;}
.ls4c{letter-spacing:-0.086306pt;}
.lsc2{letter-spacing:-0.085504pt;}
.ls61{letter-spacing:-0.081763pt;}
.ls4d{letter-spacing:-0.081229pt;}
.lsa8{letter-spacing:-0.080160pt;}
.ls62{letter-spacing:-0.076954pt;}
.ls99{letter-spacing:-0.076608pt;}
.ls3b{letter-spacing:-0.076152pt;}
.lsba{letter-spacing:-0.074816pt;}
.ls38{letter-spacing:-0.072778pt;}
.ls51{letter-spacing:-0.072144pt;}
.ls4e{letter-spacing:-0.068947pt;}
.ls9d{letter-spacing:-0.067200pt;}
.lsa1{letter-spacing:-0.064128pt;}
.ls4b{letter-spacing:-0.060922pt;}
.ls60{letter-spacing:-0.057715pt;}
.lsbb{letter-spacing:-0.053440pt;}
.ls48{letter-spacing:-0.050768pt;}
.ls5d{letter-spacing:-0.048096pt;}
.lsbc{letter-spacing:-0.048000pt;}
.lscb{letter-spacing:-0.047138pt;}
.lsa9{letter-spacing:-0.042752pt;}
.lsbe{letter-spacing:-0.037408pt;}
.lsa2{letter-spacing:-0.032064pt;}
.ls4a{letter-spacing:-0.030461pt;}
.ls5f{letter-spacing:-0.028858pt;}
.lsa3{letter-spacing:-0.026720pt;}
.ls49{letter-spacing:-0.025384pt;}
.ls5e{letter-spacing:-0.024048pt;}
.lsa0{letter-spacing:-0.021376pt;}
.ls39{letter-spacing:-0.020307pt;}
.ls4f{letter-spacing:-0.019238pt;}
.lsbd{letter-spacing:-0.019200pt;}
.lsa4{letter-spacing:-0.016032pt;}
.ls3e{letter-spacing:-0.015230pt;}
.ls54{letter-spacing:-0.014429pt;}
.ls9c{letter-spacing:-0.014400pt;}
.ls9f{letter-spacing:-0.010688pt;}
.ls3c{letter-spacing:-0.010154pt;}
.ls52{letter-spacing:-0.009619pt;}
.ls9a{letter-spacing:-0.009600pt;}
.lscc{letter-spacing:-0.006734pt;}
.ls9e{letter-spacing:-0.005344pt;}
.ls3d{letter-spacing:-0.005077pt;}
.ls53{letter-spacing:-0.004810pt;}
.ls5{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.004810pt;}
.ls10{letter-spacing:0.005077pt;}
.ls90{letter-spacing:0.005344pt;}
.ls36{letter-spacing:0.009619pt;}
.ls16{letter-spacing:0.010154pt;}
.ls8f{letter-spacing:0.010688pt;}
.ls89{letter-spacing:0.014400pt;}
.ls35{letter-spacing:0.014429pt;}
.ls15{letter-spacing:0.015230pt;}
.ls95{letter-spacing:0.016032pt;}
.ls37{letter-spacing:0.017280pt;}
.ls17{letter-spacing:0.018240pt;}
.ls8b{letter-spacing:0.019200pt;}
.ls8e{letter-spacing:0.021376pt;}
.ls2b{letter-spacing:0.021600pt;}
.lsb{letter-spacing:0.022800pt;}
.lsce{letter-spacing:0.023569pt;}
.lsb4{letter-spacing:0.024000pt;}
.ls2a{letter-spacing:0.025920pt;}
.lsc4{letter-spacing:0.026720pt;}
.lsc6{letter-spacing:0.026936pt;}
.lsa{letter-spacing:0.027360pt;}
.ls93{letter-spacing:0.028800pt;}
.ls2e{letter-spacing:0.028858pt;}
.lse{letter-spacing:0.030461pt;}
.ls96{letter-spacing:0.032064pt;}
.ls31{letter-spacing:0.033667pt;}
.ls11{letter-spacing:0.035538pt;}
.ls8d{letter-spacing:0.037408pt;}
.lsb3{letter-spacing:0.038400pt;}
.ls2d{letter-spacing:0.038477pt;}
.lsd{letter-spacing:0.040614pt;}
.ls92{letter-spacing:0.042752pt;}
.ls2c{letter-spacing:0.048096pt;}
.lsc{letter-spacing:0.050768pt;}
.ls8a{letter-spacing:0.052800pt;}
.ls27{letter-spacing:0.053626pt;}
.ls7{letter-spacing:0.056605pt;}
.ls91{letter-spacing:0.058784pt;}
.ls86{letter-spacing:0.059584pt;}
.lsc5{letter-spacing:0.064128pt;}
.ls94{letter-spacing:0.069472pt;}
.ls2f{letter-spacing:0.072144pt;}
.lsf{letter-spacing:0.076152pt;}
.lsb5{letter-spacing:0.085504pt;}
.ls8c{letter-spacing:0.096192pt;}
.ls5c{letter-spacing:0.120240pt;}
.ls47{letter-spacing:0.126920pt;}
.ls9b{letter-spacing:0.129600pt;}
.lsab{letter-spacing:0.133600pt;}
.ls29{letter-spacing:0.141725pt;}
.ls9{letter-spacing:0.149598pt;}
.ls28{letter-spacing:0.153216pt;}
.ls88{letter-spacing:0.157472pt;}
.ls8{letter-spacing:0.161728pt;}
.lsca{letter-spacing:0.167182pt;}
.ls87{letter-spacing:0.170240pt;}
.lsaf{letter-spacing:0.596214pt;}
.lsb7{letter-spacing:0.662839pt;}
.ls7e{letter-spacing:0.756984pt;}
.ls82{letter-spacing:0.783016pt;}
.ls76{letter-spacing:0.846705pt;}
.ls1b{letter-spacing:0.907733pt;}
.ls63{letter-spacing:1.165089pt;}
.ls71{letter-spacing:1.166400pt;}
.ls72{letter-spacing:1.166903pt;}
.ls64{letter-spacing:1.170422pt;}
.ls1f{letter-spacing:1.171733pt;}
.ls79{letter-spacing:1.172237pt;}
.lsb2{letter-spacing:1.175680pt;}
.ls7f{letter-spacing:1.257548pt;}
.ls6b{letter-spacing:1.262881pt;}
.ls21{letter-spacing:1.302029pt;}
.ls73{letter-spacing:1.312749pt;}
.ls66{letter-spacing:1.314482pt;}
.ls1a{letter-spacing:1.324173pt;}
.ls6f{letter-spacing:1.325089pt;}
.ls22{letter-spacing:1.329506pt;}
.ls6c{letter-spacing:1.330422pt;}
.ls0{letter-spacing:2.657067pt;}
.ls7c{letter-spacing:3.120015pt;}
.ls6a{letter-spacing:3.397348pt;}
.ls7b{letter-spacing:3.402682pt;}
.ls20{letter-spacing:3.825015pt;}
.ls77{letter-spacing:4.233295pt;}
.ls5b{letter-spacing:10.590739pt;}
.ls4{letter-spacing:10.626533pt;}
.ls33{letter-spacing:10.744646pt;}
.lsad{letter-spacing:10.968429pt;}
.ls46{letter-spacing:11.179114pt;}
.ls13{letter-spacing:11.341571pt;}
.ls6d{letter-spacing:11.593548pt;}
.ls75{letter-spacing:11.629762pt;}
.ls67{letter-spacing:11.635096pt;}
.ls78{letter-spacing:11.643416pt;}
.ls74{letter-spacing:11.661089pt;}
.lsd3{letter-spacing:11.788441pt;}
.lsb1{letter-spacing:11.848852pt;}
.ls6e{letter-spacing:11.896429pt;}
.ls70{letter-spacing:11.901762pt;}
.lsd0{letter-spacing:11.954133pt;}
.lsb6{letter-spacing:13.177199pt;}
.ls85{letter-spacing:13.283467pt;}
.ls5a{letter-spacing:13.298544pt;}
.ls6{letter-spacing:13.336601pt;}
.ls32{letter-spacing:13.346868pt;}
.lsb8{letter-spacing:13.920015pt;}
.ls45{letter-spacing:14.037352pt;}
.ls12{letter-spacing:14.088361pt;}
.lsd1{letter-spacing:14.523231pt;}
.ls58{letter-spacing:14.524992pt;}
.ls43{letter-spacing:15.331936pt;}
.ls81{letter-spacing:15.395096pt;}
.ls7d{letter-spacing:15.400429pt;}
.ls84{letter-spacing:15.528429pt;}
.ls69{letter-spacing:15.533762pt;}
.lsae{letter-spacing:15.887207pt;}
.ls1{letter-spacing:15.937067pt;}
.ls80{letter-spacing:16.020214pt;}
.ls83{letter-spacing:16.025548pt;}
.ls1e{letter-spacing:16.061762pt;}
.ls65{letter-spacing:16.087756pt;}
.ls18{letter-spacing:16.619185pt;}
.ls1d{letter-spacing:17.347096pt;}
.ls97{letter-spacing:18.031130pt;}
.lsd2{letter-spacing:18.172905pt;}
.lsac{letter-spacing:18.587682pt;}
.ls24{letter-spacing:18.803028pt;}
.ls25{letter-spacing:18.808503pt;}
.ls1c{letter-spacing:20.423757pt;}
.ls26{letter-spacing:21.041011pt;}
.ls2{letter-spacing:62.432533pt;}
.ls3{letter-spacing:64.314231pt;}
.lsc3{letter-spacing:73.816672pt;}
.ls19{letter-spacing:77.501762pt;}
.lsc9{letter-spacing:93.705317pt;}
.ls7a{letter-spacing:486.692214pt;}
.ls98{letter-spacing:729.653728pt;}
.ls34{letter-spacing:749.749306pt;}
.lsb0{letter-spacing:773.897548pt;}
.ls14{letter-spacing:791.402045pt;}
.ls23{letter-spacing:868.855756pt;}
.ls68{letter-spacing:930.919816pt;}
.ws144{word-spacing:-92.329053pt;}
.ws35{word-spacing:-61.947114pt;}
.ws44{word-spacing:-58.686739pt;}
.wsc3{word-spacing:-53.440000pt;}
.ws34{word-spacing:-50.768000pt;}
.ws37{word-spacing:-50.630926pt;}
.ws43{word-spacing:-48.096000pt;}
.ws46{word-spacing:-47.966141pt;}
.wsc4{word-spacing:-41.640448pt;}
.ws33{word-spacing:-19.281686pt;}
.ws42{word-spacing:-18.266861pt;}
.ws109{word-spacing:-13.360000pt;}
.wsac{word-spacing:-13.283467pt;}
.ws36{word-spacing:-12.692000pt;}
.wsc1{word-spacing:-12.129600pt;}
.ws45{word-spacing:-12.024000pt;}
.wsc2{word-spacing:-11.985600pt;}
.ws108{word-spacing:-11.980800pt;}
.ws10a{word-spacing:-11.955200pt;}
.ws107{word-spacing:-11.952000pt;}
.wsc0{word-spacing:-10.810240pt;}
.ws1f{word-spacing:-10.626800pt;}
.ws32{word-spacing:-10.269728pt;}
.ws1{word-spacing:-10.095467pt;}
.ws41{word-spacing:-9.729216pt;}
.ws145{word-spacing:-7.269324pt;}
.ws146{word-spacing:-7.239021pt;}
.wsb9{word-spacing:-4.410111pt;}
.wsd8{word-spacing:-3.152960pt;}
.wsd9{word-spacing:-3.136928pt;}
.ws15a{word-spacing:-2.837664pt;}
.wsea{word-spacing:-2.778880pt;}
.wsd0{word-spacing:-2.731200pt;}
.ws190{word-spacing:-2.725786pt;}
.wsb1{word-spacing:-2.709827pt;}
.ws15b{word-spacing:-2.709408pt;}
.wsd1{word-spacing:-2.707200pt;}
.ws17f{word-spacing:-2.677965pt;}
.ws140{word-spacing:-2.511680pt;}
.ws110{word-spacing:-2.474272pt;}
.ws10f{word-spacing:-2.447552pt;}
.ws100{word-spacing:-2.285333pt;}
.ws123{word-spacing:-2.223104pt;}
.ws124{word-spacing:-2.185696pt;}
.wsd2{word-spacing:-2.126400pt;}
.wsd3{word-spacing:-2.092800pt;}
.ws15d{word-spacing:-1.897120pt;}
.ws122{word-spacing:-1.881088pt;}
.ws113{word-spacing:-1.865056pt;}
.wsa3{word-spacing:-1.859685pt;}
.ws159{word-spacing:-1.849024pt;}
.ws15c{word-spacing:-1.838336pt;}
.ws121{word-spacing:-1.811616pt;}
.ws114{word-spacing:-1.768864pt;}
.ws6c{word-spacing:-1.665190pt;}
.ws6d{word-spacing:-1.629653pt;}
.wscb{word-spacing:-1.594016pt;}
.ws98{word-spacing:-1.577549pt;}
.wsfa{word-spacing:-1.549760pt;}
.ws99{word-spacing:-1.543882pt;}
.ws164{word-spacing:-1.539072pt;}
.wsf9{word-spacing:-1.501664pt;}
.ws4c{word-spacing:-1.492579pt;}
.ws191{word-spacing:-1.482445pt;}
.ws106{word-spacing:-1.434614pt;}
.ws4b{word-spacing:-1.421504pt;}
.ws78{word-spacing:-1.414022pt;}
.wscd{word-spacing:-1.381481pt;}
.ws6b{word-spacing:-1.355506pt;}
.ws77{word-spacing:-1.346688pt;}
.ws39{word-spacing:-1.328347pt;}
.ws97{word-spacing:-1.284163pt;}
.ws105{word-spacing:-1.275213pt;}
.ws141{word-spacing:-1.197056pt;}
.ws29{word-spacing:-1.168945pt;}
.ws127{word-spacing:-1.143616pt;}
.ws142{word-spacing:-1.111552pt;}
.ws65{word-spacing:-1.106742pt;}
.ws2c{word-spacing:-1.062677pt;}
.ws91{word-spacing:-1.048493pt;}
.ws16c{word-spacing:-1.009543pt;}
.wsb6{word-spacing:-0.956410pt;}
.ws10b{word-spacing:-0.903276pt;}
.ws11e{word-spacing:-0.897792pt;}
.wsec{word-spacing:-0.887104pt;}
.ws59{word-spacing:-0.883363pt;}
.wsed{word-spacing:-0.865728pt;}
.ws11d{word-spacing:-0.849696pt;}
.ws61{word-spacing:-0.837672pt;}
.ws85{word-spacing:-0.836870pt;}
.ws64{word-spacing:-0.812288pt;}
.ws14c{word-spacing:-0.811200pt;}
.ws63{word-spacing:-0.807211pt;}
.ws8d{word-spacing:-0.793584pt;}
.ws62{word-spacing:-0.781827pt;}
.ws90{word-spacing:-0.769536pt;}
.ws8f{word-spacing:-0.764726pt;}
.ws8e{word-spacing:-0.740678pt;}
.ws58{word-spacing:-0.736136pt;}
.ws84{word-spacing:-0.697392pt;}
.wsdf{word-spacing:-0.555776pt;}
.ws168{word-spacing:-0.542085pt;}
.wse0{word-spacing:-0.529056pt;}
.ws2b{word-spacing:-0.425071pt;}
.wsd4{word-spacing:-0.331328pt;}
.ws51{word-spacing:-0.299531pt;}
.ws18d{word-spacing:-0.286925pt;}
.ws7d{word-spacing:-0.283766pt;}
.ws16d{word-spacing:-0.265669pt;}
.ws154{word-spacing:-0.251168pt;}
.wsce{word-spacing:-0.246848pt;}
.ws47{word-spacing:-0.234506pt;}
.wscf{word-spacing:-0.234080pt;}
.ws13b{word-spacing:-0.224448pt;}
.ws48{word-spacing:-0.222376pt;}
.ws73{word-spacing:-0.222163pt;}
.ws14e{word-spacing:-0.213760pt;}
.ws23{word-spacing:-0.212535pt;}
.ws74{word-spacing:-0.210672pt;}
.ws13a{word-spacing:-0.208416pt;}
.ws136{word-spacing:-0.192384pt;}
.ws180{word-spacing:-0.191283pt;}
.ws167{word-spacing:-0.185184pt;}
.ws11{word-spacing:-0.159402pt;}
.ws50{word-spacing:-0.147227pt;}
.ws176{word-spacing:-0.143462pt;}
.ws7c{word-spacing:-0.139478pt;}
.ws7{word-spacing:-0.106268pt;}
.ws135{word-spacing:-0.096192pt;}
.ws8{word-spacing:-0.053134pt;}
.wsc5{word-spacing:-0.047821pt;}
.ws20{word-spacing:-0.042507pt;}
.wsa1{word-spacing:-0.040382pt;}
.ws2{word-spacing:-0.000199pt;}
.ws0{word-spacing:0.000000pt;}
.ws143{word-spacing:0.042752pt;}
.ws147{word-spacing:0.047821pt;}
.ws126{word-spacing:0.048096pt;}
.ws3{word-spacing:0.053134pt;}
.ws9d{word-spacing:0.067334pt;}
.ws71{word-spacing:0.071075pt;}
.ws81{word-spacing:0.072144pt;}
.ws161{word-spacing:0.074816pt;}
.ws55{word-spacing:0.076152pt;}
.wse4{word-spacing:0.080160pt;}
.ws82{word-spacing:0.081763pt;}
.wsfe{word-spacing:0.085504pt;}
.ws56{word-spacing:0.086306pt;}
.ws125{word-spacing:0.090848pt;}
.ws83{word-spacing:0.091382pt;}
.wsc7{word-spacing:0.095642pt;}
.ws57{word-spacing:0.096459pt;}
.ws120{word-spacing:0.101536pt;}
.ws169{word-spacing:0.104377pt;}
.ws3f{word-spacing:0.106268pt;}
.ws12c{word-spacing:0.106880pt;}
.wse6{word-spacing:0.110400pt;}
.ws75{word-spacing:0.120960pt;}
.ws12d{word-spacing:0.124800pt;}
.ws76{word-spacing:0.125280pt;}
.ws49{word-spacing:0.127680pt;}
.wsff{word-spacing:0.128256pt;}
.ws9e{word-spacing:0.129600pt;}
.ws4a{word-spacing:0.132240pt;}
.wse5{word-spacing:0.134400pt;}
.ws72{word-spacing:0.136800pt;}
.ws12f{word-spacing:0.139200pt;}
.ws183{word-spacing:0.143462pt;}
.ws14d{word-spacing:0.144000pt;}
.ws1d{word-spacing:0.159402pt;}
.ws12e{word-spacing:0.182400pt;}
.wsc6{word-spacing:0.191283pt;}
.ws26{word-spacing:0.212535pt;}
.ws8c{word-spacing:0.221242pt;}
.ws60{word-spacing:0.233533pt;}
.ws28{word-spacing:0.265669pt;}
.ws137{word-spacing:0.347360pt;}
.wscc{word-spacing:0.371937pt;}
.ws138{word-spacing:0.422176pt;}
.ws10e{word-spacing:0.425071pt;}
.ws104{word-spacing:0.531339pt;}
.ws139{word-spacing:0.534400pt;}
.ws16f{word-spacing:0.573850pt;}
.ws1c{word-spacing:0.584473pt;}
.ws103{word-spacing:0.637606pt;}
.ws157{word-spacing:0.684032pt;}
.ws158{word-spacing:0.716096pt;}
.wsc9{word-spacing:0.743874pt;}
.ws17{word-spacing:0.797008pt;}
.ws189{word-spacing:0.812954pt;}
.ws16{word-spacing:0.850142pt;}
.ws179{word-spacing:0.860774pt;}
.ws3e{word-spacing:0.903276pt;}
.ws27{word-spacing:1.009543pt;}
.wsfb{word-spacing:1.010016pt;}
.ws129{word-spacing:1.042080pt;}
.ws13e{word-spacing:1.058112pt;}
.ws128{word-spacing:1.063456pt;}
.wsca{word-spacing:1.115811pt;}
.ws13f{word-spacing:1.170336pt;}
.ws9b{word-spacing:1.236067pt;}
.ws9c{word-spacing:1.260115pt;}
.ws6f{word-spacing:1.304738pt;}
.ws70{word-spacing:1.330122pt;}
.wsdd{word-spacing:1.362720pt;}
.wsdc{word-spacing:1.378752pt;}
.ws2a{word-spacing:1.381481pt;}
.wsf6{word-spacing:1.394784pt;}
.ws18b{word-spacing:1.434624pt;}
.ws170{word-spacing:1.482445pt;}
.ws1b{word-spacing:1.487748pt;}
.wsf5{word-spacing:1.763520pt;}
.ws149{word-spacing:1.806551pt;}
.ws21{word-spacing:1.859685pt;}
.wsf0{word-spacing:1.993312pt;}
.ws177{word-spacing:2.008474pt;}
.wsf1{word-spacing:2.014688pt;}
.ws133{word-spacing:2.036064pt;}
.ws10d{word-spacing:2.072221pt;}
.ws7f{word-spacing:2.092176pt;}
.ws132{word-spacing:2.094848pt;}
.wsf{word-spacing:2.178489pt;}
.ws53{word-spacing:2.208408pt;}
.wsb3{word-spacing:2.231622pt;}
.ws13d{word-spacing:2.281888pt;}
.ws153{word-spacing:2.297920pt;}
.ws115{word-spacing:2.303264pt;}
.wsee{word-spacing:2.329984pt;}
.wsef{word-spacing:2.340672pt;}
.ws80{word-spacing:2.375942pt;}
.ws7e{word-spacing:2.390371pt;}
.ws13c{word-spacing:2.415488pt;}
.wsc8{word-spacing:2.497292pt;}
.ws54{word-spacing:2.507939pt;}
.ws52{word-spacing:2.523170pt;}
.ws178{word-spacing:2.582323pt;}
.wsb7{word-spacing:2.603559pt;}
.wsb2{word-spacing:2.656693pt;}
.wsf2{word-spacing:2.741472pt;}
.ws5{word-spacing:2.762961pt;}
.ws184{word-spacing:2.865843pt;}
.ws17e{word-spacing:2.869248pt;}
.wse7{word-spacing:2.896448pt;}
.ws18c{word-spacing:2.917069pt;}
.ws79{word-spacing:2.919427pt;}
.ws10c{word-spacing:2.922363pt;}
.ws3b{word-spacing:2.975497pt;}
.wse8{word-spacing:2.976608pt;}
.wsad{word-spacing:3.028630pt;}
.ws7a{word-spacing:3.068525pt;}
.ws4d{word-spacing:3.081618pt;}
.wsd{word-spacing:3.188032pt;}
.ws174{word-spacing:3.203994pt;}
.ws95{word-spacing:3.232051pt;}
.ws4e{word-spacing:3.238998pt;}
.ws94{word-spacing:3.270528pt;}
.ws150{word-spacing:3.275872pt;}
.ws14{word-spacing:3.294300pt;}
.ws93{word-spacing:3.304195pt;}
.ws151{word-spacing:3.329312pt;}
.ws15{word-spacing:3.347434pt;}
.ws11a{word-spacing:3.377408pt;}
.ws69{word-spacing:3.411610pt;}
.ws68{word-spacing:3.452224pt;}
.ws67{word-spacing:3.487762pt;}
.ws172{word-spacing:3.490918pt;}
.ws9a{word-spacing:3.501389pt;}
.ws31{word-spacing:3.506835pt;}
.ws18e{word-spacing:3.538739pt;}
.ws89{word-spacing:3.544675pt;}
.ws96{word-spacing:3.549485pt;}
.wsae{word-spacing:3.559969pt;}
.ws119{word-spacing:3.585824pt;}
.ws118{word-spacing:3.607200pt;}
.wse{word-spacing:3.613103pt;}
.ws88{word-spacing:3.621629pt;}
.ws188{word-spacing:3.634381pt;}
.ws6e{word-spacing:3.695910pt;}
.ws182{word-spacing:3.730022pt;}
.ws5d{word-spacing:3.741602pt;}
.ws6a{word-spacing:3.746678pt;}
.ws14a{word-spacing:3.772505pt;}
.ws171{word-spacing:3.777843pt;}
.ws5c{word-spacing:3.822830pt;}
.ws3a{word-spacing:3.825638pt;}
.ws152{word-spacing:3.879744pt;}
.wse9{word-spacing:3.885088pt;}
.ws12{word-spacing:3.931906pt;}
.ws1a{word-spacing:3.985040pt;}
.ws173{word-spacing:4.256051pt;}
.ws16a{word-spacing:4.356977pt;}
.ws8a{word-spacing:4.362307pt;}
.ws16e{word-spacing:4.410111pt;}
.ws18a{word-spacing:4.495155pt;}
.ws15e{word-spacing:4.510336pt;}
.ws4{word-spacing:4.516379pt;}
.ws112{word-spacing:4.574464pt;}
.ws111{word-spacing:4.590496pt;}
.ws5e{word-spacing:4.604658pt;}
.wsa0{word-spacing:4.675780pt;}
.ws6{word-spacing:4.728914pt;}
.ws156{word-spacing:4.884416pt;}
.wsd5{word-spacing:4.895104pt;}
.ws17a{word-spacing:4.925542pt;}
.ws86{word-spacing:4.939459pt;}
.ws16b{word-spacing:4.994583pt;}
.ws87{word-spacing:5.078938pt;}
.ws155{word-spacing:5.156960pt;}
.ws9{word-spacing:5.207119pt;}
.ws5a{word-spacing:5.213874pt;}
.ws165{word-spacing:5.215744pt;}
.ws166{word-spacing:5.221088pt;}
.ws5b{word-spacing:5.361101pt;}
.ws3d{word-spacing:5.525922pt;}
.ws3c{word-spacing:5.543959pt;}
.ws38{word-spacing:5.791591pt;}
.ws11f{word-spacing:5.808928pt;}
.ws7b{word-spacing:5.809997pt;}
.wsb{word-spacing:5.844725pt;}
.ws101{word-spacing:5.950993pt;}
.ws14b{word-spacing:6.004127pt;}
.ws10{word-spacing:6.057261pt;}
.ws92{word-spacing:6.098573pt;}
.ws4f{word-spacing:6.132774pt;}
.ws15f{word-spacing:6.145600pt;}
.wsf3{word-spacing:6.161632pt;}
.ws160{word-spacing:6.166976pt;}
.ws17c{word-spacing:6.216704pt;}
.wsf4{word-spacing:6.273856pt;}
.ws13{word-spacing:6.322930pt;}
.ws25{word-spacing:6.376064pt;}
.ws66{word-spacing:6.437382pt;}
.wseb{word-spacing:6.471584pt;}
.ws24{word-spacing:6.482332pt;}
.ws134{word-spacing:6.492960pt;}
.wsa{word-spacing:6.748001pt;}
.wsbf{word-spacing:7.013670pt;}
.ws17d{word-spacing:7.029658pt;}
.ws186{word-spacing:7.077478pt;}
.ws12b{word-spacing:7.118208pt;}
.ws19{word-spacing:7.119938pt;}
.ws12a{word-spacing:7.134240pt;}
.ws2e{word-spacing:7.385607pt;}
.wsde{word-spacing:7.390752pt;}
.ws163{word-spacing:7.438848pt;}
.wsd6{word-spacing:7.470912pt;}
.ws162{word-spacing:7.481600pt;}
.ws187{word-spacing:7.507866pt;}
.wsd7{word-spacing:7.513664pt;}
.ws18{word-spacing:7.598143pt;}
.ws14f{word-spacing:7.759488pt;}
.ws40{word-spacing:7.810678pt;}
.wsc{word-spacing:8.129482pt;}
.ws2f{word-spacing:8.235749pt;}
.wsbe{word-spacing:8.288883pt;}
.wse3{word-spacing:8.427488pt;}
.wse2{word-spacing:8.438176pt;}
.ws130{word-spacing:8.443520pt;}
.ws30{word-spacing:8.554553pt;}
.ws131{word-spacing:8.780192pt;}
.ws185{word-spacing:9.085952pt;}
.ws11b{word-spacing:9.763488pt;}
.ws11c{word-spacing:10.110848pt;}
.ws1e{word-spacing:10.581753pt;}
.wse1{word-spacing:10.607840pt;}
.ws22{word-spacing:11.104978pt;}
.ws175{word-spacing:11.907379pt;}
.ws2d{word-spacing:12.008254pt;}
.wsf7{word-spacing:12.900416pt;}
.wsf8{word-spacing:12.905760pt;}
.ws8b{word-spacing:13.048445pt;}
.ws9f{word-spacing:13.230333pt;}
.ws5f{word-spacing:13.773358pt;}
.wsfc{word-spacing:13.814240pt;}
.wsbd{word-spacing:13.814805pt;}
.wsfd{word-spacing:13.856992pt;}
.wsa2{word-spacing:14.116060pt;}
.ws181{word-spacing:14.633165pt;}
.ws18f{word-spacing:14.776627pt;}
.wsaa{word-spacing:15.964151pt;}
.ws116{word-spacing:16.363328pt;}
.wsb8{word-spacing:16.400734pt;}
.wsbc{word-spacing:16.448734pt;}
.ws117{word-spacing:16.545024pt;}
.ws17b{word-spacing:16.832922pt;}
.ws102{word-spacing:17.534176pt;}
.wsa4{word-spacing:18.542726pt;}
.wsa9{word-spacing:18.543874pt;}
.wsbb{word-spacing:18.549207pt;}
.wsab{word-spacing:20.902818pt;}
.wsb5{word-spacing:21.160282pt;}
.wsa7{word-spacing:22.159142pt;}
.wsa8{word-spacing:22.397615pt;}
.wsb0{word-spacing:24.796151pt;}
.ws148{word-spacing:28.957957pt;}
.wsa5{word-spacing:33.004151pt;}
.wsba{word-spacing:33.488734pt;}
.wsdb{word-spacing:37.530912pt;}
.wsda{word-spacing:37.573664pt;}
.wsa6{word-spacing:37.942818pt;}
.wsb4{word-spacing:38.205615pt;}
.wsaf{word-spacing:41.836151pt;}
._26{margin-left:-93.857571pt;}
._27{margin-left:-92.665685pt;}
._18{margin-left:-11.316187pt;}
._19{margin-left:-9.650997pt;}
._1e{margin-left:-8.547461pt;}
._3{margin-left:-6.168883pt;}
._0{margin-left:-5.260288pt;}
._8{margin-left:-3.931906pt;}
._2{margin-left:-2.939199pt;}
._4{margin-left:-1.243341pt;}
._17{width:1.100240pt;}
._1{width:2.665233pt;}
._1f{width:3.634368pt;}
._20{width:5.270740pt;}
._1a{width:9.543909pt;}
._1b{width:10.906392pt;}
._14{width:12.348319pt;}
._5{width:13.963674pt;}
._6{width:15.685222pt;}
._c{width:17.289804pt;}
._9{width:18.968790pt;}
._b{width:20.004950pt;}
._e{width:20.987877pt;}
._15{width:22.316224pt;}
._d{width:23.262023pt;}
._28{width:24.175909pt;}
._a{width:25.525518pt;}
._10{width:26.938870pt;}
._f{width:28.745422pt;}
._29{width:29.648733pt;}
._7{width:30.679503pt;}
._2a{width:32.326653pt;}
._24{width:34.186338pt;}
._25{width:35.334021pt;}
._13{width:36.508321pt;}
._22{width:38.065110pt;}
._1c{width:40.652763pt;}
._21{width:41.763219pt;}
._2b{width:42.810217pt;}
._11{width:908.170061pt;}
._1d{width:1681.388554pt;}
._16{width:1774.799029pt;}
._23{width:1868.209504pt;}
._12{width:1881.794667pt;}
.fs14{font-size:28.800000pt;}
.fs1a{font-size:29.853867pt;}
.fsd{font-size:30.400000pt;}
.fse{font-size:31.880533pt;}
.fs1b{font-size:33.669867pt;}
.fs13{font-size:33.696000pt;}
.fsc{font-size:35.568000pt;}
.fs4{font-size:37.193600pt;}
.fs19{font-size:37.440000pt;}
.fsf{font-size:38.304000pt;}
.fs3{font-size:40.381867pt;}
.fs8{font-size:40.432000pt;}
.fs6{font-size:42.507200pt;}
.fs15{font-size:42.560000pt;}
.fs10{font-size:43.200000pt;}
.fs9{font-size:45.600000pt;}
.fs5{font-size:47.820800pt;}
.fs16{font-size:48.000000pt;}
.fs12{font-size:48.096000pt;}
.fsb{font-size:50.768000pt;}
.fs1{font-size:53.133867pt;}
.fs18{font-size:53.440000pt;}
.fs7{font-size:55.365867pt;}
.fs11{font-size:57.600000pt;}
.fsa{font-size:60.800000pt;}
.fs17{font-size:64.000000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.yf6{bottom:-777.868933pt;}
.y116{bottom:-746.267445pt;}
.y19c{bottom:-743.831600pt;}
.y1b5{bottom:-721.269843pt;}
.y115{bottom:-719.627605pt;}
.y5c{bottom:-715.483887pt;}
.y1b4{bottom:-703.269915pt;}
.y114{bottom:-701.627677pt;}
.y7d{bottom:-692.227760pt;}
.y1b3{bottom:-685.269987pt;}
.y113{bottom:-683.627749pt;}
.y7c{bottom:-671.631887pt;}
.y112{bottom:-665.627821pt;}
.y1b2{bottom:-659.270091pt;}
.y111{bottom:-647.627893pt;}
.y1b1{bottom:-641.270163pt;}
.y110{bottom:-629.627965pt;}
.y1b0{bottom:-623.270235pt;}
.y10f{bottom:-611.708197pt;}
.y1af{bottom:-605.270307pt;}
.y10e{bottom:-593.708269pt;}
.y1ae{bottom:-587.350539pt;}
.y10d{bottom:-575.708341pt;}
.y1ad{bottom:-569.350611pt;}
.y10c{bottom:-557.708413pt;}
.y1ac{bottom:-551.350683pt;}
.y10b{bottom:-539.708485pt;}
.y1ab{bottom:-533.350755pt;}
.y10a{bottom:-521.708557pt;}
.y1aa{bottom:-515.350827pt;}
.y109{bottom:-503.708629pt;}
.y1a9{bottom:-497.350899pt;}
.y108{bottom:-485.788861pt;}
.y1a8{bottom:-479.431131pt;}
.y7b{bottom:-471.295818pt;}
.y107{bottom:-467.788933pt;}
.y1a7{bottom:-461.431203pt;}
.y7a{bottom:-454.195887pt;}
.y1a6{bottom:-443.431275pt;}
.y1cc{bottom:-442.450267pt;}
.y79{bottom:-437.095256pt;}
.y106{bottom:-434.108933pt;}
.y1a5{bottom:-425.431347pt;}
.y78{bottom:-419.995324pt;}
.y1e5{bottom:-419.888509pt;}
.y105{bottom:-412.428800pt;}
.y77{bottom:-402.895393pt;}
.y1e4{bottom:-401.888581pt;}
.y1a4{bottom:-399.431451pt;}
.y16b{bottom:-398.378267pt;}
.y76{bottom:-385.795461pt;}
.y1e3{bottom:-383.888653pt;}
.y1a3{bottom:-381.431523pt;}
.y75{bottom:-368.771681pt;}
.y126{bottom:-364.342267pt;}
.y1e2{bottom:-357.888757pt;}
.y1a2{bottom:-355.351467pt;}
.y74{bottom:-351.671750pt;}
.y1e1{bottom:-339.888829pt;}
.y73{bottom:-334.571818pt;}
.y146{bottom:-332.740779pt;}
.y1e0{bottom:-321.888901pt;}
.y1a1{bottom:-321.831600pt;}
.y72{bottom:-317.471887pt;}
.y71{bottom:-317.471811pt;}
.y145{bottom:-306.100939pt;}
.y1df{bottom:-303.888973pt;}
.y1a0{bottom:-300.071600pt;}
.y1c2{bottom:-297.990184pt;}
.y6e{bottom:-293.835963pt;}
.y6d{bottom:-293.834876pt;}
.y144{bottom:-288.101011pt;}
.y1b6{bottom:-286.951600pt;}
.y1de{bottom:-285.969205pt;}
.y18d{bottom:-280.777211pt;}
.y6c{bottom:-280.003134pt;}
.y1b7{bottom:-278.711600pt;}
.y70{bottom:-275.671887pt;}
.y6f{bottom:-273.087887pt;}
.y6b{bottom:-273.087263pt;}
.y143{bottom:-270.101083pt;}
.y1dd{bottom:-267.969277pt;}
.y18c{bottom:-262.777283pt;}
.y104{bottom:-260.428021pt;}
.y1b8{bottom:-256.391357pt;}
.y142{bottom:-252.101155pt;}
.y1dc{bottom:-249.969349pt;}
.y18b{bottom:-244.777355pt;}
.y103{bottom:-242.428093pt;}
.y6a{bottom:-241.774830pt;}
.y141{bottom:-234.101227pt;}
.y1b9{bottom:-234.071113pt;}
.y1db{bottom:-231.969421pt;}
.y18a{bottom:-226.777427pt;}
.y69{bottom:-224.674899pt;}
.y102{bottom:-224.508325pt;}
.y140{bottom:-216.101299pt;}
.y1da{bottom:-213.969493pt;}
.y1ba{bottom:-211.671011pt;}
.y189{bottom:-208.857659pt;}
.y68{bottom:-207.574967pt;}
.y101{bottom:-206.508397pt;}
.y13f{bottom:-198.181531pt;}
.y1d9{bottom:-195.969565pt;}
.y188{bottom:-190.857731pt;}
.y67{bottom:-190.551187pt;}
.y1bb{bottom:-189.350767pt;}
.y100{bottom:-188.508469pt;}
.y13e{bottom:-180.181603pt;}
.y1d8{bottom:-178.049797pt;}
.y66{bottom:-173.451256pt;}
.y187{bottom:-172.857803pt;}
.yff{bottom:-170.508541pt;}
.y1bc{bottom:-166.390905pt;}
.y13d{bottom:-162.181675pt;}
.y1d7{bottom:-160.049869pt;}
.y65{bottom:-156.351324pt;}
.y186{bottom:-154.857875pt;}
.yfe{bottom:-152.508613pt;}
.y1c3{bottom:-147.591098pt;}
.y13c{bottom:-144.181747pt;}
.y1bd{bottom:-144.070661pt;}
.y1d6{bottom:-142.049941pt;}
.y64{bottom:-139.251393pt;}
.y185{bottom:-136.857947pt;}
.yfd{bottom:-134.508685pt;}
.y1c5{bottom:-128.711562pt;}
.y13b{bottom:-126.181819pt;}
.y1d5{bottom:-124.050013pt;}
.y63{bottom:-122.151461pt;}
.y1be{bottom:-121.670559pt;}
.y184{bottom:-118.858019pt;}
.y1c4{bottom:-118.631646pt;}
.yfc{bottom:-116.508757pt;}
.y13a{bottom:-108.181891pt;}
.y62{bottom:-105.051529pt;}
.y183{bottom:-100.858091pt;}
.y1c7{bottom:-99.832076pt;}
.y1bf{bottom:-99.350315pt;}
.yfb{bottom:-98.588989pt;}
.y1d4{bottom:-98.050117pt;}
.y139{bottom:-90.181963pt;}
.y1c6{bottom:-89.672193pt;}
.y61{bottom:-87.951598pt;}
.y1c1{bottom:-87.111600pt;}
.y182{bottom:-82.938323pt;}
.y1d3{bottom:-80.050189pt;}
.y1c0{bottom:-76.950213pt;}
.yfa{bottom:-72.508933pt;}
.y138{bottom:-72.262195pt;}
.y60{bottom:-70.927818pt;}
.y181{bottom:-56.858267pt;}
.y137{bottom:-54.262267pt;}
.y1d2{bottom:-53.970133pt;}
.y5f{bottom:-53.827887pt;}
.y19f{bottom:-48.391200pt;}
.y9a{bottom:-41.608080pt;}
.yf9{bottom:-38.909333pt;}
.y19e{bottom:-30.951600pt;}
.y180{bottom:-23.258133pt;}
.y5e{bottom:-21.831887pt;}
.yf8{bottom:-21.548933pt;}
.y136{bottom:-20.582267pt;}
.y1d1{bottom:-20.450267pt;}
.ybb{bottom:-19.575960pt;}
.y19d{bottom:-9.271600pt;}
.y17f{bottom:-1.578267pt;}
.y5d{bottom:-1.235887pt;}
.yba{bottom:-0.064080pt;}
.y0{bottom:0.000000pt;}
.yf7{bottom:0.131067pt;}
.y135{bottom:1.097867pt;}
.y1d0{bottom:1.309733pt;}
.y1e8{bottom:1.600400pt;}
.y1f4{bottom:3.391150pt;}
.y2{bottom:14.236308pt;}
.y1e6{bottom:14.429733pt;}
.y1e9{bottom:22.669733pt;}
.y1ea{bottom:44.989977pt;}
.y2e{bottom:56.693333pt;}
.y1eb{bottom:67.310220pt;}
.y1ec{bottom:89.710323pt;}
.y2d{bottom:96.544000pt;}
.y209{bottom:100.813333pt;}
.ybc{bottom:101.672000pt;}
.y199{bottom:104.750667pt;}
.y1ed{bottom:112.030566pt;}
.y2c{bottom:114.556000pt;}
.y154{bottom:115.285333pt;}
.y208{bottom:118.826667pt;}
.y198{bottom:122.762667pt;}
.y98{bottom:126.922307pt;}
.y235{bottom:127.813333pt;}
.y2b{bottom:132.568000pt;}
.y153{bottom:133.298667pt;}
.y1ee{bottom:134.990429pt;}
.y207{bottom:138.166667pt;}
.y197{bottom:140.776000pt;}
.y234{bottom:145.029333pt;}
.y2a{bottom:150.581333pt;}
.y152{bottom:151.310667pt;}
.y134{bottom:153.098645pt;}
.y1f5{bottom:153.790235pt;}
.y206{bottom:156.180000pt;}
.y1ef{bottom:157.310672pt;}
.y196{bottom:158.788000pt;}
.y233{bottom:162.244000pt;}
.y29{bottom:168.593333pt;}
.y151{bottom:169.322667pt;}
.y133{bottom:171.098573pt;}
.y1f7{bottom:172.669771pt;}
.y205{bottom:175.520000pt;}
.y195{bottom:176.801333pt;}
.y232{bottom:179.460000pt;}
.y1f0{bottom:179.710775pt;}
.y1f6{bottom:182.749688pt;}
.y28{bottom:186.606667pt;}
.y150{bottom:187.336000pt;}
.y132{bottom:189.018341pt;}
.yb9{bottom:189.727985pt;}
.y204{bottom:193.533333pt;}
.y194{bottom:194.813333pt;}
.y231{bottom:196.674667pt;}
.y1f9{bottom:201.549258pt;}
.y1f1{bottom:202.031018pt;}
.y27{bottom:204.618667pt;}
.y59{bottom:204.738667pt;}
.y14f{bottom:205.348000pt;}
.yb8{bottom:205.927920pt;}
.yf5{bottom:205.971067pt;}
.y131{bottom:207.018269pt;}
.y203{bottom:211.545333pt;}
.y1f8{bottom:211.709140pt;}
.y193{bottom:212.825333pt;}
.y1f3{bottom:214.269733pt;}
.y5b{bottom:219.164113pt;}
.yf3{bottom:219.853333pt;}
.y230{bottom:221.861333pt;}
.yb7{bottom:222.128518pt;}
.y26{bottom:222.630667pt;}
.y58{bottom:222.750667pt;}
.y14e{bottom:223.361333pt;}
.y1f2{bottom:224.431120pt;}
.y130{bottom:225.018197pt;}
.y17e{bottom:228.423509pt;}
.y202{bottom:229.558667pt;}
.y192{bottom:230.838667pt;}
.yf2{bottom:237.865333pt;}
.yb6{bottom:238.328453pt;}
.y260{bottom:239.716000pt;}
.y19b{bottom:240.008400pt;}
.y25{bottom:240.644000pt;}
.y57{bottom:240.762667pt;}
.y14d{bottom:241.373333pt;}
.y12f{bottom:243.018125pt;}
.y17d{bottom:246.423437pt;}
.y191{bottom:248.850667pt;}
.y201{bottom:248.898667pt;}
.y1cf{bottom:252.990133pt;}
.yb5{bottom:254.528388pt;}
.y22f{bottom:255.016000pt;}
.yf1{bottom:255.878667pt;}
.y25f{bottom:256.932000pt;}
.y24{bottom:258.656000pt;}
.y56{bottom:258.776000pt;}
.y14c{bottom:259.385333pt;}
.y12e{bottom:261.018053pt;}
.y17c{bottom:264.343205pt;}
.y190{bottom:266.864000pt;}
.y200{bottom:266.912000pt;}
.y1ce{bottom:270.429733pt;}
.yb4{bottom:270.728323pt;}
.yf0{bottom:273.890667pt;}
.y25e{bottom:274.148000pt;}
.y22e{bottom:276.496000pt;}
.y23{bottom:276.669333pt;}
.y55{bottom:276.788000pt;}
.y14b{bottom:277.398667pt;}
.y12d{bottom:279.017981pt;}
.y17b{bottom:282.343133pt;}
.y1ff{bottom:284.924000pt;}
.yb3{bottom:286.856114pt;}
.y22d{bottom:290.005333pt;}
.yef{bottom:291.904000pt;}
.y1cd{bottom:292.109733pt;}
.y18f{bottom:292.846667pt;}
.y22{bottom:294.681333pt;}
.y54{bottom:294.801333pt;}
.y14a{bottom:295.410667pt;}
.y12c{bottom:297.017909pt;}
.y17a{bottom:300.343061pt;}
.y1fe{bottom:302.936000pt;}
.yb2{bottom:303.056050pt;}
.y25d{bottom:303.437333pt;}
.y22c{bottom:303.514667pt;}
.yee{bottom:309.916000pt;}
.y21{bottom:312.693333pt;}
.y53{bottom:312.813333pt;}
.y149{bottom:313.424000pt;}
.y12b{bottom:314.937677pt;}
.y179{bottom:318.342989pt;}
.yb1{bottom:319.255985pt;}
.y97{bottom:319.800000pt;}
.y25c{bottom:320.652000pt;}
.y22b{bottom:324.994667pt;}
.yed{bottom:327.928000pt;}
.y18e{bottom:328.925333pt;}
.y20{bottom:330.706667pt;}
.y52{bottom:330.825333pt;}
.y148{bottom:331.436000pt;}
.y1fd{bottom:334.232000pt;}
.yb0{bottom:335.455920pt;}
.yaf{bottom:335.455992pt;}
.y178{bottom:336.342917pt;}
.y96{bottom:337.812000pt;}
.y25b{bottom:337.868000pt;}
.y22a{bottom:338.504000pt;}
.y12a{bottom:341.017733pt;}
.y1f{bottom:348.718667pt;}
.y229{bottom:352.013333pt;}
.y1fc{bottom:352.245333pt;}
.y169{bottom:354.176000pt;}
.y177{bottom:354.342845pt;}
.yeb{bottom:354.533333pt;}
.y25a{bottom:355.082667pt;}
.y95{bottom:355.824000pt;}
.y51{bottom:356.808000pt;}
.yac{bottom:357.847848pt;}
.yab{bottom:357.848878pt;}
.yea{bottom:359.281333pt;}
.y1e{bottom:366.732000pt;}
.y147{bottom:370.517333pt;}
.yaa{bottom:370.952633pt;}
.y259{bottom:372.298667pt;}
.y176{bottom:372.342773pt;}
.y94{bottom:373.837333pt;}
.y129{bottom:374.617333pt;}
.yec{bottom:374.833333pt;}
.yae{bottom:375.055920pt;}
.yad{bottom:377.503920pt;}
.ya9{bottom:377.504510pt;}
.y1fb{bottom:378.228000pt;}
.y228{bottom:381.462667pt;}
.ye9{bottom:382.254667pt;}
.y1d{bottom:384.744000pt;}
.ye8{bottom:387.160000pt;}
.y50{bottom:387.758667pt;}
.y258{bottom:389.514667pt;}
.y175{bottom:390.262541pt;}
.y93{bottom:391.849333pt;}
.y128{bottom:391.977733pt;}
.y124{bottom:395.768000pt;}
.y227{bottom:399.474667pt;}
.y4f{bottom:405.772000pt;}
.y257{bottom:406.729333pt;}
.ya8{bottom:407.168921pt;}
.y174{bottom:408.262469pt;}
.y92{bottom:409.862667pt;}
.y1c{bottom:410.726667pt;}
.y127{bottom:413.657733pt;}
.y1fa{bottom:414.306667pt;}
.y226{bottom:417.488000pt;}
.ye7{bottom:418.864000pt;}
.ya7{bottom:423.368856pt;}
.ye6{bottom:423.613333pt;}
.y4e{bottom:423.784000pt;}
.y256{bottom:423.945333pt;}
.y173{bottom:426.262397pt;}
.y91{bottom:427.874667pt;}
.y225{bottom:435.500000pt;}
.y1ca{bottom:439.557333pt;}
.ya6{bottom:439.568791pt;}
.y255{bottom:441.160000pt;}
.ye5{bottom:441.625333pt;}
.y4d{bottom:441.797333pt;}
.y172{bottom:444.262325pt;}
.y90{bottom:445.886667pt;}
.y1e7{bottom:452.386667pt;}
.y224{bottom:453.513333pt;}
.ya5{bottom:455.696582pt;}
.y254{bottom:458.376000pt;}
.ye4{bottom:459.637333pt;}
.y4c{bottom:459.809333pt;}
.y171{bottom:462.262253pt;}
.y8f{bottom:463.900000pt;}
.y223{bottom:471.525333pt;}
.ya4{bottom:471.896518pt;}
.y253{bottom:475.592000pt;}
.y1b{bottom:477.077333pt;}
.ye3{bottom:477.650667pt;}
.y4b{bottom:477.821333pt;}
.y8e{bottom:479.480000pt;}
.y170{bottom:480.262181pt;}
.y8d{bottom:481.912000pt;}
.ya3{bottom:488.096453pt;}
.y222{bottom:489.537333pt;}
.y252{bottom:492.806667pt;}
.y1a{bottom:495.090667pt;}
.ye2{bottom:495.662667pt;}
.y4a{bottom:495.834667pt;}
.y16f{bottom:498.262109pt;}
.ya2{bottom:504.296388pt;}
.y221{bottom:507.550667pt;}
.y251{bottom:510.022667pt;}
.y8c{bottom:510.154667pt;}
.ye1{bottom:513.676000pt;}
.y49{bottom:513.846667pt;}
.y16e{bottom:516.181877pt;}
.y8b{bottom:519.972000pt;}
.ya1{bottom:520.496323pt;}
.y8a{bottom:525.557333pt;}
.y220{bottom:525.562667pt;}
.y250{bottom:527.237333pt;}
.y19{bottom:529.042667pt;}
.ye0{bottom:531.688000pt;}
.y48{bottom:531.860000pt;}
.y16d{bottom:534.181805pt;}
.ya0{bottom:536.696258pt;}
.y1cb{bottom:541.389733pt;}
.y21f{bottom:543.576000pt;}
.y24f{bottom:544.453333pt;}
.ydf{bottom:546.420000pt;}
.y18{bottom:547.056000pt;}
.yde{bottom:547.264000pt;}
.ydd{bottom:549.700000pt;}
.y47{bottom:549.872000pt;}
.y123{bottom:550.309333pt;}
.y16c{bottom:552.181733pt;}
.y9f{bottom:552.896194pt;}
.y21e{bottom:561.588000pt;}
.y24e{bottom:561.669333pt;}
.y89{bottom:563.993333pt;}
.y17{bottom:565.068000pt;}
.y46{bottom:567.884000pt;}
.y122{bottom:568.321333pt;}
.y9e{bottom:569.023985pt;}
.ydc{bottom:570.245333pt;}
.y24d{bottom:578.884000pt;}
.y21d{bottom:579.600000pt;}
.y88{bottom:582.005333pt;}
.y16{bottom:583.080000pt;}
.ydb{bottom:583.509333pt;}
.y168{bottom:583.772000pt;}
.y9d{bottom:585.223920pt;}
.y16a{bottom:585.461733pt;}
.y45{bottom:585.897333pt;}
.y121{bottom:586.333333pt;}
.yda{bottom:588.258667pt;}
.y24c{bottom:596.100000pt;}
.y21c{bottom:597.613333pt;}
.y87{bottom:600.017333pt;}
.y15{bottom:601.093333pt;}
.y167{bottom:601.784000pt;}
.y120{bottom:604.346667pt;}
.yd9{bottom:606.270667pt;}
.y24b{bottom:613.314667pt;}
.y9c{bottom:615.535920pt;}
.y21b{bottom:615.625333pt;}
.y44{bottom:617.193333pt;}
.y86{bottom:618.030667pt;}
.y14{bottom:619.105333pt;}
.yd8{bottom:619.377333pt;}
.y125{bottom:619.497733pt;}
.y166{bottom:619.796000pt;}
.y11f{bottom:622.358667pt;}
.yd7{bottom:624.282667pt;}
.y24a{bottom:630.530667pt;}
.y21a{bottom:633.638667pt;}
.y9b{bottom:635.047920pt;}
.y43{bottom:635.205333pt;}
.y85{bottom:636.042667pt;}
.y13{bottom:637.118667pt;}
.y165{bottom:637.809333pt;}
.y11e{bottom:640.372000pt;}
.yd6{bottom:642.296000pt;}
.y249{bottom:647.746667pt;}
.y219{bottom:651.650667pt;}
.y42{bottom:653.218667pt;}
.y84{bottom:654.056000pt;}
.y12{bottom:655.130667pt;}
.y164{bottom:655.821333pt;}
.y11d{bottom:658.384000pt;}
.yd5{bottom:660.308000pt;}
.y248{bottom:664.961333pt;}
.y218{bottom:669.662667pt;}
.y83{bottom:672.068000pt;}
.y41{bottom:672.558667pt;}
.y11{bottom:673.142667pt;}
.y163{bottom:673.834667pt;}
.y11c{bottom:676.396000pt;}
.yd4{bottom:678.321333pt;}
.y247{bottom:682.177333pt;}
.y82{bottom:690.080000pt;}
.y40{bottom:690.572000pt;}
.y10{bottom:691.156000pt;}
.y162{bottom:691.846667pt;}
.y11b{bottom:694.409333pt;}
.y1c9{bottom:695.409333pt;}
.y217{bottom:695.645333pt;}
.yd3{bottom:696.333333pt;}
.y246{bottom:699.392000pt;}
.y81{bottom:708.093333pt;}
.y3f{bottom:708.584000pt;}
.yf{bottom:709.168000pt;}
.y161{bottom:709.858667pt;}
.yd1{bottom:710.268000pt;}
.yd2{bottom:710.425333pt;}
.y11a{bottom:712.421333pt;}
.y1c8{bottom:712.505333pt;}
.yd0{bottom:714.345333pt;}
.y245{bottom:716.608000pt;}
.y80{bottom:726.105333pt;}
.y216{bottom:726.596000pt;}
.y160{bottom:727.872000pt;}
.yce{bottom:729.652000pt;}
.ycf{bottom:729.809333pt;}
.ycd{bottom:733.730667pt;}
.y244{bottom:733.824000pt;}
.y19a{bottom:737.756000pt;}
.y119{bottom:738.404000pt;}
.y3e{bottom:739.880000pt;}
.ye{bottom:740.497333pt;}
.y7f{bottom:744.118667pt;}
.y215{bottom:744.609333pt;}
.y15f{bottom:745.884000pt;}
.y243{bottom:751.038667pt;}
.yd{bottom:756.637333pt;}
.y3d{bottom:757.892000pt;}
.y214{bottom:762.621333pt;}
.y15e{bottom:763.897333pt;}
.ycb{bottom:764.606667pt;}
.yca{bottom:765.434667pt;}
.ycc{bottom:766.074667pt;}
.y242{bottom:768.254667pt;}
.yc9{bottom:769.354667pt;}
.y118{bottom:774.484000pt;}
.y3c{bottom:775.905333pt;}
.y213{bottom:780.634667pt;}
.y7e{bottom:780.692000pt;}
.yc{bottom:780.746667pt;}
.y15d{bottom:781.909333pt;}
.y241{bottom:785.469333pt;}
.yc7{bottom:789.104000pt;}
.yc6{bottom:789.932000pt;}
.yc8{bottom:791.572000pt;}
.y117{bottom:791.580000pt;}
.y3b{bottom:793.917333pt;}
.yc5{bottom:794.009333pt;}
.yb{bottom:796.885333pt;}
.y212{bottom:798.646667pt;}
.y15c{bottom:799.921333pt;}
.y240{bottom:802.685333pt;}
.y5a{bottom:805.942667pt;}
.y3a{bottom:811.930667pt;}
.y211{bottom:816.658667pt;}
.yf4{bottom:816.830667pt;}
.ya{bottom:817.365333pt;}
.y15b{bottom:817.934667pt;}
.y23f{bottom:819.901333pt;}
.yc4{bottom:827.977333pt;}
.y9{bottom:829.165333pt;}
.y39{bottom:829.942667pt;}
.y210{bottom:834.672000pt;}
.y15a{bottom:835.946667pt;}
.y23e{bottom:837.116000pt;}
.y99{bottom:843.847920pt;}
.yc3{bottom:845.989333pt;}
.y38{bottom:847.954667pt;}
.y8{bottom:849.644000pt;}
.y20f{bottom:852.684000pt;}
.y159{bottom:853.960000pt;}
.y23d{bottom:854.332000pt;}
.yc2{bottom:864.001333pt;}
.y37{bottom:865.968000pt;}
.y7{bottom:869.248000pt;}
.y20e{bottom:870.697333pt;}
.y23c{bottom:871.546667pt;}
.y158{bottom:871.972000pt;}
.y36{bottom:883.980000pt;}
.y6{bottom:887.260000pt;}
.y20d{bottom:888.709333pt;}
.y23b{bottom:888.762667pt;}
.y157{bottom:889.984000pt;}
.yc0{bottom:897.025333pt;}
.yc1{bottom:900.345333pt;}
.y35{bottom:901.993333pt;}
.y23a{bottom:905.978667pt;}
.y20c{bottom:906.721333pt;}
.y156{bottom:907.997333pt;}
.y34{bottom:920.005333pt;}
.y239{bottom:923.193333pt;}
.y20b{bottom:924.734667pt;}
.y5{bottom:925.198667pt;}
.ybf{bottom:930.048000pt;}
.y33{bottom:938.017333pt;}
.y238{bottom:940.409333pt;}
.y155{bottom:941.020000pt;}
.y20a{bottom:942.746667pt;}
.ybe{bottom:948.060000pt;}
.y4{bottom:952.217333pt;}
.y32{bottom:956.030667pt;}
.y237{bottom:957.624000pt;}
.ybd{bottom:966.073333pt;}
.y31{bottom:974.042667pt;}
.y236{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y30{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y2f{bottom:1038.548000pt;}
.h4f{height:-280.232000pt;}
.h52{height:8.320000pt;}
.h27{height:20.896875pt;}
.h4e{height:21.457467pt;}
.h18{height:22.057813pt;}
.h50{height:22.901428pt;}
.h2a{height:25.401455pt;}
.h8{height:27.076941pt;}
.h1e{height:28.092094pt;}
.h1a{height:29.397999pt;}
.h1c{height:29.599908pt;}
.hf{height:29.652766pt;}
.h1f{height:29.995312pt;}
.hc{height:31.157778pt;}
.h40{height:31.213438pt;}
.h10{height:31.661719pt;}
.h21{height:31.682812pt;}
.h41{height:33.328125pt;}
.h12{height:33.442969pt;}
.h29{height:34.008021pt;}
.h47{height:34.430976pt;}
.h9{height:34.813542pt;}
.h4d{height:35.039062pt;}
.h53{height:35.052646pt;}
.h22{height:35.109141pt;}
.h43{height:35.203125pt;}
.hd{height:35.212691pt;}
.h13{height:37.059648pt;}
.h4b{height:37.193707pt;}
.ha{height:38.256384pt;}
.hb{height:38.681455pt;}
.h4{height:38.947124pt;}
.h45{height:39.010156pt;}
.h44{height:39.192812pt;}
.h49{height:41.524400pt;}
.h20{height:42.046875pt;}
.h24{height:42.788531pt;}
.h11{height:44.382813pt;}
.h15{height:45.165672pt;}
.h2{height:45.271688pt;}
.h42{height:46.718750pt;}
.h28{height:47.288021pt;}
.h46{height:47.542812pt;}
.h7{height:48.360277pt;}
.h6{height:48.365611pt;}
.h35{height:48.885242pt;}
.h2f{height:48.890575pt;}
.h39{height:50.713733pt;}
.h26{height:52.580531pt;}
.h3a{height:54.089733pt;}
.h17{height:55.501672pt;}
.h36{height:56.649733pt;}
.h34{height:57.279067pt;}
.h3b{height:57.678788pt;}
.h2e{height:58.639908pt;}
.h33{height:59.039908pt;}
.h2b{height:59.045242pt;}
.h38{height:60.521733pt;}
.h37{height:60.591067pt;}
.h3c{height:61.128021pt;}
.h3e{height:64.184021pt;}
.h30{height:64.570575pt;}
.h31{height:67.882575pt;}
.h1b{height:68.667332pt;}
.h5{height:68.861952pt;}
.h19{height:74.915124pt;}
.h2c{height:75.354575pt;}
.h2d{height:78.666575pt;}
.h23{height:79.076963pt;}
.h3d{height:80.749355pt;}
.h14{height:83.470128pt;}
.h3{height:83.992000pt;}
.h25{height:95.199434pt;}
.h16{height:100.488291pt;}
.h32{height:104.788122pt;}
.h48{height:133.526667pt;}
.h1d{height:174.371160pt;}
.h3f{height:188.509333pt;}
.he{height:199.397400pt;}
.h4a{height:208.581333pt;}
.h4c{height:215.273333pt;}
.h51{height:233.454667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w9{width:7.680000pt;}
.w2{width:154.742661pt;}
.w4{width:261.294000pt;}
.w8{width:292.945333pt;}
.wa{width:293.237333pt;}
.w5{width:346.473333pt;}
.w7{width:347.345333pt;}
.w3{width:374.334200pt;}
.w6{width:493.526667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x87{left:-148.102667pt;}
.x36{left:-133.292400pt;}
.x73{left:-120.174667pt;}
.x39{left:-107.804400pt;}
.x74{left:-91.854667pt;}
.x20{left:-88.325933pt;}
.x84{left:-78.109333pt;}
.x8a{left:-68.582667pt;}
.x22{left:-61.421933pt;}
.x7c{left:-48.029333pt;}
.x7e{left:-19.709333pt;}
.x0{left:0.000000pt;}
.x8b{left:4.080000pt;}
.x8d{left:21.337392pt;}
.x8c{left:25.497333pt;}
.x92{left:30.488000pt;}
.x42{left:31.443600pt;}
.x2{left:52.049422pt;}
.x38{left:54.987600pt;}
.x3a{left:80.549685pt;}
.x2c{left:85.562067pt;}
.x76{left:91.504907pt;}
.x1{left:102.046667pt;}
.x7f{left:103.730667pt;}
.x3c{left:104.812844pt;}
.x3b{left:107.189040pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.x4{left:129.594667pt;}
.x3d{left:130.875608pt;}
.x23{left:137.396268pt;}
.x3e{left:143.115600pt;}
.x81{left:144.012000pt;}
.x7b{left:150.088000pt;}
.x55{left:151.308000pt;}
.x82{left:157.518667pt;}
.x3f{left:161.331600pt;}
.x25{left:163.007380pt;}
.x24{left:165.515587pt;}
.x6{left:167.456000pt;}
.x8f{left:168.458024pt;}
.x85{left:177.013333pt;}
.x7{left:179.024000pt;}
.x90{left:179.977853pt;}
.x77{left:181.248000pt;}
.x93{left:182.358667pt;}
.x56{left:188.541333pt;}
.x26{left:190.518075pt;}
.x62{left:195.408000pt;}
.x91{left:197.178259pt;}
.x27{left:203.438067pt;}
.x63{left:208.690667pt;}
.x1f{left:209.684000pt;}
.x94{left:211.620000pt;}
.x57{left:215.665333pt;}
.x64{left:221.196000pt;}
.x28{left:222.666067pt;}
.x58{left:224.021333pt;}
.x65{left:228.130667pt;}
.x95{left:230.314667pt;}
.x8e{left:236.138065pt;}
.x51{left:239.092000pt;}
.x4d{left:244.460000pt;}
.x86{left:250.378667pt;}
.x80{left:254.072000pt;}
.x59{left:256.994667pt;}
.x66{left:260.564000pt;}
.x35{left:266.204000pt;}
.x18{left:267.309333pt;}
.x40{left:279.483600pt;}
.x19{left:280.592000pt;}
.x41{left:283.443600pt;}
.x43{left:285.273333pt;}
.x1a{left:287.353333pt;}
.x31{left:288.640000pt;}
.x89{left:290.697333pt;}
.x4e{left:294.517333pt;}
.x88{left:299.657333pt;}
.x1b{left:300.637333pt;}
.xe{left:305.085333pt;}
.x32{left:307.337333pt;}
.x70{left:308.518667pt;}
.xf{left:311.728000pt;}
.x37{left:315.843600pt;}
.x14{left:327.234667pt;}
.x15{left:333.877333pt;}
.x2b{left:335.450067pt;}
.x1c{left:340.609333pt;}
.x29{left:347.382067pt;}
.x83{left:348.770667pt;}
.x4a{left:350.269333pt;}
.x2a{left:351.562067pt;}
.x2e{left:367.433333pt;}
.x2d{left:370.081333pt;}
.x52{left:373.430667pt;}
.x4b{left:382.806667pt;}
.x21{left:385.762067pt;}
.x6c{left:388.306667pt;}
.x2f{left:397.817333pt;}
.x4f{left:408.762667pt;}
.x5f{left:410.500000pt;}
.x30{left:412.760000pt;}
.x69{left:418.940000pt;}
.x75{left:421.585333pt;}
.x7d{left:422.770667pt;}
.x60{left:423.784000pt;}
.x53{left:426.910667pt;}
.x6d{left:430.312000pt;}
.x4c{left:439.008000pt;}
.x78{left:444.942667pt;}
.x6e{left:456.188000pt;}
.x6a{left:457.938667pt;}
.x71{left:459.240000pt;}
.x50{left:463.081333pt;}
.x54{left:476.969333pt;}
.x67{left:478.804000pt;}
.x6b{left:485.060000pt;}
.x16{left:490.893333pt;}
.x46{left:492.086667pt;}
.x6f{left:493.934667pt;}
.x68{left:500.573333pt;}
.x17{left:504.177333pt;}
.x47{left:514.952000pt;}
.x44{left:526.484000pt;}
.x8{left:532.452000pt;}
.x9{left:539.093333pt;}
.x48{left:540.892000pt;}
.x45{left:544.970667pt;}
.xa{left:545.868000pt;}
.xb{left:552.509333pt;}
.x5a{left:557.038667pt;}
.x49{left:559.497333pt;}
.x5b{left:563.972000pt;}
.x10{left:573.572000pt;}
.x11{left:580.213333pt;}
.x12{left:586.988000pt;}
.x33{left:590.654667pt;}
.x13{left:593.630667pt;}
.x98{left:596.546667pt;}
.x34{left:601.728000pt;}
.x5c{left:603.554667pt;}
.x61{left:611.314667pt;}
.x99{left:620.457333pt;}
.x96{left:622.796000pt;}
.x79{left:625.192000pt;}
.x5d{left:631.020000pt;}
.x9a{left:636.704000pt;}
.x5e{left:637.953333pt;}
.x97{left:646.706667pt;}
.x7a{left:656.406667pt;}
.x9b{left:660.614667pt;}
.x1d{left:674.009333pt;}
.x72{left:676.165333pt;}
.xc{left:678.773333pt;}
.xd{left:685.414667pt;}
.x1e{left:687.292000pt;}
}




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