
    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_5a1e515087cfbe07b75502d2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.974000;font-style:normal;font-weight: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_f4256d8e90b262f06199bbb8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113770;font-style:normal;font-weight: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_1e66f910cd2d5372865d1f6c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050056;font-style:normal;font-weight: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_e995a4a5e5b96016ef36e009.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.979980;font-style:normal;font-weight: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_c23c50cb1ceb3e4ab0a52d72.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040000;font-style:normal;font-weight: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_9845018c2c4badc4d9d6541a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.979004;font-style:normal;font-weight: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_e16b4516e467e36f267ea019.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666000;font-style:normal;font-weight: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_e989056759f8254fb39f8b64.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.928000;font-style:normal;font-weight: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_91141ecf7b180b6a7362318f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.219000;font-style:normal;font-weight: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_5a224064f5a639c95cb95b6e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.113770;font-style:normal;font-weight: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_55764a83cba26f9f17b29a97.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.113770;font-style:normal;font-weight: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_73233a5c86ff8d595316d664.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910000;font-style:normal;font-weight: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_9e613b2335cb236edb921540.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.990751;font-style:normal;font-weight: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_a9b1816bc56bc15854522c6c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.928000;font-style:normal;font-weight: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_7da0246ab0cee503b324b14b.woff2')format("woff");}.fff{font-family:fff;line-height:0.910000;font-style:normal;font-weight: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_6033747845c7fcfae9ab6ef9.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.219000;font-style:normal;font-weight: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_a37513666f6f5dc418127589.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.990751;font-style:normal;font-weight: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_45433773937548a8b86b6f7a.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.219000;font-style:normal;font-weight: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_a9b1816bc56bc15854522c6c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.928000;font-style:normal;font-weight: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_7b25fa5214e7343a731db193.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.893000;font-style:normal;font-weight: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_d123cfe3cff79c868b712ddf.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.990751;font-style:normal;font-weight: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_54ea53707ea2697138a098d4.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.219000;font-style:normal;font-weight: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_a9b1816bc56bc15854522c6c.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.928000;font-style:normal;font-weight: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_7da0246ab0cee503b324b14b.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.910000;font-style:normal;font-weight: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_7da0246ab0cee503b324b14b.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.910000;font-style:normal;font-weight: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_73624a65ceebb70d12ef684c.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.219000;font-style:normal;font-weight: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_a37513666f6f5dc418127589.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.990751;font-style:normal;font-weight: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_a9b1816bc56bc15854522c6c.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.928000;font-style:normal;font-weight: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_43f15e7dd496ba8491e52c5f.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.666000;font-style:normal;font-weight: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_7da0246ab0cee503b324b14b.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.910000;font-style:normal;font-weight: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_a9b1816bc56bc15854522c6c.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.928000;font-style:normal;font-weight: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_7da0246ab0cee503b324b14b.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.910000;font-style:normal;font-weight: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_a9b1816bc56bc15854522c6c.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.928000;font-style:normal;font-weight: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_1fa9fbec0fbe00f392b64cf9.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.219000;font-style:normal;font-weight: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_41ffbc5dd57c9c9378515398.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.990751;font-style:normal;font-weight: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_7da0246ab0cee503b324b14b.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.910000;font-style:normal;font-weight: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_a9b1816bc56bc15854522c6c.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.928000;font-style:normal;font-weight: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_c788c877989ec7b4b224a954.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.219000;font-style:normal;font-weight: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_ac21953446da5833e9a6b6cb.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.990751;font-style:normal;font-weight: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_be8788f5740265338ddfcd43.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.219000;font-style:normal;font-weight: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_7da0246ab0cee503b324b14b.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.910000;font-style:normal;font-weight: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_a9b1816bc56bc15854522c6c.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.928000;font-style:normal;font-weight: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_7da0246ab0cee503b324b14b.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.910000;font-style:normal;font-weight: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_b64875f1743d62e219493f75.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.219000;font-style:normal;font-weight: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_a9b1816bc56bc15854522c6c.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.928000;font-style:normal;font-weight: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_7da0246ab0cee503b324b14b.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.910000;font-style:normal;font-weight: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_b64875f1743d62e219493f75.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.219000;font-style:normal;font-weight: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_a9b1816bc56bc15854522c6c.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.928000;font-style:normal;font-weight: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_7da0246ab0cee503b324b14b.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.910000;font-style:normal;font-weight: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_54ea53707ea2697138a098d4.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.219000;font-style:normal;font-weight: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_a9b1816bc56bc15854522c6c.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.928000;font-style:normal;font-weight: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_7da0246ab0cee503b324b14b.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.910000;font-style:normal;font-weight: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_2fc75a1bbdf0ef34b829bee7.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.219000;font-style:normal;font-weight: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_a9b1816bc56bc15854522c6c.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.928000;font-style:normal;font-weight: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_2dfe72eb90fa3f960722cefc.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.979980;font-style:normal;font-weight: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_67bc5c0fc57e8c621efd97ec.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.875977;font-style:normal;font-weight: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_27b24dadf3a3e8666924f63f.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.938965;font-style:normal;font-weight: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_5ce9d6ee9518d1b1aed37518.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.153563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153563,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-ms-transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-webkit-transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);}
