
    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_ce3255da2ff0000b3486725a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015625;font-style:normal;font-weight: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_301b6032a58a56a66193faa5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022461;font-style:normal;font-weight: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_59ab5994a6c40a518ca1199b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.964861;font-style:normal;font-weight: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_9f2051b90396eb4a90884906.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.031738;font-style:normal;font-weight: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_2c6a83f5ce80468a6d5fe39e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032715;font-style:normal;font-weight: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_0511187373b005532a18376b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.026855;font-style:normal;font-weight: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_0a7c492ae22e3c28ed35e3ac.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8a0687bf8e3ce696a13e25c7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976118;font-style:normal;font-weight: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_4ba470f545660cb3551e5159.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.130859;font-style:normal;font-weight: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_37e497aa606f8eae4ed889a0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.970370;font-style:normal;font-weight: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_e367ca20ec756f538004aed1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.710938;font-style:normal;font-weight: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_1b3d8d9d1efb359d4921d082.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.936118;font-style:normal;font-weight: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_477f183c7196a272ab1f7246.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.968262;font-style:normal;font-weight: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_962a8cfa00110232dd5c896c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.771546;font-style:normal;font-weight: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_7a9cff78d1fea96564748dfd.woff2')format("woff");}.fff{font-family:fff;line-height:0.964844;font-style:normal;font-weight: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_95d895927ae9e3c7feeb1eb8.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.709961;font-style:normal;font-weight: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_206b20071107d686f17edf6f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.893066;font-style:normal;font-weight: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_19a6eca8b3625809378c7b09.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.709961;font-style:normal;font-weight: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_f7bbe702e45f46cf769aa255.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_636af0751fae2610b0bbbbdb.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.709961;font-style:normal;font-weight: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_fd38c26d5a52a40c8f95cd89.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.893066;font-style:normal;font-weight: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_30e1642e477fe97bad4756ed.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.709961;font-style:normal;font-weight: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_bfff8b27e42b198fd92e0124.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_0294a20ed4b0ad99ee3d0f42.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.709961;font-style:normal;font-weight: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_bfff8b27e42b198fd92e0124.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_bcb6d1d770bd82e8f6f8ac11.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.709961;font-style:normal;font-weight: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_bcef109fdf9db362bbdd1b4c.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.893066;font-style:normal;font-weight: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_1d22337db4102ff6836b8e83.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.709961;font-style:normal;font-weight: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_cba6d1942f02fb7ad0a3969b.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_63e647a72649d238332475de.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.709961;font-style:normal;font-weight: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_3d3fb44446cad9067f4eb002.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.893066;font-style:normal;font-weight: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_862451b1d2537295a485acd4.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.709961;font-style:normal;font-weight: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_7a392236af3310b3a5073a2b.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_3c68aa91f695d609fa53d974.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.709961;font-style:normal;font-weight: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_435679c00caf4557771db431.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_d1ad65a6b2ef3d4dc39d2ab7.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.709961;font-style:normal;font-weight: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_a9902ad7d657d9dd3f4a34fe.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.893066;font-style:normal;font-weight: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_96011e98523bd13f4761aac1.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.709961;font-style:normal;font-weight: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_ba54145ed30d43c1872c1aa6.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.893066;font-style:normal;font-weight: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_884fd37524e4aa68e4f7b6e8.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.709961;font-style:normal;font-weight: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_5fc3b6074646e45207324714.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_aadc12fc6a4ccc1f9433693a.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.709961;font-style:normal;font-weight: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_bcef109fdf9db362bbdd1b4c.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.893066;font-style:normal;font-weight: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_fc01da15db27dbf2c6eba36b.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.709961;font-style:normal;font-weight: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_2db856480993ecd10fb7f01e.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.893066;font-style:normal;font-weight: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_90a7becb095b1be537c31db9.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.709961;font-style:normal;font-weight: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_128bdc77bf2e447030d5db1e.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.893066;font-style:normal;font-weight: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_e1ad188e91640d176dcd0465.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.709961;font-style:normal;font-weight: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_44ce537dbd10f3b569c2455f.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_a249e244855bc08e095ad179.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.709961;font-style:normal;font-weight: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_cff0b15939a8adb5987634b0.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.893066;font-style:normal;font-weight: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_1cea4f207f1ce5b8c474b093.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.709961;font-style:normal;font-weight: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_db7fe1c1245af55e4051c490.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_81b89e4a99058dc160be3bd2.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.709961;font-style:normal;font-weight: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_435679c00caf4557771db431.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_41f177eeba464ff271978822.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.709961;font-style:normal;font-weight: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_c8195ae2b30bf7a5930d3edf.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_c843c15bb6914eb013888ce8.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.709961;font-style:normal;font-weight: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_bfff8b27e42b198fd92e0124.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_28a0c138143787de1038729a.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.709961;font-style:normal;font-weight: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_bfff8b27e42b198fd92e0124.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_868569d46e969786751f0f93.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.709961;font-style:normal;font-weight: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_a3c28c3002bb2bad7bbff4cb.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_36769f6778b624e0f74c6669.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.709961;font-style:normal;font-weight: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_3d3fb44446cad9067f4eb002.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.893066;font-style:normal;font-weight: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_5ad8322001cdbff43c9bbd88.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.709961;font-style:normal;font-weight: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_a874bd1c5874405879d72e15.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.893066;font-style:normal;font-weight: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_3dceadc02166d88ee6b40ba5.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.709961;font-style:normal;font-weight: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_5fc3b6074646e45207324714.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_de04c36ab0a67ca19078670f.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.709961;font-style:normal;font-weight: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_cba6d1942f02fb7ad0a3969b.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_2eb851595635eefc99d0dd55.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.709961;font-style:normal;font-weight: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_b9795892679adacc615b8f4c.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.893066;font-style:normal;font-weight: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_82431709cad56f7e79c0e89a.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.709961;font-style:normal;font-weight: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_7bb3189362d17d3a45260cf0.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c;src:url('chunks/assets/font_a93bfc4bf3f8fc7d09447d8c.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.709961;font-style:normal;font-weight: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_87fd4fb593afc1d81056d565.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url('chunks/assets/font_12f8eeaa94eb7ceb1320d9d2.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.709961;font-style:normal;font-weight: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_a634ed63e79f1a976bc8cd60.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.893066;font-style:normal;font-weight: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_7867613ba622191957e8d833.woff2')format("woff");}.ff50{font-family:ff50;line-height:0.709961;font-style:normal;font-weight: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_5fc3b6074646e45207324714.woff2')format("woff");}.ff51{font-family:ff51;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff52;src:url('chunks/assets/font_39f3caa55a189e8514c16f18.woff2')format("woff");}.ff52{font-family:ff52;line-height:0.709961;font-style:normal;font-weight: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_47f9fe1c6c35e4a538d9b11a.woff2')format("woff");}.ff53{font-family:ff53;line-height:0.893066;font-style:normal;font-weight: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_82718bd195f03e486c88f325.woff2')format("woff");}.ff54{font-family:ff54;line-height:0.709961;font-style:normal;font-weight: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_b7d4a2ce79fc0a7d63f57078.woff2')format("woff");}.ff55{font-family:ff55;line-height:0.893066;font-style:normal;font-weight: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_868569d46e969786751f0f93.woff2')format("woff");}.ff56{font-family:ff56;line-height:0.709961;font-style:normal;font-weight: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_3cdad6ee6fd02ea491f0f839.woff2')format("woff");}.ff57{font-family:ff57;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff58;src:url('chunks/assets/font_54c12c1239a3096ed72af376.woff2')format("woff");}.ff58{font-family:ff58;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff59;src:url('chunks/assets/font_7ce49fd56c8e1db448bf3109.woff2')format("woff");}.ff59{font-family:ff59;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5a;src:url('chunks/assets/font_7ce49fd56c8e1db448bf3109.woff2')format("woff");}.ff5a{font-family:ff5a;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b;src:url('chunks/assets/font_7ce49fd56c8e1db448bf3109.woff2')format("woff");}.ff5b{font-family:ff5b;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5c;src:url('chunks/assets/font_6cc12ada2e28ba354be1b2aa.woff2')format("woff");}.ff5c{font-family:ff5c;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5d;src:url('chunks/assets/font_f9838ece80f755a81f561cbf.woff2')format("woff");}.ff5d{font-family:ff5d;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5e;src:url('chunks/assets/font_dae92950888625259879c085.woff2')format("woff");}.ff5e{font-family:ff5e;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5f;src:url('chunks/assets/font_7ce49fd56c8e1db448bf3109.woff2')format("woff");}.ff5f{font-family:ff5f;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff60;src:url('chunks/assets/font_7ce49fd56c8e1db448bf3109.woff2')format("woff");}.ff60{font-family:ff60;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff61;src:url('chunks/assets/font_7ce49fd56c8e1db448bf3109.woff2')format("woff");}.ff61{font-family:ff61;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff62;src:url('chunks/assets/font_7ce49fd56c8e1db448bf3109.woff2')format("woff");}.ff62{font-family:ff62;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff63;src:url('chunks/assets/font_b6f55d808f7ffcae50616348.woff2')format("woff");}.ff63{font-family:ff63;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff64;src:url('chunks/assets/font_7ce49fd56c8e1db448bf3109.woff2')format("woff");}.ff64{font-family:ff64;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff65;src:url('chunks/assets/font_7ce49fd56c8e1db448bf3109.woff2')format("woff");}.ff65{font-family:ff65;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff66;src:url('chunks/assets/font_7ce49fd56c8e1db448bf3109.woff2')format("woff");}.ff66{font-family:ff66;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff67;src:url('chunks/assets/font_6d38aefea5b20973474a6b41.woff2')format("woff");}.ff67{font-family:ff67;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff68;src:url('chunks/assets/font_3155a803db077e0927fd9545.woff2')format("woff");}.ff68{font-family:ff68;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff69;src:url('chunks/assets/font_7ce49fd56c8e1db448bf3109.woff2')format("woff");}.ff69{font-family:ff69;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6a;src:url('chunks/assets/font_7ce49fd56c8e1db448bf3109.woff2')format("woff");}.ff6a{font-family:ff6a;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6b;src:url('chunks/assets/font_7ce49fd56c8e1db448bf3109.woff2')format("woff");}.ff6b{font-family:ff6b;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6c;src:url('chunks/assets/font_6d38aefea5b20973474a6b41.woff2')format("woff");}.ff6c{font-family:ff6c;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6d;src:url('chunks/assets/font_11b1336b47eacdd80e0108e8.woff2')format("woff");}.ff6d{font-family:ff6d;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6e;src:url('chunks/assets/font_7ce49fd56c8e1db448bf3109.woff2')format("woff");}.ff6e{font-family:ff6e;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6f;src:url('chunks/assets/font_100c931bbbebc734ab63f9ed.woff2')format("woff");}.ff6f{font-family:ff6f;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff70;src:url('chunks/assets/font_6d38aefea5b20973474a6b41.woff2')format("woff");}.ff70{font-family:ff70;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff71;src:url('chunks/assets/font_7ce49fd56c8e1db448bf3109.woff2')format("woff");}.ff71{font-family:ff71;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff72;src:url('chunks/assets/font_77eafc154dac223aaf4b13b5.woff2')format("woff");}.ff72{font-family:ff72;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff73;src:url('chunks/assets/font_4ebc7268766ff9777c84c4e6.woff2')format("woff");}.ff73{font-family:ff73;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff74;src:url('chunks/assets/font_6d38aefea5b20973474a6b41.woff2')format("woff");}.ff74{font-family:ff74;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff75;src:url('chunks/assets/font_cd577a5c6ae52a7560ec20eb.woff2')format("woff");}.ff75{font-family:ff75;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff76;src:url('chunks/assets/font_6099b0ecb689db60ae383ac7.woff2')format("woff");}.ff76{font-family:ff76;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff77;src:url('chunks/assets/font_ecd744520d1a2d222e3668ec.woff2')format("woff");}.ff77{font-family:ff77;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff78;src:url('chunks/assets/font_0cc9d6531fb640b9182fb080.woff2')format("woff");}.ff78{font-family:ff78;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff79;src:url('chunks/assets/font_050657fbb40355475f1429c1.woff2')format("woff");}.ff79{font-family:ff79;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7a;src:url('chunks/assets/font_1502a95603dc0dad79e26ecc.woff2')format("woff");}.ff7a{font-family:ff7a;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7b;src:url('chunks/assets/font_7bbba89bb7940182dd6c8959.woff2')format("woff");}.ff7b{font-family:ff7b;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7c;src:url('chunks/assets/font_6e112b4c63e952d11bbc9c3e.woff2')format("woff");}.ff7c{font-family:ff7c;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7d;src:url('chunks/assets/font_6099b0ecb689db60ae383ac7.woff2')format("woff");}.ff7d{font-family:ff7d;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7e;src:url('chunks/assets/font_cd577a5c6ae52a7560ec20eb.woff2')format("woff");}.ff7e{font-family:ff7e;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7f;src:url('chunks/assets/font_cd577a5c6ae52a7560ec20eb.woff2')format("woff");}.ff7f{font-family:ff7f;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff80;src:url('chunks/assets/font_cd577a5c6ae52a7560ec20eb.woff2')format("woff");}.ff80{font-family:ff80;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff81;src:url('chunks/assets/font_6feca285ebe03e926db8fe51.woff2')format("woff");}.ff81{font-family:ff81;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff82;src:url('chunks/assets/font_cd577a5c6ae52a7560ec20eb.woff2')format("woff");}.ff82{font-family:ff82;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff83;src:url('chunks/assets/font_6feca285ebe03e926db8fe51.woff2')format("woff");}.ff83{font-family:ff83;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff84;src:url('chunks/assets/font_cd577a5c6ae52a7560ec20eb.woff2')format("woff");}.ff84{font-family:ff84;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.v2{vertical-align:27.000000px;}
.v3{vertical-align:63.159000px;}
.ls9{letter-spacing:-7.236000px;}
.ls18{letter-spacing:-3.240000px;}
.ls10{letter-spacing:-2.184000px;}
.ls4{letter-spacing:-1.326000px;}
.ls28{letter-spacing:-0.864000px;}
.lsc{letter-spacing:-0.840000px;}
.ls5{letter-spacing:-0.691200px;}
.ls11{letter-spacing:-0.630000px;}
.ls20{letter-spacing:-0.600000px;}
.ls26{letter-spacing:-0.594000px;}
.lsb{letter-spacing:-0.588000px;}
.lsa{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.480000px;}
.ls12{letter-spacing:-0.420000px;}
.ls27{letter-spacing:-0.324000px;}
.lsf{letter-spacing:-0.294000px;}
.ls2c{letter-spacing:-0.240000px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.008400px;}
.ls25{letter-spacing:0.010200px;}
.ls1{letter-spacing:0.012000px;}
.ls1b{letter-spacing:0.013200px;}
.ls16{letter-spacing:0.013800px;}
.ls2{letter-spacing:0.025800px;}
.ls2e{letter-spacing:0.120000px;}
.ls2d{letter-spacing:0.240000px;}
.ls29{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.378000px;}
.ls2a{letter-spacing:0.420000px;}
.ls2f{letter-spacing:0.480000px;}
.ls2b{letter-spacing:0.600000px;}
.ls19{letter-spacing:0.655200px;}
.ls8{letter-spacing:0.838800px;}
.ls7{letter-spacing:0.839400px;}
.ls24{letter-spacing:1.200000px;}
.ls23{letter-spacing:2.157000px;}
.ls1f{letter-spacing:2.218800px;}
.ls1c{letter-spacing:2.256600px;}
.ls13{letter-spacing:2.296200px;}
.ls21{letter-spacing:3.697800px;}
.ls1e{letter-spacing:6.426600px;}
.ls1d{letter-spacing:8.691000px;}
.ls22{letter-spacing:10.132200px;}
.ls15{letter-spacing:11.217600px;}
.ls14{letter-spacing:41.661600px;}
.ls17{letter-spacing:41.662200px;}
.ls0{letter-spacing:43.181964px;}
.ls1a{letter-spacing:52.223400px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-17.928000px;}
.wsa6{word-spacing:-16.434000px;}
.ws147{word-spacing:-15.300000px;}
.wsa1{word-spacing:-15.252300px;}
.ws13c{word-spacing:-15.240000px;}
.ws13b{word-spacing:-15.180000px;}
.ws146{word-spacing:-15.060000px;}
.ws4{word-spacing:-14.940000px;}
.ws35{word-spacing:-14.880000px;}
.wsb8{word-spacing:-14.820000px;}
.ws8{word-spacing:-14.700000px;}
.ws9d{word-spacing:-14.460000px;}
.wsda{word-spacing:-14.400000px;}
.ws22{word-spacing:-14.220000px;}
.ws39{word-spacing:-14.160000px;}
.wsa7{word-spacing:-13.980000px;}
.wsb5{word-spacing:-13.685700px;}
.ws33{word-spacing:-13.446000px;}
.ws6{word-spacing:-13.392000px;}
.ws5{word-spacing:-13.230000px;}
.ws125{word-spacing:-13.068000px;}
.ws124{word-spacing:-12.906000px;}
.ws12c{word-spacing:-12.528000px;}
.wsb{word-spacing:-12.150000px;}
.ws9{word-spacing:-11.772000px;}
.ws2{word-spacing:-10.896000px;}
.ws20{word-spacing:-10.800000px;}
.wsc{word-spacing:-10.464000px;}
.ws3d{word-spacing:-10.458000px;}
.ws64{word-spacing:-10.290000px;}
.wsb4{word-spacing:-10.264200px;}
.wsb7{word-spacing:-10.206000px;}
.ws87{word-spacing:-10.122000px;}
.ws1{word-spacing:-9.542544px;}
.ws3{word-spacing:-9.417600px;}
.ws92{word-spacing:-8.232000px;}
.ws34{word-spacing:-6.210000px;}
.wsaf{word-spacing:-4.440000px;}
.ws12a{word-spacing:-3.996000px;}
.wsf6{word-spacing:-3.960000px;}
.wsd9{word-spacing:-3.660000px;}
.wsa4{word-spacing:-2.646000px;}
.wsa3{word-spacing:-2.580000px;}
.ws107{word-spacing:-2.460000px;}
.ws1a{word-spacing:-2.400000px;}
.ws53{word-spacing:-2.340000px;}
.ws131{word-spacing:-2.268000px;}
.ws1f{word-spacing:-2.160000px;}
.wsa5{word-spacing:-2.106000px;}
.ws32{word-spacing:-2.100000px;}
.wsc3{word-spacing:-2.040000px;}
.wsbb{word-spacing:-1.944000px;}
.ws10f{word-spacing:-1.920000px;}
.wsba{word-spacing:-1.890000px;}
.wse0{word-spacing:-1.680000px;}
.ws111{word-spacing:-1.566000px;}
.wsa8{word-spacing:-1.560000px;}
.ws15{word-spacing:-1.512000px;}
.wsfa{word-spacing:-1.500000px;}
.ws10e{word-spacing:-1.440000px;}
.ws12d{word-spacing:-1.350000px;}
.ws80{word-spacing:-1.344000px;}
.ws118{word-spacing:-1.320000px;}
.wsbf{word-spacing:-1.260000px;}
.ws16{word-spacing:-1.242000px;}
.wse5{word-spacing:-1.200000px;}
.ws12{word-spacing:-1.188000px;}
.ws2a{word-spacing:-1.140000px;}
.ws30{word-spacing:-1.080000px;}
.ws2f{word-spacing:-1.020000px;}
.ws52{word-spacing:-0.960000px;}
.wsf9{word-spacing:-0.900000px;}
.ws38{word-spacing:-0.840000px;}
.ws140{word-spacing:-0.756000px;}
.ws141{word-spacing:-0.600000px;}
.ws25{word-spacing:-0.540000px;}
.wsb6{word-spacing:-0.486000px;}
.ws106{word-spacing:-0.480000px;}
.wsb9{word-spacing:-0.432000px;}
.wsdc{word-spacing:-0.420000px;}
.ws54{word-spacing:-0.378000px;}
.ws19{word-spacing:-0.360000px;}
.ws56{word-spacing:-0.294000px;}
.wsf7{word-spacing:-0.270000px;}
.ws10c{word-spacing:-0.240000px;}
.wse{word-spacing:-0.216000px;}
.ws10{word-spacing:-0.162000px;}
.wsa{word-spacing:-0.054000px;}
.ws21{word-spacing:-0.048000px;}
.wsd{word-spacing:0.000000px;}
.ws2e{word-spacing:0.060000px;}
.wsb3{word-spacing:0.180000px;}
.ws127{word-spacing:0.216000px;}
.ws129{word-spacing:0.324000px;}
.ws115{word-spacing:0.360000px;}
.ws9f{word-spacing:0.420000px;}
.wsb2{word-spacing:0.480000px;}
.ws126{word-spacing:0.486000px;}
.ws2c{word-spacing:0.540000px;}
.ws123{word-spacing:0.594000px;}
.wsfc{word-spacing:0.600000px;}
.ws9e{word-spacing:0.630000px;}
.wse1{word-spacing:0.648000px;}
.wsf{word-spacing:0.691200px;}
.ws11{word-spacing:0.702000px;}
.wsc2{word-spacing:0.720000px;}
.ws37{word-spacing:0.780000px;}
.ws121{word-spacing:0.810000px;}
.ws55{word-spacing:0.840000px;}
.ws36{word-spacing:0.864000px;}
.ws122{word-spacing:0.918000px;}
.ws13a{word-spacing:0.972000px;}
.ws10b{word-spacing:1.020000px;}
.ws135{word-spacing:1.080000px;}
.wse9{word-spacing:1.200000px;}
.ws0{word-spacing:1.224000px;}
.wsf8{word-spacing:1.242000px;}
.wsbe{word-spacing:1.260000px;}
.wse2{word-spacing:1.458000px;}
.wsf2{word-spacing:1.560000px;}
.ws132{word-spacing:1.620000px;}
.ws116{word-spacing:1.680000px;}
.wsd8{word-spacing:1.740000px;}
.ws136{word-spacing:1.944000px;}
.ws105{word-spacing:1.980000px;}
.ws31{word-spacing:2.040000px;}
.wsf3{word-spacing:2.100000px;}
.wse7{word-spacing:2.160000px;}
.ws110{word-spacing:2.214000px;}
.wse6{word-spacing:2.220000px;}
.wsed{word-spacing:2.280000px;}
.ws134{word-spacing:2.322000px;}
.ws11c{word-spacing:2.430000px;}
.ws130{word-spacing:2.484000px;}
.ws137{word-spacing:2.538000px;}
.ws103{word-spacing:2.640000px;}
.ws101{word-spacing:2.646000px;}
.wsc1{word-spacing:2.700000px;}
.wsc0{word-spacing:2.760000px;}
.ws133{word-spacing:2.862000px;}
.wsaa{word-spacing:2.880000px;}
.ws1b{word-spacing:3.000000px;}
.ws12b{word-spacing:3.024000px;}
.ws10a{word-spacing:3.060000px;}
.wsa9{word-spacing:3.120000px;}
.wsab{word-spacing:3.180000px;}
.wse8{word-spacing:3.240000px;}
.ws117{word-spacing:3.300000px;}
.wsc6{word-spacing:3.360000px;}
.wsa0{word-spacing:3.420000px;}
.ws142{word-spacing:3.456000px;}
.wsde{word-spacing:3.480000px;}
.wsfd{word-spacing:3.540000px;}
.wsfe{word-spacing:3.600000px;}
.ws100{word-spacing:3.672000px;}
.ws1e{word-spacing:3.720000px;}
.wsff{word-spacing:3.726000px;}
.ws145{word-spacing:3.780000px;}
.ws13f{word-spacing:3.942000px;}
.ws11f{word-spacing:3.996000px;}
.ws13{word-spacing:4.050000px;}
.ws14{word-spacing:4.104000px;}
.ws11a{word-spacing:4.158000px;}
.ws11b{word-spacing:4.212000px;}
.wsdb{word-spacing:4.500000px;}
.ws2b{word-spacing:4.560000px;}
.ws1d{word-spacing:4.620000px;}
.wsef{word-spacing:4.740000px;}
.wsd7{word-spacing:4.800000px;}
.wsd6{word-spacing:4.860000px;}
.ws2d{word-spacing:4.920000px;}
.ws11d{word-spacing:5.022000px;}
.wsa2{word-spacing:5.400000px;}
.ws27{word-spacing:5.460000px;}
.ws11e{word-spacing:5.616000px;}
.wsee{word-spacing:5.820000px;}
.wsf0{word-spacing:6.000000px;}
.ws109{word-spacing:6.120000px;}
.ws108{word-spacing:6.180000px;}
.ws113{word-spacing:6.240000px;}
.ws50{word-spacing:6.300000px;}
.wsad{word-spacing:6.360000px;}
.wsea{word-spacing:6.480000px;}
.wseb{word-spacing:6.540000px;}
.ws128{word-spacing:6.588000px;}
.ws1c{word-spacing:6.720000px;}
.wsac{word-spacing:6.780000px;}
.wsc5{word-spacing:6.840000px;}
.wsc4{word-spacing:6.900000px;}
.ws24{word-spacing:6.960000px;}
.wsf5{word-spacing:7.140000px;}
.wsf4{word-spacing:7.200000px;}
.ws29{word-spacing:7.260000px;}
.ws119{word-spacing:7.560000px;}
.ws18{word-spacing:7.680000px;}
.ws12e{word-spacing:7.722000px;}
.ws12f{word-spacing:7.776000px;}
.ws17{word-spacing:7.830000px;}
.ws51{word-spacing:7.980000px;}
.ws114{word-spacing:8.100000px;}
.ws28{word-spacing:8.160000px;}
.wsdd{word-spacing:8.340000px;}
.wsf1{word-spacing:8.640000px;}
.ws112{word-spacing:8.700000px;}
.ws138{word-spacing:9.180000px;}
.wsc7{word-spacing:9.540000px;}
.ws102{word-spacing:9.660000px;}
.wsdf{word-spacing:10.020000px;}
.ws26{word-spacing:10.080000px;}
.ws143{word-spacing:10.260000px;}
.ws13d{word-spacing:10.368000px;}
.ws13e{word-spacing:10.476000px;}
.wsec{word-spacing:10.620000px;}
.wsfb{word-spacing:10.680000px;}
.wsb0{word-spacing:11.160000px;}
.wsb1{word-spacing:11.220000px;}
.ws139{word-spacing:14.256000px;}
.ws104{word-spacing:14.400000px;}
.ws10d{word-spacing:14.820000px;}
.wsd4{word-spacing:15.600000px;}
.wsd5{word-spacing:15.780000px;}
.ws23{word-spacing:16.080000px;}
.wsc8{word-spacing:16.140000px;}
.ws120{word-spacing:16.146000px;}
.wsc9{word-spacing:16.320000px;}
.wsbc{word-spacing:18.060000px;}
.wsbd{word-spacing:18.120000px;}
.ws5f{word-spacing:24.055800px;}
.ws75{word-spacing:24.066000px;}
.ws144{word-spacing:24.786000px;}
.ws41{word-spacing:28.741200px;}
.ws5e{word-spacing:31.363800px;}
.ws93{word-spacing:31.374000px;}
.ws7b{word-spacing:31.395600px;}
.ws82{word-spacing:31.405800px;}
.ws77{word-spacing:32.707800px;}
.ws97{word-spacing:35.017800px;}
.ws59{word-spacing:35.443800px;}
.ws44{word-spacing:35.475000px;}
.ws98{word-spacing:35.840400px;}
.ws6d{word-spacing:36.838200px;}
.ws6f{word-spacing:36.870000px;}
.ws71{word-spacing:37.374000px;}
.ws9c{word-spacing:40.194000px;}
.ws45{word-spacing:40.351800px;}
.wsae{word-spacing:41.940000px;}
.ws49{word-spacing:42.577800px;}
.ws62{word-spacing:42.588000px;}
.ws6a{word-spacing:42.609600px;}
.ws67{word-spacing:42.651600px;}
.ws86{word-spacing:42.787800px;}
.ws65{word-spacing:43.207800px;}
.ws7d{word-spacing:43.249800px;}
.ws5b{word-spacing:43.654800px;}
.ws99{word-spacing:43.686600px;}
.ws69{word-spacing:44.425800px;}
.ws81{word-spacing:44.436000px;}
.ws5a{word-spacing:44.770800px;}
.ws42{word-spacing:44.803800px;}
.ws89{word-spacing:44.971800px;}
.ws7e{word-spacing:46.399800px;}
.ws8f{word-spacing:46.410000px;}
.ws91{word-spacing:46.567800px;}
.wse3{word-spacing:51.720000px;}
.wse4{word-spacing:52.260000px;}
.ws8b{word-spacing:62.443800px;}
.ws68{word-spacing:89.868000px;}
.ws95{word-spacing:102.273000px;}
.ws94{word-spacing:102.918600px;}
.ws5d{word-spacing:105.933600px;}
.ws5c{word-spacing:106.566000px;}
.ws78{word-spacing:106.610400px;}
.ws88{word-spacing:107.042400px;}
.ws79{word-spacing:107.275200px;}
.ws6c{word-spacing:108.671400px;}
.ws84{word-spacing:108.986400px;}
.ws6b{word-spacing:109.292400px;}
.ws46{word-spacing:110.082000px;}
.ws47{word-spacing:110.775600px;}
.ws40{word-spacing:111.180000px;}
.ws61{word-spacing:111.552600px;}
.ws85{word-spacing:111.645000px;}
.ws73{word-spacing:112.161000px;}
.ws74{word-spacing:112.639800px;}
.ws8a{word-spacing:112.741800px;}
.ws9a{word-spacing:113.299800px;}
.ws60{word-spacing:113.365200px;}
.ws7f{word-spacing:113.386800px;}
.ws72{word-spacing:113.397000px;}
.ws7c{word-spacing:123.928200px;}
.ws63{word-spacing:130.213800px;}
.ws7a{word-spacing:134.797200px;}
.ws83{word-spacing:141.268200px;}
.ws6e{word-spacing:141.800400px;}
.ws76{word-spacing:152.229000px;}
.ws3f{word-spacing:152.578200px;}
.ws8e{word-spacing:155.814600px;}
.ws8c{word-spacing:158.997000px;}
.ws96{word-spacing:160.822200px;}
.ws4a{word-spacing:162.430200px;}
.ws43{word-spacing:167.097600px;}
.ws66{word-spacing:168.287400px;}
.ws70{word-spacing:168.297600px;}
.wscf{word-spacing:170.604600px;}
.ws9b{word-spacing:173.567400px;}
.ws48{word-spacing:176.772000px;}
.ws90{word-spacing:180.505800px;}
.ws3e{word-spacing:181.059600px;}
.ws58{word-spacing:181.060200px;}
.ws8d{word-spacing:181.135800px;}
.wsd2{word-spacing:182.130000px;}
.wscc{word-spacing:182.396400px;}
.wscd{word-spacing:182.406600px;}
.wsce{word-spacing:182.416800px;}
.wsd0{word-spacing:199.715400px;}
.wsd1{word-spacing:217.034400px;}
.ws57{word-spacing:234.351000px;}
.ws3b{word-spacing:234.351600px;}
.ws3a{word-spacing:238.590000px;}
.ws4e{word-spacing:245.551800px;}
.wsca{word-spacing:263.259000px;}
.wscb{word-spacing:276.978600px;}
.ws4d{word-spacing:286.325400px;}
.ws4c{word-spacing:303.765600px;}
.wsd3{word-spacing:306.646200px;}
.ws4f{word-spacing:373.297800px;}
.ws4b{word-spacing:398.828400px;}
.ws3c{word-spacing:524.633400px;}
._a{margin-left:-10.504200px;}
._b8{margin-left:-9.313200px;}
._b6{margin-left:-8.208000px;}
._d{margin-left:-6.942000px;}
._3{margin-left:-5.064600px;}
._7{margin-left:-3.356400px;}
._4{margin-left:-2.322000px;}
._0{margin-left:-1.050600px;}
._1{width:1.832400px;}
._5{width:2.896800px;}
._2{width:4.253400px;}
._9{width:6.098400px;}
._8{width:7.822200px;}
._c{width:8.913000px;}
._b{width:10.587000px;}
._b7{width:11.773200px;}
._ba{width:14.437800px;}
._b9{width:15.551400px;}
._a2{width:17.106000px;}
._a1{width:18.220800px;}
._bb{width:19.880400px;}
._49{width:35.600400px;}
._6{width:36.624000px;}
._6b{width:40.563600px;}
._13{width:41.821800px;}
._4a{width:42.979800px;}
._18{width:45.827400px;}
._50{width:47.835000px;}
._4c{width:49.175400px;}
._9e{width:50.226600px;}
._45{width:51.541200px;}
._17{width:54.070200px;}
._19{width:55.779000px;}
._80{width:57.939600px;}
._43{width:59.048400px;}
._47{width:60.599400px;}
._10{width:61.683000px;}
._a0{width:62.760000px;}
._4e{width:64.214400px;}
._57{width:65.378400px;}
._3b{width:67.083600px;}
._3e{width:68.672400px;}
._90{width:69.742200px;}
._11{width:71.904600px;}
._4f{width:73.053000px;}
._12{width:74.230200px;}
._8f{width:77.206800px;}
._97{width:78.415800px;}
._79{width:79.993200px;}
._22{width:82.510800px;}
._72{width:83.617200px;}
._6e{width:85.567800px;}
._6a{width:87.407400px;}
._63{width:89.715600px;}
._23{width:91.016400px;}
._69{width:92.256000px;}
._2c{width:93.483600px;}
._7d{width:94.870200px;}
._7f{width:97.810200px;}
._75{width:98.883600px;}
._1f{width:100.986600px;}
._16{width:102.432600px;}
._15{width:103.603200px;}
._3d{width:104.929200px;}
._3f{width:105.984600px;}
._92{width:109.177800px;}
._71{width:110.270400px;}
._6c{width:113.310600px;}
._1b{width:115.012200px;}
._20{width:116.568000px;}
._64{width:117.702000px;}
._61{width:119.014200px;}
._84{width:120.212400px;}
._24{width:121.233600px;}
._1c{width:122.957400px;}
._76{width:124.369200px;}
._5b{width:126.636600px;}
._5a{width:127.741200px;}
._9f{width:128.788200px;}
._3a{width:130.068600px;}
._58{width:133.453800px;}
._38{width:136.032600px;}
._74{width:137.882400px;}
._83{width:138.961200px;}
._78{width:140.973600px;}
._28{width:142.275000px;}
._27{width:143.844000px;}
._94{width:145.272600px;}
._41{width:147.106800px;}
._52{width:150.972600px;}
._77{width:153.392400px;}
._60{width:156.018600px;}
._7c{width:158.217000px;}
._5e{width:160.089600px;}
._5d{width:161.635200px;}
._66{width:164.071800px;}
._4b{width:166.304400px;}
._81{width:167.541000px;}
._1d{width:169.542000px;}
._a9{width:171.521400px;}
._8a{width:173.935800px;}
._4d{width:175.838400px;}
._55{width:177.449400px;}
._f{width:179.391000px;}
._2a{width:180.549600px;}
._8e{width:182.778600px;}
._b0{width:183.842400px;}
._88{width:185.142000px;}
._51{width:188.018400px;}
._62{width:191.126400px;}
._25{width:192.206400px;}
._70{width:194.314200px;}
._53{width:196.670400px;}
._6d{width:200.698200px;}
._34{width:202.054800px;}
._59{width:205.882200px;}
._3c{width:206.926200px;}
._31{width:209.898000px;}
._8c{width:212.840400px;}
._39{width:215.374200px;}
._67{width:217.222200px;}
._14{width:219.280200px;}
._a8{width:224.053200px;}
._65{width:225.107400px;}
._44{width:227.718600px;}
._29{width:229.769400px;}
._ad{width:233.532000px;}
._73{width:234.904200px;}
._46{width:236.762400px;}
._9c{width:238.826400px;}
._87{width:240.034800px;}
._6f{width:242.198400px;}
._40{width:244.298400px;}
._9d{width:246.968400px;}
._96{width:249.222600px;}
._98{width:252.799200px;}
._7b{width:254.465400px;}
._36{width:255.811200px;}
._95{width:258.634200px;}
._48{width:261.014400px;}
._ae{width:262.456200px;}
._82{width:264.090600px;}
._8d{width:266.706000px;}
._93{width:270.590400px;}
._37{width:272.270400px;}
._26{width:273.400200px;}
._9b{width:274.938000px;}
._2d{width:276.118800px;}
._86{width:278.151000px;}
._91{width:279.634200px;}
._32{width:281.350200px;}
._5f{width:284.482200px;}
._5c{width:285.549000px;}
._2b{width:287.844600px;}
._7a{width:289.000200px;}
._8b{width:290.688000px;}
._b3{width:294.216000px;}
._89{width:298.019400px;}
._b2{width:299.847600px;}
._68{width:301.819200px;}
._21{width:304.504800px;}
._1a{width:307.718400px;}
._7e{width:309.958200px;}
._1e{width:313.866600px;}
._aa{width:317.892000px;}
._42{width:322.932600px;}
._54{width:326.523600px;}
._56{width:327.682200px;}
._a6{width:329.449200px;}
._a5{width:330.599400px;}
._35{width:337.418400px;}
._99{width:339.393000px;}
._a4{width:340.627800px;}
._ab{width:344.487600px;}
._30{width:351.093600px;}
._9a{width:352.386000px;}
._b4{width:353.988000px;}
._85{width:360.063600px;}
._af{width:364.278000px;}
._b1{width:365.916000px;}
._33{width:376.539000px;}
._a3{width:382.793400px;}
._ac{width:388.764000px;}
._a7{width:418.584000px;}
._e{width:436.289400px;}
._2e{width:589.744200px;}
._2f{width:722.005200px;}
._b5{width:1091.145600px;}
.fc7{color:transparent;}
.fc6{color:rgb(117,210,225);}
.fc8{color:rgb(230,75,40);}
.fc4{color:rgb(16,15,13);}
.fc2{color:rgb(109,111,79);}
.fc1{color:rgb(70,71,49);}
.fc5{color:rgb(72,169,57);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs10{font-size:21.487200px;}
.fsa{font-size:23.947200px;}
.fsf{font-size:27.371400px;}
.fs3{font-size:38.478000px;}
.fsd{font-size:41.056800px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs9{font-size:47.451600px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fse{font-size:54.742800px;}
.fs7{font-size:60.000000px;}
.fsb{font-size:61.009200px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs11{font-size:91.237800px;}
.fsc{font-size:101.682600px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y222{bottom:1.646550px;}
.y227{bottom:1.646850px;}
.y224{bottom:1.647450px;}
.y182{bottom:1.835250px;}
.y220{bottom:2.098350px;}
.y21e{bottom:2.099550px;}
.y1ae{bottom:3.146850px;}
.y170{bottom:3.635400px;}
.y169{bottom:3.637050px;}
.y156{bottom:3.637200px;}
.y13a{bottom:3.637350px;}
.y134{bottom:3.637500px;}
.y14c{bottom:3.637650px;}
.y148{bottom:3.637800px;}
.y130{bottom:3.637950px;}
.y136{bottom:3.638100px;}
.y138{bottom:3.638250px;}
.y13c{bottom:3.638400px;}
.y160{bottom:3.638550px;}
.y141{bottom:3.638700px;}
.y16c{bottom:3.638850px;}
.y158{bottom:3.639000px;}
.y132{bottom:3.639150px;}
.y14e{bottom:3.639300px;}
.y146{bottom:3.639450px;}
.y165{bottom:3.639600px;}
.y144{bottom:3.639900px;}
.y22e{bottom:5.067900px;}
.y186{bottom:7.295250px;}
.y1{bottom:68.124750px;}
.y39{bottom:71.212050px;}
.y3a{bottom:75.036150px;}
.y23a{bottom:113.078700px;}
.y128{bottom:113.078850px;}
.y9f{bottom:116.803950px;}
.y2b{bottom:117.212550px;}
.yb{bottom:117.875550px;}
.ydf{bottom:118.190700px;}
.y12e{bottom:120.500850px;}
.y10a{bottom:125.410200px;}
.ya{bottom:132.275550px;}
.y239{bottom:134.078700px;}
.y127{bottom:134.078850px;}
.y9e{bottom:136.584450px;}
.yde{bottom:137.971200px;}
.y2a{bottom:138.212550px;}
.y263{bottom:139.529400px;}
.y12d{bottom:140.300850px;}
.y253{bottom:144.028350px;}
.y109{bottom:145.190700px;}
.y9{bottom:146.675550px;}
.ydd{bottom:151.471200px;}
.y79{bottom:155.078700px;}
.y67{bottom:155.078850px;}
.y9d{bottom:156.364950px;}
.y29{bottom:159.212550px;}
.y12c{bottom:160.100850px;}
.y8{bottom:161.075550px;}
.y252{bottom:163.828350px;}
.y108{bottom:164.971200px;}
.ydc{bottom:171.251550px;}
.y78{bottom:176.078700px;}
.y66{bottom:176.078850px;}
.y9c{bottom:176.145450px;}
.y107{bottom:178.471200px;}
.y12b{bottom:179.900850px;}
.y28{bottom:180.212550px;}
.y251{bottom:183.628350px;}
.ydb{bottom:184.751550px;}
.y126{bottom:189.513600px;}
.y9b{bottom:195.925950px;}
.y77{bottom:197.078700px;}
.y65{bottom:197.078850px;}
.y106{bottom:198.251550px;}
.y36{bottom:199.392600px;}
.y185{bottom:200.656500px;}
.y27{bottom:201.212550px;}
.y262{bottom:202.529400px;}
.yda{bottom:204.532050px;}
.y18a{bottom:211.394400px;}
.y105{bottom:211.751550px;}
.y12f{bottom:214.345500px;}
.y9a{bottom:215.706450px;}
.y35{bottom:217.392600px;}
.y76{bottom:218.078700px;}
.y64{bottom:218.078850px;}
.y125{bottom:221.811150px;}
.y26{bottom:222.212550px;}
.yd9{bottom:224.312550px;}
.y1ad{bottom:230.584500px;}
.y104{bottom:231.532050px;}
.y34{bottom:235.392600px;}
.y99{bottom:235.486950px;}
.y14b{bottom:236.166000px;}
.y223{bottom:236.323500px;}
.y75{bottom:239.078700px;}
.y63{bottom:239.078850px;}
.y21c{bottom:240.438900px;}
.y25{bottom:243.212550px;}
.yd8{bottom:244.093200px;}
.y1f0{bottom:244.712644px;}
.y1a1{bottom:245.268779px;}
.y225{bottom:247.278000px;}
.y183{bottom:247.846500px;}
.y17b{bottom:249.957000px;}
.y103{bottom:251.312550px;}
.y135{bottom:251.775000px;}
.y33{bottom:253.392600px;}
.y98{bottom:255.267450px;}
.y1c1{bottom:256.752784px;}
.y181{bottom:257.512500px;}
.y74{bottom:260.078700px;}
.y62{bottom:260.078850px;}
.yd7{bottom:263.873700px;}
.y24{bottom:264.212550px;}
.y261{bottom:265.937100px;}
.y1c8{bottom:267.150418px;}
.y142{bottom:268.174500px;}
.y102{bottom:271.093200px;}
.y1e1{bottom:271.286658px;}
.y32{bottom:271.392600px;}
.y97{bottom:275.048100px;}
.y194{bottom:277.498367px;}
.y22c{bottom:280.280581px;}
.y73{bottom:281.078700px;}
.y61{bottom:281.078850px;}
.y1fb{bottom:282.936525px;}
.yd6{bottom:283.654200px;}
.y155{bottom:283.825500px;}
.y250{bottom:285.131850px;}
.y23{bottom:285.212550px;}
.y1bc{bottom:287.904631px;}
.y31{bottom:289.392600px;}
.y101{bottom:290.873700px;}
.y96{bottom:294.828600px;}
.y260{bottom:295.441050px;}
.y16e{bottom:296.913000px;}
.y1c0{bottom:298.302265px;}
.y13e{bottom:299.475000px;}
.y72{bottom:302.078700px;}
.y60{bottom:302.078850px;}
.yd5{bottom:303.434700px;}
.y24f{bottom:304.931850px;}
.y22{bottom:306.212550px;}
.y30{bottom:307.392600px;}
.y19d{bottom:308.670743px;}
.y100{bottom:310.654200px;}
.y95{bottom:314.609100px;}
.y15b{bottom:315.126000px;}
.y1b3{bottom:319.056478px;}
.y71{bottom:323.078700px;}
.y5f{bottom:323.078850px;}
.yd4{bottom:323.215200px;}
.y24e{bottom:324.731850px;}
.y21{bottom:327.212550px;}
.y190{bottom:329.435219px;}
.yff{bottom:330.434700px;}
.y15e{bottom:330.781500px;}
.y16d{bottom:333.100500px;}
.y173{bottom:333.253500px;}
.y94{bottom:334.389600px;}
.y19c{bottom:339.750740px;}
.y226{bottom:340.950000px;}
.y205{bottom:341.750391px;}
.y2f{bottom:342.400500px;}
.yd3{bottom:342.995700px;}
.y167{bottom:343.869000px;}
.y70{bottom:344.078700px;}
.y5e{bottom:344.078850px;}
.y14f{bottom:346.431000px;}
.y1ed{bottom:347.991025px;}
.y20{bottom:348.212550px;}
.yfe{bottom:350.215200px;}
.y1c9{bottom:350.249381px;}
.y93{bottom:354.170100px;}
.y207{bottom:356.284498px;}
.y92{bottom:356.460000px;}
.yd2{bottom:356.495700px;}
.y2e{bottom:360.400500px;}
.y1b0{bottom:360.605959px;}
.y15c{bottom:362.082000px;}
.y91{bottom:363.210000px;}
.yfd{bottom:363.715200px;}
.y6f{bottom:365.078700px;}
.y5d{bottom:365.078850px;}
.y1f{bottom:369.212550px;}
.y1ac{bottom:371.005229px;}
.y1ea{bottom:373.117786px;}
.yd1{bottom:376.276200px;}
.y162{bottom:377.737500px;}
.y1fd{bottom:378.116452px;}
.y2d{bottom:378.400500px;}
.y166{bottom:379.543500px;}
.y1f6{bottom:381.226504px;}
.y1af{bottom:381.380700px;}
.yfc{bottom:383.495700px;}
.y238{bottom:386.078700px;}
.y5c{bottom:386.078850px;}
.yd0{bottom:389.776200px;}
.y1e{bottom:390.212550px;}
.y198{bottom:391.769706px;}
.y161{bottom:393.387000px;}
.y2c{bottom:396.400500px;}
.y6e{bottom:400.440900px;}
.y90{bottom:401.606700px;}
.y1e7{bottom:402.144944px;}
.y1c2{bottom:402.186233px;}
.yfb{bottom:403.276200px;}
.y237{bottom:407.078700px;}
.y124{bottom:407.078850px;}
.y13f{bottom:409.038000px;}
.ycf{bottom:409.556700px;}
.y16a{bottom:410.247000px;}
.y1d{bottom:411.212550px;}
.y1f7{bottom:411.351931px;}
.y197{bottom:412.544447px;}
.yfa{bottom:416.776200px;}
.y5b{bottom:420.513600px;}
.y8f{bottom:421.406700px;}
.y25f{bottom:421.441050px;}
.y1b4{bottom:422.940446px;}
.yce{bottom:423.056700px;}
.y151{bottom:424.689000px;}
.y236{bottom:428.078700px;}
.y123{bottom:428.078850px;}
.y17a{bottom:428.160000px;}
.y206{bottom:431.089988px;}
.y1c{bottom:432.212550px;}
.y1a5{bottom:433.339716px;}
.yf9{bottom:436.556700px;}
.y149{bottom:440.343000px;}
.ycd{bottom:442.837350px;}
.y1e8{bottom:443.694425px;}
.y1e2{bottom:443.714954px;}
.y1bf{bottom:443.735715px;}
.y6d{bottom:449.078700px;}
.y122{bottom:449.078850px;}
.y5a{bottom:452.811150px;}
.y1b9{bottom:454.112821px;}
.y179{bottom:455.530500px;}
.y178{bottom:455.683500px;}
.y163{bottom:455.994000px;}
.ycc{bottom:456.337350px;}
.y26b{bottom:462.513600px;}
.y1e0{bottom:463.514596px;}
.y203{bottom:463.627502px;}
.y191{bottom:464.481299px;}
.y1b{bottom:467.204250px;}
.y22b{bottom:468.691613px;}
.yf8{bottom:469.837350px;}
.y6c{bottom:470.078700px;}
.y189{bottom:470.078850px;}
.ya6{bottom:470.275500px;}
.y133{bottom:471.645000px;}
.y1fe{bottom:474.066193px;}
.y1ca{bottom:474.908090px;}
.ycb{bottom:476.117700px;}
.y1a0{bottom:485.276568px;}
.y14a{bottom:487.299000px;}
.yca{bottom:489.617700px;}
.ya5{bottom:490.056000px;}
.y6b{bottom:491.078700px;}
.y188{bottom:491.078850px;}
.y26a{bottom:494.811150px;}
.y172{bottom:495.544500px;}
.y18f{bottom:495.643410px;}
.y152{bottom:502.950000px;}
.y25b{bottom:505.440900px;}
.y1e4{bottom:506.039176px;}
.y1d1{bottom:506.059937px;}
.yc9{bottom:509.398200px;}
.ya4{bottom:509.836500px;}
.y6a{bottom:512.078700px;}
.y59{bottom:512.078850px;}
.y1fa{bottom:516.416282px;}
.y1c5{bottom:516.457572px;}
.y153{bottom:518.601000px;}
.y174{bottom:522.552000px;}
.y1b2{bottom:526.814150px;}
.y121{bottom:528.239850px;}
.yc8{bottom:529.178850px;}
.y1ec{bottom:529.390231px;}
.ya3{bottom:529.617000px;}
.y176{bottom:531.690000px;}
.y235{bottom:533.078700px;}
.y58{bottom:533.078850px;}
.y139{bottom:534.252000px;}
.y1a7{bottom:537.213420px;}
.y1a{bottom:539.227950px;}
.y177{bottom:547.344000px;}
.y18d{bottom:547.549469px;}
.y120{bottom:548.020350px;}
.yc7{bottom:548.959350px;}
.ya2{bottom:549.397500px;}
.y137{bottom:549.906000px;}
.y1e6{bottom:550.832145px;}
.y234{bottom:554.078700px;}
.y57{bottom:554.078850px;}
.y1b7{bottom:557.945468px;}
.y19{bottom:559.027950px;}
.yf7{bottom:562.459350px;}
.y15a{bottom:565.557000px;}
.y69{bottom:566.763600px;}
.y11f{bottom:567.800850px;}
.y1cb{bottom:568.353367px;}
.yc6{bottom:568.739850px;}
.ya1{bottom:569.178000px;}
.y233{bottom:575.078700px;}
.y56{bottom:575.078850px;}
.y17e{bottom:577.347000px;}
.y204{bottom:578.689184px;}
.y1be{bottom:578.730473px;}
.y221{bottom:579.594000px;}
.y13d{bottom:581.208000px;}
.y11e{bottom:581.300850px;}
.yf6{bottom:582.239850px;}
.y202{bottom:585.822803px;}
.y68{bottom:586.563600px;}
.yc5{bottom:588.520350px;}
.y1d5{bottom:589.117844px;}
.y184{bottom:590.088900px;}
.y219{bottom:594.234016px;}
.yf5{bottom:595.739850px;}
.y232{bottom:596.078700px;}
.y55{bottom:596.078850px;}
.y13b{bottom:596.862000px;}
.ya0{bottom:598.534800px;}
.y1bd{bottom:599.505214px;}
.y18{bottom:600.087750px;}
.y11d{bottom:601.081350px;}
.yc4{bottom:602.020350px;}
.y171{bottom:603.235500px;}
.y17f{bottom:608.764500px;}
.y1d9{bottom:608.958542px;}
.y1aa{bottom:609.883956px;}
.y147{bottom:612.513000px;}
.y11c{bottom:614.581350px;}
.yf4{bottom:615.520350px;}
.y257{bottom:617.078700px;}
.y54{bottom:617.078850px;}
.y17{bottom:619.887750px;}
.y196{bottom:620.261062px;}
.y1eb{bottom:621.029009px;}
.yc3{bottom:621.800850px;}
.y157{bottom:628.162500px;}
.yf3{bottom:629.020350px;}
.y1a4{bottom:630.668961px;}
.y11b{bottom:634.361850px;}
.y180{bottom:634.449000px;}
.y8e{bottom:638.078700px;}
.y53{bottom:638.078850px;}
.y17c{bottom:639.673500px;}
.y16{bottom:639.687750px;}
.y19b{bottom:641.035803px;}
.yc2{bottom:641.581350px;}
.y154{bottom:643.813500px;}
.yf2{bottom:648.800850px;}
.y1c4{bottom:651.452330px;}
.y1f9{bottom:652.786444px;}
.y11a{bottom:654.142350px;}
.y8d{bottom:659.078700px;}
.y52{bottom:659.078850px;}
.y159{bottom:659.467500px;}
.y15{bottom:659.487750px;}
.yc1{bottom:661.361850px;}
.y199{bottom:661.810544px;}
.y216{bottom:661.813508px;}
.yf1{bottom:668.581350px;}
.y19e{bottom:672.208178px;}
.y119{bottom:673.922850px;}
.y131{bottom:675.118500px;}
.y164{bottom:676.368000px;}
.y14{bottom:679.287750px;}
.y8c{bottom:680.078700px;}
.y51{bottom:680.078850px;}
.yc0{bottom:681.142350px;}
.y1cd{bottom:682.614442px;}
.yf0{bottom:688.361850px;}
.y1f8{bottom:690.753719px;}
.y15f{bottom:690.769500px;}
.y1a6{bottom:692.993183px;}
.y118{bottom:693.703350px;}
.y269{bottom:694.440900px;}
.y168{bottom:694.819500px;}
.y13{bottom:699.087750px;}
.ybf{bottom:700.922850px;}
.y8b{bottom:701.078700px;}
.y50{bottom:701.078850px;}
.y1ba{bottom:703.378918px;}
.y25a{bottom:704.999400px;}
.y145{bottom:706.423500px;}
.yef{bottom:708.142350px;}
.y17d{bottom:710.914500px;}
.y217{bottom:712.621298px;}
.y117{bottom:713.483850px;}
.y1e3{bottom:713.755792px;}
.y19f{bottom:713.767924px;}
.y12{bottom:718.887750px;}
.ybe{bottom:720.703350px;}
.y14d{bottom:722.074500px;}
.y8a{bottom:722.078700px;}
.y4f{bottom:722.078850px;}
.y195{bottom:724.186087px;}
.y259{bottom:724.799400px;}
.y116{bottom:726.983850px;}
.yee{bottom:727.922850px;}
.ybd{bottom:734.203350px;}
.y1e9{bottom:734.561325px;}
.y1ab{bottom:734.583722px;}
.y15d{bottom:737.725500px;}
.y11{bottom:738.687750px;}
.y89{bottom:743.078700px;}
.y4e{bottom:743.078850px;}
.y258{bottom:744.599400px;}
.y1c6{bottom:744.989985px;}
.y175{bottom:745.969500px;}
.y231{bottom:746.119800px;}
.y115{bottom:746.764500px;}
.yed{bottom:747.703350px;}
.y143{bottom:753.375000px;}
.y24d{bottom:753.657450px;}
.ybc{bottom:753.983850px;}
.y192{bottom:755.348198px;}
.y21a{bottom:755.351163px;}
.y26f{bottom:756.513450px;}
.y10{bottom:758.487750px;}
.y25e{bottom:760.275000px;}
.yec{bottom:761.203350px;}
.y268{bottom:764.078700px;}
.y4d{bottom:764.078850px;}
.y16b{bottom:765.726000px;}
.y1d2{bottom:765.754462px;}
.y230{bottom:765.919800px;}
.y1f5{bottom:766.031362px;}
.y114{bottom:766.545000px;}
.y150{bottom:769.030500px;}
.y24c{bottom:773.437800px;}
.ybb{bottom:773.764500px;}
.y18e{bottom:776.122939px;}
.y1ef{bottom:777.896777px;}
.yf{bottom:778.287750px;}
.y88{bottom:778.440900px;}
.y187{bottom:778.441050px;}
.y25d{bottom:780.075000px;}
.yeb{bottom:780.983850px;}
.y16f{bottom:782.122500px;}
.y140{bottom:784.681500px;}
.y4c{bottom:785.078850px;}
.y22f{bottom:785.719800px;}
.y113{bottom:786.325500px;}
.y1c3{bottom:786.539467px;}
.yba{bottom:787.264500px;}
.y26e{bottom:788.811000px;}
.y256{bottom:789.188400px;}
.y267{bottom:790.529250px;}
.y24b{bottom:793.218450px;}
.y208{bottom:796.875283px;}
.y21b{bottom:796.900645px;}
.ye{bottom:798.087750px;}
.y112{bottom:799.825500px;}
.y25c{bottom:799.875000px;}
.yea{bottom:800.764500px;}
.y4b{bottom:806.078850px;}
.y20c{bottom:806.148689px;}
.yb9{bottom:807.045000px;}
.y255{bottom:808.988400px;}
.y24a{bottom:812.998950px;}
.ye9{bottom:814.264500px;}
.y213{bottom:814.318992px;}
.y20e{bottom:816.536059px;}
.y1df{bottom:819.538637px;}
.y111{bottom:819.606000px;}
.yb8{bottom:826.825500px;}
.y211{bottom:826.923430px;}
.y87{bottom:827.078700px;}
.y4a{bottom:827.078850px;}
.y254{bottom:828.788400px;}
.yd{bottom:829.185300px;}
.y21d{bottom:829.398000px;}
.y249{bottom:832.779450px;}
.ye8{bottom:834.045000px;}
.y209{bottom:837.310800px;}
.y110{bottom:839.386500px;}
.yb7{bottom:846.606000px;}
.y20d{bottom:847.698170px;}
.y86{bottom:848.078700px;}
.y49{bottom:848.078850px;}
.y212{bottom:851.978342px;}
.y248{bottom:852.559950px;}
.y10f{bottom:852.886500px;}
.ye7{bottom:853.825500px;}
.y210{bottom:858.085541px;}
.y1d8{bottom:858.101469px;}
.y215{bottom:859.768870px;}
.y228{bottom:862.492200px;}
.y214{bottom:865.219160px;}
.yb6{bottom:866.386500px;}
.y20f{bottom:868.472911px;}
.y85{bottom:869.078700px;}
.y48{bottom:869.078850px;}
.y247{bottom:872.340450px;}
.y10e{bottom:872.667000px;}
.ye6{bottom:873.606000px;}
.y20b{bottom:878.860282px;}
.yb5{bottom:886.167000px;}
.y20a{bottom:889.247652px;}
.y84{bottom:890.078700px;}
.y47{bottom:890.078850px;}
.y246{bottom:892.120950px;}
.ye5{bottom:893.386500px;}
.y266{bottom:895.529250px;}
.y1a2{bottom:900.791912px;}
.yb4{bottom:905.947500px;}
.y7{bottom:908.466750px;}
.y83{bottom:911.078700px;}
.y46{bottom:911.078850px;}
.y1c7{bottom:911.198176px;}
.y245{bottom:911.901450px;}
.ye4{bottom:913.167000px;}
.y1de{bottom:913.989805px;}
.y1ff{bottom:919.327189px;}
.y10d{bottom:919.447500px;}
.y1b6{bottom:921.565018px;}
.yb3{bottom:925.728000px;}
.y6{bottom:926.466750px;}
.y244{bottom:931.681950px;}
.y18c{bottom:931.943759px;}
.y82{bottom:932.078700px;}
.y45{bottom:932.078850px;}
.ye3{bottom:932.947500px;}
.y10c{bottom:939.228000px;}
.y1a9{bottom:942.341394px;}
.y21f{bottom:943.662000px;}
.y5{bottom:944.466750px;}
.yb2{bottom:945.508500px;}
.y243{bottom:951.462450px;}
.ye2{bottom:952.728000px;}
.y1ce{bottom:952.747657px;}
.y81{bottom:953.078700px;}
.y44{bottom:953.078850px;}
.y10b{bottom:959.008500px;}
.y1b1{bottom:963.104235px;}
.y1f2{bottom:964.592311px;}
.y1d7{bottom:964.767035px;}
.yb1{bottom:965.289000px;}
.y242{bottom:971.243100px;}
.ye1{bottom:972.508500px;}
.y218{bottom:973.496206px;}
.y1cf{bottom:973.522398px;}
.y80{bottom:974.078700px;}
.y43{bottom:974.078850px;}
.yb0{bottom:978.789000px;}
.y4{bottom:979.474800px;}
.y22d{bottom:983.740650px;}
.y1f1{bottom:983.868479px;}
.y1d3{bottom:983.899504px;}
.y241{bottom:991.023600px;}
.ye0{bottom:992.289000px;}
.y1a3{bottom:994.288510px;}
.y7f{bottom:995.078700px;}
.y42{bottom:995.078850px;}
.yaf{bottom:998.569500px;}
.y1ee{bottom:1000.629917px;}
.y200{bottom:1004.643220px;}
.y1d0{bottom:1004.684509px;}
.y240{bottom:1010.804100px;}
.yae{bottom:1012.069500px;}
.y1d6{bottom:1013.306437px;}
.y193{bottom:1015.042723px;}
.y7e{bottom:1016.078700px;}
.y41{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.y201{bottom:1023.200893px;}
.y19a{bottom:1025.430093px;}
.y23f{bottom:1030.584600px;}
.yad{bottom:1031.850000px;}
.y1bb{bottom:1034.789408px;}
.y7d{bottom:1037.078700px;}
.y40{bottom:1037.078850px;}
.y265{bottom:1042.529250px;}
.y1db{bottom:1046.213230px;}
.y2{bottom:1049.282550px;}
.y23e{bottom:1050.365100px;}
.yac{bottom:1051.630500px;}
.y22a{bottom:1055.466000px;}
.y229{bottom:1055.971500px;}
.y1da{bottom:1056.600600px;}
.y7c{bottom:1058.078700px;}
.y3f{bottom:1058.078850px;}
.y1dc{bottom:1066.987970px;}
.y23d{bottom:1070.145600px;}
.yab{bottom:1071.411000px;}
.y1a8{bottom:1077.387473px;}
.y1e5{bottom:1078.986820px;}
.y7b{bottom:1079.078700px;}
.y3e{bottom:1079.078850px;}
.y1f3{bottom:1087.752447px;}
.y1b5{bottom:1087.773208px;}
.y26d{bottom:1089.903300px;}
.y23c{bottom:1089.926100px;}
.yaa{bottom:1091.191650px;}
.y1dd{bottom:1092.289223px;}
.y18b{bottom:1098.151950px;}
.y12a{bottom:1100.078700px;}
.y3d{bottom:1100.078850px;}
.y1cc{bottom:1108.568477px;}
.yc{bottom:1109.815500px;}
.y1f4{bottom:1110.939275px;}
.ya9{bottom:1111.272150px;}
.y7a{bottom:1112.695800px;}
.ya8{bottom:1113.562050px;}
.y1b8{bottom:1118.935319px;}
.y23b{bottom:1119.282900px;}
.y1fc{bottom:1119.715166px;}
.ya7{bottom:1120.312050px;}
.y129{bottom:1121.078700px;}
.y3c{bottom:1121.078850px;}
.y26c{bottom:1122.200850px;}
.y264{bottom:1125.451800px;}
.y1d4{bottom:1129.332954px;}
.y38{bottom:1155.615300px;}
.y37{bottom:1175.115300px;}
.y3b{bottom:1178.691750px;}
.h29{height:6.111000px;}
.h1f{height:6.810000px;}
.h27{height:7.785000px;}
.h25{height:11.677500px;}
.h1e{height:13.494000px;}
.h1d{height:13.495500px;}
.h19{height:13.497000px;}
.h1b{height:13.498500px;}
.h2a{height:14.919335px;}
.h20{height:16.627402px;}
.h28{height:19.004947px;}
.h24{height:28.507212px;}
.h18{height:31.972517px;}
.h1c{height:32.136411px;}
.h1a{height:32.947351px;}
.h17{height:33.140625px;}
.h15{height:33.448242px;}
.h6{height:34.446094px;}
.h26{height:37.074347px;}
.h16{height:37.857422px;}
.h2{height:38.039062px;}
.h10{height:38.273438px;}
.h5{height:38.531250px;}
.h21{height:41.318242px;}
.hf{height:42.793945px;}
.h7{height:43.004883px;}
.he{height:43.057617px;}
.h9{height:43.321289px;}
.h8{height:47.343750px;}
.hc{height:48.134766px;}
.ha{height:48.673828px;}
.h12{height:50.176758px;}
.h11{height:52.078125px;}
.h4{height:52.948242px;}
.hd{height:54.082031px;}
.hb{height:56.812500px;}
.h13{height:60.448242px;}
.h2c{height:61.790444px;}
.h23{height:68.864144px;}
.h3{height:81.231445px;}
.h14{height:96.607242px;}
.h22{height:597.523500px;}
.h2b{height:941.422500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w35{width:5.715000px;}
.w31{width:6.369000px;}
.w34{width:7.281000px;}
.w30{width:19.108500px;}
.w2{width:20.759550px;}
.w2f{width:28.005000px;}
.w2d{width:28.006500px;}
.w2c{width:35.917500px;}
.w2e{width:35.919000px;}
.w2b{width:38.884500px;}
.w2a{width:41.850000px;}
.w6{width:60.976500px;}
.w16{width:60.978000px;}
.w10{width:63.502500px;}
.w1a{width:63.940500px;}
.w1f{width:63.943500px;}
.w22{width:65.481000px;}
.wa{width:65.482500px;}
.w4{width:65.922000px;}
.w8{width:65.923500px;}
.wf{width:78.759000px;}
.w9{width:84.697500px;}
.w19{width:87.973500px;}
.w11{width:88.636500px;}
.w5{width:89.962500px;}
.we{width:89.967000px;}
.w1c{width:90.193500px;}
.w25{width:90.610500px;}
.w17{width:90.628500px;}
.w26{width:90.634500px;}
.w27{width:91.300500px;}
.w7{width:93.936000px;}
.w13{width:94.252500px;}
.w18{width:94.254000px;}
.w20{width:100.510500px;}
.w1b{width:107.773500px;}
.w21{width:109.731000px;}
.w14{width:109.732500px;}
.w3{width:111.064500px;}
.w1e{width:112.374000px;}
.w24{width:112.380000px;}
.w1d{width:113.046000px;}
.w23{width:113.712000px;}
.w28{width:116.340000px;}
.w12{width:117.639000px;}
.w29{width:118.953000px;}
.w15{width:120.280500px;}
.wd{width:120.958500px;}
.wc{width:152.560500px;}
.wb{width:154.555500px;}
.w33{width:161.130000px;}
.w36{width:637.905000px;}
.w32{width:710.929500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xb{left:107.068950px;}
.xc{left:108.286950px;}
.x10{left:112.251900px;}
.x6{left:119.576400px;}
.x7{left:121.047600px;}
.x8{left:123.420750px;}
.x11{left:125.685450px;}
.xa9{left:144.511500px;}
.xd{left:147.907500px;}
.x24{left:149.839950px;}
.x9b{left:154.451438px;}
.x90{left:156.719826px;}
.xab{left:161.726400px;}
.x68{left:182.853150px;}
.x8e{left:189.452360px;}
.x94{left:195.097670px;}
.x99{left:201.584644px;}
.x5e{left:205.276500px;}
.x88{left:218.879821px;}
.xa0{left:234.351003px;}
.x95{left:235.682317px;}
.xe{left:240.337350px;}
.xa3{left:242.014500px;}
.x58{left:245.437500px;}
.x18{left:247.017900px;}
.x1a{left:249.281400px;}
.x55{left:250.930500px;}
.xac{left:256.818900px;}
.x60{left:258.300000px;}
.x5c{left:262.332000px;}
.x5d{left:267.738000px;}
.x67{left:270.576450px;}
.x5f{left:272.866500px;}
.x5b{left:274.593000px;}
.x5a{left:277.594500px;}
.x59{left:278.971500px;}
.xaa{left:282.182100px;}
.x72{left:286.017703px;}
.x64{left:289.068000px;}
.x56{left:295.363500px;}
.x97{left:296.528494px;}
.x4{left:300.189000px;}
.x63{left:303.256500px;}
.x57{left:307.038000px;}
.x8d{left:310.333843px;}
.x20{left:313.529700px;}
.x1d{left:314.762700px;}
.x61{left:316.044000px;}
.x5{left:317.196750px;}
.x15{left:320.010150px;}
.x54{left:321.975000px;}
.x1b{left:323.629800px;}
.x23{left:325.173000px;}
.x12{left:327.028950px;}
.x22{left:328.820850px;}
.x19{left:330.297450px;}
.x1f{left:332.245650px;}
.x1e{left:334.329750px;}
.x62{left:335.566500px;}
.x92{left:337.872692px;}
.x21{left:340.430850px;}
.x87{left:341.465162px;}
.x40{left:344.146500px;}
.x51{left:346.324500px;}
.x8c{left:350.138411px;}
.x7f{left:353.677663px;}
.x4d{left:354.877500px;}
.x96{left:357.405464px;}
.x42{left:359.122500px;}
.x7b{left:361.457926px;}
.x2a{left:364.477500px;}
.x3b{left:365.626500px;}
.x4c{left:368.032500px;}
.x31{left:369.160500px;}
.x48{left:371.071500px;}
.x36{left:373.698000px;}
.x4f{left:375.024000px;}
.x25{left:376.329000px;}
.x2e{left:377.782500px;}
.x9a{left:379.083455px;}
.x93{left:380.263838px;}
.x2c{left:383.535000px;}
.x38{left:387.234000px;}
.x9f{left:390.531070px;}
.x4a{left:393.123000px;}
.x3{left:396.050700px;}
.x3e{left:398.580000px;}
.x46{left:400.305000px;}
.x85{left:401.827025px;}
.x34{left:403.156500px;}
.x80{left:405.686364px;}
.x89{left:409.681035px;}
.x28{left:410.772000px;}
.x98{left:414.464152px;}
.x16{left:416.405700px;}
.x13{left:417.807900px;}
.x8a{left:422.244416px;}
.x91{left:423.342685px;}
.x77{left:427.035900px;}
.xa2{left:429.087000px;}
.x83{left:431.439242px;}
.x79{left:432.783852px;}
.xf{left:434.696100px;}
.x82{left:438.172557px;}
.x78{left:439.188713px;}
.x8b{left:445.267016px;}
.x30{left:447.010500px;}
.x2b{left:449.172000px;}
.x8f{left:450.286210px;}
.x7a{left:451.762358px;}
.x44{left:453.531000px;}
.x41{left:454.771500px;}
.x33{left:456.157500px;}
.x73{left:457.737769px;}
.x32{left:459.148500px;}
.x75{left:460.468046px;}
.x52{left:462.666000px;}
.x6e{left:463.844968px;}
.x69{left:465.097200px;}
.x27{left:466.182000px;}
.x4e{left:467.236500px;}
.x9d{left:470.879228px;}
.x43{left:472.159500px;}
.x86{left:474.602100px;}
.x84{left:476.365645px;}
.x49{left:480.802500px;}
.x6d{left:482.248678px;}
.x37{left:483.430500px;}
.x50{left:484.756500px;}
.x26{left:487.374000px;}
.x53{left:488.437500px;}
.x3a{left:489.802500px;}
.x6f{left:490.891135px;}
.x3c{left:493.438500px;}
.x35{left:494.475000px;}
.x7c{left:496.750346px;}
.x47{left:500.800500px;}
.x6b{left:503.587950px;}
.x29{left:504.702000px;}
.x3f{left:506.364000px;}
.x9e{left:508.476992px;}
.x6c{left:510.526549px;}
.x7d{left:512.906197px;}
.x45{left:516.061500px;}
.x9c{left:520.917203px;}
.x2f{left:530.347500px;}
.x81{left:533.126671px;}
.x2d{left:538.090500px;}
.x7e{left:539.511004px;}
.x39{left:541.789500px;}
.x4b{left:545.688000px;}
.x70{left:548.534882px;}
.x71{left:555.894313px;}
.x74{left:568.365316px;}
.x6a{left:572.122013px;}
.x3d{left:581.395500px;}
.x76{left:590.299912px;}
.xa{left:649.653300px;}
.xa8{left:654.245700px;}
.x66{left:661.498500px;}
.x9{left:670.377900px;}
.xa7{left:680.737730px;}
.xa6{left:694.615029px;}
.xa5{left:708.998700px;}
.xa1{left:720.313200px;}
.xa4{left:724.232400px;}
.x65{left:746.516700px;}
.x1c{left:749.084400px;}
.x14{left:753.039750px;}
.x17{left:755.898000px;}
.x1{left:801.350850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.v2{vertical-align:24.000000pt;}
.v3{vertical-align:56.141333pt;}
.ls9{letter-spacing:-6.432000pt;}
.ls18{letter-spacing:-2.880000pt;}
.ls10{letter-spacing:-1.941333pt;}
.ls4{letter-spacing:-1.178667pt;}
.ls28{letter-spacing:-0.768000pt;}
.lsc{letter-spacing:-0.746667pt;}
.ls5{letter-spacing:-0.614400pt;}
.ls11{letter-spacing:-0.560000pt;}
.ls20{letter-spacing:-0.533333pt;}
.ls26{letter-spacing:-0.528000pt;}
.lsb{letter-spacing:-0.522667pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.426667pt;}
.ls12{letter-spacing:-0.373333pt;}
.ls27{letter-spacing:-0.288000pt;}
.lsf{letter-spacing:-0.261333pt;}
.ls2c{letter-spacing:-0.213333pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.007467pt;}
.ls25{letter-spacing:0.009067pt;}
.ls1{letter-spacing:0.010667pt;}
.ls1b{letter-spacing:0.011733pt;}
.ls16{letter-spacing:0.012267pt;}
.ls2{letter-spacing:0.022933pt;}
.ls2e{letter-spacing:0.106667pt;}
.ls2d{letter-spacing:0.213333pt;}
.ls29{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.336000pt;}
.ls2a{letter-spacing:0.373333pt;}
.ls2f{letter-spacing:0.426667pt;}
.ls2b{letter-spacing:0.533333pt;}
.ls19{letter-spacing:0.582400pt;}
.ls8{letter-spacing:0.745600pt;}
.ls7{letter-spacing:0.746133pt;}
.ls24{letter-spacing:1.066667pt;}
.ls23{letter-spacing:1.917333pt;}
.ls1f{letter-spacing:1.972267pt;}
.ls1c{letter-spacing:2.005867pt;}
.ls13{letter-spacing:2.041067pt;}
.ls21{letter-spacing:3.286933pt;}
.ls1e{letter-spacing:5.712533pt;}
.ls1d{letter-spacing:7.725333pt;}
.ls22{letter-spacing:9.006400pt;}
.ls15{letter-spacing:9.971200pt;}
.ls14{letter-spacing:37.032533pt;}
.ls17{letter-spacing:37.033067pt;}
.ls0{letter-spacing:38.383968pt;}
.ls1a{letter-spacing:46.420800pt;}
.ws7{word-spacing:-15.936000pt;}
.wsa6{word-spacing:-14.608000pt;}
.ws147{word-spacing:-13.600000pt;}
.wsa1{word-spacing:-13.557600pt;}
.ws13c{word-spacing:-13.546667pt;}
.ws13b{word-spacing:-13.493333pt;}
.ws146{word-spacing:-13.386667pt;}
.ws4{word-spacing:-13.280000pt;}
.ws35{word-spacing:-13.226667pt;}
.wsb8{word-spacing:-13.173333pt;}
.ws8{word-spacing:-13.066667pt;}
.ws9d{word-spacing:-12.853333pt;}
.wsda{word-spacing:-12.800000pt;}
.ws22{word-spacing:-12.640000pt;}
.ws39{word-spacing:-12.586667pt;}
.wsa7{word-spacing:-12.426667pt;}
.wsb5{word-spacing:-12.165067pt;}
.ws33{word-spacing:-11.952000pt;}
.ws6{word-spacing:-11.904000pt;}
.ws5{word-spacing:-11.760000pt;}
.ws125{word-spacing:-11.616000pt;}
.ws124{word-spacing:-11.472000pt;}
.ws12c{word-spacing:-11.136000pt;}
.wsb{word-spacing:-10.800000pt;}
.ws9{word-spacing:-10.464000pt;}
.ws2{word-spacing:-9.685333pt;}
.ws20{word-spacing:-9.600000pt;}
.wsc{word-spacing:-9.301333pt;}
.ws3d{word-spacing:-9.296000pt;}
.ws64{word-spacing:-9.146667pt;}
.wsb4{word-spacing:-9.123733pt;}
.wsb7{word-spacing:-9.072000pt;}
.ws87{word-spacing:-8.997333pt;}
.ws1{word-spacing:-8.482261pt;}
.ws3{word-spacing:-8.371200pt;}
.ws92{word-spacing:-7.317333pt;}
.ws34{word-spacing:-5.520000pt;}
.wsaf{word-spacing:-3.946667pt;}
.ws12a{word-spacing:-3.552000pt;}
.wsf6{word-spacing:-3.520000pt;}
.wsd9{word-spacing:-3.253333pt;}
.wsa4{word-spacing:-2.352000pt;}
.wsa3{word-spacing:-2.293333pt;}
.ws107{word-spacing:-2.186667pt;}
.ws1a{word-spacing:-2.133333pt;}
.ws53{word-spacing:-2.080000pt;}
.ws131{word-spacing:-2.016000pt;}
.ws1f{word-spacing:-1.920000pt;}
.wsa5{word-spacing:-1.872000pt;}
.ws32{word-spacing:-1.866667pt;}
.wsc3{word-spacing:-1.813333pt;}
.wsbb{word-spacing:-1.728000pt;}
.ws10f{word-spacing:-1.706667pt;}
.wsba{word-spacing:-1.680000pt;}
.wse0{word-spacing:-1.493333pt;}
.ws111{word-spacing:-1.392000pt;}
.wsa8{word-spacing:-1.386667pt;}
.ws15{word-spacing:-1.344000pt;}
.wsfa{word-spacing:-1.333333pt;}
.ws10e{word-spacing:-1.280000pt;}
.ws12d{word-spacing:-1.200000pt;}
.ws80{word-spacing:-1.194667pt;}
.ws118{word-spacing:-1.173333pt;}
.wsbf{word-spacing:-1.120000pt;}
.ws16{word-spacing:-1.104000pt;}
.wse5{word-spacing:-1.066667pt;}
.ws12{word-spacing:-1.056000pt;}
.ws2a{word-spacing:-1.013333pt;}
.ws30{word-spacing:-0.960000pt;}
.ws2f{word-spacing:-0.906667pt;}
.ws52{word-spacing:-0.853333pt;}
.wsf9{word-spacing:-0.800000pt;}
.ws38{word-spacing:-0.746667pt;}
.ws140{word-spacing:-0.672000pt;}
.ws141{word-spacing:-0.533333pt;}
.ws25{word-spacing:-0.480000pt;}
.wsb6{word-spacing:-0.432000pt;}
.ws106{word-spacing:-0.426667pt;}
.wsb9{word-spacing:-0.384000pt;}
.wsdc{word-spacing:-0.373333pt;}
.ws54{word-spacing:-0.336000pt;}
.ws19{word-spacing:-0.320000pt;}
.ws56{word-spacing:-0.261333pt;}
.wsf7{word-spacing:-0.240000pt;}
.ws10c{word-spacing:-0.213333pt;}
.wse{word-spacing:-0.192000pt;}
.ws10{word-spacing:-0.144000pt;}
.wsa{word-spacing:-0.048000pt;}
.ws21{word-spacing:-0.042667pt;}
.wsd{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.053333pt;}
.wsb3{word-spacing:0.160000pt;}
.ws127{word-spacing:0.192000pt;}
.ws129{word-spacing:0.288000pt;}
.ws115{word-spacing:0.320000pt;}
.ws9f{word-spacing:0.373333pt;}
.wsb2{word-spacing:0.426667pt;}
.ws126{word-spacing:0.432000pt;}
.ws2c{word-spacing:0.480000pt;}
.ws123{word-spacing:0.528000pt;}
.wsfc{word-spacing:0.533333pt;}
.ws9e{word-spacing:0.560000pt;}
.wse1{word-spacing:0.576000pt;}
.wsf{word-spacing:0.614400pt;}
.ws11{word-spacing:0.624000pt;}
.wsc2{word-spacing:0.640000pt;}
.ws37{word-spacing:0.693333pt;}
.ws121{word-spacing:0.720000pt;}
.ws55{word-spacing:0.746667pt;}
.ws36{word-spacing:0.768000pt;}
.ws122{word-spacing:0.816000pt;}
.ws13a{word-spacing:0.864000pt;}
.ws10b{word-spacing:0.906667pt;}
.ws135{word-spacing:0.960000pt;}
.wse9{word-spacing:1.066667pt;}
.ws0{word-spacing:1.088000pt;}
.wsf8{word-spacing:1.104000pt;}
.wsbe{word-spacing:1.120000pt;}
.wse2{word-spacing:1.296000pt;}
.wsf2{word-spacing:1.386667pt;}
.ws132{word-spacing:1.440000pt;}
.ws116{word-spacing:1.493333pt;}
.wsd8{word-spacing:1.546667pt;}
.ws136{word-spacing:1.728000pt;}
.ws105{word-spacing:1.760000pt;}
.ws31{word-spacing:1.813333pt;}
.wsf3{word-spacing:1.866667pt;}
.wse7{word-spacing:1.920000pt;}
.ws110{word-spacing:1.968000pt;}
.wse6{word-spacing:1.973333pt;}
.wsed{word-spacing:2.026667pt;}
.ws134{word-spacing:2.064000pt;}
.ws11c{word-spacing:2.160000pt;}
.ws130{word-spacing:2.208000pt;}
.ws137{word-spacing:2.256000pt;}
.ws103{word-spacing:2.346667pt;}
.ws101{word-spacing:2.352000pt;}
.wsc1{word-spacing:2.400000pt;}
.wsc0{word-spacing:2.453333pt;}
.ws133{word-spacing:2.544000pt;}
.wsaa{word-spacing:2.560000pt;}
.ws1b{word-spacing:2.666667pt;}
.ws12b{word-spacing:2.688000pt;}
.ws10a{word-spacing:2.720000pt;}
.wsa9{word-spacing:2.773333pt;}
.wsab{word-spacing:2.826667pt;}
.wse8{word-spacing:2.880000pt;}
.ws117{word-spacing:2.933333pt;}
.wsc6{word-spacing:2.986667pt;}
.wsa0{word-spacing:3.040000pt;}
.ws142{word-spacing:3.072000pt;}
.wsde{word-spacing:3.093333pt;}
.wsfd{word-spacing:3.146667pt;}
.wsfe{word-spacing:3.200000pt;}
.ws100{word-spacing:3.264000pt;}
.ws1e{word-spacing:3.306667pt;}
.wsff{word-spacing:3.312000pt;}
.ws145{word-spacing:3.360000pt;}
.ws13f{word-spacing:3.504000pt;}
.ws11f{word-spacing:3.552000pt;}
.ws13{word-spacing:3.600000pt;}
.ws14{word-spacing:3.648000pt;}
.ws11a{word-spacing:3.696000pt;}
.ws11b{word-spacing:3.744000pt;}
.wsdb{word-spacing:4.000000pt;}
.ws2b{word-spacing:4.053333pt;}
.ws1d{word-spacing:4.106667pt;}
.wsef{word-spacing:4.213333pt;}
.wsd7{word-spacing:4.266667pt;}
.wsd6{word-spacing:4.320000pt;}
.ws2d{word-spacing:4.373333pt;}
.ws11d{word-spacing:4.464000pt;}
.wsa2{word-spacing:4.800000pt;}
.ws27{word-spacing:4.853333pt;}
.ws11e{word-spacing:4.992000pt;}
.wsee{word-spacing:5.173333pt;}
.wsf0{word-spacing:5.333333pt;}
.ws109{word-spacing:5.440000pt;}
.ws108{word-spacing:5.493333pt;}
.ws113{word-spacing:5.546667pt;}
.ws50{word-spacing:5.600000pt;}
.wsad{word-spacing:5.653333pt;}
.wsea{word-spacing:5.760000pt;}
.wseb{word-spacing:5.813333pt;}
.ws128{word-spacing:5.856000pt;}
.ws1c{word-spacing:5.973333pt;}
.wsac{word-spacing:6.026667pt;}
.wsc5{word-spacing:6.080000pt;}
.wsc4{word-spacing:6.133333pt;}
.ws24{word-spacing:6.186667pt;}
.wsf5{word-spacing:6.346667pt;}
.wsf4{word-spacing:6.400000pt;}
.ws29{word-spacing:6.453333pt;}
.ws119{word-spacing:6.720000pt;}
.ws18{word-spacing:6.826667pt;}
.ws12e{word-spacing:6.864000pt;}
.ws12f{word-spacing:6.912000pt;}
.ws17{word-spacing:6.960000pt;}
.ws51{word-spacing:7.093333pt;}
.ws114{word-spacing:7.200000pt;}
.ws28{word-spacing:7.253333pt;}
.wsdd{word-spacing:7.413333pt;}
.wsf1{word-spacing:7.680000pt;}
.ws112{word-spacing:7.733333pt;}
.ws138{word-spacing:8.160000pt;}
.wsc7{word-spacing:8.480000pt;}
.ws102{word-spacing:8.586667pt;}
.wsdf{word-spacing:8.906667pt;}
.ws26{word-spacing:8.960000pt;}
.ws143{word-spacing:9.120000pt;}
.ws13d{word-spacing:9.216000pt;}
.ws13e{word-spacing:9.312000pt;}
.wsec{word-spacing:9.440000pt;}
.wsfb{word-spacing:9.493333pt;}
.wsb0{word-spacing:9.920000pt;}
.wsb1{word-spacing:9.973333pt;}
.ws139{word-spacing:12.672000pt;}
.ws104{word-spacing:12.800000pt;}
.ws10d{word-spacing:13.173333pt;}
.wsd4{word-spacing:13.866667pt;}
.wsd5{word-spacing:14.026667pt;}
.ws23{word-spacing:14.293333pt;}
.wsc8{word-spacing:14.346667pt;}
.ws120{word-spacing:14.352000pt;}
.wsc9{word-spacing:14.506667pt;}
.wsbc{word-spacing:16.053333pt;}
.wsbd{word-spacing:16.106667pt;}
.ws5f{word-spacing:21.382933pt;}
.ws75{word-spacing:21.392000pt;}
.ws144{word-spacing:22.032000pt;}
.ws41{word-spacing:25.547733pt;}
.ws5e{word-spacing:27.878933pt;}
.ws93{word-spacing:27.888000pt;}
.ws7b{word-spacing:27.907200pt;}
.ws82{word-spacing:27.916267pt;}
.ws77{word-spacing:29.073600pt;}
.ws97{word-spacing:31.126933pt;}
.ws59{word-spacing:31.505600pt;}
.ws44{word-spacing:31.533333pt;}
.ws98{word-spacing:31.858133pt;}
.ws6d{word-spacing:32.745067pt;}
.ws6f{word-spacing:32.773333pt;}
.ws71{word-spacing:33.221333pt;}
.ws9c{word-spacing:35.728000pt;}
.ws45{word-spacing:35.868267pt;}
.wsae{word-spacing:37.280000pt;}
.ws49{word-spacing:37.846933pt;}
.ws62{word-spacing:37.856000pt;}
.ws6a{word-spacing:37.875200pt;}
.ws67{word-spacing:37.912533pt;}
.ws86{word-spacing:38.033600pt;}
.ws65{word-spacing:38.406933pt;}
.ws7d{word-spacing:38.444267pt;}
.ws5b{word-spacing:38.804267pt;}
.ws99{word-spacing:38.832533pt;}
.ws69{word-spacing:39.489600pt;}
.ws81{word-spacing:39.498667pt;}
.ws5a{word-spacing:39.796267pt;}
.ws42{word-spacing:39.825600pt;}
.ws89{word-spacing:39.974933pt;}
.ws7e{word-spacing:41.244267pt;}
.ws8f{word-spacing:41.253333pt;}
.ws91{word-spacing:41.393600pt;}
.wse3{word-spacing:45.973333pt;}
.wse4{word-spacing:46.453333pt;}
.ws8b{word-spacing:55.505600pt;}
.ws68{word-spacing:79.882667pt;}
.ws95{word-spacing:90.909333pt;}
.ws94{word-spacing:91.483200pt;}
.ws5d{word-spacing:94.163200pt;}
.ws5c{word-spacing:94.725333pt;}
.ws78{word-spacing:94.764800pt;}
.ws88{word-spacing:95.148800pt;}
.ws79{word-spacing:95.355733pt;}
.ws6c{word-spacing:96.596800pt;}
.ws84{word-spacing:96.876800pt;}
.ws6b{word-spacing:97.148800pt;}
.ws46{word-spacing:97.850667pt;}
.ws47{word-spacing:98.467200pt;}
.ws40{word-spacing:98.826667pt;}
.ws61{word-spacing:99.157867pt;}
.ws85{word-spacing:99.240000pt;}
.ws73{word-spacing:99.698667pt;}
.ws74{word-spacing:100.124267pt;}
.ws8a{word-spacing:100.214933pt;}
.ws9a{word-spacing:100.710933pt;}
.ws60{word-spacing:100.769067pt;}
.ws7f{word-spacing:100.788267pt;}
.ws72{word-spacing:100.797333pt;}
.ws7c{word-spacing:110.158400pt;}
.ws63{word-spacing:115.745600pt;}
.ws7a{word-spacing:119.819733pt;}
.ws83{word-spacing:125.571733pt;}
.ws6e{word-spacing:126.044800pt;}
.ws76{word-spacing:135.314667pt;}
.ws3f{word-spacing:135.625067pt;}
.ws8e{word-spacing:138.501867pt;}
.ws8c{word-spacing:141.330667pt;}
.ws96{word-spacing:142.953067pt;}
.ws4a{word-spacing:144.382400pt;}
.ws43{word-spacing:148.531200pt;}
.ws66{word-spacing:149.588800pt;}
.ws70{word-spacing:149.597867pt;}
.wscf{word-spacing:151.648533pt;}
.ws9b{word-spacing:154.282133pt;}
.ws48{word-spacing:157.130667pt;}
.ws90{word-spacing:160.449600pt;}
.ws3e{word-spacing:160.941867pt;}
.ws58{word-spacing:160.942400pt;}
.ws8d{word-spacing:161.009600pt;}
.wsd2{word-spacing:161.893333pt;}
.wscc{word-spacing:162.130133pt;}
.wscd{word-spacing:162.139200pt;}
.wsce{word-spacing:162.148267pt;}
.wsd0{word-spacing:177.524800pt;}
.wsd1{word-spacing:192.919467pt;}
.ws57{word-spacing:208.312000pt;}
.ws3b{word-spacing:208.312533pt;}
.ws3a{word-spacing:212.080000pt;}
.ws4e{word-spacing:218.268267pt;}
.wsca{word-spacing:234.008000pt;}
.wscb{word-spacing:246.203200pt;}
.ws4d{word-spacing:254.511467pt;}
.ws4c{word-spacing:270.013867pt;}
.wsd3{word-spacing:272.574400pt;}
.ws4f{word-spacing:331.820267pt;}
.ws4b{word-spacing:354.514133pt;}
.ws3c{word-spacing:466.340800pt;}
._a{margin-left:-9.337067pt;}
._b8{margin-left:-8.278400pt;}
._b6{margin-left:-7.296000pt;}
._d{margin-left:-6.170667pt;}
._3{margin-left:-4.501867pt;}
._7{margin-left:-2.983467pt;}
._4{margin-left:-2.064000pt;}
._0{margin-left:-0.933867pt;}
._1{width:1.628800pt;}
._5{width:2.574933pt;}
._2{width:3.780800pt;}
._9{width:5.420800pt;}
._8{width:6.953067pt;}
._c{width:7.922667pt;}
._b{width:9.410667pt;}
._b7{width:10.465067pt;}
._ba{width:12.833600pt;}
._b9{width:13.823467pt;}
._a2{width:15.205333pt;}
._a1{width:16.196267pt;}
._bb{width:17.671467pt;}
._49{width:31.644800pt;}
._6{width:32.554667pt;}
._6b{width:36.056533pt;}
._13{width:37.174933pt;}
._4a{width:38.204267pt;}
._18{width:40.735467pt;}
._50{width:42.520000pt;}
._4c{width:43.711467pt;}
._9e{width:44.645867pt;}
._45{width:45.814400pt;}
._17{width:48.062400pt;}
._19{width:49.581333pt;}
._80{width:51.501867pt;}
._43{width:52.487467pt;}
._47{width:53.866133pt;}
._10{width:54.829333pt;}
._a0{width:55.786667pt;}
._4e{width:57.079467pt;}
._57{width:58.114133pt;}
._3b{width:59.629867pt;}
._3e{width:61.042133pt;}
._90{width:61.993067pt;}
._11{width:63.915200pt;}
._4f{width:64.936000pt;}
._12{width:65.982400pt;}
._8f{width:68.628267pt;}
._97{width:69.702933pt;}
._79{width:71.105067pt;}
._22{width:73.342933pt;}
._72{width:74.326400pt;}
._6e{width:76.060267pt;}
._6a{width:77.695467pt;}
._63{width:79.747200pt;}
._23{width:80.903467pt;}
._69{width:82.005333pt;}
._2c{width:83.096533pt;}
._7d{width:84.329067pt;}
._7f{width:86.942400pt;}
._75{width:87.896533pt;}
._1f{width:89.765867pt;}
._16{width:91.051200pt;}
._15{width:92.091733pt;}
._3d{width:93.270400pt;}
._3f{width:94.208533pt;}
._92{width:97.046933pt;}
._71{width:98.018133pt;}
._6c{width:100.720533pt;}
._1b{width:102.233067pt;}
._20{width:103.616000pt;}
._64{width:104.624000pt;}
._61{width:105.790400pt;}
._84{width:106.855467pt;}
._24{width:107.763200pt;}
._1c{width:109.295467pt;}
._76{width:110.550400pt;}
._5b{width:112.565867pt;}
._5a{width:113.547733pt;}
._9f{width:114.478400pt;}
._3a{width:115.616533pt;}
._58{width:118.625600pt;}
._38{width:120.917867pt;}
._74{width:122.562133pt;}
._83{width:123.521067pt;}
._78{width:125.309867pt;}
._28{width:126.466667pt;}
._27{width:127.861333pt;}
._94{width:129.131200pt;}
._41{width:130.761600pt;}
._52{width:134.197867pt;}
._77{width:136.348800pt;}
._60{width:138.683200pt;}
._7c{width:140.637333pt;}
._5e{width:142.301867pt;}
._5d{width:143.675733pt;}
._66{width:145.841600pt;}
._4b{width:147.826133pt;}
._81{width:148.925333pt;}
._1d{width:150.704000pt;}
._a9{width:152.463467pt;}
._8a{width:154.609600pt;}
._4d{width:156.300800pt;}
._55{width:157.732800pt;}
._f{width:159.458667pt;}
._2a{width:160.488533pt;}
._8e{width:162.469867pt;}
._b0{width:163.415467pt;}
._88{width:164.570667pt;}
._51{width:167.127467pt;}
._62{width:169.890133pt;}
._25{width:170.850133pt;}
._70{width:172.723733pt;}
._53{width:174.818133pt;}
._6d{width:178.398400pt;}
._34{width:179.604267pt;}
._59{width:183.006400pt;}
._3c{width:183.934400pt;}
._31{width:186.576000pt;}
._8c{width:189.191467pt;}
._39{width:191.443733pt;}
._67{width:193.086400pt;}
._14{width:194.915733pt;}
._a8{width:199.158400pt;}
._65{width:200.095467pt;}
._44{width:202.416533pt;}
._29{width:204.239467pt;}
._ad{width:207.584000pt;}
._73{width:208.803733pt;}
._46{width:210.455467pt;}
._9c{width:212.290133pt;}
._87{width:213.364267pt;}
._6f{width:215.287467pt;}
._40{width:217.154133pt;}
._9d{width:219.527467pt;}
._96{width:221.531200pt;}
._98{width:224.710400pt;}
._7b{width:226.191467pt;}
._36{width:227.387733pt;}
._95{width:229.897067pt;}
._48{width:232.012800pt;}
._ae{width:233.294400pt;}
._82{width:234.747200pt;}
._8d{width:237.072000pt;}
._93{width:240.524800pt;}
._37{width:242.018133pt;}
._26{width:243.022400pt;}
._9b{width:244.389333pt;}
._2d{width:245.438933pt;}
._86{width:247.245333pt;}
._91{width:248.563733pt;}
._32{width:250.089067pt;}
._5f{width:252.873067pt;}
._5c{width:253.821333pt;}
._2b{width:255.861867pt;}
._7a{width:256.889067pt;}
._8b{width:258.389333pt;}
._b3{width:261.525333pt;}
._89{width:264.906133pt;}
._b2{width:266.531200pt;}
._68{width:268.283733pt;}
._21{width:270.670933pt;}
._1a{width:273.527467pt;}
._7e{width:275.518400pt;}
._1e{width:278.992533pt;}
._aa{width:282.570667pt;}
._42{width:287.051200pt;}
._54{width:290.243200pt;}
._56{width:291.273067pt;}
._a6{width:292.843733pt;}
._a5{width:293.866133pt;}
._35{width:299.927467pt;}
._99{width:301.682667pt;}
._a4{width:302.780267pt;}
._ab{width:306.211200pt;}
._30{width:312.083200pt;}
._9a{width:313.232000pt;}
._b4{width:314.656000pt;}
._85{width:320.056533pt;}
._af{width:323.802667pt;}
._b1{width:325.258667pt;}
._33{width:334.701333pt;}
._a3{width:340.260800pt;}
._ac{width:345.568000pt;}
._a7{width:372.074667pt;}
._e{width:387.812800pt;}
._2e{width:524.217067pt;}
._2f{width:641.782400pt;}
._b5{width:969.907200pt;}
.fs10{font-size:19.099733pt;}
.fsa{font-size:21.286400pt;}
.fsf{font-size:24.330133pt;}
.fs3{font-size:34.202667pt;}
.fsd{font-size:36.494933pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs9{font-size:42.179200pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fse{font-size:48.660267pt;}
.fs7{font-size:53.333333pt;}
.fsb{font-size:54.230400pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs11{font-size:81.100267pt;}
.fsc{font-size:90.384533pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y222{bottom:1.463600pt;}
.y227{bottom:1.463867pt;}
.y224{bottom:1.464400pt;}
.y182{bottom:1.631333pt;}
.y220{bottom:1.865200pt;}
.y21e{bottom:1.866267pt;}
.y1ae{bottom:2.797200pt;}
.y170{bottom:3.231467pt;}
.y169{bottom:3.232933pt;}
.y156{bottom:3.233067pt;}
.y13a{bottom:3.233200pt;}
.y134{bottom:3.233333pt;}
.y14c{bottom:3.233467pt;}
.y148{bottom:3.233600pt;}
.y130{bottom:3.233733pt;}
.y136{bottom:3.233867pt;}
.y138{bottom:3.234000pt;}
.y13c{bottom:3.234133pt;}
.y160{bottom:3.234267pt;}
.y141{bottom:3.234400pt;}
.y16c{bottom:3.234533pt;}
.y158{bottom:3.234667pt;}
.y132{bottom:3.234800pt;}
.y14e{bottom:3.234933pt;}
.y146{bottom:3.235067pt;}
.y165{bottom:3.235200pt;}
.y144{bottom:3.235467pt;}
.y22e{bottom:4.504800pt;}
.y186{bottom:6.484667pt;}
.y1{bottom:60.555333pt;}
.y39{bottom:63.299600pt;}
.y3a{bottom:66.698800pt;}
.y23a{bottom:100.514400pt;}
.y128{bottom:100.514533pt;}
.y9f{bottom:103.825733pt;}
.y2b{bottom:104.188933pt;}
.yb{bottom:104.778267pt;}
.ydf{bottom:105.058400pt;}
.y12e{bottom:107.111867pt;}
.y10a{bottom:111.475733pt;}
.ya{bottom:117.578267pt;}
.y239{bottom:119.181067pt;}
.y127{bottom:119.181200pt;}
.y9e{bottom:121.408400pt;}
.yde{bottom:122.641067pt;}
.y2a{bottom:122.855600pt;}
.y263{bottom:124.026133pt;}
.y12d{bottom:124.711867pt;}
.y253{bottom:128.025200pt;}
.y109{bottom:129.058400pt;}
.y9{bottom:130.378267pt;}
.ydd{bottom:134.641067pt;}
.y79{bottom:137.847733pt;}
.y67{bottom:137.847867pt;}
.y9d{bottom:138.991067pt;}
.y29{bottom:141.522267pt;}
.y12c{bottom:142.311867pt;}
.y8{bottom:143.178267pt;}
.y252{bottom:145.625200pt;}
.y108{bottom:146.641067pt;}
.ydc{bottom:152.223600pt;}
.y78{bottom:156.514400pt;}
.y66{bottom:156.514533pt;}
.y9c{bottom:156.573733pt;}
.y107{bottom:158.641067pt;}
.y12b{bottom:159.911867pt;}
.y28{bottom:160.188933pt;}
.y251{bottom:163.225200pt;}
.ydb{bottom:164.223600pt;}
.y126{bottom:168.456533pt;}
.y9b{bottom:174.156400pt;}
.y77{bottom:175.181067pt;}
.y65{bottom:175.181200pt;}
.y106{bottom:176.223600pt;}
.y36{bottom:177.237867pt;}
.y185{bottom:178.361333pt;}
.y27{bottom:178.855600pt;}
.y262{bottom:180.026133pt;}
.yda{bottom:181.806267pt;}
.y18a{bottom:187.906133pt;}
.y105{bottom:188.223600pt;}
.y12f{bottom:190.529333pt;}
.y9a{bottom:191.739067pt;}
.y35{bottom:193.237867pt;}
.y76{bottom:193.847733pt;}
.y64{bottom:193.847867pt;}
.y125{bottom:197.165467pt;}
.y26{bottom:197.522267pt;}
.yd9{bottom:199.388933pt;}
.y1ad{bottom:204.964000pt;}
.y104{bottom:205.806267pt;}
.y34{bottom:209.237867pt;}
.y99{bottom:209.321733pt;}
.y14b{bottom:209.925333pt;}
.y223{bottom:210.065333pt;}
.y75{bottom:212.514400pt;}
.y63{bottom:212.514533pt;}
.y21c{bottom:213.723467pt;}
.y25{bottom:216.188933pt;}
.yd8{bottom:216.971733pt;}
.y1f0{bottom:217.522350pt;}
.y1a1{bottom:218.016693pt;}
.y225{bottom:219.802667pt;}
.y183{bottom:220.308000pt;}
.y17b{bottom:222.184000pt;}
.y103{bottom:223.388933pt;}
.y135{bottom:223.800000pt;}
.y33{bottom:225.237867pt;}
.y98{bottom:226.904400pt;}
.y1c1{bottom:228.224697pt;}
.y181{bottom:228.900000pt;}
.y74{bottom:231.181067pt;}
.y62{bottom:231.181200pt;}
.yd7{bottom:234.554400pt;}
.y24{bottom:234.855600pt;}
.y261{bottom:236.388533pt;}
.y1c8{bottom:237.467038pt;}
.y142{bottom:238.377333pt;}
.y102{bottom:240.971733pt;}
.y1e1{bottom:241.143696pt;}
.y32{bottom:241.237867pt;}
.y97{bottom:244.487200pt;}
.y194{bottom:246.665215pt;}
.y22c{bottom:249.138294pt;}
.y73{bottom:249.847733pt;}
.y61{bottom:249.847867pt;}
.y1fb{bottom:251.499133pt;}
.yd6{bottom:252.137067pt;}
.y155{bottom:252.289333pt;}
.y250{bottom:253.450533pt;}
.y23{bottom:253.522267pt;}
.y1bc{bottom:255.915227pt;}
.y31{bottom:257.237867pt;}
.y101{bottom:258.554400pt;}
.y96{bottom:262.069867pt;}
.y260{bottom:262.614267pt;}
.y16e{bottom:263.922667pt;}
.y1c0{bottom:265.157569pt;}
.y13e{bottom:266.200000pt;}
.y72{bottom:268.514400pt;}
.y60{bottom:268.514533pt;}
.yd5{bottom:269.719733pt;}
.y24f{bottom:271.050533pt;}
.y22{bottom:272.188933pt;}
.y30{bottom:273.237867pt;}
.y19d{bottom:274.373994pt;}
.y100{bottom:276.137067pt;}
.y95{bottom:279.652533pt;}
.y15b{bottom:280.112000pt;}
.y1b3{bottom:283.605758pt;}
.y71{bottom:287.181067pt;}
.y5f{bottom:287.181200pt;}
.yd4{bottom:287.302400pt;}
.y24e{bottom:288.650533pt;}
.y21{bottom:290.855600pt;}
.y190{bottom:292.831306pt;}
.yff{bottom:293.719733pt;}
.y15e{bottom:294.028000pt;}
.y16d{bottom:296.089333pt;}
.y173{bottom:296.225333pt;}
.y94{bottom:297.235200pt;}
.y19c{bottom:302.000658pt;}
.y226{bottom:303.066667pt;}
.y205{bottom:303.778125pt;}
.y2f{bottom:304.356000pt;}
.yd3{bottom:304.885067pt;}
.y167{bottom:305.661333pt;}
.y70{bottom:305.847733pt;}
.y5e{bottom:305.847867pt;}
.y14f{bottom:307.938667pt;}
.y1ed{bottom:309.325355pt;}
.y20{bottom:309.522267pt;}
.yfe{bottom:311.302400pt;}
.y1c9{bottom:311.332783pt;}
.y93{bottom:314.817867pt;}
.y207{bottom:316.697332pt;}
.y92{bottom:316.853333pt;}
.yd2{bottom:316.885067pt;}
.y2e{bottom:320.356000pt;}
.y1b0{bottom:320.538630pt;}
.y15c{bottom:321.850667pt;}
.y91{bottom:322.853333pt;}
.yfd{bottom:323.302400pt;}
.y6f{bottom:324.514400pt;}
.y5d{bottom:324.514533pt;}
.y1f{bottom:328.188933pt;}
.y1ac{bottom:329.782426pt;}
.y1ea{bottom:331.660254pt;}
.yd1{bottom:334.467733pt;}
.y162{bottom:335.766667pt;}
.y1fd{bottom:336.103513pt;}
.y2d{bottom:336.356000pt;}
.y166{bottom:337.372000pt;}
.y1f6{bottom:338.868004pt;}
.y1af{bottom:339.005067pt;}
.yfc{bottom:340.885067pt;}
.y238{bottom:343.181067pt;}
.y5c{bottom:343.181200pt;}
.yd0{bottom:346.467733pt;}
.y1e{bottom:346.855600pt;}
.y198{bottom:348.239739pt;}
.y161{bottom:349.677333pt;}
.y2c{bottom:352.356000pt;}
.y6e{bottom:355.947467pt;}
.y90{bottom:356.983733pt;}
.y1e7{bottom:357.462172pt;}
.y1c2{bottom:357.498874pt;}
.yfb{bottom:358.467733pt;}
.y237{bottom:361.847733pt;}
.y124{bottom:361.847867pt;}
.y13f{bottom:363.589333pt;}
.ycf{bottom:364.050400pt;}
.y16a{bottom:364.664000pt;}
.y1d{bottom:365.522267pt;}
.y1f7{bottom:365.646161pt;}
.y197{bottom:366.706175pt;}
.yfa{bottom:370.467733pt;}
.y5b{bottom:373.789867pt;}
.y8f{bottom:374.583733pt;}
.y25f{bottom:374.614267pt;}
.y1b4{bottom:375.947063pt;}
.yce{bottom:376.050400pt;}
.y151{bottom:377.501333pt;}
.y236{bottom:380.514400pt;}
.y123{bottom:380.514533pt;}
.y17a{bottom:380.586667pt;}
.y206{bottom:383.191100pt;}
.y1c{bottom:384.188933pt;}
.y1a5{bottom:385.190859pt;}
.yf9{bottom:388.050400pt;}
.y149{bottom:391.416000pt;}
.ycd{bottom:393.633200pt;}
.y1e8{bottom:394.395045pt;}
.y1e2{bottom:394.413292pt;}
.y1bf{bottom:394.431747pt;}
.y6d{bottom:399.181067pt;}
.y122{bottom:399.181200pt;}
.y5a{bottom:402.498800pt;}
.y1b9{bottom:403.655841pt;}
.y179{bottom:404.916000pt;}
.y178{bottom:405.052000pt;}
.y163{bottom:405.328000pt;}
.ycc{bottom:405.633200pt;}
.y26b{bottom:411.123200pt;}
.y1e0{bottom:412.012974pt;}
.y203{bottom:412.113335pt;}
.y191{bottom:412.872266pt;}
.y1b{bottom:415.292667pt;}
.y22b{bottom:416.614767pt;}
.yf8{bottom:417.633200pt;}
.y6c{bottom:417.847733pt;}
.y189{bottom:417.847867pt;}
.ya6{bottom:418.022667pt;}
.y133{bottom:419.240000pt;}
.y1fe{bottom:421.392172pt;}
.y1ca{bottom:422.140525pt;}
.ycb{bottom:423.215733pt;}
.y1a0{bottom:431.356949pt;}
.y14a{bottom:433.154667pt;}
.yca{bottom:435.215733pt;}
.ya5{bottom:435.605333pt;}
.y6b{bottom:436.514400pt;}
.y188{bottom:436.514533pt;}
.y26a{bottom:439.832133pt;}
.y172{bottom:440.484000pt;}
.y18f{bottom:440.571920pt;}
.y152{bottom:447.066667pt;}
.y25b{bottom:449.280800pt;}
.y1e4{bottom:449.812601pt;}
.y1d1{bottom:449.831055pt;}
.yc9{bottom:452.798400pt;}
.ya4{bottom:453.188000pt;}
.y6a{bottom:455.181067pt;}
.y59{bottom:455.181200pt;}
.y1fa{bottom:459.036695pt;}
.y1c5{bottom:459.073397pt;}
.y153{bottom:460.978667pt;}
.y174{bottom:464.490667pt;}
.y1b2{bottom:468.279244pt;}
.y121{bottom:469.546533pt;}
.yc8{bottom:470.381200pt;}
.y1ec{bottom:470.569094pt;}
.ya3{bottom:470.770667pt;}
.y176{bottom:472.613333pt;}
.y235{bottom:473.847733pt;}
.y58{bottom:473.847867pt;}
.y139{bottom:474.890667pt;}
.y1a7{bottom:477.523040pt;}
.y1a{bottom:479.313733pt;}
.y177{bottom:486.528000pt;}
.y18d{bottom:486.710639pt;}
.y120{bottom:487.129200pt;}
.yc7{bottom:487.963867pt;}
.ya2{bottom:488.353333pt;}
.y137{bottom:488.805333pt;}
.y1e6{bottom:489.628573pt;}
.y234{bottom:492.514400pt;}
.y57{bottom:492.514533pt;}
.y1b7{bottom:495.951527pt;}
.y19{bottom:496.913733pt;}
.yf7{bottom:499.963867pt;}
.y15a{bottom:502.717333pt;}
.y69{bottom:503.789867pt;}
.y11f{bottom:504.711867pt;}
.y1cb{bottom:505.202993pt;}
.yc6{bottom:505.546533pt;}
.ya1{bottom:505.936000pt;}
.y233{bottom:511.181067pt;}
.y56{bottom:511.181200pt;}
.y17e{bottom:513.197333pt;}
.y204{bottom:514.390386pt;}
.y1be{bottom:514.427087pt;}
.y221{bottom:515.194667pt;}
.y13d{bottom:516.629333pt;}
.y11e{bottom:516.711867pt;}
.yf6{bottom:517.546533pt;}
.y202{bottom:520.731380pt;}
.y68{bottom:521.389867pt;}
.yc5{bottom:523.129200pt;}
.y1d5{bottom:523.660306pt;}
.y184{bottom:524.523467pt;}
.y219{bottom:528.208014pt;}
.yf5{bottom:529.546533pt;}
.y232{bottom:529.847733pt;}
.y55{bottom:529.847867pt;}
.y13b{bottom:530.544000pt;}
.ya0{bottom:532.030933pt;}
.y1bd{bottom:532.893524pt;}
.y18{bottom:533.411333pt;}
.y11d{bottom:534.294533pt;}
.yc4{bottom:535.129200pt;}
.y171{bottom:536.209333pt;}
.y17f{bottom:541.124000pt;}
.y1d9{bottom:541.296482pt;}
.y1aa{bottom:542.119072pt;}
.y147{bottom:544.456000pt;}
.y11c{bottom:546.294533pt;}
.yf4{bottom:547.129200pt;}
.y257{bottom:548.514400pt;}
.y54{bottom:548.514533pt;}
.y17{bottom:551.011333pt;}
.y196{bottom:551.343166pt;}
.y1eb{bottom:552.025786pt;}
.yc3{bottom:552.711867pt;}
.y157{bottom:558.366667pt;}
.yf3{bottom:559.129200pt;}
.y1a4{bottom:560.594632pt;}
.y11b{bottom:563.877200pt;}
.y180{bottom:563.954667pt;}
.y8e{bottom:567.181067pt;}
.y53{bottom:567.181200pt;}
.y17c{bottom:568.598667pt;}
.y16{bottom:568.611333pt;}
.y19b{bottom:569.809603pt;}
.yc2{bottom:570.294533pt;}
.y154{bottom:572.278667pt;}
.yf2{bottom:576.711867pt;}
.y1c4{bottom:579.068738pt;}
.y1f9{bottom:580.254617pt;}
.y11a{bottom:581.459867pt;}
.y8d{bottom:585.847733pt;}
.y52{bottom:585.847867pt;}
.y159{bottom:586.193333pt;}
.y15{bottom:586.211333pt;}
.yc1{bottom:587.877200pt;}
.y199{bottom:588.276039pt;}
.y216{bottom:588.278674pt;}
.yf1{bottom:594.294533pt;}
.y19e{bottom:597.518381pt;}
.y119{bottom:599.042533pt;}
.y131{bottom:600.105333pt;}
.y164{bottom:601.216000pt;}
.y14{bottom:603.811333pt;}
.y8c{bottom:604.514400pt;}
.y51{bottom:604.514533pt;}
.yc0{bottom:605.459867pt;}
.y1cd{bottom:606.768393pt;}
.yf0{bottom:611.877200pt;}
.y1f8{bottom:614.003306pt;}
.y15f{bottom:614.017333pt;}
.y1a6{bottom:615.993941pt;}
.y118{bottom:616.625200pt;}
.y269{bottom:617.280800pt;}
.y168{bottom:617.617333pt;}
.y13{bottom:621.411333pt;}
.ybf{bottom:623.042533pt;}
.y8b{bottom:623.181067pt;}
.y50{bottom:623.181200pt;}
.y1ba{bottom:625.225705pt;}
.y25a{bottom:626.666133pt;}
.y145{bottom:627.932000pt;}
.yef{bottom:629.459867pt;}
.y17d{bottom:631.924000pt;}
.y217{bottom:633.441154pt;}
.y117{bottom:634.207867pt;}
.y1e3{bottom:634.449593pt;}
.y19f{bottom:634.460377pt;}
.y12{bottom:639.011333pt;}
.ybe{bottom:640.625200pt;}
.y14d{bottom:641.844000pt;}
.y8a{bottom:641.847733pt;}
.y4f{bottom:641.847867pt;}
.y195{bottom:643.720966pt;}
.y259{bottom:644.266133pt;}
.y116{bottom:646.207867pt;}
.yee{bottom:647.042533pt;}
.ybd{bottom:652.625200pt;}
.y1e9{bottom:652.943400pt;}
.y1ab{bottom:652.963308pt;}
.y15d{bottom:655.756000pt;}
.y11{bottom:656.611333pt;}
.y89{bottom:660.514400pt;}
.y4e{bottom:660.514533pt;}
.y258{bottom:661.866133pt;}
.y1c6{bottom:662.213320pt;}
.y175{bottom:663.084000pt;}
.y231{bottom:663.217600pt;}
.y115{bottom:663.790667pt;}
.yed{bottom:664.625200pt;}
.y143{bottom:669.666667pt;}
.y24d{bottom:669.917733pt;}
.ybc{bottom:670.207867pt;}
.y192{bottom:671.420621pt;}
.y21a{bottom:671.423256pt;}
.y26f{bottom:672.456400pt;}
.y10{bottom:674.211333pt;}
.y25e{bottom:675.800000pt;}
.yec{bottom:676.625200pt;}
.y268{bottom:679.181067pt;}
.y4d{bottom:679.181200pt;}
.y16b{bottom:680.645333pt;}
.y1d2{bottom:680.670633pt;}
.y230{bottom:680.817600pt;}
.y1f5{bottom:680.916766pt;}
.y114{bottom:681.373333pt;}
.y150{bottom:683.582667pt;}
.y24c{bottom:687.500267pt;}
.ybb{bottom:687.790667pt;}
.y18e{bottom:689.887057pt;}
.y1ef{bottom:691.463802pt;}
.yf{bottom:691.811333pt;}
.y88{bottom:691.947467pt;}
.y187{bottom:691.947600pt;}
.y25d{bottom:693.400000pt;}
.yeb{bottom:694.207867pt;}
.y16f{bottom:695.220000pt;}
.y140{bottom:697.494667pt;}
.y4c{bottom:697.847867pt;}
.y22f{bottom:698.417600pt;}
.y113{bottom:698.956000pt;}
.y1c3{bottom:699.146193pt;}
.yba{bottom:699.790667pt;}
.y26e{bottom:701.165333pt;}
.y256{bottom:701.500800pt;}
.y267{bottom:702.692667pt;}
.y24b{bottom:705.083067pt;}
.y208{bottom:708.333585pt;}
.y21b{bottom:708.356129pt;}
.ye{bottom:709.411333pt;}
.y112{bottom:710.956000pt;}
.y25c{bottom:711.000000pt;}
.yea{bottom:711.790667pt;}
.y4b{bottom:716.514533pt;}
.y20c{bottom:716.576612pt;}
.yb9{bottom:717.373333pt;}
.y255{bottom:719.100800pt;}
.y24a{bottom:722.665733pt;}
.ye9{bottom:723.790667pt;}
.y213{bottom:723.839104pt;}
.y20e{bottom:725.809830pt;}
.y1df{bottom:728.478788pt;}
.y111{bottom:728.538667pt;}
.yb8{bottom:734.956000pt;}
.y211{bottom:735.043049pt;}
.y87{bottom:735.181067pt;}
.y4a{bottom:735.181200pt;}
.y254{bottom:736.700800pt;}
.yd{bottom:737.053600pt;}
.y21d{bottom:737.242667pt;}
.y249{bottom:740.248400pt;}
.ye8{bottom:741.373333pt;}
.y209{bottom:744.276267pt;}
.y110{bottom:746.121333pt;}
.yb7{bottom:752.538667pt;}
.y20d{bottom:753.509485pt;}
.y86{bottom:753.847733pt;}
.y49{bottom:753.847867pt;}
.y212{bottom:757.314082pt;}
.y248{bottom:757.831067pt;}
.y10f{bottom:758.121333pt;}
.ye7{bottom:758.956000pt;}
.y210{bottom:762.742703pt;}
.y1d8{bottom:762.756861pt;}
.y215{bottom:764.238995pt;}
.y228{bottom:766.659733pt;}
.y214{bottom:769.083698pt;}
.yb6{bottom:770.121333pt;}
.y20f{bottom:771.975921pt;}
.y85{bottom:772.514400pt;}
.y48{bottom:772.514533pt;}
.y247{bottom:775.413733pt;}
.y10e{bottom:775.704000pt;}
.ye6{bottom:776.538667pt;}
.y20b{bottom:781.209139pt;}
.yb5{bottom:787.704000pt;}
.y20a{bottom:790.442357pt;}
.y84{bottom:791.181067pt;}
.y47{bottom:791.181200pt;}
.y246{bottom:792.996400pt;}
.ye5{bottom:794.121333pt;}
.y266{bottom:796.026000pt;}
.y1a2{bottom:800.703922pt;}
.yb4{bottom:805.286667pt;}
.y7{bottom:807.526000pt;}
.y83{bottom:809.847733pt;}
.y46{bottom:809.847867pt;}
.y1c7{bottom:809.953934pt;}
.y245{bottom:810.579067pt;}
.ye4{bottom:811.704000pt;}
.y1de{bottom:812.435382pt;}
.y1ff{bottom:817.179724pt;}
.y10d{bottom:817.286667pt;}
.y1b6{bottom:819.168905pt;}
.yb3{bottom:822.869333pt;}
.y6{bottom:823.526000pt;}
.y244{bottom:828.161733pt;}
.y18c{bottom:828.394453pt;}
.y82{bottom:828.514400pt;}
.y45{bottom:828.514533pt;}
.ye3{bottom:829.286667pt;}
.y10c{bottom:834.869333pt;}
.y1a9{bottom:837.636795pt;}
.y21f{bottom:838.810667pt;}
.y5{bottom:839.526000pt;}
.yb2{bottom:840.452000pt;}
.y243{bottom:845.744400pt;}
.ye2{bottom:846.869333pt;}
.y1ce{bottom:846.886806pt;}
.y81{bottom:847.181067pt;}
.y44{bottom:847.181200pt;}
.y10b{bottom:852.452000pt;}
.y1b1{bottom:856.092653pt;}
.y1f2{bottom:857.415388pt;}
.y1d7{bottom:857.570698pt;}
.yb1{bottom:858.034667pt;}
.y242{bottom:863.327200pt;}
.ye1{bottom:864.452000pt;}
.y218{bottom:865.329961pt;}
.y1cf{bottom:865.353243pt;}
.y80{bottom:865.847733pt;}
.y43{bottom:865.847867pt;}
.yb0{bottom:870.034667pt;}
.y4{bottom:870.644267pt;}
.y22d{bottom:874.436133pt;}
.y1f1{bottom:874.549759pt;}
.y1d3{bottom:874.577337pt;}
.y241{bottom:880.909867pt;}
.ye0{bottom:882.034667pt;}
.y1a3{bottom:883.812009pt;}
.y7f{bottom:884.514400pt;}
.y42{bottom:884.514533pt;}
.yaf{bottom:887.617333pt;}
.y1ee{bottom:889.448815pt;}
.y200{bottom:893.016195pt;}
.y1d0{bottom:893.052897pt;}
.y240{bottom:898.492533pt;}
.yae{bottom:899.617333pt;}
.y1d6{bottom:900.716833pt;}
.y193{bottom:902.260198pt;}
.y7e{bottom:903.181067pt;}
.y41{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.y201{bottom:909.511905pt;}
.y19a{bottom:911.493416pt;}
.y23f{bottom:916.075200pt;}
.yad{bottom:917.200000pt;}
.y1bb{bottom:919.812807pt;}
.y7d{bottom:921.847733pt;}
.y40{bottom:921.847867pt;}
.y265{bottom:926.692667pt;}
.y1db{bottom:929.967315pt;}
.y2{bottom:932.695600pt;}
.y23e{bottom:933.657867pt;}
.yac{bottom:934.782667pt;}
.y22a{bottom:938.192000pt;}
.y229{bottom:938.641333pt;}
.y1da{bottom:939.200533pt;}
.y7c{bottom:940.514400pt;}
.y3f{bottom:940.514533pt;}
.y1dc{bottom:948.433751pt;}
.y23d{bottom:951.240533pt;}
.yab{bottom:952.365333pt;}
.y1a8{bottom:957.677754pt;}
.y1e5{bottom:959.099396pt;}
.y7b{bottom:959.181067pt;}
.y3e{bottom:959.181200pt;}
.y1f3{bottom:966.891064pt;}
.y1b5{bottom:966.909518pt;}
.y26d{bottom:968.802933pt;}
.y23c{bottom:968.823200pt;}
.yaa{bottom:969.948133pt;}
.y1dd{bottom:970.923754pt;}
.y18b{bottom:976.135067pt;}
.y12a{bottom:977.847733pt;}
.y3d{bottom:977.847867pt;}
.y1cc{bottom:985.394202pt;}
.yc{bottom:986.502667pt;}
.y1f4{bottom:987.501578pt;}
.ya9{bottom:987.797467pt;}
.y7a{bottom:989.062933pt;}
.ya8{bottom:989.832933pt;}
.y1b8{bottom:994.609173pt;}
.y23b{bottom:994.918133pt;}
.y1fc{bottom:995.302370pt;}
.ya7{bottom:995.832933pt;}
.y129{bottom:996.514400pt;}
.y3c{bottom:996.514533pt;}
.y26c{bottom:997.511867pt;}
.y264{bottom:1000.401600pt;}
.y1d4{bottom:1003.851515pt;}
.y38{bottom:1027.213600pt;}
.y37{bottom:1044.546933pt;}
.y3b{bottom:1047.726000pt;}
.h29{height:5.432000pt;}
.h1f{height:6.053333pt;}
.h27{height:6.920000pt;}
.h25{height:10.380000pt;}
.h1e{height:11.994667pt;}
.h1d{height:11.996000pt;}
.h19{height:11.997333pt;}
.h1b{height:11.998667pt;}
.h2a{height:13.261631pt;}
.h20{height:14.779912pt;}
.h28{height:16.893286pt;}
.h24{height:25.339744pt;}
.h18{height:28.420015pt;}
.h1c{height:28.565698pt;}
.h1a{height:29.286534pt;}
.h17{height:29.458333pt;}
.h15{height:29.731771pt;}
.h6{height:30.618750pt;}
.h26{height:32.954976pt;}
.h16{height:33.651042pt;}
.h2{height:33.812500pt;}
.h10{height:34.020833pt;}
.h5{height:34.250000pt;}
.h21{height:36.727327pt;}
.hf{height:38.039062pt;}
.h7{height:38.226562pt;}
.he{height:38.273438pt;}
.h9{height:38.507812pt;}
.h8{height:42.083333pt;}
.hc{height:42.786458pt;}
.ha{height:43.265625pt;}
.h12{height:44.601562pt;}
.h11{height:46.291667pt;}
.h4{height:47.065104pt;}
.hd{height:48.072917pt;}
.hb{height:50.500000pt;}
.h13{height:53.731771pt;}
.h2c{height:54.924839pt;}
.h23{height:61.212572pt;}
.h3{height:72.205729pt;}
.h14{height:85.873104pt;}
.h22{height:531.132000pt;}
.h2b{height:836.820000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w35{width:5.080000pt;}
.w31{width:5.661333pt;}
.w34{width:6.472000pt;}
.w30{width:16.985333pt;}
.w2{width:18.452933pt;}
.w2f{width:24.893333pt;}
.w2d{width:24.894667pt;}
.w2c{width:31.926667pt;}
.w2e{width:31.928000pt;}
.w2b{width:34.564000pt;}
.w2a{width:37.200000pt;}
.w6{width:54.201333pt;}
.w16{width:54.202667pt;}
.w10{width:56.446667pt;}
.w1a{width:56.836000pt;}
.w1f{width:56.838667pt;}
.w22{width:58.205333pt;}
.wa{width:58.206667pt;}
.w4{width:58.597333pt;}
.w8{width:58.598667pt;}
.wf{width:70.008000pt;}
.w9{width:75.286667pt;}
.w19{width:78.198667pt;}
.w11{width:78.788000pt;}
.w5{width:79.966667pt;}
.we{width:79.970667pt;}
.w1c{width:80.172000pt;}
.w25{width:80.542667pt;}
.w17{width:80.558667pt;}
.w26{width:80.564000pt;}
.w27{width:81.156000pt;}
.w7{width:83.498667pt;}
.w13{width:83.780000pt;}
.w18{width:83.781333pt;}
.w20{width:89.342667pt;}
.w1b{width:95.798667pt;}
.w21{width:97.538667pt;}
.w14{width:97.540000pt;}
.w3{width:98.724000pt;}
.w1e{width:99.888000pt;}
.w24{width:99.893333pt;}
.w1d{width:100.485333pt;}
.w23{width:101.077333pt;}
.w28{width:103.413333pt;}
.w12{width:104.568000pt;}
.w29{width:105.736000pt;}
.w15{width:106.916000pt;}
.wd{width:107.518667pt;}
.wc{width:135.609333pt;}
.wb{width:137.382667pt;}
.w33{width:143.226667pt;}
.w36{width:567.026667pt;}
.w32{width:631.937333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xb{left:95.172400pt;}
.xc{left:96.255067pt;}
.x10{left:99.779467pt;}
.x6{left:106.290133pt;}
.x7{left:107.597867pt;}
.x8{left:109.707333pt;}
.x11{left:111.720400pt;}
.xa9{left:128.454667pt;}
.xd{left:131.473333pt;}
.x24{left:133.191067pt;}
.x9b{left:137.290167pt;}
.x90{left:139.306512pt;}
.xab{left:143.756800pt;}
.x68{left:162.536133pt;}
.x8e{left:168.402098pt;}
.x94{left:173.420151pt;}
.x99{left:179.186350pt;}
.x5e{left:182.468000pt;}
.x88{left:194.559841pt;}
.xa0{left:208.312003pt;}
.x95{left:209.495393pt;}
.xe{left:213.633200pt;}
.xa3{left:215.124000pt;}
.x58{left:218.166667pt;}
.x18{left:219.571467pt;}
.x1a{left:221.583467pt;}
.x55{left:223.049333pt;}
.xac{left:228.283467pt;}
.x60{left:229.600000pt;}
.x5c{left:233.184000pt;}
.x5d{left:237.989333pt;}
.x67{left:240.512400pt;}
.x5f{left:242.548000pt;}
.x5b{left:244.082667pt;}
.x5a{left:246.750667pt;}
.x59{left:247.974667pt;}
.xaa{left:250.828533pt;}
.x72{left:254.237958pt;}
.x64{left:256.949333pt;}
.x56{left:262.545333pt;}
.x97{left:263.580884pt;}
.x4{left:266.834667pt;}
.x63{left:269.561333pt;}
.x57{left:272.922667pt;}
.x8d{left:275.852305pt;}
.x20{left:278.693067pt;}
.x1d{left:279.789067pt;}
.x61{left:280.928000pt;}
.x5{left:281.952667pt;}
.x15{left:284.453467pt;}
.x54{left:286.200000pt;}
.x1b{left:287.670933pt;}
.x23{left:289.042667pt;}
.x12{left:290.692400pt;}
.x22{left:292.285200pt;}
.x19{left:293.597733pt;}
.x1f{left:295.329467pt;}
.x1e{left:297.182000pt;}
.x62{left:298.281333pt;}
.x92{left:300.331282pt;}
.x21{left:302.605200pt;}
.x87{left:303.524588pt;}
.x40{left:305.908000pt;}
.x51{left:307.844000pt;}
.x8c{left:311.234143pt;}
.x7f{left:314.380145pt;}
.x4d{left:315.446667pt;}
.x96{left:317.693746pt;}
.x42{left:319.220000pt;}
.x7b{left:321.295934pt;}
.x2a{left:323.980000pt;}
.x3b{left:325.001333pt;}
.x4c{left:327.140000pt;}
.x31{left:328.142667pt;}
.x48{left:329.841333pt;}
.x36{left:332.176000pt;}
.x4f{left:333.354667pt;}
.x25{left:334.514667pt;}
.x2e{left:335.806667pt;}
.x9a{left:336.963071pt;}
.x93{left:338.012300pt;}
.x2c{left:340.920000pt;}
.x38{left:344.208000pt;}
.x9f{left:347.138729pt;}
.x4a{left:349.442667pt;}
.x3{left:352.045067pt;}
.x3e{left:354.293333pt;}
.x46{left:355.826667pt;}
.x85{left:357.179578pt;}
.x34{left:358.361333pt;}
.x80{left:360.610101pt;}
.x89{left:364.160920pt;}
.x28{left:365.130667pt;}
.x98{left:368.412580pt;}
.x16{left:370.138400pt;}
.x13{left:371.384800pt;}
.x8a{left:375.328370pt;}
.x91{left:376.304609pt;}
.x77{left:379.587467pt;}
.xa2{left:381.410667pt;}
.x83{left:383.501548pt;}
.x79{left:384.696757pt;}
.xf{left:386.396533pt;}
.x82{left:389.486717pt;}
.x78{left:390.389967pt;}
.x8b{left:395.792903pt;}
.x30{left:397.342667pt;}
.x2b{left:399.264000pt;}
.x8f{left:400.254409pt;}
.x7a{left:401.566540pt;}
.x44{left:403.138667pt;}
.x41{left:404.241333pt;}
.x33{left:405.473333pt;}
.x73{left:406.878017pt;}
.x32{left:408.132000pt;}
.x75{left:409.304930pt;}
.x52{left:411.258667pt;}
.x6e{left:412.306638pt;}
.x69{left:413.419733pt;}
.x27{left:414.384000pt;}
.x4e{left:415.321333pt;}
.x9d{left:418.559314pt;}
.x43{left:419.697333pt;}
.x86{left:421.868533pt;}
.x84{left:423.436129pt;}
.x49{left:427.380000pt;}
.x6d{left:428.665492pt;}
.x37{left:429.716000pt;}
.x50{left:430.894667pt;}
.x26{left:433.221333pt;}
.x53{left:434.166667pt;}
.x3a{left:435.380000pt;}
.x6f{left:436.347675pt;}
.x3c{left:438.612000pt;}
.x35{left:439.533333pt;}
.x7c{left:441.555863pt;}
.x47{left:445.156000pt;}
.x6b{left:447.633733pt;}
.x29{left:448.624000pt;}
.x3f{left:450.101333pt;}
.x9e{left:451.979549pt;}
.x6c{left:453.801377pt;}
.x7d{left:455.916620pt;}
.x45{left:458.721333pt;}
.x9c{left:463.037514pt;}
.x2f{left:471.420000pt;}
.x81{left:473.890374pt;}
.x2d{left:478.302667pt;}
.x7e{left:479.565337pt;}
.x39{left:481.590667pt;}
.x4b{left:485.056000pt;}
.x70{left:487.586562pt;}
.x71{left:494.128278pt;}
.x74{left:505.213614pt;}
.x6a{left:508.552901pt;}
.x3d{left:516.796000pt;}
.x76{left:524.711033pt;}
.xa{left:577.469600pt;}
.xa8{left:581.551733pt;}
.x66{left:587.998667pt;}
.x9{left:595.891467pt;}
.xa7{left:605.100204pt;}
.xa6{left:617.435582pt;}
.xa5{left:630.221067pt;}
.xa1{left:640.278400pt;}
.xa4{left:643.762133pt;}
.x65{left:663.570400pt;}
.x1c{left:665.852800pt;}
.x14{left:669.368667pt;}
.x17{left:671.909333pt;}
.x1{left:712.311867pt;}
}




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