
    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_40ee0aa0cce74cb481983b1a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6f0b01b3c86eec759bac168c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.728000;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_936c7daadf4c11981240d92c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.766000;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_2b9221aa8e6a49278cbe4380.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_7bb64e354cf767a8d6528892.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_aa5c4afb8b5330e0b24472c9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_5b7924969d1fd735daea3acd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ee7f89e303bde83f737763f5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.888000;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_8c5d7477e12a4501ee28b0fc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_5925ad84d5b801bef9bf9f9c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;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_5b7924969d1fd735daea3acd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d6756356dc108680ce77ef0c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_dea4bf7ddb5d8ae2cc993b03.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_aed4fa6b4db33540575de01a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910645;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_b3cbd986919c35769c655292.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;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_dea4bf7ddb5d8ae2cc993b03.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_401bb5fd78b3fd43a3ec7fdc.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.694336;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_e7948c535b32b2ebf1b08703.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_7cc1735f15342cce43331801.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910645;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_401bb5fd78b3fd43a3ec7fdc.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.694336;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_1d103e346d9e8948594cfdac.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.910645;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_c2dfc6444931894b1220ef5e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.893555;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_5b7924969d1fd735daea3acd.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_73f199489f6a0011e80d29c6.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.910156;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_dea4bf7ddb5d8ae2cc993b03.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_0eae06cc53d13f6428b2386f.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.910645;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_9850d016cd973c3c283b5abc.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.910156;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_dea4bf7ddb5d8ae2cc993b03.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_401bb5fd78b3fd43a3ec7fdc.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.694336;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_34f60eab46710eb40c5a1861.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.666992;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_50bbac85997ff7d4668e2a50.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_73ff7b1d1c5e10214f3cd9b8.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.910156;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_dea4bf7ddb5d8ae2cc993b03.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_b223310ad8ef6ef37ce56328.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.910645;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_50bbac85997ff7d4668e2a50.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_a16c1f0ca39753ca981ad2d7.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.694336;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_144590b4a9a4830040036da4.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.910645;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_34f60eab46710eb40c5a1861.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.666992;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_50bbac85997ff7d4668e2a50.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_ed3d51a7cd7ae82c3f5be6ad.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.682617;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_f27d60a2224ee134af6e4661.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.893555;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_5b7924969d1fd735daea3acd.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_e92fbb6894a7c82742784f60.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.910645;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_04c1521327450c902ee9fbe9.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.861816;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_5ac1d411f705a7e441e355f3.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.895996;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_b3b093d0e08f69b86b3f60d7.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.910645;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_1f2721bfd127ad390b142b53.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.861816;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_34f60eab46710eb40c5a1861.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.666992;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_50bbac85997ff7d4668e2a50.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_be05003cd7b16ee82cd9793d.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.895996;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:ff33;src:url('chunks/assets/font_8c4f0d31d20048c724c112e8.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.861816;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:ff34;src:url('chunks/assets/font_7e4f2ac1860bc625d5deab74.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.893555;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:ff35;src:url('chunks/assets/font_5b7924969d1fd735daea3acd.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_5cda18d728057af53df2cc00.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.893555;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:ff37;src:url('chunks/assets/font_a5aa81a028f4332b360147ee.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.910645;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:ff38;src:url('chunks/assets/font_50bbac85997ff7d4668e2a50.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_ed3d51a7cd7ae82c3f5be6ad.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.682617;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:ff3a;src:url('chunks/assets/font_0ca932fa3e385baa01c16f98.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.722656;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:ff3b;src:url('chunks/assets/font_1f2721bfd127ad390b142b53.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.861816;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:ff3c;src:url('chunks/assets/font_4f3b21cdffc94709a535edcc.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.861816;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:ff3d;src:url('chunks/assets/font_34f60eab46710eb40c5a1861.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.666992;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:ff3e;src:url('chunks/assets/font_00895cdd55d03fa18ac21e06.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.895996;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:ff3f;src:url('chunks/assets/font_34f60eab46710eb40c5a1861.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.666992;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:ff40;src:url('chunks/assets/font_50bbac85997ff7d4668e2a50.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_0fe04592c070930c3bebf19a.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.895996;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:ff42;src:url('chunks/assets/font_047d3f0c2da70cf66fd6a711.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.861816;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:ff43;src:url('chunks/assets/font_cf8dd9d86e89951842816547.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.910645;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:ff44;src:url('chunks/assets/font_a23cb62f107e155fac301aa8.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.893555;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:ff45;src:url('chunks/assets/font_1f2721bfd127ad390b142b53.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.861816;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:ff46;src:url('chunks/assets/font_46b80e89f96c0aab4b87da7d.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.861816;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:ff47;src:url('chunks/assets/font_34f60eab46710eb40c5a1861.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.666992;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:ff48;src:url('chunks/assets/font_50bbac85997ff7d4668e2a50.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_09c9232c4b0054265175e3ef.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.895996;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:ff4a;src:url('chunks/assets/font_0070ed6457338519c34c6c2e.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.910645;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:ff4b;src:url('chunks/assets/font_a243175a82a5cd600c8613b9.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.893555;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:ff4c;src:url('chunks/assets/font_401bb5fd78b3fd43a3ec7fdc.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.694336;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:ff4d;src:url('chunks/assets/font_b77ced7cde0032d8cd4931bd.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250619,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.262496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262496,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-20.952000px;}
.v1{vertical-align:-13.968000px;}
.v4{vertical-align:-8.498131px;}
.v7{vertical-align:-5.566248px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:8.381400px;}
.v5{vertical-align:32.127797px;}
.v6{vertical-align:33.502248px;}
.v2{vertical-align:34.920000px;}
.ls39{letter-spacing:-1.058682px;}
.ls38{letter-spacing:-1.017176px;}
.ls37{letter-spacing:-0.569969px;}
.ls23{letter-spacing:-0.480000px;}
.ls22{letter-spacing:-0.475200px;}
.ls21{letter-spacing:-0.081600px;}
.ls20{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.058200px;}
.ls41{letter-spacing:0.058800px;}
.ls53{letter-spacing:0.059400px;}
.ls2{letter-spacing:0.090513px;}
.ls6{letter-spacing:0.098055px;}
.ls3{letter-spacing:0.105598px;}
.ls35{letter-spacing:0.152112px;}
.ls60{letter-spacing:0.155045px;}
.ls1f{letter-spacing:0.156721px;}
.ls62{letter-spacing:0.175159px;}
.ls63{letter-spacing:0.179768px;}
.ls14{letter-spacing:0.184378px;}
.ls31{letter-spacing:0.188987px;}
.ls42{letter-spacing:0.193596px;}
.lsa{letter-spacing:0.198206px;}
.ls46{letter-spacing:0.202815px;}
.ls9{letter-spacing:0.207425px;}
.ls1e{letter-spacing:0.212034px;}
.ls45{letter-spacing:0.216644px;}
.ls61{letter-spacing:0.221253px;}
.ls15{letter-spacing:0.229075px;}
.ls13{letter-spacing:0.230472px;}
.ls5d{letter-spacing:0.232567px;}
.ls64{letter-spacing:0.235081px;}
.ls66{letter-spacing:0.244300px;}
.ls5e{letter-spacing:0.248072px;}
.ls4{letter-spacing:0.251928px;}
.ls5b{letter-spacing:0.253240px;}
.ls50{letter-spacing:0.258408px;}
.ls25{letter-spacing:0.259106px;}
.ls5c{letter-spacing:0.263576px;}
.ls4d{letter-spacing:0.268744px;}
.ls11{letter-spacing:0.273912px;}
.ls59{letter-spacing:0.279081px;}
.lse{letter-spacing:0.284249px;}
.ls4e{letter-spacing:0.289417px;}
.ls65{letter-spacing:0.290395px;}
.ls7{letter-spacing:0.290400px;}
.ls5{letter-spacing:0.291000px;}
.lsd{letter-spacing:0.294585px;}
.lsf{letter-spacing:0.299753px;}
.lsc{letter-spacing:0.304921px;}
.ls12{letter-spacing:0.310090px;}
.lsb{letter-spacing:0.315258px;}
.ls57{letter-spacing:0.320426px;}
.ls26{letter-spacing:0.325594px;}
.ls56{letter-spacing:0.330762px;}
.ls5a{letter-spacing:0.335930px;}
.ls3c{letter-spacing:0.337886px;}
.ls36{letter-spacing:0.343613px;}
.ls10{letter-spacing:0.346267px;}
.ls3d{letter-spacing:0.349340px;}
.ls1d{letter-spacing:0.355067px;}
.ls5f{letter-spacing:0.356603px;}
.ls33{letter-spacing:0.360793px;}
.ls1c{letter-spacing:0.366520px;}
.ls1a{letter-spacing:0.372247px;}
.ls18{letter-spacing:0.377974px;}
.ls16{letter-spacing:0.383701px;}
.ls24{letter-spacing:0.387193px;}
.ls1b{letter-spacing:0.389428px;}
.ls19{letter-spacing:0.395155px;}
.ls2a{letter-spacing:0.400882px;}
.ls17{letter-spacing:0.406608px;}
.ls2b{letter-spacing:0.412335px;}
.ls0{letter-spacing:0.414850px;}
.ls2e{letter-spacing:0.418062px;}
.ls28{letter-spacing:0.423789px;}
.ls29{letter-spacing:0.429516px;}
.ls30{letter-spacing:0.435243px;}
.ls40{letter-spacing:0.440970px;}
.ls32{letter-spacing:0.446697px;}
.ls2f{letter-spacing:0.452424px;}
.ls3b{letter-spacing:0.458150px;}
.ls27{letter-spacing:0.463877px;}
.ls51{letter-spacing:0.469604px;}
.ls52{letter-spacing:0.475331px;}
.ls2d{letter-spacing:0.481058px;}
.ls43{letter-spacing:0.492512px;}
.ls34{letter-spacing:0.515419px;}
.ls1{letter-spacing:0.523800px;}
.ls49{letter-spacing:0.538327px;}
.ls4b{letter-spacing:0.572688px;}
.ls8{letter-spacing:0.582000px;}
.ls3a{letter-spacing:1.403002px;}
.ls54{letter-spacing:9.678427px;}
.ls4c{letter-spacing:18.440554px;}
.ls44{letter-spacing:26.572723px;}
.ls55{letter-spacing:26.687261px;}
.ls47{letter-spacing:39.343666px;}
.ls4a{letter-spacing:44.956008px;}
.ls48{letter-spacing:51.599189px;}
.ls4f{letter-spacing:65.428906px;}
.ls58{letter-spacing:66.307493px;}
.ls3e{letter-spacing:129.083875px;}
.ls3f{letter-spacing:242.304293px;}
.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;}
}
.ws1be{word-spacing:-52.002026px;}
.ws184{word-spacing:-51.976185px;}
.ws1c8{word-spacing:-51.971017px;}
.ws1bf{word-spacing:-51.965849px;}
.ws1ce{word-spacing:-51.955512px;}
.ws1cb{word-spacing:-17.669939px;}
.ws1c1{word-spacing:-17.649266px;}
.ws1cc{word-spacing:-17.623426px;}
.ws185{word-spacing:-17.613089px;}
.ws1cd{word-spacing:-17.607921px;}
.ws1ca{word-spacing:-17.602753px;}
.ws1c9{word-spacing:-17.597585px;}
.ws1c0{word-spacing:-17.587248px;}
.ws5{word-spacing:-14.781077px;}
.ws110{word-spacing:-14.775350px;}
.wsc6{word-spacing:-14.758170px;}
.wsc5{word-spacing:-14.752443px;}
.wsc4{word-spacing:-14.740989px;}
.ws50{word-spacing:-14.723808px;}
.ws2c{word-spacing:-14.718082px;}
.ws3{word-spacing:-12.481106px;}
.ws0{word-spacing:-12.000000px;}
.ws4{word-spacing:-11.754072px;}
.ws1{word-spacing:-11.520000px;}
.wsdc{word-spacing:-0.269163px;}
.ws10b{word-spacing:-0.211895px;}
.ws10f{word-spacing:-0.206168px;}
.ws189{word-spacing:-0.200441px;}
.wsed{word-spacing:-0.194714px;}
.wsc{word-spacing:-0.193596px;}
.wse1{word-spacing:-0.188987px;}
.wsa{word-spacing:-0.184378px;}
.ws48{word-spacing:-0.183260px;}
.wsa1{word-spacing:-0.177533px;}
.ws1a{word-spacing:-0.175717px;}
.ws9b{word-spacing:-0.171806px;}
.ws60{word-spacing:-0.166080px;}
.wsb{word-spacing:-0.165940px;}
.ws3e{word-spacing:-0.160353px;}
.ws32{word-spacing:-0.154626px;}
.ws31{word-spacing:-0.148899px;}
.ws9a{word-spacing:-0.143172px;}
.ws3f{word-spacing:-0.137445px;}
.ws6b{word-spacing:-0.131718px;}
.ws1d{word-spacing:-0.129204px;}
.ws55{word-spacing:-0.125991px;}
.ws74{word-spacing:-0.120264px;}
.ws12{word-spacing:-0.119845px;}
.ws1b{word-spacing:-0.118868px;}
.ws1f2{word-spacing:-0.115236px;}
.ws82{word-spacing:-0.114538px;}
.ws19{word-spacing:-0.113700px;}
.ws11{word-spacing:-0.110627px;}
.wsb0{word-spacing:-0.108811px;}
.ws29{word-spacing:-0.106017px;}
.ws49{word-spacing:-0.103084px;}
.ws13{word-spacing:-0.101408px;}
.ws2{word-spacing:-0.099000px;}
.ws11b{word-spacing:-0.097357px;}
.ws2a{word-spacing:-0.096798px;}
.ws1c{word-spacing:-0.093027px;}
.ws6f{word-spacing:-0.092189px;}
.ws6d{word-spacing:-0.087579px;}
.ws13d{word-spacing:-0.085903px;}
.ws1e{word-spacing:-0.082970px;}
.ws6c{word-spacing:-0.078360px;}
.ws170{word-spacing:-0.073751px;}
.wsdb{word-spacing:-0.069142px;}
.ws1f3{word-spacing:-0.064532px;}
.ws1ef{word-spacing:-0.059923px;}
.ws1c7{word-spacing:-0.057269px;}
.ws6e{word-spacing:-0.055313px;}
.wsbe{word-spacing:-0.045815px;}
.wse{word-spacing:-0.045256px;}
.ws2b{word-spacing:-0.041485px;}
.wsd{word-spacing:-0.037714px;}
.wsf{word-spacing:-0.030171px;}
.wsbd{word-spacing:-0.022908px;}
.ws10{word-spacing:-0.022628px;}
.wsbf{word-spacing:-0.005727px;}
.ws7{word-spacing:-0.004800px;}
.ws8{word-spacing:0.000000px;}
.ws9{word-spacing:0.006984px;}
.ws94{word-spacing:0.008769px;}
.ws6{word-spacing:0.081600px;}
.ws1d8{word-spacing:0.147502px;}
.ws1d9{word-spacing:0.152112px;}
.ws4f{word-spacing:0.154626px;}
.wsd7{word-spacing:0.160353px;}
.ws1a2{word-spacing:0.166080px;}
.ws1da{word-spacing:0.175159px;}
.wsd8{word-spacing:0.177533px;}
.ws15a{word-spacing:0.183260px;}
.ws15b{word-spacing:0.188987px;}
.ws83{word-spacing:0.274890px;}
.ws85{word-spacing:0.292071px;}
.ws130{word-spacing:0.314978px;}
.ws132{word-spacing:0.326432px;}
.ws131{word-spacing:0.337886px;}
.ws84{word-spacing:0.343613px;}
.ws12f{word-spacing:0.355067px;}
.ws173{word-spacing:0.366520px;}
.ws174{word-spacing:0.406608px;}
.ws175{word-spacing:0.418062px;}
.wsc3{word-spacing:0.435243px;}
.ws9e{word-spacing:0.458150px;}
.ws9d{word-spacing:0.463877px;}
.ws69{word-spacing:0.475331px;}
.ws186{word-spacing:0.481058px;}
.ws6a{word-spacing:0.498239px;}
.wsce{word-spacing:0.515419px;}
.wscd{word-spacing:0.526873px;}
.wscc{word-spacing:0.549780px;}
.ws52{word-spacing:0.555507px;}
.ws51{word-spacing:0.595596px;}
.ws11e{word-spacing:0.624230px;}
.ws121{word-spacing:0.635684px;}
.ws11f{word-spacing:0.641411px;}
.ws120{word-spacing:0.710133px;}
.wseb{word-spacing:0.721587px;}
.ws188{word-spacing:0.755948px;}
.ws187{word-spacing:0.773129px;}
.ws13f{word-spacing:0.807490px;}
.ws140{word-spacing:0.818944px;}
.ws101{word-spacing:0.847578px;}
.wsec{word-spacing:0.870486px;}
.ws62{word-spacing:0.893393px;}
.ws193{word-spacing:0.904847px;}
.ws61{word-spacing:0.910574px;}
.ws192{word-spacing:0.933481px;}
.ws57{word-spacing:1.019385px;}
.ws58{word-spacing:1.042292px;}
.ws11d{word-spacing:1.048019px;}
.ws56{word-spacing:1.053746px;}
.ws181{word-spacing:1.070927px;}
.ws11c{word-spacing:1.076653px;}
.ws20d{word-spacing:1.110875px;}
.ws20c{word-spacing:1.120094px;}
.ws23{word-spacing:1.133922px;}
.ws4c{word-spacing:1.151103px;}
.ws20b{word-spacing:1.152360px;}
.ws10c{word-spacing:1.156830px;}
.ws21{word-spacing:1.168284px;}
.ws10d{word-spacing:1.174010px;}
.ws18e{word-spacing:1.179737px;}
.ws22{word-spacing:1.196918px;}
.wsb3{word-spacing:1.202645px;}
.ws1fb{word-spacing:1.207673px;}
.ws1fa{word-spacing:1.216892px;}
.ws1f9{word-spacing:1.235330px;}
.wsd6{word-spacing:1.374451px;}
.ws80{word-spacing:1.391632px;}
.ws1db{word-spacing:1.392051px;}
.ws1dc{word-spacing:1.401270px;}
.wsd5{word-spacing:1.403086px;}
.ws81{word-spacing:1.408812px;}
.ws139{word-spacing:1.420266px;}
.ws14{word-spacing:1.431580px;}
.ws133{word-spacing:1.477535px;}
.ws98{word-spacing:1.500443px;}
.ws134{word-spacing:1.523350px;}
.ws7f{word-spacing:1.551984px;}
.ws7d{word-spacing:1.563438px;}
.ws21c{word-spacing:1.571819px;}
.ws1dd{word-spacing:1.581038px;}
.ws21b{word-spacing:1.585647px;}
.ws7e{word-spacing:1.592073px;}
.ws1de{word-spacing:1.594866px;}
.ws1df{word-spacing:1.617913px;}
.ws199{word-spacing:1.649341px;}
.ws19a{word-spacing:1.672249px;}
.ws219{word-spacing:1.728540px;}
.ws21a{word-spacing:1.742368px;}
.ws218{word-spacing:1.756197px;}
.ws217{word-spacing:1.857604px;}
.wsaf{word-spacing:1.884144px;}
.ws216{word-spacing:1.894480px;}
.ws147{word-spacing:1.901324px;}
.wsae{word-spacing:1.924232px;}
.ws206{word-spacing:2.000497px;}
.wsfe{word-spacing:2.004408px;}
.wsfd{word-spacing:2.015862px;}
.ws207{word-spacing:2.032763px;}
.ws1c4{word-spacing:2.033042px;}
.ws14b{word-spacing:2.055950px;}
.ws14a{word-spacing:2.067404px;}
.ws14c{word-spacing:2.101765px;}
.ws1c5{word-spacing:2.107492px;}
.wsb6{word-spacing:2.113219px;}
.ws1ae{word-spacing:2.130399px;}
.wsb7{word-spacing:2.147580px;}
.wsc2{word-spacing:2.164761px;}
.ws1af{word-spacing:2.176214px;}
.wsc0{word-spacing:2.187668px;}
.wsc1{word-spacing:2.222029px;}
.ws124{word-spacing:2.325113px;}
.ws125{word-spacing:2.353748px;}
.ws136{word-spacing:2.365201px;}
.ws18{word-spacing:2.367017px;}
.ws135{word-spacing:2.370928px;}
.ws3c{word-spacing:2.405290px;}
.ws1ec{word-spacing:2.406128px;}
.ws137{word-spacing:2.411016px;}
.ws151{word-spacing:2.416743px;}
.ws1ee{word-spacing:2.424565px;}
.ws10e{word-spacing:2.428197px;}
.ws3b{word-spacing:2.433924px;}
.ws138{word-spacing:2.439651px;}
.ws1f0{word-spacing:2.443003px;}
.ws3a{word-spacing:2.445378px;}
.ws1ed{word-spacing:2.447613px;}
.ws1f1{word-spacing:2.452222px;}
.ws150{word-spacing:2.479739px;}
.ws152{word-spacing:2.491193px;}
.wsf8{word-spacing:2.531281px;}
.wsf9{word-spacing:2.542735px;}
.ws20a{word-spacing:2.572068px;}
.ws209{word-spacing:2.585896px;}
.ws1ba{word-spacing:2.588550px;}
.ws1bb{word-spacing:2.600004px;}
.ws208{word-spacing:2.618162px;}
.ws1d7{word-spacing:2.636600px;}
.ws1d6{word-spacing:2.641209px;}
.ws71{word-spacing:2.725995px;}
.ws70{word-spacing:2.737449px;}
.ws8b{word-spacing:2.748902px;}
.wse7{word-spacing:2.788991px;}
.ws8c{word-spacing:2.794717px;}
.wse8{word-spacing:2.829079px;}
.ws163{word-spacing:2.869167px;}
.ws164{word-spacing:2.874894px;}
.wse4{word-spacing:2.909255px;}
.wse5{word-spacing:2.937889px;}
.ws14d{word-spacing:2.955070px;}
.ws14e{word-spacing:3.000885px;}
.ws169{word-spacing:3.081061px;}
.ws5b{word-spacing:3.086788px;}
.ws8d{word-spacing:3.103969px;}
.ws5c{word-spacing:3.109696px;}
.ws16a{word-spacing:3.115423px;}
.ws5a{word-spacing:3.132603px;}
.ws12b{word-spacing:3.189872px;}
.ws12c{word-spacing:3.207053px;}
.ws142{word-spacing:3.212780px;}
.ws141{word-spacing:3.229960px;}
.ws12a{word-spacing:3.247141px;}
.ws36{word-spacing:3.270048px;}
.ws37{word-spacing:3.275775px;}
.ws201{word-spacing:3.300359px;}
.ws202{word-spacing:3.304968px;}
.ws200{word-spacing:3.314187px;}
.ws1ff{word-spacing:3.323406px;}
.ws41{word-spacing:3.333044px;}
.ws40{word-spacing:3.344498px;}
.ws145{word-spacing:3.373132px;}
.ws12e{word-spacing:3.384586px;}
.ws146{word-spacing:3.396040px;}
.ws12d{word-spacing:3.401767px;}
.ws212{word-spacing:3.406376px;}
.ws211{word-spacing:3.429423px;}
.ws14f{word-spacing:3.447582px;}
.ws213{word-spacing:3.447861px;}
.ws15{word-spacing:3.457499px;}
.ws1b3{word-spacing:3.464762px;}
.ws176{word-spacing:3.476216px;}
.ws47{word-spacing:3.481943px;}
.ws1b2{word-spacing:3.487670px;}
.ws46{word-spacing:3.510577px;}
.ws1c6{word-spacing:3.527758px;}
.ws4a{word-spacing:3.550666px;}
.ws4b{word-spacing:3.579300px;}
.wsab{word-spacing:3.590754px;}
.ws1f7{word-spacing:3.627629px;}
.ws96{word-spacing:3.642296px;}
.ws95{word-spacing:3.653749px;}
.wsaa{word-spacing:3.659476px;}
.ws1f6{word-spacing:3.664505px;}
.ws97{word-spacing:3.676657px;}
.ws1f8{word-spacing:3.807397px;}
.ws156{word-spacing:3.842736px;}
.ws155{word-spacing:3.854190px;}
.ws1aa{word-spacing:3.877098px;}
.ws1ab{word-spacing:3.905732px;}
.wsa8{word-spacing:3.911459px;}
.wsa7{word-spacing:3.922913px;}
.ws72{word-spacing:3.974455px;}
.ws194{word-spacing:3.980182px;}
.wsf7{word-spacing:3.991635px;}
.ws195{word-spacing:4.003089px;}
.ws73{word-spacing:4.008816px;}
.wsf6{word-spacing:4.025997px;}
.ws15d{word-spacing:4.048904px;}
.ws104{word-spacing:4.054631px;}
.ws15c{word-spacing:4.071812px;}
.ws154{word-spacing:4.123354px;}
.ws153{word-spacing:4.157715px;}
.ws157{word-spacing:4.163442px;}
.ws162{word-spacing:4.169169px;}
.ws17b{word-spacing:4.180622px;}
.ws161{word-spacing:4.186349px;}
.ws180{word-spacing:4.192076px;}
.ws17a{word-spacing:4.197803px;}
.ws114{word-spacing:4.232164px;}
.ws115{word-spacing:4.237891px;}
.ws116{word-spacing:4.243618px;}
.wsf3{word-spacing:4.249345px;}
.ws1ac{word-spacing:4.277979px;}
.ws1a1{word-spacing:4.283706px;}
.wsf2{word-spacing:4.289433px;}
.ws1a0{word-spacing:4.300887px;}
.ws2e{word-spacing:4.358156px;}
.ws148{word-spacing:4.363883px;}
.ws149{word-spacing:4.369609px;}
.ws2d{word-spacing:4.375336px;}
.ws16{word-spacing:4.475627px;}
.ws35{word-spacing:4.478420px;}
.ws17{word-spacing:4.501467px;}
.ws33{word-spacing:4.524235px;}
.ws1a6{word-spacing:4.541416px;}
.ws99{word-spacing:4.552870px;}
.ws34{word-spacing:4.558596px;}
.ws167{word-spacing:4.575777px;}
.ws1fe{word-spacing:4.577174px;}
.ws168{word-spacing:4.581504px;}
.ws126{word-spacing:4.587231px;}
.ws1fd{word-spacing:4.614049px;}
.ws1fc{word-spacing:4.627878px;}
.wsde{word-spacing:4.644500px;}
.ws127{word-spacing:4.650227px;}
.ws9f{word-spacing:4.667407px;}
.wsa0{word-spacing:4.673134px;}
.wsdd{word-spacing:4.696042px;}
.ws196{word-spacing:4.707495px;}
.ws197{word-spacing:4.724676px;}
.wsfa{word-spacing:4.799125px;}
.ws16e{word-spacing:4.816306px;}
.ws16f{word-spacing:4.827760px;}
.wsfc{word-spacing:4.844940px;}
.ws21e{word-spacing:4.862959px;}
.wsfb{word-spacing:4.867848px;}
.ws21d{word-spacing:4.895225px;}
.ws89{word-spacing:4.948024px;}
.ws87{word-spacing:4.970932px;}
.ws21f{word-spacing:4.992024px;}
.ws88{word-spacing:4.999566px;}
.wse6{word-spacing:5.028201px;}
.ws1e7{word-spacing:5.047337px;}
.ws86{word-spacing:5.056835px;}
.ws1e8{word-spacing:5.061165px;}
.ws1e6{word-spacing:5.079603px;}
.wsef{word-spacing:5.119831px;}
.wsee{word-spacing:5.137011px;}
.ws172{word-spacing:5.142738px;}
.ws171{word-spacing:5.165646px;}
.ws128{word-spacing:5.171373px;}
.wsf0{word-spacing:5.194280px;}
.wsd1{word-spacing:5.200007px;}
.ws129{word-spacing:5.205734px;}
.wsf1{word-spacing:5.211461px;}
.ws1e2{word-spacing:5.240933px;}
.wscf{word-spacing:5.263003px;}
.ws1e3{word-spacing:5.277809px;}
.wsd0{word-spacing:5.297364px;}
.ws8a{word-spacing:5.377540px;}
.ws4d{word-spacing:5.383267px;}
.ws13e{word-spacing:5.388994px;}
.ws4e{word-spacing:5.400448px;}
.ws19b{word-spacing:5.520712px;}
.ws19c{word-spacing:5.532166px;}
.ws64{word-spacing:5.577981px;}
.ws1b8{word-spacing:5.583708px;}
.ws1b9{word-spacing:5.600889px;}
.ws63{word-spacing:5.629523px;}
.ws1a4{word-spacing:5.892960px;}
.ws1a5{word-spacing:5.898686px;}
.ws1a3{word-spacing:5.910140px;}
.ws5d{word-spacing:6.087673px;}
.ws5e{word-spacing:6.104854px;}
.ws5f{word-spacing:6.122035px;}
.ws92{word-spacing:6.127762px;}
.wsbc{word-spacing:6.139215px;}
.wsbb{word-spacing:6.150669px;}
.ws11a{word-spacing:6.259480px;}
.ws119{word-spacing:6.282387px;}
.wsa2{word-spacing:6.488555px;}
.ws27{word-spacing:6.551551px;}
.ws198{word-spacing:6.557278px;}
.ws28{word-spacing:6.563004px;}
.ws1b6{word-spacing:6.620273px;}
.ws1b7{word-spacing:6.637454px;}
.ws1ad{word-spacing:6.643181px;}
.ws106{word-spacing:6.654635px;}
.ws105{word-spacing:6.660361px;}
.ws1d5{word-spacing:6.725173px;}
.ws1d4{word-spacing:6.762048px;}
.ws1e1{word-spacing:6.798924px;}
.ws1e0{word-spacing:6.803533px;}
.ws38{word-spacing:6.877983px;}
.ws39{word-spacing:6.883710px;}
.ws9c{word-spacing:6.889437px;}
.ws159{word-spacing:6.918071px;}
.ws18f{word-spacing:6.929525px;}
.ws93{word-spacing:6.952432px;}
.ws158{word-spacing:6.969613px;}
.ws26{word-spacing:7.003974px;}
.ws24{word-spacing:7.009701px;}
.ws25{word-spacing:7.021155px;}
.ws20f{word-spacing:7.047834px;}
.ws20e{word-spacing:7.052443px;}
.ws210{word-spacing:7.057053px;}
.wsa4{word-spacing:7.118512px;}
.wsa3{word-spacing:7.129966px;}
.ws112{word-spacing:7.187234px;}
.ws144{word-spacing:7.192961px;}
.ws113{word-spacing:7.238776px;}
.ws111{word-spacing:7.261684px;}
.ws143{word-spacing:7.267411px;}
.ws65{word-spacing:7.278864px;}
.ws66{word-spacing:7.313226px;}
.ws1b5{word-spacing:7.324680px;}
.ws215{word-spacing:7.333619px;}
.ws1b4{word-spacing:7.341860px;}
.ws214{word-spacing:7.342838px;}
.wse9{word-spacing:7.479305px;}
.wsea{word-spacing:7.496486px;}
.ws204{word-spacing:7.536434px;}
.ws205{word-spacing:7.545653px;}
.ws203{word-spacing:7.559482px;}
.ws17c{word-spacing:7.570935px;}
.ws17f{word-spacing:7.748469px;}
.ws17e{word-spacing:7.782830px;}
.ws17d{word-spacing:7.788557px;}
.ws90{word-spacing:7.943183px;}
.ws91{word-spacing:7.977544px;}
.ws13c{word-spacing:8.240980px;}
.ws53{word-spacing:8.452875px;}
.ws54{word-spacing:8.464329px;}
.ws7b{word-spacing:8.538778px;}
.ws7c{word-spacing:8.550232px;}
.wsad{word-spacing:8.647589px;}
.wsac{word-spacing:8.670496px;}
.ws78{word-spacing:8.773580px;}
.ws79{word-spacing:8.790761px;}
.ws7a{word-spacing:8.796488px;}
.ws1c3{word-spacing:8.807941px;}
.ws1c2{word-spacing:8.819395px;}
.wsb2{word-spacing:8.916752px;}
.ws16b{word-spacing:8.945387px;}
.wsb1{word-spacing:8.985475px;}
.wse2{word-spacing:9.226004px;}
.ws1a7{word-spacing:9.266092px;}
.ws1a9{word-spacing:9.283272px;}
.ws1a8{word-spacing:9.306180px;}
.ws1f{word-spacing:9.689881px;}
.ws20{word-spacing:9.695608px;}
.wsca{word-spacing:9.827326px;}
.ws18a{word-spacing:9.838780px;}
.wscb{word-spacing:9.867414px;}
.ws1d2{word-spacing:9.910296px;}
.ws1d1{word-spacing:9.924124px;}
.wsb5{word-spacing:9.936137px;}
.ws1d3{word-spacing:9.937953px;}
.wsb4{word-spacing:9.947591px;}
.wse0{word-spacing:9.953317px;}
.wsdf{word-spacing:9.964771px;}
.ws107{word-spacing:9.993406px;}
.ws108{word-spacing:9.999132px;}
.ws102{word-spacing:10.033494px;}
.ws103{word-spacing:10.044948px;}
.ws10a{word-spacing:10.417195px;}
.ws1e9{word-spacing:10.421944px;}
.ws1ea{word-spacing:10.426553px;}
.ws1eb{word-spacing:10.440382px;}
.ws109{word-spacing:10.451556px;}
.ws8e{word-spacing:10.480190px;}
.ws8f{word-spacing:10.508825px;}
.ws190{word-spacing:10.989883px;}
.ws191{word-spacing:11.024244px;}
.ws77{word-spacing:11.035698px;}
.ws45{word-spacing:11.190324px;}
.ws44{word-spacing:11.218958px;}
.wsd4{word-spacing:11.413672px;}
.ws59{word-spacing:11.608386px;}
.ws1f5{word-spacing:11.629617px;}
.ws1f4{word-spacing:11.643445px;}
.wsb8{word-spacing:11.768738px;}
.ws123{word-spacing:11.785919px;}
.ws122{word-spacing:11.791646px;}
.wsb9{word-spacing:11.808827px;}
.ws76{word-spacing:11.860368px;}
.ws75{word-spacing:11.871822px;}
.ws13a{word-spacing:12.095171px;}
.ws13b{word-spacing:12.100897px;}
.wsd2{word-spacing:12.381515px;}
.wsd3{word-spacing:12.404422px;}
.ws165{word-spacing:12.478872px;}
.ws166{word-spacing:12.501779px;}
.ws18b{word-spacing:12.862572px;}
.wsf4{word-spacing:13.137463px;}
.wsf5{word-spacing:13.160370px;}
.wse3{word-spacing:13.274908px;}
.ws67{word-spacing:13.704424px;}
.ws68{word-spacing:13.710151px;}
.ws1e4{word-spacing:13.722303px;}
.ws1e5{word-spacing:13.726912px;}
.ws1b1{word-spacing:13.933499px;}
.ws1b0{word-spacing:13.944953px;}
.wsba{word-spacing:14.036583px;}
.wsa6{word-spacing:14.208389px;}
.wsa5{word-spacing:14.237024px;}
.ws178{word-spacing:14.592090px;}
.ws177{word-spacing:14.614998px;}
.ws179{word-spacing:14.683720px;}
.ws16c{word-spacing:15.050241px;}
.ws16d{word-spacing:15.078875px;}
.ws42{word-spacing:15.370946px;}
.ws43{word-spacing:15.393853px;}
.wsd9{word-spacing:15.422488px;}
.wsda{word-spacing:15.433942px;}
.ws30{word-spacing:15.542752px;}
.ws2f{word-spacing:15.559933px;}
.wsa9{word-spacing:15.617202px;}
.ws100{word-spacing:16.040991px;}
.wsff{word-spacing:16.086806px;}
.ws18c{word-spacing:16.453326px;}
.ws18d{word-spacing:16.470507px;}
.ws19f{word-spacing:17.123371px;}
.ws19e{word-spacing:17.129098px;}
.ws19d{word-spacing:17.157732px;}
.ws3d{word-spacing:18.091214px;}
.wsc8{word-spacing:18.245840px;}
.wsc9{word-spacing:18.280201px;}
.wsc7{word-spacing:18.291655px;}
.ws118{word-spacing:22.626903px;}
.ws117{word-spacing:22.638357px;}
.ws15f{word-spacing:37.432983px;}
.ws1bd{word-spacing:272.467408px;}
.ws1d0{word-spacing:324.150808px;}
.ws183{word-spacing:354.987139px;}
.ws182{word-spacing:451.550199px;}
.ws15e{word-spacing:556.856110px;}
.ws1cf{word-spacing:616.278972px;}
.ws1bc{word-spacing:616.280772px;}
.ws160{word-spacing:723.139284px;}
._6{margin-left:-12.000000px;}
._2{margin-left:-5.865600px;}
._3{margin-left:-2.752200px;}
._0{margin-left:-1.680000px;}
._4{width:1.245527px;}
._8{width:2.795681px;}
._9{width:6.414106px;}
._1{width:12.000000px;}
._a{width:77.673673px;}
._7{width:82.400820px;}
._b{width:95.289556px;}
._c{width:113.598392px;}
._e{width:464.100768px;}
._d{width:507.523648px;}
._11{width:511.751203px;}
._10{width:548.011014px;}
._5{width:730.992000px;}
._f{width:1081.902614px;}
.fcc{color:rgb(16,15,13);}
.fcb{color:rgb(192,80,77);}
.fc9{color:rgb(227,108,10);}
.fc8{color:rgb(102,51,0);}
.fca{color:rgb(0,176,240);}
.fc7{color:rgb(31,73,125);}
.fc5{color:rgb(0,112,192);}
.fc4{color:rgb(255,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(53,50,148);}
.fc6{color:rgb(0,176,80);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:27.936000px;}
.fsc{font-size:37.713600px;}
.fsf{font-size:43.747200px;}
.fse{font-size:43.843800px;}
.fs9{font-size:46.094400px;}
.fs0{font-size:48.000000px;}
.fs7{font-size:48.888000px;}
.fsa{font-size:51.681600px;}
.fs1{font-size:54.000000px;}
.fsb{font-size:57.268800px;}
.fs5{font-size:60.062400px;}
.fsd{font-size:62.856000px;}
.fs3{font-size:69.840000px;}
.fs6{font-size:75.427200px;}
.fs4{font-size:92.188800px;}
.fs2{font-size:99.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:29.325750px;}
.y4{bottom:44.320950px;}
.y3{bottom:59.320950px;}
.y2{bottom:74.320950px;}
.y1c3{bottom:131.604630px;}
.y187{bottom:131.822516px;}
.yd2{bottom:136.049562px;}
.y8d{bottom:136.613033px;}
.y3d{bottom:137.479548px;}
.y101{bottom:138.236464px;}
.y243{bottom:139.816334px;}
.y1c2{bottom:145.920433px;}
.y1c8{bottom:145.933354px;}
.y150{bottom:146.080933px;}
.y28b{bottom:147.275834px;}
.y186{bottom:149.275183px;}
.y8c{bottom:154.065700px;}
.y239{bottom:154.119217px;}
.y242{bottom:154.132138px;}
.y1cc{bottom:154.667544px;}
.y3c{bottom:154.932215px;}
.y65{bottom:155.098666px;}
.y100{bottom:155.689130px;}
.y12f{bottom:157.374402px;}
.y1c7{bottom:160.598008px;}
.y1c1{bottom:161.282789px;}
.y28a{bottom:161.588146px;}
.yd1{bottom:162.242705px;}
.y14f{bottom:163.540933px;}
.y185{bottom:166.970195px;}
.y238{bottom:168.435020px;}
.y241{bottom:168.447941px;}
.y1cb{bottom:171.425303px;}
.y8b{bottom:171.518366px;}
.y3b{bottom:172.384882px;}
.y64{bottom:172.551332px;}
.yff{bottom:173.141797px;}
.y12e{bottom:174.827069px;}
.y1c6{bottom:174.913811px;}
.y1c0{bottom:175.598592px;}
.y289{bottom:176.257688px;}
.y14e{bottom:180.993600px;}
.y237{bottom:183.448525px;}
.y240{bottom:183.461446px;}
.y184{bottom:184.422862px;}
.y1ca{bottom:187.136509px;}
.y8a{bottom:188.971033px;}
.y1c5{bottom:189.229614px;}
.y3a{bottom:189.837548px;}
.y1bf{bottom:189.914395px;}
.y63{bottom:190.003999px;}
.y288{bottom:190.927231px;}
.y12d{bottom:192.279736px;}
.y236{bottom:197.764328px;}
.y23f{bottom:197.777249px;}
.y14d{bottom:198.453600px;}
.y183{bottom:201.875528px;}
.y1c9{bottom:203.196566px;}
.y1c4{bottom:204.243119px;}
.y1be{bottom:204.927900px;}
.y287{bottom:205.239542px;}
.y89{bottom:206.423700px;}
.y62{bottom:207.456666px;}
.yfe{bottom:208.061448px;}
.y12c{bottom:209.732402px;}
.y23e{bottom:212.441903px;}
.y235{bottom:213.126684px;}
.y14c{bottom:216.961200px;}
.y182{bottom:219.328195px;}
.y286{bottom:219.909085px;}
.y1b4{bottom:219.957468px;}
.y39{bottom:224.757199px;}
.y61{bottom:224.909333px;}
.y12b{bottom:227.185069px;}
.y23d{bottom:227.455408px;}
.y247{bottom:227.468328px;}
.y234{bottom:228.140189px;}
.yb7{bottom:230.352083px;}
.y14b{bottom:233.722800px;}
.y285{bottom:234.578628px;}
.y1b3{bottom:234.622122px;}
.y181{bottom:236.780862px;}
.y21{bottom:237.363757px;}
.y88{bottom:240.645300px;}
.y23c{bottom:241.771211px;}
.y246{bottom:241.784131px;}
.y60{bottom:242.362000px;}
.y233{bottom:242.455992px;}
.yfd{bottom:242.981099px;}
.y12a{bottom:244.637736px;}
.yb6{bottom:247.804750px;}
.y284{bottom:248.890939px;}
.y1b2{bottom:248.937925px;}
.y14a{bottom:250.484400px;}
.y20{bottom:252.033300px;}
.y180{bottom:254.233529px;}
.y232{bottom:256.771795px;}
.y23b{bottom:256.784716px;}
.y245{bottom:256.797636px;}
.y38{bottom:259.676850px;}
.y5f{bottom:259.814666px;}
.yfc{bottom:260.433766px;}
.y1b1{bottom:263.253728px;}
.y283{bottom:263.560482px;}
.yb5{bottom:265.257416px;}
.y87{bottom:266.835300px;}
.y1f{bottom:267.048900px;}
.y149{bottom:267.246000px;}
.y23a{bottom:271.100519px;}
.y244{bottom:271.113439px;}
.y17f{bottom:271.686196px;}
.y231{bottom:271.785300px;}
.y5e{bottom:277.267333px;}
.yfb{bottom:277.886432px;}
.y282{bottom:278.230025px;}
.y1b0{bottom:278.267233px;}
.y1b9{bottom:278.280154px;}
.y129{bottom:279.557387px;}
.yb4{bottom:282.710083px;}
.y148{bottom:283.658550px;}
.y225{bottom:287.160077px;}
.y1bd{bottom:287.712046px;}
.y230{bottom:288.581321px;}
.y17e{bottom:289.138862px;}
.y281{bottom:292.542336px;}
.y1af{bottom:292.583036px;}
.y1b8{bottom:292.595957px;}
.y37{bottom:293.552393px;}
.y5d{bottom:294.800515px;}
.yfa{bottom:295.339099px;}
.y1e{bottom:297.778500px;}
.yb3{bottom:300.178464px;}
.y147{bottom:300.420000px;}
.y224{bottom:302.173582px;}
.y22a{bottom:302.186502px;}
.y22f{bottom:302.897124px;}
.y1bc{bottom:303.772103px;}
.y17d{bottom:306.591529px;}
.y280{bottom:307.211879px;}
.y1ae{bottom:307.945392px;}
.y1b7{bottom:307.958312px;}
.y5c{bottom:312.253182px;}
.yf9{bottom:312.791766px;}
.y128{bottom:314.477038px;}
.y146{bottom:317.181600px;}
.y223{bottom:317.187086px;}
.y229{bottom:317.200007px;}
.y22e{bottom:317.212927px;}
.yb2{bottom:317.631131px;}
.y1bb{bottom:319.483309px;}
.y27f{bottom:321.881422px;}
.y1b6{bottom:322.274116px;}
.y1ad{bottom:322.958897px;}
.y17c{bottom:324.044196px;}
.y36{bottom:324.977250px;}
.y1d{bottom:329.234286px;}
.y5b{bottom:329.705849px;}
.yf8{bottom:330.244433px;}
.y222{bottom:331.502890px;}
.y228{bottom:331.515810px;}
.y22d{bottom:332.226432px;}
.y145{bottom:333.943200px;}
.yb1{bottom:335.083798px;}
.y1ba{bottom:335.543366px;}
.y27e{bottom:336.193733px;}
.y1b5{bottom:336.589919px;}
.y1ac{bottom:337.274700px;}
.y127{bottom:340.663196px;}
.y17b{bottom:341.496863px;}
.y221{bottom:346.516394px;}
.y227{bottom:346.529315px;}
.y22c{bottom:346.542235px;}
.y1c{bottom:346.686953px;}
.y5a{bottom:347.158516px;}
.yf7{bottom:347.697100px;}
.y27d{bottom:350.863276px;}
.y35{bottom:351.167250px;}
.y1ab{bottom:352.988700px;}
.y144{bottom:355.593600px;}
.y126{bottom:358.115863px;}
.y17a{bottom:358.949530px;}
.y226{bottom:361.193969px;}
.y22b{bottom:361.206889px;}
.y220{bottom:361.878750px;}
.y1b{bottom:364.139620px;}
.y59{bottom:364.611182px;}
.yf6{bottom:365.149766px;}
.y27c{bottom:365.532818px;}
.yb0{bottom:370.003448px;}
.y125{bottom:375.926460px;}
.y179{bottom:376.402196px;}
.y21f{bottom:377.243550px;}
.y1aa{bottom:378.050086px;}
.y27b{bottom:379.845130px;}
.y1a{bottom:381.592286px;}
.y58{bottom:382.063849px;}
.yf5{bottom:382.602433px;}
.y143{bottom:385.304933px;}
.y178{bottom:393.854863px;}
.y27a{bottom:394.514672px;}
.yd0{bottom:394.812000px;}
.y124{bottom:397.574066px;}
.y57{bottom:399.516516px;}
.yf4{bottom:400.055100px;}
.y21e{bottom:402.389442px;}
.y142{bottom:402.757600px;}
.yaf{bottom:404.923099px;}
.y279{bottom:409.184215px;}
.y177{bottom:411.307530px;}
.ycf{bottom:412.286816px;}
.y1a9{bottom:412.969736px;}
.y123{bottom:415.026733px;}
.y19{bottom:416.855550px;}
.y56{bottom:416.969183px;}
.y21d{bottom:419.842109px;}
.y141{bottom:420.210266px;}
.y278{bottom:423.496526px;}
.yf3{bottom:426.245100px;}
.y176{bottom:428.760197px;}
.yce{bottom:429.739483px;}
.y122{bottom:432.706031px;}
.y55{bottom:434.421850px;}
.y21c{bottom:436.607550px;}
.y140{bottom:437.662933px;}
.y277{bottom:438.166069px;}
.yae{bottom:439.842750px;}
.yf2{bottom:443.920906px;}
.y175{bottom:446.212864px;}
.ycd{bottom:447.203174px;}
.y1a8{bottom:447.889387px;}
.y121{bottom:450.158698px;}
.y54{bottom:451.874516px;}
.y276{bottom:452.835612px;}
.y218{bottom:454.074534px;}
.y13f{bottom:455.130266px;}
.yad{bottom:457.298909px;}
.yf1{bottom:461.373572px;}
.y174{bottom:463.665530px;}
.y1a7{bottom:464.654828px;}
.y18{bottom:466.092900px;}
.y275{bottom:467.147923px;}
.y120{bottom:467.611364px;}
.y217{bottom:468.390337px;}
.y53{bottom:469.327183px;}
.y13e{bottom:472.582933px;}
.ycc{bottom:473.389333px;}
.yac{bottom:474.064350px;}
.yf0{bottom:478.826239px;}
.y173{bottom:481.118197px;}
.y1a6{bottom:481.420270px;}
.y274{bottom:481.817466px;}
.y216{bottom:483.403842px;}
.y11f{bottom:485.064031px;}
.y52{bottom:486.779850px;}
.y24{bottom:489.135750px;}
.y13d{bottom:490.035600px;}
.ycb{bottom:490.917228px;}
.yab{bottom:491.520509px;}
.yef{bottom:496.278906px;}
.y273{bottom:496.487009px;}
.y17{bottom:497.523694px;}
.y215{bottom:497.719645px;}
.y21a{bottom:497.732566px;}
.y1a5{bottom:498.185711px;}
.y172{bottom:498.570864px;}
.y11e{bottom:502.516698px;}
.y23{bottom:504.135750px;}
.ya9{bottom:508.285950px;}
.yca{bottom:508.369895px;}
.y272{bottom:510.799320px;}
.y21b{bottom:511.699518px;}
.y219{bottom:512.048369px;}
.y214{bottom:512.733150px;}
.y51{bottom:512.970199px;}
.y16{bottom:513.234900px;}
.yee{bottom:513.731573px;}
.y1a4{bottom:514.951152px;}
.y171{bottom:516.023531px;}
.y22{bottom:519.135750px;}
.y11d{bottom:519.969365px;}
.y13c{bottom:524.611289px;}
.yaa{bottom:525.051391px;}
.y271{bottom:525.468863px;}
.yc9{bottom:525.822562px;}
.y86{bottom:527.687850px;}
.y207{bottom:528.111020px;}
.y15{bottom:529.298100px;}
.yed{bottom:531.184240px;}
.y1a3{bottom:531.358663px;}
.y170{bottom:533.476198px;}
.y11c{bottom:537.422032px;}
.y13b{bottom:538.923600px;}
.y270{bottom:540.138406px;}
.y206{bottom:542.426824px;}
.ya8{bottom:542.498471px;}
.yc8{bottom:543.275228px;}
.y85{bottom:545.294514px;}
.y14{bottom:546.075065px;}
.y50{bottom:547.889850px;}
.y1a2{bottom:548.124104px;}
.y213{bottom:548.396048px;}
.yec{bottom:548.636906px;}
.ya7{bottom:550.888350px;}
.y16f{bottom:550.928864px;}
.y26f{bottom:554.450717px;}
.y11b{bottom:554.874698px;}
.y205{bottom:557.440328px;}
.y20d{bottom:557.453249px;}
.yc7{bottom:561.085825px;}
.y13{bottom:562.135122px;}
.y84{bottom:562.747181px;}
.y212{bottom:564.456106px;}
.y1a1{bottom:564.889546px;}
.y13a{bottom:565.113600px;}
.yeb{bottom:566.089573px;}
.y16e{bottom:568.381531px;}
.y26e{bottom:569.120260px;}
.y204{bottom:571.756132px;}
.y20c{bottom:571.769052px;}
.ya6{bottom:576.720071px;}
.y12{bottom:578.195179px;}
.y83{bottom:580.199848px;}
.y11a{bottom:581.060857px;}
.y211{bottom:581.213864px;}
.y1a0{bottom:581.654987px;}
.y4f{bottom:582.121926px;}
.yc6{bottom:582.733432px;}
.yea{bottom:583.542240px;}
.y26d{bottom:583.789802px;}
.ya5{bottom:585.109950px;}
.y16d{bottom:585.834198px;}
.y20b{bottom:586.084855px;}
.y203{bottom:586.769636px;}
.y11{bottom:594.255236px;}
.y4e{bottom:595.385590px;}
.y210{bottom:596.925071px;}
.y82{bottom:597.652514px;}
.y26c{bottom:598.102114px;}
.y19f{bottom:598.420428px;}
.y119{bottom:598.513524px;}
.yc5{bottom:600.186098px;}
.ye9{bottom:600.994907px;}
.y20a{bottom:601.447211px;}
.y202{bottom:602.131992px;}
.y16c{bottom:603.286865px;}
.y4d{bottom:606.206250px;}
.y10{bottom:609.966443px;}
.ya4{bottom:610.941671px;}
.y26b{bottom:612.771656px;}
.y20f{bottom:613.682830px;}
.y81{bottom:615.105181px;}
.y19e{bottom:615.185869px;}
.y209{bottom:615.763014px;}
.y118{bottom:615.966191px;}
.y201{bottom:616.447795px;}
.yc4{bottom:617.638765px;}
.ye8{bottom:618.447574px;}
.ya3{bottom:619.331550px;}
.y16b{bottom:620.739532px;}
.yf{bottom:626.026500px;}
.y26a{bottom:627.441199px;}
.y66{bottom:627.502500px;}
.y68{bottom:628.933200px;}
.y20e{bottom:629.742887px;}
.y208{bottom:630.776519px;}
.y200{bottom:631.461300px;}
.y19d{bottom:631.951310px;}
.y80{bottom:632.557848px;}
.y117{bottom:633.418858px;}
.yc3{bottom:635.091432px;}
.ye7{bottom:635.900240px;}
.y16a{bottom:638.192198px;}
.y269{bottom:641.753510px;}
.ya2{bottom:645.168509px;}
.y1f5{bottom:646.486877px;}
.y19c{bottom:648.716752px;}
.y7f{bottom:650.010515px;}
.y116{bottom:650.871524px;}
.yc2{bottom:652.544099px;}
.ye6{bottom:653.352907px;}
.y1ff{bottom:654.885137px;}
.y169{bottom:655.644865px;}
.y268{bottom:656.423053px;}
.ye{bottom:658.152900px;}
.y1f4{bottom:661.849232px;}
.y1fa{bottom:661.862153px;}
.ya0{bottom:661.933950px;}
.y19b{bottom:665.482193px;}
.y7e{bottom:667.463182px;}
.y115{bottom:668.324191px;}
.yc1{bottom:669.996766px;}
.ye5{bottom:670.805574px;}
.y1fe{bottom:670.945194px;}
.y267{bottom:671.092596px;}
.y168{bottom:673.097532px;}
.y1f9{bottom:676.177956px;}
.y1f3{bottom:676.862737px;}
.ya1{bottom:678.699391px;}
.y19a{bottom:682.247634px;}
.y7d{bottom:684.915848px;}
.y266{bottom:685.404907px;}
.y114{bottom:685.776858px;}
.y1fd{bottom:687.005251px;}
.yc0{bottom:687.449432px;}
.ye4{bottom:688.258241px;}
.y167{bottom:690.550199px;}
.y1f2{bottom:691.178540px;}
.y1f8{bottom:691.191461px;}
.y9f{bottom:696.160788px;}
.y199{bottom:699.013075px;}
.y265{bottom:700.074450px;}
.y7c{bottom:702.368515px;}
.y113{bottom:703.229525px;}
.y1fc{bottom:703.763010px;}
.y9e{bottom:704.536350px;}
.ybf{bottom:704.902099px;}
.ye3{bottom:705.710908px;}
.y1f1{bottom:706.192045px;}
.y1f7{bottom:706.204966px;}
.y166{bottom:708.002866px;}
.y198{bottom:715.778516px;}
.y1fb{bottom:719.474216px;}
.y7b{bottom:719.821182px;}
.y1f6{bottom:720.520769px;}
.y112{bottom:720.682192px;}
.y1f0{bottom:721.205550px;}
.yd{bottom:723.104100px;}
.ye2{bottom:723.163574px;}
.y165{bottom:725.455532px;}
.y9d{bottom:730.024109px;}
.y197{bottom:732.186028px;}
.y264{bottom:732.550399px;}
.y1ed{bottom:736.591103px;}
.y7a{bottom:737.273849px;}
.y1e8{bottom:737.275884px;}
.yc{bottom:737.770500px;}
.y111{bottom:738.134858px;}
.ybe{bottom:739.843949px;}
.ye1{bottom:740.616241px;}
.y164{bottom:742.908199px;}
.y67{bottom:743.655687px;}
.y69{bottom:744.368100px;}
.y6a{bottom:746.593222px;}
.y9b{bottom:746.789550px;}
.y29e{bottom:747.912919px;}
.y196{bottom:748.951469px;}
.y1ec{bottom:750.906906px;}
.y1e7{bottom:751.591687px;}
.y79{bottom:754.726516px;}
.y110{bottom:755.587525px;}
.ye0{bottom:758.068908px;}
.yb{bottom:760.119300px;}
.y29d{bottom:762.582462px;}
.y34{bottom:762.598182px;}
.y9c{bottom:763.554991px;}
.y195{bottom:765.716910px;}
.y1eb{bottom:765.920411px;}
.y1e6{bottom:766.605192px;}
.y263{bottom:767.470050px;}
.y78{bottom:772.179182px;}
.y10f{bottom:773.040192px;}
.ybd{bottom:774.763600px;}
.ydf{bottom:775.521575px;}
.y29c{bottom:777.252005px;}
.y163{bottom:777.827850px;}
.y1ef{bottom:778.491960px;}
.y4c{bottom:779.854132px;}
.y33{bottom:780.050849px;}
.y1e5{bottom:780.920995px;}
.y1ea{bottom:780.933916px;}
.y9a{bottom:781.011150px;}
.y194{bottom:782.482351px;}
.y77{bottom:789.631849px;}
.y29b{bottom:791.564316px;}
.ybc{bottom:792.216266px;}
.yde{bottom:792.974242px;}
.y1ee{bottom:794.203166px;}
.y10e{bottom:794.687798px;}
.y1e9{bottom:795.249719px;}
.y1e4{bottom:795.934500px;}
.y4b{bottom:797.306798px;}
.y32{bottom:797.503516px;}
.y193{bottom:799.247792px;}
.ya{bottom:800.979192px;}
.y262{bottom:801.342450px;}
.y99{bottom:803.709150px;}
.y29a{bottom:806.233859px;}
.y76{bottom:807.084516px;}
.ybb{bottom:809.668933px;}
.ydd{bottom:810.426908px;}
.y1da{bottom:811.313617px;}
.y10d{bottom:812.140465px;}
.y15c{bottom:813.108025px;}
.y4a{bottom:814.759465px;}
.y31{bottom:814.956182px;}
.y192{bottom:816.013234px;}
.y25e{bottom:816.368327px;}
.y299{bottom:820.903402px;}
.y75{bottom:824.537183px;}
.y1d9{bottom:825.629420px;}
.yba{bottom:827.121600px;}
.ydc{bottom:827.879575px;}
.y15b{bottom:828.121530px;}
.y10c{bottom:829.593132px;}
.y25d{bottom:830.684130px;}
.y49{bottom:832.212132px;}
.y30{bottom:832.408849px;}
.y191{bottom:832.778675px;}
.y98{bottom:833.405816px;}
.y298{bottom:835.215713px;}
.y1d8{bottom:840.642925px;}
.y74{bottom:841.989850px;}
.y15a{bottom:842.786184px;}
.y161{bottom:842.799104px;}
.y162{bottom:843.496806px;}
.ydb{bottom:845.332242px;}
.y25c{bottom:845.697635px;}
.y10b{bottom:847.045799px;}
.y9{bottom:847.419300px;}
.y190{bottom:849.544116px;}
.y48{bottom:849.664799px;}
.y2f{bottom:849.861516px;}
.y297{bottom:849.885256px;}
.y139{bottom:850.104799px;}
.y97{bottom:850.858483px;}
.y1d7{bottom:854.958728px;}
.y159{bottom:857.799689px;}
.y160{bottom:857.812609px;}
.y73{bottom:859.442516px;}
.y25b{bottom:860.013438px;}
.yb9{bottom:861.343350px;}
.yda{bottom:862.784909px;}
.y10a{bottom:864.498466px;}
.y296{bottom:864.554798px;}
.y18f{bottom:866.309557px;}
.y47{bottom:867.117466px;}
.y2e{bottom:867.314183px;}
.y138{bottom:867.557466px;}
.y96{bottom:868.369816px;}
.y1d6{bottom:869.972233px;}
.y1df{bottom:869.985154px;}
.y158{bottom:872.115492px;}
.y15f{bottom:872.128412px;}
.y25a{bottom:874.329241px;}
.y72{bottom:876.895183px;}
.y295{bottom:878.867110px;}
.y1e3{bottom:879.417046px;}
.y109{bottom:881.951132px;}
.y18e{bottom:883.074998px;}
.yd9{bottom:884.432515px;}
.y46{bottom:884.570132px;}
.y1d5{bottom:884.636887px;}
.y2d{bottom:884.766850px;}
.y137{bottom:885.010133px;}
.y1de{bottom:885.347509px;}
.y95{bottom:885.822482px;}
.y157{bottom:887.128997px;}
.y15e{bottom:887.141917px;}
.yb8{bottom:887.533200px;}
.y259{bottom:888.993895px;}
.y260{bottom:889.006816px;}
.y8{bottom:891.767700px;}
.y294{bottom:893.536652px;}
.y71{bottom:894.347850px;}
.y1e2{bottom:895.477103px;}
.y108{bottom:899.403799px;}
.y1d4{bottom:899.650392px;}
.y1dd{bottom:899.663312px;}
.y18d{bottom:899.840440px;}
.y156{bottom:901.444800px;}
.y15d{bottom:901.457720px;}
.yd8{bottom:901.885182px;}
.y45{bottom:902.022799px;}
.y2c{bottom:902.219516px;}
.y136{bottom:902.462800px;}
.y94{bottom:903.275149px;}
.y25f{bottom:903.322619px;}
.y258{bottom:904.007400px;}
.y261{bottom:904.020320px;}
.y293{bottom:908.206195px;}
.y1e1{bottom:911.188309px;}
.y1d3{bottom:913.966195px;}
.y1dc{bottom:913.979116px;}
.y18c{bottom:916.247951px;}
.y107{bottom:916.856466px;}
.y155{bottom:917.857200px;}
.y254{bottom:919.045897px;}
.yd7{bottom:919.337849px;}
.y44{bottom:919.475466px;}
.y2b{bottom:919.672183px;}
.y135{bottom:919.915466px;}
.y70{bottom:920.574366px;}
.y93{bottom:920.727816px;}
.y292{bottom:922.518506px;}
.y1e0{bottom:927.248366px;}
.y1db{bottom:928.294919px;}
.y1d2{bottom:928.979700px;}
.y18b{bottom:933.013392px;}
.y24d{bottom:933.348780px;}
.y253{bottom:933.361700px;}
.y106{bottom:934.309133px;}
.yd6{bottom:936.790516px;}
.y43{bottom:936.928133px;}
.y2a{bottom:937.154183px;}
.y291{bottom:937.188049px;}
.y134{bottom:937.368133px;}
.y6f{bottom:938.027033px;}
.y92{bottom:938.180483px;}
.y154{bottom:939.507600px;}
.y1d1{bottom:944.351334px;}
.y24c{bottom:948.013434px;}
.y252{bottom:948.724056px;}
.y18a{bottom:949.778833px;}
.y105{bottom:951.761800px;}
.y290{bottom:951.857592px;}
.yd5{bottom:954.243182px;}
.y42{bottom:954.380800px;}
.y29{bottom:954.606850px;}
.y133{bottom:954.842800px;}
.y6e{bottom:955.479700px;}
.y91{bottom:955.633150px;}
.y1{bottom:956.692950px;}
.y1d0{bottom:958.667137px;}
.y24b{bottom:963.026939px;}
.y251{bottom:963.039859px;}
.y28f{bottom:966.169903px;}
.y189{bottom:967.231999px;}
.y153{bottom:969.204266px;}
.y104{bottom:969.214466px;}
.yd4{bottom:971.695849px;}
.y41{bottom:971.833466px;}
.y28{bottom:972.059516px;}
.y132{bottom:972.295466px;}
.y6d{bottom:972.932366px;}
.y90{bottom:973.085816px;}
.y1cf{bottom:973.680642px;}
.y24a{bottom:977.342742px;}
.y250{bottom:977.355662px;}
.y257{bottom:977.368583px;}
.y28e{bottom:980.839446px;}
.y152{bottom:986.656933px;}
.y103{bottom:986.667133px;}
.y1ce{bottom:987.996445px;}
.y40{bottom:989.286133px;}
.y27{bottom:989.512183px;}
.y131{bottom:989.748133px;}
.y6c{bottom:990.385033px;}
.y8f{bottom:990.538483px;}
.y249{bottom:991.658545px;}
.y24f{bottom:991.671466px;}
.y256{bottom:991.684386px;}
.y28d{bottom:995.508989px;}
.y188{bottom:1002.151650px;}
.y1cd{bottom:1003.009950px;}
.y151{bottom:1004.109600px;}
.y102{bottom:1004.119800px;}
.y7{bottom:1004.591550px;}
.y24e{bottom:1005.987269px;}
.y255{bottom:1006.000189px;}
.yd3{bottom:1006.615500px;}
.y248{bottom:1006.672050px;}
.y3f{bottom:1006.738800px;}
.y26{bottom:1006.964850px;}
.y130{bottom:1007.200800px;}
.y6b{bottom:1007.837700px;}
.y8e{bottom:1007.991150px;}
.y28c{bottom:1009.821300px;}
.y6{bottom:1035.882000px;}
.y25{bottom:1048.146450px;}
.y3e{bottom:1048.158450px;}
.h9{height:19.396969px;}
.h13{height:31.849158px;}
.h12{height:31.919485px;}
.hd{height:32.027505px;}
.h16{height:32.048457px;}
.h11{height:32.784000px;}
.h2{height:33.024000px;}
.h3{height:33.043200px;}
.ha{height:35.026397px;}
.h17{height:35.329219px;}
.hb{height:35.909627px;}
.h18{height:37.095680px;}
.h4{height:38.664000px;}
.he{height:38.813034px;}
.h10{height:39.763786px;}
.hc{height:39.791749px;}
.h19{height:41.385656px;}
.hf{height:43.673871px;}
.h6{height:48.526523px;}
.h7{height:64.055011px;}
.h8{height:68.888566px;}
.h14{height:71.919546px;}
.h15{height:73.293997px;}
.h5{height:74.646000px;}
.h1{height:1113.750000px;}
.h0{height:1114.015500px;}
.w0{width:816.378000px;}
.w1{width:816.750000px;}
.x0{left:0.000000px;}
.x2{left:46.771500px;}
.xf{left:48.897600px;}
.x42{left:61.176696px;}
.x23{left:62.497488px;}
.x10{left:66.758850px;}
.xe{left:68.456700px;}
.xa{left:69.510750px;}
.x2c{left:74.790600px;}
.xd{left:78.240750px;}
.x22{left:79.821300px;}
.x3d{left:81.139650px;}
.x11{left:84.068345px;}
.x7{left:85.238714px;}
.xb{left:86.820245px;}
.x37{left:89.171250px;}
.x16{left:91.912912px;}
.x26{left:94.411304px;}
.x6{left:97.218300px;}
.x2b{left:99.611426px;}
.x28{left:101.406474px;}
.x27{left:104.189952px;}
.x38{left:115.360901px;}
.x29{left:118.715969px;}
.x31{left:121.626090px;}
.xc{left:133.748850px;}
.x25{left:134.904108px;}
.x32{left:138.964219px;}
.x18{left:140.434350px;}
.x19{left:143.357185px;}
.x8{left:182.170950px;}
.x5{left:203.337450px;}
.x1f{left:211.462795px;}
.x14{left:231.725250px;}
.x9{left:234.860700px;}
.x1{left:237.691500px;}
.x3{left:239.825100px;}
.x21{left:259.747500px;}
.x1e{left:277.086000px;}
.x4{left:294.521550px;}
.x17{left:296.986897px;}
.x2d{left:301.776187px;}
.x2e{left:327.746191px;}
.x1a{left:330.290850px;}
.x33{left:345.556643px;}
.x39{left:357.359993px;}
.x34{left:371.746294px;}
.x3a{left:383.549644px;}
.x2f{left:518.283330px;}
.x1b{left:528.174300px;}
.x1c{left:534.019969px;}
.x35{left:541.455748px;}
.x30{left:544.253334px;}
.x3b{left:553.259098px;}
.x40{left:554.650648px;}
.x3e{left:566.179498px;}
.x36{left:567.645398px;}
.x1d{left:571.098150px;}
.x3c{left:579.448748px;}
.x41{left:580.840298px;}
.x20{left:588.561900px;}
.x3f{left:592.369148px;}
.x24{left:620.208998px;}
.x12{left:694.045650px;}
.x2a{left:699.991350px;}
.x15{left:704.611200px;}
.x13{left:748.325250px;}
@media print{
.v3{vertical-align:-18.624000pt;}
.v1{vertical-align:-12.416000pt;}
.v4{vertical-align:-7.553894pt;}
.v7{vertical-align:-4.947776pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:7.450133pt;}
.v5{vertical-align:28.558042pt;}
.v6{vertical-align:29.779776pt;}
.v2{vertical-align:31.040000pt;}
.ls39{letter-spacing:-0.941051pt;}
.ls38{letter-spacing:-0.904157pt;}
.ls37{letter-spacing:-0.506639pt;}
.ls23{letter-spacing:-0.426667pt;}
.ls22{letter-spacing:-0.422400pt;}
.ls21{letter-spacing:-0.072533pt;}
.ls20{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.051733pt;}
.ls41{letter-spacing:0.052267pt;}
.ls53{letter-spacing:0.052800pt;}
.ls2{letter-spacing:0.080456pt;}
.ls6{letter-spacing:0.087160pt;}
.ls3{letter-spacing:0.093865pt;}
.ls35{letter-spacing:0.135210pt;}
.ls60{letter-spacing:0.137818pt;}
.ls1f{letter-spacing:0.139308pt;}
.ls62{letter-spacing:0.155697pt;}
.ls63{letter-spacing:0.159794pt;}
.ls14{letter-spacing:0.163891pt;}
.ls31{letter-spacing:0.167988pt;}
.ls42{letter-spacing:0.172086pt;}
.lsa{letter-spacing:0.176183pt;}
.ls46{letter-spacing:0.180280pt;}
.ls9{letter-spacing:0.184378pt;}
.ls1e{letter-spacing:0.188475pt;}
.ls45{letter-spacing:0.192572pt;}
.ls61{letter-spacing:0.196669pt;}
.ls15{letter-spacing:0.203622pt;}
.ls13{letter-spacing:0.204864pt;}
.ls5d{letter-spacing:0.206726pt;}
.ls64{letter-spacing:0.208961pt;}
.ls66{letter-spacing:0.217156pt;}
.ls5e{letter-spacing:0.220508pt;}
.ls4{letter-spacing:0.223936pt;}
.ls5b{letter-spacing:0.225102pt;}
.ls50{letter-spacing:0.229696pt;}
.ls25{letter-spacing:0.230317pt;}
.ls5c{letter-spacing:0.234290pt;}
.ls4d{letter-spacing:0.238884pt;}
.ls11{letter-spacing:0.243478pt;}
.ls59{letter-spacing:0.248072pt;}
.lse{letter-spacing:0.252666pt;}
.ls4e{letter-spacing:0.257260pt;}
.ls65{letter-spacing:0.258129pt;}
.ls7{letter-spacing:0.258133pt;}
.ls5{letter-spacing:0.258667pt;}
.lsd{letter-spacing:0.261853pt;}
.lsf{letter-spacing:0.266447pt;}
.lsc{letter-spacing:0.271041pt;}
.ls12{letter-spacing:0.275635pt;}
.lsb{letter-spacing:0.280229pt;}
.ls57{letter-spacing:0.284823pt;}
.ls26{letter-spacing:0.289417pt;}
.ls56{letter-spacing:0.294011pt;}
.ls5a{letter-spacing:0.298605pt;}
.ls3c{letter-spacing:0.300343pt;}
.ls36{letter-spacing:0.305434pt;}
.ls10{letter-spacing:0.307793pt;}
.ls3d{letter-spacing:0.310524pt;}
.ls1d{letter-spacing:0.315615pt;}
.ls5f{letter-spacing:0.316980pt;}
.ls33{letter-spacing:0.320705pt;}
.ls1c{letter-spacing:0.325796pt;}
.ls1a{letter-spacing:0.330886pt;}
.ls18{letter-spacing:0.335977pt;}
.ls16{letter-spacing:0.341068pt;}
.ls24{letter-spacing:0.344172pt;}
.ls1b{letter-spacing:0.346158pt;}
.ls19{letter-spacing:0.351249pt;}
.ls2a{letter-spacing:0.356339pt;}
.ls17{letter-spacing:0.361430pt;}
.ls2b{letter-spacing:0.366520pt;}
.ls0{letter-spacing:0.368755pt;}
.ls2e{letter-spacing:0.371611pt;}
.ls28{letter-spacing:0.376701pt;}
.ls29{letter-spacing:0.381792pt;}
.ls30{letter-spacing:0.386883pt;}
.ls40{letter-spacing:0.391973pt;}
.ls32{letter-spacing:0.397064pt;}
.ls2f{letter-spacing:0.402154pt;}
.ls3b{letter-spacing:0.407245pt;}
.ls27{letter-spacing:0.412335pt;}
.ls51{letter-spacing:0.417426pt;}
.ls52{letter-spacing:0.422516pt;}
.ls2d{letter-spacing:0.427607pt;}
.ls43{letter-spacing:0.437788pt;}
.ls34{letter-spacing:0.458150pt;}
.ls1{letter-spacing:0.465600pt;}
.ls49{letter-spacing:0.478513pt;}
.ls4b{letter-spacing:0.509056pt;}
.ls8{letter-spacing:0.517333pt;}
.ls3a{letter-spacing:1.247113pt;}
.ls54{letter-spacing:8.603046pt;}
.ls4c{letter-spacing:16.391603pt;}
.ls44{letter-spacing:23.620198pt;}
.ls55{letter-spacing:23.722010pt;}
.ls47{letter-spacing:34.972147pt;}
.ls4a{letter-spacing:39.960896pt;}
.ls48{letter-spacing:45.865946pt;}
.ls4f{letter-spacing:58.159027pt;}
.ls58{letter-spacing:58.939994pt;}
.ls3e{letter-spacing:114.741222pt;}
.ls3f{letter-spacing:215.381594pt;}
.ws1be{word-spacing:-46.224023pt;}
.ws184{word-spacing:-46.201053pt;}
.ws1c8{word-spacing:-46.196460pt;}
.ws1bf{word-spacing:-46.191866pt;}
.ws1ce{word-spacing:-46.182678pt;}
.ws1cb{word-spacing:-15.706612pt;}
.ws1c1{word-spacing:-15.688237pt;}
.ws1cc{word-spacing:-15.665267pt;}
.ws185{word-spacing:-15.656079pt;}
.ws1cd{word-spacing:-15.651485pt;}
.ws1ca{word-spacing:-15.646892pt;}
.ws1c9{word-spacing:-15.642298pt;}
.ws1c0{word-spacing:-15.633110pt;}
.ws5{word-spacing:-13.138735pt;}
.ws110{word-spacing:-13.133645pt;}
.wsc6{word-spacing:-13.118373pt;}
.wsc5{word-spacing:-13.113283pt;}
.wsc4{word-spacing:-13.103101pt;}
.ws50{word-spacing:-13.087830pt;}
.ws2c{word-spacing:-13.082739pt;}
.ws3{word-spacing:-11.094317pt;}
.ws0{word-spacing:-10.666667pt;}
.ws4{word-spacing:-10.448064pt;}
.ws1{word-spacing:-10.240000pt;}
.wsdc{word-spacing:-0.239256pt;}
.ws10b{word-spacing:-0.188351pt;}
.ws10f{word-spacing:-0.183260pt;}
.ws189{word-spacing:-0.178170pt;}
.wsed{word-spacing:-0.173079pt;}
.wsc{word-spacing:-0.172086pt;}
.wse1{word-spacing:-0.167988pt;}
.wsa{word-spacing:-0.163891pt;}
.ws48{word-spacing:-0.162898pt;}
.wsa1{word-spacing:-0.157807pt;}
.ws1a{word-spacing:-0.156193pt;}
.ws9b{word-spacing:-0.152717pt;}
.ws60{word-spacing:-0.147626pt;}
.wsb{word-spacing:-0.147502pt;}
.ws3e{word-spacing:-0.142536pt;}
.ws32{word-spacing:-0.137445pt;}
.ws31{word-spacing:-0.132355pt;}
.ws9a{word-spacing:-0.127264pt;}
.ws3f{word-spacing:-0.122173pt;}
.ws6b{word-spacing:-0.117083pt;}
.ws1d{word-spacing:-0.114848pt;}
.ws55{word-spacing:-0.111992pt;}
.ws74{word-spacing:-0.106902pt;}
.ws12{word-spacing:-0.106529pt;}
.ws1b{word-spacing:-0.105660pt;}
.ws1f2{word-spacing:-0.102432pt;}
.ws82{word-spacing:-0.101811pt;}
.ws19{word-spacing:-0.101066pt;}
.ws11{word-spacing:-0.098335pt;}
.wsb0{word-spacing:-0.096721pt;}
.ws29{word-spacing:-0.094237pt;}
.ws49{word-spacing:-0.091630pt;}
.ws13{word-spacing:-0.090140pt;}
.ws2{word-spacing:-0.088000pt;}
.ws11b{word-spacing:-0.086540pt;}
.ws2a{word-spacing:-0.086043pt;}
.ws1c{word-spacing:-0.082691pt;}
.ws6f{word-spacing:-0.081946pt;}
.ws6d{word-spacing:-0.077848pt;}
.ws13d{word-spacing:-0.076358pt;}
.ws1e{word-spacing:-0.073751pt;}
.ws6c{word-spacing:-0.069654pt;}
.ws170{word-spacing:-0.065556pt;}
.wsdb{word-spacing:-0.061459pt;}
.ws1f3{word-spacing:-0.057362pt;}
.ws1ef{word-spacing:-0.053265pt;}
.ws1c7{word-spacing:-0.050906pt;}
.ws6e{word-spacing:-0.049167pt;}
.wsbe{word-spacing:-0.040724pt;}
.wse{word-spacing:-0.040228pt;}
.ws2b{word-spacing:-0.036876pt;}
.wsd{word-spacing:-0.033523pt;}
.wsf{word-spacing:-0.026819pt;}
.wsbd{word-spacing:-0.020362pt;}
.ws10{word-spacing:-0.020114pt;}
.wsbf{word-spacing:-0.005091pt;}
.ws7{word-spacing:-0.004267pt;}
.ws8{word-spacing:0.000000pt;}
.ws9{word-spacing:0.006208pt;}
.ws94{word-spacing:0.007794pt;}
.ws6{word-spacing:0.072533pt;}
.ws1d8{word-spacing:0.131113pt;}
.ws1d9{word-spacing:0.135210pt;}
.ws4f{word-spacing:0.137445pt;}
.wsd7{word-spacing:0.142536pt;}
.ws1a2{word-spacing:0.147626pt;}
.ws1da{word-spacing:0.155697pt;}
.wsd8{word-spacing:0.157807pt;}
.ws15a{word-spacing:0.162898pt;}
.ws15b{word-spacing:0.167988pt;}
.ws83{word-spacing:0.244347pt;}
.ws85{word-spacing:0.259619pt;}
.ws130{word-spacing:0.279981pt;}
.ws132{word-spacing:0.290162pt;}
.ws131{word-spacing:0.300343pt;}
.ws84{word-spacing:0.305434pt;}
.ws12f{word-spacing:0.315615pt;}
.ws173{word-spacing:0.325796pt;}
.ws174{word-spacing:0.361430pt;}
.ws175{word-spacing:0.371611pt;}
.wsc3{word-spacing:0.386883pt;}
.ws9e{word-spacing:0.407245pt;}
.ws9d{word-spacing:0.412335pt;}
.ws69{word-spacing:0.422516pt;}
.ws186{word-spacing:0.427607pt;}
.ws6a{word-spacing:0.442879pt;}
.wsce{word-spacing:0.458150pt;}
.wscd{word-spacing:0.468332pt;}
.wscc{word-spacing:0.488694pt;}
.ws52{word-spacing:0.493784pt;}
.ws51{word-spacing:0.529418pt;}
.ws11e{word-spacing:0.554871pt;}
.ws121{word-spacing:0.565052pt;}
.ws11f{word-spacing:0.570143pt;}
.ws120{word-spacing:0.631229pt;}
.wseb{word-spacing:0.641411pt;}
.ws188{word-spacing:0.671954pt;}
.ws187{word-spacing:0.687226pt;}
.ws13f{word-spacing:0.717769pt;}
.ws140{word-spacing:0.727950pt;}
.ws101{word-spacing:0.753403pt;}
.wsec{word-spacing:0.773765pt;}
.ws62{word-spacing:0.794127pt;}
.ws193{word-spacing:0.804308pt;}
.ws61{word-spacing:0.809399pt;}
.ws192{word-spacing:0.829761pt;}
.ws57{word-spacing:0.906120pt;}
.ws58{word-spacing:0.926482pt;}
.ws11d{word-spacing:0.931572pt;}
.ws56{word-spacing:0.936663pt;}
.ws181{word-spacing:0.951935pt;}
.ws11c{word-spacing:0.957025pt;}
.ws20d{word-spacing:0.987444pt;}
.ws20c{word-spacing:0.995639pt;}
.ws23{word-spacing:1.007931pt;}
.ws4c{word-spacing:1.023203pt;}
.ws20b{word-spacing:1.024320pt;}
.ws10c{word-spacing:1.028293pt;}
.ws21{word-spacing:1.038474pt;}
.ws10d{word-spacing:1.043565pt;}
.ws18e{word-spacing:1.048655pt;}
.ws22{word-spacing:1.063927pt;}
.wsb3{word-spacing:1.069018pt;}
.ws1fb{word-spacing:1.073487pt;}
.ws1fa{word-spacing:1.081682pt;}
.ws1f9{word-spacing:1.098071pt;}
.wsd6{word-spacing:1.221734pt;}
.ws80{word-spacing:1.237006pt;}
.ws1db{word-spacing:1.237379pt;}
.ws1dc{word-spacing:1.245573pt;}
.wsd5{word-spacing:1.247187pt;}
.ws81{word-spacing:1.252278pt;}
.ws139{word-spacing:1.262459pt;}
.ws14{word-spacing:1.272516pt;}
.ws133{word-spacing:1.313364pt;}
.ws98{word-spacing:1.333727pt;}
.ws134{word-spacing:1.354089pt;}
.ws7f{word-spacing:1.379542pt;}
.ws7d{word-spacing:1.389723pt;}
.ws21c{word-spacing:1.397172pt;}
.ws1dd{word-spacing:1.405367pt;}
.ws21b{word-spacing:1.409464pt;}
.ws7e{word-spacing:1.415176pt;}
.ws1de{word-spacing:1.417659pt;}
.ws1df{word-spacing:1.438145pt;}
.ws199{word-spacing:1.466081pt;}
.ws19a{word-spacing:1.486444pt;}
.ws219{word-spacing:1.536480pt;}
.ws21a{word-spacing:1.548772pt;}
.ws218{word-spacing:1.561064pt;}
.ws217{word-spacing:1.651204pt;}
.wsaf{word-spacing:1.674794pt;}
.ws216{word-spacing:1.683982pt;}
.ws147{word-spacing:1.690066pt;}
.wsae{word-spacing:1.710428pt;}
.ws206{word-spacing:1.778220pt;}
.wsfe{word-spacing:1.781696pt;}
.wsfd{word-spacing:1.791877pt;}
.ws207{word-spacing:1.806900pt;}
.ws1c4{word-spacing:1.807149pt;}
.ws14b{word-spacing:1.827511pt;}
.ws14a{word-spacing:1.837692pt;}
.ws14c{word-spacing:1.868236pt;}
.ws1c5{word-spacing:1.873326pt;}
.wsb6{word-spacing:1.878417pt;}
.ws1ae{word-spacing:1.893688pt;}
.wsb7{word-spacing:1.908960pt;}
.wsc2{word-spacing:1.924232pt;}
.ws1af{word-spacing:1.934413pt;}
.wsc0{word-spacing:1.944594pt;}
.wsc1{word-spacing:1.975137pt;}
.ws124{word-spacing:2.066767pt;}
.ws125{word-spacing:2.092220pt;}
.ws136{word-spacing:2.102401pt;}
.ws18{word-spacing:2.104015pt;}
.ws135{word-spacing:2.107492pt;}
.ws3c{word-spacing:2.138035pt;}
.ws1ec{word-spacing:2.138780pt;}
.ws137{word-spacing:2.143126pt;}
.ws151{word-spacing:2.148216pt;}
.ws1ee{word-spacing:2.155169pt;}
.ws10e{word-spacing:2.158397pt;}
.ws3b{word-spacing:2.163488pt;}
.ws138{word-spacing:2.168579pt;}
.ws1f0{word-spacing:2.171558pt;}
.ws3a{word-spacing:2.173669pt;}
.ws1ed{word-spacing:2.175656pt;}
.ws1f1{word-spacing:2.179753pt;}
.ws150{word-spacing:2.204212pt;}
.ws152{word-spacing:2.214394pt;}
.wsf8{word-spacing:2.250028pt;}
.wsf9{word-spacing:2.260209pt;}
.ws20a{word-spacing:2.286282pt;}
.ws209{word-spacing:2.298574pt;}
.ws1ba{word-spacing:2.300933pt;}
.ws1bb{word-spacing:2.311114pt;}
.ws208{word-spacing:2.327255pt;}
.ws1d7{word-spacing:2.343644pt;}
.ws1d6{word-spacing:2.347741pt;}
.ws71{word-spacing:2.423107pt;}
.ws70{word-spacing:2.433288pt;}
.ws8b{word-spacing:2.443469pt;}
.wse7{word-spacing:2.479103pt;}
.ws8c{word-spacing:2.484193pt;}
.wse8{word-spacing:2.514737pt;}
.ws163{word-spacing:2.550371pt;}
.ws164{word-spacing:2.555461pt;}
.wse4{word-spacing:2.586004pt;}
.wse5{word-spacing:2.611457pt;}
.ws14d{word-spacing:2.626729pt;}
.ws14e{word-spacing:2.667453pt;}
.ws169{word-spacing:2.738721pt;}
.ws5b{word-spacing:2.743812pt;}
.ws8d{word-spacing:2.759084pt;}
.ws5c{word-spacing:2.764174pt;}
.ws16a{word-spacing:2.769265pt;}
.ws5a{word-spacing:2.784536pt;}
.ws12b{word-spacing:2.835442pt;}
.ws12c{word-spacing:2.850714pt;}
.ws142{word-spacing:2.855804pt;}
.ws141{word-spacing:2.871076pt;}
.ws12a{word-spacing:2.886348pt;}
.ws36{word-spacing:2.906710pt;}
.ws37{word-spacing:2.911800pt;}
.ws201{word-spacing:2.933652pt;}
.ws202{word-spacing:2.937750pt;}
.ws200{word-spacing:2.945944pt;}
.ws1ff{word-spacing:2.954139pt;}
.ws41{word-spacing:2.962706pt;}
.ws40{word-spacing:2.972887pt;}
.ws145{word-spacing:2.998340pt;}
.ws12e{word-spacing:3.008521pt;}
.ws146{word-spacing:3.018702pt;}
.ws12d{word-spacing:3.023793pt;}
.ws212{word-spacing:3.027890pt;}
.ws211{word-spacing:3.048376pt;}
.ws14f{word-spacing:3.064517pt;}
.ws213{word-spacing:3.064765pt;}
.ws15{word-spacing:3.073332pt;}
.ws1b3{word-spacing:3.079789pt;}
.ws176{word-spacing:3.089970pt;}
.ws47{word-spacing:3.095060pt;}
.ws1b2{word-spacing:3.100151pt;}
.ws46{word-spacing:3.120513pt;}
.ws1c6{word-spacing:3.135785pt;}
.ws4a{word-spacing:3.156147pt;}
.ws4b{word-spacing:3.181600pt;}
.wsab{word-spacing:3.191781pt;}
.ws1f7{word-spacing:3.224559pt;}
.ws96{word-spacing:3.237596pt;}
.ws95{word-spacing:3.247777pt;}
.wsaa{word-spacing:3.252868pt;}
.ws1f6{word-spacing:3.257338pt;}
.ws97{word-spacing:3.268140pt;}
.ws1f8{word-spacing:3.384353pt;}
.ws156{word-spacing:3.415766pt;}
.ws155{word-spacing:3.425947pt;}
.ws1aa{word-spacing:3.446309pt;}
.ws1ab{word-spacing:3.471762pt;}
.wsa8{word-spacing:3.476852pt;}
.wsa7{word-spacing:3.487034pt;}
.ws72{word-spacing:3.532849pt;}
.ws194{word-spacing:3.537939pt;}
.wsf7{word-spacing:3.548120pt;}
.ws195{word-spacing:3.558301pt;}
.ws73{word-spacing:3.563392pt;}
.wsf6{word-spacing:3.578664pt;}
.ws15d{word-spacing:3.599026pt;}
.ws104{word-spacing:3.604116pt;}
.ws15c{word-spacing:3.619388pt;}
.ws154{word-spacing:3.665203pt;}
.ws153{word-spacing:3.695747pt;}
.ws157{word-spacing:3.700837pt;}
.ws162{word-spacing:3.705928pt;}
.ws17b{word-spacing:3.716109pt;}
.ws161{word-spacing:3.721199pt;}
.ws180{word-spacing:3.726290pt;}
.ws17a{word-spacing:3.731380pt;}
.ws114{word-spacing:3.761924pt;}
.ws115{word-spacing:3.767014pt;}
.ws116{word-spacing:3.772105pt;}
.wsf3{word-spacing:3.777196pt;}
.ws1ac{word-spacing:3.802648pt;}
.ws1a1{word-spacing:3.807739pt;}
.wsf2{word-spacing:3.812829pt;}
.ws1a0{word-spacing:3.823011pt;}
.ws2e{word-spacing:3.873916pt;}
.ws148{word-spacing:3.879007pt;}
.ws149{word-spacing:3.884097pt;}
.ws2d{word-spacing:3.889188pt;}
.ws16{word-spacing:3.978335pt;}
.ws35{word-spacing:3.980818pt;}
.ws17{word-spacing:4.001304pt;}
.ws33{word-spacing:4.021542pt;}
.ws1a6{word-spacing:4.036814pt;}
.ws99{word-spacing:4.046995pt;}
.ws34{word-spacing:4.052086pt;}
.ws167{word-spacing:4.067357pt;}
.ws1fe{word-spacing:4.068599pt;}
.ws168{word-spacing:4.072448pt;}
.ws126{word-spacing:4.077539pt;}
.ws1fd{word-spacing:4.101377pt;}
.ws1fc{word-spacing:4.113669pt;}
.wsde{word-spacing:4.128444pt;}
.ws127{word-spacing:4.133535pt;}
.ws9f{word-spacing:4.148806pt;}
.wsa0{word-spacing:4.153897pt;}
.wsdd{word-spacing:4.174259pt;}
.ws196{word-spacing:4.184440pt;}
.ws197{word-spacing:4.199712pt;}
.wsfa{word-spacing:4.265889pt;}
.ws16e{word-spacing:4.281161pt;}
.ws16f{word-spacing:4.291342pt;}
.wsfc{word-spacing:4.306614pt;}
.ws21e{word-spacing:4.322630pt;}
.wsfb{word-spacing:4.326976pt;}
.ws21d{word-spacing:4.351311pt;}
.ws89{word-spacing:4.398244pt;}
.ws87{word-spacing:4.418606pt;}
.ws21f{word-spacing:4.437354pt;}
.ws88{word-spacing:4.444059pt;}
.wse6{word-spacing:4.469512pt;}
.ws1e7{word-spacing:4.486522pt;}
.ws86{word-spacing:4.494964pt;}
.ws1e8{word-spacing:4.498813pt;}
.ws1e6{word-spacing:4.515203pt;}
.wsef{word-spacing:4.550961pt;}
.wsee{word-spacing:4.566232pt;}
.ws172{word-spacing:4.571323pt;}
.ws171{word-spacing:4.591685pt;}
.ws128{word-spacing:4.596776pt;}
.wsf0{word-spacing:4.617138pt;}
.wsd1{word-spacing:4.622228pt;}
.ws129{word-spacing:4.627319pt;}
.wsf1{word-spacing:4.632410pt;}
.ws1e2{word-spacing:4.658607pt;}
.wscf{word-spacing:4.678225pt;}
.ws1e3{word-spacing:4.691386pt;}
.wsd0{word-spacing:4.708768pt;}
.ws8a{word-spacing:4.780036pt;}
.ws4d{word-spacing:4.785126pt;}
.ws13e{word-spacing:4.790217pt;}
.ws4e{word-spacing:4.800398pt;}
.ws19b{word-spacing:4.907300pt;}
.ws19c{word-spacing:4.917481pt;}
.ws64{word-spacing:4.958205pt;}
.ws1b8{word-spacing:4.963296pt;}
.ws1b9{word-spacing:4.978568pt;}
.ws63{word-spacing:5.004020pt;}
.ws1a4{word-spacing:5.238186pt;}
.ws1a5{word-spacing:5.243277pt;}
.ws1a3{word-spacing:5.253458pt;}
.ws5d{word-spacing:5.411265pt;}
.ws5e{word-spacing:5.426537pt;}
.ws5f{word-spacing:5.441809pt;}
.ws92{word-spacing:5.446899pt;}
.wsbc{word-spacing:5.457080pt;}
.wsbb{word-spacing:5.467261pt;}
.ws11a{word-spacing:5.563982pt;}
.ws119{word-spacing:5.584344pt;}
.wsa2{word-spacing:5.767604pt;}
.ws27{word-spacing:5.823601pt;}
.ws198{word-spacing:5.828691pt;}
.ws28{word-spacing:5.833782pt;}
.ws1b6{word-spacing:5.884687pt;}
.ws1b7{word-spacing:5.899959pt;}
.ws1ad{word-spacing:5.905050pt;}
.ws106{word-spacing:5.915231pt;}
.ws105{word-spacing:5.920321pt;}
.ws1d5{word-spacing:5.977932pt;}
.ws1d4{word-spacing:6.010710pt;}
.ws1e1{word-spacing:6.043488pt;}
.ws1e0{word-spacing:6.047585pt;}
.ws38{word-spacing:6.113763pt;}
.ws39{word-spacing:6.118853pt;}
.ws9c{word-spacing:6.123944pt;}
.ws159{word-spacing:6.149396pt;}
.ws18f{word-spacing:6.159578pt;}
.ws93{word-spacing:6.179940pt;}
.ws158{word-spacing:6.195212pt;}
.ws26{word-spacing:6.225755pt;}
.ws24{word-spacing:6.230845pt;}
.ws25{word-spacing:6.241027pt;}
.ws20f{word-spacing:6.264741pt;}
.ws20e{word-spacing:6.268838pt;}
.ws210{word-spacing:6.272936pt;}
.wsa4{word-spacing:6.327566pt;}
.wsa3{word-spacing:6.337747pt;}
.ws112{word-spacing:6.388653pt;}
.ws144{word-spacing:6.393743pt;}
.ws113{word-spacing:6.434468pt;}
.ws111{word-spacing:6.454830pt;}
.ws143{word-spacing:6.459921pt;}
.ws65{word-spacing:6.470102pt;}
.ws66{word-spacing:6.500645pt;}
.ws1b5{word-spacing:6.510826pt;}
.ws215{word-spacing:6.518772pt;}
.ws1b4{word-spacing:6.526098pt;}
.ws214{word-spacing:6.526967pt;}
.wse9{word-spacing:6.648271pt;}
.wsea{word-spacing:6.663543pt;}
.ws204{word-spacing:6.699053pt;}
.ws205{word-spacing:6.707247pt;}
.ws203{word-spacing:6.719539pt;}
.ws17c{word-spacing:6.729720pt;}
.ws17f{word-spacing:6.887528pt;}
.ws17e{word-spacing:6.918071pt;}
.ws17d{word-spacing:6.923162pt;}
.ws90{word-spacing:7.060607pt;}
.ws91{word-spacing:7.091150pt;}
.ws13c{word-spacing:7.325316pt;}
.ws53{word-spacing:7.513667pt;}
.ws54{word-spacing:7.523848pt;}
.ws7b{word-spacing:7.590025pt;}
.ws7c{word-spacing:7.600206pt;}
.wsad{word-spacing:7.686746pt;}
.wsac{word-spacing:7.707108pt;}
.ws78{word-spacing:7.798738pt;}
.ws79{word-spacing:7.814010pt;}
.ws7a{word-spacing:7.819100pt;}
.ws1c3{word-spacing:7.829281pt;}
.ws1c2{word-spacing:7.839462pt;}
.wsb2{word-spacing:7.926002pt;}
.ws16b{word-spacing:7.951455pt;}
.wsb1{word-spacing:7.987089pt;}
.wse2{word-spacing:8.200892pt;}
.ws1a7{word-spacing:8.236526pt;}
.ws1a9{word-spacing:8.251798pt;}
.ws1a8{word-spacing:8.272160pt;}
.ws1f{word-spacing:8.613228pt;}
.ws20{word-spacing:8.618318pt;}
.wsca{word-spacing:8.735401pt;}
.ws18a{word-spacing:8.745582pt;}
.wscb{word-spacing:8.771035pt;}
.ws1d2{word-spacing:8.809152pt;}
.ws1d1{word-spacing:8.821444pt;}
.wsb5{word-spacing:8.832122pt;}
.ws1d3{word-spacing:8.833736pt;}
.wsb4{word-spacing:8.842303pt;}
.wse0{word-spacing:8.847393pt;}
.wsdf{word-spacing:8.857574pt;}
.ws107{word-spacing:8.883027pt;}
.ws108{word-spacing:8.888118pt;}
.ws102{word-spacing:8.918661pt;}
.ws103{word-spacing:8.928842pt;}
.ws10a{word-spacing:9.259729pt;}
.ws1e9{word-spacing:9.263950pt;}
.ws1ea{word-spacing:9.268047pt;}
.ws1eb{word-spacing:9.280339pt;}
.ws109{word-spacing:9.290272pt;}
.ws8e{word-spacing:9.315725pt;}
.ws8f{word-spacing:9.341178pt;}
.ws190{word-spacing:9.768785pt;}
.ws191{word-spacing:9.799328pt;}
.ws77{word-spacing:9.809509pt;}
.ws45{word-spacing:9.946954pt;}
.ws44{word-spacing:9.972407pt;}
.wsd4{word-spacing:10.145486pt;}
.ws59{word-spacing:10.318565pt;}
.ws1f5{word-spacing:10.337437pt;}
.ws1f4{word-spacing:10.349729pt;}
.wsb8{word-spacing:10.461101pt;}
.ws123{word-spacing:10.476372pt;}
.ws122{word-spacing:10.481463pt;}
.wsb9{word-spacing:10.496735pt;}
.ws76{word-spacing:10.542550pt;}
.ws75{word-spacing:10.552731pt;}
.ws13a{word-spacing:10.751263pt;}
.ws13b{word-spacing:10.756353pt;}
.wsd2{word-spacing:11.005791pt;}
.wsd3{word-spacing:11.026153pt;}
.ws165{word-spacing:11.092330pt;}
.ws166{word-spacing:11.112692pt;}
.ws18b{word-spacing:11.433398pt;}
.wsf4{word-spacing:11.677745pt;}
.wsf5{word-spacing:11.698107pt;}
.wse3{word-spacing:11.799918pt;}
.ws67{word-spacing:12.181710pt;}
.ws68{word-spacing:12.186801pt;}
.ws1e4{word-spacing:12.197603pt;}
.ws1e5{word-spacing:12.201700pt;}
.ws1b1{word-spacing:12.385332pt;}
.ws1b0{word-spacing:12.395514pt;}
.wsba{word-spacing:12.476963pt;}
.wsa6{word-spacing:12.629679pt;}
.wsa5{word-spacing:12.655132pt;}
.ws178{word-spacing:12.970747pt;}
.ws177{word-spacing:12.991109pt;}
.ws179{word-spacing:13.052196pt;}
.ws16c{word-spacing:13.377992pt;}
.ws16d{word-spacing:13.403444pt;}
.ws42{word-spacing:13.663063pt;}
.ws43{word-spacing:13.683425pt;}
.wsd9{word-spacing:13.708878pt;}
.wsda{word-spacing:13.719059pt;}
.ws30{word-spacing:13.815780pt;}
.ws2f{word-spacing:13.831052pt;}
.wsa9{word-spacing:13.881957pt;}
.ws100{word-spacing:14.258659pt;}
.wsff{word-spacing:14.299383pt;}
.ws18c{word-spacing:14.625179pt;}
.ws18d{word-spacing:14.640451pt;}
.ws19f{word-spacing:15.220774pt;}
.ws19e{word-spacing:15.225865pt;}
.ws19d{word-spacing:15.251318pt;}
.ws3d{word-spacing:16.081079pt;}
.wsc8{word-spacing:16.218524pt;}
.wsc9{word-spacing:16.249068pt;}
.wsc7{word-spacing:16.259249pt;}
.ws118{word-spacing:20.112803pt;}
.ws117{word-spacing:20.122984pt;}
.ws15f{word-spacing:33.273763pt;}
.ws1bd{word-spacing:242.193251pt;}
.ws1d0{word-spacing:288.134051pt;}
.ws183{word-spacing:315.544124pt;}
.ws182{word-spacing:401.377955pt;}
.ws15e{word-spacing:494.983209pt;}
.ws1cf{word-spacing:547.803531pt;}
.ws1bc{word-spacing:547.805131pt;}
.ws160{word-spacing:642.790474pt;}
._6{margin-left:-10.666667pt;}
._2{margin-left:-5.213867pt;}
._3{margin-left:-2.446400pt;}
._0{margin-left:-1.493333pt;}
._4{width:1.107135pt;}
._8{width:2.485050pt;}
._9{width:5.701427pt;}
._1{width:10.666667pt;}
._a{width:69.043265pt;}
._7{width:73.245173pt;}
._b{width:84.701828pt;}
._c{width:100.976348pt;}
._e{width:412.534016pt;}
._d{width:451.132132pt;}
._11{width:454.889958pt;}
._10{width:487.120901pt;}
._5{width:649.770667pt;}
._f{width:961.691213pt;}
.fs8{font-size:24.832000pt;}
.fsc{font-size:33.523200pt;}
.fsf{font-size:38.886400pt;}
.fse{font-size:38.972267pt;}
.fs9{font-size:40.972800pt;}
.fs0{font-size:42.666667pt;}
.fs7{font-size:43.456000pt;}
.fsa{font-size:45.939200pt;}
.fs1{font-size:48.000000pt;}
.fsb{font-size:50.905600pt;}
.fs5{font-size:53.388800pt;}
.fsd{font-size:55.872000pt;}
.fs3{font-size:62.080000pt;}
.fs6{font-size:67.046400pt;}
.fs4{font-size:81.945600pt;}
.fs2{font-size:88.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:26.067333pt;}
.y4{bottom:39.396400pt;}
.y3{bottom:52.729733pt;}
.y2{bottom:66.063067pt;}
.y1c3{bottom:116.981893pt;}
.y187{bottom:117.175570pt;}
.yd2{bottom:120.932944pt;}
.y8d{bottom:121.433807pt;}
.y3d{bottom:122.204043pt;}
.y101{bottom:122.876857pt;}
.y243{bottom:124.281186pt;}
.y1c2{bottom:129.707052pt;}
.y1c8{bottom:129.718537pt;}
.y150{bottom:129.849718pt;}
.y28b{bottom:130.911853pt;}
.y186{bottom:132.689052pt;}
.y8c{bottom:136.947289pt;}
.y239{bottom:136.994860pt;}
.y242{bottom:137.006345pt;}
.y1cc{bottom:137.482261pt;}
.y3c{bottom:137.717524pt;}
.y65{bottom:137.865481pt;}
.y100{bottom:138.390338pt;}
.y12f{bottom:139.888357pt;}
.y1c7{bottom:142.753785pt;}
.y1c1{bottom:143.362479pt;}
.y28a{bottom:143.633907pt;}
.yd1{bottom:144.215738pt;}
.y14f{bottom:145.369718pt;}
.y185{bottom:148.417951pt;}
.y238{bottom:149.720018pt;}
.y241{bottom:149.731503pt;}
.y1cb{bottom:152.378047pt;}
.y8b{bottom:152.460770pt;}
.y3b{bottom:153.231006pt;}
.y64{bottom:153.378962pt;}
.yff{bottom:153.903820pt;}
.y12e{bottom:155.401839pt;}
.y1c6{bottom:155.478943pt;}
.y1c0{bottom:156.087637pt;}
.y289{bottom:156.673501pt;}
.y14e{bottom:160.883200pt;}
.y237{bottom:163.065356pt;}
.y240{bottom:163.076841pt;}
.y184{bottom:163.931433pt;}
.y1ca{bottom:166.343564pt;}
.y8a{bottom:167.974252pt;}
.y1c5{bottom:168.204101pt;}
.y3a{bottom:168.744487pt;}
.y1bf{bottom:168.812796pt;}
.y63{bottom:168.892444pt;}
.y288{bottom:169.713094pt;}
.y12d{bottom:170.915321pt;}
.y236{bottom:175.790514pt;}
.y23f{bottom:175.801999pt;}
.y14d{bottom:176.403200pt;}
.y183{bottom:179.444914pt;}
.y1c9{bottom:180.619170pt;}
.y1c4{bottom:181.549439pt;}
.y1be{bottom:182.158133pt;}
.y287{bottom:182.435149pt;}
.y89{bottom:183.487733pt;}
.y62{bottom:184.405925pt;}
.yfe{bottom:184.943509pt;}
.y12c{bottom:186.428802pt;}
.y23e{bottom:188.837247pt;}
.y235{bottom:189.445941pt;}
.y14c{bottom:192.854400pt;}
.y182{bottom:194.958396pt;}
.y286{bottom:195.474742pt;}
.y1b4{bottom:195.517749pt;}
.y39{bottom:199.784177pt;}
.y61{bottom:199.919407pt;}
.y12b{bottom:201.942284pt;}
.y23d{bottom:202.182585pt;}
.y247{bottom:202.194069pt;}
.y234{bottom:202.791279pt;}
.yb7{bottom:204.757407pt;}
.y14b{bottom:207.753600pt;}
.y285{bottom:208.514336pt;}
.y1b3{bottom:208.552997pt;}
.y181{bottom:210.471877pt;}
.y21{bottom:210.990006pt;}
.y88{bottom:213.906933pt;}
.y23c{bottom:214.907743pt;}
.y246{bottom:214.919228pt;}
.y60{bottom:215.432889pt;}
.y233{bottom:215.516437pt;}
.yfd{bottom:215.983199pt;}
.y12a{bottom:217.455765pt;}
.yb6{bottom:220.270889pt;}
.y284{bottom:221.236390pt;}
.y1b2{bottom:221.278156pt;}
.y14a{bottom:222.652800pt;}
.y20{bottom:224.029600pt;}
.y180{bottom:225.985359pt;}
.y232{bottom:228.241596pt;}
.y23b{bottom:228.253081pt;}
.y245{bottom:228.264565pt;}
.y38{bottom:230.823867pt;}
.y5f{bottom:230.946370pt;}
.yfc{bottom:231.496681pt;}
.y1b1{bottom:234.003314pt;}
.y283{bottom:234.275984pt;}
.yb5{bottom:235.784370pt;}
.y87{bottom:237.186933pt;}
.y1f{bottom:237.376800pt;}
.y149{bottom:237.552000pt;}
.y23a{bottom:240.978239pt;}
.y244{bottom:240.989724pt;}
.y17f{bottom:241.498841pt;}
.y231{bottom:241.586933pt;}
.y5e{bottom:246.459852pt;}
.yfb{bottom:247.010162pt;}
.y282{bottom:247.315578pt;}
.y1b0{bottom:247.348652pt;}
.y1b9{bottom:247.360137pt;}
.y129{bottom:248.495455pt;}
.yb4{bottom:251.297852pt;}
.y148{bottom:252.140933pt;}
.y225{bottom:255.253402pt;}
.y1bd{bottom:255.744041pt;}
.y230{bottom:256.516730pt;}
.y17e{bottom:257.012322pt;}
.y281{bottom:260.037632pt;}
.y1af{bottom:260.073810pt;}
.y1b8{bottom:260.085295pt;}
.y37{bottom:260.935460pt;}
.y5d{bottom:262.044902pt;}
.yfa{bottom:262.523644pt;}
.y1e{bottom:264.692000pt;}
.yb3{bottom:266.825301pt;}
.y147{bottom:267.040000pt;}
.y224{bottom:268.598739pt;}
.y22a{bottom:268.610224pt;}
.y22f{bottom:269.241888pt;}
.y1bc{bottom:270.019647pt;}
.y17d{bottom:272.525804pt;}
.y280{bottom:273.077226pt;}
.y1ae{bottom:273.729237pt;}
.y1b7{bottom:273.740722pt;}
.y5c{bottom:277.558384pt;}
.yf9{bottom:278.037125pt;}
.y128{bottom:279.535145pt;}
.y146{bottom:281.939200pt;}
.y223{bottom:281.944077pt;}
.y229{bottom:281.955562pt;}
.y22e{bottom:281.967046pt;}
.yb2{bottom:282.338783pt;}
.y1bb{bottom:283.985164pt;}
.y27f{bottom:286.116819pt;}
.y1b6{bottom:286.465881pt;}
.y1ad{bottom:287.074575pt;}
.y17c{bottom:288.039285pt;}
.y36{bottom:288.868667pt;}
.y1d{bottom:292.652699pt;}
.y5b{bottom:293.071866pt;}
.yf8{bottom:293.550607pt;}
.y222{bottom:294.669235pt;}
.y228{bottom:294.680720pt;}
.y22d{bottom:295.312384pt;}
.y145{bottom:296.838400pt;}
.yb1{bottom:297.852265pt;}
.y1ba{bottom:298.260770pt;}
.y27e{bottom:298.838874pt;}
.y1b5{bottom:299.191039pt;}
.y1ac{bottom:299.799733pt;}
.y127{bottom:302.811730pt;}
.y17b{bottom:303.552767pt;}
.y221{bottom:308.014573pt;}
.y227{bottom:308.026058pt;}
.y22c{bottom:308.037542pt;}
.y1c{bottom:308.166180pt;}
.y5a{bottom:308.585347pt;}
.yf7{bottom:309.064089pt;}
.y27d{bottom:311.878467pt;}
.y35{bottom:312.148667pt;}
.y1ab{bottom:313.767733pt;}
.y144{bottom:316.083200pt;}
.y126{bottom:318.325212pt;}
.y17a{bottom:319.066249pt;}
.y226{bottom:321.061306pt;}
.y22b{bottom:321.072790pt;}
.y220{bottom:321.670000pt;}
.y1b{bottom:323.679662pt;}
.y59{bottom:324.098829pt;}
.yf6{bottom:324.577570pt;}
.y27c{bottom:324.918061pt;}
.yb0{bottom:328.891954pt;}
.y125{bottom:334.156853pt;}
.y179{bottom:334.579730pt;}
.y21f{bottom:335.327600pt;}
.y1aa{bottom:336.044521pt;}
.y27b{bottom:337.640115pt;}
.y1a{bottom:339.193143pt;}
.y58{bottom:339.612310pt;}
.yf5{bottom:340.091052pt;}
.y143{bottom:342.493274pt;}
.y178{bottom:350.093212pt;}
.y27a{bottom:350.679709pt;}
.yd0{bottom:350.944000pt;}
.y124{bottom:353.399170pt;}
.y57{bottom:355.125792pt;}
.yf4{bottom:355.604533pt;}
.y21e{bottom:357.679504pt;}
.y142{bottom:358.006755pt;}
.yaf{bottom:359.931644pt;}
.y279{bottom:363.719302pt;}
.y177{bottom:365.606693pt;}
.ycf{bottom:366.477170pt;}
.y1a9{bottom:367.084210pt;}
.y123{bottom:368.912652pt;}
.y19{bottom:370.538267pt;}
.y56{bottom:370.639274pt;}
.y21d{bottom:373.192986pt;}
.y141{bottom:373.520237pt;}
.y278{bottom:376.441357pt;}
.yf3{bottom:378.884533pt;}
.y176{bottom:381.120175pt;}
.yce{bottom:381.990652pt;}
.y122{bottom:384.627583pt;}
.y55{bottom:386.152755pt;}
.y21c{bottom:388.095600pt;}
.y140{bottom:389.033718pt;}
.y277{bottom:389.480950pt;}
.yae{bottom:390.971333pt;}
.yf2{bottom:394.596361pt;}
.y175{bottom:396.633657pt;}
.ycd{bottom:397.513933pt;}
.y1a8{bottom:398.123900pt;}
.y121{bottom:400.141065pt;}
.y54{bottom:401.666237pt;}
.y276{bottom:402.520544pt;}
.y218{bottom:403.621808pt;}
.y13f{bottom:404.560237pt;}
.yad{bottom:406.487919pt;}
.yf1{bottom:410.109842pt;}
.y174{bottom:412.147138pt;}
.y1a7{bottom:413.026514pt;}
.y18{bottom:414.304800pt;}
.y275{bottom:415.242598pt;}
.y120{bottom:415.654546pt;}
.y217{bottom:416.346966pt;}
.y53{bottom:417.179718pt;}
.y13e{bottom:420.073718pt;}
.ycc{bottom:420.790518pt;}
.yac{bottom:421.390533pt;}
.yf0{bottom:425.623324pt;}
.y173{bottom:427.660620pt;}
.y1a6{bottom:427.929129pt;}
.y274{bottom:428.282192pt;}
.y216{bottom:429.692304pt;}
.y11f{bottom:431.168028pt;}
.y52{bottom:432.693200pt;}
.y24{bottom:434.787333pt;}
.y13d{bottom:435.587200pt;}
.ycb{bottom:436.370869pt;}
.yab{bottom:436.907119pt;}
.yef{bottom:441.136805pt;}
.y273{bottom:441.321786pt;}
.y17{bottom:442.243283pt;}
.y215{bottom:442.417462pt;}
.y21a{bottom:442.428947pt;}
.y1a5{bottom:442.831743pt;}
.y172{bottom:443.174101pt;}
.y11e{bottom:446.681509pt;}
.y23{bottom:448.120667pt;}
.ya9{bottom:451.809733pt;}
.yca{bottom:451.884351pt;}
.y272{bottom:454.043840pt;}
.y21b{bottom:454.844016pt;}
.y219{bottom:455.154106pt;}
.y214{bottom:455.762800pt;}
.y51{bottom:455.973510pt;}
.y16{bottom:456.208800pt;}
.yee{bottom:456.650287pt;}
.y1a4{bottom:457.734357pt;}
.y171{bottom:458.687583pt;}
.y22{bottom:461.454000pt;}
.y11d{bottom:462.194991pt;}
.y13c{bottom:466.321146pt;}
.yaa{bottom:466.712348pt;}
.y271{bottom:467.083434pt;}
.yc9{bottom:467.397833pt;}
.y86{bottom:469.055867pt;}
.y207{bottom:469.432018pt;}
.y15{bottom:470.487200pt;}
.yed{bottom:472.163769pt;}
.y1a3{bottom:472.318812pt;}
.y170{bottom:474.201065pt;}
.y11c{bottom:477.708473pt;}
.y13b{bottom:479.043200pt;}
.y270{bottom:480.123027pt;}
.y206{bottom:482.157177pt;}
.ya8{bottom:482.220863pt;}
.yc8{bottom:482.911314pt;}
.y85{bottom:484.706235pt;}
.y14{bottom:485.400058pt;}
.y50{bottom:487.013200pt;}
.y1a2{bottom:487.221426pt;}
.y213{bottom:487.463154pt;}
.yec{bottom:487.677250pt;}
.ya7{bottom:489.678533pt;}
.y16f{bottom:489.714546pt;}
.y26f{bottom:492.845082pt;}
.y11b{bottom:493.221954pt;}
.y205{bottom:495.502514pt;}
.y20d{bottom:495.513999pt;}
.yc7{bottom:498.742956pt;}
.y13{bottom:499.675664pt;}
.y84{bottom:500.219716pt;}
.y212{bottom:501.738761pt;}
.y1a1{bottom:502.124041pt;}
.y13a{bottom:502.323200pt;}
.yeb{bottom:503.190732pt;}
.y16e{bottom:505.228028pt;}
.y26e{bottom:505.884675pt;}
.y204{bottom:508.227673pt;}
.y20c{bottom:508.239157pt;}
.ya6{bottom:512.640063pt;}
.y12{bottom:513.951270pt;}
.y83{bottom:515.733198pt;}
.y11a{bottom:516.498540pt;}
.y211{bottom:516.634546pt;}
.y1a0{bottom:517.026655pt;}
.y4f{bottom:517.441712pt;}
.yc6{bottom:517.985273pt;}
.yea{bottom:518.704213pt;}
.y26d{bottom:518.924269pt;}
.ya5{bottom:520.097733pt;}
.y16d{bottom:520.741509pt;}
.y20b{bottom:520.964316pt;}
.y203{bottom:521.573010pt;}
.y11{bottom:528.226877pt;}
.y4e{bottom:529.231635pt;}
.y210{bottom:530.600063pt;}
.y82{bottom:531.246679pt;}
.y26c{bottom:531.646323pt;}
.y19f{bottom:531.929269pt;}
.y119{bottom:532.012021pt;}
.yc5{bottom:533.498754pt;}
.ye9{bottom:534.217695pt;}
.y20a{bottom:534.619743pt;}
.y202{bottom:535.228437pt;}
.y16c{bottom:536.254991pt;}
.y4d{bottom:538.850000pt;}
.y10{bottom:542.192394pt;}
.ya4{bottom:543.059263pt;}
.y26b{bottom:544.685917pt;}
.y20f{bottom:545.495849pt;}
.y81{bottom:546.760161pt;}
.y19e{bottom:546.831884pt;}
.y209{bottom:547.344901pt;}
.y118{bottom:547.525503pt;}
.y201{bottom:547.953596pt;}
.yc4{bottom:549.012236pt;}
.ye8{bottom:549.731177pt;}
.ya3{bottom:550.516933pt;}
.y16b{bottom:551.768473pt;}
.yf{bottom:556.468000pt;}
.y26a{bottom:557.725510pt;}
.y66{bottom:557.780000pt;}
.y68{bottom:559.051733pt;}
.y20e{bottom:559.771455pt;}
.y208{bottom:560.690239pt;}
.y200{bottom:561.298933pt;}
.y19d{bottom:561.734498pt;}
.y80{bottom:562.273643pt;}
.y117{bottom:563.038985pt;}
.yc3{bottom:564.525717pt;}
.ye7{bottom:565.244658pt;}
.y16a{bottom:567.281954pt;}
.y269{bottom:570.447565pt;}
.ya2{bottom:573.483119pt;}
.y1f5{bottom:574.655002pt;}
.y19c{bottom:576.637113pt;}
.y7f{bottom:577.787124pt;}
.y116{bottom:578.552466pt;}
.yc2{bottom:580.039199pt;}
.ye6{bottom:580.758140pt;}
.y1ff{bottom:582.120122pt;}
.y169{bottom:582.795436pt;}
.y268{bottom:583.487158pt;}
.ye{bottom:585.024800pt;}
.y1f4{bottom:588.310429pt;}
.y1fa{bottom:588.321914pt;}
.ya0{bottom:588.385733pt;}
.y19b{bottom:591.539727pt;}
.y7e{bottom:593.300606pt;}
.y115{bottom:594.065948pt;}
.yc1{bottom:595.552681pt;}
.ye5{bottom:596.271621pt;}
.y1fe{bottom:596.395728pt;}
.y267{bottom:596.526752pt;}
.y168{bottom:598.308917pt;}
.y1f9{bottom:601.047072pt;}
.y1f3{bottom:601.655766pt;}
.ya1{bottom:603.288348pt;}
.y19a{bottom:606.442341pt;}
.y7d{bottom:608.814087pt;}
.y266{bottom:609.248806pt;}
.y114{bottom:609.579429pt;}
.y1fd{bottom:610.671334pt;}
.yc0{bottom:611.066162pt;}
.ye4{bottom:611.785103pt;}
.y167{bottom:613.822399pt;}
.y1f2{bottom:614.380925pt;}
.y1f8{bottom:614.392410pt;}
.y9f{bottom:618.809589pt;}
.y199{bottom:621.344956pt;}
.y265{bottom:622.288400pt;}
.y7c{bottom:624.327569pt;}
.y113{bottom:625.092911pt;}
.y1fc{bottom:625.567120pt;}
.y9e{bottom:626.254533pt;}
.ybf{bottom:626.579644pt;}
.ye3{bottom:627.298585pt;}
.y1f1{bottom:627.726262pt;}
.y1f7{bottom:627.737747pt;}
.y166{bottom:629.335881pt;}
.y198{bottom:636.247570pt;}
.y1fb{bottom:639.532637pt;}
.y7b{bottom:639.841051pt;}
.y1f6{bottom:640.462906pt;}
.y112{bottom:640.606393pt;}
.y1f0{bottom:641.071600pt;}
.yd{bottom:642.759200pt;}
.ye2{bottom:642.812066pt;}
.y165{bottom:644.849362pt;}
.y9d{bottom:648.910319pt;}
.y197{bottom:650.832025pt;}
.y264{bottom:651.155910pt;}
.y1ed{bottom:654.747647pt;}
.y7a{bottom:655.354532pt;}
.y1e8{bottom:655.356341pt;}
.yc{bottom:655.796000pt;}
.y111{bottom:656.119874pt;}
.ybe{bottom:657.639066pt;}
.ye1{bottom:658.325548pt;}
.y164{bottom:660.362844pt;}
.y67{bottom:661.027277pt;}
.y69{bottom:661.660533pt;}
.y6a{bottom:663.638419pt;}
.y9b{bottom:663.812933pt;}
.y29e{bottom:664.811484pt;}
.y196{bottom:665.734639pt;}
.y1ec{bottom:667.472805pt;}
.y1e7{bottom:668.081500pt;}
.y79{bottom:670.868014pt;}
.y110{bottom:671.633356pt;}
.ye0{bottom:673.839029pt;}
.yb{bottom:675.661600pt;}
.y29d{bottom:677.851077pt;}
.y34{bottom:677.865051pt;}
.y9c{bottom:678.715548pt;}
.y195{bottom:680.637253pt;}
.y1eb{bottom:680.818143pt;}
.y1e6{bottom:681.426837pt;}
.y263{bottom:682.195600pt;}
.y78{bottom:686.381495pt;}
.y10f{bottom:687.146837pt;}
.ybd{bottom:688.678755pt;}
.ydf{bottom:689.352511pt;}
.y29c{bottom:690.890671pt;}
.y163{bottom:691.402533pt;}
.y1ef{bottom:691.992853pt;}
.y4c{bottom:693.203673pt;}
.y33{bottom:693.378532pt;}
.y1e5{bottom:694.151996pt;}
.y1ea{bottom:694.163481pt;}
.y9a{bottom:694.232133pt;}
.y194{bottom:695.539868pt;}
.y77{bottom:701.894977pt;}
.y29b{bottom:703.612725pt;}
.ybc{bottom:704.192237pt;}
.yde{bottom:704.865993pt;}
.y1ee{bottom:705.958370pt;}
.y10e{bottom:706.389154pt;}
.y1e9{bottom:706.888639pt;}
.y1e4{bottom:707.497333pt;}
.y4b{bottom:708.717154pt;}
.y32{bottom:708.892014pt;}
.y193{bottom:710.442482pt;}
.ya{bottom:711.981504pt;}
.y262{bottom:712.304400pt;}
.y99{bottom:714.408133pt;}
.y29a{bottom:716.652319pt;}
.y76{bottom:717.408459pt;}
.ybb{bottom:719.705718pt;}
.ydd{bottom:720.379474pt;}
.y1da{bottom:721.167660pt;}
.y10d{bottom:721.902636pt;}
.y15c{bottom:722.762689pt;}
.y4a{bottom:724.230636pt;}
.y31{bottom:724.405495pt;}
.y192{bottom:725.345097pt;}
.y25e{bottom:725.660735pt;}
.y299{bottom:729.691913pt;}
.y75{bottom:732.921940pt;}
.y1d9{bottom:733.892818pt;}
.yba{bottom:735.219200pt;}
.ydc{bottom:735.892956pt;}
.y15b{bottom:736.108027pt;}
.y10c{bottom:737.416117pt;}
.y25d{bottom:738.385893pt;}
.y49{bottom:739.744117pt;}
.y30{bottom:739.918977pt;}
.y191{bottom:740.247711pt;}
.y98{bottom:740.805170pt;}
.y298{bottom:742.413967pt;}
.y1d8{bottom:747.238156pt;}
.y74{bottom:748.435422pt;}
.y15a{bottom:749.143275pt;}
.y161{bottom:749.154759pt;}
.y162{bottom:749.774939pt;}
.ydb{bottom:751.406437pt;}
.y25c{bottom:751.731231pt;}
.y10b{bottom:752.929599pt;}
.y9{bottom:753.261600pt;}
.y190{bottom:755.150325pt;}
.y48{bottom:755.257599pt;}
.y2f{bottom:755.432459pt;}
.y297{bottom:755.453561pt;}
.y139{bottom:755.648710pt;}
.y97{bottom:756.318652pt;}
.y1d7{bottom:759.963314pt;}
.y159{bottom:762.488612pt;}
.y160{bottom:762.500097pt;}
.y73{bottom:763.948903pt;}
.y25b{bottom:764.456389pt;}
.yb9{bottom:765.638533pt;}
.yda{bottom:766.919919pt;}
.y10a{bottom:768.443081pt;}
.y296{bottom:768.493154pt;}
.y18f{bottom:770.052940pt;}
.y47{bottom:770.771081pt;}
.y2e{bottom:770.945940pt;}
.y138{bottom:771.162192pt;}
.y96{bottom:771.884281pt;}
.y1d6{bottom:773.308652pt;}
.y1df{bottom:773.320137pt;}
.y158{bottom:775.213771pt;}
.y15f{bottom:775.225255pt;}
.y25a{bottom:777.181548pt;}
.y72{bottom:779.462385pt;}
.y295{bottom:781.215209pt;}
.y1e3{bottom:781.704041pt;}
.y109{bottom:783.956562pt;}
.y18e{bottom:784.955554pt;}
.yd9{bottom:786.162236pt;}
.y46{bottom:786.284562pt;}
.y1d5{bottom:786.343900pt;}
.y2d{bottom:786.459422pt;}
.y137{bottom:786.675674pt;}
.y1de{bottom:786.975564pt;}
.y95{bottom:787.397762pt;}
.y157{bottom:788.559108pt;}
.y15e{bottom:788.570593pt;}
.yb8{bottom:788.918400pt;}
.y259{bottom:790.216796pt;}
.y260{bottom:790.228281pt;}
.y8{bottom:792.682400pt;}
.y294{bottom:794.254802pt;}
.y71{bottom:794.975867pt;}
.y1e2{bottom:795.979647pt;}
.y108{bottom:799.470044pt;}
.y1d4{bottom:799.689237pt;}
.y1dd{bottom:799.700722pt;}
.y18d{bottom:799.858169pt;}
.y156{bottom:801.284267pt;}
.y15d{bottom:801.295751pt;}
.yd8{bottom:801.675717pt;}
.y45{bottom:801.798044pt;}
.y2c{bottom:801.972903pt;}
.y136{bottom:802.189155pt;}
.y94{bottom:802.911244pt;}
.y25f{bottom:802.953439pt;}
.y258{bottom:803.562133pt;}
.y261{bottom:803.573618pt;}
.y293{bottom:807.294396pt;}
.y1e1{bottom:809.945164pt;}
.y1d3{bottom:812.414396pt;}
.y1dc{bottom:812.425881pt;}
.y18c{bottom:814.442623pt;}
.y107{bottom:814.983525pt;}
.y155{bottom:815.873067pt;}
.y254{bottom:816.929686pt;}
.yd7{bottom:817.189199pt;}
.y44{bottom:817.311525pt;}
.y2b{bottom:817.486385pt;}
.y135{bottom:817.702637pt;}
.y70{bottom:818.288325pt;}
.y93{bottom:818.424725pt;}
.y292{bottom:820.016450pt;}
.y1e0{bottom:824.220770pt;}
.y1db{bottom:825.151039pt;}
.y1d2{bottom:825.759733pt;}
.y18b{bottom:829.345237pt;}
.y24d{bottom:829.643360pt;}
.y253{bottom:829.654845pt;}
.y106{bottom:830.497007pt;}
.yd6{bottom:832.702681pt;}
.y43{bottom:832.825007pt;}
.y2a{bottom:833.025940pt;}
.y291{bottom:833.056044pt;}
.y134{bottom:833.216118pt;}
.y6f{bottom:833.801807pt;}
.y92{bottom:833.938207pt;}
.y154{bottom:835.117867pt;}
.y1d1{bottom:839.423408pt;}
.y24c{bottom:842.678608pt;}
.y252{bottom:843.310272pt;}
.y18a{bottom:844.247852pt;}
.y105{bottom:846.010489pt;}
.y290{bottom:846.095637pt;}
.yd5{bottom:848.216162pt;}
.y42{bottom:848.338489pt;}
.y29{bottom:848.539422pt;}
.y133{bottom:848.749155pt;}
.y6e{bottom:849.315289pt;}
.y91{bottom:849.451689pt;}
.y1{bottom:850.393733pt;}
.y1d0{bottom:852.148566pt;}
.y24b{bottom:856.023946pt;}
.y251{bottom:856.035430pt;}
.y28f{bottom:858.817692pt;}
.y189{bottom:859.761777pt;}
.y153{bottom:861.514903pt;}
.y104{bottom:861.523970pt;}
.yd4{bottom:863.729644pt;}
.y41{bottom:863.851970pt;}
.y28{bottom:864.052903pt;}
.y132{bottom:864.262637pt;}
.y6d{bottom:864.828770pt;}
.y90{bottom:864.965170pt;}
.y1cf{bottom:865.493904pt;}
.y24a{bottom:868.749104pt;}
.y250{bottom:868.760589pt;}
.y257{bottom:868.772074pt;}
.y28e{bottom:871.857285pt;}
.y152{bottom:877.028385pt;}
.y103{bottom:877.037452pt;}
.y1ce{bottom:878.219062pt;}
.y40{bottom:879.365452pt;}
.y27{bottom:879.566385pt;}
.y131{bottom:879.776118pt;}
.y6c{bottom:880.342252pt;}
.y8f{bottom:880.478652pt;}
.y249{bottom:881.474262pt;}
.y24f{bottom:881.485747pt;}
.y256{bottom:881.497232pt;}
.y28d{bottom:884.896879pt;}
.y188{bottom:890.801467pt;}
.y1cd{bottom:891.564400pt;}
.y151{bottom:892.541867pt;}
.y102{bottom:892.550933pt;}
.y7{bottom:892.970267pt;}
.y24e{bottom:894.210906pt;}
.y255{bottom:894.222390pt;}
.yd3{bottom:894.769333pt;}
.y248{bottom:894.819600pt;}
.y3f{bottom:894.878933pt;}
.y26{bottom:895.079867pt;}
.y130{bottom:895.289600pt;}
.y6b{bottom:895.855733pt;}
.y8e{bottom:895.992133pt;}
.y28c{bottom:897.618933pt;}
.y6{bottom:920.784000pt;}
.y25{bottom:931.685733pt;}
.y3e{bottom:931.696400pt;}
.h9{height:17.241750pt;}
.h13{height:28.310363pt;}
.h12{height:28.372876pt;}
.hd{height:28.468894pt;}
.h16{height:28.487518pt;}
.h11{height:29.141333pt;}
.h2{height:29.354667pt;}
.h3{height:29.371733pt;}
.ha{height:31.134575pt;}
.h17{height:31.403750pt;}
.hb{height:31.919669pt;}
.h18{height:32.973937pt;}
.h4{height:34.368000pt;}
.he{height:34.500475pt;}
.h10{height:35.345587pt;}
.hc{height:35.370444pt;}
.h19{height:36.787250pt;}
.hf{height:38.821219pt;}
.h6{height:43.134687pt;}
.h7{height:56.937787pt;}
.h8{height:61.234281pt;}
.h14{height:63.928485pt;}
.h15{height:65.150220pt;}
.h5{height:66.352000pt;}
.h1{height:990.000000pt;}
.h0{height:990.236000pt;}
.w0{width:725.669333pt;}
.w1{width:726.000000pt;}
.x0{left:0.000000pt;}
.x2{left:41.574667pt;}
.xf{left:43.464533pt;}
.x42{left:54.379285pt;}
.x23{left:55.553323pt;}
.x10{left:59.341200pt;}
.xe{left:60.850400pt;}
.xa{left:61.787333pt;}
.x2c{left:66.480533pt;}
.xd{left:69.547333pt;}
.x22{left:70.952267pt;}
.x3d{left:72.124133pt;}
.x11{left:74.727418pt;}
.x7{left:75.767746pt;}
.xb{left:77.173551pt;}
.x37{left:79.263333pt;}
.x16{left:81.700366pt;}
.x26{left:83.921159pt;}
.x6{left:86.416267pt;}
.x2b{left:88.543490pt;}
.x28{left:90.139088pt;}
.x27{left:92.613291pt;}
.x38{left:102.543023pt;}
.x29{left:105.525306pt;}
.x31{left:108.112080pt;}
.xc{left:118.887867pt;}
.x25{left:119.914763pt;}
.x32{left:123.523750pt;}
.x18{left:124.830533pt;}
.x19{left:127.428609pt;}
.x8{left:161.929733pt;}
.x5{left:180.744400pt;}
.x1f{left:187.966929pt;}
.x14{left:205.978000pt;}
.x9{left:208.765067pt;}
.x1{left:211.281333pt;}
.x3{left:213.177867pt;}
.x21{left:230.886667pt;}
.x1e{left:246.298667pt;}
.x4{left:261.796933pt;}
.x17{left:263.988353pt;}
.x2d{left:268.245500pt;}
.x2e{left:291.329948pt;}
.x1a{left:293.591867pt;}
.x33{left:307.161460pt;}
.x39{left:317.653327pt;}
.x34{left:330.441150pt;}
.x3a{left:340.933017pt;}
.x2f{left:460.696293pt;}
.x1b{left:469.488267pt;}
.x1c{left:474.684417pt;}
.x35{left:481.293998pt;}
.x30{left:483.780741pt;}
.x3b{left:491.785865pt;}
.x40{left:493.022798pt;}
.x3e{left:503.270665pt;}
.x36{left:504.573687pt;}
.x1d{left:507.642800pt;}
.x3c{left:515.065554pt;}
.x41{left:516.302487pt;}
.x20{left:523.166133pt;}
.x3f{left:526.550354pt;}
.x24{left:551.296887pt;}
.x12{left:616.929467pt;}
.x2a{left:622.214533pt;}
.x15{left:626.321067pt;}
.x13{left:665.178000pt;}
}




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