.m1{transform:matrix(0.249999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249999,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(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);}
.m3{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);}
.vd{vertical-align:-46.320000px;}
.ve{vertical-align:-40.135875px;}
.v8{vertical-align:-26.437800px;}
.v3{vertical-align:-21.978000px;}
.vb{vertical-align:-20.437800px;}
.v4{vertical-align:-15.984000px;}
.vf{vertical-align:-4.042200px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:12.736200px;}
.v5{vertical-align:15.984000px;}
.v6{vertical-align:19.980000px;}
.v2{vertical-align:21.978000px;}
.va{vertical-align:26.439000px;}
.v1{vertical-align:41.104800px;}
.v9{vertical-align:46.320000px;}
.vc{vertical-align:51.960000px;}
.ls44{letter-spacing:-6.840000px;}
.ls53{letter-spacing:-4.620000px;}
.ls95{letter-spacing:-2.640000px;}
.ls69{letter-spacing:-2.400000px;}
.ls7f{letter-spacing:-1.500000px;}
.ls20{letter-spacing:-1.200000px;}
.ls54{letter-spacing:-0.960000px;}
.ls52{letter-spacing:-0.840000px;}
.ls55{letter-spacing:-0.780000px;}
.ls90{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.660000px;}
.lsae{letter-spacing:-0.624000px;}
.ls1a{letter-spacing:-0.600000px;}
.lsa4{letter-spacing:-0.576000px;}
.ls1c{letter-spacing:-0.540000px;}
.ls30{letter-spacing:-0.480000px;}
.lsa{letter-spacing:-0.432000px;}
.ls17{letter-spacing:-0.420000px;}
.ls19{letter-spacing:-0.384780px;}
.lsa5{letter-spacing:-0.384000px;}
.ls1f{letter-spacing:-0.360000px;}
.ls21{letter-spacing:-0.349800px;}
.lsa2{letter-spacing:-0.336000px;}
.ls1d{letter-spacing:-0.314820px;}
.ls14{letter-spacing:-0.300000px;}
.ls67{letter-spacing:-0.279840px;}
.ls31{letter-spacing:-0.240000px;}
.ls80{letter-spacing:-0.209880px;}
.lsa3{letter-spacing:-0.192000px;}
.ls1e{letter-spacing:-0.180000px;}
.ls15{letter-spacing:-0.174900px;}
.lsad{letter-spacing:-0.144000px;}
.ls32{letter-spacing:-0.139920px;}
.lsac{letter-spacing:-0.096000px;}
.ls81{letter-spacing:-0.060000px;}
.lsab{letter-spacing:-0.048000px;}
.ls98{letter-spacing:-0.034980px;}
.lsb{letter-spacing:0.000000px;}
.ls94{letter-spacing:0.010200px;}
.ls29{letter-spacing:0.019800px;}
.ls91{letter-spacing:0.034980px;}
.ls9a{letter-spacing:0.048000px;}
.lsf{letter-spacing:0.060000px;}
.ls9f{letter-spacing:0.096000px;}
.ls75{letter-spacing:0.105000px;}
.lsd{letter-spacing:0.120000px;}
.ls16{letter-spacing:0.139920px;}
.lsa9{letter-spacing:0.144000px;}
.ls68{letter-spacing:0.174900px;}
.lse{letter-spacing:0.180000px;}
.lsaa{letter-spacing:0.192000px;}
.ls3a{letter-spacing:0.209880px;}
.ls8{letter-spacing:0.240000px;}
.lsa7{letter-spacing:0.288000px;}
.ls40{letter-spacing:0.299400px;}
.ls3f{letter-spacing:0.300000px;}
.ls1b{letter-spacing:0.349800px;}
.ls39{letter-spacing:0.360000px;}
.lsa1{letter-spacing:0.384000px;}
.ls12{letter-spacing:0.420000px;}
.lsc{letter-spacing:0.480000px;}
.ls9e{letter-spacing:0.528000px;}
.ls24{letter-spacing:0.540000px;}
.ls92{letter-spacing:0.591000px;}
.ls7{letter-spacing:0.594000px;}
.ls10{letter-spacing:0.600000px;}
.ls9b{letter-spacing:0.624000px;}
.ls9{letter-spacing:0.660000px;}
.ls38{letter-spacing:0.681000px;}
.ls37{letter-spacing:0.681600px;}
.ls5{letter-spacing:0.702000px;}
.ls8d{letter-spacing:0.720000px;}
.ls27{letter-spacing:0.780000px;}
.ls28{letter-spacing:0.793800px;}
.ls22{letter-spacing:0.840000px;}
.lsa0{letter-spacing:0.912000px;}
.ls3e{letter-spacing:0.960000px;}
.lsa6{letter-spacing:1.008000px;}
.ls23{letter-spacing:1.020000px;}
.ls9c{letter-spacing:1.056000px;}
.ls8f{letter-spacing:1.080000px;}
.ls9d{letter-spacing:1.104000px;}
.ls26{letter-spacing:1.140000px;}
.ls3{letter-spacing:1.166400px;}
.ls97{letter-spacing:1.440000px;}
.ls96{letter-spacing:1.500000px;}
.ls2{letter-spacing:1.616076px;}
.ls11{letter-spacing:1.920000px;}
.lsa8{letter-spacing:1.968000px;}
.ls4{letter-spacing:2.016000px;}
.ls8e{letter-spacing:2.019000px;}
.ls25{letter-spacing:2.340000px;}
.ls1{letter-spacing:2.772000px;}
.ls41{letter-spacing:3.030000px;}
.ls93{letter-spacing:3.312000px;}
.ls3b{letter-spacing:4.320000px;}
.ls2f{letter-spacing:4.871175px;}
.ls78{letter-spacing:5.684625px;}
.ls6{letter-spacing:7.370400px;}
.ls79{letter-spacing:8.080425px;}
.ls77{letter-spacing:9.420000px;}
.ls99{letter-spacing:12.000000px;}
.ls0{letter-spacing:12.480000px;}
.ls6a{letter-spacing:15.960000px;}
.ls5d{letter-spacing:19.740000px;}
.ls59{letter-spacing:26.820000px;}
.ls7d{letter-spacing:26.940000px;}
.ls5e{letter-spacing:29.640000px;}
.ls85{letter-spacing:30.660000px;}
.ls5a{letter-spacing:33.180000px;}
.ls58{letter-spacing:33.480000px;}
.ls72{letter-spacing:34.380000px;}
.ls87{letter-spacing:34.440000px;}
.ls7e{letter-spacing:35.677125px;}
.ls62{letter-spacing:35.700000px;}
.ls86{letter-spacing:40.440000px;}
.ls71{letter-spacing:45.600000px;}
.ls34{letter-spacing:47.340000px;}
.ls70{letter-spacing:47.700000px;}
.ls5c{letter-spacing:51.060000px;}
.ls6c{letter-spacing:54.360000px;}
.ls6d{letter-spacing:56.985750px;}
.ls2a{letter-spacing:57.240000px;}
.ls8a{letter-spacing:60.612750px;}
.ls6e{letter-spacing:62.280000px;}
.ls8b{letter-spacing:66.367125px;}
.ls47{letter-spacing:66.960000px;}
.ls83{letter-spacing:71.640000px;}
.ls4c{letter-spacing:72.840000px;}
.ls88{letter-spacing:75.360000px;}
.ls33{letter-spacing:76.860000px;}
.ls2c{letter-spacing:78.540000px;}
.ls2b{letter-spacing:95.487750px;}
.ls6f{letter-spacing:96.180000px;}
.ls35{letter-spacing:97.380000px;}
.ls57{letter-spacing:114.180000px;}
.ls60{letter-spacing:114.300000px;}
.ls4d{letter-spacing:114.420000px;}
.ls76{letter-spacing:117.088425px;}
.ls7c{letter-spacing:126.960000px;}
.ls45{letter-spacing:134.040000px;}
.ls4a{letter-spacing:136.361250px;}
.ls61{letter-spacing:137.340000px;}
.ls4e{letter-spacing:142.713142px;}
.ls4b{letter-spacing:142.920000px;}
.ls43{letter-spacing:146.445000px;}
.ls74{letter-spacing:146.445600px;}
.ls73{letter-spacing:147.720000px;}
.ls48{letter-spacing:151.008750px;}
.ls7a{letter-spacing:151.020000px;}
.ls51{letter-spacing:154.140000px;}
.ls50{letter-spacing:158.262750px;}
.ls36{letter-spacing:158.700000px;}
.ls42{letter-spacing:159.900000px;}
.ls66{letter-spacing:175.740000px;}
.ls3d{letter-spacing:179.144004px;}
.ls5f{letter-spacing:182.040000px;}
.ls65{letter-spacing:189.600000px;}
.ls2d{letter-spacing:190.560000px;}
.ls2e{letter-spacing:191.640000px;}
.ls56{letter-spacing:197.640000px;}
.ls5b{letter-spacing:216.000000px;}
.ls7b{letter-spacing:227.760000px;}
.ls13{letter-spacing:238.600200px;}
.ls49{letter-spacing:239.103000px;}
.ls4f{letter-spacing:239.288716px;}
.ls46{letter-spacing:273.180000px;}
.ls82{letter-spacing:315.060000px;}
.ls89{letter-spacing:449.155125px;}
.ls6b{letter-spacing:458.607600px;}
.ls63{letter-spacing:479.040000px;}
.ls3c{letter-spacing:485.280000px;}
.ls64{letter-spacing:490.860000px;}
.ls8c{letter-spacing:522.600000px;}
.ls84{letter-spacing:584.280000px;}
.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;}
}
.ws48{word-spacing:-584.340000px;}
.ws36{word-spacing:-550.860000px;}
.ws35{word-spacing:-479.100000px;}
.ws4c{word-spacing:-449.190000px;}
.ws46{word-spacing:-315.120000px;}
.ws2d{word-spacing:-276.000000px;}
.ws20{word-spacing:-273.240000px;}
.ws37{word-spacing:-249.600000px;}
.ws22{word-spacing:-239.137875px;}
.ws27{word-spacing:-197.700000px;}
.ws23{word-spacing:-189.960000px;}
.ws30{word-spacing:-182.100000px;}
.ws21{word-spacing:-133.257375px;}
.ws1f{word-spacing:-116.280000px;}
.ws31{word-spacing:-114.360000px;}
.ws28{word-spacing:-114.240000px;}
.ws2e{word-spacing:-111.060000px;}
.ws3e{word-spacing:-96.240000px;}
.ws4e{word-spacing:-90.000000px;}
.ws33{word-spacing:-86.040000px;}
.ws25{word-spacing:-79.005209px;}
.ws18{word-spacing:-76.920000px;}
.ws47{word-spacing:-71.700000px;}
.ws1b{word-spacing:-65.878875px;}
.ws3d{word-spacing:-62.340000px;}
.ws1d{word-spacing:-60.660000px;}
.ws17{word-spacing:-60.000000px;}
.ws1e{word-spacing:-53.160000px;}
.ws1c{word-spacing:-49.920000px;}
.ws7{word-spacing:-48.000000px;}
.ws1a{word-spacing:-47.400000px;}
.ws34{word-spacing:-35.760000px;}
.ws24{word-spacing:-35.400000px;}
.ws41{word-spacing:-34.440000px;}
.ws49{word-spacing:-30.720000px;}
.ws4d{word-spacing:-28.946250px;}
.ws5{word-spacing:-23.352000px;}
.wsd{word-spacing:-17.562000px;}
.ws6f{word-spacing:-17.280000px;}
.ws4b{word-spacing:-15.900000px;}
.ws3{word-spacing:-15.714000px;}
.ws4{word-spacing:-15.012000px;}
.ws16{word-spacing:-15.000000px;}
.ws14{word-spacing:-14.760000px;}
.ws44{word-spacing:-14.640000px;}
.ws38{word-spacing:-14.520000px;}
.wsf{word-spacing:-14.460000px;}
.ws2{word-spacing:-12.312960px;}
.ws3f{word-spacing:-12.240000px;}
.ws6e{word-spacing:-12.000000px;}
.ws13{word-spacing:-11.676000px;}
.ws70{word-spacing:-11.568000px;}
.ws9{word-spacing:-11.520000px;}
.ws2b{word-spacing:-10.800000px;}
.wse{word-spacing:-9.094800px;}
.ws3a{word-spacing:-8.919900px;}
.wsb{word-spacing:-8.884920px;}
.ws53{word-spacing:-8.779980px;}
.ws6{word-spacing:-8.745000px;}
.ws60{word-spacing:-8.710020px;}
.ws0{word-spacing:-8.640000px;}
.ws15{word-spacing:-8.605080px;}
.wsa{word-spacing:-8.570100px;}
.ws45{word-spacing:-8.535120px;}
.ws39{word-spacing:-8.465160px;}
.ws10{word-spacing:-8.430180px;}
.ws42{word-spacing:-8.400000px;}
.wsc{word-spacing:-8.360220px;}
.ws1{word-spacing:-8.340000px;}
.ws19{word-spacing:-0.060000px;}
.ws4f{word-spacing:-0.048000px;}
.ws3c{word-spacing:-0.034875px;}
.ws8{word-spacing:0.000000px;}
.ws29{word-spacing:0.240000px;}
.ws3b{word-spacing:30.540000px;}
.ws66{word-spacing:39.657600px;}
.ws4a{word-spacing:44.400000px;}
.ws65{word-spacing:47.673600px;}
.ws5f{word-spacing:63.564000px;}
.ws5e{word-spacing:64.320000px;}
.ws5c{word-spacing:67.488000px;}
.ws2a{word-spacing:81.000000px;}
.ws58{word-spacing:83.001000px;}
.ws61{word-spacing:84.357000px;}
.ws50{word-spacing:84.531600px;}
.ws69{word-spacing:85.209600px;}
.ws2c{word-spacing:90.660000px;}
.ws5a{word-spacing:91.920000px;}
.ws5d{word-spacing:92.928000px;}
.ws5b{word-spacing:95.136000px;}
.ws59{word-spacing:103.185000px;}
.ws6a{word-spacing:112.713600px;}
.ws63{word-spacing:126.153600px;}
.ws32{word-spacing:127.800000px;}
.ws68{word-spacing:132.201600px;}
.ws67{word-spacing:140.217600px;}
.ws6d{word-spacing:151.689600px;}
.ws51{word-spacing:166.035600px;}
.ws55{word-spacing:176.158200px;}
.ws64{word-spacing:178.185600px;}
.ws62{word-spacing:186.153600px;}
.ws6c{word-spacing:188.169600px;}
.ws6b{word-spacing:198.681600px;}
.ws52{word-spacing:202.515600px;}
.ws26{word-spacing:203.700000px;}
.ws56{word-spacing:212.638200px;}
.ws54{word-spacing:221.441400px;}
.ws11{word-spacing:225.256200px;}
.ws40{word-spacing:289.620000px;}
.ws43{word-spacing:344.340000px;}
.ws57{word-spacing:351.546000px;}
.ws2f{word-spacing:387.060000px;}
.ws12{word-spacing:472.744200px;}
._40{margin-left:-1092.480000px;}
._30{margin-left:-982.320000px;}
._32{margin-left:-677.460000px;}
._2f{margin-left:-622.980000px;}
._3e{margin-left:-589.159800px;}
._21{margin-left:-478.500000px;}
._3a{margin-left:-432.900000px;}
._3f{margin-left:-431.700000px;}
._41{margin-left:-405.979875px;}
._38{margin-left:-378.180000px;}
._2a{margin-left:-355.740000px;}
._31{margin-left:-297.000000px;}
._35{margin-left:-285.432000px;}
._2e{margin-left:-263.700000px;}
._24{margin-left:-260.460000px;}
._1f{margin-left:-250.680000px;}
._26{margin-left:-249.240000px;}
._34{margin-left:-246.496500px;}
._20{margin-left:-205.518375px;}
._29{margin-left:-204.180000px;}
._23{margin-left:-176.280000px;}
._42{margin-left:-173.250000px;}
._1d{margin-left:-148.200000px;}
._2c{margin-left:-122.640000px;}
._28{margin-left:-119.340000px;}
._2d{margin-left:-114.720000px;}
._37{margin-left:-89.040000px;}
._33{margin-left:-67.440000px;}
._1c{margin-left:-42.180000px;}
._3c{margin-left:-35.991000px;}
._f{margin-left:-19.872000px;}
._25{margin-left:-15.120000px;}
._6{margin-left:-13.680000px;}
._6d{margin-left:-12.000000px;}
._6f{margin-left:-10.560000px;}
._9{margin-left:-7.800000px;}
._8{margin-left:-6.732000px;}
._2{margin-left:-4.824000px;}
._0{margin-left:-3.600000px;}
._7{margin-left:-2.568000px;}
._1{margin-left:-1.440000px;}
._5{width:1.692000px;}
._b{width:3.168000px;}
._d{width:4.212000px;}
._c{width:5.292000px;}
._a{width:6.590400px;}
._e{width:8.409600px;}
._6e{width:10.800000px;}
._44{width:12.204000px;}
._3d{width:25.020000px;}
._43{width:26.028000px;}
._6b{width:60.174000px;}
._6c{width:71.205000px;}
._61{width:94.792800px;}
._60{width:97.393800px;}
._5e{width:100.393200px;}
._5f{width:103.345200px;}
._65{width:112.329000px;}
._63{width:113.571000px;}
._64{width:118.329000px;}
._10{width:124.888200px;}
._69{width:136.971000px;}
._46{width:140.403600px;}
._22{width:141.720000px;}
._16{width:147.208200px;}
._12{width:151.431600px;}
._67{width:166.885200px;}
._68{width:177.915000px;}
._1a{width:194.152200px;}
._62{width:206.104200px;}
._45{width:226.371600px;}
._48{width:233.646000px;}
._49{width:236.177400px;}
._13{width:238.600200px;}
._4b{width:240.810000px;}
._66{width:242.341200px;}
._4a{width:244.770000px;}
._4c{width:246.833400px;}
._50{width:252.786000px;}
._47{width:265.726200px;}
._58{width:267.070200px;}
._4f{width:285.185400px;}
._14{width:299.320200px;}
._5b{width:303.550200px;}
._54{width:314.062200px;}
._57{width:326.542200px;}
._3b{width:330.720000px;}
._39{width:357.720000px;}
._5a{width:363.022200px;}
._2b{width:366.720000px;}
._5d{width:371.860800px;}
._56{width:373.534200px;}
._36{width:378.720000px;}
._11{width:392.296200px;}
._5c{width:404.186400px;}
._4d{width:413.182200px;}
._15{width:424.599600px;}
._18{width:431.416200px;}
._27{width:441.720000px;}
._59{width:444.366000px;}
._19{width:448.599600px;}
._6a{width:452.024400px;}
._1e{width:459.720000px;}
._17{width:482.584200px;}
._4e{width:550.398000px;}
._55{width:574.398000px;}
._53{width:585.022200px;}
._51{width:589.966200px;}
._52{width:598.398000px;}
._1b{width:1185.657600px;}
._3{width:1193.861400px;}
._4{width:2598.454200px;}
.fc6{color:rgb(16,15,13);}
.fc4{color:transparent;}
.fc3{color:rgb(123,121,121);}
.fc2{color:rgb(185,183,184);}
.fc1{color:rgb(68,132,179);}
.fc5{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:27.984000px;}
.fs3{font-size:30.000000px;}
.fsf{font-size:34.875000px;}
.fsb{font-size:34.980000px;}
.fs0{font-size:36.000000px;}
.fs7{font-size:38.478000px;}
.fsd{font-size:42.000000px;}
.fsc{font-size:42.000170px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fse{font-size:61.434844px;}
.fs6{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fs10{font-size:90.000000px;}
.fs11{font-size:97.680000px;}
.fs5{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y50{bottom:2.877762px;}
.ya9{bottom:3.750000px;}
.y112{bottom:3.890025px;}
.y114{bottom:3.890700px;}
.y1ea{bottom:3.897750px;}
.yb0{bottom:4.921950px;}
.yc1{bottom:5.250150px;}
.y52{bottom:6.245400px;}
.yd9{bottom:6.421950px;}
.y115{bottom:7.125150px;}
.y4{bottom:7.227450px;}
.ya4{bottom:7.500150px;}
.ya3{bottom:7.503900px;}
.yd7{bottom:7.740150px;}
.ya2{bottom:7.968900px;}
.y10d{bottom:8.389875px;}
.yf8{bottom:8.390025px;}
.yfc{bottom:8.390700px;}
.yee{bottom:8.531400px;}
.ya7{bottom:9.000000px;}
.ya8{bottom:9.465000px;}
.y10c{bottom:9.750000px;}
.yf7{bottom:9.750150px;}
.y146{bottom:9.889725px;}
.yb2{bottom:9.890400px;}
.yb3{bottom:9.891075px;}
.yc0{bottom:10.500000px;}
.yed{bottom:10.500150px;}
.y145{bottom:11.249850px;}
.y10f{bottom:11.625000px;}
.yfa{bottom:11.625150px;}
.yd1{bottom:12.468750px;}
.y14b{bottom:13.124850px;}
.yb5{bottom:13.125150px;}
.yd8{bottom:13.875150px;}
.y10b{bottom:15.000000px;}
.yf6{bottom:15.000150px;}
.yc2{bottom:15.468525px;}
.y4f{bottom:16.377816px;}
.y144{bottom:16.499850px;}
.yae{bottom:16.500150px;}
.y14a{bottom:16.501800px;}
.y3{bottom:16.977450px;}
.yd4{bottom:18.000150px;}
.y113{bottom:20.534119px;}
.y148{bottom:21.468225px;}
.yb1{bottom:21.468900px;}
.yc{bottom:22.675350px;}
.yd5{bottom:22.968900px;}
.yfb{bottom:24.796950px;}
.y10e{bottom:25.033969px;}
.yf9{bottom:25.034119px;}
.y149{bottom:26.296800px;}
.yaf{bottom:26.296950px;}
.y147{bottom:26.533819px;}
.yb4{bottom:26.535169px;}
.y2{bottom:26.727450px;}
.yd6{bottom:26.865150px;}
.y4e{bottom:29.877871px;}
.y1d6{bottom:33.101250px;}
.y1{bottom:36.477450px;}
.y8{bottom:38.085000px;}
.y1d5{bottom:47.729250px;}
.y54{bottom:48.361200px;}
.y5{bottom:50.359050px;}
.y7{bottom:53.543100px;}
.y1e2{bottom:67.193250px;}
.y1d7{bottom:72.557250px;}
.y1de{bottom:85.268400px;}
.y1e1{bottom:86.633250px;}
.y27b{bottom:92.817150px;}
.y237{bottom:93.016650px;}
.y1d8{bottom:97.385250px;}
.yad{bottom:103.084500px;}
.y27e{bottom:104.813850px;}
.y1e0{bottom:106.073250px;}
.y1e9{bottom:107.486100px;}
.y27a{bottom:107.817150px;}
.y236{bottom:108.016650px;}
.y108{bottom:108.459150px;}
.y9d{bottom:108.465150px;}
.y13b{bottom:108.466500px;}
.y85{bottom:108.480000px;}
.y197{bottom:108.487500px;}
.yea{bottom:108.555150px;}
.yac{bottom:119.584650px;}
.y17c{bottom:121.980000px;}
.y1d9{bottom:122.213250px;}
.y283{bottom:122.817000px;}
.y279{bottom:122.817150px;}
.y235{bottom:123.016650px;}
.y1e3{bottom:125.537250px;}
.y45{bottom:125.671950px;}
.y3e{bottom:125.679150px;}
.y84{bottom:125.859600px;}
.y107{bottom:129.459150px;}
.y9c{bottom:129.465150px;}
.y13a{bottom:129.466500px;}
.y196{bottom:129.487500px;}
.ye9{bottom:129.555150px;}
.y282{bottom:134.817000px;}
.y17b{bottom:135.480000px;}
.y278{bottom:137.817150px;}
.y234{bottom:138.016650px;}
.y44{bottom:139.921950px;}
.y16e{bottom:140.109600px;}
.y83{bottom:142.400700px;}
.y1e4{bottom:144.977250px;}
.y3d{bottom:146.679150px;}
.y281{bottom:146.817000px;}
.y1da{bottom:147.041250px;}
.y1d3{bottom:148.980000px;}
.y106{bottom:150.459150px;}
.y9b{bottom:150.465150px;}
.y139{bottom:150.466500px;}
.y195{bottom:150.487500px;}
.ye8{bottom:150.555150px;}
.y277{bottom:152.817150px;}
.y233{bottom:153.016650px;}
.y43{bottom:154.171950px;}
.y17a{bottom:154.734600px;}
.y16d{bottom:156.650700px;}
.y280{bottom:158.817000px;}
.y82{bottom:158.941650px;}
.y1e5{bottom:164.417250px;}
.y3c{bottom:167.679150px;}
.y276{bottom:167.817150px;}
.y232{bottom:168.016650px;}
.y209{bottom:168.234600px;}
.y42{bottom:168.421950px;}
.y1d4{bottom:170.340000px;}
.y27f{bottom:170.817000px;}
.yab{bottom:171.006150px;}
.y179{bottom:171.275700px;}
.y105{bottom:171.459150px;}
.y16f{bottom:171.465150px;}
.y138{bottom:171.466500px;}
.y194{bottom:171.487500px;}
.y1db{bottom:171.869250px;}
.y16c{bottom:173.191650px;}
.y81{bottom:175.482750px;}
.y41{bottom:182.671950px;}
.y275{bottom:182.817150px;}
.y231{bottom:183.016650px;}
.y1e6{bottom:183.857250px;}
.y208{bottom:185.150700px;}
.y178{bottom:187.775700px;}
.y3b{bottom:188.679150px;}
.ye7{bottom:189.028500px;}
.y16b{bottom:189.732750px;}
.y27d{bottom:191.488500px;}
.yaa{bottom:192.006150px;}
.y80{bottom:192.023700px;}
.y104{bottom:192.459150px;}
.y9a{bottom:192.465150px;}
.y137{bottom:192.466500px;}
.y193{bottom:192.487500px;}
.y1dc{bottom:196.697250px;}
.y40{bottom:196.921800px;}
.y274{bottom:197.817150px;}
.y230{bottom:198.016650px;}
.y207{bottom:202.441650px;}
.y1e7{bottom:203.297250px;}
.ya6{bottom:204.081000px;}
.y177{bottom:204.316650px;}
.y16a{bottom:206.273700px;}
.y7f{bottom:208.564800px;}
.y3a{bottom:209.679150px;}
.ye6{bottom:210.028500px;}
.y3f{bottom:211.171800px;}
.y284{bottom:212.595150px;}
.y273{bottom:212.817150px;}
.ya5{bottom:213.006150px;}
.y22f{bottom:213.016650px;}
.y103{bottom:213.459150px;}
.y99{bottom:213.465150px;}
.y136{bottom:213.466500px;}
.y192{bottom:213.487500px;}
.y27c{bottom:217.455150px;}
.y206{bottom:219.732750px;}
.y176{bottom:220.816650px;}
.y1dd{bottom:221.525250px;}
.y1e8{bottom:222.737250px;}
.y169{bottom:222.814800px;}
.y272{bottom:227.817150px;}
.y22e{bottom:228.016650px;}
.y7e{bottom:228.855750px;}
.y39{bottom:230.679150px;}
.ye5{bottom:231.028500px;}
.y1df{bottom:232.127550px;}
.y102{bottom:234.459150px;}
.y98{bottom:234.465150px;}
.y135{bottom:234.466500px;}
.y191{bottom:234.487500px;}
.y205{bottom:237.023700px;}
.y175{bottom:237.357750px;}
.ya1{bottom:237.985500px;}
.y168{bottom:239.355750px;}
.y271{bottom:242.817150px;}
.y22d{bottom:243.016650px;}
.ya0{bottom:246.985650px;}
.y38{bottom:251.679150px;}
.ye4{bottom:252.028500px;}
.y7d{bottom:252.146700px;}
.y204{bottom:254.314800px;}
.y174{bottom:254.909250px;}
.y101{bottom:255.459150px;}
.y97{bottom:255.465150px;}
.y134{bottom:255.466500px;}
.y190{bottom:255.487500px;}
.y167{bottom:255.896700px;}
.y270{bottom:257.817150px;}
.y22c{bottom:258.016650px;}
.y203{bottom:271.605750px;}
.y166{bottom:272.437800px;}
.y37{bottom:272.679150px;}
.y26f{bottom:272.817150px;}
.y22b{bottom:273.016650px;}
.ye3{bottom:273.028500px;}
.y173{bottom:275.200350px;}
.y100{bottom:276.459150px;}
.y96{bottom:276.465150px;}
.y133{bottom:276.466500px;}
.y18f{bottom:276.487500px;}
.y26e{bottom:287.817150px;}
.y22a{bottom:288.016650px;}
.y202{bottom:288.896700px;}
.y165{bottom:289.989300px;}
.y36{bottom:293.679150px;}
.yff{bottom:297.459150px;}
.y7b{bottom:297.465150px;}
.y132{bottom:297.466500px;}
.y18e{bottom:297.487500px;}
.y172{bottom:298.491300px;}
.y26d{bottom:302.817150px;}
.y229{bottom:303.016650px;}
.y201{bottom:306.187800px;}
.y164{bottom:306.530400px;}
.ye2{bottom:311.502000px;}
.y35{bottom:314.679150px;}
.y171{bottom:316.491300px;}
.y26c{bottom:317.817150px;}
.y228{bottom:318.016650px;}
.yfe{bottom:318.459150px;}
.y7a{bottom:318.465150px;}
.y18d{bottom:318.487500px;}
.y163{bottom:323.071350px;}
.y200{bottom:323.478750px;}
.ye1{bottom:332.502000px;}
.y26b{bottom:332.817150px;}
.y227{bottom:333.016650px;}
.y170{bottom:334.491300px;}
.y34{bottom:335.679150px;}
.yfd{bottom:339.459150px;}
.y79{bottom:339.465150px;}
.y131{bottom:339.466500px;}
.y18c{bottom:339.487500px;}
.y162{bottom:340.623000px;}
.y1ff{bottom:340.769850px;}
.y26a{bottom:347.817150px;}
.y226{bottom:348.016650px;}
.ye0{bottom:353.502000px;}
.y33{bottom:356.679150px;}
.y161{bottom:357.163950px;}
.y1fe{bottom:358.060800px;}
.y78{bottom:360.465150px;}
.y130{bottom:360.466500px;}
.y18b{bottom:360.487500px;}
.y269{bottom:362.817150px;}
.y225{bottom:363.016650px;}
.yf5{bottom:369.835500px;}
.ydf{bottom:374.502000px;}
.y1fd{bottom:374.976900px;}
.y160{bottom:377.455050px;}
.y32{bottom:377.679150px;}
.y268{bottom:377.817150px;}
.y224{bottom:378.016650px;}
.y77{bottom:381.465150px;}
.y12f{bottom:381.466500px;}
.y18a{bottom:381.487500px;}
.yf4{bottom:384.835650px;}
.y267{bottom:392.817150px;}
.y223{bottom:393.016650px;}
.y1fc{bottom:395.267850px;}
.yde{bottom:395.502000px;}
.y31{bottom:398.679150px;}
.y1fb{bottom:399.058800px;}
.y95{bottom:402.465150px;}
.y12e{bottom:402.466500px;}
.y189{bottom:402.487500px;}
.y76{bottom:405.465150px;}
.y266{bottom:407.817150px;}
.y222{bottom:408.016650px;}
.y1fa{bottom:415.558800px;}
.ydd{bottom:416.502000px;}
.y30{bottom:419.679150px;}
.y265{bottom:422.817150px;}
.y221{bottom:423.016650px;}
.y7c{bottom:423.465000px;}
.y94{bottom:423.465150px;}
.y12d{bottom:423.466500px;}
.y188{bottom:423.487500px;}
.y15f{bottom:425.024850px;}
.ydc{bottom:437.502000px;}
.yf3{bottom:437.712000px;}
.y264{bottom:437.817150px;}
.y220{bottom:438.016650px;}
.y1f9{bottom:438.849900px;}
.y2f{bottom:440.679150px;}
.y75{bottom:444.465000px;}
.y93{bottom:444.465150px;}
.y12c{bottom:444.466500px;}
.y187{bottom:444.487500px;}
.y15e{bottom:446.024850px;}
.y19a{bottom:447.487500px;}
.y263{bottom:452.817150px;}
.y21f{bottom:453.016650px;}
.ydb{bottom:458.502000px;}
.yf2{bottom:458.712000px;}
.y2e{bottom:461.679150px;}
.y1bb{bottom:462.518550px;}
.y74{bottom:465.465000px;}
.y92{bottom:465.465150px;}
.y186{bottom:465.487500px;}
.y15d{bottom:467.024850px;}
.y262{bottom:467.817150px;}
.y21e{bottom:468.016650px;}
.yf1{bottom:479.712000px;}
.y2d{bottom:482.679150px;}
.y261{bottom:482.817150px;}
.y21d{bottom:483.016650px;}
.y1ba{bottom:483.518550px;}
.y73{bottom:486.465000px;}
.y91{bottom:486.465150px;}
.y12b{bottom:486.466500px;}
.y185{bottom:486.487500px;}
.y1f3{bottom:493.432650px;}
.yda{bottom:496.975500px;}
.y260{bottom:497.817150px;}
.y21c{bottom:498.016650px;}
.yf0{bottom:500.712000px;}
.y2c{bottom:503.679150px;}
.y1b9{bottom:504.518550px;}
.y15c{bottom:506.024850px;}
.y72{bottom:507.465000px;}
.y90{bottom:507.465150px;}
.y12a{bottom:507.466500px;}
.y184{bottom:507.487500px;}
.y25f{bottom:512.817150px;}
.y21b{bottom:513.016650px;}
.y1f2{bottom:514.432650px;}
.yef{bottom:521.712000px;}
.y1b8{bottom:525.518550px;}
.yd3{bottom:526.225500px;}
.y15b{bottom:527.024850px;}
.y25e{bottom:527.817150px;}
.y21a{bottom:528.016650px;}
.y71{bottom:528.465000px;}
.y8f{bottom:528.465150px;}
.y129{bottom:528.466500px;}
.y183{bottom:528.487500px;}
.y1f1{bottom:535.432650px;}
.y25d{bottom:542.817150px;}
.y219{bottom:543.016650px;}
.yd2{bottom:543.475500px;}
.y1b7{bottom:546.518550px;}
.y15a{bottom:548.024850px;}
.y2b{bottom:549.429150px;}
.y70{bottom:549.465000px;}
.y9f{bottom:549.465150px;}
.y128{bottom:549.466500px;}
.y182{bottom:549.487500px;}
.y1f0{bottom:556.432650px;}
.yec{bottom:556.588500px;}
.y25c{bottom:557.817150px;}
.y218{bottom:558.016650px;}
.yeb{bottom:567.088650px;}
.y1b6{bottom:567.518550px;}
.y2a{bottom:568.929150px;}
.y159{bottom:569.024850px;}
.y6f{bottom:570.465000px;}
.y8e{bottom:570.465150px;}
.y127{bottom:570.466500px;}
.y181{bottom:570.487500px;}
.y25b{bottom:572.817150px;}
.y217{bottom:573.016650px;}
.y1ef{bottom:577.432650px;}
.yd0{bottom:583.225500px;}
.y1d{bottom:586.863000px;}
.y25a{bottom:587.817150px;}
.y216{bottom:588.016650px;}
.y29{bottom:588.429150px;}
.y1b5{bottom:588.518550px;}
.ycf{bottom:590.725500px;}
.y6e{bottom:591.465000px;}
.y8d{bottom:591.465150px;}
.y126{bottom:591.466500px;}
.y180{bottom:591.487500px;}
.y1ee{bottom:598.432650px;}
.y1c{bottom:601.113000px;}
.y259{bottom:602.817150px;}
.y215{bottom:603.016650px;}
.y28{bottom:607.929150px;}
.y1b4{bottom:609.518550px;}
.y158{bottom:611.024850px;}
.y6d{bottom:612.465000px;}
.y8c{bottom:612.465150px;}
.y125{bottom:612.466500px;}
.y199{bottom:612.487500px;}
.y1b{bottom:615.363000px;}
.y17f{bottom:615.487500px;}
.y258{bottom:617.817150px;}
.y214{bottom:618.016650px;}
.y1ed{bottom:619.432650px;}
.yce{bottom:623.725500px;}
.y27{bottom:627.429150px;}
.y1a{bottom:629.613000px;}
.y1b3{bottom:630.518550px;}
.y157{bottom:632.024850px;}
.y257{bottom:632.817150px;}
.y6c{bottom:633.465000px;}
.y8b{bottom:633.465150px;}
.y124{bottom:633.466500px;}
.y198{bottom:633.487500px;}
.y1ec{bottom:640.432650px;}
.y19{bottom:643.863000px;}
.ycd{bottom:644.725500px;}
.y26{bottom:646.929150px;}
.y256{bottom:647.817150px;}
.y1b2{bottom:651.518550px;}
.y156{bottom:653.024850px;}
.y6b{bottom:654.465000px;}
.y8a{bottom:654.465150px;}
.y123{bottom:654.466500px;}
.y17e{bottom:654.487500px;}
.y18{bottom:658.113000px;}
.y1eb{bottom:661.432650px;}
.y255{bottom:662.817150px;}
.y25{bottom:666.429150px;}
.y213{bottom:666.633150px;}
.ycc{bottom:667.971000px;}
.y17{bottom:672.363000px;}
.y155{bottom:674.024850px;}
.y6a{bottom:675.465000px;}
.y89{bottom:675.465150px;}
.y122{bottom:675.466500px;}
.ycb{bottom:675.471150px;}
.y17d{bottom:675.487500px;}
.y254{bottom:677.817150px;}
.y1f8{bottom:682.432650px;}
.y24{bottom:685.929150px;}
.y16{bottom:686.613000px;}
.y212{bottom:687.633150px;}
.y253{bottom:692.817150px;}
.y154{bottom:695.024850px;}
.y69{bottom:696.465000px;}
.y88{bottom:696.465150px;}
.y121{bottom:696.466500px;}
.y15{bottom:700.863000px;}
.y1d2{bottom:701.363700px;}
.y1f7{bottom:703.432650px;}
.y23{bottom:705.429150px;}
.y252{bottom:707.817150px;}
.yca{bottom:713.716500px;}
.y1d1{bottom:714.863700px;}
.y68{bottom:717.465000px;}
.y9e{bottom:717.465150px;}
.y120{bottom:717.466500px;}
.y14{bottom:719.109000px;}
.y251{bottom:722.817150px;}
.y1f6{bottom:724.432650px;}
.y22{bottom:724.929150px;}
.y1d0{bottom:728.363700px;}
.y1b1{bottom:731.486700px;}
.y211{bottom:734.049150px;}
.yc9{bottom:734.716500px;}
.y153{bottom:737.024850px;}
.y250{bottom:737.817150px;}
.y67{bottom:738.465000px;}
.y87{bottom:738.465150px;}
.y11f{bottom:738.466500px;}
.y13{bottom:739.863000px;}
.y21{bottom:744.429150px;}
.y1b0{bottom:744.986700px;}
.y1f5{bottom:745.432650px;}
.y1cf{bottom:747.618300px;}
.y24f{bottom:752.817150px;}
.y210{bottom:755.049150px;}
.yc8{bottom:755.716500px;}
.y152{bottom:758.024850px;}
.y1af{bottom:758.486700px;}
.y66{bottom:759.465000px;}
.y86{bottom:759.465150px;}
.y11e{bottom:759.466500px;}
.y12{bottom:760.863000px;}
.y20{bottom:763.929150px;}
.y1ce{bottom:764.159400px;}
.y1f4{bottom:766.432650px;}
.y24e{bottom:767.817150px;}
.y1ae{bottom:771.986700px;}
.y20f{bottom:776.049150px;}
.yc7{bottom:776.716500px;}
.y151{bottom:779.024850px;}
.y65{bottom:780.465150px;}
.y11d{bottom:780.466500px;}
.y1cd{bottom:780.700350px;}
.y11{bottom:781.863000px;}
.y24d{bottom:782.817150px;}
.y1f{bottom:783.429150px;}
.y1ad{bottom:785.486700px;}
.y20e{bottom:797.049150px;}
.y1cc{bottom:797.241450px;}
.yc6{bottom:797.716500px;}
.y24c{bottom:797.817150px;}
.y150{bottom:800.024850px;}
.y64{bottom:801.465150px;}
.y11c{bottom:801.466500px;}
.y10{bottom:802.863000px;}
.y1e{bottom:802.929150px;}
.y1ac{bottom:804.741450px;}
.y24b{bottom:812.817150px;}
.y1cb{bottom:813.782400px;}
.y20d{bottom:818.049150px;}
.yc5{bottom:818.716500px;}
.y14f{bottom:821.024850px;}
.y1ab{bottom:821.282400px;}
.y63{bottom:822.465150px;}
.y11b{bottom:822.466500px;}
.y24a{bottom:827.817150px;}
.y1ca{bottom:830.323500px;}
.y1aa{bottom:837.823500px;}
.y20c{bottom:839.049150px;}
.yc4{bottom:839.716500px;}
.y51{bottom:842.013000px;}
.y14e{bottom:842.024850px;}
.y249{bottom:842.817150px;}
.y62{bottom:843.465150px;}
.y11a{bottom:843.466500px;}
.y1c9{bottom:846.864450px;}
.y1c8{bottom:846.905400px;}
.y1a9{bottom:854.364450px;}
.y4d{bottom:856.725000px;}
.y248{bottom:857.817150px;}
.y20b{bottom:860.049150px;}
.yc3{bottom:860.716500px;}
.y14d{bottom:863.024850px;}
.y1c7{bottom:863.405400px;}
.y61{bottom:864.465150px;}
.y1a8{bottom:870.905400px;}
.y247{bottom:872.817150px;}
.y1c6{bottom:879.946500px;}
.y20a{bottom:881.049150px;}
.y60{bottom:885.465150px;}
.y119{bottom:885.466500px;}
.y1a7{bottom:887.446500px;}
.y246{bottom:887.817150px;}
.ybf{bottom:892.216500px;}
.y1c5{bottom:896.487450px;}
.y143{bottom:899.025000px;}
.ybe{bottom:902.716500px;}
.y245{bottom:902.817150px;}
.y1a6{bottom:903.987450px;}
.y5f{bottom:906.465150px;}
.y118{bottom:906.466500px;}
.y1c4{bottom:913.028550px;}
.y14c{bottom:915.524850px;}
.y244{bottom:917.817150px;}
.y1a5{bottom:920.528550px;}
.y5e{bottom:927.465150px;}
.y117{bottom:927.466500px;}
.yf{bottom:927.477000px;}
.y1c3{bottom:929.569500px;}
.ybd{bottom:931.216500px;}
.y243{bottom:932.817150px;}
.y1a4{bottom:937.069500px;}
.y1c2{bottom:946.110600px;}
.y242{bottom:947.817150px;}
.y5d{bottom:948.465150px;}
.y116{bottom:948.466500px;}
.ybc{bottom:952.216500px;}
.y1a3{bottom:953.610600px;}
.y111{bottom:960.916500px;}
.y1c1{bottom:962.651550px;}
.y241{bottom:962.817150px;}
.y5c{bottom:969.465150px;}
.y110{bottom:969.466500px;}
.ye{bottom:969.477000px;}
.y142{bottom:969.524850px;}
.y1a2{bottom:970.151550px;}
.ybb{bottom:973.216500px;}
.y240{bottom:977.817150px;}
.y1c0{bottom:979.192500px;}
.y1bf{bottom:979.233600px;}
.y1a1{bottom:986.692500px;}
.y5b{bottom:990.465150px;}
.y141{bottom:990.524850px;}
.y23f{bottom:992.817150px;}
.yba{bottom:994.216500px;}
.y1be{bottom:995.733600px;}
.y1a0{bottom:1003.233600px;}
.y23e{bottom:1007.817150px;}
.y10a{bottom:1009.210500px;}
.y5a{bottom:1011.465150px;}
.yd{bottom:1011.477000px;}
.y140{bottom:1011.524850px;}
.y1bd{bottom:1016.024550px;}
.y19f{bottom:1019.774550px;}
.y23d{bottom:1022.817150px;}
.y109{bottom:1024.210500px;}
.y59{bottom:1032.465150px;}
.y13f{bottom:1032.524850px;}
.yb9{bottom:1032.690150px;}
.y19e{bottom:1036.315650px;}
.y23c{bottom:1037.817150px;}
.y1bc{bottom:1040.106600px;}
.y9{bottom:1051.861200px;}
.y23b{bottom:1052.817150px;}
.y58{bottom:1053.465150px;}
.y13e{bottom:1053.524850px;}
.yb8{bottom:1053.690150px;}
.yb{bottom:1056.291750px;}
.y19d{bottom:1056.606600px;}
.y23a{bottom:1067.817150px;}
.y57{bottom:1074.465150px;}
.y13d{bottom:1074.524850px;}
.yb7{bottom:1074.690150px;}
.y19c{bottom:1079.897700px;}
.y4c{bottom:1081.392000px;}
.y239{bottom:1082.817150px;}
.ya{bottom:1089.735150px;}
.y56{bottom:1095.465150px;}
.y13c{bottom:1095.524850px;}
.yb6{bottom:1095.690150px;}
.y4b{bottom:1096.392000px;}
.y238{bottom:1097.817150px;}
.y19b{bottom:1097.897700px;}
.y6{bottom:1107.795150px;}
.y4a{bottom:1111.392000px;}
.y49{bottom:1126.392000px;}
.y53{bottom:1133.730150px;}
.y55{bottom:1133.733900px;}
.y48{bottom:1141.392000px;}
.y47{bottom:1156.392000px;}
.y46{bottom:1171.392000px;}
.h17{height:13.500000px;}
.h2d{height:21.000000px;}
.h20{height:22.498500px;}
.h9{height:22.500000px;}
.h23{height:23.610375px;}
.h22{height:24.000000px;}
.h28{height:24.203250px;}
.h26{height:24.831000px;}
.h2a{height:25.500000px;}
.h1{height:26.208000px;}
.hc{height:26.414438px;}
.h4{height:26.499023px;}
.h7{height:28.080000px;}
.h30{height:28.500000px;}
.h32{height:31.500000px;}
.h8{height:31.798828px;}
.h33{height:32.294250px;}
.h3b{height:33.312000px;}
.h14{height:34.176000px;}
.h37{height:34.968750px;}
.hd{height:36.000000px;}
.h18{height:37.098633px;}
.h16{height:37.098783px;}
.h15{height:37.132500px;}
.h19{height:37.440000px;}
.hf{height:38.448000px;}
.he{height:40.500000px;}
.h24{height:40.620000px;}
.h2b{height:41.640000px;}
.h2{height:42.398438px;}
.h11{height:42.720000px;}
.h38{height:43.681641px;}
.h13{height:44.448000px;}
.h1e{height:44.885160px;}
.h12{height:44.885760px;}
.h2c{height:44.886360px;}
.h1a{height:45.000000px;}
.h34{height:45.001500px;}
.h1f{height:45.936774px;}
.h21{height:47.035309px;}
.h1d{height:47.698242px;}
.h35{height:52.169250px;}
.h39{height:52.417969px;}
.h6{height:52.998047px;}
.h3a{height:54.000000px;}
.h1b{height:55.560000px;}
.h3{height:56.160000px;}
.hb{height:58.297852px;}
.h10{height:63.000000px;}
.h27{height:68.079000px;}
.h1c{height:74.197266px;}
.h29{height:83.340000px;}
.h5{height:86.104800px;}
.h2f{height:87.152262px;}
.h25{height:89.040000px;}
.h31{height:90.451680px;}
.h2e{height:107.520000px;}
.ha{height:127.195312px;}
.h36{height:247.569000px;}
.h0{height:1188.000000px;}
.wc{width:73.501500px;}
.w4{width:76.719000px;}
.w3{width:82.501500px;}
.w7{width:91.500000px;}
.w5{width:100.500000px;}
.w9{width:123.000000px;}
.w8{width:129.000000px;}
.wa{width:133.498500px;}
.wb{width:147.000000px;}
.w2{width:198.000000px;}
.w6{width:241.498500px;}
.wd{width:327.001500px;}
.w1{width:505.500000px;}
.we{width:695.922000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1f{left:2.062500px;}
.x3e{left:3.234300px;}
.x14{left:5.109450px;}
.x1c{left:6.464400px;}
.x28{left:10.687500px;}
.x20{left:13.593750px;}
.x19{left:14.855100px;}
.x2b{left:19.078200px;}
.x46{left:20.343019px;}
.x59{left:21.483600px;}
.x1b{left:26.630100px;}
.x58{left:28.155600px;}
.x3b{left:29.812500px;}
.x2c{left:31.078200px;}
.x1a{left:34.595100px;}
.x21{left:37.265700px;}
.x2d{left:38.953200px;}
.x25{left:48.328200px;}
.x41{left:51.796800px;}
.x2e{left:54.281250px;}
.x15{left:59.765700px;}
.x38{left:61.687500px;}
.x40{left:62.718600px;}
.x24{left:66.002813px;}
.x4d{left:68.589450px;}
.x23{left:74.110481px;}
.xc{left:80.775000px;}
.x22{left:86.953200px;}
.x42{left:89.812500px;}
.x36{left:98.190000px;}
.x50{left:99.603750px;}
.xd{left:102.034800px;}
.x3f{left:103.078050px;}
.x3{left:106.275000px;}
.x33{left:111.656250px;}
.x39{left:118.125000px;}
.x6{left:122.925000px;}
.x48{left:127.534800px;}
.x49{left:131.015700px;}
.xa{left:134.775000px;}
.x27{left:137.437500px;}
.x45{left:146.212500px;}
.x57{left:164.460900px;}
.x4f{left:170.343750px;}
.x35{left:173.062500px;}
.x5d{left:180.653250px;}
.x32{left:193.687500px;}
.x4c{left:201.288825px;}
.x29{left:207.522000px;}
.x43{left:210.187500px;}
.x30{left:212.437500px;}
.x47{left:219.712050px;}
.x55{left:222.571650px;}
.x37{left:225.270000px;}
.x4b{left:228.848794px;}
.x4a{left:230.304825px;}
.x2a{left:231.472406px;}
.x5c{left:239.930850px;}
.x31{left:303.937500px;}
.x56{left:307.156950px;}
.x4e{left:313.699669px;}
.x34{left:322.687500px;}
.x2{left:331.725000px;}
.x7{left:352.984800px;}
.x44{left:357.187500px;}
.x5b{left:373.259850px;}
.x2f{left:378.937500px;}
.x5a{left:384.568200px;}
.x1{left:394.756200px;}
.xe{left:456.900000px;}
.xf{left:478.159950px;}
.x12{left:482.094150px;}
.x52{left:494.400000px;}
.x17{left:503.400000px;}
.x53{left:506.400000px;}
.x18{left:525.678000px;}
.x54{left:534.864900px;}
.x3d{left:567.562500px;}
.x3a{left:572.812500px;}
.x9{left:584.140950px;}
.x1d{left:602.265450px;}
.x1e{left:609.562500px;}
.x13{left:618.562500px;}
.x5{left:635.771700px;}
.x4{left:642.415350px;}
.x3c{left:695.812500px;}
.x16{left:701.062500px;}
.x26{left:710.062500px;}
.x5e{left:722.134350px;}
.x10{left:737.154600px;}
.xb{left:750.297900px;}
.x11{left:804.119550px;}
.x51{left:809.400000px;}
.x8{left:945.000000px;}
@media print{
.vd{vertical-align:-41.173333pt;}
.ve{vertical-align:-35.676333pt;}
.v8{vertical-align:-23.500267pt;}
.v3{vertical-align:-19.536000pt;}
.vb{vertical-align:-18.166933pt;}
.v4{vertical-align:-14.208000pt;}
.vf{vertical-align:-3.593067pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:11.321067pt;}
.v5{vertical-align:14.208000pt;}
.v6{vertical-align:17.760000pt;}
.v2{vertical-align:19.536000pt;}
.va{vertical-align:23.501333pt;}
.v1{vertical-align:36.537600pt;}
.v9{vertical-align:41.173333pt;}
.vc{vertical-align:46.186667pt;}
.ls44{letter-spacing:-6.080000pt;}
.ls53{letter-spacing:-4.106667pt;}
.ls95{letter-spacing:-2.346667pt;}
.ls69{letter-spacing:-2.133333pt;}
.ls7f{letter-spacing:-1.333333pt;}
.ls20{letter-spacing:-1.066667pt;}
.ls54{letter-spacing:-0.853333pt;}
.ls52{letter-spacing:-0.746667pt;}
.ls55{letter-spacing:-0.693333pt;}
.ls90{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.586667pt;}
.lsae{letter-spacing:-0.554667pt;}
.ls1a{letter-spacing:-0.533333pt;}
.lsa4{letter-spacing:-0.512000pt;}
.ls1c{letter-spacing:-0.480000pt;}
.ls30{letter-spacing:-0.426667pt;}
.lsa{letter-spacing:-0.384000pt;}
.ls17{letter-spacing:-0.373333pt;}
.ls19{letter-spacing:-0.342027pt;}
.lsa5{letter-spacing:-0.341333pt;}
.ls1f{letter-spacing:-0.320000pt;}
.ls21{letter-spacing:-0.310933pt;}
.lsa2{letter-spacing:-0.298667pt;}
.ls1d{letter-spacing:-0.279840pt;}
.ls14{letter-spacing:-0.266667pt;}
.ls67{letter-spacing:-0.248747pt;}
.ls31{letter-spacing:-0.213333pt;}
.ls80{letter-spacing:-0.186560pt;}
.lsa3{letter-spacing:-0.170667pt;}
.ls1e{letter-spacing:-0.160000pt;}
.ls15{letter-spacing:-0.155467pt;}
.lsad{letter-spacing:-0.128000pt;}
.ls32{letter-spacing:-0.124373pt;}
.lsac{letter-spacing:-0.085333pt;}
.ls81{letter-spacing:-0.053333pt;}
.lsab{letter-spacing:-0.042667pt;}
.ls98{letter-spacing:-0.031093pt;}
.lsb{letter-spacing:0.000000pt;}
.ls94{letter-spacing:0.009067pt;}
.ls29{letter-spacing:0.017600pt;}
.ls91{letter-spacing:0.031093pt;}
.ls9a{letter-spacing:0.042667pt;}
.lsf{letter-spacing:0.053333pt;}
.ls9f{letter-spacing:0.085333pt;}
.ls75{letter-spacing:0.093333pt;}
.lsd{letter-spacing:0.106667pt;}
.ls16{letter-spacing:0.124373pt;}
.lsa9{letter-spacing:0.128000pt;}
.ls68{letter-spacing:0.155467pt;}
.lse{letter-spacing:0.160000pt;}
.lsaa{letter-spacing:0.170667pt;}
.ls3a{letter-spacing:0.186560pt;}
.ls8{letter-spacing:0.213333pt;}
.lsa7{letter-spacing:0.256000pt;}
.ls40{letter-spacing:0.266133pt;}
.ls3f{letter-spacing:0.266667pt;}
.ls1b{letter-spacing:0.310933pt;}
.ls39{letter-spacing:0.320000pt;}
.lsa1{letter-spacing:0.341333pt;}
.ls12{letter-spacing:0.373333pt;}
.lsc{letter-spacing:0.426667pt;}
.ls9e{letter-spacing:0.469333pt;}
.ls24{letter-spacing:0.480000pt;}
.ls92{letter-spacing:0.525333pt;}
.ls7{letter-spacing:0.528000pt;}
.ls10{letter-spacing:0.533333pt;}
.ls9b{letter-spacing:0.554667pt;}
.ls9{letter-spacing:0.586667pt;}
.ls38{letter-spacing:0.605333pt;}
.ls37{letter-spacing:0.605867pt;}
.ls5{letter-spacing:0.624000pt;}
.ls8d{letter-spacing:0.640000pt;}
.ls27{letter-spacing:0.693333pt;}
.ls28{letter-spacing:0.705600pt;}
.ls22{letter-spacing:0.746667pt;}
.lsa0{letter-spacing:0.810667pt;}
.ls3e{letter-spacing:0.853333pt;}
.lsa6{letter-spacing:0.896000pt;}
.ls23{letter-spacing:0.906667pt;}
.ls9c{letter-spacing:0.938667pt;}
.ls8f{letter-spacing:0.960000pt;}
.ls9d{letter-spacing:0.981333pt;}
.ls26{letter-spacing:1.013333pt;}
.ls3{letter-spacing:1.036800pt;}
.ls97{letter-spacing:1.280000pt;}
.ls96{letter-spacing:1.333333pt;}
.ls2{letter-spacing:1.436512pt;}
.ls11{letter-spacing:1.706667pt;}
.lsa8{letter-spacing:1.749333pt;}
.ls4{letter-spacing:1.792000pt;}
.ls8e{letter-spacing:1.794667pt;}
.ls25{letter-spacing:2.080000pt;}
.ls1{letter-spacing:2.464000pt;}
.ls41{letter-spacing:2.693333pt;}
.ls93{letter-spacing:2.944000pt;}
.ls3b{letter-spacing:3.840000pt;}
.ls2f{letter-spacing:4.329933pt;}
.ls78{letter-spacing:5.053000pt;}
.ls6{letter-spacing:6.551467pt;}
.ls79{letter-spacing:7.182600pt;}
.ls77{letter-spacing:8.373333pt;}
.ls99{letter-spacing:10.666667pt;}
.ls0{letter-spacing:11.093333pt;}
.ls6a{letter-spacing:14.186667pt;}
.ls5d{letter-spacing:17.546667pt;}
.ls59{letter-spacing:23.840000pt;}
.ls7d{letter-spacing:23.946667pt;}
.ls5e{letter-spacing:26.346667pt;}
.ls85{letter-spacing:27.253333pt;}
.ls5a{letter-spacing:29.493333pt;}
.ls58{letter-spacing:29.760000pt;}
.ls72{letter-spacing:30.560000pt;}
.ls87{letter-spacing:30.613333pt;}
.ls7e{letter-spacing:31.713000pt;}
.ls62{letter-spacing:31.733333pt;}
.ls86{letter-spacing:35.946667pt;}
.ls71{letter-spacing:40.533333pt;}
.ls34{letter-spacing:42.080000pt;}
.ls70{letter-spacing:42.400000pt;}
.ls5c{letter-spacing:45.386667pt;}
.ls6c{letter-spacing:48.320000pt;}
.ls6d{letter-spacing:50.654000pt;}
.ls2a{letter-spacing:50.880000pt;}
.ls8a{letter-spacing:53.878000pt;}
.ls6e{letter-spacing:55.360000pt;}
.ls8b{letter-spacing:58.993000pt;}
.ls47{letter-spacing:59.520000pt;}
.ls83{letter-spacing:63.680000pt;}
.ls4c{letter-spacing:64.746667pt;}
.ls88{letter-spacing:66.986667pt;}
.ls33{letter-spacing:68.320000pt;}
.ls2c{letter-spacing:69.813333pt;}
.ls2b{letter-spacing:84.878000pt;}
.ls6f{letter-spacing:85.493333pt;}
.ls35{letter-spacing:86.560000pt;}
.ls57{letter-spacing:101.493333pt;}
.ls60{letter-spacing:101.600000pt;}
.ls4d{letter-spacing:101.706667pt;}
.ls76{letter-spacing:104.078600pt;}
.ls7c{letter-spacing:112.853333pt;}
.ls45{letter-spacing:119.146667pt;}
.ls4a{letter-spacing:121.210000pt;}
.ls61{letter-spacing:122.080000pt;}
.ls4e{letter-spacing:126.856126pt;}
.ls4b{letter-spacing:127.040000pt;}
.ls43{letter-spacing:130.173333pt;}
.ls74{letter-spacing:130.173867pt;}
.ls73{letter-spacing:131.306667pt;}
.ls48{letter-spacing:134.230000pt;}
.ls7a{letter-spacing:134.240000pt;}
.ls51{letter-spacing:137.013333pt;}
.ls50{letter-spacing:140.678000pt;}
.ls36{letter-spacing:141.066667pt;}
.ls42{letter-spacing:142.133333pt;}
.ls66{letter-spacing:156.213333pt;}
.ls3d{letter-spacing:159.239114pt;}
.ls5f{letter-spacing:161.813333pt;}
.ls65{letter-spacing:168.533333pt;}
.ls2d{letter-spacing:169.386667pt;}
.ls2e{letter-spacing:170.346667pt;}
.ls56{letter-spacing:175.680000pt;}
.ls5b{letter-spacing:192.000000pt;}
.ls7b{letter-spacing:202.453333pt;}
.ls13{letter-spacing:212.089067pt;}
.ls49{letter-spacing:212.536000pt;}
.ls4f{letter-spacing:212.701081pt;}
.ls46{letter-spacing:242.826667pt;}
.ls82{letter-spacing:280.053333pt;}
.ls89{letter-spacing:399.249000pt;}
.ls6b{letter-spacing:407.651200pt;}
.ls63{letter-spacing:425.813333pt;}
.ls3c{letter-spacing:431.360000pt;}
.ls64{letter-spacing:436.320000pt;}
.ls8c{letter-spacing:464.533333pt;}
.ls84{letter-spacing:519.360000pt;}
.ws48{word-spacing:-519.413333pt;}
.ws36{word-spacing:-489.653333pt;}
.ws35{word-spacing:-425.866667pt;}
.ws4c{word-spacing:-399.280000pt;}
.ws46{word-spacing:-280.106667pt;}
.ws2d{word-spacing:-245.333333pt;}
.ws20{word-spacing:-242.880000pt;}
.ws37{word-spacing:-221.866667pt;}
.ws22{word-spacing:-212.567000pt;}
.ws27{word-spacing:-175.733333pt;}
.ws23{word-spacing:-168.853333pt;}
.ws30{word-spacing:-161.866667pt;}
.ws21{word-spacing:-118.451000pt;}
.ws1f{word-spacing:-103.360000pt;}
.ws31{word-spacing:-101.653333pt;}
.ws28{word-spacing:-101.546667pt;}
.ws2e{word-spacing:-98.720000pt;}
.ws3e{word-spacing:-85.546667pt;}
.ws4e{word-spacing:-80.000000pt;}
.ws33{word-spacing:-76.480000pt;}
.ws25{word-spacing:-70.226852pt;}
.ws18{word-spacing:-68.373333pt;}
.ws47{word-spacing:-63.733333pt;}
.ws1b{word-spacing:-58.559000pt;}
.ws3d{word-spacing:-55.413333pt;}
.ws1d{word-spacing:-53.920000pt;}
.ws17{word-spacing:-53.333333pt;}
.ws1e{word-spacing:-47.253333pt;}
.ws1c{word-spacing:-44.373333pt;}
.ws7{word-spacing:-42.666667pt;}
.ws1a{word-spacing:-42.133333pt;}
.ws34{word-spacing:-31.786667pt;}
.ws24{word-spacing:-31.466667pt;}
.ws41{word-spacing:-30.613333pt;}
.ws49{word-spacing:-27.306667pt;}
.ws4d{word-spacing:-25.730000pt;}
.ws5{word-spacing:-20.757333pt;}
.wsd{word-spacing:-15.610667pt;}
.ws6f{word-spacing:-15.360000pt;}
.ws4b{word-spacing:-14.133333pt;}
.ws3{word-spacing:-13.968000pt;}
.ws4{word-spacing:-13.344000pt;}
.ws16{word-spacing:-13.333333pt;}
.ws14{word-spacing:-13.120000pt;}
.ws44{word-spacing:-13.013333pt;}
.ws38{word-spacing:-12.906667pt;}
.wsf{word-spacing:-12.853333pt;}
.ws2{word-spacing:-10.944853pt;}
.ws3f{word-spacing:-10.880000pt;}
.ws6e{word-spacing:-10.666667pt;}
.ws13{word-spacing:-10.378667pt;}
.ws70{word-spacing:-10.282667pt;}
.ws9{word-spacing:-10.240000pt;}
.ws2b{word-spacing:-9.600000pt;}
.wse{word-spacing:-8.084267pt;}
.ws3a{word-spacing:-7.928800pt;}
.wsb{word-spacing:-7.897707pt;}
.ws53{word-spacing:-7.804427pt;}
.ws6{word-spacing:-7.773333pt;}
.ws60{word-spacing:-7.742240pt;}
.ws0{word-spacing:-7.680000pt;}
.ws15{word-spacing:-7.648960pt;}
.wsa{word-spacing:-7.617867pt;}
.ws45{word-spacing:-7.586773pt;}
.ws39{word-spacing:-7.524587pt;}
.ws10{word-spacing:-7.493493pt;}
.ws42{word-spacing:-7.466667pt;}
.wsc{word-spacing:-7.431307pt;}
.ws1{word-spacing:-7.413333pt;}
.ws19{word-spacing:-0.053333pt;}
.ws4f{word-spacing:-0.042667pt;}
.ws3c{word-spacing:-0.031000pt;}
.ws8{word-spacing:0.000000pt;}
.ws29{word-spacing:0.213333pt;}
.ws3b{word-spacing:27.146667pt;}
.ws66{word-spacing:35.251200pt;}
.ws4a{word-spacing:39.466667pt;}
.ws65{word-spacing:42.376533pt;}
.ws5f{word-spacing:56.501333pt;}
.ws5e{word-spacing:57.173333pt;}
.ws5c{word-spacing:59.989333pt;}
.ws2a{word-spacing:72.000000pt;}
.ws58{word-spacing:73.778667pt;}
.ws61{word-spacing:74.984000pt;}
.ws50{word-spacing:75.139200pt;}
.ws69{word-spacing:75.741867pt;}
.ws2c{word-spacing:80.586667pt;}
.ws5a{word-spacing:81.706667pt;}
.ws5d{word-spacing:82.602667pt;}
.ws5b{word-spacing:84.565333pt;}
.ws59{word-spacing:91.720000pt;}
.ws6a{word-spacing:100.189867pt;}
.ws63{word-spacing:112.136533pt;}
.ws32{word-spacing:113.600000pt;}
.ws68{word-spacing:117.512533pt;}
.ws67{word-spacing:124.637867pt;}
.ws6d{word-spacing:134.835200pt;}
.ws51{word-spacing:147.587200pt;}
.ws55{word-spacing:156.585067pt;}
.ws64{word-spacing:158.387200pt;}
.ws62{word-spacing:165.469867pt;}
.ws6c{word-spacing:167.261867pt;}
.ws6b{word-spacing:176.605867pt;}
.ws52{word-spacing:180.013867pt;}
.ws26{word-spacing:181.066667pt;}
.ws56{word-spacing:189.011733pt;}
.ws54{word-spacing:196.836800pt;}
.ws11{word-spacing:200.227733pt;}
.ws40{word-spacing:257.440000pt;}
.ws43{word-spacing:306.080000pt;}
.ws57{word-spacing:312.485333pt;}
.ws2f{word-spacing:344.053333pt;}
.ws12{word-spacing:420.217067pt;}
._40{margin-left:-971.093333pt;}
._30{margin-left:-873.173333pt;}
._32{margin-left:-602.186667pt;}
._2f{margin-left:-553.760000pt;}
._3e{margin-left:-523.697600pt;}
._21{margin-left:-425.333333pt;}
._3a{margin-left:-384.800000pt;}
._3f{margin-left:-383.733333pt;}
._41{margin-left:-360.871000pt;}
._38{margin-left:-336.160000pt;}
._2a{margin-left:-316.213333pt;}
._31{margin-left:-264.000000pt;}
._35{margin-left:-253.717333pt;}
._2e{margin-left:-234.400000pt;}
._24{margin-left:-231.520000pt;}
._1f{margin-left:-222.826667pt;}
._26{margin-left:-221.546667pt;}
._34{margin-left:-219.108000pt;}
._20{margin-left:-182.683000pt;}
._29{margin-left:-181.493333pt;}
._23{margin-left:-156.693333pt;}
._42{margin-left:-154.000000pt;}
._1d{margin-left:-131.733333pt;}
._2c{margin-left:-109.013333pt;}
._28{margin-left:-106.080000pt;}
._2d{margin-left:-101.973333pt;}
._37{margin-left:-79.146667pt;}
._33{margin-left:-59.946667pt;}
._1c{margin-left:-37.493333pt;}
._3c{margin-left:-31.992000pt;}
._f{margin-left:-17.664000pt;}
._25{margin-left:-13.440000pt;}
._6{margin-left:-12.160000pt;}
._6d{margin-left:-10.666667pt;}
._6f{margin-left:-9.386667pt;}
._9{margin-left:-6.933333pt;}
._8{margin-left:-5.984000pt;}
._2{margin-left:-4.288000pt;}
._0{margin-left:-3.200000pt;}
._7{margin-left:-2.282667pt;}
._1{margin-left:-1.280000pt;}
._5{width:1.504000pt;}
._b{width:2.816000pt;}
._d{width:3.744000pt;}
._c{width:4.704000pt;}
._a{width:5.858133pt;}
._e{width:7.475200pt;}
._6e{width:9.600000pt;}
._44{width:10.848000pt;}
._3d{width:22.240000pt;}
._43{width:23.136000pt;}
._6b{width:53.488000pt;}
._6c{width:63.293333pt;}
._61{width:84.260267pt;}
._60{width:86.572267pt;}
._5e{width:89.238400pt;}
._5f{width:91.862400pt;}
._65{width:99.848000pt;}
._63{width:100.952000pt;}
._64{width:105.181333pt;}
._10{width:111.011733pt;}
._69{width:121.752000pt;}
._46{width:124.803200pt;}
._22{width:125.973333pt;}
._16{width:130.851733pt;}
._12{width:134.605867pt;}
._67{width:148.342400pt;}
._68{width:158.146667pt;}
._1a{width:172.579733pt;}
._62{width:183.203733pt;}
._45{width:201.219200pt;}
._48{width:207.685333pt;}
._49{width:209.935467pt;}
._13{width:212.089067pt;}
._4b{width:214.053333pt;}
._66{width:215.414400pt;}
._4a{width:217.573333pt;}
._4c{width:219.407467pt;}
._50{width:224.698667pt;}
._47{width:236.201067pt;}
._58{width:237.395733pt;}
._4f{width:253.498133pt;}
._14{width:266.062400pt;}
._5b{width:269.822400pt;}
._54{width:279.166400pt;}
._57{width:290.259733pt;}
._3b{width:293.973333pt;}
._39{width:317.973333pt;}
._5a{width:322.686400pt;}
._2b{width:325.973333pt;}
._5d{width:330.542933pt;}
._56{width:332.030400pt;}
._36{width:336.640000pt;}
._11{width:348.707733pt;}
._5c{width:359.276800pt;}
._4d{width:367.273067pt;}
._15{width:377.421867pt;}
._18{width:383.481067pt;}
._27{width:392.640000pt;}
._59{width:394.992000pt;}
._19{width:398.755200pt;}
._6a{width:401.799467pt;}
._1e{width:408.640000pt;}
._17{width:428.963733pt;}
._4e{width:489.242667pt;}
._55{width:510.576000pt;}
._53{width:520.019733pt;}
._51{width:524.414400pt;}
._52{width:531.909333pt;}
._1b{width:1053.917867pt;}
._3{width:1061.210133pt;}
._4{width:2309.737067pt;}
.fs8{font-size:24.874667pt;}
.fs3{font-size:26.666667pt;}
.fsf{font-size:31.000000pt;}
.fsb{font-size:31.093333pt;}
.fs0{font-size:32.000000pt;}
.fs7{font-size:34.202667pt;}
.fsd{font-size:37.333333pt;}
.fsc{font-size:37.333484pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fse{font-size:54.608750pt;}
.fs6{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fs10{font-size:80.000000pt;}
.fs11{font-size:86.826667pt;}
.fs5{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:2.558010pt;}
.ya9{bottom:3.333333pt;}
.y112{bottom:3.457800pt;}
.y114{bottom:3.458400pt;}
.y1ea{bottom:3.464667pt;}
.yb0{bottom:4.375067pt;}
.yc1{bottom:4.666800pt;}
.y52{bottom:5.551467pt;}
.yd9{bottom:5.708400pt;}
.y115{bottom:6.333467pt;}
.y4{bottom:6.424400pt;}
.ya4{bottom:6.666800pt;}
.ya3{bottom:6.670133pt;}
.yd7{bottom:6.880133pt;}
.ya2{bottom:7.083467pt;}
.y10d{bottom:7.457667pt;}
.yf8{bottom:7.457800pt;}
.yfc{bottom:7.458400pt;}
.yee{bottom:7.583467pt;}
.ya7{bottom:8.000000pt;}
.ya8{bottom:8.413333pt;}
.y10c{bottom:8.666667pt;}
.yf7{bottom:8.666800pt;}
.y146{bottom:8.790867pt;}
.yb2{bottom:8.791467pt;}
.yb3{bottom:8.792067pt;}
.yc0{bottom:9.333333pt;}
.yed{bottom:9.333467pt;}
.y145{bottom:9.999867pt;}
.y10f{bottom:10.333333pt;}
.yfa{bottom:10.333467pt;}
.yd1{bottom:11.083333pt;}
.y14b{bottom:11.666533pt;}
.yb5{bottom:11.666800pt;}
.yd8{bottom:12.333467pt;}
.y10b{bottom:13.333333pt;}
.yf6{bottom:13.333467pt;}
.yc2{bottom:13.749800pt;}
.y4f{bottom:14.558059pt;}
.y144{bottom:14.666533pt;}
.yae{bottom:14.666800pt;}
.y14a{bottom:14.668267pt;}
.y3{bottom:15.091067pt;}
.yd4{bottom:16.000133pt;}
.y113{bottom:18.252550pt;}
.y148{bottom:19.082867pt;}
.yb1{bottom:19.083467pt;}
.yc{bottom:20.155867pt;}
.yd5{bottom:20.416800pt;}
.yfb{bottom:22.041733pt;}
.y10e{bottom:22.252417pt;}
.yf9{bottom:22.252550pt;}
.y149{bottom:23.374933pt;}
.yaf{bottom:23.375067pt;}
.y147{bottom:23.585617pt;}
.yb4{bottom:23.586817pt;}
.y2{bottom:23.757733pt;}
.yd6{bottom:23.880133pt;}
.y4e{bottom:26.558107pt;}
.y1d6{bottom:29.423333pt;}
.y1{bottom:32.424400pt;}
.y8{bottom:33.853333pt;}
.y1d5{bottom:42.426000pt;}
.y54{bottom:42.987733pt;}
.y5{bottom:44.763600pt;}
.y7{bottom:47.593867pt;}
.y1e2{bottom:59.727333pt;}
.y1d7{bottom:64.495333pt;}
.y1de{bottom:75.794133pt;}
.y1e1{bottom:77.007333pt;}
.y27b{bottom:82.504133pt;}
.y237{bottom:82.681467pt;}
.y1d8{bottom:86.564667pt;}
.yad{bottom:91.630667pt;}
.y27e{bottom:93.167867pt;}
.y1e0{bottom:94.287333pt;}
.y1e9{bottom:95.543200pt;}
.y27a{bottom:95.837467pt;}
.y236{bottom:96.014800pt;}
.y108{bottom:96.408133pt;}
.y9d{bottom:96.413467pt;}
.y13b{bottom:96.414667pt;}
.y85{bottom:96.426667pt;}
.y197{bottom:96.433333pt;}
.yea{bottom:96.493467pt;}
.yac{bottom:106.297467pt;}
.y17c{bottom:108.426667pt;}
.y1d9{bottom:108.634000pt;}
.y283{bottom:109.170667pt;}
.y279{bottom:109.170800pt;}
.y235{bottom:109.348133pt;}
.y1e3{bottom:111.588667pt;}
.y45{bottom:111.708400pt;}
.y3e{bottom:111.714800pt;}
.y84{bottom:111.875200pt;}
.y107{bottom:115.074800pt;}
.y9c{bottom:115.080133pt;}
.y13a{bottom:115.081333pt;}
.y196{bottom:115.100000pt;}
.ye9{bottom:115.160133pt;}
.y282{bottom:119.837333pt;}
.y17b{bottom:120.426667pt;}
.y278{bottom:122.504133pt;}
.y234{bottom:122.681467pt;}
.y44{bottom:124.375067pt;}
.y16e{bottom:124.541867pt;}
.y83{bottom:126.578400pt;}
.y1e4{bottom:128.868667pt;}
.y3d{bottom:130.381467pt;}
.y281{bottom:130.504000pt;}
.y1da{bottom:130.703333pt;}
.y1d3{bottom:132.426667pt;}
.y106{bottom:133.741467pt;}
.y9b{bottom:133.746800pt;}
.y139{bottom:133.748000pt;}
.y195{bottom:133.766667pt;}
.ye8{bottom:133.826800pt;}
.y277{bottom:135.837467pt;}
.y233{bottom:136.014800pt;}
.y43{bottom:137.041733pt;}
.y17a{bottom:137.541867pt;}
.y16d{bottom:139.245067pt;}
.y280{bottom:141.170667pt;}
.y82{bottom:141.281467pt;}
.y1e5{bottom:146.148667pt;}
.y3c{bottom:149.048133pt;}
.y276{bottom:149.170800pt;}
.y232{bottom:149.348133pt;}
.y209{bottom:149.541867pt;}
.y42{bottom:149.708400pt;}
.y1d4{bottom:151.413333pt;}
.y27f{bottom:151.837333pt;}
.yab{bottom:152.005467pt;}
.y179{bottom:152.245067pt;}
.y105{bottom:152.408133pt;}
.y16f{bottom:152.413467pt;}
.y138{bottom:152.414667pt;}
.y194{bottom:152.433333pt;}
.y1db{bottom:152.772667pt;}
.y16c{bottom:153.948133pt;}
.y81{bottom:155.984667pt;}
.y41{bottom:162.375067pt;}
.y275{bottom:162.504133pt;}
.y231{bottom:162.681467pt;}
.y1e6{bottom:163.428667pt;}
.y208{bottom:164.578400pt;}
.y178{bottom:166.911733pt;}
.y3b{bottom:167.714800pt;}
.ye7{bottom:168.025333pt;}
.y16b{bottom:168.651333pt;}
.y27d{bottom:170.212000pt;}
.yaa{bottom:170.672133pt;}
.y80{bottom:170.687733pt;}
.y104{bottom:171.074800pt;}
.y9a{bottom:171.080133pt;}
.y137{bottom:171.081333pt;}
.y193{bottom:171.100000pt;}
.y1dc{bottom:174.842000pt;}
.y40{bottom:175.041600pt;}
.y274{bottom:175.837467pt;}
.y230{bottom:176.014800pt;}
.y207{bottom:179.948133pt;}
.y1e7{bottom:180.708667pt;}
.ya6{bottom:181.405333pt;}
.y177{bottom:181.614800pt;}
.y16a{bottom:183.354400pt;}
.y7f{bottom:185.390933pt;}
.y3a{bottom:186.381467pt;}
.ye6{bottom:186.692000pt;}
.y3f{bottom:187.708267pt;}
.y284{bottom:188.973467pt;}
.y273{bottom:189.170800pt;}
.ya5{bottom:189.338800pt;}
.y22f{bottom:189.348133pt;}
.y103{bottom:189.741467pt;}
.y99{bottom:189.746800pt;}
.y136{bottom:189.748000pt;}
.y192{bottom:189.766667pt;}
.y27c{bottom:193.293467pt;}
.y206{bottom:195.318000pt;}
.y176{bottom:196.281467pt;}
.y1dd{bottom:196.911333pt;}
.y1e8{bottom:197.988667pt;}
.y169{bottom:198.057600pt;}
.y272{bottom:202.504133pt;}
.y22e{bottom:202.681467pt;}
.y7e{bottom:203.427333pt;}
.y39{bottom:205.048133pt;}
.ye5{bottom:205.358667pt;}
.y1df{bottom:206.335600pt;}
.y102{bottom:208.408133pt;}
.y98{bottom:208.413467pt;}
.y135{bottom:208.414667pt;}
.y191{bottom:208.433333pt;}
.y205{bottom:210.687733pt;}
.y175{bottom:210.984667pt;}
.ya1{bottom:211.542667pt;}
.y168{bottom:212.760667pt;}
.y271{bottom:215.837467pt;}
.y22d{bottom:216.014800pt;}
.ya0{bottom:219.542800pt;}
.y38{bottom:223.714800pt;}
.ye4{bottom:224.025333pt;}
.y7d{bottom:224.130400pt;}
.y204{bottom:226.057600pt;}
.y174{bottom:226.586000pt;}
.y101{bottom:227.074800pt;}
.y97{bottom:227.080133pt;}
.y134{bottom:227.081333pt;}
.y190{bottom:227.100000pt;}
.y167{bottom:227.463733pt;}
.y270{bottom:229.170800pt;}
.y22c{bottom:229.348133pt;}
.y203{bottom:241.427333pt;}
.y166{bottom:242.166933pt;}
.y37{bottom:242.381467pt;}
.y26f{bottom:242.504133pt;}
.y22b{bottom:242.681467pt;}
.ye3{bottom:242.692000pt;}
.y173{bottom:244.622533pt;}
.y100{bottom:245.741467pt;}
.y96{bottom:245.746800pt;}
.y133{bottom:245.748000pt;}
.y18f{bottom:245.766667pt;}
.y26e{bottom:255.837467pt;}
.y22a{bottom:256.014800pt;}
.y202{bottom:256.797067pt;}
.y165{bottom:257.768267pt;}
.y36{bottom:261.048133pt;}
.yff{bottom:264.408133pt;}
.y7b{bottom:264.413467pt;}
.y132{bottom:264.414667pt;}
.y18e{bottom:264.433333pt;}
.y172{bottom:265.325600pt;}
.y26d{bottom:269.170800pt;}
.y229{bottom:269.348133pt;}
.y201{bottom:272.166933pt;}
.y164{bottom:272.471467pt;}
.ye2{bottom:276.890667pt;}
.y35{bottom:279.714800pt;}
.y171{bottom:281.325600pt;}
.y26c{bottom:282.504133pt;}
.y228{bottom:282.681467pt;}
.yfe{bottom:283.074800pt;}
.y7a{bottom:283.080133pt;}
.y18d{bottom:283.100000pt;}
.y163{bottom:287.174533pt;}
.y200{bottom:287.536667pt;}
.ye1{bottom:295.557333pt;}
.y26b{bottom:295.837467pt;}
.y227{bottom:296.014800pt;}
.y170{bottom:297.325600pt;}
.y34{bottom:298.381467pt;}
.yfd{bottom:301.741467pt;}
.y79{bottom:301.746800pt;}
.y131{bottom:301.748000pt;}
.y18c{bottom:301.766667pt;}
.y162{bottom:302.776000pt;}
.y1ff{bottom:302.906533pt;}
.y26a{bottom:309.170800pt;}
.y226{bottom:309.348133pt;}
.ye0{bottom:314.224000pt;}
.y33{bottom:317.048133pt;}
.y161{bottom:317.479067pt;}
.y1fe{bottom:318.276267pt;}
.y78{bottom:320.413467pt;}
.y130{bottom:320.414667pt;}
.y18b{bottom:320.433333pt;}
.y269{bottom:322.504133pt;}
.y225{bottom:322.681467pt;}
.yf5{bottom:328.742667pt;}
.ydf{bottom:332.890667pt;}
.y1fd{bottom:333.312800pt;}
.y160{bottom:335.515600pt;}
.y32{bottom:335.714800pt;}
.y268{bottom:335.837467pt;}
.y224{bottom:336.014800pt;}
.y77{bottom:339.080133pt;}
.y12f{bottom:339.081333pt;}
.y18a{bottom:339.100000pt;}
.yf4{bottom:342.076133pt;}
.y267{bottom:349.170800pt;}
.y223{bottom:349.348133pt;}
.y1fc{bottom:351.349200pt;}
.yde{bottom:351.557333pt;}
.y31{bottom:354.381467pt;}
.y1fb{bottom:354.718933pt;}
.y95{bottom:357.746800pt;}
.y12e{bottom:357.748000pt;}
.y189{bottom:357.766667pt;}
.y76{bottom:360.413467pt;}
.y266{bottom:362.504133pt;}
.y222{bottom:362.681467pt;}
.y1fa{bottom:369.385600pt;}
.ydd{bottom:370.224000pt;}
.y30{bottom:373.048133pt;}
.y265{bottom:375.837467pt;}
.y221{bottom:376.014800pt;}
.y7c{bottom:376.413333pt;}
.y94{bottom:376.413467pt;}
.y12d{bottom:376.414667pt;}
.y188{bottom:376.433333pt;}
.y15f{bottom:377.799867pt;}
.ydc{bottom:388.890667pt;}
.yf3{bottom:389.077333pt;}
.y264{bottom:389.170800pt;}
.y220{bottom:389.348133pt;}
.y1f9{bottom:390.088800pt;}
.y2f{bottom:391.714800pt;}
.y75{bottom:395.080000pt;}
.y93{bottom:395.080133pt;}
.y12c{bottom:395.081333pt;}
.y187{bottom:395.100000pt;}
.y15e{bottom:396.466533pt;}
.y19a{bottom:397.766667pt;}
.y263{bottom:402.504133pt;}
.y21f{bottom:402.681467pt;}
.ydb{bottom:407.557333pt;}
.yf2{bottom:407.744000pt;}
.y2e{bottom:410.381467pt;}
.y1bb{bottom:411.127600pt;}
.y74{bottom:413.746667pt;}
.y92{bottom:413.746800pt;}
.y186{bottom:413.766667pt;}
.y15d{bottom:415.133200pt;}
.y262{bottom:415.837467pt;}
.y21e{bottom:416.014800pt;}
.yf1{bottom:426.410667pt;}
.y2d{bottom:429.048133pt;}
.y261{bottom:429.170800pt;}
.y21d{bottom:429.348133pt;}
.y1ba{bottom:429.794267pt;}
.y73{bottom:432.413333pt;}
.y91{bottom:432.413467pt;}
.y12b{bottom:432.414667pt;}
.y185{bottom:432.433333pt;}
.y1f3{bottom:438.606800pt;}
.yda{bottom:441.756000pt;}
.y260{bottom:442.504133pt;}
.y21c{bottom:442.681467pt;}
.yf0{bottom:445.077333pt;}
.y2c{bottom:447.714800pt;}
.y1b9{bottom:448.460933pt;}
.y15c{bottom:449.799867pt;}
.y72{bottom:451.080000pt;}
.y90{bottom:451.080133pt;}
.y12a{bottom:451.081333pt;}
.y184{bottom:451.100000pt;}
.y25f{bottom:455.837467pt;}
.y21b{bottom:456.014800pt;}
.y1f2{bottom:457.273467pt;}
.yef{bottom:463.744000pt;}
.y1b8{bottom:467.127600pt;}
.yd3{bottom:467.756000pt;}
.y15b{bottom:468.466533pt;}
.y25e{bottom:469.170800pt;}
.y21a{bottom:469.348133pt;}
.y71{bottom:469.746667pt;}
.y8f{bottom:469.746800pt;}
.y129{bottom:469.748000pt;}
.y183{bottom:469.766667pt;}
.y1f1{bottom:475.940133pt;}
.y25d{bottom:482.504133pt;}
.y219{bottom:482.681467pt;}
.yd2{bottom:483.089333pt;}
.y1b7{bottom:485.794267pt;}
.y15a{bottom:487.133200pt;}
.y2b{bottom:488.381467pt;}
.y70{bottom:488.413333pt;}
.y9f{bottom:488.413467pt;}
.y128{bottom:488.414667pt;}
.y182{bottom:488.433333pt;}
.y1f0{bottom:494.606800pt;}
.yec{bottom:494.745333pt;}
.y25c{bottom:495.837467pt;}
.y218{bottom:496.014800pt;}
.yeb{bottom:504.078800pt;}
.y1b6{bottom:504.460933pt;}
.y2a{bottom:505.714800pt;}
.y159{bottom:505.799867pt;}
.y6f{bottom:507.080000pt;}
.y8e{bottom:507.080133pt;}
.y127{bottom:507.081333pt;}
.y181{bottom:507.100000pt;}
.y25b{bottom:509.170800pt;}
.y217{bottom:509.348133pt;}
.y1ef{bottom:513.273467pt;}
.yd0{bottom:518.422667pt;}
.y1d{bottom:521.656000pt;}
.y25a{bottom:522.504133pt;}
.y216{bottom:522.681467pt;}
.y29{bottom:523.048133pt;}
.y1b5{bottom:523.127600pt;}
.ycf{bottom:525.089333pt;}
.y6e{bottom:525.746667pt;}
.y8d{bottom:525.746800pt;}
.y126{bottom:525.748000pt;}
.y180{bottom:525.766667pt;}
.y1ee{bottom:531.940133pt;}
.y1c{bottom:534.322667pt;}
.y259{bottom:535.837467pt;}
.y215{bottom:536.014800pt;}
.y28{bottom:540.381467pt;}
.y1b4{bottom:541.794267pt;}
.y158{bottom:543.133200pt;}
.y6d{bottom:544.413333pt;}
.y8c{bottom:544.413467pt;}
.y125{bottom:544.414667pt;}
.y199{bottom:544.433333pt;}
.y1b{bottom:546.989333pt;}
.y17f{bottom:547.100000pt;}
.y258{bottom:549.170800pt;}
.y214{bottom:549.348133pt;}
.y1ed{bottom:550.606800pt;}
.yce{bottom:554.422667pt;}
.y27{bottom:557.714800pt;}
.y1a{bottom:559.656000pt;}
.y1b3{bottom:560.460933pt;}
.y157{bottom:561.799867pt;}
.y257{bottom:562.504133pt;}
.y6c{bottom:563.080000pt;}
.y8b{bottom:563.080133pt;}
.y124{bottom:563.081333pt;}
.y198{bottom:563.100000pt;}
.y1ec{bottom:569.273467pt;}
.y19{bottom:572.322667pt;}
.ycd{bottom:573.089333pt;}
.y26{bottom:575.048133pt;}
.y256{bottom:575.837467pt;}
.y1b2{bottom:579.127600pt;}
.y156{bottom:580.466533pt;}
.y6b{bottom:581.746667pt;}
.y8a{bottom:581.746800pt;}
.y123{bottom:581.748000pt;}
.y17e{bottom:581.766667pt;}
.y18{bottom:584.989333pt;}
.y1eb{bottom:587.940133pt;}
.y255{bottom:589.170800pt;}
.y25{bottom:592.381467pt;}
.y213{bottom:592.562800pt;}
.ycc{bottom:593.752000pt;}
.y17{bottom:597.656000pt;}
.y155{bottom:599.133200pt;}
.y6a{bottom:600.413333pt;}
.y89{bottom:600.413467pt;}
.y122{bottom:600.414667pt;}
.ycb{bottom:600.418800pt;}
.y17d{bottom:600.433333pt;}
.y254{bottom:602.504133pt;}
.y1f8{bottom:606.606800pt;}
.y24{bottom:609.714800pt;}
.y16{bottom:610.322667pt;}
.y212{bottom:611.229467pt;}
.y253{bottom:615.837467pt;}
.y154{bottom:617.799867pt;}
.y69{bottom:619.080000pt;}
.y88{bottom:619.080133pt;}
.y121{bottom:619.081333pt;}
.y15{bottom:622.989333pt;}
.y1d2{bottom:623.434400pt;}
.y1f7{bottom:625.273467pt;}
.y23{bottom:627.048133pt;}
.y252{bottom:629.170800pt;}
.yca{bottom:634.414667pt;}
.y1d1{bottom:635.434400pt;}
.y68{bottom:637.746667pt;}
.y9e{bottom:637.746800pt;}
.y120{bottom:637.748000pt;}
.y14{bottom:639.208000pt;}
.y251{bottom:642.504133pt;}
.y1f6{bottom:643.940133pt;}
.y22{bottom:644.381467pt;}
.y1d0{bottom:647.434400pt;}
.y1b1{bottom:650.210400pt;}
.y211{bottom:652.488133pt;}
.yc9{bottom:653.081333pt;}
.y153{bottom:655.133200pt;}
.y250{bottom:655.837467pt;}
.y67{bottom:656.413333pt;}
.y87{bottom:656.413467pt;}
.y11f{bottom:656.414667pt;}
.y13{bottom:657.656000pt;}
.y21{bottom:661.714800pt;}
.y1b0{bottom:662.210400pt;}
.y1f5{bottom:662.606800pt;}
.y1cf{bottom:664.549600pt;}
.y24f{bottom:669.170800pt;}
.y210{bottom:671.154800pt;}
.yc8{bottom:671.748000pt;}
.y152{bottom:673.799867pt;}
.y1af{bottom:674.210400pt;}
.y66{bottom:675.080000pt;}
.y86{bottom:675.080133pt;}
.y11e{bottom:675.081333pt;}
.y12{bottom:676.322667pt;}
.y20{bottom:679.048133pt;}
.y1ce{bottom:679.252800pt;}
.y1f4{bottom:681.273467pt;}
.y24e{bottom:682.504133pt;}
.y1ae{bottom:686.210400pt;}
.y20f{bottom:689.821467pt;}
.yc7{bottom:690.414667pt;}
.y151{bottom:692.466533pt;}
.y65{bottom:693.746800pt;}
.y11d{bottom:693.748000pt;}
.y1cd{bottom:693.955867pt;}
.y11{bottom:694.989333pt;}
.y24d{bottom:695.837467pt;}
.y1f{bottom:696.381467pt;}
.y1ad{bottom:698.210400pt;}
.y20e{bottom:708.488133pt;}
.y1cc{bottom:708.659067pt;}
.yc6{bottom:709.081333pt;}
.y24c{bottom:709.170800pt;}
.y150{bottom:711.133200pt;}
.y64{bottom:712.413467pt;}
.y11c{bottom:712.414667pt;}
.y10{bottom:713.656000pt;}
.y1e{bottom:713.714800pt;}
.y1ac{bottom:715.325733pt;}
.y24b{bottom:722.504133pt;}
.y1cb{bottom:723.362133pt;}
.y20d{bottom:727.154800pt;}
.yc5{bottom:727.748000pt;}
.y14f{bottom:729.799867pt;}
.y1ab{bottom:730.028800pt;}
.y63{bottom:731.080133pt;}
.y11b{bottom:731.081333pt;}
.y24a{bottom:735.837467pt;}
.y1ca{bottom:738.065333pt;}
.y1aa{bottom:744.732000pt;}
.y20c{bottom:745.821467pt;}
.yc4{bottom:746.414667pt;}
.y51{bottom:748.456000pt;}
.y14e{bottom:748.466533pt;}
.y249{bottom:749.170800pt;}
.y62{bottom:749.746800pt;}
.y11a{bottom:749.748000pt;}
.y1c9{bottom:752.768400pt;}
.y1c8{bottom:752.804800pt;}
.y1a9{bottom:759.435067pt;}
.y4d{bottom:761.533333pt;}
.y248{bottom:762.504133pt;}
.y20b{bottom:764.488133pt;}
.yc3{bottom:765.081333pt;}
.y14d{bottom:767.133200pt;}
.y1c7{bottom:767.471467pt;}
.y61{bottom:768.413467pt;}
.y1a8{bottom:774.138133pt;}
.y247{bottom:775.837467pt;}
.y1c6{bottom:782.174667pt;}
.y20a{bottom:783.154800pt;}
.y60{bottom:787.080133pt;}
.y119{bottom:787.081333pt;}
.y1a7{bottom:788.841333pt;}
.y246{bottom:789.170800pt;}
.ybf{bottom:793.081333pt;}
.y1c5{bottom:796.877733pt;}
.y143{bottom:799.133333pt;}
.ybe{bottom:802.414667pt;}
.y245{bottom:802.504133pt;}
.y1a6{bottom:803.544400pt;}
.y5f{bottom:805.746800pt;}
.y118{bottom:805.748000pt;}
.y1c4{bottom:811.580933pt;}
.y14c{bottom:813.799867pt;}
.y244{bottom:815.837467pt;}
.y1a5{bottom:818.247600pt;}
.y5e{bottom:824.413467pt;}
.y117{bottom:824.414667pt;}
.yf{bottom:824.424000pt;}
.y1c3{bottom:826.284000pt;}
.ybd{bottom:827.748000pt;}
.y243{bottom:829.170800pt;}
.y1a4{bottom:832.950667pt;}
.y1c2{bottom:840.987200pt;}
.y242{bottom:842.504133pt;}
.y5d{bottom:843.080133pt;}
.y116{bottom:843.081333pt;}
.ybc{bottom:846.414667pt;}
.y1a3{bottom:847.653867pt;}
.y111{bottom:854.148000pt;}
.y1c1{bottom:855.690267pt;}
.y241{bottom:855.837467pt;}
.y5c{bottom:861.746800pt;}
.y110{bottom:861.748000pt;}
.ye{bottom:861.757333pt;}
.y142{bottom:861.799867pt;}
.y1a2{bottom:862.356933pt;}
.ybb{bottom:865.081333pt;}
.y240{bottom:869.170800pt;}
.y1c0{bottom:870.393333pt;}
.y1bf{bottom:870.429867pt;}
.y1a1{bottom:877.060000pt;}
.y5b{bottom:880.413467pt;}
.y141{bottom:880.466533pt;}
.y23f{bottom:882.504133pt;}
.yba{bottom:883.748000pt;}
.y1be{bottom:885.096533pt;}
.y1a0{bottom:891.763200pt;}
.y23e{bottom:895.837467pt;}
.y10a{bottom:897.076000pt;}
.y5a{bottom:899.080133pt;}
.yd{bottom:899.090667pt;}
.y140{bottom:899.133200pt;}
.y1bd{bottom:903.132933pt;}
.y19f{bottom:906.466267pt;}
.y23d{bottom:909.170800pt;}
.y109{bottom:910.409333pt;}
.y59{bottom:917.746800pt;}
.y13f{bottom:917.799867pt;}
.yb9{bottom:917.946800pt;}
.y19e{bottom:921.169467pt;}
.y23c{bottom:922.504133pt;}
.y1bc{bottom:924.539200pt;}
.y9{bottom:934.987733pt;}
.y23b{bottom:935.837467pt;}
.y58{bottom:936.413467pt;}
.y13e{bottom:936.466533pt;}
.yb8{bottom:936.613467pt;}
.yb{bottom:938.926000pt;}
.y19d{bottom:939.205867pt;}
.y23a{bottom:949.170800pt;}
.y57{bottom:955.080133pt;}
.y13d{bottom:955.133200pt;}
.yb7{bottom:955.280133pt;}
.y19c{bottom:959.909067pt;}
.y4c{bottom:961.237333pt;}
.y239{bottom:962.504133pt;}
.ya{bottom:968.653467pt;}
.y56{bottom:973.746800pt;}
.y13c{bottom:973.799867pt;}
.yb6{bottom:973.946800pt;}
.y4b{bottom:974.570667pt;}
.y238{bottom:975.837467pt;}
.y19b{bottom:975.909067pt;}
.y6{bottom:984.706800pt;}
.y4a{bottom:987.904000pt;}
.y49{bottom:1001.237333pt;}
.y53{bottom:1007.760133pt;}
.y55{bottom:1007.763467pt;}
.y48{bottom:1014.570667pt;}
.y47{bottom:1027.904000pt;}
.y46{bottom:1041.237333pt;}
.h17{height:12.000000pt;}
.h2d{height:18.666667pt;}
.h20{height:19.998667pt;}
.h9{height:20.000000pt;}
.h23{height:20.987000pt;}
.h22{height:21.333333pt;}
.h28{height:21.514000pt;}
.h26{height:22.072000pt;}
.h2a{height:22.666667pt;}
.h1{height:23.296000pt;}
.hc{height:23.479500pt;}
.h4{height:23.554688pt;}
.h7{height:24.960000pt;}
.h30{height:25.333333pt;}
.h32{height:28.000000pt;}
.h8{height:28.265625pt;}
.h33{height:28.706000pt;}
.h3b{height:29.610667pt;}
.h14{height:30.378667pt;}
.h37{height:31.083333pt;}
.hd{height:32.000000pt;}
.h18{height:32.976562pt;}
.h16{height:32.976696pt;}
.h15{height:33.006667pt;}
.h19{height:33.280000pt;}
.hf{height:34.176000pt;}
.he{height:36.000000pt;}
.h24{height:36.106667pt;}
.h2b{height:37.013333pt;}
.h2{height:37.687500pt;}
.h11{height:37.973333pt;}
.h38{height:38.828125pt;}
.h13{height:39.509333pt;}
.h1e{height:39.897920pt;}
.h12{height:39.898453pt;}
.h2c{height:39.898987pt;}
.h1a{height:40.000000pt;}
.h34{height:40.001333pt;}
.h1f{height:40.832688pt;}
.h21{height:41.809163pt;}
.h1d{height:42.398438pt;}
.h35{height:46.372667pt;}
.h39{height:46.593750pt;}
.h6{height:47.109375pt;}
.h3a{height:48.000000pt;}
.h1b{height:49.386667pt;}
.h3{height:49.920000pt;}
.hb{height:51.820312pt;}
.h10{height:56.000000pt;}
.h27{height:60.514667pt;}
.h1c{height:65.953125pt;}
.h29{height:74.080000pt;}
.h5{height:76.537600pt;}
.h2f{height:77.468677pt;}
.h25{height:79.146667pt;}
.h31{height:80.401493pt;}
.h2e{height:95.573333pt;}
.ha{height:113.062500pt;}
.h36{height:220.061333pt;}
.h0{height:1056.000000pt;}
.wc{width:65.334667pt;}
.w4{width:68.194667pt;}
.w3{width:73.334667pt;}
.w7{width:81.333333pt;}
.w5{width:89.333333pt;}
.w9{width:109.333333pt;}
.w8{width:114.666667pt;}
.wa{width:118.665333pt;}
.wb{width:130.666667pt;}
.w2{width:176.000000pt;}
.w6{width:214.665333pt;}
.wd{width:290.668000pt;}
.w1{width:449.333333pt;}
.we{width:618.597333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:1.833333pt;}
.x3e{left:2.874933pt;}
.x14{left:4.541733pt;}
.x1c{left:5.746133pt;}
.x28{left:9.500000pt;}
.x20{left:12.083333pt;}
.x19{left:13.204533pt;}
.x2b{left:16.958400pt;}
.x46{left:18.082683pt;}
.x59{left:19.096533pt;}
.x1b{left:23.671200pt;}
.x58{left:25.027200pt;}
.x3b{left:26.500000pt;}
.x2c{left:27.625067pt;}
.x1a{left:30.751200pt;}
.x21{left:33.125067pt;}
.x2d{left:34.625067pt;}
.x25{left:42.958400pt;}
.x41{left:46.041600pt;}
.x2e{left:48.250000pt;}
.x15{left:53.125067pt;}
.x38{left:54.833333pt;}
.x40{left:55.749867pt;}
.x24{left:58.669167pt;}
.x4d{left:60.968400pt;}
.x23{left:65.875983pt;}
.xc{left:71.800000pt;}
.x22{left:77.291733pt;}
.x42{left:79.833333pt;}
.x36{left:87.280000pt;}
.x50{left:88.536667pt;}
.xd{left:90.697600pt;}
.x3f{left:91.624933pt;}
.x3{left:94.466667pt;}
.x33{left:99.250000pt;}
.x39{left:105.000000pt;}
.x6{left:109.266667pt;}
.x48{left:113.364267pt;}
.x49{left:116.458400pt;}
.xa{left:119.800000pt;}
.x27{left:122.166667pt;}
.x45{left:129.966667pt;}
.x57{left:146.187467pt;}
.x4f{left:151.416667pt;}
.x35{left:153.833333pt;}
.x5d{left:160.580667pt;}
.x32{left:172.166667pt;}
.x4c{left:178.923400pt;}
.x29{left:184.464000pt;}
.x43{left:186.833333pt;}
.x30{left:188.833333pt;}
.x47{left:195.299600pt;}
.x55{left:197.841467pt;}
.x37{left:200.240000pt;}
.x4b{left:203.421150pt;}
.x4a{left:204.715400pt;}
.x2a{left:205.753250pt;}
.x5c{left:213.271867pt;}
.x31{left:270.166667pt;}
.x56{left:273.028400pt;}
.x4e{left:278.844150pt;}
.x34{left:286.833333pt;}
.x2{left:294.866667pt;}
.x7{left:313.764267pt;}
.x44{left:317.500000pt;}
.x5b{left:331.786533pt;}
.x2f{left:336.833333pt;}
.x5a{left:341.838400pt;}
.x1{left:350.894400pt;}
.xe{left:406.133333pt;}
.xf{left:425.031067pt;}
.x12{left:428.528133pt;}
.x52{left:439.466667pt;}
.x17{left:447.466667pt;}
.x53{left:450.133333pt;}
.x18{left:467.269333pt;}
.x54{left:475.435467pt;}
.x3d{left:504.500000pt;}
.x3a{left:509.166667pt;}
.x9{left:519.236400pt;}
.x1d{left:535.347067pt;}
.x1e{left:541.833333pt;}
.x13{left:549.833333pt;}
.x5{left:565.130400pt;}
.x4{left:571.035867pt;}
.x3c{left:618.500000pt;}
.x16{left:623.166667pt;}
.x26{left:631.166667pt;}
.x5e{left:641.897200pt;}
.x10{left:655.248533pt;}
.xb{left:666.931467pt;}
.x11{left:714.772933pt;}
.x51{left:719.466667pt;}
.x8{left:840.000000pt;}
}




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