
    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_58dbf051c34d45e6bac67ddd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b4f09b30933be4e1ff4362d8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_90b9c072d65ed725bd84e417.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;font-style:normal;font-weight: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_401b93a499e4d02e80af945e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_49dda27eed3262110f14f901.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;font-style:normal;font-weight: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_c3a5e89c1e1569b037ca3710.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9fe28f7491d75842915fbb51.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_02ad58a02146d97c497eb8a7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6f45bb27d68ca8f502ae8cdc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a6013170368d63b0ae9c63f9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1917619551763b1ca1a318c8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a821d10de010df14ba60334d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.939453;font-style:normal;font-weight: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_a5bc298667e9a9d9a58a788b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.939453;font-style:normal;font-weight: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_62737757b7f3019b2d0f96ec.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.939453;font-style:normal;font-weight: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_0ff7185caf70a0d5cd4ed5f9.woff2')format("woff");}.fff{font-family:fff;line-height:0.939453;font-style:normal;font-weight: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_56df8d90e31d06172486a9fc.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.939453;font-style:normal;font-weight: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_b122231eb91051e104d00a33.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_fda88513a08e45ebc8c22e6e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_adc8faa12924969dc8eeeb17.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.939453;font-style:normal;font-weight: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_4c649ae9ff0ebab9a6b31b90.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_c326844ad8adef88730ed595.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_e33635a1679e00eb3499d1ec.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.939453;font-style:normal;font-weight: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_79039581348ec5139431dcf4.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_c2e7a688814b05f7d81ef02f.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.939453;font-style:normal;font-weight: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_6b2e9c31db79fe652f482b01.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_d1f0e40c17c8ec65843a5375.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_d493b84a52df0a56042c3ada.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.939453;font-style:normal;font-weight: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_640d60f59c0f8436ceb26b94.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_569484bf282869a007f4abbb.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_569484bf282869a007f4abbb.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_569484bf282869a007f4abbb.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_569484bf282869a007f4abbb.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_569484bf282869a007f4abbb.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_569484bf282869a007f4abbb.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_fb88530cca95dd7c60610f27.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_38097e29813d0706aab1ad4c.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_4c649ae9ff0ebab9a6b31b90.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_b122231eb91051e104d00a33.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_62737757b7f3019b2d0f96ec.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.939453;font-style:normal;font-weight: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_d1f0e40c17c8ec65843a5375.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_c326844ad8adef88730ed595.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_640d60f59c0f8436ceb26b94.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_a821d10de010df14ba60334d.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.939453;font-style:normal;font-weight: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_e33635a1679e00eb3499d1ec.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.939453;font-style:normal;font-weight: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_56df8d90e31d06172486a9fc.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.939453;font-style:normal;font-weight: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_c2e7a688814b05f7d81ef02f.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.939453;font-style:normal;font-weight: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_6b2e9c31db79fe652f482b01.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_a5bc298667e9a9d9a58a788b.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.939453;font-style:normal;font-weight: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_adc8faa12924969dc8eeeb17.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.939453;font-style:normal;font-weight: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_0ff7185caf70a0d5cd4ed5f9.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.939453;font-style:normal;font-weight: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_79039581348ec5139431dcf4.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_fda88513a08e45ebc8c22e6e.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_d493b84a52df0a56042c3ada.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.939453;font-style:normal;font-weight: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_569484bf282869a007f4abbb.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_569484bf282869a007f4abbb.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_569484bf282869a007f4abbb.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_569484bf282869a007f4abbb.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_569484bf282869a007f4abbb.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_569484bf282869a007f4abbb.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_569484bf282869a007f4abbb.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_d493b84a52df0a56042c3ada.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_569484bf282869a007f4abbb.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_72007165cb1b059fad4cc2e7.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_a04a8ae50a6b4a620a958c24.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_62737757b7f3019b2d0f96ec.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_a821d10de010df14ba60334d.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_e33635a1679e00eb3499d1ec.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_56df8d90e31d06172486a9fc.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_a5bc298667e9a9d9a58a788b.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_adc8faa12924969dc8eeeb17.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_0ff7185caf70a0d5cd4ed5f9.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_c2e7a688814b05f7d81ef02f.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_6b2e9c31db79fe652f482b01.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url('chunks/assets/font_38097e29813d0706aab1ad4c.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url('chunks/assets/font_4c649ae9ff0ebab9a6b31b90.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c;src:url('chunks/assets/font_640d60f59c0f8436ceb26b94.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_d1f0e40c17c8ec65843a5375.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url('chunks/assets/font_b122231eb91051e104d00a33.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f;src:url('chunks/assets/font_fda88513a08e45ebc8c22e6e.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50;src:url('chunks/assets/font_79039581348ec5139431dcf4.woff2')format("woff");}.ff50{font-family:ff50;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51;src:url('chunks/assets/font_c326844ad8adef88730ed595.woff2')format("woff");}.ff51{font-family:ff51;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff52;src:url('chunks/assets/font_f1547700c37c867a9ac458de.woff2')format("woff");}.ff52{font-family:ff52;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53;src:url('chunks/assets/font_0feca7491a033578495e2a76.woff2')format("woff");}.ff53{font-family:ff53;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54;src:url('chunks/assets/font_888a60f223ac95a224654aef.woff2')format("woff");}.ff54{font-family:ff54;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff55;src:url('chunks/assets/font_27e8803647a14cb9460377b3.woff2')format("woff");}.ff55{font-family:ff55;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.620000px;}
.v3{vertical-align:28.263000px;}
.v1{vertical-align:30.381600px;}
.ls4a{letter-spacing:-3.780000px;}
.ls4f{letter-spacing:-3.180000px;}
.ls79{letter-spacing:-2.640000px;}
.ls4e{letter-spacing:-1.980000px;}
.ls7f{letter-spacing:-1.860000px;}
.ls11{letter-spacing:-0.780000px;}
.ls41{letter-spacing:-0.720000px;}
.ls7e{letter-spacing:-0.480000px;}
.ls7b{letter-spacing:-0.336000px;}
.ls49{letter-spacing:-0.240000px;}
.ls4d{letter-spacing:-0.180000px;}
.ls40{letter-spacing:-0.120000px;}
.ls78{letter-spacing:-0.096000px;}
.ls34{letter-spacing:-0.060000px;}
.ls7a{letter-spacing:-0.048000px;}
.ls10{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.004140px;}
.ls0{letter-spacing:0.005076px;}
.ls3{letter-spacing:0.005676px;}
.ls6a{letter-spacing:0.048000px;}
.ls1e{letter-spacing:0.060000px;}
.ls39{letter-spacing:0.079200px;}
.ls5e{letter-spacing:0.096000px;}
.ls38{letter-spacing:0.120000px;}
.ls14{letter-spacing:0.180000px;}
.ls69{letter-spacing:0.192000px;}
.ls29{letter-spacing:0.240000px;}
.ls2f{letter-spacing:0.300000px;}
.ls57{letter-spacing:0.336000px;}
.ls28{letter-spacing:0.360000px;}
.ls67{letter-spacing:0.384000px;}
.ls1b{letter-spacing:0.420000px;}
.ls61{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.480000px;}
.ls3d{letter-spacing:0.540000px;}
.ls77{letter-spacing:0.576000px;}
.ls8{letter-spacing:0.600000px;}
.ls68{letter-spacing:0.624000px;}
.ls1d{letter-spacing:0.660000px;}
.ls6b{letter-spacing:0.672000px;}
.ls7{letter-spacing:0.720000px;}
.ls5a{letter-spacing:0.768000px;}
.lsb{letter-spacing:0.780000px;}
.ls6e{letter-spacing:0.816000px;}
.ls2c{letter-spacing:0.840000px;}
.ls74{letter-spacing:0.864000px;}
.ls3c{letter-spacing:0.900000px;}
.ls71{letter-spacing:0.912000px;}
.ls1f{letter-spacing:0.960000px;}
.ls72{letter-spacing:1.008000px;}
.ls5b{letter-spacing:1.056000px;}
.lse{letter-spacing:1.080000px;}
.ls62{letter-spacing:1.104000px;}
.ls18{letter-spacing:1.140000px;}
.ls64{letter-spacing:1.152000px;}
.lsf{letter-spacing:1.200000px;}
.ls76{letter-spacing:1.248000px;}
.ls30{letter-spacing:1.260000px;}
.ls75{letter-spacing:1.296000px;}
.ls35{letter-spacing:1.320000px;}
.ls15{letter-spacing:1.380000px;}
.ls3e{letter-spacing:1.440000px;}
.ls6c{letter-spacing:1.488000px;}
.ls1a{letter-spacing:1.500000px;}
.ls60{letter-spacing:1.536000px;}
.ls13{letter-spacing:1.560000px;}
.ls59{letter-spacing:1.584000px;}
.ls2a{letter-spacing:1.620000px;}
.ls63{letter-spacing:1.632000px;}
.ls21{letter-spacing:1.680000px;}
.ls6f{letter-spacing:1.728000px;}
.ls2d{letter-spacing:1.740000px;}
.ls7c{letter-spacing:1.776000px;}
.ls50{letter-spacing:1.800000px;}
.ls6d{letter-spacing:1.824000px;}
.ls17{letter-spacing:1.860000px;}
.ls25{letter-spacing:1.920000px;}
.ls33{letter-spacing:1.980000px;}
.ls58{letter-spacing:2.016000px;}
.ls37{letter-spacing:2.040000px;}
.ls36{letter-spacing:2.100000px;}
.ls23{letter-spacing:2.160000px;}
.ls1c{letter-spacing:2.220000px;}
.ls66{letter-spacing:2.304000px;}
.lsc{letter-spacing:2.340000px;}
.ls5f{letter-spacing:2.352000px;}
.ls73{letter-spacing:2.400000px;}
.ls7d{letter-spacing:2.448000px;}
.ls31{letter-spacing:2.460000px;}
.ls26{letter-spacing:2.520000px;}
.ls2b{letter-spacing:2.580000px;}
.ls45{letter-spacing:2.640000px;}
.ls27{letter-spacing:2.700000px;}
.ls3a{letter-spacing:2.760000px;}
.lsd{letter-spacing:2.820000px;}
.ls2e{letter-spacing:2.880000px;}
.ls42{letter-spacing:2.940000px;}
.ls43{letter-spacing:3.000000px;}
.ls5d{letter-spacing:3.024000px;}
.ls4b{letter-spacing:3.060000px;}
.ls70{letter-spacing:3.072000px;}
.ls51{letter-spacing:3.120000px;}
.ls5{letter-spacing:3.180000px;}
.ls3f{letter-spacing:3.240000px;}
.ls24{letter-spacing:3.300000px;}
.ls16{letter-spacing:3.360000px;}
.ls47{letter-spacing:3.420000px;}
.ls48{letter-spacing:3.600000px;}
.ls3b{letter-spacing:3.720000px;}
.ls65{letter-spacing:3.792000px;}
.ls44{letter-spacing:3.840000px;}
.ls9{letter-spacing:3.900000px;}
.ls32{letter-spacing:3.960000px;}
.ls5c{letter-spacing:3.984000px;}
.ls20{letter-spacing:4.260000px;}
.ls12{letter-spacing:4.740000px;}
.lsa{letter-spacing:4.800000px;}
.ls56{letter-spacing:5.040000px;}
.ls4c{letter-spacing:5.160000px;}
.ls19{letter-spacing:5.280000px;}
.ls46{letter-spacing:5.400000px;}
.ls22{letter-spacing:5.520000px;}
.ls55{letter-spacing:5.880000px;}
.ls52{letter-spacing:6.120000px;}
.ls54{letter-spacing:6.240000px;}
.ls53{letter-spacing:8.760000px;}
.ls2{letter-spacing:59.532876px;}
.ls1{letter-spacing:59.533476px;}
.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;}
}
.ws62{word-spacing:-20.520000px;}
.ws1{word-spacing:-16.680000px;}
.wsc{word-spacing:-16.560000px;}
.ws57{word-spacing:-15.900000px;}
.ws58{word-spacing:-15.720000px;}
.ws59{word-spacing:-15.660000px;}
.ws3{word-spacing:-15.600000px;}
.wsd{word-spacing:-15.360000px;}
.ws5a{word-spacing:-15.120000px;}
.ws25{word-spacing:-15.000000px;}
.ws4{word-spacing:-13.344000px;}
.ws6c{word-spacing:-13.104000px;}
.ws6f{word-spacing:-12.960000px;}
.ws6a{word-spacing:-12.768000px;}
.ws2{word-spacing:-12.510000px;}
.ws6b{word-spacing:-12.000000px;}
.ws6d{word-spacing:-11.952000px;}
.ws6e{word-spacing:-11.664000px;}
.ws0{word-spacing:-10.210662px;}
.ws2d{word-spacing:-8.745000px;}
.ws7{word-spacing:-4.684200px;}
.ws47{word-spacing:-3.840000px;}
.ws6{word-spacing:-2.886000px;}
.ws71{word-spacing:-2.700000px;}
.ws81{word-spacing:-2.640000px;}
.ws5c{word-spacing:-2.460000px;}
.ws8f{word-spacing:-2.448000px;}
.ws8b{word-spacing:-2.400000px;}
.ws79{word-spacing:-2.352000px;}
.ws5d{word-spacing:-2.340000px;}
.ws23{word-spacing:-2.220000px;}
.ws8c{word-spacing:-1.824000px;}
.ws8e{word-spacing:-1.776000px;}
.ws83{word-spacing:-1.728000px;}
.ws14{word-spacing:-1.680000px;}
.ws74{word-spacing:-1.584000px;}
.ws7a{word-spacing:-1.536000px;}
.ws82{word-spacing:-1.488000px;}
.ws4e{word-spacing:-1.200000px;}
.ws7d{word-spacing:-1.152000px;}
.ws8{word-spacing:-1.134000px;}
.ws7c{word-spacing:-1.104000px;}
.ws1a{word-spacing:-1.080000px;}
.ws87{word-spacing:-1.008000px;}
.ws85{word-spacing:-0.960000px;}
.ws64{word-spacing:-0.780000px;}
.ws8a{word-spacing:-0.768000px;}
.ws15{word-spacing:-0.720000px;}
.ws37{word-spacing:-0.660000px;}
.ws63{word-spacing:-0.540000px;}
.ws33{word-spacing:-0.480000px;}
.ws7b{word-spacing:-0.432000px;}
.ws42{word-spacing:-0.420000px;}
.ws1d{word-spacing:-0.360000px;}
.ws21{word-spacing:-0.300000px;}
.ws19{word-spacing:-0.240000px;}
.ws11{word-spacing:-0.120000px;}
.ws78{word-spacing:-0.096000px;}
.ws41{word-spacing:-0.060000px;}
.ws5{word-spacing:0.000000px;}
.ws7f{word-spacing:0.048000px;}
.ws51{word-spacing:0.060000px;}
.ws12{word-spacing:0.120000px;}
.ws2b{word-spacing:0.144000px;}
.ws3d{word-spacing:0.240000px;}
.ws29{word-spacing:0.300000px;}
.ws1b{word-spacing:0.360000px;}
.ws61{word-spacing:0.384000px;}
.ws26{word-spacing:0.480000px;}
.ws60{word-spacing:0.540000px;}
.ws10{word-spacing:0.600000px;}
.ws73{word-spacing:0.624000px;}
.ws35{word-spacing:0.660000px;}
.ws13{word-spacing:0.840000px;}
.ws8d{word-spacing:0.864000px;}
.ws3c{word-spacing:0.960000px;}
.ws28{word-spacing:1.020000px;}
.ws5b{word-spacing:1.080000px;}
.ws43{word-spacing:1.200000px;}
.ws84{word-spacing:1.248000px;}
.wsf{word-spacing:1.260000px;}
.ws75{word-spacing:1.296000px;}
.ws53{word-spacing:1.380000px;}
.ws22{word-spacing:1.440000px;}
.ws86{word-spacing:1.488000px;}
.ws1e{word-spacing:1.560000px;}
.ws2e{word-spacing:1.620000px;}
.ws52{word-spacing:1.740000px;}
.ws2c{word-spacing:1.776000px;}
.ws4a{word-spacing:1.800000px;}
.ws88{word-spacing:1.824000px;}
.ws90{word-spacing:1.860000px;}
.ws36{word-spacing:1.980000px;}
.ws40{word-spacing:2.040000px;}
.ws67{word-spacing:2.100000px;}
.ws3b{word-spacing:2.160000px;}
.ws70{word-spacing:2.220000px;}
.wse{word-spacing:2.280000px;}
.ws7e{word-spacing:2.448000px;}
.ws17{word-spacing:2.460000px;}
.ws24{word-spacing:2.520000px;}
.ws38{word-spacing:2.580000px;}
.ws3e{word-spacing:2.640000px;}
.ws2a{word-spacing:2.688000px;}
.ws27{word-spacing:2.700000px;}
.ws4f{word-spacing:2.820000px;}
.ws5e{word-spacing:2.880000px;}
.ws4c{word-spacing:2.940000px;}
.ws48{word-spacing:3.000000px;}
.ws45{word-spacing:3.060000px;}
.ws80{word-spacing:3.072000px;}
.ws3a{word-spacing:3.120000px;}
.ws5f{word-spacing:3.180000px;}
.ws89{word-spacing:3.216000px;}
.ws2f{word-spacing:3.240000px;}
.ws77{word-spacing:3.312000px;}
.ws49{word-spacing:3.420000px;}
.ws1c{word-spacing:3.480000px;}
.ws50{word-spacing:3.540000px;}
.ws56{word-spacing:3.552000px;}
.ws39{word-spacing:3.600000px;}
.ws30{word-spacing:3.660000px;}
.ws4d{word-spacing:3.720000px;}
.ws44{word-spacing:3.780000px;}
.ws46{word-spacing:3.840000px;}
.ws54{word-spacing:3.900000px;}
.ws76{word-spacing:3.936000px;}
.ws55{word-spacing:3.960000px;}
.ws72{word-spacing:3.984000px;}
.ws20{word-spacing:4.020000px;}
.ws18{word-spacing:4.140000px;}
.ws32{word-spacing:4.260000px;}
.wsa{word-spacing:4.320000px;}
.ws65{word-spacing:4.380000px;}
.ws4b{word-spacing:4.440000px;}
.ws34{word-spacing:4.560000px;}
.ws3f{word-spacing:4.620000px;}
.ws66{word-spacing:4.680000px;}
.ws1f{word-spacing:4.860000px;}
.ws9{word-spacing:4.920000px;}
.wsb{word-spacing:4.980000px;}
.ws31{word-spacing:5.100000px;}
.ws69{word-spacing:5.460000px;}
.ws68{word-spacing:5.520000px;}
.ws16{word-spacing:5.700000px;}
._a{margin-left:-2897.703600px;}
._1e{margin-left:-2873.895600px;}
._7{margin-left:-6.568200px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.992400px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.021800px;}
._6{width:1.020000px;}
._9{width:2.460000px;}
._b{width:3.679800px;}
._4{width:4.684200px;}
._8{width:5.931600px;}
._1d{width:7.051800px;}
._1c{width:8.760000px;}
._5{width:59.395014px;}
._20{width:268.656000px;}
._21{width:320.016000px;}
._26{width:328.944000px;}
._1b{width:405.792000px;}
._1a{width:410.250000px;}
._19{width:422.736000px;}
._17{width:437.184000px;}
._23{width:450.096000px;}
._d{width:454.992000px;}
._11{width:458.496000px;}
._14{width:474.528000px;}
._e{width:484.136400px;}
._16{width:549.936000px;}
._13{width:557.672400px;}
._10{width:558.968400px;}
._12{width:561.222000px;}
._18{width:575.328000px;}
._22{width:579.120000px;}
._25{width:615.128400px;}
._29{width:636.536400px;}
._f{width:693.222000px;}
._1f{width:700.512000px;}
._24{width:713.808000px;}
._28{width:767.096400px;}
._15{width:799.446000px;}
._27{width:897.752400px;}
._c{width:911.240400px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,4,4);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsb{font-size:32.346600px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fsc{font-size:38.816400px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fsd{font-size:45.285600px;}
.fs9{font-size:48.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y10a{bottom:2.624700px;}
.y16a{bottom:2.625750px;}
.y135{bottom:2.626500px;}
.y129{bottom:2.971500px;}
.y15e{bottom:2.974350px;}
.y175{bottom:2.974500px;}
.y157{bottom:2.974650px;}
.y153{bottom:2.974800px;}
.y133{bottom:2.975100px;}
.y131{bottom:2.975250px;}
.y15c{bottom:2.975400px;}
.y151{bottom:2.975700px;}
.y14f{bottom:2.975850px;}
.y12f{bottom:2.976150px;}
.y155{bottom:2.976300px;}
.y12d{bottom:2.976600px;}
.y14d{bottom:2.976900px;}
.y127{bottom:2.977500px;}
.y12b{bottom:2.979900px;}
.y120{bottom:3.147600px;}
.y11d{bottom:3.149550px;}
.y144{bottom:3.149700px;}
.y16c{bottom:3.149850px;}
.y160{bottom:3.150000px;}
.y13c{bottom:3.150150px;}
.y117{bottom:3.150300px;}
.y119{bottom:3.150450px;}
.y112{bottom:3.150600px;}
.y114{bottom:3.150750px;}
.y13f{bottom:3.150900px;}
.y110{bottom:3.151050px;}
.y10c{bottom:3.151200px;}
.y13a{bottom:3.151350px;}
.y10e{bottom:3.151500px;}
.y124{bottom:3.151650px;}
.y146{bottom:3.151800px;}
.y162{bottom:3.152100px;}
.y11b{bottom:3.152400px;}
.y14a{bottom:3.152550px;}
.y1{bottom:46.264950px;}
.y2f{bottom:47.777250px;}
.y6d{bottom:83.212500px;}
.y108{bottom:83.448600px;}
.yde{bottom:83.460300px;}
.y17b{bottom:83.635350px;}
.y65{bottom:83.770350px;}
.ydc{bottom:83.800350px;}
.y22{bottom:88.023000px;}
.y1b4{bottom:89.121900px;}
.y98{bottom:93.111750px;}
.y104{bottom:93.576000px;}
.y1f4{bottom:95.263500px;}
.y6c{bottom:98.956500px;}
.y107{bottom:99.192600px;}
.ydd{bottom:99.204300px;}
.y17f{bottom:101.365350px;}
.y17a{bottom:101.635350px;}
.y64{bottom:101.770350px;}
.ydb{bottom:101.800350px;}
.yac{bottom:101.920350px;}
.y21{bottom:103.023000px;}
.y1b3{bottom:104.121900px;}
.y97{bottom:109.359750px;}
.y103{bottom:109.824000px;}
.y1f3{bottom:110.263500px;}
.y6b{bottom:114.700500px;}
.y106{bottom:114.936600px;}
.y1b2{bottom:119.121900px;}
.y63{bottom:119.770350px;}
.yda{bottom:119.800350px;}
.yab{bottom:119.920350px;}
.y1f2{bottom:125.263500px;}
.y96{bottom:125.607750px;}
.y102{bottom:126.072000px;}
.y6a{bottom:130.444500px;}
.y1b1{bottom:134.121900px;}
.y179{bottom:137.230350px;}
.y62{bottom:137.770350px;}
.yd9{bottom:137.800350px;}
.yaa{bottom:137.920350px;}
.y169{bottom:138.614250px;}
.y1f1{bottom:140.263500px;}
.y95{bottom:141.855750px;}
.y101{bottom:142.320000px;}
.y69{bottom:146.188500px;}
.y1b0{bottom:149.121900px;}
.y1f0{bottom:155.263500px;}
.y17e{bottom:155.365350px;}
.y61{bottom:155.770350px;}
.yd8{bottom:155.800350px;}
.ya9{bottom:155.920350px;}
.y94{bottom:158.103750px;}
.y100{bottom:158.568000px;}
.y1af{bottom:164.121900px;}
.y159{bottom:168.184500px;}
.y1ef{bottom:170.263500px;}
.y60{bottom:173.770350px;}
.yd7{bottom:173.800350px;}
.y2a{bottom:173.914350px;}
.ya8{bottom:173.920350px;}
.y93{bottom:174.351750px;}
.yff{bottom:174.816000px;}
.y1ae{bottom:179.121900px;}
.y1ee{bottom:185.263500px;}
.y161{bottom:186.832500px;}
.y92{bottom:190.599750px;}
.y5f{bottom:191.770350px;}
.yd6{bottom:191.800350px;}
.y29{bottom:191.914350px;}
.ya7{bottom:191.920350px;}
.y1ad{bottom:194.121900px;}
.y1ed{bottom:200.263500px;}
.y164{bottom:202.836000px;}
.y15b{bottom:204.925500px;}
.yfe{bottom:206.328000px;}
.y91{bottom:206.847750px;}
.y1ac{bottom:209.121900px;}
.y5e{bottom:209.770350px;}
.yd5{bottom:209.800350px;}
.y28{bottom:209.914350px;}
.ya6{bottom:209.920350px;}
.y1ec{bottom:215.263500px;}
.y15f{bottom:220.197000px;}
.y90{bottom:223.095750px;}
.y1ab{bottom:224.121900px;}
.y67{bottom:227.365350px;}
.y5d{bottom:227.770350px;}
.yd4{bottom:227.800350px;}
.y27{bottom:227.914350px;}
.ya5{bottom:227.920350px;}
.y1eb{bottom:230.263500px;}
.y15d{bottom:233.371500px;}
.y1aa{bottom:239.121900px;}
.y8f{bottom:239.343750px;}
.y163{bottom:239.469000px;}
.yfd{bottom:241.225350px;}
.y1ea{bottom:245.263500px;}
.y5c{bottom:245.770350px;}
.y26{bottom:245.914350px;}
.ya4{bottom:245.920350px;}
.y1a9{bottom:254.121900px;}
.y8e{bottom:255.591750px;}
.y165{bottom:257.085000px;}
.y1e9{bottom:260.263500px;}
.y173{bottom:260.494500px;}
.yfc{bottom:260.725350px;}
.y66{bottom:263.230350px;}
.y17d{bottom:263.365350px;}
.yd3{bottom:263.395350px;}
.y5b{bottom:263.770350px;}
.y25{bottom:263.914350px;}
.ya3{bottom:263.920350px;}
.y1a8{bottom:269.121900px;}
.y8d{bottom:271.839750px;}
.y167{bottom:273.082500px;}
.y1e8{bottom:275.263500px;}
.y174{bottom:275.725500px;}
.y5a{bottom:281.770350px;}
.y24{bottom:281.914350px;}
.ya2{bottom:281.920350px;}
.y1a7{bottom:284.121900px;}
.y8c{bottom:288.087750px;}
.y166{bottom:289.633500px;}
.y1e7{bottom:290.263500px;}
.y1a6{bottom:299.121900px;}
.y59{bottom:299.770350px;}
.y2c{bottom:299.914350px;}
.ya1{bottom:299.920350px;}
.y8b{bottom:304.335750px;}
.y1e6{bottom:305.263500px;}
.y172{bottom:307.695000px;}
.y1a5{bottom:314.121900px;}
.y23{bottom:317.509350px;}
.yfb{bottom:317.635350px;}
.y58{bottom:317.770350px;}
.y2b{bottom:317.914350px;}
.ya0{bottom:317.920350px;}
.yd2{bottom:317.935350px;}
.y1e5{bottom:320.263500px;}
.y168{bottom:324.352500px;}
.y1a4{bottom:329.121900px;}
.y1e4{bottom:335.263500px;}
.yfa{bottom:335.635350px;}
.y57{bottom:335.770350px;}
.y8a{bottom:335.847750px;}
.y9f{bottom:335.920350px;}
.yd1{bottom:335.935350px;}
.y16b{bottom:342.414000px;}
.y1a3{bottom:344.121900px;}
.y15a{bottom:345.418500px;}
.y1e3{bottom:350.263500px;}
.yf9{bottom:353.635350px;}
.y56{bottom:353.770350px;}
.y9e{bottom:353.920350px;}
.yd0{bottom:353.935350px;}
.y1a2{bottom:359.121900px;}
.y16e{bottom:359.772000px;}
.y1e2{bottom:365.263500px;}
.y89{bottom:370.750350px;}
.yf8{bottom:371.635350px;}
.y55{bottom:371.770350px;}
.y9d{bottom:371.920350px;}
.ycf{bottom:371.935350px;}
.y1a1{bottom:374.121900px;}
.y16f{bottom:377.131500px;}
.y1e1{bottom:380.263500px;}
.y1a0{bottom:389.121900px;}
.yf7{bottom:389.635350px;}
.y54{bottom:389.770350px;}
.y9c{bottom:389.920350px;}
.yce{bottom:389.935350px;}
.y20{bottom:392.008650px;}
.y171{bottom:394.491000px;}
.y1e0{bottom:395.263500px;}
.y19f{bottom:404.121900px;}
.yf6{bottom:407.635350px;}
.y53{bottom:407.770350px;}
.y9b{bottom:407.920350px;}
.ycd{bottom:407.935350px;}
.y1f{bottom:410.014200px;}
.y1df{bottom:410.263500px;}
.y170{bottom:411.850500px;}
.y19e{bottom:419.121900px;}
.y178{bottom:420.812800px;}
.y1de{bottom:425.263500px;}
.yf5{bottom:425.635350px;}
.y52{bottom:425.770350px;}
.y88{bottom:425.920350px;}
.ycc{bottom:425.935350px;}
.y16d{bottom:429.210000px;}
.y19d{bottom:434.121900px;}
.y1e{bottom:437.359200px;}
.y1dd{bottom:440.263500px;}
.yf4{bottom:443.635350px;}
.y51{bottom:443.770350px;}
.y87{bottom:443.920350px;}
.ycb{bottom:443.935350px;}
.y134{bottom:447.714000px;}
.y19c{bottom:449.121900px;}
.y1dc{bottom:455.263500px;}
.y1d{bottom:455.359200px;}
.yf3{bottom:461.635350px;}
.y50{bottom:461.770350px;}
.y86{bottom:461.920350px;}
.yca{bottom:461.935350px;}
.y19b{bottom:464.121900px;}
.y1db{bottom:470.263500px;}
.y1c{bottom:473.359200px;}
.y14b{bottom:477.919500px;}
.y19a{bottom:479.121900px;}
.yf2{bottom:479.635350px;}
.y4f{bottom:479.770350px;}
.y85{bottom:479.920350px;}
.yc9{bottom:479.935350px;}
.y1da{bottom:485.263500px;}
.y1b{bottom:491.359200px;}
.y199{bottom:494.121900px;}
.y138{bottom:494.955000px;}
.yf1{bottom:497.635350px;}
.y4e{bottom:497.770350px;}
.y84{bottom:497.920350px;}
.yc8{bottom:497.935350px;}
.y1d9{bottom:500.263500px;}
.y198{bottom:509.121900px;}
.y1a{bottom:509.359200px;}
.y141{bottom:511.992000px;}
.y158{bottom:514.390500px;}
.y1d8{bottom:515.263500px;}
.yf0{bottom:515.635350px;}
.y4d{bottom:515.770350px;}
.y83{bottom:515.920350px;}
.yc7{bottom:515.935350px;}
.y14e{bottom:522.504000px;}
.y197{bottom:524.121900px;}
.y19{bottom:527.359200px;}
.y147{bottom:529.027500px;}
.y1d7{bottom:530.263500px;}
.yef{bottom:533.635350px;}
.y4c{bottom:533.770350px;}
.y82{bottom:533.920350px;}
.yc6{bottom:533.935350px;}
.y196{bottom:539.121900px;}
.y1d6{bottom:545.265900px;}
.y18{bottom:545.359200px;}
.y145{bottom:546.063000px;}
.yee{bottom:551.635350px;}
.y4b{bottom:551.770350px;}
.y81{bottom:551.920350px;}
.y195{bottom:554.121900px;}
.y154{bottom:559.837500px;}
.y1d5{bottom:560.265900px;}
.y140{bottom:563.100000px;}
.y17{bottom:563.359200px;}
.y194{bottom:569.121900px;}
.yc5{bottom:569.530350px;}
.yed{bottom:569.635350px;}
.y4a{bottom:569.770350px;}
.y80{bottom:569.920350px;}
.y1d4{bottom:575.265900px;}
.y13e{bottom:580.135500px;}
.y16{bottom:581.359200px;}
.y193{bottom:584.121900px;}
.yec{bottom:587.635350px;}
.y49{bottom:587.770350px;}
.y7f{bottom:587.920350px;}
.y1d3{bottom:590.265900px;}
.y156{bottom:590.703000px;}
.y143{bottom:597.172500px;}
.y192{bottom:599.121900px;}
.y15{bottom:599.359200px;}
.y1d2{bottom:605.265900px;}
.yeb{bottom:605.635350px;}
.y48{bottom:605.770350px;}
.yc4{bottom:605.785350px;}
.y7e{bottom:605.920350px;}
.y191{bottom:614.121900px;}
.y13b{bottom:614.208000px;}
.y14{bottom:617.359200px;}
.y1d1{bottom:620.265900px;}
.yea{bottom:623.635350px;}
.y47{bottom:623.770350px;}
.yc3{bottom:623.785350px;}
.y7d{bottom:623.920350px;}
.y152{bottom:628.764000px;}
.y190{bottom:629.121900px;}
.y137{bottom:631.243500px;}
.y1d0{bottom:635.265900px;}
.y13{bottom:635.359200px;}
.ye9{bottom:641.635350px;}
.y46{bottom:641.770350px;}
.yc2{bottom:641.785350px;}
.y7c{bottom:641.920350px;}
.y18f{bottom:644.121900px;}
.y142{bottom:648.279000px;}
.y1cf{bottom:650.265900px;}
.y18e{bottom:659.121900px;}
.y9a{bottom:659.515350px;}
.ye8{bottom:659.635350px;}
.y45{bottom:659.770350px;}
.yc1{bottom:659.785350px;}
.y7b{bottom:659.920350px;}
.y1ce{bottom:665.265900px;}
.y149{bottom:665.314500px;}
.y18d{bottom:674.121900px;}
.y14c{bottom:677.445000px;}
.ye7{bottom:677.635350px;}
.y44{bottom:677.770350px;}
.yc0{bottom:677.785350px;}
.y7a{bottom:677.920350px;}
.y1cd{bottom:680.265900px;}
.y12{bottom:680.517300px;}
.y139{bottom:682.351500px;}
.y18c{bottom:689.121900px;}
.y11{bottom:692.968050px;}
.y1cc{bottom:695.265900px;}
.ye6{bottom:695.635350px;}
.y43{bottom:695.770350px;}
.ybf{bottom:695.785350px;}
.y79{bottom:695.920350px;}
.y148{bottom:699.387000px;}
.y18b{bottom:704.121900px;}
.y1cb{bottom:710.265900px;}
.y150{bottom:712.555500px;}
.ye5{bottom:713.635350px;}
.y42{bottom:713.770350px;}
.ybe{bottom:713.785350px;}
.y78{bottom:713.920350px;}
.y13d{bottom:716.424000px;}
.y18a{bottom:719.121900px;}
.y10{bottom:724.683600px;}
.y1ca{bottom:725.265900px;}
.ye4{bottom:731.635350px;}
.y177{bottom:731.732408px;}
.y41{bottom:731.770350px;}
.ybd{bottom:731.785350px;}
.y77{bottom:731.920350px;}
.y136{bottom:733.459500px;}
.y189{bottom:734.121900px;}
.y1c9{bottom:740.265900px;}
.yf{bottom:743.608950px;}
.y188{bottom:749.121900px;}
.y17c{bottom:749.365350px;}
.ye3{bottom:749.635350px;}
.y40{bottom:749.770350px;}
.ybc{bottom:749.785350px;}
.y76{bottom:749.920350px;}
.y109{bottom:750.591000px;}
.y1c8{bottom:755.265900px;}
.ye{bottom:757.108950px;}
.y187{bottom:764.121900px;}
.yd{bottom:765.183600px;}
.ye2{bottom:767.635350px;}
.y3f{bottom:767.770350px;}
.y212{bottom:767.772600px;}
.ybb{bottom:767.785350px;}
.y75{bottom:767.920350px;}
.y1c7{bottom:770.265900px;}
.yc{bottom:778.683600px;}
.y186{bottom:779.121900px;}
.y123{bottom:780.793500px;}
.y207{bottom:785.263500px;}
.y1c6{bottom:785.265900px;}
.ye1{bottom:785.635350px;}
.y3e{bottom:785.770350px;}
.y211{bottom:785.772600px;}
.yba{bottom:785.785350px;}
.y74{bottom:785.920350px;}
.y185{bottom:794.121900px;}
.yb{bottom:797.608950px;}
.y118{bottom:797.992500px;}
.y206{bottom:800.263500px;}
.y1c5{bottom:800.265900px;}
.y3d{bottom:803.770350px;}
.yb9{bottom:803.785350px;}
.y73{bottom:803.920350px;}
.ya{bottom:805.683600px;}
.y184{bottom:809.121900px;}
.y111{bottom:815.190000px;}
.y205{bottom:815.263500px;}
.y1c4{bottom:815.265900px;}
.y130{bottom:816.322500px;}
.y9{bottom:819.183600px;}
.ye0{bottom:821.230350px;}
.y3c{bottom:821.770350px;}
.y210{bottom:821.772600px;}
.yb8{bottom:821.785350px;}
.y72{bottom:821.920350px;}
.y183{bottom:824.121900px;}
.y12c{bottom:824.653500px;}
.y204{bottom:830.263500px;}
.y1c3{bottom:830.265900px;}
.y113{bottom:832.387500px;}
.y8{bottom:838.108950px;}
.y3b{bottom:839.770350px;}
.y20f{bottom:839.772600px;}
.yb7{bottom:839.785350px;}
.y71{bottom:839.920350px;}
.y203{bottom:845.263500px;}
.y1c2{bottom:845.265900px;}
.y10f{bottom:849.585000px;}
.y182{bottom:857.230350px;}
.y3a{bottom:857.770350px;}
.yb6{bottom:857.785350px;}
.y70{bottom:857.920350px;}
.y202{bottom:860.263500px;}
.y1c1{bottom:860.265900px;}
.y12e{bottom:862.105500px;}
.y10b{bottom:866.782500px;}
.y7{bottom:866.836200px;}
.y201{bottom:875.263500px;}
.y1c0{bottom:875.265900px;}
.y39{bottom:875.770350px;}
.y20e{bottom:875.772600px;}
.yb5{bottom:875.785350px;}
.y11e{bottom:883.980000px;}
.y6{bottom:887.830950px;}
.y200{bottom:890.263500px;}
.y1bf{bottom:890.265900px;}
.y6f{bottom:893.515350px;}
.y38{bottom:893.770350px;}
.y20d{bottom:893.772600px;}
.yb4{bottom:893.785350px;}
.y132{bottom:894.520500px;}
.y10d{bottom:901.177500px;}
.y1ff{bottom:905.263500px;}
.y1be{bottom:905.265900px;}
.y37{bottom:911.770350px;}
.yb3{bottom:911.785350px;}
.y116{bottom:918.376500px;}
.y1fe{bottom:920.263500px;}
.y1bd{bottom:920.265900px;}
.y181{bottom:929.365350px;}
.y36{bottom:929.770350px;}
.y20c{bottom:929.772600px;}
.yb2{bottom:929.785350px;}
.y5{bottom:934.004400px;}
.y1fd{bottom:935.263500px;}
.y1bc{bottom:935.265900px;}
.y122{bottom:935.574000px;}
.y35{bottom:947.770350px;}
.y20b{bottom:947.772600px;}
.yb1{bottom:947.785350px;}
.y1fc{bottom:950.263500px;}
.y1bb{bottom:950.265900px;}
.y11f{bottom:952.774500px;}
.y12a{bottom:964.638000px;}
.y1fb{bottom:965.263500px;}
.y1ba{bottom:965.265900px;}
.y34{bottom:965.770350px;}
.yb0{bottom:965.785350px;}
.y11a{bottom:969.967500px;}
.y4{bottom:970.465200px;}
.y1fa{bottom:980.263500px;}
.y1b9{bottom:980.265900px;}
.y33{bottom:983.770350px;}
.y20a{bottom:983.772600px;}
.yaf{bottom:983.785350px;}
.y125{bottom:987.168000px;}
.y1f9{bottom:995.263500px;}
.y1b8{bottom:995.265900px;}
.y180{bottom:1001.365350px;}
.y32{bottom:1001.770350px;}
.y209{bottom:1001.772600px;}
.yae{bottom:1001.785350px;}
.y121{bottom:1004.368500px;}
.y126{bottom:1004.943000px;}
.y3{bottom:1006.926000px;}
.y1f8{bottom:1010.263500px;}
.y1b7{bottom:1010.265900px;}
.y31{bottom:1019.770350px;}
.y115{bottom:1021.561500px;}
.y1f7{bottom:1025.263500px;}
.y1b6{bottom:1025.265900px;}
.y128{bottom:1032.106500px;}
.y176{bottom:1035.078000px;}
.y208{bottom:1037.367600px;}
.yad{bottom:1037.380350px;}
.y30{bottom:1037.770350px;}
.y11c{bottom:1038.762000px;}
.y1f6{bottom:1040.263500px;}
.y1b5{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y68{bottom:1132.418700px;}
.y6e{bottom:1132.421700px;}
.y1f5{bottom:1132.423500px;}
.ydf{bottom:1132.428300px;}
.y105{bottom:1132.440000px;}
.y99{bottom:1132.467750px;}
.y2e{bottom:1136.092500px;}
.y2d{bottom:1150.492500px;}
.h15{height:9.564000px;}
.h25{height:9.564750px;}
.h23{height:9.565500px;}
.h20{height:11.037000px;}
.h22{height:11.040000px;}
.h21{height:11.041500px;}
.h1e{height:11.046000px;}
.h1d{height:11.473500px;}
.h1c{height:11.475000px;}
.h17{height:11.476500px;}
.h1b{height:11.478000px;}
.h24{height:11.479500px;}
.h19{height:11.482500px;}
.h7{height:19.125417px;}
.h16{height:23.549209px;}
.h1f{height:26.970575px;}
.h1a{height:28.259401px;}
.h18{height:28.297307px;}
.h9{height:28.393066px;}
.h2{height:30.577148px;}
.he{height:32.783203px;}
.h8{height:32.805176px;}
.h26{height:32.969155px;}
.h12{height:33.351562px;}
.h13{height:34.945312px;}
.h11{height:34.968750px;}
.h10{height:34.992188px;}
.hf{height:41.689453px;}
.ha{height:43.681641px;}
.hb{height:43.710938px;}
.hd{height:43.718034px;}
.hc{height:43.740234px;}
.h14{height:52.567951px;}
.h3{height:56.786133px;}
.h6{height:57.100316px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w17{width:11.868000px;}
.w8{width:11.869500px;}
.w18{width:15.631500px;}
.w10{width:15.739500px;}
.wf{width:17.251500px;}
.w2{width:20.236500px;}
.wd{width:22.102500px;}
.we{width:22.104000px;}
.w14{width:34.234500px;}
.w7{width:54.660000px;}
.w9{width:54.661500px;}
.w5{width:54.669000px;}
.w11{width:54.670500px;}
.w6{width:54.717000px;}
.w15{width:54.718500px;}
.wc{width:56.719500px;}
.w13{width:56.721000px;}
.wa{width:85.413000px;}
.w4{width:85.420500px;}
.w12{width:85.422000px;}
.w3{width:85.470000px;}
.w16{width:100.498500px;}
.wb{width:100.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:76.535400px;}
.x15{left:78.661350px;}
.xa{left:96.094500px;}
.x1{left:97.795200px;}
.x1c{left:99.921300px;}
.x44{left:102.047400px;}
.x4{left:106.299150px;}
.xd{left:110.555400px;}
.x47{left:123.307050px;}
.x3{left:125.439150px;}
.x7{left:131.816400px;}
.x5{left:191.331900px;}
.x43{left:194.285400px;}
.x41{left:203.162250px;}
.x42{left:211.360350px;}
.x6{left:212.876400px;}
.x1b{left:220.135350px;}
.x3a{left:309.789000px;}
.x39{left:321.919500px;}
.x3f{left:356.460000px;}
.x17{left:358.969350px;}
.x16{left:364.729350px;}
.x18{left:368.977350px;}
.x1d{left:384.699000px;}
.x3e{left:386.125500px;}
.x2b{left:400.288500px;}
.x3b{left:403.522500px;}
.x25{left:405.330000px;}
.x26{left:415.840500px;}
.x27{left:423.349500px;}
.x32{left:428.374500px;}
.x40{left:432.417000px;}
.x3d{left:434.185500px;}
.x34{left:436.056000px;}
.x33{left:437.268000px;}
.x21{left:449.047500px;}
.xb{left:455.041500px;}
.xe{left:457.085400px;}
.x3c{left:459.097500px;}
.x23{left:463.614000px;}
.x2c{left:471.835500px;}
.x2f{left:476.983500px;}
.x13{left:478.345350px;}
.x8{left:480.476400px;}
.x45{left:482.591400px;}
.xf{left:491.105400px;}
.x38{left:511.293000px;}
.x19{left:512.380350px;}
.x9{left:514.496400px;}
.x28{left:516.925500px;}
.x35{left:522.988500px;}
.x10{left:525.275400px;}
.x29{left:535.524000px;}
.x37{left:537.544500px;}
.x36{left:539.161500px;}
.x2a{left:542.595000px;}
.x31{left:559.020000px;}
.x24{left:561.747000px;}
.x20{left:568.896000px;}
.x2d{left:572.580000px;}
.x22{left:573.852000px;}
.x2e{left:575.296500px;}
.x1e{left:576.322500px;}
.x30{left:580.810500px;}
.x1f{left:583.071000px;}
.x1a{left:612.910350px;}
.x12{left:663.492300px;}
.x2{left:693.365400px;}
.x46{left:722.598600px;}
.x11{left:729.282150px;}
.x48{left:744.758850px;}
.x14{left:750.541950px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v3{vertical-align:25.122667pt;}
.v1{vertical-align:27.005867pt;}
.ls4a{letter-spacing:-3.360000pt;}
.ls4f{letter-spacing:-2.826667pt;}
.ls79{letter-spacing:-2.346667pt;}
.ls4e{letter-spacing:-1.760000pt;}
.ls7f{letter-spacing:-1.653333pt;}
.ls11{letter-spacing:-0.693333pt;}
.ls41{letter-spacing:-0.640000pt;}
.ls7e{letter-spacing:-0.426667pt;}
.ls7b{letter-spacing:-0.298667pt;}
.ls49{letter-spacing:-0.213333pt;}
.ls4d{letter-spacing:-0.160000pt;}
.ls40{letter-spacing:-0.106667pt;}
.ls78{letter-spacing:-0.085333pt;}
.ls34{letter-spacing:-0.053333pt;}
.ls7a{letter-spacing:-0.042667pt;}
.ls10{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.003680pt;}
.ls0{letter-spacing:0.004512pt;}
.ls3{letter-spacing:0.005045pt;}
.ls6a{letter-spacing:0.042667pt;}
.ls1e{letter-spacing:0.053333pt;}
.ls39{letter-spacing:0.070400pt;}
.ls5e{letter-spacing:0.085333pt;}
.ls38{letter-spacing:0.106667pt;}
.ls14{letter-spacing:0.160000pt;}
.ls69{letter-spacing:0.170667pt;}
.ls29{letter-spacing:0.213333pt;}
.ls2f{letter-spacing:0.266667pt;}
.ls57{letter-spacing:0.298667pt;}
.ls28{letter-spacing:0.320000pt;}
.ls67{letter-spacing:0.341333pt;}
.ls1b{letter-spacing:0.373333pt;}
.ls61{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.426667pt;}
.ls3d{letter-spacing:0.480000pt;}
.ls77{letter-spacing:0.512000pt;}
.ls8{letter-spacing:0.533333pt;}
.ls68{letter-spacing:0.554667pt;}
.ls1d{letter-spacing:0.586667pt;}
.ls6b{letter-spacing:0.597333pt;}
.ls7{letter-spacing:0.640000pt;}
.ls5a{letter-spacing:0.682667pt;}
.lsb{letter-spacing:0.693333pt;}
.ls6e{letter-spacing:0.725333pt;}
.ls2c{letter-spacing:0.746667pt;}
.ls74{letter-spacing:0.768000pt;}
.ls3c{letter-spacing:0.800000pt;}
.ls71{letter-spacing:0.810667pt;}
.ls1f{letter-spacing:0.853333pt;}
.ls72{letter-spacing:0.896000pt;}
.ls5b{letter-spacing:0.938667pt;}
.lse{letter-spacing:0.960000pt;}
.ls62{letter-spacing:0.981333pt;}
.ls18{letter-spacing:1.013333pt;}
.ls64{letter-spacing:1.024000pt;}
.lsf{letter-spacing:1.066667pt;}
.ls76{letter-spacing:1.109333pt;}
.ls30{letter-spacing:1.120000pt;}
.ls75{letter-spacing:1.152000pt;}
.ls35{letter-spacing:1.173333pt;}
.ls15{letter-spacing:1.226667pt;}
.ls3e{letter-spacing:1.280000pt;}
.ls6c{letter-spacing:1.322667pt;}
.ls1a{letter-spacing:1.333333pt;}
.ls60{letter-spacing:1.365333pt;}
.ls13{letter-spacing:1.386667pt;}
.ls59{letter-spacing:1.408000pt;}
.ls2a{letter-spacing:1.440000pt;}
.ls63{letter-spacing:1.450667pt;}
.ls21{letter-spacing:1.493333pt;}
.ls6f{letter-spacing:1.536000pt;}
.ls2d{letter-spacing:1.546667pt;}
.ls7c{letter-spacing:1.578667pt;}
.ls50{letter-spacing:1.600000pt;}
.ls6d{letter-spacing:1.621333pt;}
.ls17{letter-spacing:1.653333pt;}
.ls25{letter-spacing:1.706667pt;}
.ls33{letter-spacing:1.760000pt;}
.ls58{letter-spacing:1.792000pt;}
.ls37{letter-spacing:1.813333pt;}
.ls36{letter-spacing:1.866667pt;}
.ls23{letter-spacing:1.920000pt;}
.ls1c{letter-spacing:1.973333pt;}
.ls66{letter-spacing:2.048000pt;}
.lsc{letter-spacing:2.080000pt;}
.ls5f{letter-spacing:2.090667pt;}
.ls73{letter-spacing:2.133333pt;}
.ls7d{letter-spacing:2.176000pt;}
.ls31{letter-spacing:2.186667pt;}
.ls26{letter-spacing:2.240000pt;}
.ls2b{letter-spacing:2.293333pt;}
.ls45{letter-spacing:2.346667pt;}
.ls27{letter-spacing:2.400000pt;}
.ls3a{letter-spacing:2.453333pt;}
.lsd{letter-spacing:2.506667pt;}
.ls2e{letter-spacing:2.560000pt;}
.ls42{letter-spacing:2.613333pt;}
.ls43{letter-spacing:2.666667pt;}
.ls5d{letter-spacing:2.688000pt;}
.ls4b{letter-spacing:2.720000pt;}
.ls70{letter-spacing:2.730667pt;}
.ls51{letter-spacing:2.773333pt;}
.ls5{letter-spacing:2.826667pt;}
.ls3f{letter-spacing:2.880000pt;}
.ls24{letter-spacing:2.933333pt;}
.ls16{letter-spacing:2.986667pt;}
.ls47{letter-spacing:3.040000pt;}
.ls48{letter-spacing:3.200000pt;}
.ls3b{letter-spacing:3.306667pt;}
.ls65{letter-spacing:3.370667pt;}
.ls44{letter-spacing:3.413333pt;}
.ls9{letter-spacing:3.466667pt;}
.ls32{letter-spacing:3.520000pt;}
.ls5c{letter-spacing:3.541333pt;}
.ls20{letter-spacing:3.786667pt;}
.ls12{letter-spacing:4.213333pt;}
.lsa{letter-spacing:4.266667pt;}
.ls56{letter-spacing:4.480000pt;}
.ls4c{letter-spacing:4.586667pt;}
.ls19{letter-spacing:4.693333pt;}
.ls46{letter-spacing:4.800000pt;}
.ls22{letter-spacing:4.906667pt;}
.ls55{letter-spacing:5.226667pt;}
.ls52{letter-spacing:5.440000pt;}
.ls54{letter-spacing:5.546667pt;}
.ls53{letter-spacing:7.786667pt;}
.ls2{letter-spacing:52.918112pt;}
.ls1{letter-spacing:52.918645pt;}
.ws62{word-spacing:-18.240000pt;}
.ws1{word-spacing:-14.826667pt;}
.wsc{word-spacing:-14.720000pt;}
.ws57{word-spacing:-14.133333pt;}
.ws58{word-spacing:-13.973333pt;}
.ws59{word-spacing:-13.920000pt;}
.ws3{word-spacing:-13.866667pt;}
.wsd{word-spacing:-13.653333pt;}
.ws5a{word-spacing:-13.440000pt;}
.ws25{word-spacing:-13.333333pt;}
.ws4{word-spacing:-11.861333pt;}
.ws6c{word-spacing:-11.648000pt;}
.ws6f{word-spacing:-11.520000pt;}
.ws6a{word-spacing:-11.349333pt;}
.ws2{word-spacing:-11.120000pt;}
.ws6b{word-spacing:-10.666667pt;}
.ws6d{word-spacing:-10.624000pt;}
.ws6e{word-spacing:-10.368000pt;}
.ws0{word-spacing:-9.076144pt;}
.ws2d{word-spacing:-7.773333pt;}
.ws7{word-spacing:-4.163733pt;}
.ws47{word-spacing:-3.413333pt;}
.ws6{word-spacing:-2.565333pt;}
.ws71{word-spacing:-2.400000pt;}
.ws81{word-spacing:-2.346667pt;}
.ws5c{word-spacing:-2.186667pt;}
.ws8f{word-spacing:-2.176000pt;}
.ws8b{word-spacing:-2.133333pt;}
.ws79{word-spacing:-2.090667pt;}
.ws5d{word-spacing:-2.080000pt;}
.ws23{word-spacing:-1.973333pt;}
.ws8c{word-spacing:-1.621333pt;}
.ws8e{word-spacing:-1.578667pt;}
.ws83{word-spacing:-1.536000pt;}
.ws14{word-spacing:-1.493333pt;}
.ws74{word-spacing:-1.408000pt;}
.ws7a{word-spacing:-1.365333pt;}
.ws82{word-spacing:-1.322667pt;}
.ws4e{word-spacing:-1.066667pt;}
.ws7d{word-spacing:-1.024000pt;}
.ws8{word-spacing:-1.008000pt;}
.ws7c{word-spacing:-0.981333pt;}
.ws1a{word-spacing:-0.960000pt;}
.ws87{word-spacing:-0.896000pt;}
.ws85{word-spacing:-0.853333pt;}
.ws64{word-spacing:-0.693333pt;}
.ws8a{word-spacing:-0.682667pt;}
.ws15{word-spacing:-0.640000pt;}
.ws37{word-spacing:-0.586667pt;}
.ws63{word-spacing:-0.480000pt;}
.ws33{word-spacing:-0.426667pt;}
.ws7b{word-spacing:-0.384000pt;}
.ws42{word-spacing:-0.373333pt;}
.ws1d{word-spacing:-0.320000pt;}
.ws21{word-spacing:-0.266667pt;}
.ws19{word-spacing:-0.213333pt;}
.ws11{word-spacing:-0.106667pt;}
.ws78{word-spacing:-0.085333pt;}
.ws41{word-spacing:-0.053333pt;}
.ws5{word-spacing:0.000000pt;}
.ws7f{word-spacing:0.042667pt;}
.ws51{word-spacing:0.053333pt;}
.ws12{word-spacing:0.106667pt;}
.ws2b{word-spacing:0.128000pt;}
.ws3d{word-spacing:0.213333pt;}
.ws29{word-spacing:0.266667pt;}
.ws1b{word-spacing:0.320000pt;}
.ws61{word-spacing:0.341333pt;}
.ws26{word-spacing:0.426667pt;}
.ws60{word-spacing:0.480000pt;}
.ws10{word-spacing:0.533333pt;}
.ws73{word-spacing:0.554667pt;}
.ws35{word-spacing:0.586667pt;}
.ws13{word-spacing:0.746667pt;}
.ws8d{word-spacing:0.768000pt;}
.ws3c{word-spacing:0.853333pt;}
.ws28{word-spacing:0.906667pt;}
.ws5b{word-spacing:0.960000pt;}
.ws43{word-spacing:1.066667pt;}
.ws84{word-spacing:1.109333pt;}
.wsf{word-spacing:1.120000pt;}
.ws75{word-spacing:1.152000pt;}
.ws53{word-spacing:1.226667pt;}
.ws22{word-spacing:1.280000pt;}
.ws86{word-spacing:1.322667pt;}
.ws1e{word-spacing:1.386667pt;}
.ws2e{word-spacing:1.440000pt;}
.ws52{word-spacing:1.546667pt;}
.ws2c{word-spacing:1.578667pt;}
.ws4a{word-spacing:1.600000pt;}
.ws88{word-spacing:1.621333pt;}
.ws90{word-spacing:1.653333pt;}
.ws36{word-spacing:1.760000pt;}
.ws40{word-spacing:1.813333pt;}
.ws67{word-spacing:1.866667pt;}
.ws3b{word-spacing:1.920000pt;}
.ws70{word-spacing:1.973333pt;}
.wse{word-spacing:2.026667pt;}
.ws7e{word-spacing:2.176000pt;}
.ws17{word-spacing:2.186667pt;}
.ws24{word-spacing:2.240000pt;}
.ws38{word-spacing:2.293333pt;}
.ws3e{word-spacing:2.346667pt;}
.ws2a{word-spacing:2.389333pt;}
.ws27{word-spacing:2.400000pt;}
.ws4f{word-spacing:2.506667pt;}
.ws5e{word-spacing:2.560000pt;}
.ws4c{word-spacing:2.613333pt;}
.ws48{word-spacing:2.666667pt;}
.ws45{word-spacing:2.720000pt;}
.ws80{word-spacing:2.730667pt;}
.ws3a{word-spacing:2.773333pt;}
.ws5f{word-spacing:2.826667pt;}
.ws89{word-spacing:2.858667pt;}
.ws2f{word-spacing:2.880000pt;}
.ws77{word-spacing:2.944000pt;}
.ws49{word-spacing:3.040000pt;}
.ws1c{word-spacing:3.093333pt;}
.ws50{word-spacing:3.146667pt;}
.ws56{word-spacing:3.157333pt;}
.ws39{word-spacing:3.200000pt;}
.ws30{word-spacing:3.253333pt;}
.ws4d{word-spacing:3.306667pt;}
.ws44{word-spacing:3.360000pt;}
.ws46{word-spacing:3.413333pt;}
.ws54{word-spacing:3.466667pt;}
.ws76{word-spacing:3.498667pt;}
.ws55{word-spacing:3.520000pt;}
.ws72{word-spacing:3.541333pt;}
.ws20{word-spacing:3.573333pt;}
.ws18{word-spacing:3.680000pt;}
.ws32{word-spacing:3.786667pt;}
.wsa{word-spacing:3.840000pt;}
.ws65{word-spacing:3.893333pt;}
.ws4b{word-spacing:3.946667pt;}
.ws34{word-spacing:4.053333pt;}
.ws3f{word-spacing:4.106667pt;}
.ws66{word-spacing:4.160000pt;}
.ws1f{word-spacing:4.320000pt;}
.ws9{word-spacing:4.373333pt;}
.wsb{word-spacing:4.426667pt;}
.ws31{word-spacing:4.533333pt;}
.ws69{word-spacing:4.853333pt;}
.ws68{word-spacing:4.906667pt;}
.ws16{word-spacing:5.066667pt;}
._a{margin-left:-2575.736533pt;}
._1e{margin-left:-2554.573867pt;}
._7{margin-left:-5.838400pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.548800pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-0.908267pt;}
._6{width:0.906667pt;}
._9{width:2.186667pt;}
._b{width:3.270933pt;}
._4{width:4.163733pt;}
._8{width:5.272533pt;}
._1d{width:6.268267pt;}
._1c{width:7.786667pt;}
._5{width:52.795568pt;}
._20{width:238.805333pt;}
._21{width:284.458667pt;}
._26{width:292.394667pt;}
._1b{width:360.704000pt;}
._1a{width:364.666667pt;}
._19{width:375.765333pt;}
._17{width:388.608000pt;}
._23{width:400.085333pt;}
._d{width:404.437333pt;}
._11{width:407.552000pt;}
._14{width:421.802667pt;}
._e{width:430.343467pt;}
._16{width:488.832000pt;}
._13{width:495.708800pt;}
._10{width:496.860800pt;}
._12{width:498.864000pt;}
._18{width:511.402667pt;}
._22{width:514.773333pt;}
._25{width:546.780800pt;}
._29{width:565.810133pt;}
._f{width:616.197333pt;}
._1f{width:622.677333pt;}
._24{width:634.496000pt;}
._28{width:681.863467pt;}
._15{width:710.618667pt;}
._27{width:798.002133pt;}
._c{width:809.991467pt;}
.fs5{font-size:23.320000pt;}
.fsb{font-size:28.752533pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fsc{font-size:34.503467pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fsd{font-size:40.253867pt;}
.fs9{font-size:42.666667pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y10a{bottom:2.333067pt;}
.y16a{bottom:2.334000pt;}
.y135{bottom:2.334667pt;}
.y129{bottom:2.641333pt;}
.y15e{bottom:2.643867pt;}
.y175{bottom:2.644000pt;}
.y157{bottom:2.644133pt;}
.y153{bottom:2.644267pt;}
.y133{bottom:2.644533pt;}
.y131{bottom:2.644667pt;}
.y15c{bottom:2.644800pt;}
.y151{bottom:2.645067pt;}
.y14f{bottom:2.645200pt;}
.y12f{bottom:2.645467pt;}
.y155{bottom:2.645600pt;}
.y12d{bottom:2.645867pt;}
.y14d{bottom:2.646133pt;}
.y127{bottom:2.646667pt;}
.y12b{bottom:2.648800pt;}
.y120{bottom:2.797867pt;}
.y11d{bottom:2.799600pt;}
.y144{bottom:2.799733pt;}
.y16c{bottom:2.799867pt;}
.y160{bottom:2.800000pt;}
.y13c{bottom:2.800133pt;}
.y117{bottom:2.800267pt;}
.y119{bottom:2.800400pt;}
.y112{bottom:2.800533pt;}
.y114{bottom:2.800667pt;}
.y13f{bottom:2.800800pt;}
.y110{bottom:2.800933pt;}
.y10c{bottom:2.801067pt;}
.y13a{bottom:2.801200pt;}
.y10e{bottom:2.801333pt;}
.y124{bottom:2.801467pt;}
.y146{bottom:2.801600pt;}
.y162{bottom:2.801867pt;}
.y11b{bottom:2.802133pt;}
.y14a{bottom:2.802267pt;}
.y1{bottom:41.124400pt;}
.y2f{bottom:42.468667pt;}
.y6d{bottom:73.966667pt;}
.y108{bottom:74.176533pt;}
.yde{bottom:74.186933pt;}
.y17b{bottom:74.342533pt;}
.y65{bottom:74.462533pt;}
.ydc{bottom:74.489200pt;}
.y22{bottom:78.242667pt;}
.y1b4{bottom:79.219467pt;}
.y98{bottom:82.766000pt;}
.y104{bottom:83.178667pt;}
.y1f4{bottom:84.678667pt;}
.y6c{bottom:87.961333pt;}
.y107{bottom:88.171200pt;}
.ydd{bottom:88.181600pt;}
.y17f{bottom:90.102533pt;}
.y17a{bottom:90.342533pt;}
.y64{bottom:90.462533pt;}
.ydb{bottom:90.489200pt;}
.yac{bottom:90.595867pt;}
.y21{bottom:91.576000pt;}
.y1b3{bottom:92.552800pt;}
.y97{bottom:97.208667pt;}
.y103{bottom:97.621333pt;}
.y1f3{bottom:98.012000pt;}
.y6b{bottom:101.956000pt;}
.y106{bottom:102.165867pt;}
.y1b2{bottom:105.886133pt;}
.y63{bottom:106.462533pt;}
.yda{bottom:106.489200pt;}
.yab{bottom:106.595867pt;}
.y1f2{bottom:111.345333pt;}
.y96{bottom:111.651333pt;}
.y102{bottom:112.064000pt;}
.y6a{bottom:115.950667pt;}
.y1b1{bottom:119.219467pt;}
.y179{bottom:121.982533pt;}
.y62{bottom:122.462533pt;}
.yd9{bottom:122.489200pt;}
.yaa{bottom:122.595867pt;}
.y169{bottom:123.212667pt;}
.y1f1{bottom:124.678667pt;}
.y95{bottom:126.094000pt;}
.y101{bottom:126.506667pt;}
.y69{bottom:129.945333pt;}
.y1b0{bottom:132.552800pt;}
.y1f0{bottom:138.012000pt;}
.y17e{bottom:138.102533pt;}
.y61{bottom:138.462533pt;}
.yd8{bottom:138.489200pt;}
.ya9{bottom:138.595867pt;}
.y94{bottom:140.536667pt;}
.y100{bottom:140.949333pt;}
.y1af{bottom:145.886133pt;}
.y159{bottom:149.497333pt;}
.y1ef{bottom:151.345333pt;}
.y60{bottom:154.462533pt;}
.yd7{bottom:154.489200pt;}
.y2a{bottom:154.590533pt;}
.ya8{bottom:154.595867pt;}
.y93{bottom:154.979333pt;}
.yff{bottom:155.392000pt;}
.y1ae{bottom:159.219467pt;}
.y1ee{bottom:164.678667pt;}
.y161{bottom:166.073333pt;}
.y92{bottom:169.422000pt;}
.y5f{bottom:170.462533pt;}
.yd6{bottom:170.489200pt;}
.y29{bottom:170.590533pt;}
.ya7{bottom:170.595867pt;}
.y1ad{bottom:172.552800pt;}
.y1ed{bottom:178.012000pt;}
.y164{bottom:180.298667pt;}
.y15b{bottom:182.156000pt;}
.yfe{bottom:183.402667pt;}
.y91{bottom:183.864667pt;}
.y1ac{bottom:185.886133pt;}
.y5e{bottom:186.462533pt;}
.yd5{bottom:186.489200pt;}
.y28{bottom:186.590533pt;}
.ya6{bottom:186.595867pt;}
.y1ec{bottom:191.345333pt;}
.y15f{bottom:195.730667pt;}
.y90{bottom:198.307333pt;}
.y1ab{bottom:199.219467pt;}
.y67{bottom:202.102533pt;}
.y5d{bottom:202.462533pt;}
.yd4{bottom:202.489200pt;}
.y27{bottom:202.590533pt;}
.ya5{bottom:202.595867pt;}
.y1eb{bottom:204.678667pt;}
.y15d{bottom:207.441333pt;}
.y1aa{bottom:212.552800pt;}
.y8f{bottom:212.750000pt;}
.y163{bottom:212.861333pt;}
.yfd{bottom:214.422533pt;}
.y1ea{bottom:218.012000pt;}
.y5c{bottom:218.462533pt;}
.y26{bottom:218.590533pt;}
.ya4{bottom:218.595867pt;}
.y1a9{bottom:225.886133pt;}
.y8e{bottom:227.192667pt;}
.y165{bottom:228.520000pt;}
.y1e9{bottom:231.345333pt;}
.y173{bottom:231.550667pt;}
.yfc{bottom:231.755867pt;}
.y66{bottom:233.982533pt;}
.y17d{bottom:234.102533pt;}
.yd3{bottom:234.129200pt;}
.y5b{bottom:234.462533pt;}
.y25{bottom:234.590533pt;}
.ya3{bottom:234.595867pt;}
.y1a8{bottom:239.219467pt;}
.y8d{bottom:241.635333pt;}
.y167{bottom:242.740000pt;}
.y1e8{bottom:244.678667pt;}
.y174{bottom:245.089333pt;}
.y5a{bottom:250.462533pt;}
.y24{bottom:250.590533pt;}
.ya2{bottom:250.595867pt;}
.y1a7{bottom:252.552800pt;}
.y8c{bottom:256.078000pt;}
.y166{bottom:257.452000pt;}
.y1e7{bottom:258.012000pt;}
.y1a6{bottom:265.886133pt;}
.y59{bottom:266.462533pt;}
.y2c{bottom:266.590533pt;}
.ya1{bottom:266.595867pt;}
.y8b{bottom:270.520667pt;}
.y1e6{bottom:271.345333pt;}
.y172{bottom:273.506667pt;}
.y1a5{bottom:279.219467pt;}
.y23{bottom:282.230533pt;}
.yfb{bottom:282.342533pt;}
.y58{bottom:282.462533pt;}
.y2b{bottom:282.590533pt;}
.ya0{bottom:282.595867pt;}
.yd2{bottom:282.609200pt;}
.y1e5{bottom:284.678667pt;}
.y168{bottom:288.313333pt;}
.y1a4{bottom:292.552800pt;}
.y1e4{bottom:298.012000pt;}
.yfa{bottom:298.342533pt;}
.y57{bottom:298.462533pt;}
.y8a{bottom:298.531333pt;}
.y9f{bottom:298.595867pt;}
.yd1{bottom:298.609200pt;}
.y16b{bottom:304.368000pt;}
.y1a3{bottom:305.886133pt;}
.y15a{bottom:307.038667pt;}
.y1e3{bottom:311.345333pt;}
.yf9{bottom:314.342533pt;}
.y56{bottom:314.462533pt;}
.y9e{bottom:314.595867pt;}
.yd0{bottom:314.609200pt;}
.y1a2{bottom:319.219467pt;}
.y16e{bottom:319.797333pt;}
.y1e2{bottom:324.678667pt;}
.y89{bottom:329.555867pt;}
.yf8{bottom:330.342533pt;}
.y55{bottom:330.462533pt;}
.y9d{bottom:330.595867pt;}
.ycf{bottom:330.609200pt;}
.y1a1{bottom:332.552800pt;}
.y16f{bottom:335.228000pt;}
.y1e1{bottom:338.012000pt;}
.y1a0{bottom:345.886133pt;}
.yf7{bottom:346.342533pt;}
.y54{bottom:346.462533pt;}
.y9c{bottom:346.595867pt;}
.yce{bottom:346.609200pt;}
.y20{bottom:348.452133pt;}
.y171{bottom:350.658667pt;}
.y1e0{bottom:351.345333pt;}
.y19f{bottom:359.219467pt;}
.yf6{bottom:362.342533pt;}
.y53{bottom:362.462533pt;}
.y9b{bottom:362.595867pt;}
.ycd{bottom:362.609200pt;}
.y1f{bottom:364.457067pt;}
.y1df{bottom:364.678667pt;}
.y170{bottom:366.089333pt;}
.y19e{bottom:372.552800pt;}
.y178{bottom:374.055822pt;}
.y1de{bottom:378.012000pt;}
.yf5{bottom:378.342533pt;}
.y52{bottom:378.462533pt;}
.y88{bottom:378.595867pt;}
.ycc{bottom:378.609200pt;}
.y16d{bottom:381.520000pt;}
.y19d{bottom:385.886133pt;}
.y1e{bottom:388.763733pt;}
.y1dd{bottom:391.345333pt;}
.yf4{bottom:394.342533pt;}
.y51{bottom:394.462533pt;}
.y87{bottom:394.595867pt;}
.ycb{bottom:394.609200pt;}
.y134{bottom:397.968000pt;}
.y19c{bottom:399.219467pt;}
.y1dc{bottom:404.678667pt;}
.y1d{bottom:404.763733pt;}
.yf3{bottom:410.342533pt;}
.y50{bottom:410.462533pt;}
.y86{bottom:410.595867pt;}
.yca{bottom:410.609200pt;}
.y19b{bottom:412.552800pt;}
.y1db{bottom:418.012000pt;}
.y1c{bottom:420.763733pt;}
.y14b{bottom:424.817333pt;}
.y19a{bottom:425.886133pt;}
.yf2{bottom:426.342533pt;}
.y4f{bottom:426.462533pt;}
.y85{bottom:426.595867pt;}
.yc9{bottom:426.609200pt;}
.y1da{bottom:431.345333pt;}
.y1b{bottom:436.763733pt;}
.y199{bottom:439.219467pt;}
.y138{bottom:439.960000pt;}
.yf1{bottom:442.342533pt;}
.y4e{bottom:442.462533pt;}
.y84{bottom:442.595867pt;}
.yc8{bottom:442.609200pt;}
.y1d9{bottom:444.678667pt;}
.y198{bottom:452.552800pt;}
.y1a{bottom:452.763733pt;}
.y141{bottom:455.104000pt;}
.y158{bottom:457.236000pt;}
.y1d8{bottom:458.012000pt;}
.yf0{bottom:458.342533pt;}
.y4d{bottom:458.462533pt;}
.y83{bottom:458.595867pt;}
.yc7{bottom:458.609200pt;}
.y14e{bottom:464.448000pt;}
.y197{bottom:465.886133pt;}
.y19{bottom:468.763733pt;}
.y147{bottom:470.246667pt;}
.y1d7{bottom:471.345333pt;}
.yef{bottom:474.342533pt;}
.y4c{bottom:474.462533pt;}
.y82{bottom:474.595867pt;}
.yc6{bottom:474.609200pt;}
.y196{bottom:479.219467pt;}
.y1d6{bottom:484.680800pt;}
.y18{bottom:484.763733pt;}
.y145{bottom:485.389333pt;}
.yee{bottom:490.342533pt;}
.y4b{bottom:490.462533pt;}
.y81{bottom:490.595867pt;}
.y195{bottom:492.552800pt;}
.y154{bottom:497.633333pt;}
.y1d5{bottom:498.014133pt;}
.y140{bottom:500.533333pt;}
.y17{bottom:500.763733pt;}
.y194{bottom:505.886133pt;}
.yc5{bottom:506.249200pt;}
.yed{bottom:506.342533pt;}
.y4a{bottom:506.462533pt;}
.y80{bottom:506.595867pt;}
.y1d4{bottom:511.347467pt;}
.y13e{bottom:515.676000pt;}
.y16{bottom:516.763733pt;}
.y193{bottom:519.219467pt;}
.yec{bottom:522.342533pt;}
.y49{bottom:522.462533pt;}
.y7f{bottom:522.595867pt;}
.y1d3{bottom:524.680800pt;}
.y156{bottom:525.069333pt;}
.y143{bottom:530.820000pt;}
.y192{bottom:532.552800pt;}
.y15{bottom:532.763733pt;}
.y1d2{bottom:538.014133pt;}
.yeb{bottom:538.342533pt;}
.y48{bottom:538.462533pt;}
.yc4{bottom:538.475867pt;}
.y7e{bottom:538.595867pt;}
.y191{bottom:545.886133pt;}
.y13b{bottom:545.962667pt;}
.y14{bottom:548.763733pt;}
.y1d1{bottom:551.347467pt;}
.yea{bottom:554.342533pt;}
.y47{bottom:554.462533pt;}
.yc3{bottom:554.475867pt;}
.y7d{bottom:554.595867pt;}
.y152{bottom:558.901333pt;}
.y190{bottom:559.219467pt;}
.y137{bottom:561.105333pt;}
.y1d0{bottom:564.680800pt;}
.y13{bottom:564.763733pt;}
.ye9{bottom:570.342533pt;}
.y46{bottom:570.462533pt;}
.yc2{bottom:570.475867pt;}
.y7c{bottom:570.595867pt;}
.y18f{bottom:572.552800pt;}
.y142{bottom:576.248000pt;}
.y1cf{bottom:578.014133pt;}
.y18e{bottom:585.886133pt;}
.y9a{bottom:586.235867pt;}
.ye8{bottom:586.342533pt;}
.y45{bottom:586.462533pt;}
.yc1{bottom:586.475867pt;}
.y7b{bottom:586.595867pt;}
.y1ce{bottom:591.347467pt;}
.y149{bottom:591.390667pt;}
.y18d{bottom:599.219467pt;}
.y14c{bottom:602.173333pt;}
.ye7{bottom:602.342533pt;}
.y44{bottom:602.462533pt;}
.yc0{bottom:602.475867pt;}
.y7a{bottom:602.595867pt;}
.y1cd{bottom:604.680800pt;}
.y12{bottom:604.904267pt;}
.y139{bottom:606.534667pt;}
.y18c{bottom:612.552800pt;}
.y11{bottom:615.971600pt;}
.y1cc{bottom:618.014133pt;}
.ye6{bottom:618.342533pt;}
.y43{bottom:618.462533pt;}
.ybf{bottom:618.475867pt;}
.y79{bottom:618.595867pt;}
.y148{bottom:621.677333pt;}
.y18b{bottom:625.886133pt;}
.y1cb{bottom:631.347467pt;}
.y150{bottom:633.382667pt;}
.ye5{bottom:634.342533pt;}
.y42{bottom:634.462533pt;}
.ybe{bottom:634.475867pt;}
.y78{bottom:634.595867pt;}
.y13d{bottom:636.821333pt;}
.y18a{bottom:639.219467pt;}
.y10{bottom:644.163200pt;}
.y1ca{bottom:644.680800pt;}
.ye4{bottom:650.342533pt;}
.y177{bottom:650.428807pt;}
.y41{bottom:650.462533pt;}
.ybd{bottom:650.475867pt;}
.y77{bottom:650.595867pt;}
.y136{bottom:651.964000pt;}
.y189{bottom:652.552800pt;}
.y1c9{bottom:658.014133pt;}
.yf{bottom:660.985733pt;}
.y188{bottom:665.886133pt;}
.y17c{bottom:666.102533pt;}
.ye3{bottom:666.342533pt;}
.y40{bottom:666.462533pt;}
.ybc{bottom:666.475867pt;}
.y76{bottom:666.595867pt;}
.y109{bottom:667.192000pt;}
.y1c8{bottom:671.347467pt;}
.ye{bottom:672.985733pt;}
.y187{bottom:679.219467pt;}
.yd{bottom:680.163200pt;}
.ye2{bottom:682.342533pt;}
.y3f{bottom:682.462533pt;}
.y212{bottom:682.464533pt;}
.ybb{bottom:682.475867pt;}
.y75{bottom:682.595867pt;}
.y1c7{bottom:684.680800pt;}
.yc{bottom:692.163200pt;}
.y186{bottom:692.552800pt;}
.y123{bottom:694.038667pt;}
.y207{bottom:698.012000pt;}
.y1c6{bottom:698.014133pt;}
.ye1{bottom:698.342533pt;}
.y3e{bottom:698.462533pt;}
.y211{bottom:698.464533pt;}
.yba{bottom:698.475867pt;}
.y74{bottom:698.595867pt;}
.y185{bottom:705.886133pt;}
.yb{bottom:708.985733pt;}
.y118{bottom:709.326667pt;}
.y206{bottom:711.345333pt;}
.y1c5{bottom:711.347467pt;}
.y3d{bottom:714.462533pt;}
.yb9{bottom:714.475867pt;}
.y73{bottom:714.595867pt;}
.ya{bottom:716.163200pt;}
.y184{bottom:719.219467pt;}
.y111{bottom:724.613333pt;}
.y205{bottom:724.678667pt;}
.y1c4{bottom:724.680800pt;}
.y130{bottom:725.620000pt;}
.y9{bottom:728.163200pt;}
.ye0{bottom:729.982533pt;}
.y3c{bottom:730.462533pt;}
.y210{bottom:730.464533pt;}
.yb8{bottom:730.475867pt;}
.y72{bottom:730.595867pt;}
.y183{bottom:732.552800pt;}
.y12c{bottom:733.025333pt;}
.y204{bottom:738.012000pt;}
.y1c3{bottom:738.014133pt;}
.y113{bottom:739.900000pt;}
.y8{bottom:744.985733pt;}
.y3b{bottom:746.462533pt;}
.y20f{bottom:746.464533pt;}
.yb7{bottom:746.475867pt;}
.y71{bottom:746.595867pt;}
.y203{bottom:751.345333pt;}
.y1c2{bottom:751.347467pt;}
.y10f{bottom:755.186667pt;}
.y182{bottom:761.982533pt;}
.y3a{bottom:762.462533pt;}
.yb6{bottom:762.475867pt;}
.y70{bottom:762.595867pt;}
.y202{bottom:764.678667pt;}
.y1c1{bottom:764.680800pt;}
.y12e{bottom:766.316000pt;}
.y10b{bottom:770.473333pt;}
.y7{bottom:770.521067pt;}
.y201{bottom:778.012000pt;}
.y1c0{bottom:778.014133pt;}
.y39{bottom:778.462533pt;}
.y20e{bottom:778.464533pt;}
.yb5{bottom:778.475867pt;}
.y11e{bottom:785.760000pt;}
.y6{bottom:789.183067pt;}
.y200{bottom:791.345333pt;}
.y1bf{bottom:791.347467pt;}
.y6f{bottom:794.235867pt;}
.y38{bottom:794.462533pt;}
.y20d{bottom:794.464533pt;}
.yb4{bottom:794.475867pt;}
.y132{bottom:795.129333pt;}
.y10d{bottom:801.046667pt;}
.y1ff{bottom:804.678667pt;}
.y1be{bottom:804.680800pt;}
.y37{bottom:810.462533pt;}
.yb3{bottom:810.475867pt;}
.y116{bottom:816.334667pt;}
.y1fe{bottom:818.012000pt;}
.y1bd{bottom:818.014133pt;}
.y181{bottom:826.102533pt;}
.y36{bottom:826.462533pt;}
.y20c{bottom:826.464533pt;}
.yb2{bottom:826.475867pt;}
.y5{bottom:830.226133pt;}
.y1fd{bottom:831.345333pt;}
.y1bc{bottom:831.347467pt;}
.y122{bottom:831.621333pt;}
.y35{bottom:842.462533pt;}
.y20b{bottom:842.464533pt;}
.yb1{bottom:842.475867pt;}
.y1fc{bottom:844.678667pt;}
.y1bb{bottom:844.680800pt;}
.y11f{bottom:846.910667pt;}
.y12a{bottom:857.456000pt;}
.y1fb{bottom:858.012000pt;}
.y1ba{bottom:858.014133pt;}
.y34{bottom:858.462533pt;}
.yb0{bottom:858.475867pt;}
.y11a{bottom:862.193333pt;}
.y4{bottom:862.635733pt;}
.y1fa{bottom:871.345333pt;}
.y1b9{bottom:871.347467pt;}
.y33{bottom:874.462533pt;}
.y20a{bottom:874.464533pt;}
.yaf{bottom:874.475867pt;}
.y125{bottom:877.482667pt;}
.y1f9{bottom:884.678667pt;}
.y1b8{bottom:884.680800pt;}
.y180{bottom:890.102533pt;}
.y32{bottom:890.462533pt;}
.y209{bottom:890.464533pt;}
.yae{bottom:890.475867pt;}
.y121{bottom:892.772000pt;}
.y126{bottom:893.282667pt;}
.y3{bottom:895.045333pt;}
.y1f8{bottom:898.012000pt;}
.y1b7{bottom:898.014133pt;}
.y31{bottom:906.462533pt;}
.y115{bottom:908.054667pt;}
.y1f7{bottom:911.345333pt;}
.y1b6{bottom:911.347467pt;}
.y128{bottom:917.428000pt;}
.y176{bottom:920.069333pt;}
.y208{bottom:922.104533pt;}
.yad{bottom:922.115867pt;}
.y30{bottom:922.462533pt;}
.y11c{bottom:923.344000pt;}
.y1f6{bottom:924.678667pt;}
.y1b5{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y68{bottom:1006.594400pt;}
.y6e{bottom:1006.597067pt;}
.y1f5{bottom:1006.598667pt;}
.ydf{bottom:1006.602933pt;}
.y105{bottom:1006.613333pt;}
.y99{bottom:1006.638000pt;}
.y2e{bottom:1009.860000pt;}
.y2d{bottom:1022.660000pt;}
.h15{height:8.501333pt;}
.h25{height:8.502000pt;}
.h23{height:8.502667pt;}
.h20{height:9.810667pt;}
.h22{height:9.813333pt;}
.h21{height:9.814667pt;}
.h1e{height:9.818667pt;}
.h1d{height:10.198667pt;}
.h1c{height:10.200000pt;}
.h17{height:10.201333pt;}
.h1b{height:10.202667pt;}
.h24{height:10.204000pt;}
.h19{height:10.206667pt;}
.h7{height:17.000371pt;}
.h16{height:20.932630pt;}
.h1f{height:23.973844pt;}
.h1a{height:25.119467pt;}
.h18{height:25.153162pt;}
.h9{height:25.238281pt;}
.h2{height:27.179688pt;}
.he{height:29.140625pt;}
.h8{height:29.160156pt;}
.h26{height:29.305916pt;}
.h12{height:29.645833pt;}
.h13{height:31.062500pt;}
.h11{height:31.083333pt;}
.h10{height:31.104167pt;}
.hf{height:37.057292pt;}
.ha{height:38.828125pt;}
.hb{height:38.854167pt;}
.hd{height:38.860475pt;}
.hc{height:38.880208pt;}
.h14{height:46.727068pt;}
.h3{height:50.476562pt;}
.h6{height:50.755837pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w17{width:10.549333pt;}
.w8{width:10.550667pt;}
.w18{width:13.894667pt;}
.w10{width:13.990667pt;}
.wf{width:15.334667pt;}
.w2{width:17.988000pt;}
.wd{width:19.646667pt;}
.we{width:19.648000pt;}
.w14{width:30.430667pt;}
.w7{width:48.586667pt;}
.w9{width:48.588000pt;}
.w5{width:48.594667pt;}
.w11{width:48.596000pt;}
.w6{width:48.637333pt;}
.w15{width:48.638667pt;}
.wc{width:50.417333pt;}
.w13{width:50.418667pt;}
.wa{width:75.922667pt;}
.w4{width:75.929333pt;}
.w12{width:75.930667pt;}
.w3{width:75.973333pt;}
.w16{width:89.332000pt;}
.wb{width:89.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:68.031467pt;}
.x15{left:69.921200pt;}
.xa{left:85.417333pt;}
.x1{left:86.929067pt;}
.x1c{left:88.818933pt;}
.x44{left:90.708800pt;}
.x4{left:94.488133pt;}
.xd{left:98.271467pt;}
.x47{left:109.606267pt;}
.x3{left:111.501467pt;}
.x7{left:117.170133pt;}
.x5{left:170.072800pt;}
.x43{left:172.698133pt;}
.x41{left:180.588667pt;}
.x42{left:187.875867pt;}
.x6{left:189.223467pt;}
.x1b{left:195.675867pt;}
.x3a{left:275.368000pt;}
.x39{left:286.150667pt;}
.x3f{left:316.853333pt;}
.x17{left:319.083867pt;}
.x16{left:324.203867pt;}
.x18{left:327.979867pt;}
.x1d{left:341.954667pt;}
.x3e{left:343.222667pt;}
.x2b{left:355.812000pt;}
.x3b{left:358.686667pt;}
.x25{left:360.293333pt;}
.x26{left:369.636000pt;}
.x27{left:376.310667pt;}
.x32{left:380.777333pt;}
.x40{left:384.370667pt;}
.x3d{left:385.942667pt;}
.x34{left:387.605333pt;}
.x33{left:388.682667pt;}
.x21{left:399.153333pt;}
.xb{left:404.481333pt;}
.xe{left:406.298133pt;}
.x3c{left:408.086667pt;}
.x23{left:412.101333pt;}
.x2c{left:419.409333pt;}
.x2f{left:423.985333pt;}
.x13{left:425.195867pt;}
.x8{left:427.090133pt;}
.x45{left:428.970133pt;}
.xf{left:436.538133pt;}
.x38{left:454.482667pt;}
.x19{left:455.449200pt;}
.x9{left:457.330133pt;}
.x28{left:459.489333pt;}
.x35{left:464.878667pt;}
.x10{left:466.911467pt;}
.x29{left:476.021333pt;}
.x37{left:477.817333pt;}
.x36{left:479.254667pt;}
.x2a{left:482.306667pt;}
.x31{left:496.906667pt;}
.x24{left:499.330667pt;}
.x20{left:505.685333pt;}
.x2d{left:508.960000pt;}
.x22{left:510.090667pt;}
.x2e{left:511.374667pt;}
.x1e{left:512.286667pt;}
.x30{left:516.276000pt;}
.x1f{left:518.285333pt;}
.x1a{left:544.809200pt;}
.x12{left:589.770933pt;}
.x2{left:616.324800pt;}
.x46{left:642.309867pt;}
.x11{left:648.250800pt;}
.x48{left:662.007867pt;}
.x14{left:667.148400pt;}
}




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