
    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_0058986e46494a5c06314fcf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.825000;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_43de820ab73724d6f6003bc1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.126000;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_868105fec71c71d8145cd667.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.065581;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_786df6a781fd3ef2e100515c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.223000;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_40cd3e86ea5a6c1f83abf657.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.136000;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_386c29bb25405dc6b7fc167a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_2cf7b60b28b39ec1fa987436.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.924000;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_68ae4eaa0208ec200daf6346.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5e24eef84bf31f888991ca0a.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_6b2d6dc356e72e00cd1a2168.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065581;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_afde05284c4640e8b09b2d14.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.144000;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_8c9de6af325de45daf617e3d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.889000;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_3d9f8eac33c8dbcd4b2856d5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.266000;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_aa98180d9b6d8c0f717ab0c2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.851000;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_654a1ec6c31665f1ec3cdaf1.woff2')format("woff");}.fff{font-family:fff;line-height:0.676000;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_a0adac0a1860d2b2fc000545.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.701000;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_12c814418aa2b2d06131ef6b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.717000;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_751cfb9513a3138f32470fa8.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.829000;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_c27e06befc3e5c84fc68e77a.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.066000;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_1ae5bc82b56b594a4b9437c8.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.679000;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_e4bd86d5c18bddff78eca42b.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.926000;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_2f726df0187490535a0f05c4.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.885000;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_65abec5c103900c01bbec56e.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.266000;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_b006965488d181cb4f894106.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.690000;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_a11183ce8fc20936c33ab919.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.851000;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_52460ffed88c9afbc43cd4d0.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:3.722000;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_a292ad4f0b0e630201e94b88.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.885000;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_7ed75c5000408b0367447a14.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.588000;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_171df554543fd703f70e721e.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.676000;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_e6aad8878739e4a2f5d26ee1.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.692000;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_f75108cf2c900a8d46a27e1b.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:3.107000;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_6033f58b29a9597a851cffed.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.890000;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_d8836d475c01d5cf6c9a4dcf.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.588000;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_770460c47b753dd4976b69b1.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.452000;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_6751b28814be2946de24d9a5.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.890000;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_e3017a369417cead208b97ed.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.693000;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_9a5cd10aa318e546b453a33a.woff2')format("woff");}.ff25{font-family:ff25;line-height:2.269000;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_7b2dac36fa225d9d6a2a4336.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.890000;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_d91b72b1d84ce4bebbfc3ad7.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.266000;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_4810fbd166f3e614ac296fd2.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.624000;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_7d5f40fa83edec8128f4a06d.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.879000;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_336340f2ef901351d9631bad.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.676000;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_bd78acbaed6f8673e41f8115.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_a7e661a0e3b19cbb8e16b2f5.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.853000;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_13c67b2bf254f0cd40c6e1e5.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.702000;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_911c4a68e2f12206e83930cd.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.890000;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_9666348b1420652dded6282a.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.702000;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_581022d3423bc762db852998.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.232000;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_cb437a397cdb9be58af110fe.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.889000;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_2a3022a732ba31906c6e23c9.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.853000;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_88d49d372dedffdc7ca11c04.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.624000;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_3d08748bd626d83bdf7f5a30.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.851000;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_1c2897d3051859efd7752303.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.662000;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_b38bf5d5df5fb2bddb2f486b.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.889000;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_b3c14d5bf53a97c154988407.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.845000;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_4745f6cf82b15f8555dfb822.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.679000;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_14b0ff0bc483601dfa60cdc8.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.647000;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_c6cecc3d95df5adc53d86d9b.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.817000;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_895d80c2c15b78cad97f6aa1.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.859000;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_dc4237b930ac79c5411c98b3.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.629000;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_c2b2205c29734ae47d3ea76d.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.694000;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_404aebf5491489f5f49c7874.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.932000;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_05c0ee0a039dd94d464f932f.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.690000;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_4d18a4db91f47e32eda697c5.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.932000;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_9749194729422cf561984dec.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.889000;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_93fd5144fc6f14f5a49cb0bb.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.710000;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_922cb6868defcbc86dd31bd5.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_b89b1d75c6e8a3ad8aef44bb.woff2')format("woff");}.ff44{font-family:ff44;line-height:1.230000;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_35c68cdcd657030e421dcda2.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.932000;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_ef5a875c67bb13c476914e97.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.889000;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_19e84fe88f0e9ad56a1f89d8.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.601000;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_e4a9fd45efc0e77f76967e24.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.624000;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_37747e20974b05d688d8257d.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url('chunks/assets/font_79b8897aae1f9a2df951cb29.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.889000;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_75fa1e838746b9db89067be3.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.853000;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_ed67ae9aaf7c946624b209a4.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:2.460000;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_3144b4783f1860a3165c98c7.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:0.690000;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:ff4e;src:url('chunks/assets/font_b98a8d41c217629d7c0aa168.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.701000;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:ff4f;src:url('chunks/assets/font_6067ffef06b0e5e8bda74735.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.932000;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:ff50;src:url('chunks/assets/font_0e95dfdc481324607ab56518.woff2')format("woff");}.ff50{font-family:ff50;line-height:1.230000;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:ff51;src:url('chunks/assets/font_25a71e8dd404c4604bd86e5a.woff2')format("woff");}.ff51{font-family:ff51;line-height:0.702000;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:ff52;src:url('chunks/assets/font_2ee180f61affa9600fbfba59.woff2')format("woff");}.ff52{font-family:ff52;line-height:0.701000;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:ff53;src:url('chunks/assets/font_29868c63fe70619b835a2638.woff2')format("woff");}.ff53{font-family:ff53;line-height:0.932000;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:ff54;src:url('chunks/assets/font_853573c06c3b014d68ea8fdd.woff2')format("woff");}.ff54{font-family:ff54;line-height:0.690000;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:ff55;src:url('chunks/assets/font_8788feb09839d5ebc5cf2c3d.woff2')format("woff");}.ff55{font-family:ff55;line-height:0.889000;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:ff56;src:url('chunks/assets/font_2c1fb3b70a3d89c4ae365252.woff2')format("woff");}.ff56{font-family:ff56;line-height:0.853000;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:ff57;src:url('chunks/assets/font_e7a44d991851ef2f2668830a.woff2')format("woff");}.ff57{font-family:ff57;line-height:0.697000;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:ff58;src:url('chunks/assets/font_1c06dfd0c4c982458c86e49f.woff2')format("woff");}.ff58{font-family:ff58;line-height:0.601000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1a{vertical-align:-80.692356px;}
.v17{vertical-align:-68.418640px;}
.vc{vertical-align:-40.907202px;}
.v1d{vertical-align:-37.067100px;}
.v11{vertical-align:-25.703613px;}
.vd{vertical-align:-23.076599px;}
.v2{vertical-align:-19.200005px;}
.v3{vertical-align:-13.710000px;}
.v18{vertical-align:-12.000000px;}
.v6{vertical-align:-9.991791px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:5.183990px;}
.va{vertical-align:6.884399px;}
.v1c{vertical-align:9.991882px;}
.v7{vertical-align:11.016037px;}
.vb{vertical-align:12.458954px;}
.v4{vertical-align:14.250000px;}
.v10{vertical-align:15.349967px;}
.v14{vertical-align:17.107920px;}
.v19{vertical-align:19.200073px;}
.v15{vertical-align:21.435605px;}
.v1{vertical-align:22.799931px;}
.v8{vertical-align:25.703979px;}
.v5{vertical-align:30.187180px;}
.v12{vertical-align:33.075312px;}
.v9{vertical-align:35.838600px;}
.v16{vertical-align:39.918480px;}
.v1b{vertical-align:59.833740px;}
.v13{vertical-align:64.204834px;}
.vf{vertical-align:134.784620px;}
.ls59{letter-spacing:-1.675800px;}
.ls4d{letter-spacing:-1.476966px;}
.ls39{letter-spacing:-0.798000px;}
.ls78{letter-spacing:-0.342000px;}
.lsb{letter-spacing:-0.228106px;}
.ls81{letter-spacing:-0.171000px;}
.ls22{letter-spacing:-0.114053px;}
.ls24{letter-spacing:-0.114000px;}
.ls82{letter-spacing:-0.057000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000006px;}
.ls27{letter-spacing:0.000009px;}
.ls6a{letter-spacing:0.000012px;}
.ls69{letter-spacing:0.000015px;}
.ls46{letter-spacing:0.000018px;}
.ls4{letter-spacing:0.000027px;}
.ls3d{letter-spacing:0.000055px;}
.ls6{letter-spacing:0.000073px;}
.ls3{letter-spacing:0.000076px;}
.ls47{letter-spacing:0.000110px;}
.ls5{letter-spacing:0.000201px;}
.ls45{letter-spacing:0.000439px;}
.ls6f{letter-spacing:0.000476px;}
.ls20{letter-spacing:0.000755px;}
.ls33{letter-spacing:0.001010px;}
.ls11{letter-spacing:0.004497px;}
.ls2b{letter-spacing:0.006878px;}
.ls3e{letter-spacing:0.010646px;}
.ls80{letter-spacing:0.016187px;}
.ls4b{letter-spacing:0.022452px;}
.ls53{letter-spacing:0.023278px;}
.ls16{letter-spacing:0.025303px;}
.ls15{letter-spacing:0.025307px;}
.ls19{letter-spacing:0.025394px;}
.ls18{letter-spacing:0.027134px;}
.ls84{letter-spacing:0.033900px;}
.ls9a{letter-spacing:0.033960px;}
.ls3a{letter-spacing:0.039918px;}
.ls4c{letter-spacing:0.050852px;}
.ls26{letter-spacing:0.051198px;}
.ls2e{letter-spacing:0.057026px;}
.ls7a{letter-spacing:0.072034px;}
.ls7b{letter-spacing:0.072583px;}
.ls55{letter-spacing:0.079836px;}
.ls79{letter-spacing:0.114000px;}
.ls83{letter-spacing:0.119700px;}
.ls7c{letter-spacing:0.171000px;}
.ls42{letter-spacing:0.171079px;}
.ls7e{letter-spacing:0.199796px;}
.ls9f{letter-spacing:0.221400px;}
.ls71{letter-spacing:0.222273px;}
.ls9c{letter-spacing:0.229620px;}
.ls88{letter-spacing:0.229680px;}
.lsa0{letter-spacing:0.232560px;}
.ls93{letter-spacing:0.280320px;}
.ls70{letter-spacing:0.285000px;}
.ls8f{letter-spacing:0.286200px;}
.ls96{letter-spacing:0.327900px;}
.ls85{letter-spacing:0.336540px;}
.ls7f{letter-spacing:0.342000px;}
.ls94{letter-spacing:0.350940px;}
.ls9e{letter-spacing:0.361380px;}
.ls77{letter-spacing:0.399000px;}
.ls8c{letter-spacing:0.446760px;}
.ls76{letter-spacing:0.456000px;}
.ls99{letter-spacing:0.484980px;}
.ls92{letter-spacing:0.485340px;}
.ls74{letter-spacing:0.504840px;}
.ls75{letter-spacing:0.505389px;}
.ls8e{letter-spacing:0.510960px;}
.ls7d{letter-spacing:0.513000px;}
.ls97{letter-spacing:0.515220px;}
.ls61{letter-spacing:0.557538px;}
.ls63{letter-spacing:0.557941px;}
.ls56{letter-spacing:0.557958px;}
.ls67{letter-spacing:0.557960px;}
.ls4f{letter-spacing:0.557996px;}
.ls5f{letter-spacing:0.558309px;}
.ls52{letter-spacing:0.558316px;}
.ls57{letter-spacing:0.558361px;}
.ls58{letter-spacing:0.558453px;}
.ls5e{letter-spacing:0.558545px;}
.ls6d{letter-spacing:0.558588px;}
.ls50{letter-spacing:0.558591px;}
.ls5a{letter-spacing:0.558600px;}
.ls65{letter-spacing:0.558636px;}
.ls5d{letter-spacing:0.558728px;}
.ls51{letter-spacing:0.559186px;}
.ls6e{letter-spacing:0.559190px;}
.ls72{letter-spacing:0.562756px;}
.ls8d{letter-spacing:0.577740px;}
.ls6b{letter-spacing:0.655483px;}
.ls73{letter-spacing:0.741000px;}
.ls95{letter-spacing:0.790260px;}
.ls64{letter-spacing:0.797347px;}
.ls68{letter-spacing:0.797870px;}
.ls5c{letter-spacing:0.797983px;}
.ls4e{letter-spacing:0.798000px;}
.ls62{letter-spacing:0.798601px;}
.ls66{letter-spacing:0.803700px;}
.ls90{letter-spacing:0.829560px;}
.ls60{letter-spacing:0.855000px;}
.ls91{letter-spacing:0.932820px;}
.ls98{letter-spacing:0.965940px;}
.ls5b{letter-spacing:0.969000px;}
.ls38{letter-spacing:0.969449px;}
.ls8b{letter-spacing:1.136400px;}
.ls89{letter-spacing:1.144140px;}
.ls9b{letter-spacing:1.187520px;}
.ls8a{letter-spacing:1.276260px;}
.ls9d{letter-spacing:1.387920px;}
.ls86{letter-spacing:1.395900px;}
.ls87{letter-spacing:1.412280px;}
.ls3b{letter-spacing:1.596720px;}
.lsf{letter-spacing:1.636638px;}
.ls12{letter-spacing:1.996722px;}
.ls10{letter-spacing:2.224030px;}
.ls8{letter-spacing:2.594670px;}
.lsa{letter-spacing:2.969963px;}
.ls48{letter-spacing:2.990978px;}
.ls31{letter-spacing:2.990982px;}
.ls54{letter-spacing:3.014201px;}
.ls9{letter-spacing:3.023384px;}
.ls40{letter-spacing:3.054174px;}
.ls49{letter-spacing:3.119847px;}
.ls0{letter-spacing:3.360000px;}
.ls1a{letter-spacing:7.926457px;}
.ls1f{letter-spacing:8.813528px;}
.ls3c{letter-spacing:9.466382px;}
.ls43{letter-spacing:9.580435px;}
.ls2d{letter-spacing:10.120739px;}
.ls1e{letter-spacing:10.231013px;}
.ls1b{letter-spacing:11.365956px;}
.ls2c{letter-spacing:12.659861px;}
.ls34{letter-spacing:12.716887px;}
.ls25{letter-spacing:14.181846px;}
.ls14{letter-spacing:14.374058px;}
.ls36{letter-spacing:15.796313px;}
.lsc{letter-spacing:15.853339px;}
.ls1d{letter-spacing:15.956263px;}
.ls4a{letter-spacing:17.050894px;}
.ls2a{letter-spacing:18.704659px;}
.ls3f{letter-spacing:18.813602px;}
.ls41{letter-spacing:18.813675px;}
.ls21{letter-spacing:18.813766px;}
.ls44{letter-spacing:18.814224px;}
.ls35{letter-spacing:18.867599px;}
.ls2f{letter-spacing:18.869335px;}
.ls29{letter-spacing:18.872858px;}
.lsd{letter-spacing:18.989791px;}
.ls1c{letter-spacing:19.319279px;}
.ls32{letter-spacing:24.649561px;}
.ls28{letter-spacing:24.652033px;}
.ls6c{letter-spacing:24.692431px;}
.lse{letter-spacing:25.376748px;}
.ls37{letter-spacing:26.232144px;}
.ls23{letter-spacing:27.600778px;}
.ls7{letter-spacing:35.348918px;}
.ls17{letter-spacing:35.531412px;}
.ls13{letter-spacing:65.379846px;}
.ls30{letter-spacing:78.468326px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5d{word-spacing:-27.657804px;}
.ws71{word-spacing:-15.910366px;}
.wsa3{word-spacing:-15.853339px;}
.ws80{word-spacing:-15.796313px;}
.wsa7{word-spacing:-15.048000px;}
.wscf{word-spacing:-14.535000px;}
.wsd2{word-spacing:-14.421000px;}
.ws6{word-spacing:-14.250000px;}
.ws6e{word-spacing:-14.181846px;}
.ws5f{word-spacing:-14.136000px;}
.ws9b{word-spacing:-13.452000px;}
.wsb3{word-spacing:-13.332000px;}
.ws9e{word-spacing:-12.773914px;}
.wsa4{word-spacing:-12.000000px;}
.ws82{word-spacing:-11.856000px;}
.ws2{word-spacing:-11.799000px;}
.ws4{word-spacing:-11.514000px;}
.ws51{word-spacing:-11.340000px;}
.ws5{word-spacing:-10.944000px;}
.wsa2{word-spacing:-10.533600px;}
.wscd{word-spacing:-10.094700px;}
.ws1e{word-spacing:-9.975000px;}
.ws1{word-spacing:-9.408000px;}
.wsce{word-spacing:-9.216000px;}
.ws7{word-spacing:-8.400000px;}
.wsa1{word-spacing:-8.299200px;}
.ws3{word-spacing:-8.259300px;}
.ws59{word-spacing:-7.125000px;}
.wsa0{word-spacing:-6.000000px;}
.wsb{word-spacing:-2.052000px;}
.ws9{word-spacing:-1.890000px;}
.wsc9{word-spacing:-1.425000px;}
.wsd1{word-spacing:-1.368000px;}
.ws67{word-spacing:-1.254000px;}
.wsc4{word-spacing:-1.197000px;}
.wsd3{word-spacing:-0.912000px;}
.ws4a{word-spacing:-0.855000px;}
.wsac{word-spacing:-0.798000px;}
.wsca{word-spacing:-0.741000px;}
.wscb{word-spacing:-0.684000px;}
.wsc8{word-spacing:-0.627000px;}
.wsd0{word-spacing:-0.570000px;}
.ws14{word-spacing:-0.513000px;}
.wsa{word-spacing:-0.480000px;}
.ws77{word-spacing:-0.456000px;}
.wsf0{word-spacing:-0.432000px;}
.ws32{word-spacing:-0.399000px;}
.wse2{word-spacing:-0.384000px;}
.wsba{word-spacing:-0.342000px;}
.wsf1{word-spacing:-0.336000px;}
.wsd8{word-spacing:-0.288000px;}
.ws87{word-spacing:-0.285000px;}
.wsc1{word-spacing:-0.228000px;}
.wsee{word-spacing:-0.192000px;}
.ws92{word-spacing:-0.171000px;}
.ws102{word-spacing:-0.144000px;}
.ws2f{word-spacing:-0.114000px;}
.ws72{word-spacing:-0.079836px;}
.ws5c{word-spacing:-0.057026px;}
.ws6c{word-spacing:-0.057000px;}
.ws60{word-spacing:-0.051198px;}
.ws0{word-spacing:-0.048000px;}
.ws3d{word-spacing:-0.039918px;}
.ws8{word-spacing:0.000000px;}
.ws52{word-spacing:0.057000px;}
.ws103{word-spacing:0.084720px;}
.ws119{word-spacing:0.084960px;}
.ws38{word-spacing:0.114000px;}
.ws66{word-spacing:0.114053px;}
.ws5b{word-spacing:0.171000px;}
.ws70{word-spacing:0.171079px;}
.ws7b{word-spacing:0.228000px;}
.ws58{word-spacing:0.228106px;}
.ws20{word-spacing:0.285000px;}
.wsf4{word-spacing:0.288000px;}
.ws4f{word-spacing:0.342000px;}
.ws56{word-spacing:0.399000px;}
.wsea{word-spacing:0.432000px;}
.ws97{word-spacing:0.456000px;}
.ws93{word-spacing:0.513000px;}
.wse6{word-spacing:0.528000px;}
.ws11e{word-spacing:0.553560px;}
.wsb4{word-spacing:0.570000px;}
.ws11b{word-spacing:0.574020px;}
.ws107{word-spacing:0.574260px;}
.ws11f{word-spacing:0.581400px;}
.wsf2{word-spacing:0.624000px;}
.wsc3{word-spacing:0.627000px;}
.wse4{word-spacing:0.672000px;}
.ws112{word-spacing:0.700740px;}
.ws10e{word-spacing:0.715500px;}
.wsed{word-spacing:0.720000px;}
.ws23{word-spacing:0.741000px;}
.ws69{word-spacing:0.798000px;}
.ws115{word-spacing:0.819720px;}
.ws104{word-spacing:0.841380px;}
.ws95{word-spacing:0.855000px;}
.wsbc{word-spacing:0.864000px;}
.ws113{word-spacing:0.877380px;}
.ws11d{word-spacing:0.903480px;}
.ws4c{word-spacing:0.912000px;}
.wsc2{word-spacing:0.969000px;}
.ws3f{word-spacing:1.026000px;}
.wsd{word-spacing:1.083000px;}
.ws10b{word-spacing:1.116960px;}
.ws31{word-spacing:1.140000px;}
.ws4d{word-spacing:1.197000px;}
.wsfc{word-spacing:1.200000px;}
.ws118{word-spacing:1.212420px;}
.ws111{word-spacing:1.213320px;}
.ws10d{word-spacing:1.277400px;}
.ws116{word-spacing:1.288020px;}
.wsb7{word-spacing:1.311000px;}
.ws2d{word-spacing:1.368000px;}
.ws7c{word-spacing:1.425000px;}
.ws9d{word-spacing:1.437048px;}
.ws10c{word-spacing:1.444260px;}
.ws55{word-spacing:1.482000px;}
.wsc5{word-spacing:1.539000px;}
.ws2e{word-spacing:1.653000px;}
.ws1f{word-spacing:1.710000px;}
.ws29{word-spacing:1.767000px;}
.wsdf{word-spacing:1.776000px;}
.ws91{word-spacing:1.824000px;}
.wse7{word-spacing:1.872000px;}
.ws21{word-spacing:1.881000px;}
.ws8f{word-spacing:1.938000px;}
.ws114{word-spacing:1.975620px;}
.wse{word-spacing:1.995000px;}
.ws94{word-spacing:2.052000px;}
.ws10f{word-spacing:2.073960px;}
.wsbb{word-spacing:2.109000px;}
.ws33{word-spacing:2.223000px;}
.ws27{word-spacing:2.280000px;}
.ws110{word-spacing:2.332020px;}
.ws39{word-spacing:2.337000px;}
.wsef{word-spacing:2.352000px;}
.wsb0{word-spacing:2.394000px;}
.ws117{word-spacing:2.414880px;}
.wsdc{word-spacing:2.448000px;}
.ws15{word-spacing:2.451000px;}
.wse3{word-spacing:2.496000px;}
.ws42{word-spacing:2.508000px;}
.wse0{word-spacing:2.544000px;}
.ws9a{word-spacing:2.565000px;}
.wsf5{word-spacing:2.592000px;}
.ws37{word-spacing:2.622000px;}
.ws4e{word-spacing:2.679000px;}
.ws68{word-spacing:2.736000px;}
.ws86{word-spacing:2.793000px;}
.ws10a{word-spacing:2.841060px;}
.ws4b{word-spacing:2.850000px;}
.ws108{word-spacing:2.860320px;}
.wsfa{word-spacing:2.880000px;}
.wsb1{word-spacing:2.907000px;}
.wsff{word-spacing:2.928000px;}
.wsf{word-spacing:2.964000px;}
.ws11a{word-spacing:2.968800px;}
.ws65{word-spacing:3.021000px;}
.ws30{word-spacing:3.135000px;}
.wse8{word-spacing:3.168000px;}
.ws109{word-spacing:3.190620px;}
.wsa5{word-spacing:3.192000px;}
.wsd7{word-spacing:3.216000px;}
.wsb6{word-spacing:3.306000px;}
.wse9{word-spacing:3.360000px;}
.wsc{word-spacing:3.363000px;}
.ws101{word-spacing:3.456000px;}
.ws11c{word-spacing:3.469740px;}
.ws105{word-spacing:3.489720px;}
.wsf9{word-spacing:3.504000px;}
.ws106{word-spacing:3.530700px;}
.ws10{word-spacing:3.534000px;}
.ws5a{word-spacing:3.591000px;}
.ws2b{word-spacing:3.648000px;}
.wsf6{word-spacing:3.696000px;}
.wse1{word-spacing:3.744000px;}
.ws3e{word-spacing:3.762000px;}
.ws41{word-spacing:3.819000px;}
.ws7f{word-spacing:3.876000px;}
.ws34{word-spacing:3.933000px;}
.wsec{word-spacing:3.984000px;}
.ws78{word-spacing:3.990000px;}
.wsab{word-spacing:4.047000px;}
.wsd5{word-spacing:4.080000px;}
.ws84{word-spacing:4.104000px;}
.ws24{word-spacing:4.161000px;}
.ws28{word-spacing:4.218000px;}
.ws100{word-spacing:4.320000px;}
.ws75{word-spacing:4.332000px;}
.wsf7{word-spacing:4.464000px;}
.ws22{word-spacing:4.503000px;}
.ws85{word-spacing:4.560000px;}
.ws26{word-spacing:4.617000px;}
.wsfd{word-spacing:4.656000px;}
.ws1c{word-spacing:4.674000px;}
.wsbf{word-spacing:4.731000px;}
.ws50{word-spacing:4.788000px;}
.wsdd{word-spacing:4.800000px;}
.ws43{word-spacing:4.902000px;}
.ws9f{word-spacing:4.944000px;}
.ws2c{word-spacing:4.959000px;}
.ws48{word-spacing:5.016000px;}
.ws53{word-spacing:5.130000px;}
.wsde{word-spacing:5.232000px;}
.ws40{word-spacing:5.244000px;}
.ws63{word-spacing:5.301000px;}
.wsd6{word-spacing:5.328000px;}
.wsc0{word-spacing:5.358000px;}
.ws76{word-spacing:5.415000px;}
.wsd4{word-spacing:5.568000px;}
.wsa8{word-spacing:5.586000px;}
.ws96{word-spacing:5.643000px;}
.wse5{word-spacing:5.664000px;}
.wsc6{word-spacing:5.757000px;}
.ws61{word-spacing:5.871000px;}
.ws12{word-spacing:5.928000px;}
.wsf3{word-spacing:5.952000px;}
.ws1a{word-spacing:5.985000px;}
.ws3c{word-spacing:6.042000px;}
.ws3a{word-spacing:6.099000px;}
.wsf8{word-spacing:6.192000px;}
.ws2a{word-spacing:6.213000px;}
.ws8d{word-spacing:6.270000px;}
.wseb{word-spacing:6.288000px;}
.wsb8{word-spacing:6.327000px;}
.ws36{word-spacing:6.384000px;}
.ws3b{word-spacing:6.555000px;}
.ws11{word-spacing:6.612000px;}
.wscc{word-spacing:6.624000px;}
.ws83{word-spacing:6.726000px;}
.ws44{word-spacing:6.783000px;}
.ws46{word-spacing:6.897000px;}
.ws1b{word-spacing:6.954000px;}
.wsdb{word-spacing:7.104000px;}
.ws18{word-spacing:7.125000px;}
.ws8c{word-spacing:7.239000px;}
.ws89{word-spacing:7.296000px;}
.wsc7{word-spacing:7.353000px;}
.wsd9{word-spacing:7.392000px;}
.wsb5{word-spacing:7.410000px;}
.ws8b{word-spacing:7.467000px;}
.ws25{word-spacing:7.581000px;}
.wsfb{word-spacing:7.680000px;}
.wsaa{word-spacing:7.752000px;}
.ws6b{word-spacing:7.866000px;}
.ws16{word-spacing:7.923000px;}
.ws74{word-spacing:8.094000px;}
.ws35{word-spacing:8.151000px;}
.ws62{word-spacing:8.208000px;}
.ws6a{word-spacing:8.493000px;}
.ws45{word-spacing:8.550000px;}
.ws7d{word-spacing:8.607000px;}
.ws7e{word-spacing:8.721000px;}
.wsfe{word-spacing:8.832000px;}
.wsae{word-spacing:8.892000px;}
.ws6d{word-spacing:8.949000px;}
.ws49{word-spacing:9.063000px;}
.ws90{word-spacing:9.234000px;}
.ws81{word-spacing:9.432166px;}
.wsaf{word-spacing:9.462000px;}
.ws99{word-spacing:9.519000px;}
.ws7a{word-spacing:9.576000px;}
.wsda{word-spacing:9.600000px;}
.ws88{word-spacing:9.918000px;}
.ws73{word-spacing:9.975000px;}
.ws54{word-spacing:10.089000px;}
.ws19{word-spacing:10.317000px;}
.wsad{word-spacing:10.431000px;}
.ws8a{word-spacing:10.659000px;}
.wsb9{word-spacing:10.716000px;}
.ws47{word-spacing:10.773000px;}
.ws79{word-spacing:10.830000px;}
.ws57{word-spacing:11.172000px;}
.ws13{word-spacing:11.400000px;}
.wsa9{word-spacing:12.483000px;}
.wsb2{word-spacing:12.768000px;}
.ws64{word-spacing:12.939000px;}
.ws98{word-spacing:13.281000px;}
.ws5e{word-spacing:14.199574px;}
.ws8e{word-spacing:15.219000px;}
.ws9c{word-spacing:15.454154px;}
.wsbe{word-spacing:15.773502px;}
.wsbd{word-spacing:15.967392px;}
.ws6f{word-spacing:18.989791px;}
.wsa6{word-spacing:19.152000px;}
.ws17{word-spacing:19.668000px;}
.ws1d{word-spacing:73.056000px;}
._25{margin-left:-33.872957px;}
._24{margin-left:-26.604043px;}
._14{margin-left:-25.593000px;}
._1d{margin-left:-23.868669px;}
._19{margin-left:-22.778400px;}
._b{margin-left:-21.154213px;}
._1f{margin-left:-19.543200px;}
._c{margin-left:-18.354000px;}
._12{margin-left:-16.607981px;}
._4{margin-left:-15.600000px;}
._d{margin-left:-14.242200px;}
._f{margin-left:-12.531000px;}
._1e{margin-left:-11.529708px;}
._17{margin-left:-10.412097px;}
._16{margin-left:-9.184800px;}
._13{margin-left:-7.374000px;}
._23{margin-left:-6.323478px;}
._3{margin-left:-4.788000px;}
._28{margin-left:-3.780947px;}
._1{margin-left:-2.730000px;}
._0{margin-left:-1.632000px;}
._2{width:1.468200px;}
._18{width:2.920488px;}
._a{width:4.770600px;}
._27{width:5.804095px;}
._1a{width:7.254605px;}
._22{width:9.048599px;}
._15{width:10.370920px;}
._11{width:11.586000px;}
._20{width:12.991897px;}
._9{width:14.250000px;}
._29{width:15.903000px;}
._21{width:17.561996px;}
._e{width:18.867000px;}
._5{width:22.320000px;}
._1c{width:24.111000px;}
._1b{width:25.711632px;}
._30{width:26.736000px;}
._2f{width:28.007401px;}
._10{width:30.000000px;}
._2e{width:31.200000px;}
._26{width:33.000000px;}
._2d{width:38.361000px;}
._2b{width:40.242000px;}
._2c{width:42.649800px;}
._2a{width:44.245800px;}
._7{width:56.255995px;}
._6{width:73.056000px;}
._8{width:1138.607991px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:28.513200px;}
.fs6{font-size:33.600000px;}
.fsd{font-size:35.838600px;}
.fs4{font-size:39.900000px;}
.fsa{font-size:39.917999px;}
.fs0{font-size:48.000000px;}
.fsc{font-size:51.198000px;}
.fse{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs9{font-size:57.026400px;}
.fs8{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y199{bottom:0.083221px;}
.y1e9{bottom:0.112347px;}
.y9c{bottom:0.161659px;}
.y9a{bottom:0.164063px;}
.y104{bottom:0.167267px;}
.y12f{bottom:0.171753px;}
.y87{bottom:1.507805px;}
.y1a6{bottom:1.580246px;}
.y147{bottom:2.056091px;}
.ydc{bottom:2.061298px;}
.y13a{bottom:2.075249px;}
.y115{bottom:2.180099px;}
.y16d{bottom:2.186691px;}
.y123{bottom:3.525925px;}
.yaf{bottom:3.644692px;}
.y160{bottom:3.644852px;}
.y132{bottom:3.719696px;}
.y1ac{bottom:3.794540px;}
.y1a4{bottom:5.144531px;}
.y97{bottom:5.146042px;}
.y137{bottom:5.639706px;}
.y164{bottom:8.640015px;}
.y1ae{bottom:8.789703px;}
.y149{bottom:8.900391px;}
.y162{bottom:9.530548px;}
.y1a7{bottom:10.139694px;}
.y9b{bottom:10.141159px;}
.y83{bottom:10.845005px;}
.y99{bottom:11.031738px;}
.ycf{bottom:13.270947px;}
.yb1{bottom:13.634995px;}
.y103{bottom:13.707825px;}
.y128{bottom:13.710892px;}
.y11e{bottom:13.905945px;}
.y118{bottom:13.954328px;}
.y11b{bottom:13.954465px;}
.y146{bottom:15.751099px;}
.ycd{bottom:16.470303px;}
.y113{bottom:16.619431px;}
.y16b{bottom:17.145126px;}
.y1ec{bottom:17.340575px;}
.y1ef{bottom:17.340873px;}
.y29{bottom:18.000000px;}
.y117{bottom:18.231308px;}
.y11a{bottom:18.231445px;}
.y10f{bottom:18.238953px;}
.y10c{bottom:18.239548px;}
.y13c{bottom:21.326855px;}
.y1e4{bottom:21.616207px;}
.y85{bottom:21.888004px;}
.yff{bottom:22.454773px;}
.y107{bottom:22.455597px;}
.y12e{bottom:22.746597px;}
.y139{bottom:23.891556px;}
.y136{bottom:23.894703px;}
.y192{bottom:24.031174px;}
.yac{bottom:24.149552px;}
.y1eb{bottom:25.181705px;}
.y1ee{bottom:25.182003px;}
.y143{bottom:25.294556px;}
.y13f{bottom:25.306091px;}
.yc1{bottom:25.354649px;}
.yda{bottom:25.497448px;}
.ye2{bottom:25.497757px;}
.yd2{bottom:25.500607px;}
.yb4{bottom:25.909504px;}
.yc6{bottom:25.912342px;}
.ybc{bottom:25.912503px;}
.yb8{bottom:26.699993px;}
.yba{bottom:26.700154px;}
.yd7{bottom:26.995651px;}
.yd8{bottom:26.995800px;}
.y111{bottom:30.699600px;}
.y122{bottom:31.280136px;}
.y120{bottom:31.415405px;}
.ydd{bottom:31.919962px;}
.yd5{bottom:31.923603px;}
.y1{bottom:32.687250px;}
.y8d{bottom:33.984900px;}
.y4{bottom:33.985050px;}
.ycc{bottom:35.390408px;}
.ye0{bottom:35.757453px;}
.y12c{bottom:37.175583px;}
.yc9{bottom:37.899159px;}
.ycb{bottom:37.899296px;}
.yc4{bottom:38.505146px;}
.y19a{bottom:44.201523px;}
.y1e7{bottom:45.647861px;}
.y195{bottom:48.494522px;}
.y19f{bottom:73.274998px;}
.y28{bottom:73.277998px;}
.y1fe{bottom:73.514997px;}
.y1c1{bottom:73.563000px;}
.y5c{bottom:73.729803px;}
.y1b7{bottom:73.935000px;}
.y1d0{bottom:74.415000px;}
.y180{bottom:74.420991px;}
.y22a{bottom:74.454752px;}
.y189{bottom:74.461502px;}
.y225{bottom:74.468252px;}
.y8c{bottom:74.768248px;}
.y28c{bottom:77.183512px;}
.y2dd{bottom:78.210000px;}
.y2dc{bottom:84.960000px;}
.y1e1{bottom:85.918803px;}
.y212{bottom:86.531557px;}
.y1d8{bottom:87.031806px;}
.y1c0{bottom:87.435000px;}
.y5b{bottom:90.986553px;}
.y28b{bottom:91.055512px;}
.y17f{bottom:91.677741px;}
.y224{bottom:91.695741px;}
.y229{bottom:91.711502px;}
.y188{bottom:91.718252px;}
.y27{bottom:91.949999px;}
.y8b{bottom:92.018248px;}
.y135{bottom:98.125500px;}
.y1e0{bottom:103.175553px;}
.y138{bottom:103.765205px;}
.y211{bottom:103.788307px;}
.yd1{bottom:104.110497px;}
.y1d7{bottom:104.288556px;}
.y251{bottom:104.815209px;}
.y28a{bottom:104.927512px;}
.y5a{bottom:108.243303px;}
.y17e{bottom:108.934491px;}
.y223{bottom:108.952491px;}
.y2db{bottom:108.960000px;}
.y228{bottom:108.968252px;}
.y187{bottom:108.975002px;}
.y8a{bottom:109.268248px;}
.y134{bottom:109.506454px;}
.yd4{bottom:109.736103px;}
.y13b{bottom:113.741856px;}
.y26{bottom:115.433248px;}
.y2da{bottom:115.710000px;}
.y2d9{bottom:117.210000px;}
.yd0{bottom:118.117355px;}
.y250{bottom:118.687209px;}
.y289{bottom:118.799512px;}
.yd6{bottom:119.711998px;}
.ydf{bottom:119.712296px;}
.y1df{bottom:120.432303px;}
.y210{bottom:121.045057px;}
.y1d6{bottom:121.545306px;}
.y59{bottom:125.331281px;}
.y17d{bottom:126.191241px;}
.y222{bottom:126.209241px;}
.y227{bottom:126.225002px;}
.y89{bottom:126.521998px;}
.yde{bottom:127.980826px;}
.yd9{bottom:128.311947px;}
.y25{bottom:129.305248px;}
.ydb{bottom:129.607944px;}
.ye1{bottom:129.608253px;}
.yd3{bottom:129.611103px;}
.y2d8{bottom:132.210000px;}
.y24f{bottom:132.559209px;}
.y288{bottom:132.671512px;}
.y1de{bottom:137.683041px;}
.y20f{bottom:138.301807px;}
.y82{bottom:138.524998px;}
.y1d5{bottom:138.802056px;}
.y86{bottom:142.529995px;}
.y58{bottom:142.588031px;}
.y17c{bottom:143.447991px;}
.y186{bottom:144.225002px;}
.y24e{bottom:146.431209px;}
.y287{bottom:146.543512px;}
.y2d7{bottom:147.210000px;}
.yfc{bottom:148.784695px;}
.y84{bottom:149.370003px;}
.y88{bottom:149.378998px;}
.y81{bottom:149.379153px;}
.y24{bottom:150.725248px;}
.yb2{bottom:154.998596px;}
.y20e{bottom:155.558557px;}
.y1d4{bottom:156.058806px;}
.y57{bottom:159.844781px;}
.y24d{bottom:160.303209px;}
.y286{bottom:160.415512px;}
.y17b{bottom:160.704741px;}
.y221{bottom:162.204741px;}
.y2d6{bottom:162.210000px;}
.y2d5{bottom:163.710000px;}
.y23{bottom:164.597248px;}
.yfb{bottom:166.041445px;}
.y80{bottom:168.068403px;}
.yb3{bottom:168.687000px;}
.y20d{bottom:172.815307px;}
.y1d3{bottom:173.315556px;}
.y24c{bottom:174.175209px;}
.y285{bottom:174.287512px;}
.yb7{bottom:176.200802px;}
.y56{bottom:177.101531px;}
.y17a{bottom:177.961491px;}
.y2d4{bottom:178.710000px;}
.y220{bottom:179.461491px;}
.y1e3{bottom:180.813000px;}
.yfa{bottom:183.298195px;}
.yc3{bottom:185.157154px;}
.yb9{bottom:185.157303px;}
.y7f{bottom:185.311642px;}
.y24b{bottom:188.047209px;}
.y284{bottom:188.159512px;}
.y20c{bottom:190.072057px;}
.y1d2{bottom:190.572306px;}
.yce{bottom:190.926453px;}
.y1e6{bottom:192.454056px;}
.ybf{bottom:192.581013px;}
.ybb{bottom:192.878403px;}
.y1e8{bottom:193.682396px;}
.y2d3{bottom:193.710000px;}
.yc0{bottom:194.041649px;}
.y55{bottom:194.358281px;}
.yb5{bottom:194.596504px;}
.yc5{bottom:194.599342px;}
.ybd{bottom:194.599503px;}
.y185{bottom:195.052056px;}
.y2d2{bottom:195.210000px;}
.y179{bottom:195.218241px;}
.yca{bottom:196.356606px;}
.yc8{bottom:196.356865px;}
.y21f{bottom:196.718241px;}
.yc2{bottom:199.807975px;}
.yb6{bottom:200.365654px;}
.yc7{bottom:200.368492px;}
.ybe{bottom:200.372433px;}
.yf9{bottom:200.554945px;}
.y1e2{bottom:201.700053px;}
.y24a{bottom:201.919209px;}
.y283{bottom:202.031512px;}
.y1e5{bottom:202.429207px;}
.y1ea{bottom:202.430397px;}
.y1ed{bottom:202.430557px;}
.y7e{bottom:202.568392px;}
.y20b{bottom:207.328807px;}
.y1d1{bottom:207.829056px;}
.y2d1{bottom:210.210000px;}
.y54{bottom:211.615031px;}
.y184{bottom:212.308806px;}
.y178{bottom:212.461491px;}
.y22{bottom:213.058194px;}
.y21e{bottom:213.974991px;}
.y282{bottom:215.903512px;}
.yf8{bottom:217.811695px;}
.y7d{bottom:219.798142px;}
.y20a{bottom:224.585557px;}
.y2d0{bottom:225.210000px;}
.y53{bottom:228.871781px;}
.y183{bottom:229.565556px;}
.y249{bottom:229.675209px;}
.y177{bottom:229.718241px;}
.y281{bottom:229.775512px;}
.y21{bottom:230.314944px;}
.yf7{bottom:235.068445px;}
.yab{bottom:236.040000px;}
.y7c{bottom:237.054892px;}
.yae{bottom:239.684692px;}
.y2cf{bottom:240.210000px;}
.y209{bottom:241.842307px;}
.y280{bottom:243.647512px;}
.y52{bottom:246.128531px;}
.y182{bottom:246.822306px;}
.y176{bottom:246.927741px;}
.y20{bottom:247.571694px;}
.y21d{bottom:249.224991px;}
.yaa{bottom:249.337807px;}
.yb0{bottom:249.674995px;}
.y1dd{bottom:250.557291px;}
.yf6{bottom:252.327290px;}
.y7b{bottom:254.311642px;}
.y2ce{bottom:255.210000px;}
.y2cd{bottom:256.710000px;}
.y248{bottom:257.425209px;}
.y27f{bottom:257.519512px;}
.y208{bottom:259.099057px;}
.yad{bottom:260.189552px;}
.y1db{bottom:261.176561px;}
.y51{bottom:263.385281px;}
.y181{bottom:264.079056px;}
.y175{bottom:264.184491px;}
.y1f{bottom:264.828444px;}
.y1dc{bottom:267.814041px;}
.y27e{bottom:271.391512px;}
.y7a{bottom:271.568392px;}
.y2cc{bottom:271.710000px;}
.y1da{bottom:275.048561px;}
.y207{bottom:276.355807px;}
.y131{bottom:278.200493px;}
.y50{bottom:280.642031px;}
.y130{bottom:280.956459px;}
.y174{bottom:281.441241px;}
.y133{bottom:281.920189px;}
.y1e{bottom:282.085194px;}
.y27d{bottom:285.263512px;}
.y2cb{bottom:286.710000px;}
.y247{bottom:288.622031px;}
.y79{bottom:288.825142px;}
.ya9{bottom:290.605807px;}
.y206{bottom:293.612557px;}
.y4f{bottom:297.898781px;}
.y173{bottom:298.697991px;}
.y27c{bottom:299.135512px;}
.y1d{bottom:299.341944px;}
.y2ca{bottom:301.710000px;}
.y18b{bottom:306.008560px;}
.ya8{bottom:307.862557px;}
.y205{bottom:310.869307px;}
.yf5{bottom:311.643290px;}
.y21c{bottom:312.382807px;}
.y27b{bottom:313.007512px;}
.y4e{bottom:315.155531px;}
.y172{bottom:315.954741px;}
.y246{bottom:316.378031px;}
.y1c{bottom:316.598694px;}
.y2c9{bottom:316.710000px;}
.y78{bottom:324.075142px;}
.ya7{bottom:325.119307px;}
.y27a{bottom:326.879512px;}
.y204{bottom:328.126057px;}
.yf4{bottom:328.893290px;}
.y21b{bottom:329.599057px;}
.y245{bottom:330.250031px;}
.y2c8{bottom:331.710000px;}
.y4d{bottom:332.412281px;}
.y2c7{bottom:333.210000px;}
.y171{bottom:333.211491px;}
.y1f0{bottom:339.229042px;}
.y279{bottom:340.751512px;}
.ya6{bottom:342.376057px;}
.y244{bottom:344.122031px;}
.y203{bottom:345.382807px;}
.yf3{bottom:346.143290px;}
.y21a{bottom:346.855807px;}
.y2c6{bottom:348.210000px;}
.y4c{bottom:349.669031px;}
.y170{bottom:350.468241px;}
.y1b{bottom:351.848694px;}
.y278{bottom:354.623512px;}
.ya5{bottom:359.632807px;}
.y77{bottom:360.075142px;}
.y202{bottom:362.619307px;}
.y2c5{bottom:363.210000px;}
.yf2{bottom:363.393290px;}
.y219{bottom:364.112557px;}
.y4b{bottom:366.925781px;}
.y16f{bottom:367.718241px;}
.y277{bottom:368.495512px;}
.y243{bottom:371.878031px;}
.ya4{bottom:376.889557px;}
.y2c4{bottom:378.210000px;}
.y201{bottom:379.876057px;}
.yf1{bottom:380.643290px;}
.y218{bottom:381.369307px;}
.y276{bottom:382.367512px;}
.y4a{bottom:384.182531px;}
.y16e{bottom:384.968241px;}
.y242{bottom:385.750031px;}
.y2c3{bottom:393.210000px;}
.y275{bottom:396.239512px;}
.y16a{bottom:396.474014px;}
.y200{bottom:397.132807px;}
.yf0{bottom:397.893146px;}
.y217{bottom:398.626057px;}
.y241{bottom:399.622031px;}
.y49{bottom:401.439281px;}
.y16c{bottom:402.224991px;}
.y1a{bottom:405.754944px;}
.y22e{bottom:407.833056px;}
.y2c2{bottom:408.210000px;}
.y274{bottom:410.111512px;}
.ya3{bottom:412.139557px;}
.y1ff{bottom:414.389557px;}
.y2c1{bottom:414.960000px;}
.y168{bottom:415.830002px;}
.y216{bottom:415.882807px;}
.y48{bottom:418.696031px;}
.y76{bottom:418.716281px;}
.y167{bottom:419.461491px;}
.y169{bottom:419.474991px;}
.y191{bottom:421.288513px;}
.y22d{bottom:421.705056px;}
.y19{bottom:423.011694px;}
.y127{bottom:423.773987px;}
.y198{bottom:423.869568px;}
.y273{bottom:423.983512px;}
.y240{bottom:427.378031px;}
.y12b{bottom:427.510071px;}
.y215{bottom:433.139557px;}
.y129{bottom:433.920593px;}
.y2a1{bottom:435.210000px;}
.y194{bottom:435.344559px;}
.y47{bottom:435.952781px;}
.y75{bottom:435.973031px;}
.y197{bottom:436.572739px;}
.y166{bottom:436.718241px;}
.y126{bottom:437.481308px;}
.y272{bottom:437.855512px;}
.y23f{bottom:441.250031px;}
.y190{bottom:443.602057px;}
.y193{bottom:445.319687px;}
.y19b{bottom:445.320923px;}
.y12a{bottom:446.961731px;}
.y12d{bottom:450.084915px;}
.y15f{bottom:450.330002px;}
.y271{bottom:451.727512px;}
.ya2{bottom:452.605944px;}
.y46{bottom:453.209531px;}
.y74{bottom:453.229781px;}
.y161{bottom:453.974854px;}
.y165{bottom:453.974991px;}
.y2a0{bottom:455.460000px;}
.y18{bottom:457.510944px;}
.y19c{bottom:457.795448px;}
.y163{bottom:458.970016px;}
.y270{bottom:465.599512px;}
.y214{bottom:466.297052px;}
.y196{bottom:467.285110px;}
.y22c{bottom:468.457056px;}
.ya1{bottom:469.862694px;}
.y45{bottom:470.466281px;}
.y73{bottom:470.486531px;}
.y15e{bottom:471.110241px;}
.y17{bottom:474.767694px;}
.y29f{bottom:475.710000px;}
.y26f{bottom:479.471512px;}
.y213{bottom:480.169052px;}
.y22b{bottom:482.329056px;}
.y226{bottom:483.229065px;}
.ya0{bottom:487.119444px;}
.y23e{bottom:487.702781px;}
.y44{bottom:487.723031px;}
.y72{bottom:487.743281px;}
.y11d{bottom:487.748978px;}
.y15d{bottom:488.366991px;}
.y124{bottom:491.274902px;}
.y16{bottom:492.024444px;}
.y26e{bottom:493.343512px;}
.y18f{bottom:493.876057px;}
.y125{bottom:495.190063px;}
.y2c0{bottom:495.960000px;}
.y11f{bottom:498.090591px;}
.y11c{bottom:501.531143px;}
.y9f{bottom:504.376194px;}
.y23d{bottom:504.959531px;}
.y43{bottom:504.979781px;}
.y71{bottom:504.993281px;}
.y15c{bottom:505.623741px;}
.y26d{bottom:507.215512px;}
.y121{bottom:508.675049px;}
.y15{bottom:509.281194px;}
.y18e{bottom:511.132807px;}
.y29e{bottom:516.210000px;}
.y26c{bottom:521.087512px;}
.y9e{bottom:521.632944px;}
.y23c{bottom:522.216281px;}
.y42{bottom:522.236531px;}
.y70{bottom:522.243281px;}
.y15b{bottom:522.880491px;}
.y14{bottom:526.537944px;}
.y18d{bottom:528.382944px;}
.y96{bottom:533.731522px;}
.y26b{bottom:534.959512px;}
.y2bf{bottom:536.460000px;}
.y98{bottom:538.877563px;}
.y9d{bottom:538.889694px;}
.y6f{bottom:539.405531px;}
.y23b{bottom:539.473031px;}
.y41{bottom:539.493281px;}
.y15a{bottom:540.137241px;}
.yef{bottom:543.243143px;}
.y13{bottom:543.794694px;}
.y18c{bottom:545.639694px;}
.y26a{bottom:548.831512px;}
.y95{bottom:556.126194px;}
.y40{bottom:556.615031px;}
.y6e{bottom:556.662281px;}
.y29d{bottom:556.710000px;}
.y23a{bottom:556.729781px;}
.y1cf{bottom:556.743281px;}
.y159{bottom:557.393991px;}
.yee{bottom:560.493143px;}
.y12{bottom:561.051444px;}
.y269{bottom:562.703512px;}
.y94{bottom:573.382944px;}
.y3f{bottom:573.871781px;}
.y6d{bottom:573.919031px;}
.y1fd{bottom:573.939281px;}
.y239{bottom:573.986531px;}
.y1ce{bottom:573.993281px;}
.y158{bottom:574.650741px;}
.y268{bottom:576.575512px;}
.y2be{bottom:576.960000px;}
.yed{bottom:577.755308px;}
.y11{bottom:578.308194px;}
.y267{bottom:590.447512px;}
.y93{bottom:590.626194px;}
.y3e{bottom:591.128531px;}
.y6c{bottom:591.175781px;}
.y1fc{bottom:591.196031px;}
.y1cd{bottom:591.223031px;}
.y238{bottom:591.243281px;}
.y157{bottom:591.907491px;}
.y10{bottom:595.564944px;}
.y29c{bottom:597.210000px;}
.y19e{bottom:598.417032px;}
.y10b{bottom:603.625488px;}
.y266{bottom:604.319512px;}
.y92{bottom:607.882944px;}
.y3d{bottom:608.385281px;}
.y6b{bottom:608.432531px;}
.y1fb{bottom:608.452781px;}
.y1cc{bottom:608.479781px;}
.y237{bottom:608.493281px;}
.y156{bottom:609.164241px;}
.y114{bottom:609.369919px;}
.y10e{bottom:611.874893px;}
.y19d{bottom:612.289032px;}
.yf{bottom:612.821694px;}
.y2bd{bottom:617.460000px;}
.y265{bottom:618.191512px;}
.y10d{bottom:618.287842px;}
.y10a{bottom:618.381317px;}
.y18a{bottom:620.929047px;}
.y116{bottom:621.856796px;}
.y119{bottom:621.856934px;}
.y110{bottom:621.864441px;}
.y1bf{bottom:622.736531px;}
.y2bc{bottom:624.210000px;}
.y91{bottom:625.132944px;}
.y3c{bottom:625.642031px;}
.y6a{bottom:625.689281px;}
.y236{bottom:625.696031px;}
.y1fa{bottom:625.709531px;}
.y2bb{bottom:625.710000px;}
.y1b6{bottom:625.729781px;}
.y1cb{bottom:625.736531px;}
.y155{bottom:626.420991px;}
.ye{bottom:630.078444px;}
.y112{bottom:630.761536px;}
.y264{bottom:632.063512px;}
.y1be{bottom:639.993281px;}
.y2ba{bottom:640.710000px;}
.y90{bottom:642.382944px;}
.y3b{bottom:642.898781px;}
.y69{bottom:642.946031px;}
.y235{bottom:642.952781px;}
.y1f9{bottom:642.966281px;}
.y1b5{bottom:642.986531px;}
.y1ca{bottom:642.993281px;}
.y154{bottom:643.677741px;}
.y263{bottom:645.935512px;}
.yd{bottom:647.335194px;}
.y2b9{bottom:655.710000px;}
.y2b8{bottom:657.210000px;}
.y1bd{bottom:657.250031px;}
.y8f{bottom:659.632944px;}
.y262{bottom:659.807512px;}
.y3a{bottom:660.155531px;}
.y68{bottom:660.202781px;}
.y234{bottom:660.209531px;}
.y1f8{bottom:660.223031px;}
.y1b4{bottom:660.243281px;}
.y153{bottom:660.934491px;}
.yec{bottom:661.061558px;}
.yc{bottom:664.591944px;}
.y2b7{bottom:672.210000px;}
.y261{bottom:673.679512px;}
.y8e{bottom:676.889694px;}
.y39{bottom:677.412281px;}
.y67{bottom:677.459531px;}
.y233{bottom:677.466281px;}
.y1f7{bottom:677.479781px;}
.y1b3{bottom:677.493281px;}
.y152{bottom:678.191241px;}
.yeb{bottom:678.318308px;}
.yb{bottom:681.848694px;}
.y2b6{bottom:687.210000px;}
.y260{bottom:687.551512px;}
.y1bc{bottom:692.500031px;}
.y38{bottom:694.669031px;}
.y1c8{bottom:694.702781px;}
.y66{bottom:694.716281px;}
.y232{bottom:694.723031px;}
.y1b2{bottom:694.736531px;}
.y29b{bottom:695.345531px;}
.y151{bottom:695.447991px;}
.yea{bottom:695.554808px;}
.y1c9{bottom:700.454306px;}
.y25f{bottom:701.423512px;}
.y2b5{bottom:702.210000px;}
.y29a{bottom:709.217531px;}
.y37{bottom:711.925781px;}
.y1c7{bottom:711.959531px;}
.y65{bottom:711.973031px;}
.y231{bottom:711.979781px;}
.y1b1{bottom:711.993281px;}
.y150{bottom:712.704741px;}
.ye9{bottom:712.811558px;}
.y25e{bottom:715.295512px;}
.y2b4{bottom:717.210000px;}
.y1ab{bottom:725.443497px;}
.ye3{bottom:725.509048px;}
.y25d{bottom:729.167512px;}
.y36{bottom:729.182531px;}
.y1f6{bottom:729.202781px;}
.y1c6{bottom:729.216281px;}
.y64{bottom:729.229781px;}
.y230{bottom:729.236531px;}
.y1ad{bottom:729.238037px;}
.y1aa{bottom:729.243281px;}
.y1b0{bottom:729.250031px;}
.ya{bottom:729.587702px;}
.y14f{bottom:729.961491px;}
.ye8{bottom:730.068308px;}
.y1af{bottom:731.735229px;}
.y2b3{bottom:732.210000px;}
.y2b2{bottom:733.710000px;}
.y299{bottom:736.973531px;}
.y1a3{bottom:741.343506px;}
.y25c{bottom:743.039512px;}
.y9{bottom:743.459702px;}
.y35{bottom:746.439281px;}
.y1f5{bottom:746.459531px;}
.y1bb{bottom:746.466281px;}
.y1c5{bottom:746.473031px;}
.y1a2{bottom:746.479781px;}
.y63{bottom:746.486531px;}
.y1a5{bottom:746.488037px;}
.y22f{bottom:746.493281px;}
.y1a9{bottom:746.500031px;}
.y1d9{bottom:747.109039px;}
.y14e{bottom:747.218241px;}
.ye7{bottom:747.314532px;}
.y2b1{bottom:748.710000px;}
.y1a8{bottom:748.985229px;}
.y298{bottom:750.845531px;}
.y25b{bottom:756.911512px;}
.y34{bottom:763.696031px;}
.y2b0{bottom:763.710000px;}
.y1f4{bottom:763.716281px;}
.y1ba{bottom:763.723031px;}
.y1c4{bottom:763.729781px;}
.y1a1{bottom:763.736531px;}
.y62{bottom:763.743281px;}
.y14d{bottom:764.468287px;}
.y297{bottom:764.717531px;}
.y25a{bottom:770.783512px;}
.yfe{bottom:773.200470px;}
.y105{bottom:776.108093px;}
.y296{bottom:778.589531px;}
.y2af{bottom:778.710000px;}
.y33{bottom:780.952781px;}
.y1f3{bottom:780.973031px;}
.y1b9{bottom:780.979781px;}
.y61{bottom:780.986531px;}
.y1a0{bottom:780.993281px;}
.y8{bottom:781.231200px;}
.y14c{bottom:781.725037px;}
.y259{bottom:784.655512px;}
.y102{bottom:785.680023px;}
.yfd{bottom:788.965934px;}
.y295{bottom:792.461531px;}
.y2ae{bottom:793.710000px;}
.y100{bottom:795.655243px;}
.y106{bottom:795.656067px;}
.y32{bottom:798.209531px;}
.y1f2{bottom:798.229781px;}
.y1b8{bottom:798.236531px;}
.y60{bottom:798.243281px;}
.y258{bottom:798.527512px;}
.y108{bottom:802.081970px;}
.y101{bottom:803.924071px;}
.y109{bottom:803.924895px;}
.y294{bottom:806.333531px;}
.y2ad{bottom:808.710000px;}
.y2ac{bottom:810.210000px;}
.y257{bottom:812.399512px;}
.y31{bottom:815.466281px;}
.y1c3{bottom:815.473031px;}
.y1f1{bottom:815.486531px;}
.y5f{bottom:815.493281px;}
.y14b{bottom:816.975037px;}
.y293{bottom:820.205531px;}
.y7{bottom:823.663168px;}
.y2ab{bottom:825.210000px;}
.y256{bottom:826.271512px;}
.y30{bottom:832.723031px;}
.y1c2{bottom:832.729781px;}
.ye6{bottom:832.743281px;}
.y292{bottom:834.077531px;}
.y255{bottom:840.143512px;}
.y2aa{bottom:840.210000px;}
.y6{bottom:846.166168px;}
.y291{bottom:847.949531px;}
.y2f{bottom:849.979781px;}
.ye5{bottom:849.986531px;}
.y254{bottom:854.015512px;}
.y2a9{bottom:855.210000px;}
.y14a{bottom:860.650833px;}
.y290{bottom:861.821531px;}
.y2e{bottom:867.236531px;}
.ye4{bottom:867.243281px;}
.y253{bottom:867.887512px;}
.y2a8{bottom:870.210000px;}
.y13e{bottom:872.648987px;}
.y145{bottom:873.269989px;}
.y141{bottom:875.290009px;}
.y28f{bottom:875.693531px;}
.y142{bottom:882.135040px;}
.y144{bottom:882.154083px;}
.y13d{bottom:882.156281px;}
.y148{bottom:882.170380px;}
.y2d{bottom:884.493281px;}
.y2a7{bottom:885.210000px;}
.y140{bottom:888.990784px;}
.y28e{bottom:889.565531px;}
.y5{bottom:899.785217px;}
.y252{bottom:900.062531px;}
.y2a6{bottom:900.210000px;}
.y2a5{bottom:901.710000px;}
.y2c{bottom:901.750031px;}
.y28d{bottom:903.437531px;}
.y2a4{bottom:916.710000px;}
.y3{bottom:926.117136px;}
.y2a3{bottom:931.710000px;}
.y2a{bottom:939.109314px;}
.y2b{bottom:939.985314px;}
.y5e{bottom:939.989089px;}
.y2{bottom:939.989136px;}
.y5d{bottom:940.241089px;}
.y2a2{bottom:945.210000px;}
.h53{height:3.763742px;}
.h60{height:13.800000px;}
.h6e{height:15.900000px;}
.h54{height:16.200000px;}
.h5d{height:16.650000px;}
.h6c{height:17.550000px;}
.h23{height:17.851500px;}
.h61{height:18.150000px;}
.h1c{height:19.274923px;}
.h1e{height:19.474516px;}
.h2b{height:22.012190px;}
.h5b{height:22.500000px;}
.he{height:23.721600px;}
.h30{height:24.298571px;}
.h52{height:25.148642px;}
.h59{height:26.250000px;}
.h5a{height:26.665224px;}
.h19{height:26.699999px;}
.h58{height:26.984568px;}
.h1f{height:27.263993px;}
.h25{height:27.463583px;}
.h6f{height:27.595720px;}
.h33{height:28.005306px;}
.h73{height:28.169400px;}
.h5f{height:28.341779px;}
.h1d{height:30.290960px;}
.h39{height:31.193441px;}
.h78{height:31.364520px;}
.h56{height:33.449999px;}
.h2{height:33.840000px;}
.hd{height:33.888000px;}
.h35{height:34.200264px;}
.h34{height:34.609848px;}
.hc{height:34.687500px;}
.h2f{height:34.712244px;}
.h2e{height:36.504174px;}
.h26{height:37.349999px;}
.h7e{height:37.520508px;}
.h2a{height:38.093635px;}
.h50{height:38.101499px;}
.h4d{height:38.251499px;}
.h2c{height:38.549846px;}
.h28{height:38.663899px;}
.h38{height:38.699999px;}
.h1a{height:38.949031px;}
.h24{height:39.234163px;}
.h47{height:40.198500px;}
.h9{height:40.242000px;}
.h20{height:40.254000px;}
.h75{height:40.266046px;}
.h5c{height:40.268817px;}
.h13{height:40.269000px;}
.h43{height:40.269575px;}
.h40{height:40.284103px;}
.h14{height:40.296000px;}
.h17{height:40.296046px;}
.h41{height:40.323000px;}
.h12{height:40.350000px;}
.h7a{height:40.404000px;}
.h63{height:40.431000px;}
.h7c{height:40.458000px;}
.h5e{height:40.488744px;}
.h15{height:40.620000px;}
.h27{height:40.659823px;}
.h10{height:40.782000px;}
.h32{height:41.084663px;}
.h2d{height:41.478000px;}
.h3{height:42.048000px;}
.h45{height:42.300000px;}
.h3e{height:42.528000px;}
.h6a{height:42.909672px;}
.h66{height:42.921582px;}
.h74{height:42.921608px;}
.h70{height:42.921610px;}
.h65{height:42.921673px;}
.h3a{height:43.277626px;}
.h4f{height:46.584247px;}
.h5{height:46.704000px;}
.h37{height:48.963128px;}
.h62{height:48.986219px;}
.h49{height:49.773142px;}
.hf{height:50.027344px;}
.h3d{height:50.105989px;}
.h55{height:50.106035px;}
.ha{height:50.502000px;}
.h42{height:50.947851px;}
.h44{height:50.961041px;}
.h67{height:50.995777px;}
.h6b{height:50.996327px;}
.h18{height:50.996373px;}
.h21{height:50.996418px;}
.h22{height:50.996510px;}
.h3f{height:51.023327px;}
.h71{height:51.023510px;}
.h7b{height:51.086418px;}
.h72{height:51.158510px;}
.h64{height:51.185437px;}
.h7d{height:51.185510px;}
.h11{height:51.645059px;}
.h76{height:52.500000px;}
.h29{height:52.768383px;}
.h51{height:53.206172px;}
.h16{height:53.640000px;}
.h4{height:54.862258px;}
.h4b{height:54.916423px;}
.h68{height:55.350002px;}
.h3c{height:56.009790px;}
.h79{height:56.056951px;}
.h8{height:56.373000px;}
.h1b{height:57.451173px;}
.h4c{height:57.767743px;}
.h7{height:61.622631px;}
.h6d{height:63.597483px;}
.h31{height:63.843906px;}
.h36{height:63.895104px;}
.hb{height:65.274000px;}
.h6{height:69.108000px;}
.h69{height:71.625158px;}
.h77{height:72.024343px;}
.h57{height:78.468326px;}
.h48{height:86.333120px;}
.h4e{height:102.705271px;}
.h4a{height:104.864657px;}
.h46{height:114.052800px;}
.h3b{height:175.444444px;}
.h1{height:999.000000px;}
.h0{height:999.210000px;}
.we{width:37.694999px;}
.w4{width:63.735003px;}
.w2{width:69.135000px;}
.wb{width:83.491499px;}
.wd{width:89.985003px;}
.w9{width:92.236502px;}
.wa{width:107.549995px;}
.w11{width:111.043499px;}
.wf{width:116.700005px;}
.wc{width:124.168499px;}
.w13{width:168.899998px;}
.w14{width:171.568497px;}
.w8{width:208.003510px;}
.w10{width:220.528496px;}
.w7{width:230.923508px;}
.w3{width:245.580002px;}
.w15{width:255.330002px;}
.w12{width:291.375000px;}
.w6{width:297.554993px;}
.w5{width:487.990494px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x99{left:-2.571447px;}
.x64{left:-1.093506px;}
.x0{left:0.000000px;}
.x65{left:13.311287px;}
.x1e{left:17.434799px;}
.x50{left:22.005455px;}
.x23{left:24.066300px;}
.x1c{left:26.789841px;}
.x52{left:29.510857px;}
.x7e{left:31.392151px;}
.xa6{left:35.093695px;}
.x88{left:42.912163px;}
.x11{left:46.112246px;}
.xa3{left:48.485241px;}
.x25{left:49.713152px;}
.x69{left:51.326981px;}
.x68{left:52.474937px;}
.xe{left:53.811150px;}
.x20{left:56.949142px;}
.x80{left:59.323792px;}
.xc{left:61.735198px;}
.x6{left:65.040000px;}
.x2{left:70.157553px;}
.x7{left:71.220450px;}
.x8{left:72.368402px;}
.x4{left:74.529448px;}
.x8b{left:76.010559px;}
.x9a{left:79.521749px;}
.x82{left:82.204490px;}
.x75{left:84.272987px;}
.x21{left:85.531500px;}
.x9{left:87.171898px;}
.x28{left:89.540846px;}
.x5{left:91.421552px;}
.x85{left:93.071983px;}
.xb{left:95.436150px;}
.x22{left:97.187096px;}
.x93{left:99.701546px;}
.x84{left:101.766289px;}
.xa9{left:102.876755px;}
.x2a{left:107.066408px;}
.x57{left:109.673996px;}
.xd{left:110.960850px;}
.x96{left:111.987906px;}
.x24{left:114.712646px;}
.x58{left:117.163552px;}
.x8d{left:121.330513px;}
.x78{left:123.112495px;}
.x6b{left:124.336029px;}
.x77{left:128.539330px;}
.xf{left:133.614304px;}
.x12{left:136.331703px;}
.xab{left:137.531387px;}
.x6c{left:138.754189px;}
.xa4{left:140.204395px;}
.x26{left:142.649998px;}
.x10{left:144.631348px;}
.x94{left:147.086403px;}
.xa5{left:149.492695px;}
.x5a{left:155.236954px;}
.xa2{left:161.243546px;}
.x27{left:162.454948px;}
.x31{left:165.850061px;}
.xac{left:167.500945px;}
.x7a{left:169.754974px;}
.x95{left:171.926697px;}
.x5c{left:174.379509px;}
.x2b{left:175.435500px;}
.x33{left:178.794748px;}
.x29{left:180.199345px;}
.x9b{left:181.202545px;}
.x8e{left:184.190998px;}
.x70{left:185.624840px;}
.x6f{left:186.772636px;}
.x51{left:188.850002px;}
.x8f{left:192.384293px;}
.x4f{left:193.737305px;}
.x9c{left:194.914192px;}
.x2c{left:199.335933px;}
.xb3{left:200.628456px;}
.xb0{left:201.862495px;}
.x97{left:204.557991px;}
.x60{left:205.753372px;}
.x2d{left:207.360146px;}
.x5f{left:208.872620px;}
.x13{left:210.772047px;}
.x63{left:214.065010px;}
.xb1{left:215.272499px;}
.x61{left:216.381539px;}
.x53{left:218.401199px;}
.x15{left:223.745848px;}
.x71{left:225.525009px;}
.x2f{left:230.049454px;}
.x2e{left:232.639158px;}
.x72{left:234.117142px;}
.x17{left:235.814398px;}
.x39{left:237.214205px;}
.x54{left:239.569359px;}
.xb2{left:242.933990px;}
.x30{left:244.848450px;}
.x34{left:249.466209px;}
.x67{left:252.567146px;}
.x66{left:253.908153px;}
.x32{left:256.508560px;}
.x9e{left:258.378456px;}
.x55{left:261.641693px;}
.x9f{left:264.966156px;}
.x89{left:267.442497px;}
.x35{left:271.064012px;}
.x3c{left:273.235811px;}
.x9d{left:274.416161px;}
.x73{left:276.385506px;}
.x36{left:278.372841px;}
.x56{left:281.405846px;}
.x7c{left:283.410004px;}
.x6a{left:285.102448px;}
.x14{left:286.667542px;}
.x86{left:287.782494px;}
.x7d{left:289.543808px;}
.x37{left:291.596397px;}
.x74{left:295.987495px;}
.x1a{left:297.660004px;}
.x16{left:299.641342px;}
.x1d{left:307.818008px;}
.x1b{left:310.639800px;}
.x8a{left:314.482658px;}
.x18{left:315.737549px;}
.x38{left:317.061150px;}
.x76{left:318.680855px;}
.x59{left:322.378510px;}
.x87{left:323.566795px;}
.x42{left:326.843988px;}
.xa7{left:329.771255px;}
.x7f{left:332.432991px;}
.x3a{left:334.696060px;}
.x44{left:335.848932px;}
.x1f{left:340.879509px;}
.x3e{left:343.822792px;}
.x3b{left:346.356010px;}
.x5b{left:348.555290px;}
.x8c{left:351.040352px;}
.xa8{left:354.490196px;}
.x6d{left:358.515152px;}
.x79{left:361.867493px;}
.x3d{left:363.882156px;}
.x5d{left:367.617004px;}
.x81{left:369.908844px;}
.x83{left:371.187149px;}
.x3f{left:372.802643px;}
.x5e{left:380.604309px;}
.x6e{left:382.977150px;}
.x40{left:386.024526px;}
.x46{left:387.130182px;}
.xa0{left:389.650674px;}
.xaa{left:393.059555px;}
.x43{left:395.212784px;}
.x41{left:399.964371px;}
.x48{left:406.328562px;}
.x7b{left:411.250946px;}
.xa1{left:412.750488px;}
.x62{left:420.037628px;}
.xb4{left:423.928665px;}
.x98{left:425.086945px;}
.x4a{left:430.387064px;}
.xad{left:439.176910px;}
.x45{left:447.499969px;}
.x4d{left:457.354654px;}
.xae{left:473.746788px;}
.x47{left:483.763504px;}
.x1{left:485.858414px;}
.xaf{left:492.123473px;}
.x49{left:496.986877px;}
.x4b{left:521.033386px;}
.x3{left:528.009430px;}
.x4c{left:538.426346px;}
.x90{left:547.046997px;}
.x4e{left:551.722366px;}
.x91{left:564.224396px;}
.xa{left:569.671967px;}
.x19{left:572.284796px;}
.x92{left:584.741409px;}
@media print{
.v1a{vertical-align:-71.726539pt;}
.v17{vertical-align:-60.816569pt;}
.vc{vertical-align:-36.361957pt;}
.v1d{vertical-align:-32.948533pt;}
.v11{vertical-align:-22.847656pt;}
.vd{vertical-align:-20.512533pt;}
.v2{vertical-align:-17.066671pt;}
.v3{vertical-align:-12.186667pt;}
.v18{vertical-align:-10.666667pt;}
.v6{vertical-align:-8.881592pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:4.607992pt;}
.va{vertical-align:6.119466pt;}
.v1c{vertical-align:8.881673pt;}
.v7{vertical-align:9.792033pt;}
.vb{vertical-align:11.074626pt;}
.v4{vertical-align:12.666667pt;}
.v10{vertical-align:13.644415pt;}
.v14{vertical-align:15.207040pt;}
.v19{vertical-align:17.066732pt;}
.v15{vertical-align:19.053871pt;}
.v1{vertical-align:20.266606pt;}
.v8{vertical-align:22.847982pt;}
.v5{vertical-align:26.833049pt;}
.v12{vertical-align:29.400277pt;}
.v9{vertical-align:31.856533pt;}
.v16{vertical-align:35.483093pt;}
.v1b{vertical-align:53.185547pt;}
.v13{vertical-align:57.070964pt;}
.vf{vertical-align:119.808551pt;}
.ls59{letter-spacing:-1.489600pt;}
.ls4d{letter-spacing:-1.312859pt;}
.ls39{letter-spacing:-0.709333pt;}
.ls78{letter-spacing:-0.304000pt;}
.lsb{letter-spacing:-0.202761pt;}
.ls81{letter-spacing:-0.152000pt;}
.ls22{letter-spacing:-0.101380pt;}
.ls24{letter-spacing:-0.101333pt;}
.ls82{letter-spacing:-0.050667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000006pt;}
.ls27{letter-spacing:0.000008pt;}
.ls6a{letter-spacing:0.000011pt;}
.ls69{letter-spacing:0.000014pt;}
.ls46{letter-spacing:0.000016pt;}
.ls4{letter-spacing:0.000024pt;}
.ls3d{letter-spacing:0.000049pt;}
.ls6{letter-spacing:0.000065pt;}
.ls3{letter-spacing:0.000067pt;}
.ls47{letter-spacing:0.000098pt;}
.ls5{letter-spacing:0.000179pt;}
.ls45{letter-spacing:0.000391pt;}
.ls6f{letter-spacing:0.000423pt;}
.ls20{letter-spacing:0.000671pt;}
.ls33{letter-spacing:0.000898pt;}
.ls11{letter-spacing:0.003997pt;}
.ls2b{letter-spacing:0.006113pt;}
.ls3e{letter-spacing:0.009463pt;}
.ls80{letter-spacing:0.014388pt;}
.ls4b{letter-spacing:0.019957pt;}
.ls53{letter-spacing:0.020691pt;}
.ls16{letter-spacing:0.022491pt;}
.ls15{letter-spacing:0.022495pt;}
.ls19{letter-spacing:0.022573pt;}
.ls18{letter-spacing:0.024119pt;}
.ls84{letter-spacing:0.030133pt;}
.ls9a{letter-spacing:0.030187pt;}
.ls3a{letter-spacing:0.035483pt;}
.ls4c{letter-spacing:0.045202pt;}
.ls26{letter-spacing:0.045509pt;}
.ls2e{letter-spacing:0.050690pt;}
.ls7a{letter-spacing:0.064030pt;}
.ls7b{letter-spacing:0.064518pt;}
.ls55{letter-spacing:0.070965pt;}
.ls79{letter-spacing:0.101333pt;}
.ls83{letter-spacing:0.106400pt;}
.ls7c{letter-spacing:0.152000pt;}
.ls42{letter-spacing:0.152070pt;}
.ls7e{letter-spacing:0.177596pt;}
.ls9f{letter-spacing:0.196800pt;}
.ls71{letter-spacing:0.197576pt;}
.ls9c{letter-spacing:0.204107pt;}
.ls88{letter-spacing:0.204160pt;}
.lsa0{letter-spacing:0.206720pt;}
.ls93{letter-spacing:0.249173pt;}
.ls70{letter-spacing:0.253333pt;}
.ls8f{letter-spacing:0.254400pt;}
.ls96{letter-spacing:0.291467pt;}
.ls85{letter-spacing:0.299147pt;}
.ls7f{letter-spacing:0.304000pt;}
.ls94{letter-spacing:0.311947pt;}
.ls9e{letter-spacing:0.321227pt;}
.ls77{letter-spacing:0.354667pt;}
.ls8c{letter-spacing:0.397120pt;}
.ls76{letter-spacing:0.405333pt;}
.ls99{letter-spacing:0.431093pt;}
.ls92{letter-spacing:0.431413pt;}
.ls74{letter-spacing:0.448747pt;}
.ls75{letter-spacing:0.449235pt;}
.ls8e{letter-spacing:0.454187pt;}
.ls7d{letter-spacing:0.456000pt;}
.ls97{letter-spacing:0.457973pt;}
.ls61{letter-spacing:0.495590pt;}
.ls63{letter-spacing:0.495947pt;}
.ls56{letter-spacing:0.495963pt;}
.ls67{letter-spacing:0.495964pt;}
.ls4f{letter-spacing:0.495996pt;}
.ls5f{letter-spacing:0.496275pt;}
.ls52{letter-spacing:0.496281pt;}
.ls57{letter-spacing:0.496321pt;}
.ls58{letter-spacing:0.496403pt;}
.ls5e{letter-spacing:0.496484pt;}
.ls6d{letter-spacing:0.496523pt;}
.ls50{letter-spacing:0.496525pt;}
.ls5a{letter-spacing:0.496533pt;}
.ls65{letter-spacing:0.496566pt;}
.ls5d{letter-spacing:0.496647pt;}
.ls51{letter-spacing:0.497054pt;}
.ls6e{letter-spacing:0.497058pt;}
.ls72{letter-spacing:0.500228pt;}
.ls8d{letter-spacing:0.513547pt;}
.ls6b{letter-spacing:0.582652pt;}
.ls73{letter-spacing:0.658667pt;}
.ls95{letter-spacing:0.702453pt;}
.ls64{letter-spacing:0.708753pt;}
.ls68{letter-spacing:0.709217pt;}
.ls5c{letter-spacing:0.709318pt;}
.ls4e{letter-spacing:0.709333pt;}
.ls62{letter-spacing:0.709867pt;}
.ls66{letter-spacing:0.714400pt;}
.ls90{letter-spacing:0.737387pt;}
.ls60{letter-spacing:0.760000pt;}
.ls91{letter-spacing:0.829173pt;}
.ls98{letter-spacing:0.858613pt;}
.ls5b{letter-spacing:0.861333pt;}
.ls38{letter-spacing:0.861732pt;}
.ls8b{letter-spacing:1.010133pt;}
.ls89{letter-spacing:1.017013pt;}
.ls9b{letter-spacing:1.055573pt;}
.ls8a{letter-spacing:1.134453pt;}
.ls9d{letter-spacing:1.233707pt;}
.ls86{letter-spacing:1.240800pt;}
.ls87{letter-spacing:1.255360pt;}
.ls3b{letter-spacing:1.419307pt;}
.lsf{letter-spacing:1.454789pt;}
.ls12{letter-spacing:1.774864pt;}
.ls10{letter-spacing:1.976915pt;}
.ls8{letter-spacing:2.306373pt;}
.lsa{letter-spacing:2.639967pt;}
.ls48{letter-spacing:2.658647pt;}
.ls31{letter-spacing:2.658651pt;}
.ls54{letter-spacing:2.679290pt;}
.ls9{letter-spacing:2.687452pt;}
.ls40{letter-spacing:2.714821pt;}
.ls49{letter-spacing:2.773198pt;}
.ls0{letter-spacing:2.986667pt;}
.ls1a{letter-spacing:7.045739pt;}
.ls1f{letter-spacing:7.834247pt;}
.ls3c{letter-spacing:8.414562pt;}
.ls43{letter-spacing:8.515942pt;}
.ls2d{letter-spacing:8.996212pt;}
.ls1e{letter-spacing:9.094234pt;}
.ls1b{letter-spacing:10.103072pt;}
.ls2c{letter-spacing:11.253210pt;}
.ls34{letter-spacing:11.303900pt;}
.ls25{letter-spacing:12.606085pt;}
.ls14{letter-spacing:12.776940pt;}
.ls36{letter-spacing:14.041167pt;}
.lsc{letter-spacing:14.091857pt;}
.ls1d{letter-spacing:14.183345pt;}
.ls4a{letter-spacing:15.156350pt;}
.ls2a{letter-spacing:16.626364pt;}
.ls3f{letter-spacing:16.723201pt;}
.ls41{letter-spacing:16.723267pt;}
.ls21{letter-spacing:16.723348pt;}
.ls44{letter-spacing:16.723755pt;}
.ls35{letter-spacing:16.771200pt;}
.ls2f{letter-spacing:16.772742pt;}
.ls29{letter-spacing:16.775874pt;}
.lsd{letter-spacing:16.879814pt;}
.ls1c{letter-spacing:17.172692pt;}
.ls32{letter-spacing:21.910721pt;}
.ls28{letter-spacing:21.912918pt;}
.ls6c{letter-spacing:21.948828pt;}
.lse{letter-spacing:22.557109pt;}
.ls37{letter-spacing:23.317461pt;}
.ls23{letter-spacing:24.534025pt;}
.ls7{letter-spacing:31.421260pt;}
.ls17{letter-spacing:31.583477pt;}
.ls13{letter-spacing:58.115419pt;}
.ls30{letter-spacing:69.749623pt;}
.ws5d{word-spacing:-24.584715pt;}
.ws71{word-spacing:-14.142547pt;}
.wsa3{word-spacing:-14.091857pt;}
.ws80{word-spacing:-14.041167pt;}
.wsa7{word-spacing:-13.376000pt;}
.wscf{word-spacing:-12.920000pt;}
.wsd2{word-spacing:-12.818667pt;}
.ws6{word-spacing:-12.666667pt;}
.ws6e{word-spacing:-12.606085pt;}
.ws5f{word-spacing:-12.565333pt;}
.ws9b{word-spacing:-11.957333pt;}
.wsb3{word-spacing:-11.850667pt;}
.ws9e{word-spacing:-11.354590pt;}
.wsa4{word-spacing:-10.666667pt;}
.ws82{word-spacing:-10.538667pt;}
.ws2{word-spacing:-10.488000pt;}
.ws4{word-spacing:-10.234667pt;}
.ws51{word-spacing:-10.080000pt;}
.ws5{word-spacing:-9.728000pt;}
.wsa2{word-spacing:-9.363200pt;}
.wscd{word-spacing:-8.973067pt;}
.ws1e{word-spacing:-8.866667pt;}
.ws1{word-spacing:-8.362667pt;}
.wsce{word-spacing:-8.192000pt;}
.ws7{word-spacing:-7.466667pt;}
.wsa1{word-spacing:-7.377067pt;}
.ws3{word-spacing:-7.341600pt;}
.ws59{word-spacing:-6.333333pt;}
.wsa0{word-spacing:-5.333333pt;}
.wsb{word-spacing:-1.824000pt;}
.ws9{word-spacing:-1.680000pt;}
.wsc9{word-spacing:-1.266667pt;}
.wsd1{word-spacing:-1.216000pt;}
.ws67{word-spacing:-1.114667pt;}
.wsc4{word-spacing:-1.064000pt;}
.wsd3{word-spacing:-0.810667pt;}
.ws4a{word-spacing:-0.760000pt;}
.wsac{word-spacing:-0.709333pt;}
.wsca{word-spacing:-0.658667pt;}
.wscb{word-spacing:-0.608000pt;}
.wsc8{word-spacing:-0.557333pt;}
.wsd0{word-spacing:-0.506667pt;}
.ws14{word-spacing:-0.456000pt;}
.wsa{word-spacing:-0.426667pt;}
.ws77{word-spacing:-0.405333pt;}
.wsf0{word-spacing:-0.384000pt;}
.ws32{word-spacing:-0.354667pt;}
.wse2{word-spacing:-0.341333pt;}
.wsba{word-spacing:-0.304000pt;}
.wsf1{word-spacing:-0.298667pt;}
.wsd8{word-spacing:-0.256000pt;}
.ws87{word-spacing:-0.253333pt;}
.wsc1{word-spacing:-0.202667pt;}
.wsee{word-spacing:-0.170667pt;}
.ws92{word-spacing:-0.152000pt;}
.ws102{word-spacing:-0.128000pt;}
.ws2f{word-spacing:-0.101333pt;}
.ws72{word-spacing:-0.070965pt;}
.ws5c{word-spacing:-0.050690pt;}
.ws6c{word-spacing:-0.050667pt;}
.ws60{word-spacing:-0.045509pt;}
.ws0{word-spacing:-0.042667pt;}
.ws3d{word-spacing:-0.035483pt;}
.ws8{word-spacing:0.000000pt;}
.ws52{word-spacing:0.050667pt;}
.ws103{word-spacing:0.075307pt;}
.ws119{word-spacing:0.075520pt;}
.ws38{word-spacing:0.101333pt;}
.ws66{word-spacing:0.101380pt;}
.ws5b{word-spacing:0.152000pt;}
.ws70{word-spacing:0.152070pt;}
.ws7b{word-spacing:0.202667pt;}
.ws58{word-spacing:0.202761pt;}
.ws20{word-spacing:0.253333pt;}
.wsf4{word-spacing:0.256000pt;}
.ws4f{word-spacing:0.304000pt;}
.ws56{word-spacing:0.354667pt;}
.wsea{word-spacing:0.384000pt;}
.ws97{word-spacing:0.405333pt;}
.ws93{word-spacing:0.456000pt;}
.wse6{word-spacing:0.469333pt;}
.ws11e{word-spacing:0.492053pt;}
.wsb4{word-spacing:0.506667pt;}
.ws11b{word-spacing:0.510240pt;}
.ws107{word-spacing:0.510453pt;}
.ws11f{word-spacing:0.516800pt;}
.wsf2{word-spacing:0.554667pt;}
.wsc3{word-spacing:0.557333pt;}
.wse4{word-spacing:0.597333pt;}
.ws112{word-spacing:0.622880pt;}
.ws10e{word-spacing:0.636000pt;}
.wsed{word-spacing:0.640000pt;}
.ws23{word-spacing:0.658667pt;}
.ws69{word-spacing:0.709333pt;}
.ws115{word-spacing:0.728640pt;}
.ws104{word-spacing:0.747893pt;}
.ws95{word-spacing:0.760000pt;}
.wsbc{word-spacing:0.768000pt;}
.ws113{word-spacing:0.779893pt;}
.ws11d{word-spacing:0.803093pt;}
.ws4c{word-spacing:0.810667pt;}
.wsc2{word-spacing:0.861333pt;}
.ws3f{word-spacing:0.912000pt;}
.wsd{word-spacing:0.962667pt;}
.ws10b{word-spacing:0.992853pt;}
.ws31{word-spacing:1.013333pt;}
.ws4d{word-spacing:1.064000pt;}
.wsfc{word-spacing:1.066667pt;}
.ws118{word-spacing:1.077707pt;}
.ws111{word-spacing:1.078507pt;}
.ws10d{word-spacing:1.135467pt;}
.ws116{word-spacing:1.144907pt;}
.wsb7{word-spacing:1.165333pt;}
.ws2d{word-spacing:1.216000pt;}
.ws7c{word-spacing:1.266667pt;}
.ws9d{word-spacing:1.277376pt;}
.ws10c{word-spacing:1.283787pt;}
.ws55{word-spacing:1.317333pt;}
.wsc5{word-spacing:1.368000pt;}
.ws2e{word-spacing:1.469333pt;}
.ws1f{word-spacing:1.520000pt;}
.ws29{word-spacing:1.570667pt;}
.wsdf{word-spacing:1.578667pt;}
.ws91{word-spacing:1.621333pt;}
.wse7{word-spacing:1.664000pt;}
.ws21{word-spacing:1.672000pt;}
.ws8f{word-spacing:1.722667pt;}
.ws114{word-spacing:1.756107pt;}
.wse{word-spacing:1.773333pt;}
.ws94{word-spacing:1.824000pt;}
.ws10f{word-spacing:1.843520pt;}
.wsbb{word-spacing:1.874667pt;}
.ws33{word-spacing:1.976000pt;}
.ws27{word-spacing:2.026667pt;}
.ws110{word-spacing:2.072907pt;}
.ws39{word-spacing:2.077333pt;}
.wsef{word-spacing:2.090667pt;}
.wsb0{word-spacing:2.128000pt;}
.ws117{word-spacing:2.146560pt;}
.wsdc{word-spacing:2.176000pt;}
.ws15{word-spacing:2.178667pt;}
.wse3{word-spacing:2.218667pt;}
.ws42{word-spacing:2.229333pt;}
.wse0{word-spacing:2.261333pt;}
.ws9a{word-spacing:2.280000pt;}
.wsf5{word-spacing:2.304000pt;}
.ws37{word-spacing:2.330667pt;}
.ws4e{word-spacing:2.381333pt;}
.ws68{word-spacing:2.432000pt;}
.ws86{word-spacing:2.482667pt;}
.ws10a{word-spacing:2.525387pt;}
.ws4b{word-spacing:2.533333pt;}
.ws108{word-spacing:2.542507pt;}
.wsfa{word-spacing:2.560000pt;}
.wsb1{word-spacing:2.584000pt;}
.wsff{word-spacing:2.602667pt;}
.wsf{word-spacing:2.634667pt;}
.ws11a{word-spacing:2.638933pt;}
.ws65{word-spacing:2.685333pt;}
.ws30{word-spacing:2.786667pt;}
.wse8{word-spacing:2.816000pt;}
.ws109{word-spacing:2.836107pt;}
.wsa5{word-spacing:2.837333pt;}
.wsd7{word-spacing:2.858667pt;}
.wsb6{word-spacing:2.938667pt;}
.wse9{word-spacing:2.986667pt;}
.wsc{word-spacing:2.989333pt;}
.ws101{word-spacing:3.072000pt;}
.ws11c{word-spacing:3.084213pt;}
.ws105{word-spacing:3.101973pt;}
.wsf9{word-spacing:3.114667pt;}
.ws106{word-spacing:3.138400pt;}
.ws10{word-spacing:3.141333pt;}
.ws5a{word-spacing:3.192000pt;}
.ws2b{word-spacing:3.242667pt;}
.wsf6{word-spacing:3.285333pt;}
.wse1{word-spacing:3.328000pt;}
.ws3e{word-spacing:3.344000pt;}
.ws41{word-spacing:3.394667pt;}
.ws7f{word-spacing:3.445333pt;}
.ws34{word-spacing:3.496000pt;}
.wsec{word-spacing:3.541333pt;}
.ws78{word-spacing:3.546667pt;}
.wsab{word-spacing:3.597333pt;}
.wsd5{word-spacing:3.626667pt;}
.ws84{word-spacing:3.648000pt;}
.ws24{word-spacing:3.698667pt;}
.ws28{word-spacing:3.749333pt;}
.ws100{word-spacing:3.840000pt;}
.ws75{word-spacing:3.850667pt;}
.wsf7{word-spacing:3.968000pt;}
.ws22{word-spacing:4.002667pt;}
.ws85{word-spacing:4.053333pt;}
.ws26{word-spacing:4.104000pt;}
.wsfd{word-spacing:4.138667pt;}
.ws1c{word-spacing:4.154667pt;}
.wsbf{word-spacing:4.205333pt;}
.ws50{word-spacing:4.256000pt;}
.wsdd{word-spacing:4.266667pt;}
.ws43{word-spacing:4.357333pt;}
.ws9f{word-spacing:4.394667pt;}
.ws2c{word-spacing:4.408000pt;}
.ws48{word-spacing:4.458667pt;}
.ws53{word-spacing:4.560000pt;}
.wsde{word-spacing:4.650667pt;}
.ws40{word-spacing:4.661333pt;}
.ws63{word-spacing:4.712000pt;}
.wsd6{word-spacing:4.736000pt;}
.wsc0{word-spacing:4.762667pt;}
.ws76{word-spacing:4.813333pt;}
.wsd4{word-spacing:4.949333pt;}
.wsa8{word-spacing:4.965333pt;}
.ws96{word-spacing:5.016000pt;}
.wse5{word-spacing:5.034667pt;}
.wsc6{word-spacing:5.117333pt;}
.ws61{word-spacing:5.218667pt;}
.ws12{word-spacing:5.269333pt;}
.wsf3{word-spacing:5.290667pt;}
.ws1a{word-spacing:5.320000pt;}
.ws3c{word-spacing:5.370667pt;}
.ws3a{word-spacing:5.421333pt;}
.wsf8{word-spacing:5.504000pt;}
.ws2a{word-spacing:5.522667pt;}
.ws8d{word-spacing:5.573333pt;}
.wseb{word-spacing:5.589333pt;}
.wsb8{word-spacing:5.624000pt;}
.ws36{word-spacing:5.674667pt;}
.ws3b{word-spacing:5.826667pt;}
.ws11{word-spacing:5.877333pt;}
.wscc{word-spacing:5.888000pt;}
.ws83{word-spacing:5.978667pt;}
.ws44{word-spacing:6.029333pt;}
.ws46{word-spacing:6.130667pt;}
.ws1b{word-spacing:6.181333pt;}
.wsdb{word-spacing:6.314667pt;}
.ws18{word-spacing:6.333333pt;}
.ws8c{word-spacing:6.434667pt;}
.ws89{word-spacing:6.485333pt;}
.wsc7{word-spacing:6.536000pt;}
.wsd9{word-spacing:6.570667pt;}
.wsb5{word-spacing:6.586667pt;}
.ws8b{word-spacing:6.637333pt;}
.ws25{word-spacing:6.738667pt;}
.wsfb{word-spacing:6.826667pt;}
.wsaa{word-spacing:6.890667pt;}
.ws6b{word-spacing:6.992000pt;}
.ws16{word-spacing:7.042667pt;}
.ws74{word-spacing:7.194667pt;}
.ws35{word-spacing:7.245333pt;}
.ws62{word-spacing:7.296000pt;}
.ws6a{word-spacing:7.549333pt;}
.ws45{word-spacing:7.600000pt;}
.ws7d{word-spacing:7.650667pt;}
.ws7e{word-spacing:7.752000pt;}
.wsfe{word-spacing:7.850667pt;}
.wsae{word-spacing:7.904000pt;}
.ws6d{word-spacing:7.954667pt;}
.ws49{word-spacing:8.056000pt;}
.ws90{word-spacing:8.208000pt;}
.ws81{word-spacing:8.384148pt;}
.wsaf{word-spacing:8.410667pt;}
.ws99{word-spacing:8.461333pt;}
.ws7a{word-spacing:8.512000pt;}
.wsda{word-spacing:8.533333pt;}
.ws88{word-spacing:8.816000pt;}
.ws73{word-spacing:8.866667pt;}
.ws54{word-spacing:8.968000pt;}
.ws19{word-spacing:9.170667pt;}
.wsad{word-spacing:9.272000pt;}
.ws8a{word-spacing:9.474667pt;}
.wsb9{word-spacing:9.525333pt;}
.ws47{word-spacing:9.576000pt;}
.ws79{word-spacing:9.626667pt;}
.ws57{word-spacing:9.930667pt;}
.ws13{word-spacing:10.133333pt;}
.wsa9{word-spacing:11.096000pt;}
.wsb2{word-spacing:11.349333pt;}
.ws64{word-spacing:11.501333pt;}
.ws98{word-spacing:11.805333pt;}
.ws5e{word-spacing:12.621843pt;}
.ws8e{word-spacing:13.528000pt;}
.ws9c{word-spacing:13.737026pt;}
.wsbe{word-spacing:14.020891pt;}
.wsbd{word-spacing:14.193237pt;}
.ws6f{word-spacing:16.879814pt;}
.wsa6{word-spacing:17.024000pt;}
.ws17{word-spacing:17.482667pt;}
.ws1d{word-spacing:64.938667pt;}
._25{margin-left:-30.109295pt;}
._24{margin-left:-23.648038pt;}
._14{margin-left:-22.749333pt;}
._1d{margin-left:-21.216594pt;}
._19{margin-left:-20.247467pt;}
._b{margin-left:-18.803745pt;}
._1f{margin-left:-17.371733pt;}
._c{margin-left:-16.314667pt;}
._12{margin-left:-14.762650pt;}
._4{margin-left:-13.866667pt;}
._d{margin-left:-12.659733pt;}
._f{margin-left:-11.138667pt;}
._1e{margin-left:-10.248630pt;}
._17{margin-left:-9.255198pt;}
._16{margin-left:-8.164267pt;}
._13{margin-left:-6.554667pt;}
._23{margin-left:-5.620870pt;}
._3{margin-left:-4.256000pt;}
._28{margin-left:-3.360842pt;}
._1{margin-left:-2.426667pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.305067pt;}
._18{width:2.595989pt;}
._a{width:4.240533pt;}
._27{width:5.159196pt;}
._1a{width:6.448538pt;}
._22{width:8.043199pt;}
._15{width:9.218595pt;}
._11{width:10.298667pt;}
._20{width:11.548353pt;}
._9{width:12.666667pt;}
._29{width:14.136000pt;}
._21{width:15.610663pt;}
._e{width:16.770667pt;}
._5{width:19.840000pt;}
._1c{width:21.432000pt;}
._1b{width:22.854784pt;}
._30{width:23.765333pt;}
._2f{width:24.895468pt;}
._10{width:26.666667pt;}
._2e{width:27.733333pt;}
._26{width:29.333333pt;}
._2d{width:34.098667pt;}
._2b{width:35.770667pt;}
._2c{width:37.910933pt;}
._2a{width:39.329600pt;}
._7{width:50.005329pt;}
._6{width:64.938667pt;}
._8{width:1012.095992pt;}
.fsb{font-size:25.345067pt;}
.fs6{font-size:29.866667pt;}
.fsd{font-size:31.856533pt;}
.fs4{font-size:35.466667pt;}
.fsa{font-size:35.482666pt;}
.fs0{font-size:42.666667pt;}
.fsc{font-size:45.509333pt;}
.fse{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs9{font-size:50.690133pt;}
.fs8{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y199{bottom:0.073975pt;}
.y1e9{bottom:0.099864pt;}
.y9c{bottom:0.143697pt;}
.y9a{bottom:0.145834pt;}
.y104{bottom:0.148682pt;}
.y12f{bottom:0.152669pt;}
.y87{bottom:1.340271pt;}
.y1a6{bottom:1.404663pt;}
.y147{bottom:1.827637pt;}
.ydc{bottom:1.832265pt;}
.y13a{bottom:1.844666pt;}
.y115{bottom:1.937866pt;}
.y16d{bottom:1.943726pt;}
.y123{bottom:3.134155pt;}
.yaf{bottom:3.239727pt;}
.y160{bottom:3.239868pt;}
.y132{bottom:3.306396pt;}
.y1ac{bottom:3.372925pt;}
.y1a4{bottom:4.572917pt;}
.y97{bottom:4.574259pt;}
.y137{bottom:5.013072pt;}
.y164{bottom:7.680013pt;}
.y1ae{bottom:7.813070pt;}
.y149{bottom:7.911458pt;}
.y162{bottom:8.471598pt;}
.y1a7{bottom:9.013061pt;}
.y9b{bottom:9.014364pt;}
.y83{bottom:9.640004pt;}
.y99{bottom:9.805990pt;}
.ycf{bottom:11.796397pt;}
.yb1{bottom:12.119996pt;}
.y103{bottom:12.184733pt;}
.y128{bottom:12.187459pt;}
.y11e{bottom:12.360840pt;}
.y118{bottom:12.403847pt;}
.y11b{bottom:12.403969pt;}
.y146{bottom:14.000977pt;}
.ycd{bottom:14.640269pt;}
.y113{bottom:14.772827pt;}
.y16b{bottom:15.240112pt;}
.y1ec{bottom:15.413845pt;}
.y1ef{bottom:15.414109pt;}
.y29{bottom:16.000000pt;}
.y117{bottom:16.205607pt;}
.y11a{bottom:16.205729pt;}
.y10f{bottom:16.212402pt;}
.y10c{bottom:16.212931pt;}
.y13c{bottom:18.957204pt;}
.y1e4{bottom:19.214406pt;}
.y85{bottom:19.456004pt;}
.yff{bottom:19.959798pt;}
.y107{bottom:19.960531pt;}
.y12e{bottom:20.219198pt;}
.y139{bottom:21.236938pt;}
.y136{bottom:21.239736pt;}
.y192{bottom:21.361043pt;}
.yac{bottom:21.466269pt;}
.y1eb{bottom:22.383738pt;}
.y1ee{bottom:22.384003pt;}
.y143{bottom:22.484049pt;}
.y13f{bottom:22.494303pt;}
.yc1{bottom:22.537466pt;}
.yda{bottom:22.664398pt;}
.ye2{bottom:22.664673pt;}
.yd2{bottom:22.667206pt;}
.yb4{bottom:23.030670pt;}
.yc6{bottom:23.033193pt;}
.ybc{bottom:23.033336pt;}
.yb8{bottom:23.733327pt;}
.yba{bottom:23.733470pt;}
.yd7{bottom:23.996134pt;}
.yd8{bottom:23.996267pt;}
.y111{bottom:27.288534pt;}
.y122{bottom:27.804565pt;}
.y120{bottom:27.924805pt;}
.ydd{bottom:28.373299pt;}
.yd5{bottom:28.376536pt;}
.y1{bottom:29.055333pt;}
.y8d{bottom:30.208800pt;}
.y4{bottom:30.208933pt;}
.ycc{bottom:31.458140pt;}
.ye0{bottom:31.784403pt;}
.y12c{bottom:33.044963pt;}
.yc9{bottom:33.688141pt;}
.ycb{bottom:33.688263pt;}
.yc4{bottom:34.226797pt;}
.y19a{bottom:39.290243pt;}
.y1e7{bottom:40.575877pt;}
.y195{bottom:43.106242pt;}
.y19f{bottom:65.133331pt;}
.y28{bottom:65.135998pt;}
.y1fe{bottom:65.346664pt;}
.y1c1{bottom:65.389333pt;}
.y5c{bottom:65.537603pt;}
.y1b7{bottom:65.720000pt;}
.y1d0{bottom:66.146667pt;}
.y180{bottom:66.151992pt;}
.y22a{bottom:66.182002pt;}
.y189{bottom:66.188002pt;}
.y225{bottom:66.194002pt;}
.y8c{bottom:66.460665pt;}
.y28c{bottom:68.607566pt;}
.y2dd{bottom:69.520000pt;}
.y2dc{bottom:75.520000pt;}
.y1e1{bottom:76.372269pt;}
.y212{bottom:76.916939pt;}
.y1d8{bottom:77.361605pt;}
.y1c0{bottom:77.720000pt;}
.y5b{bottom:80.876936pt;}
.y28b{bottom:80.938233pt;}
.y17f{bottom:81.491325pt;}
.y224{bottom:81.507325pt;}
.y229{bottom:81.521335pt;}
.y188{bottom:81.527335pt;}
.y27{bottom:81.733332pt;}
.y8b{bottom:81.793998pt;}
.y135{bottom:87.222666pt;}
.y1e0{bottom:91.711602pt;}
.y138{bottom:92.235738pt;}
.y211{bottom:92.256273pt;}
.yd1{bottom:92.542664pt;}
.y1d7{bottom:92.700938pt;}
.y251{bottom:93.169075pt;}
.y28a{bottom:93.268900pt;}
.y5a{bottom:96.216270pt;}
.y17e{bottom:96.830659pt;}
.y223{bottom:96.846659pt;}
.y2db{bottom:96.853333pt;}
.y228{bottom:96.860669pt;}
.y187{bottom:96.866669pt;}
.y8a{bottom:97.127331pt;}
.y134{bottom:97.339071pt;}
.yd4{bottom:97.543203pt;}
.y13b{bottom:101.103872pt;}
.y26{bottom:102.607332pt;}
.y2da{bottom:102.853333pt;}
.y2d9{bottom:104.186667pt;}
.yd0{bottom:104.993205pt;}
.y250{bottom:105.499741pt;}
.y289{bottom:105.599566pt;}
.yd6{bottom:106.410665pt;}
.ydf{bottom:106.410929pt;}
.y1df{bottom:107.050936pt;}
.y210{bottom:107.595606pt;}
.y1d6{bottom:108.040272pt;}
.y59{bottom:111.405583pt;}
.y17d{bottom:112.169992pt;}
.y222{bottom:112.185992pt;}
.y227{bottom:112.200002pt;}
.y89{bottom:112.463998pt;}
.yde{bottom:113.760734pt;}
.yd9{bottom:114.055064pt;}
.y25{bottom:114.937998pt;}
.ydb{bottom:115.207062pt;}
.ye1{bottom:115.207336pt;}
.yd3{bottom:115.209869pt;}
.y2d8{bottom:117.520000pt;}
.y24f{bottom:117.830408pt;}
.y288{bottom:117.930233pt;}
.y1de{bottom:122.384925pt;}
.y20f{bottom:122.934939pt;}
.y82{bottom:123.133331pt;}
.y1d5{bottom:123.379605pt;}
.y86{bottom:126.693329pt;}
.y58{bottom:126.744916pt;}
.y17c{bottom:127.509325pt;}
.y186{bottom:128.200002pt;}
.y24e{bottom:130.161075pt;}
.y287{bottom:130.260900pt;}
.y2d7{bottom:130.853333pt;}
.yfc{bottom:132.253062pt;}
.y84{bottom:132.773336pt;}
.y88{bottom:132.781331pt;}
.y81{bottom:132.781470pt;}
.y24{bottom:133.977998pt;}
.yb2{bottom:137.776530pt;}
.y20e{bottom:138.274273pt;}
.y1d4{bottom:138.718938pt;}
.y57{bottom:142.084249pt;}
.y24d{bottom:142.491741pt;}
.y286{bottom:142.591566pt;}
.y17b{bottom:142.848659pt;}
.y221{bottom:144.181992pt;}
.y2d6{bottom:144.186667pt;}
.y2d5{bottom:145.520000pt;}
.y23{bottom:146.308665pt;}
.yfb{bottom:147.592396pt;}
.y80{bottom:149.394136pt;}
.yb3{bottom:149.944000pt;}
.y20d{bottom:153.613606pt;}
.y1d3{bottom:154.058272pt;}
.y24c{bottom:154.822408pt;}
.y285{bottom:154.922233pt;}
.yb7{bottom:156.622935pt;}
.y56{bottom:157.423583pt;}
.y17a{bottom:158.187992pt;}
.y2d4{bottom:158.853333pt;}
.y220{bottom:159.521325pt;}
.y1e3{bottom:160.722666pt;}
.yfa{bottom:162.931729pt;}
.yc3{bottom:164.584137pt;}
.yb9{bottom:164.584269pt;}
.y7f{bottom:164.721459pt;}
.y24b{bottom:167.153075pt;}
.y284{bottom:167.252900pt;}
.y20c{bottom:168.952939pt;}
.y1d2{bottom:169.397605pt;}
.yce{bottom:169.712402pt;}
.y1e6{bottom:171.070272pt;}
.ybf{bottom:171.183123pt;}
.ybb{bottom:171.447469pt;}
.y1e8{bottom:172.162130pt;}
.y2d3{bottom:172.186667pt;}
.yc0{bottom:172.481466pt;}
.y55{bottom:172.762916pt;}
.yb5{bottom:172.974670pt;}
.yc5{bottom:172.977193pt;}
.ybd{bottom:172.977336pt;}
.y185{bottom:173.379605pt;}
.y2d2{bottom:173.520000pt;}
.y179{bottom:173.527325pt;}
.yca{bottom:174.539205pt;}
.yc8{bottom:174.539436pt;}
.y21f{bottom:174.860659pt;}
.yc2{bottom:177.607089pt;}
.yb6{bottom:178.102804pt;}
.yc7{bottom:178.105326pt;}
.ybe{bottom:178.108829pt;}
.yf9{bottom:178.271062pt;}
.y1e2{bottom:179.288936pt;}
.y24a{bottom:179.483741pt;}
.y283{bottom:179.583566pt;}
.y1e5{bottom:179.937073pt;}
.y1ea{bottom:179.938131pt;}
.y1ed{bottom:179.938273pt;}
.y7e{bottom:180.060793pt;}
.y20b{bottom:184.292273pt;}
.y1d1{bottom:184.736938pt;}
.y2d1{bottom:186.853333pt;}
.y54{bottom:188.102249pt;}
.y184{bottom:188.718938pt;}
.y178{bottom:188.854659pt;}
.y22{bottom:189.385061pt;}
.y21e{bottom:190.199992pt;}
.y282{bottom:191.914233pt;}
.yf8{bottom:193.610396pt;}
.y7d{bottom:195.376126pt;}
.y20a{bottom:199.631606pt;}
.y2d0{bottom:200.186667pt;}
.y53{bottom:203.441583pt;}
.y183{bottom:204.058272pt;}
.y249{bottom:204.155741pt;}
.y177{bottom:204.193992pt;}
.y281{bottom:204.244900pt;}
.y21{bottom:204.724395pt;}
.yf7{bottom:208.949729pt;}
.yab{bottom:209.813333pt;}
.y7c{bottom:210.715459pt;}
.yae{bottom:213.053060pt;}
.y2cf{bottom:213.520000pt;}
.y209{bottom:214.970939pt;}
.y280{bottom:216.575566pt;}
.y52{bottom:218.780916pt;}
.y182{bottom:219.397605pt;}
.y176{bottom:219.491325pt;}
.y20{bottom:220.063728pt;}
.y21d{bottom:221.533325pt;}
.yaa{bottom:221.633606pt;}
.yb0{bottom:221.933329pt;}
.y1dd{bottom:222.717592pt;}
.yf6{bottom:224.290924pt;}
.y7b{bottom:226.054793pt;}
.y2ce{bottom:226.853333pt;}
.y2cd{bottom:228.186667pt;}
.y248{bottom:228.822408pt;}
.y27f{bottom:228.906233pt;}
.y208{bottom:230.310273pt;}
.yad{bottom:231.279602pt;}
.y1db{bottom:232.156943pt;}
.y51{bottom:234.120249pt;}
.y181{bottom:234.736938pt;}
.y175{bottom:234.830659pt;}
.y1f{bottom:235.403061pt;}
.y1dc{bottom:238.056925pt;}
.y27e{bottom:241.236900pt;}
.y7a{bottom:241.394126pt;}
.y2cc{bottom:241.520000pt;}
.y1da{bottom:244.487610pt;}
.y207{bottom:245.649606pt;}
.y131{bottom:247.289327pt;}
.y50{bottom:249.459583pt;}
.y130{bottom:249.739075pt;}
.y174{bottom:250.169992pt;}
.y133{bottom:250.595723pt;}
.y1e{bottom:250.742395pt;}
.y27d{bottom:253.567566pt;}
.y2cb{bottom:254.853333pt;}
.y247{bottom:256.552916pt;}
.y79{bottom:256.733459pt;}
.ya9{bottom:258.316273pt;}
.y206{bottom:260.988939pt;}
.y4f{bottom:264.798916pt;}
.y173{bottom:265.509325pt;}
.y27c{bottom:265.898233pt;}
.y1d{bottom:266.081728pt;}
.y2ca{bottom:268.186667pt;}
.y18b{bottom:272.007609pt;}
.ya8{bottom:273.655606pt;}
.y205{bottom:276.328273pt;}
.yf5{bottom:277.016257pt;}
.y21c{bottom:277.673606pt;}
.y27b{bottom:278.228900pt;}
.y4e{bottom:280.138249pt;}
.y172{bottom:280.848659pt;}
.y246{bottom:281.224916pt;}
.y1c{bottom:281.421061pt;}
.y2c9{bottom:281.520000pt;}
.y78{bottom:288.066793pt;}
.ya7{bottom:288.994939pt;}
.y27a{bottom:290.559566pt;}
.y204{bottom:291.667606pt;}
.yf4{bottom:292.349591pt;}
.y21b{bottom:292.976939pt;}
.y245{bottom:293.555583pt;}
.y2c8{bottom:294.853333pt;}
.y4d{bottom:295.477583pt;}
.y2c7{bottom:296.186667pt;}
.y171{bottom:296.187992pt;}
.y1f0{bottom:301.536926pt;}
.y279{bottom:302.890233pt;}
.ya6{bottom:304.334273pt;}
.y244{bottom:305.886249pt;}
.y203{bottom:307.006939pt;}
.yf3{bottom:307.682924pt;}
.y21a{bottom:308.316273pt;}
.y2c6{bottom:309.520000pt;}
.y4c{bottom:310.816916pt;}
.y170{bottom:311.527325pt;}
.y1b{bottom:312.754395pt;}
.y278{bottom:315.220900pt;}
.ya5{bottom:319.673606pt;}
.y77{bottom:320.066793pt;}
.y202{bottom:322.328273pt;}
.y2c5{bottom:322.853333pt;}
.yf2{bottom:323.016257pt;}
.y219{bottom:323.655606pt;}
.y4b{bottom:326.156249pt;}
.y16f{bottom:326.860659pt;}
.y277{bottom:327.551566pt;}
.y243{bottom:330.558249pt;}
.ya4{bottom:335.012939pt;}
.y2c4{bottom:336.186667pt;}
.y201{bottom:337.667606pt;}
.yf1{bottom:338.349591pt;}
.y218{bottom:338.994939pt;}
.y276{bottom:339.882233pt;}
.y4a{bottom:341.495583pt;}
.y16e{bottom:342.193992pt;}
.y242{bottom:342.888916pt;}
.y2c3{bottom:349.520000pt;}
.y275{bottom:352.212900pt;}
.y16a{bottom:352.421346pt;}
.y200{bottom:353.006939pt;}
.yf0{bottom:353.682796pt;}
.y217{bottom:354.334273pt;}
.y241{bottom:355.219583pt;}
.y49{bottom:356.834916pt;}
.y16c{bottom:357.533325pt;}
.y1a{bottom:360.671061pt;}
.y22e{bottom:362.518272pt;}
.y2c2{bottom:362.853333pt;}
.y274{bottom:364.543566pt;}
.ya3{bottom:366.346273pt;}
.y1ff{bottom:368.346273pt;}
.y2c1{bottom:368.853333pt;}
.y168{bottom:369.626668pt;}
.y216{bottom:369.673606pt;}
.y48{bottom:372.174249pt;}
.y76{bottom:372.192249pt;}
.y167{bottom:372.854659pt;}
.y169{bottom:372.866659pt;}
.y191{bottom:374.478678pt;}
.y22d{bottom:374.848938pt;}
.y19{bottom:376.010395pt;}
.y127{bottom:376.687988pt;}
.y198{bottom:376.772949pt;}
.y273{bottom:376.874233pt;}
.y240{bottom:379.891583pt;}
.y12b{bottom:380.008952pt;}
.y215{bottom:385.012939pt;}
.y129{bottom:385.707194pt;}
.y2a1{bottom:386.853333pt;}
.y194{bottom:386.972941pt;}
.y47{bottom:387.513583pt;}
.y75{bottom:387.531583pt;}
.y197{bottom:388.064657pt;}
.y166{bottom:388.193992pt;}
.y126{bottom:388.872274pt;}
.y272{bottom:389.204900pt;}
.y23f{bottom:392.222249pt;}
.y190{bottom:394.312939pt;}
.y193{bottom:395.839722pt;}
.y19b{bottom:395.840820pt;}
.y12a{bottom:397.299316pt;}
.y12d{bottom:400.075480pt;}
.y15f{bottom:400.293335pt;}
.y271{bottom:401.535566pt;}
.ya2{bottom:402.316395pt;}
.y46{bottom:402.852916pt;}
.y74{bottom:402.870916pt;}
.y161{bottom:403.533203pt;}
.y165{bottom:403.533325pt;}
.y2a0{bottom:404.853333pt;}
.y18{bottom:406.676395pt;}
.y19c{bottom:406.929287pt;}
.y163{bottom:407.973348pt;}
.y270{bottom:413.866233pt;}
.y214{bottom:414.486269pt;}
.y196{bottom:415.364543pt;}
.y22c{bottom:416.406272pt;}
.ya1{bottom:417.655728pt;}
.y45{bottom:418.192249pt;}
.y73{bottom:418.210249pt;}
.y15e{bottom:418.764659pt;}
.y17{bottom:422.015728pt;}
.y29f{bottom:422.853333pt;}
.y26f{bottom:426.196900pt;}
.y213{bottom:426.816935pt;}
.y22b{bottom:428.736938pt;}
.y226{bottom:429.536947pt;}
.ya0{bottom:432.995062pt;}
.y23e{bottom:433.513583pt;}
.y44{bottom:433.531583pt;}
.y72{bottom:433.549583pt;}
.y11d{bottom:433.554647pt;}
.y15d{bottom:434.103992pt;}
.y124{bottom:436.688802pt;}
.y16{bottom:437.355061pt;}
.y26e{bottom:438.527566pt;}
.y18f{bottom:439.000939pt;}
.y125{bottom:440.168945pt;}
.y2c0{bottom:440.853333pt;}
.y11f{bottom:442.747192pt;}
.y11c{bottom:445.805461pt;}
.y9f{bottom:448.334395pt;}
.y23d{bottom:448.852916pt;}
.y43{bottom:448.870916pt;}
.y71{bottom:448.882916pt;}
.y15c{bottom:449.443325pt;}
.y26d{bottom:450.858233pt;}
.y121{bottom:452.155599pt;}
.y15{bottom:452.694395pt;}
.y18e{bottom:454.340273pt;}
.y29e{bottom:458.853333pt;}
.y26c{bottom:463.188900pt;}
.y9e{bottom:463.673728pt;}
.y23c{bottom:464.192249pt;}
.y42{bottom:464.210249pt;}
.y70{bottom:464.216249pt;}
.y15b{bottom:464.782659pt;}
.y14{bottom:468.033728pt;}
.y18d{bottom:469.673728pt;}
.y96{bottom:474.428019pt;}
.y26b{bottom:475.519566pt;}
.y2bf{bottom:476.853333pt;}
.y98{bottom:479.002279pt;}
.y9d{bottom:479.013062pt;}
.y6f{bottom:479.471583pt;}
.y23b{bottom:479.531583pt;}
.y41{bottom:479.549583pt;}
.y15a{bottom:480.121992pt;}
.yef{bottom:482.882794pt;}
.y13{bottom:483.373061pt;}
.y18c{bottom:485.013062pt;}
.y26a{bottom:487.850233pt;}
.y95{bottom:494.334395pt;}
.y40{bottom:494.768916pt;}
.y6e{bottom:494.810916pt;}
.y29d{bottom:494.853333pt;}
.y23a{bottom:494.870916pt;}
.y1cf{bottom:494.882916pt;}
.y159{bottom:495.461325pt;}
.yee{bottom:498.216127pt;}
.y12{bottom:498.712395pt;}
.y269{bottom:500.180900pt;}
.y94{bottom:509.673728pt;}
.y3f{bottom:510.108249pt;}
.y6d{bottom:510.150249pt;}
.y1fd{bottom:510.168249pt;}
.y239{bottom:510.210249pt;}
.y1ce{bottom:510.216249pt;}
.y158{bottom:510.800659pt;}
.y268{bottom:512.511566pt;}
.y2be{bottom:512.853333pt;}
.yed{bottom:513.560274pt;}
.y11{bottom:514.051728pt;}
.y267{bottom:524.842233pt;}
.y93{bottom:525.001062pt;}
.y3e{bottom:525.447583pt;}
.y6c{bottom:525.489583pt;}
.y1fc{bottom:525.507583pt;}
.y1cd{bottom:525.531583pt;}
.y238{bottom:525.549583pt;}
.y157{bottom:526.139992pt;}
.y10{bottom:529.391061pt;}
.y29c{bottom:530.853333pt;}
.y19e{bottom:531.926251pt;}
.y10b{bottom:536.555990pt;}
.y266{bottom:537.172900pt;}
.y92{bottom:540.340395pt;}
.y3d{bottom:540.786916pt;}
.y6b{bottom:540.828916pt;}
.y1fb{bottom:540.846916pt;}
.y1cc{bottom:540.870916pt;}
.y237{bottom:540.882916pt;}
.y156{bottom:541.479325pt;}
.y114{bottom:541.662150pt;}
.y10e{bottom:543.888794pt;}
.y19d{bottom:544.256917pt;}
.yf{bottom:544.730395pt;}
.y2bd{bottom:548.853333pt;}
.y265{bottom:549.503566pt;}
.y10d{bottom:549.589193pt;}
.y10a{bottom:549.672282pt;}
.y18a{bottom:551.936930pt;}
.y116{bottom:552.761597pt;}
.y119{bottom:552.761719pt;}
.y110{bottom:552.768392pt;}
.y1bf{bottom:553.543583pt;}
.y2bc{bottom:554.853333pt;}
.y91{bottom:555.673728pt;}
.y3c{bottom:556.126249pt;}
.y6a{bottom:556.168249pt;}
.y236{bottom:556.174249pt;}
.y1fa{bottom:556.186249pt;}
.y2bb{bottom:556.186667pt;}
.y1b6{bottom:556.204249pt;}
.y1cb{bottom:556.210249pt;}
.y155{bottom:556.818659pt;}
.ye{bottom:560.069728pt;}
.y112{bottom:560.676921pt;}
.y264{bottom:561.834233pt;}
.y1be{bottom:568.882916pt;}
.y2ba{bottom:569.520000pt;}
.y90{bottom:571.007062pt;}
.y3b{bottom:571.465583pt;}
.y69{bottom:571.507583pt;}
.y235{bottom:571.513583pt;}
.y1f9{bottom:571.525583pt;}
.y1b5{bottom:571.543583pt;}
.y1ca{bottom:571.549583pt;}
.y154{bottom:572.157992pt;}
.y263{bottom:574.164900pt;}
.yd{bottom:575.409061pt;}
.y2b9{bottom:582.853333pt;}
.y2b8{bottom:584.186667pt;}
.y1bd{bottom:584.222249pt;}
.y8f{bottom:586.340395pt;}
.y262{bottom:586.495566pt;}
.y3a{bottom:586.804916pt;}
.y68{bottom:586.846916pt;}
.y234{bottom:586.852916pt;}
.y1f8{bottom:586.864916pt;}
.y1b4{bottom:586.882916pt;}
.y153{bottom:587.497325pt;}
.yec{bottom:587.610274pt;}
.yc{bottom:590.748395pt;}
.y2b7{bottom:597.520000pt;}
.y261{bottom:598.826233pt;}
.y8e{bottom:601.679728pt;}
.y39{bottom:602.144249pt;}
.y67{bottom:602.186249pt;}
.y233{bottom:602.192249pt;}
.y1f7{bottom:602.204249pt;}
.y1b3{bottom:602.216249pt;}
.y152{bottom:602.836659pt;}
.yeb{bottom:602.949607pt;}
.yb{bottom:606.087728pt;}
.y2b6{bottom:610.853333pt;}
.y260{bottom:611.156900pt;}
.y1bc{bottom:615.555583pt;}
.y38{bottom:617.483583pt;}
.y1c8{bottom:617.513583pt;}
.y66{bottom:617.525583pt;}
.y232{bottom:617.531583pt;}
.y1b2{bottom:617.543583pt;}
.y29b{bottom:618.084916pt;}
.y151{bottom:618.175992pt;}
.yea{bottom:618.270940pt;}
.y1c9{bottom:622.626049pt;}
.y25f{bottom:623.487566pt;}
.y2b5{bottom:624.186667pt;}
.y29a{bottom:630.415583pt;}
.y37{bottom:632.822916pt;}
.y1c7{bottom:632.852916pt;}
.y65{bottom:632.864916pt;}
.y231{bottom:632.870916pt;}
.y1b1{bottom:632.882916pt;}
.y150{bottom:633.515325pt;}
.ye9{bottom:633.610274pt;}
.y25e{bottom:635.818233pt;}
.y2b4{bottom:637.520000pt;}
.y1ab{bottom:644.838664pt;}
.ye3{bottom:644.896932pt;}
.y25d{bottom:648.148900pt;}
.y36{bottom:648.162249pt;}
.y1f6{bottom:648.180249pt;}
.y1c6{bottom:648.192249pt;}
.y64{bottom:648.204249pt;}
.y230{bottom:648.210249pt;}
.y1ad{bottom:648.211589pt;}
.y1aa{bottom:648.216249pt;}
.y1b0{bottom:648.222249pt;}
.ya{bottom:648.522401pt;}
.y14f{bottom:648.854659pt;}
.ye8{bottom:648.949607pt;}
.y1af{bottom:650.431315pt;}
.y2b3{bottom:650.853333pt;}
.y2b2{bottom:652.186667pt;}
.y299{bottom:655.087583pt;}
.y1a3{bottom:658.972005pt;}
.y25c{bottom:660.479566pt;}
.y9{bottom:660.853068pt;}
.y35{bottom:663.501583pt;}
.y1f5{bottom:663.519583pt;}
.y1bb{bottom:663.525583pt;}
.y1c5{bottom:663.531583pt;}
.y1a2{bottom:663.537583pt;}
.y63{bottom:663.543583pt;}
.y1a5{bottom:663.544922pt;}
.y22f{bottom:663.549583pt;}
.y1a9{bottom:663.555583pt;}
.y1d9{bottom:664.096924pt;}
.y14e{bottom:664.193992pt;}
.ye7{bottom:664.279584pt;}
.y2b1{bottom:665.520000pt;}
.y1a8{bottom:665.764648pt;}
.y298{bottom:667.418249pt;}
.y25b{bottom:672.810233pt;}
.y34{bottom:678.840916pt;}
.y2b0{bottom:678.853333pt;}
.y1f4{bottom:678.858916pt;}
.y1ba{bottom:678.864916pt;}
.y1c4{bottom:678.870916pt;}
.y1a1{bottom:678.876916pt;}
.y62{bottom:678.882916pt;}
.y14d{bottom:679.527366pt;}
.y297{bottom:679.748916pt;}
.y25a{bottom:685.140900pt;}
.yfe{bottom:687.289307pt;}
.y105{bottom:689.873861pt;}
.y296{bottom:692.079583pt;}
.y2af{bottom:692.186667pt;}
.y33{bottom:694.180249pt;}
.y1f3{bottom:694.198249pt;}
.y1b9{bottom:694.204249pt;}
.y61{bottom:694.210249pt;}
.y1a0{bottom:694.216249pt;}
.y8{bottom:694.427733pt;}
.y14c{bottom:694.866699pt;}
.y259{bottom:697.471566pt;}
.y102{bottom:698.382243pt;}
.yfd{bottom:701.303053pt;}
.y295{bottom:704.410249pt;}
.y2ae{bottom:705.520000pt;}
.y100{bottom:707.249105pt;}
.y106{bottom:707.249837pt;}
.y32{bottom:709.519583pt;}
.y1f2{bottom:709.537583pt;}
.y1b8{bottom:709.543583pt;}
.y60{bottom:709.549583pt;}
.y258{bottom:709.802233pt;}
.y108{bottom:712.961751pt;}
.y101{bottom:714.599174pt;}
.y109{bottom:714.599907pt;}
.y294{bottom:716.740916pt;}
.y2ad{bottom:718.853333pt;}
.y2ac{bottom:720.186667pt;}
.y257{bottom:722.132900pt;}
.y31{bottom:724.858916pt;}
.y1c3{bottom:724.864916pt;}
.y1f1{bottom:724.876916pt;}
.y5f{bottom:724.882916pt;}
.y14b{bottom:726.200033pt;}
.y293{bottom:729.071583pt;}
.y7{bottom:732.145038pt;}
.y2ab{bottom:733.520000pt;}
.y256{bottom:734.463566pt;}
.y30{bottom:740.198249pt;}
.y1c2{bottom:740.204249pt;}
.ye6{bottom:740.216249pt;}
.y292{bottom:741.402249pt;}
.y255{bottom:746.794233pt;}
.y2aa{bottom:746.853333pt;}
.y6{bottom:752.147705pt;}
.y291{bottom:753.732916pt;}
.y2f{bottom:755.537583pt;}
.ye5{bottom:755.543583pt;}
.y254{bottom:759.124900pt;}
.y2a9{bottom:760.186667pt;}
.y14a{bottom:765.022963pt;}
.y290{bottom:766.063583pt;}
.y2e{bottom:770.876916pt;}
.ye4{bottom:770.882916pt;}
.y253{bottom:771.455566pt;}
.y2a8{bottom:773.520000pt;}
.y13e{bottom:775.687988pt;}
.y145{bottom:776.239990pt;}
.y141{bottom:778.035563pt;}
.y28f{bottom:778.394249pt;}
.y142{bottom:784.120036pt;}
.y144{bottom:784.136963pt;}
.y13d{bottom:784.138916pt;}
.y148{bottom:784.151449pt;}
.y2d{bottom:786.216249pt;}
.y2a7{bottom:786.853333pt;}
.y140{bottom:790.214030pt;}
.y28e{bottom:790.724916pt;}
.y5{bottom:799.809082pt;}
.y252{bottom:800.055583pt;}
.y2a6{bottom:800.186667pt;}
.y2a5{bottom:801.520000pt;}
.y2c{bottom:801.555583pt;}
.y28d{bottom:803.055583pt;}
.y2a4{bottom:814.853333pt;}
.y3{bottom:823.215232pt;}
.y2a3{bottom:828.186667pt;}
.y2a{bottom:834.763835pt;}
.y2b{bottom:835.542501pt;}
.y5e{bottom:835.545857pt;}
.y2{bottom:835.545898pt;}
.y5d{bottom:835.769857pt;}
.y2a2{bottom:840.186667pt;}
.h53{height:3.345549pt;}
.h60{height:12.266666pt;}
.h6e{height:14.133333pt;}
.h54{height:14.400000pt;}
.h5d{height:14.800000pt;}
.h6c{height:15.600000pt;}
.h23{height:15.868000pt;}
.h61{height:16.133333pt;}
.h1c{height:17.133265pt;}
.h1e{height:17.310681pt;}
.h2b{height:19.566391pt;}
.h5b{height:20.000000pt;}
.he{height:21.085867pt;}
.h30{height:21.598730pt;}
.h52{height:22.354349pt;}
.h59{height:23.333333pt;}
.h5a{height:23.702421pt;}
.h19{height:23.733332pt;}
.h58{height:23.986282pt;}
.h1f{height:24.234661pt;}
.h25{height:24.412074pt;}
.h6f{height:24.529529pt;}
.h33{height:24.893605pt;}
.h73{height:25.039467pt;}
.h5f{height:25.192693pt;}
.h1d{height:26.925298pt;}
.h39{height:27.727503pt;}
.h78{height:27.879573pt;}
.h56{height:29.733332pt;}
.h2{height:30.080000pt;}
.hd{height:30.122667pt;}
.h35{height:30.400235pt;}
.h34{height:30.764309pt;}
.hc{height:30.833333pt;}
.h2f{height:30.855328pt;}
.h2e{height:32.448155pt;}
.h26{height:33.199999pt;}
.h7e{height:33.351562pt;}
.h2a{height:33.861009pt;}
.h50{height:33.867999pt;}
.h4d{height:34.001333pt;}
.h2c{height:34.266530pt;}
.h28{height:34.367910pt;}
.h38{height:34.399999pt;}
.h1a{height:34.621361pt;}
.h24{height:34.874812pt;}
.h47{height:35.732000pt;}
.h9{height:35.770667pt;}
.h20{height:35.781333pt;}
.h75{height:35.792041pt;}
.h5c{height:35.794504pt;}
.h13{height:35.794667pt;}
.h43{height:35.795178pt;}
.h40{height:35.808092pt;}
.h14{height:35.818667pt;}
.h17{height:35.818707pt;}
.h41{height:35.842667pt;}
.h12{height:35.866667pt;}
.h7a{height:35.914667pt;}
.h63{height:35.938667pt;}
.h7c{height:35.962667pt;}
.h5e{height:35.989995pt;}
.h15{height:36.106667pt;}
.h27{height:36.142065pt;}
.h10{height:36.250667pt;}
.h32{height:36.519701pt;}
.h2d{height:36.869333pt;}
.h3{height:37.376000pt;}
.h45{height:37.600000pt;}
.h3e{height:37.802667pt;}
.h6a{height:38.141931pt;}
.h66{height:38.152517pt;}
.h74{height:38.152541pt;}
.h70{height:38.152542pt;}
.h65{height:38.152599pt;}
.h3a{height:38.469001pt;}
.h4f{height:41.408220pt;}
.h5{height:41.514667pt;}
.h37{height:43.522780pt;}
.h62{height:43.543306pt;}
.h49{height:44.242793pt;}
.hf{height:44.468750pt;}
.h3d{height:44.538657pt;}
.h55{height:44.538697pt;}
.ha{height:44.890667pt;}
.h42{height:45.286978pt;}
.h44{height:45.298703pt;}
.h67{height:45.329580pt;}
.h6b{height:45.330068pt;}
.h18{height:45.330109pt;}
.h21{height:45.330150pt;}
.h22{height:45.330231pt;}
.h3f{height:45.354068pt;}
.h71{height:45.354231pt;}
.h7b{height:45.410150pt;}
.h72{height:45.474231pt;}
.h64{height:45.498166pt;}
.h7d{height:45.498231pt;}
.h11{height:45.906719pt;}
.h76{height:46.666667pt;}
.h29{height:46.905229pt;}
.h51{height:47.294375pt;}
.h16{height:47.680000pt;}
.h4{height:48.766452pt;}
.h4b{height:48.814598pt;}
.h68{height:49.200002pt;}
.h3c{height:49.786480pt;}
.h79{height:49.828401pt;}
.h8{height:50.109333pt;}
.h1b{height:51.067709pt;}
.h4c{height:51.349105pt;}
.h7{height:54.775672pt;}
.h6d{height:56.531096pt;}
.h31{height:56.750139pt;}
.h36{height:56.795648pt;}
.hb{height:58.021333pt;}
.h6{height:61.429333pt;}
.h69{height:63.666807pt;}
.h77{height:64.021638pt;}
.h57{height:69.749623pt;}
.h48{height:76.740551pt;}
.h4e{height:91.293574pt;}
.h4a{height:93.213029pt;}
.h46{height:101.380267pt;}
.h3b{height:155.950617pt;}
.h1{height:888.000000pt;}
.h0{height:888.186667pt;}
.we{width:33.506666pt;}
.w4{width:56.653336pt;}
.w2{width:61.453333pt;}
.wb{width:74.214666pt;}
.wd{width:79.986669pt;}
.w9{width:81.988002pt;}
.wa{width:95.599996pt;}
.w11{width:98.705332pt;}
.wf{width:103.733337pt;}
.wc{width:110.371999pt;}
.w13{width:150.133331pt;}
.w14{width:152.505330pt;}
.w8{width:184.892008pt;}
.w10{width:196.025330pt;}
.w7{width:205.265340pt;}
.w3{width:218.293335pt;}
.w15{width:226.960002pt;}
.w12{width:259.000000pt;}
.w6{width:264.493327pt;}
.w5{width:433.769328pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x99{left:-2.285731pt;}
.x64{left:-0.972005pt;}
.x0{left:0.000000pt;}
.x65{left:11.832255pt;}
.x1e{left:15.497599pt;}
.x50{left:19.560404pt;}
.x23{left:21.392267pt;}
.x1c{left:23.813192pt;}
.x52{left:26.231873pt;}
.x7e{left:27.904134pt;}
.xa6{left:31.194396pt;}
.x88{left:38.144145pt;}
.x11{left:40.988663pt;}
.xa3{left:43.097992pt;}
.x25{left:44.189468pt;}
.x69{left:45.623983pt;}
.x68{left:46.644389pt;}
.xe{left:47.832133pt;}
.x20{left:50.621460pt;}
.x80{left:52.732259pt;}
.xc{left:54.875732pt;}
.x6{left:57.813333pt;}
.x2{left:62.362269pt;}
.x7{left:63.307067pt;}
.x8{left:64.327469pt;}
.x4{left:66.248398pt;}
.x8b{left:67.564941pt;}
.x9a{left:70.686000pt;}
.x82{left:73.070658pt;}
.x75{left:74.909322pt;}
.x21{left:76.028000pt;}
.x9{left:77.486132pt;}
.x28{left:79.591863pt;}
.x5{left:81.263601pt;}
.x85{left:82.730652pt;}
.xb{left:84.832133pt;}
.x22{left:86.388529pt;}
.x93{left:88.623596pt;}
.x84{left:90.458923pt;}
.xa9{left:91.446004pt;}
.x2a{left:95.170140pt;}
.x57{left:97.487996pt;}
.xd{left:98.631866pt;}
.x96{left:99.544805pt;}
.x24{left:101.966797pt;}
.x58{left:104.145379pt;}
.x8d{left:107.849345pt;}
.x78{left:109.433329pt;}
.x6b{left:110.520915pt;}
.x77{left:114.257182pt;}
.xf{left:118.768270pt;}
.x12{left:121.183736pt;}
.xab{left:122.250122pt;}
.x6c{left:123.337056pt;}
.xa4{left:124.626129pt;}
.x26{left:126.799998pt;}
.x10{left:128.561198pt;}
.x94{left:130.743469pt;}
.xa5{left:132.882395pt;}
.x5a{left:137.988403pt;}
.xa2{left:143.327596pt;}
.x27{left:144.404399pt;}
.x31{left:147.422277pt;}
.xac{left:148.889729pt;}
.x7a{left:150.893311pt;}
.x95{left:152.823730pt;}
.x5c{left:155.004008pt;}
.x2b{left:155.942667pt;}
.x33{left:158.928665pt;}
.x29{left:160.177195pt;}
.x9b{left:161.068929pt;}
.x8e{left:163.725332pt;}
.x70{left:164.999858pt;}
.x6f{left:166.020121pt;}
.x51{left:167.866669pt;}
.x8f{left:171.008260pt;}
.x4f{left:172.210938pt;}
.x9c{left:173.257060pt;}
.x2c{left:177.187496pt;}
.xb3{left:178.336405pt;}
.xb0{left:179.433329pt;}
.x97{left:181.829325pt;}
.x60{left:182.891886pt;}
.x2d{left:184.320129pt;}
.x5f{left:185.664551pt;}
.x13{left:187.352931pt;}
.x63{left:190.280009pt;}
.xb1{left:191.353333pt;}
.x61{left:192.339146pt;}
.x53{left:194.134399pt;}
.x15{left:198.885198pt;}
.x71{left:200.466675pt;}
.x2f{left:204.488403pt;}
.x2e{left:206.790363pt;}
.x72{left:208.104126pt;}
.x17{left:209.612798pt;}
.x39{left:210.857071pt;}
.x54{left:212.950541pt;}
.xb2{left:215.941325pt;}
.x30{left:217.643066pt;}
.x34{left:221.747742pt;}
.x67{left:224.504130pt;}
.x66{left:225.696136pt;}
.x32{left:228.007609pt;}
.x9e{left:229.669739pt;}
.x55{left:232.570394pt;}
.x9f{left:235.525472pt;}
.x89{left:237.726664pt;}
.x35{left:240.945788pt;}
.x3c{left:242.876277pt;}
.x9d{left:243.925476pt;}
.x73{left:245.676005pt;}
.x36{left:247.442525pt;}
.x56{left:250.138529pt;}
.x7c{left:251.920003pt;}
.x6a{left:253.424398pt;}
.x14{left:254.815592pt;}
.x86{left:255.806661pt;}
.x7d{left:257.372274pt;}
.x37{left:259.196798pt;}
.x74{left:263.099996pt;}
.x1a{left:264.586670pt;}
.x16{left:266.347860pt;}
.x1d{left:273.616007pt;}
.x1b{left:276.124267pt;}
.x8a{left:279.540141pt;}
.x18{left:280.655599pt;}
.x38{left:281.832133pt;}
.x76{left:283.271871pt;}
.x59{left:286.558675pt;}
.x87{left:287.614929pt;}
.x42{left:290.527990pt;}
.xa7{left:293.130005pt;}
.x7f{left:295.495992pt;}
.x3a{left:297.507609pt;}
.x44{left:298.532384pt;}
.x1f{left:303.004008pt;}
.x3e{left:305.620260pt;}
.x3b{left:307.872009pt;}
.x5b{left:309.826925pt;}
.x8c{left:312.035868pt;}
.xa8{left:315.102397pt;}
.x6d{left:318.680135pt;}
.x79{left:321.659993pt;}
.x3d{left:323.450806pt;}
.x5d{left:326.770671pt;}
.x81{left:328.807861pt;}
.x83{left:329.944132pt;}
.x3f{left:331.380127pt;}
.x5e{left:338.314941pt;}
.x6e{left:340.424133pt;}
.x40{left:343.132912pt;}
.x46{left:344.115717pt;}
.xa0{left:346.356155pt;}
.xaa{left:349.386271pt;}
.x43{left:351.300252pt;}
.x41{left:355.523885pt;}
.x48{left:361.180944pt;}
.x7b{left:365.556396pt;}
.xa1{left:366.889323pt;}
.x62{left:373.366781pt;}
.xb4{left:376.825480pt;}
.x98{left:377.855062pt;}
.x4a{left:382.566279pt;}
.xad{left:390.379476pt;}
.x45{left:397.777751pt;}
.x4d{left:406.537470pt;}
.xae{left:421.108256pt;}
.x47{left:430.012004pt;}
.x1{left:431.874146pt;}
.xaf{left:437.443087pt;}
.x49{left:441.766113pt;}
.x4b{left:463.140788pt;}
.x3{left:469.341715pt;}
.x4c{left:478.601196pt;}
.x90{left:486.263997pt;}
.x4e{left:490.419881pt;}
.x91{left:501.532796pt;}
.xa{left:506.375081pt;}
.x19{left:508.697596pt;}
.x92{left:519.770142pt;}
}




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