
    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_eddd8f3965a4943df25fce46.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.020000;font-style:normal;font-weight: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_8eb4c45ae76f1161635dfb01.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.020000;font-style:normal;font-weight: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_69d0f2b07e9b66c467d6e23e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.865000;font-style:normal;font-weight: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_0f51e510d2e7ca66720287c7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.684015;font-style:normal;font-weight: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_83d2e89764bbb66ae914dab9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.010000;font-style:normal;font-weight: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_727fde0b13be0221fb460c32.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.653000;font-style:normal;font-weight: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_69d0f2b07e9b66c467d6e23e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.865000;font-style:normal;font-weight: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_b4d1291cb41fc4da4ee954be.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.676758;font-style:normal;font-weight: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_2ebd52e0b8e8d4d5d082ba60.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.676758;font-style:normal;font-weight: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_b7b14cc17e86de883c3e8b66.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.696000;font-style:normal;font-weight: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_2a1fc9e8e891f759dbb55297.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1ebe6f3f96c91b7b598704b0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.475000;font-style:normal;font-weight: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_cb8aea37f7f9f191ee3a105b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.017090;font-style:normal;font-weight: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_6cbaf01830c2a680e51bb2ae.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.850000;font-style:normal;font-weight: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_69d0f2b07e9b66c467d6e23e.woff2')format("woff");}.fff{font-family:fff;line-height:0.865000;font-style:normal;font-weight: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_0f51e510d2e7ca66720287c7.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.684015;font-style:normal;font-weight: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_1ca4f03dfd798f427abd3158.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.475000;font-style:normal;font-weight: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_2a1fc9e8e891f759dbb55297.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_69d0f2b07e9b66c467d6e23e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.865000;font-style:normal;font-weight: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_0f51e510d2e7ca66720287c7.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.684015;font-style:normal;font-weight: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_0f51e510d2e7ca66720287c7.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.684015;font-style:normal;font-weight: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_fa57c3479bd7b754d64b86e4.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_69d0f2b07e9b66c467d6e23e.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.865000;font-style:normal;font-weight: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_7d316f31e503339a1518712e.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.681641;font-style:normal;font-weight: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_e4c73c0662877e120be4b1e3.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.681641;font-style:normal;font-weight: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_2a1fc9e8e891f759dbb55297.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_795910cb9fba5327c75251f6.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.681641;font-style:normal;font-weight: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_41d9638cc53bc2cb485824a5.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.653000;font-style:normal;font-weight: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_69d0f2b07e9b66c467d6e23e.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.865000;font-style:normal;font-weight: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_491690ebc860a13e03f1f99c.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.681641;font-style:normal;font-weight: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_795910cb9fba5327c75251f6.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.681641;font-style:normal;font-weight: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_644a0cb880af60d7a6081e4c.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.681641;font-style:normal;font-weight: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_795910cb9fba5327c75251f6.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.681641;font-style:normal;font-weight: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_644a0cb880af60d7a6081e4c.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.681641;font-style:normal;font-weight: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_69d0f2b07e9b66c467d6e23e.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.865000;font-style:normal;font-weight: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_0f51e510d2e7ca66720287c7.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.684015;font-style:normal;font-weight: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_b9d5cd987383b986c66ed42d.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.954000;font-style:normal;font-weight: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_69d0f2b07e9b66c467d6e23e.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.865000;font-style:normal;font-weight: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_fa57c3479bd7b754d64b86e4.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_c049e8a80c270a2b52d482e8.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_69d0f2b07e9b66c467d6e23e.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.865000;font-style:normal;font-weight: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_0f51e510d2e7ca66720287c7.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.684015;font-style:normal;font-weight: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_69d0f2b07e9b66c467d6e23e.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.865000;font-style:normal;font-weight: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_0f51e510d2e7ca66720287c7.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.684015;font-style:normal;font-weight: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_146cfaf63d9a63f9b8742572.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.676758;font-style:normal;font-weight: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_a4a126888c6da3a6d41b128d.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_69d0f2b07e9b66c467d6e23e.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.865000;font-style:normal;font-weight: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_0f51e510d2e7ca66720287c7.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.684015;font-style:normal;font-weight: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_69d0f2b07e9b66c467d6e23e.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.865000;font-style:normal;font-weight: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_146cfaf63d9a63f9b8742572.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.676758;font-style:normal;font-weight: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_69d0f2b07e9b66c467d6e23e.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.865000;font-style:normal;font-weight: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_69d0f2b07e9b66c467d6e23e.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.865000;font-style:normal;font-weight: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_0f51e510d2e7ca66720287c7.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.684015;font-style:normal;font-weight: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_146cfaf63d9a63f9b8742572.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.676758;font-style:normal;font-weight: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_69d0f2b07e9b66c467d6e23e.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.865000;font-style:normal;font-weight: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_0f51e510d2e7ca66720287c7.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.684015;font-style:normal;font-weight: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_c049e8a80c270a2b52d482e8.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_795910cb9fba5327c75251f6.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.681641;font-style:normal;font-weight: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_fa57c3479bd7b754d64b86e4.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_69d0f2b07e9b66c467d6e23e.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.865000;font-style:normal;font-weight: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_0f51e510d2e7ca66720287c7.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.684015;font-style:normal;font-weight: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_795910cb9fba5327c75251f6.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.681641;font-style:normal;font-weight: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_69d0f2b07e9b66c467d6e23e.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.865000;font-style:normal;font-weight: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_491690ebc860a13e03f1f99c.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.681641;font-style:normal;font-weight: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_69d0f2b07e9b66c467d6e23e.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.865000;font-style:normal;font-weight: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_0f51e510d2e7ca66720287c7.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.684015;font-style:normal;font-weight: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_2a79f4702876c9915ac5dcc6.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_69d0f2b07e9b66c467d6e23e.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.865000;font-style:normal;font-weight: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_2a79f4702876c9915ac5dcc6.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_69d0f2b07e9b66c467d6e23e.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.865000;font-style:normal;font-weight: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_0f51e510d2e7ca66720287c7.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.684015;font-style:normal;font-weight: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_146cfaf63d9a63f9b8742572.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.676758;font-style:normal;font-weight: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_69d0f2b07e9b66c467d6e23e.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.865000;font-style:normal;font-weight: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_69d0f2b07e9b66c467d6e23e.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.865000;font-style:normal;font-weight: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_b4d1291cb41fc4da4ee954be.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.676758;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.236547,0.000000,-0.080905,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080905,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080905,0.236547,0,0);}
.m4{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);}
.m5{transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);}
.m2{transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-ms-transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-webkit-transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);}
.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);}
.v5{vertical-align:-23.422034px;}
.v2{vertical-align:-21.600000px;}
.v4{vertical-align:-19.484593px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:13.500000px;}
.v3{vertical-align:21.600000px;}
.v1{vertical-align:24.300000px;}
.lse{letter-spacing:-2.160000px;}
.ls4{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.538980px;}
.ls16{letter-spacing:-0.537318px;}
.ls14{letter-spacing:-0.526630px;}
.ls1f{letter-spacing:-0.466309px;}
.ls7{letter-spacing:-0.378000px;}
.ls11{letter-spacing:-0.270000px;}
.ls1{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.475608px;}
.ls20{letter-spacing:0.476352px;}
.ls19{letter-spacing:0.537318px;}
.ls5{letter-spacing:0.538980px;}
.ls0{letter-spacing:1.368000px;}
.lsb{letter-spacing:2.268000px;}
.lsd{letter-spacing:19.880766px;}
.ls8{letter-spacing:20.466000px;}
.lsc{letter-spacing:22.567356px;}
.ls9{letter-spacing:37.423985px;}
.ls22{letter-spacing:42.300906px;}
.ls24{letter-spacing:42.967062px;}
.ls23{letter-spacing:67.070362px;}
.lsf{letter-spacing:71.253156px;}
.ls3{letter-spacing:80.041800px;}
.ls1c{letter-spacing:97.738144px;}
.ls1a{letter-spacing:99.242635px;}
.ls17{letter-spacing:101.391907px;}
.ls6{letter-spacing:104.353983px;}
.ls1d{letter-spacing:109.075554px;}
.ls1b{letter-spacing:117.672642px;}
.ls18{letter-spacing:119.821914px;}
.ls10{letter-spacing:127.037586px;}
.ls12{letter-spacing:127.576566px;}
.ls21{letter-spacing:149.907974px;}
.ls15{letter-spacing:167.461086px;}
.ls2{letter-spacing:183.422633px;}
.lsa{letter-spacing:290.790000px;}
.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;}
}
.ws42{word-spacing:-290.790000px;}
.ws50{word-spacing:-167.514984px;}
.ws88{word-spacing:-149.955610px;}
.ws49{word-spacing:-127.630464px;}
.ws48{word-spacing:-127.091484px;}
.ws6f{word-spacing:-119.821914px;}
.ws74{word-spacing:-117.672642px;}
.ws79{word-spacing:-109.075554px;}
.ws40{word-spacing:-104.353983px;}
.ws52{word-spacing:-101.445638px;}
.ws54{word-spacing:-99.296366px;}
.ws56{word-spacing:-97.791876px;}
.ws47{word-spacing:-71.307054px;}
.ws99{word-spacing:-67.117997px;}
.wsa8{word-spacing:-42.967062px;}
.wsa7{word-spacing:-42.300906px;}
.ws44{word-spacing:-22.621088px;}
.ws58{word-spacing:-19.880766px;}
.ws1{word-spacing:-18.288000px;}
.wsa9{word-spacing:-15.510000px;}
.ws0{word-spacing:-12.690000px;}
.ws7c{word-spacing:-11.280000px;}
.ws2{word-spacing:-9.870000px;}
.ws5{word-spacing:-9.450000px;}
.ws3{word-spacing:-8.248500px;}
.ws4{word-spacing:-7.332000px;}
.ws41{word-spacing:-4.482000px;}
.wsd1{word-spacing:-4.452000px;}
.ws1d{word-spacing:-3.780000px;}
.ws57{word-spacing:-2.940000px;}
.ws66{word-spacing:-2.484000px;}
.ws22{word-spacing:-2.376000px;}
.ws73{word-spacing:-2.321995px;}
.ws2a{word-spacing:-2.268000px;}
.ws90{word-spacing:-2.160000px;}
.wsa5{word-spacing:-2.106000px;}
.ws6b{word-spacing:-1.836000px;}
.wsce{word-spacing:-1.805996px;}
.ws2d{word-spacing:-1.782000px;}
.ws2f{word-spacing:-1.728000px;}
.ws80{word-spacing:-1.674000px;}
.ws78{word-spacing:-1.620000px;}
.wsaa{word-spacing:-1.512000px;}
.ws5f{word-spacing:-1.404000px;}
.wsb9{word-spacing:-1.386000px;}
.ws8a{word-spacing:-1.350000px;}
.wsb8{word-spacing:-1.302000px;}
.ws3d{word-spacing:-1.296000px;}
.ws38{word-spacing:-1.242000px;}
.ws25{word-spacing:-1.188000px;}
.ws92{word-spacing:-1.134000px;}
.wsf{word-spacing:-1.080000px;}
.ws72{word-spacing:-1.026000px;}
.wsb1{word-spacing:-0.966000px;}
.ws97{word-spacing:-0.918000px;}
.ws7f{word-spacing:-0.864000px;}
.ws3f{word-spacing:-0.810000px;}
.wsbe{word-spacing:-0.798000px;}
.ws6a{word-spacing:-0.756000px;}
.ws89{word-spacing:-0.702000px;}
.wsbd{word-spacing:-0.672000px;}
.ws82{word-spacing:-0.648000px;}
.ws17{word-spacing:-0.592878px;}
.wsc1{word-spacing:-0.546000px;}
.ws8d{word-spacing:-0.540000px;}
.ws87{word-spacing:-0.523987px;}
.ws71{word-spacing:-0.486000px;}
.wsa3{word-spacing:-0.432000px;}
.wscf{word-spacing:-0.336000px;}
.ws28{word-spacing:-0.324000px;}
.wsd0{word-spacing:-0.294000px;}
.wsac{word-spacing:-0.270000px;}
.wscd{word-spacing:-0.210000px;}
.ws96{word-spacing:-0.162000px;}
.wsc{word-spacing:-0.108000px;}
.ws85{word-spacing:-0.096000px;}
.wsc2{word-spacing:-0.084000px;}
.ws4e{word-spacing:-0.054000px;}
.ws18{word-spacing:-0.053763px;}
.ws45{word-spacing:-0.053732px;}
.ws9c{word-spacing:-0.047561px;}
.wscb{word-spacing:-0.042000px;}
.ws4f{word-spacing:-0.037616px;}
.wsb{word-spacing:0.000000px;}
.ws8e{word-spacing:0.054000px;}
.ws84{word-spacing:0.108000px;}
.wsbc{word-spacing:0.126000px;}
.ws36{word-spacing:0.162000px;}
.ws26{word-spacing:0.216000px;}
.wsad{word-spacing:0.270000px;}
.wsb2{word-spacing:0.336000px;}
.ws29{word-spacing:0.378000px;}
.wsba{word-spacing:0.420000px;}
.wsd{word-spacing:0.432000px;}
.ws86{word-spacing:0.433001px;}
.ws60{word-spacing:0.486000px;}
.ws4d{word-spacing:0.489013px;}
.wsd8{word-spacing:0.504000px;}
.ws61{word-spacing:0.538980px;}
.ws7e{word-spacing:0.540000px;}
.wsd7{word-spacing:0.546000px;}
.ws1e{word-spacing:0.594000px;}
.ws94{word-spacing:0.702000px;}
.ws70{word-spacing:0.756000px;}
.wsd6{word-spacing:0.798000px;}
.ws2b{word-spacing:0.810000px;}
.ws7b{word-spacing:0.864000px;}
.ws76{word-spacing:0.918000px;}
.ws77{word-spacing:0.972000px;}
.wsc8{word-spacing:1.008000px;}
.ws2e{word-spacing:1.080000px;}
.ws24{word-spacing:1.134000px;}
.wsb4{word-spacing:1.176000px;}
.ws83{word-spacing:1.188000px;}
.ws37{word-spacing:1.242000px;}
.ws15{word-spacing:1.350000px;}
.ws3b{word-spacing:1.404000px;}
.ws8b{word-spacing:1.458000px;}
.wse{word-spacing:1.512000px;}
.ws3c{word-spacing:1.566000px;}
.wsc0{word-spacing:1.596000px;}
.ws9f{word-spacing:1.620000px;}
.ws65{word-spacing:1.674000px;}
.wsc3{word-spacing:1.680000px;}
.ws23{word-spacing:1.728000px;}
.ws8f{word-spacing:1.782000px;}
.ws31{word-spacing:1.836000px;}
.ws9e{word-spacing:1.890000px;}
.wsca{word-spacing:1.932000px;}
.ws33{word-spacing:1.944000px;}
.ws6c{word-spacing:1.998000px;}
.wscc{word-spacing:2.058000px;}
.wsc4{word-spacing:2.141996px;}
.ws5a{word-spacing:2.160000px;}
.wsa{word-spacing:2.214000px;}
.ws32{word-spacing:2.268000px;}
.ws14{word-spacing:2.376000px;}
.ws91{word-spacing:2.430000px;}
.ws64{word-spacing:2.484000px;}
.ws11{word-spacing:2.538000px;}
.wsc7{word-spacing:2.562000px;}
.ws62{word-spacing:2.592000px;}
.wsa6{word-spacing:2.646000px;}
.wsc6{word-spacing:2.688000px;}
.ws75{word-spacing:2.700000px;}
.ws16{word-spacing:2.753995px;}
.ws39{word-spacing:2.862000px;}
.wsc9{word-spacing:2.898000px;}
.ws81{word-spacing:2.916000px;}
.ws3a{word-spacing:2.970000px;}
.ws9d{word-spacing:3.024000px;}
.wsd3{word-spacing:3.066000px;}
.ws6e{word-spacing:3.078000px;}
.ws5e{word-spacing:3.132000px;}
.wsd2{word-spacing:3.192000px;}
.wsab{word-spacing:3.240000px;}
.ws7{word-spacing:3.294000px;}
.wsc5{word-spacing:3.318000px;}
.ws9{word-spacing:3.348000px;}
.ws93{word-spacing:3.402000px;}
.ws10{word-spacing:3.672000px;}
.ws12{word-spacing:3.726000px;}
.ws95{word-spacing:3.780000px;}
.wsbb{word-spacing:3.864000px;}
.ws27{word-spacing:3.888000px;}
.wsa0{word-spacing:3.942000px;}
.ws20{word-spacing:3.996000px;}
.ws69{word-spacing:4.050000px;}
.wsa2{word-spacing:4.104000px;}
.wsa4{word-spacing:4.158000px;}
.ws5b{word-spacing:4.266000px;}
.wsaf{word-spacing:4.320000px;}
.ws2c{word-spacing:4.482000px;}
.ws35{word-spacing:4.536000px;}
.ws63{word-spacing:4.590000px;}
.wsb5{word-spacing:4.662000px;}
.ws6d{word-spacing:4.752000px;}
.ws13{word-spacing:4.806000px;}
.ws1f{word-spacing:4.860000px;}
.ws5d{word-spacing:5.022000px;}
.wsa1{word-spacing:5.076000px;}
.ws30{word-spacing:5.184000px;}
.ws5c{word-spacing:5.292000px;}
.ws67{word-spacing:5.454000px;}
.ws34{word-spacing:5.508000px;}
.wsb0{word-spacing:5.670000px;}
.ws59{word-spacing:5.778000px;}
.ws7a{word-spacing:5.886000px;}
.ws3e{word-spacing:5.994000px;}
.ws68{word-spacing:6.048000px;}
.ws8{word-spacing:6.264000px;}
.ws8c{word-spacing:6.642000px;}
.wsb3{word-spacing:6.804000px;}
.wsbf{word-spacing:6.888000px;}
.ws21{word-spacing:6.912000px;}
.wsae{word-spacing:7.074000px;}
.wsd5{word-spacing:7.728000px;}
.wsb7{word-spacing:7.812000px;}
.wsd4{word-spacing:8.064000px;}
.wsb6{word-spacing:8.148000px;}
.ws46{word-spacing:9.558000px;}
.ws1b{word-spacing:14.704200px;}
.ws1a{word-spacing:17.409600px;}
.ws6{word-spacing:17.490000px;}
.ws9b{word-spacing:20.070658px;}
.ws9a{word-spacing:27.580781px;}
.ws55{word-spacing:57.976612px;}
.ws53{word-spacing:63.887110px;}
.ws51{word-spacing:67.111018px;}
.ws19{word-spacing:69.120000px;}
.ws7d{word-spacing:94.315200px;}
.ws1c{word-spacing:94.351407px;}
.ws4b{word-spacing:96.217200px;}
.ws98{word-spacing:97.128173px;}
.ws4a{word-spacing:98.463600px;}
.ws4c{word-spacing:100.715400px;}
.ws43{word-spacing:2344.518000px;}
._18{margin-left:-759.553200px;}
._20{margin-left:-356.319678px;}
._2b{margin-left:-317.964960px;}
._23{margin-left:-302.080180px;}
._25{margin-left:-297.781636px;}
._28{margin-left:-287.196471px;}
._2e{margin-left:-276.236525px;}
._1d{margin-left:-272.346594px;}
._1c{margin-left:-271.268634px;}
._1f{margin-left:-212.727966px;}
._22{margin-left:-205.766114px;}
._24{margin-left:-203.148929px;}
._27{margin-left:-190.694158px;}
._2a{margin-left:-189.683366px;}
._c{margin-left:-134.407500px;}
._1e{margin-left:-110.392200px;}
._29{margin-left:-108.715200px;}
._1b{margin-left:-106.388964px;}
._2c{margin-left:-86.076806px;}
._1a{margin-left:-59.346959px;}
._2f{margin-left:-52.602245px;}
._9{margin-left:-9.870000px;}
._6{margin-left:-5.850000px;}
._3{margin-left:-4.050000px;}
._2{margin-left:-2.111400px;}
._0{margin-left:-1.085400px;}
._4{width:1.414800px;}
._1{width:2.440800px;}
._5{width:4.255200px;}
._a{width:6.528600px;}
._30{width:8.032200px;}
._b{width:17.490000px;}
._16{width:22.879800px;}
._8{width:24.948000px;}
._14{width:29.835000px;}
._12{width:31.314600px;}
._11{width:43.129800px;}
._7{width:50.479500px;}
._10{width:54.210600px;}
._15{width:59.427000px;}
._26{width:66.261037px;}
._21{width:69.009817px;}
._17{width:91.897200px;}
._d{width:93.393000px;}
._2d{width:96.699456px;}
._f{width:110.235600px;}
._13{width:256.521600px;}
._19{width:351.702000px;}
._e{width:408.375000px;}
.fc5{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(123,124,127);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(88,89,91);}
.fc0{color:rgb(0,65,116);}
.fs8{font-size:31.200000px;}
.fs17{font-size:33.307800px;}
.fs7{font-size:35.100000px;}
.fs2{font-size:37.616400px;}
.fsd{font-size:37.687800px;}
.fsf{font-size:38.589086px;}
.fs5{font-size:42.000000px;}
.fs19{font-size:47.560800px;}
.fs18{font-size:47.635200px;}
.fs16{font-size:47.717400px;}
.fs9{font-size:48.000000px;}
.fs1a{font-size:50.265614px;}
.fs15{font-size:53.589600px;}
.fsb{font-size:53.682600px;}
.fs12{font-size:53.731800px;}
.fsc{font-size:53.763000px;}
.fs3{font-size:53.898000px;}
.fs1{font-size:54.000000px;}
.fse{font-size:55.291359px;}
.fs14{font-size:56.735643px;}
.fs13{font-size:56.963335px;}
.fs11{font-size:60.000000px;}
.fs10{font-size:64.687800px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fs6{font-size:90.000000px;}
.y108{bottom:-1.185000px;}
.y0{bottom:0.000000px;}
.y77{bottom:0.120000px;}
.y6a{bottom:0.120150px;}
.y1b2{bottom:0.615000px;}
.y148{bottom:0.615150px;}
.y1be{bottom:1.245150px;}
.y1b4{bottom:1.305000px;}
.y97{bottom:1.455000px;}
.yb0{bottom:1.500000px;}
.y14d{bottom:1.500150px;}
.ycc{bottom:1.515000px;}
.y1da{bottom:1.575000px;}
.yd4{bottom:1.605000px;}
.yf2{bottom:1.994700px;}
.y13c{bottom:1.995150px;}
.yf7{bottom:1.995750px;}
.y116{bottom:2.025000px;}
.y1ba{bottom:2.025150px;}
.yba{bottom:2.040000px;}
.ybe{bottom:2.040300px;}
.y186{bottom:2.085000px;}
.y92{bottom:2.098650px;}
.y10d{bottom:2.100000px;}
.y11{bottom:2.100300px;}
.y101{bottom:2.100450px;}
.y1ad{bottom:2.145000px;}
.ye4{bottom:2.160300px;}
.yed{bottom:2.160750px;}
.yb7{bottom:2.925000px;}
.yc6{bottom:3.000000px;}
.y14f{bottom:3.000155px;}
.y106{bottom:3.330000px;}
.yae{bottom:3.405000px;}
.yb3{bottom:3.615000px;}
.y9a{bottom:4.485150px;}
.y187{bottom:4.965000px;}
.y1ae{bottom:5.025000px;}
.yf3{bottom:5.414700px;}
.y13d{bottom:5.415150px;}
.yf8{bottom:5.415750px;}
.y117{bottom:5.445000px;}
.y1c1{bottom:5.445150px;}
.ybb{bottom:5.460000px;}
.ybf{bottom:5.460300px;}
.y93{bottom:5.518650px;}
.y10e{bottom:5.520000px;}
.y12{bottom:5.520300px;}
.y102{bottom:5.520450px;}
.ye5{bottom:5.580300px;}
.yee{bottom:5.580750px;}
.yb8{bottom:6.345000px;}
.yb4{bottom:7.035000px;}
.y1b9{bottom:7.425150px;}
.ya1{bottom:7.781252px;}
.ya3{bottom:10.078052px;}
.ya5{bottom:10.087474px;}
.ya6{bottom:10.312502px;}
.ya8{bottom:12.000750px;}
.ya0{bottom:13.500002px;}
.ya4{bottom:18.708558px;}
.ya2{bottom:21.282906px;}
.yaa{bottom:33.510000px;}
.y2c{bottom:33.513150px;}
.y183{bottom:33.516000px;}
.y129{bottom:33.534000px;}
.y145{bottom:33.535650px;}
.y1a9{bottom:33.600150px;}
.y9f{bottom:72.867748px;}
.ya7{bottom:74.367000px;}
.y1b5{bottom:78.750000px;}
.y182{bottom:78.754500px;}
.y128{bottom:78.772500px;}
.ya9{bottom:85.701000px;}
.y200{bottom:85.944150px;}
.y180{bottom:92.250000px;}
.y1b3{bottom:93.750000px;}
.y181{bottom:96.750000px;}
.y127{bottom:96.768000px;}
.y17f{bottom:96.777000px;}
.y1ff{bottom:99.447150px;}
.y1b1{bottom:105.750000px;}
.y1b0{bottom:107.250000px;}
.y1af{bottom:108.750000px;}
.y1fe{bottom:112.950150px;}
.y126{bottom:114.763500px;}
.y17e{bottom:114.772500px;}
.y35{bottom:115.692300px;}
.y15{bottom:115.725300px;}
.y9d{bottom:116.463000px;}
.y9e{bottom:116.463150px;}
.y9c{bottom:116.469150px;}
.y1ac{bottom:119.250000px;}
.y1ab{bottom:123.750000px;}
.y1fd{bottom:126.453150px;}
.y34{bottom:129.195300px;}
.y17d{bottom:132.768000px;}
.y18b{bottom:133.446150px;}
.y14{bottom:133.720800px;}
.y1aa{bottom:138.750000px;}
.y1fc{bottom:139.956150px;}
.y125{bottom:141.763500px;}
.y33{bottom:142.698300px;}
.y9b{bottom:144.967650px;}
.y10{bottom:147.216000px;}
.y17c{bottom:150.763500px;}
.y13{bottom:151.716300px;}
.yf{bottom:151.774950px;}
.y1fb{bottom:153.459150px;}
.y32{bottom:156.201300px;}
.y99{bottom:157.975500px;}
.y124{bottom:159.759000px;}
.y96{bottom:161.463000px;}
.y98{bottom:162.963150px;}
.y95{bottom:162.967650px;}
.y1fa{bottom:166.962150px;}
.y17b{bottom:168.759000px;}
.y31{bottom:169.704300px;}
.ye{bottom:169.770450px;}
.y144{bottom:173.166150px;}
.y91{bottom:175.602000px;}
.y123{bottom:177.754500px;}
.y1f9{bottom:180.465150px;}
.y94{bottom:180.963150px;}
.y90{bottom:180.967650px;}
.y30{bottom:183.207300px;}
.y1a8{bottom:184.746150px;}
.y17a{bottom:186.754500px;}
.yd{bottom:187.765950px;}
.y143{bottom:191.161650px;}
.y1f8{bottom:193.968150px;}
.y122{bottom:195.750000px;}
.y121{bottom:195.754500px;}
.y2f{bottom:196.710300px;}
.y8f{bottom:198.967650px;}
.y178{bottom:200.250000px;}
.y1a7{bottom:202.741650px;}
.y179{bottom:204.750000px;}
.y177{bottom:204.759000px;}
.yc{bottom:205.761450px;}
.y1f7{bottom:207.471150px;}
.y142{bottom:209.157150px;}
.y120{bottom:209.250000px;}
.y2e{bottom:210.213300px;}
.y11e{bottom:210.750000px;}
.y11f{bottom:213.750000px;}
.y11d{bottom:213.763500px;}
.y8e{bottom:216.963150px;}
.y1a6{bottom:220.737150px;}
.y1f6{bottom:220.974150px;}
.y176{bottom:222.754500px;}
.y2d{bottom:223.716300px;}
.yb{bottom:223.756950px;}
.y141{bottom:227.152650px;}
.y11c{bottom:231.759000px;}
.y1f5{bottom:234.477150px;}
.y174{bottom:236.250000px;}
.y1a5{bottom:238.732650px;}
.y175{bottom:240.750000px;}
.y173{bottom:240.754500px;}
.ya{bottom:241.752450px;}
.y8d{bottom:243.963150px;}
.y140{bottom:245.148150px;}
.y1f4{bottom:247.980150px;}
.y11b{bottom:249.754500px;}
.y1a4{bottom:256.728150px;}
.y9{bottom:259.747950px;}
.y1f3{bottom:261.483150px;}
.y13f{bottom:263.143650px;}
.y11a{bottom:267.750000px;}
.y119{bottom:267.754500px;}
.y1a3{bottom:274.723650px;}
.y1f2{bottom:274.986150px;}
.y13b{bottom:276.639000px;}
.y8{bottom:277.743450px;}
.y13e{bottom:281.139150px;}
.y13a{bottom:281.143650px;}
.y115{bottom:281.250000px;}
.y118{bottom:285.750000px;}
.y114{bottom:285.754500px;}
.y172{bottom:285.759000px;}
.y1f1{bottom:288.489150px;}
.y1a2{bottom:292.719150px;}
.y7{bottom:295.738950px;}
.y20a{bottom:297.735150px;}
.y138{bottom:299.139000px;}
.y139{bottom:299.139150px;}
.y137{bottom:299.181150px;}
.y8c{bottom:299.514150px;}
.y112{bottom:300.750000px;}
.y1f0{bottom:301.992150px;}
.y113{bottom:303.750000px;}
.y171{bottom:303.754500px;}
.y111{bottom:303.759000px;}
.y1a1{bottom:310.714650px;}
.y209{bottom:311.238150px;}
.y6{bottom:313.734450px;}
.y1ef{bottom:315.495150px;}
.y136{bottom:317.176650px;}
.y16f{bottom:317.250000px;}
.y8b{bottom:317.509650px;}
.y170{bottom:321.750000px;}
.y110{bottom:321.754500px;}
.y208{bottom:324.741150px;}
.y1a0{bottom:328.710150px;}
.y1ee{bottom:328.998150px;}
.y5{bottom:331.729950px;}
.y135{bottom:335.172150px;}
.y10c{bottom:335.250000px;}
.y8a{bottom:335.505150px;}
.y207{bottom:338.244150px;}
.y10f{bottom:339.750000px;}
.y16e{bottom:339.754500px;}
.y10b{bottom:339.763500px;}
.y1ed{bottom:342.501150px;}
.y4{bottom:349.725450px;}
.y206{bottom:351.747150px;}
.y134{bottom:353.167650px;}
.y16c{bottom:353.250000px;}
.y89{bottom:353.500650px;}
.y1ec{bottom:356.004150px;}
.y19f{bottom:357.208650px;}
.y16d{bottom:357.750000px;}
.y10a{bottom:357.759000px;}
.y205{bottom:365.250150px;}
.y3{bottom:367.720950px;}
.y1eb{bottom:369.507150px;}
.y133{bottom:371.163150px;}
.y19e{bottom:375.204150px;}
.y109{bottom:375.754500px;}
.y204{bottom:378.753150px;}
.y88{bottom:381.999150px;}
.y1ea{bottom:383.010150px;}
.y2{bottom:385.716450px;}
.y16b{bottom:389.250000px;}
.y105{bottom:389.812500px;}
.y203{bottom:392.256150px;}
.y19d{bottom:393.199650px;}
.y107{bottom:393.750000px;}
.y16a{bottom:393.754500px;}
.y104{bottom:393.759000px;}
.y1e9{bottom:396.513150px;}
.y132{bottom:399.661650px;}
.y87{bottom:399.994650px;}
.y202{bottom:405.759150px;}
.y168{bottom:407.250000px;}
.y19c{bottom:411.195150px;}
.y169{bottom:411.750000px;}
.y103{bottom:411.754500px;}
.y1{bottom:412.716450px;}
.y131{bottom:417.657150px;}
.y86{bottom:417.990150px;}
.y1e8{bottom:419.013150px;}
.y201{bottom:419.262150px;}
.y100{bottom:424.321500px;}
.y167{bottom:425.250000px;}
.y54{bottom:427.174800px;}
.y19b{bottom:429.190650px;}
.yff{bottom:429.750000px;}
.yfe{bottom:429.759000px;}
.y166{bottom:429.768000px;}
.y130{bottom:435.652650px;}
.y85{bottom:435.985650px;}
.y53{bottom:440.677800px;}
.y19a{bottom:447.186150px;}
.yfd{bottom:447.754500px;}
.y165{bottom:447.763500px;}
.y12f{bottom:453.648150px;}
.y84{bottom:453.981150px;}
.y2b{bottom:460.593300px;}
.y1e7{bottom:464.026650px;}
.y199{bottom:465.181650px;}
.yfc{bottom:465.750000px;}
.y164{bottom:465.759000px;}
.y52{bottom:471.432300px;}
.y12e{bottom:471.643650px;}
.y83{bottom:471.976650px;}
.y2a{bottom:478.588800px;}
.y1e6{bottom:482.022150px;}
.y198{bottom:483.177150px;}
.y163{bottom:483.754500px;}
.y51{bottom:484.935300px;}
.y12c{bottom:489.639000px;}
.y12d{bottom:489.639150px;}
.y12b{bottom:489.643650px;}
.y82{bottom:489.972150px;}
.yfb{bottom:492.750000px;}
.y29{bottom:496.584300px;}
.y162{bottom:497.250000px;}
.y50{bottom:498.438300px;}
.y1e5{bottom:500.017650px;}
.y197{bottom:501.172650px;}
.y161{bottom:501.750000px;}
.y12a{bottom:507.639150px;}
.y81{bottom:507.967650px;}
.y4f{bottom:511.941300px;}
.y28{bottom:514.579800px;}
.y1e4{bottom:518.013150px;}
.y196{bottom:519.168150px;}
.y15f{bottom:524.250000px;}
.y4e{bottom:525.444300px;}
.y7f{bottom:525.963000px;}
.y80{bottom:525.963150px;}
.y7e{bottom:525.990150px;}
.y160{bottom:528.750000px;}
.y15e{bottom:528.754500px;}
.y27{bottom:532.575300px;}
.y195{bottom:537.163650px;}
.y4d{bottom:538.947300px;}
.y15d{bottom:542.250000px;}
.y1e3{bottom:543.213150px;}
.y7d{bottom:543.985650px;}
.yfa{bottom:545.254500px;}
.y15c{bottom:546.750000px;}
.y15b{bottom:546.759000px;}
.y26{bottom:550.570800px;}
.y151{bottom:553.926000px;}
.y150{bottom:553.926150px;}
.y194{bottom:555.159150px;}
.y4c{bottom:555.442800px;}
.yf6{bottom:557.868000px;}
.y7c{bottom:561.981150px;}
.yf9{bottom:563.250000px;}
.yf5{bottom:563.254500px;}
.y15a{bottom:564.754500px;}
.y14e{bottom:565.925995px;}
.y14c{bottom:567.426000px;}
.y25{bottom:568.566300px;}
.y14b{bottom:568.926150px;}
.yf1{bottom:575.653500px;}
.y158{bottom:578.250000px;}
.y7b{bottom:579.976650px;}
.yf4{bottom:581.250000px;}
.y193{bottom:582.159150px;}
.y159{bottom:582.750000px;}
.y157{bottom:582.754500px;}
.y14a{bottom:583.926000px;}
.y149{bottom:583.926150px;}
.y24{bottom:586.561800px;}
.y1e2{bottom:590.494650px;}
.y4b{bottom:592.938300px;}
.y155{bottom:596.250000px;}
.y22c{bottom:597.150000px;}
.y7a{bottom:597.972150px;}
.y147{bottom:598.926000px;}
.y146{bottom:598.926150px;}
.yf0{bottom:599.254500px;}
.y156{bottom:600.750000px;}
.y154{bottom:600.754500px;}
.y23{bottom:604.557300px;}
.y4a{bottom:606.441300px;}
.y1e1{bottom:608.490150px;}
.y22b{bottom:610.653000px;}
.yec{bottom:611.530500px;}
.y79{bottom:615.967650px;}
.yef{bottom:617.250000px;}
.yeb{bottom:617.254500px;}
.y153{bottom:618.750000px;}
.y22{bottom:622.552800px;}
.y49{bottom:622.936800px;}
.y22a{bottom:624.156000px;}
.y1e0{bottom:626.485650px;}
.y76{bottom:633.963000px;}
.y78{bottom:633.963150px;}
.y75{bottom:634.005150px;}
.yea{bottom:635.250000px;}
.ye9{bottom:635.268000px;}
.y229{bottom:637.659000px;}
.y192{bottom:637.683150px;}
.y21{bottom:640.548300px;}
.y1df{bottom:644.481150px;}
.y152{bottom:645.750000px;}
.y228{bottom:651.162000px;}
.y74{bottom:652.000650px;}
.ye8{bottom:653.263500px;}
.y191{bottom:655.678650px;}
.y20{bottom:658.543800px;}
.y48{bottom:660.432300px;}
.y1de{bottom:662.476650px;}
.y227{bottom:664.665000px;}
.y73{bottom:669.996150px;}
.ye7{bottom:671.259000px;}
.y190{bottom:673.674150px;}
.y47{bottom:673.935300px;}
.y1f{bottom:676.539300px;}
.y226{bottom:678.168000px;}
.y1dd{bottom:680.472150px;}
.ye6{bottom:689.254500px;}
.y46{bottom:690.430800px;}
.y18f{bottom:691.669650px;}
.y225{bottom:691.671000px;}
.y18a{bottom:693.330000px;}
.y1dc{bottom:698.467650px;}
.y72{bottom:698.494650px;}
.ye3{bottom:701.521500px;}
.y224{bottom:705.174000px;}
.ye1{bottom:705.750000px;}
.ye2{bottom:707.250000px;}
.ye0{bottom:707.254500px;}
.y189{bottom:708.330000px;}
.y1e{bottom:709.275300px;}
.y18e{bottom:709.665150px;}
.y1d9{bottom:714.963000px;}
.y1db{bottom:716.463150px;}
.y1d8{bottom:716.472150px;}
.y71{bottom:716.490150px;}
.y223{bottom:718.677000px;}
.y188{bottom:723.330000px;}
.ydf{bottom:725.250000px;}
.yde{bottom:725.259000px;}
.y1d{bottom:727.270800px;}
.y45{bottom:730.183800px;}
.y222{bottom:732.180000px;}
.y185{bottom:733.830000px;}
.y1d7{bottom:734.467650px;}
.y70{bottom:734.485650px;}
.y18d{bottom:738.163650px;}
.y184{bottom:738.330000px;}
.ydd{bottom:743.254500px;}
.y44{bottom:743.686800px;}
.y1c{bottom:745.266300px;}
.y221{bottom:745.683000px;}
.y1d5{bottom:747.963000px;}
.y1d6{bottom:752.463150px;}
.y6f{bottom:752.481150px;}
.y1d4{bottom:752.494650px;}
.y18c{bottom:756.159150px;}
.y43{bottom:757.189800px;}
.y220{bottom:759.186000px;}
.ydc{bottom:761.250000px;}
.ydb{bottom:761.268000px;}
.y1b{bottom:763.261800px;}
.y6e{bottom:770.476650px;}
.y1d3{bottom:770.490150px;}
.y42{bottom:770.692800px;}
.y21f{bottom:772.689000px;}
.y1a{bottom:781.257300px;}
.y41{bottom:784.195800px;}
.y21e{bottom:786.192000px;}
.yda{bottom:788.268000px;}
.y6d{bottom:788.472150px;}
.y1d2{bottom:788.485650px;}
.y40{bottom:797.698800px;}
.y19{bottom:799.252800px;}
.y21d{bottom:799.695000px;}
.y1bd{bottom:802.446000px;}
.y1bc{bottom:803.946150px;}
.yd9{bottom:806.263500px;}
.y6c{bottom:806.467650px;}
.y1d1{bottom:806.481150px;}
.y3f{bottom:811.201800px;}
.y21c{bottom:813.198000px;}
.y18{bottom:817.248300px;}
.y1b8{bottom:817.446000px;}
.y1b7{bottom:818.946000px;}
.y1bb{bottom:818.946150px;}
.yd8{bottom:824.259000px;}
.y69{bottom:824.463000px;}
.y6b{bottom:824.463150px;}
.y68{bottom:824.517150px;}
.y3e{bottom:824.704800px;}
.y21b{bottom:826.701000px;}
.y1d0{bottom:833.481150px;}
.y17{bottom:835.243800px;}
.y1b6{bottom:835.446000px;}
.y3d{bottom:838.207800px;}
.y21a{bottom:840.204000px;}
.yd7{bottom:842.254500px;}
.y67{bottom:842.512650px;}
.y1cf{bottom:851.476650px;}
.y3c{bottom:851.710800px;}
.y16{bottom:853.239300px;}
.y219{bottom:853.707000px;}
.yd6{bottom:857.250000px;}
.yd3{bottom:858.750000px;}
.yd5{bottom:860.250000px;}
.yd2{bottom:860.254500px;}
.y66{bottom:860.508150px;}
.y218{bottom:867.210000px;}
.y3b{bottom:868.206300px;}
.y1ce{bottom:869.472150px;}
.yd0{bottom:875.250000px;}
.ycf{bottom:876.750000px;}
.yd1{bottom:878.250000px;}
.yce{bottom:878.254500px;}
.y65{bottom:878.503650px;}
.y217{bottom:880.713000px;}
.y1cd{bottom:887.467650px;}
.y216{bottom:894.216000px;}
.ycb{bottom:894.750000px;}
.ycd{bottom:896.250000px;}
.yca{bottom:896.254500px;}
.y64{bottom:896.499150px;}
.y3a{bottom:898.005150px;}
.y59{bottom:898.704150px;}
.y1cb{bottom:900.963000px;}
.y1cc{bottom:905.463150px;}
.y1ca{bottom:905.472150px;}
.y215{bottom:907.719000px;}
.y58{bottom:912.204150px;}
.yc9{bottom:914.250000px;}
.yc8{bottom:914.254500px;}
.y63{bottom:914.494650px;}
.y39{bottom:919.905150px;}
.y214{bottom:921.222000px;}
.y1c9{bottom:923.467650px;}
.y57{bottom:925.704150px;}
.yc5{bottom:929.250000px;}
.yc4{bottom:930.750000px;}
.yc7{bottom:932.250000px;}
.yc3{bottom:932.268000px;}
.y62{bottom:932.490150px;}
.y213{bottom:934.725000px;}
.y1c7{bottom:936.963000px;}
.y56{bottom:939.204150px;}
.y1c8{bottom:941.463150px;}
.y1c6{bottom:941.467650px;}
.y38{bottom:942.405150px;}
.y212{bottom:948.228000px;}
.yc2{bottom:950.263500px;}
.y61{bottom:950.485650px;}
.y1c4{bottom:954.963000px;}
.y1c5{bottom:959.463150px;}
.y1c3{bottom:959.467650px;}
.y211{bottom:961.731000px;}
.yc1{bottom:968.259000px;}
.y60{bottom:968.481150px;}
.y37{bottom:970.605150px;}
.y1c0{bottom:972.963000px;}
.y210{bottom:975.234000px;}
.y1c2{bottom:977.463150px;}
.y1bf{bottom:977.472150px;}
.y55{bottom:979.407150px;}
.yc0{bottom:986.254500px;}
.y5f{bottom:986.476650px;}
.y20f{bottom:988.737000px;}
.y36{bottom:997.605150px;}
.ybd{bottom:998.859000px;}
.y5a{bottom:998.877150px;}
.yb9{bottom:999.750000px;}
.y20e{bottom:1002.240000px;}
.ybc{bottom:1004.250000px;}
.y5e{bottom:1004.472150px;}
.y20d{bottom:1015.743000px;}
.yb2{bottom:1015.875000px;}
.yb6{bottom:1016.250000px;}
.yb5{bottom:1022.250000px;}
.yb1{bottom:1022.254500px;}
.y5d{bottom:1022.467650px;}
.y20c{bottom:1029.246000px;}
.yad{bottom:1037.250000px;}
.yaf{bottom:1038.375000px;}
.yac{bottom:1040.250000px;}
.y5c{bottom:1040.463150px;}
.y20b{bottom:1042.749000px;}
.y5b{bottom:1099.348050px;}
.yab{bottom:1100.570100px;}
.h2d{height:4.500000px;}
.h2b{height:8.998500px;}
.hd{height:9.000000px;}
.h30{height:10.410000px;}
.h38{height:10.411500px;}
.h39{height:10.500000px;}
.h10{height:12.000000px;}
.h23{height:12.030000px;}
.h27{height:12.031500px;}
.h21{height:13.500000px;}
.h34{height:15.000000px;}
.h3{height:16.500000px;}
.h2c{height:16.501500px;}
.h12{height:18.000000px;}
.h32{height:22.410004px;}
.h35{height:22.915766px;}
.h28{height:24.030029px;}
.ha{height:24.492000px;}
.h18{height:25.476953px;}
.h16{height:25.740767px;}
.h4{height:25.880083px;}
.h2f{height:31.159462px;}
.h33{height:31.344000px;}
.h1e{height:31.530000px;}
.h3c{height:31.699459px;}
.h37{height:31.725744px;}
.h31{height:32.448000px;}
.h3a{height:32.721830px;}
.h36{height:32.773018px;}
.h7{height:32.970000px;}
.h3b{height:33.502228px;}
.h1c{height:34.283384px;}
.he{height:35.054738px;}
.h1a{height:35.103256px;}
.h29{height:35.262000px;}
.h2e{height:35.717678px;}
.h5{height:35.896861px;}
.h25{height:35.923228px;}
.h1f{height:36.342000px;}
.h17{height:36.504000px;}
.h15{height:36.882000px;}
.h22{height:36.967478px;}
.h13{height:36.988944px;}
.h11{height:37.081824px;}
.hb{height:37.680000px;}
.h2a{height:37.814528px;}
.h26{height:37.966285px;}
.h2{height:42.390000px;}
.h14{height:43.530006px;}
.h20{height:47.100000px;}
.h1b{height:49.122070px;}
.h24{height:50.004000px;}
.h19{height:50.296778px;}
.h1{height:51.810000px;}
.hf{height:51.835500px;}
.h9{height:51.853500px;}
.h6{height:56.520000px;}
.h1d{height:58.844420px;}
.hc{height:65.940000px;}
.h8{height:70.650000px;}
.h0{height:1188.000000px;}
.w10{width:6.001500px;}
.w16{width:7.500000px;}
.w2{width:11.998500px;}
.w3{width:12.000000px;}
.w9{width:13.440000px;}
.w1{width:13.500000px;}
.w1c{width:18.000000px;}
.w1b{width:25.500000px;}
.w13{width:28.500000px;}
.w4{width:28.501500px;}
.wa{width:30.000000px;}
.wc{width:31.470000px;}
.w8{width:31.500000px;}
.w11{width:32.985000px;}
.we{width:35.998500px;}
.w5{width:37.500000px;}
.wb{width:40.500000px;}
.w19{width:51.000000px;}
.wf{width:58.469994px;}
.wd{width:58.470016px;}
.w12{width:59.984985px;}
.w1a{width:66.000000px;}
.w15{width:73.500000px;}
.w18{width:76.500000px;}
.w17{width:79.500000px;}
.w14{width:81.000000px;}
.w7{width:212.968500px;}
.w6{width:239.969971px;}
.w0{width:918.000000px;}
.x3e{left:-1.245300px;}
.x0{left:0.000000px;}
.x99{left:2.684850px;}
.x27{left:6.780000px;}
.x3{left:8.850450px;}
.x95{left:10.020000px;}
.x3f{left:11.534700px;}
.x98{left:14.925000px;}
.x18{left:16.687635px;}
.x32{left:18.435000px;}
.x94{left:19.740000px;}
.x3d{left:22.514700px;}
.x2e{left:25.320900px;}
.x43{left:27.845411px;}
.x1a{left:28.968885px;}
.x9b{left:30.105300px;}
.x1b{left:41.156385px;}
.x5{left:54.000000px;}
.x8a{left:58.649550px;}
.x1e{left:64.078335px;}
.x6{left:67.503000px;}
.x20{left:81.328335px;}
.x8d{left:92.483700px;}
.x22{left:93.890835px;}
.x19{left:99.562635px;}
.x1c{left:102.238887px;}
.x21{left:108.750285px;}
.x24{left:110.062800px;}
.x1f{left:113.675194px;}
.x93{left:134.362500px;}
.x96{left:165.862500px;}
.x1d{left:173.487673px;}
.x72{left:238.795500px;}
.x73{left:250.795350px;}
.x1{left:258.750000px;}
.x8{left:269.474700px;}
.xa5{left:270.751500px;}
.x97{left:275.143500px;}
.x26{left:298.795500px;}
.xa3{left:300.039000px;}
.x5d{left:303.268500px;}
.x82{left:312.778800px;}
.x62{left:316.747500px;}
.xa4{left:318.038550px;}
.x33{left:319.231500px;}
.x9a{left:326.143500px;}
.x28{left:330.295500px;}
.x11{left:336.655500px;}
.x56{left:339.750000px;}
.x6d{left:347.146500px;}
.x9c{left:349.710000px;}
.x34{left:359.731650px;}
.x57{left:363.555000px;}
.x12{left:365.156850px;}
.x88{left:372.679800px;}
.x6e{left:374.497500px;}
.x42{left:375.602989px;}
.x5e{left:376.768050px;}
.x41{left:389.103000px;}
.x13{left:392.929500px;}
.x50{left:394.240200px;}
.x63{left:396.248250px;}
.x3a{left:410.559000px;}
.x44{left:420.573450px;}
.x3b{left:422.559300px;}
.x14{left:430.430100px;}
.x59{left:432.060450px;}
.x8c{left:434.592300px;}
.x17{left:441.390015px;}
.x58{left:444.555450px;}
.x74{left:445.922250px;}
.x23{left:454.890000px;}
.x35{left:460.821000px;}
.x77{left:468.003000px;}
.x36{left:472.821600px;}
.x5a{left:474.981750px;}
.x78{left:480.003150px;}
.x7b{left:485.815350px;}
.x45{left:497.206500px;}
.x67{left:501.886500px;}
.x46{left:503.206650px;}
.x64{left:511.905000px;}
.x4c{left:514.998000px;}
.x9{left:518.970000px;}
.x2b{left:525.793500px;}
.x4d{left:526.997400px;}
.x9d{left:529.438500px;}
.xa{left:530.969100px;}
.x7c{left:534.294000px;}
.x2c{left:537.793650px;}
.x9e{left:542.938800px;}
.x15{left:544.605000px;}
.x7d{left:547.793100px;}
.x9f{left:550.986000px;}
.xb{left:555.409500px;}
.x16{left:556.604250px;}
.xa1{left:559.011000px;}
.xa0{left:564.486150px;}
.xc{left:567.409800px;}
.x90{left:570.562500px;}
.xa2{left:572.510400px;}
.x68{left:578.387400px;}
.x3c{left:581.215500px;}
.x8f{left:584.062500px;}
.x2d{left:587.121000px;}
.xf{left:601.494000px;}
.x2{left:611.388000px;}
.x10{left:614.993550px;}
.x2f{left:617.121900px;}
.x48{left:621.835510px;}
.x8e{left:623.603100px;}
.x4{left:624.888450px;}
.x6f{left:628.558950px;}
.x79{left:633.625500px;}
.x47{left:635.335500px;}
.x7a{left:647.125650px;}
.x54{left:650.625000px;}
.x75{left:653.610000px;}
.x53{left:655.407000px;}
.x6b{left:658.917000px;}
.x5f{left:665.029500px;}
.x76{left:667.109550px;}
.x49{left:668.320800px;}
.x6c{left:670.917600px;}
.x60{left:672.530700px;}
.x55{left:679.125600px;}
.x83{left:685.318500px;}
.x38{left:687.578979px;}
.x86{left:692.326500px;}
.x89{left:697.186500px;}
.x25{left:698.712600px;}
.x37{left:701.079000px;}
.x7e{left:704.346000px;}
.x87{left:705.826200px;}
.x30{left:714.177000px;}
.x7f{left:717.846000px;}
.x70{left:719.785492px;}
.x31{left:726.176400px;}
.x40{left:728.722500px;}
.x5b{left:730.113000px;}
.x39{left:732.549150px;}
.x80{left:737.050500px;}
.x29{left:739.783500px;}
.x5c{left:742.113600px;}
.x69{left:746.884500px;}
.x81{left:750.549750px;}
.x2a{left:753.224250px;}
.x6a{left:760.384800px;}
.x71{left:766.271100px;}
.x51{left:768.450000px;}
.x8b{left:770.686200px;}
.x61{left:784.020000px;}
.x84{left:787.623000px;}
.x4e{left:791.049000px;}
.x65{left:792.649500px;}
.x52{left:796.950300px;}
.x85{left:801.122250px;}
.x4f{left:803.049000px;}
.x66{left:806.149500px;}
.x4a{left:808.387500px;}
.x91{left:810.999000px;}
.x4b{left:820.387650px;}
.x92{left:822.999150px;}
.x7{left:832.532400px;}
.xd{left:852.000000px;}
.xe{left:864.000150px;}
@media print{
.v5{vertical-align:-20.819586pt;}
.v2{vertical-align:-19.200000pt;}
.v4{vertical-align:-17.319638pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:12.000000pt;}
.v3{vertical-align:19.200000pt;}
.v1{vertical-align:21.600000pt;}
.lse{letter-spacing:-1.920000pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.479093pt;}
.ls16{letter-spacing:-0.477616pt;}
.ls14{letter-spacing:-0.468115pt;}
.ls1f{letter-spacing:-0.414497pt;}
.ls7{letter-spacing:-0.336000pt;}
.ls11{letter-spacing:-0.240000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.422763pt;}
.ls20{letter-spacing:0.423424pt;}
.ls19{letter-spacing:0.477616pt;}
.ls5{letter-spacing:0.479093pt;}
.ls0{letter-spacing:1.216000pt;}
.lsb{letter-spacing:2.016000pt;}
.lsd{letter-spacing:17.671792pt;}
.ls8{letter-spacing:18.192000pt;}
.lsc{letter-spacing:20.059872pt;}
.ls9{letter-spacing:33.265765pt;}
.ls22{letter-spacing:37.600805pt;}
.ls24{letter-spacing:38.192944pt;}
.ls23{letter-spacing:59.618099pt;}
.lsf{letter-spacing:63.336139pt;}
.ls3{letter-spacing:71.148267pt;}
.ls1c{letter-spacing:86.878350pt;}
.ls1a{letter-spacing:88.215675pt;}
.ls17{letter-spacing:90.126139pt;}
.ls6{letter-spacing:92.759096pt;}
.ls1d{letter-spacing:96.956048pt;}
.ls1b{letter-spacing:104.597904pt;}
.ls18{letter-spacing:106.508368pt;}
.ls10{letter-spacing:112.922299pt;}
.ls12{letter-spacing:113.401392pt;}
.ls21{letter-spacing:133.251533pt;}
.ls15{letter-spacing:148.854299pt;}
.ls2{letter-spacing:163.042341pt;}
.lsa{letter-spacing:258.480000pt;}
.ws42{word-spacing:-258.480000pt;}
.ws50{word-spacing:-148.902208pt;}
.ws88{word-spacing:-133.293875pt;}
.ws49{word-spacing:-113.449301pt;}
.ws48{word-spacing:-112.970208pt;}
.ws6f{word-spacing:-106.508368pt;}
.ws74{word-spacing:-104.597904pt;}
.ws79{word-spacing:-96.956048pt;}
.ws40{word-spacing:-92.759096pt;}
.ws52{word-spacing:-90.173901pt;}
.ws54{word-spacing:-88.263437pt;}
.ws56{word-spacing:-86.926112pt;}
.ws47{word-spacing:-63.384048pt;}
.ws99{word-spacing:-59.660442pt;}
.wsa8{word-spacing:-38.192944pt;}
.wsa7{word-spacing:-37.600805pt;}
.ws44{word-spacing:-20.107634pt;}
.ws58{word-spacing:-17.671792pt;}
.ws1{word-spacing:-16.256000pt;}
.wsa9{word-spacing:-13.786667pt;}
.ws0{word-spacing:-11.280000pt;}
.ws7c{word-spacing:-10.026667pt;}
.ws2{word-spacing:-8.773333pt;}
.ws5{word-spacing:-8.400000pt;}
.ws3{word-spacing:-7.332000pt;}
.ws4{word-spacing:-6.517333pt;}
.ws41{word-spacing:-3.984000pt;}
.wsd1{word-spacing:-3.957333pt;}
.ws1d{word-spacing:-3.360000pt;}
.ws57{word-spacing:-2.613333pt;}
.ws66{word-spacing:-2.208000pt;}
.ws22{word-spacing:-2.112000pt;}
.ws73{word-spacing:-2.063995pt;}
.ws2a{word-spacing:-2.016000pt;}
.ws90{word-spacing:-1.920000pt;}
.wsa5{word-spacing:-1.872000pt;}
.ws6b{word-spacing:-1.632000pt;}
.wsce{word-spacing:-1.605330pt;}
.ws2d{word-spacing:-1.584000pt;}
.ws2f{word-spacing:-1.536000pt;}
.ws80{word-spacing:-1.488000pt;}
.ws78{word-spacing:-1.440000pt;}
.wsaa{word-spacing:-1.344000pt;}
.ws5f{word-spacing:-1.248000pt;}
.wsb9{word-spacing:-1.232000pt;}
.ws8a{word-spacing:-1.200000pt;}
.wsb8{word-spacing:-1.157333pt;}
.ws3d{word-spacing:-1.152000pt;}
.ws38{word-spacing:-1.104000pt;}
.ws25{word-spacing:-1.056000pt;}
.ws92{word-spacing:-1.008000pt;}
.wsf{word-spacing:-0.960000pt;}
.ws72{word-spacing:-0.912000pt;}
.wsb1{word-spacing:-0.858667pt;}
.ws97{word-spacing:-0.816000pt;}
.ws7f{word-spacing:-0.768000pt;}
.ws3f{word-spacing:-0.720000pt;}
.wsbe{word-spacing:-0.709333pt;}
.ws6a{word-spacing:-0.672000pt;}
.ws89{word-spacing:-0.624000pt;}
.wsbd{word-spacing:-0.597333pt;}
.ws82{word-spacing:-0.576000pt;}
.ws17{word-spacing:-0.527003pt;}
.wsc1{word-spacing:-0.485333pt;}
.ws8d{word-spacing:-0.480000pt;}
.ws87{word-spacing:-0.465766pt;}
.ws71{word-spacing:-0.432000pt;}
.wsa3{word-spacing:-0.384000pt;}
.wscf{word-spacing:-0.298667pt;}
.ws28{word-spacing:-0.288000pt;}
.wsd0{word-spacing:-0.261333pt;}
.wsac{word-spacing:-0.240000pt;}
.wscd{word-spacing:-0.186667pt;}
.ws96{word-spacing:-0.144000pt;}
.wsc{word-spacing:-0.096000pt;}
.ws85{word-spacing:-0.085333pt;}
.wsc2{word-spacing:-0.074667pt;}
.ws4e{word-spacing:-0.048000pt;}
.ws18{word-spacing:-0.047789pt;}
.ws45{word-spacing:-0.047762pt;}
.ws9c{word-spacing:-0.042276pt;}
.wscb{word-spacing:-0.037333pt;}
.ws4f{word-spacing:-0.033437pt;}
.wsb{word-spacing:0.000000pt;}
.ws8e{word-spacing:0.048000pt;}
.ws84{word-spacing:0.096000pt;}
.wsbc{word-spacing:0.112000pt;}
.ws36{word-spacing:0.144000pt;}
.ws26{word-spacing:0.192000pt;}
.wsad{word-spacing:0.240000pt;}
.wsb2{word-spacing:0.298667pt;}
.ws29{word-spacing:0.336000pt;}
.wsba{word-spacing:0.373333pt;}
.wsd{word-spacing:0.384000pt;}
.ws86{word-spacing:0.384890pt;}
.ws60{word-spacing:0.432000pt;}
.ws4d{word-spacing:0.434678pt;}
.wsd8{word-spacing:0.448000pt;}
.ws61{word-spacing:0.479093pt;}
.ws7e{word-spacing:0.480000pt;}
.wsd7{word-spacing:0.485333pt;}
.ws1e{word-spacing:0.528000pt;}
.ws94{word-spacing:0.624000pt;}
.ws70{word-spacing:0.672000pt;}
.wsd6{word-spacing:0.709333pt;}
.ws2b{word-spacing:0.720000pt;}
.ws7b{word-spacing:0.768000pt;}
.ws76{word-spacing:0.816000pt;}
.ws77{word-spacing:0.864000pt;}
.wsc8{word-spacing:0.896000pt;}
.ws2e{word-spacing:0.960000pt;}
.ws24{word-spacing:1.008000pt;}
.wsb4{word-spacing:1.045333pt;}
.ws83{word-spacing:1.056000pt;}
.ws37{word-spacing:1.104000pt;}
.ws15{word-spacing:1.200000pt;}
.ws3b{word-spacing:1.248000pt;}
.ws8b{word-spacing:1.296000pt;}
.wse{word-spacing:1.344000pt;}
.ws3c{word-spacing:1.392000pt;}
.wsc0{word-spacing:1.418667pt;}
.ws9f{word-spacing:1.440000pt;}
.ws65{word-spacing:1.488000pt;}
.wsc3{word-spacing:1.493333pt;}
.ws23{word-spacing:1.536000pt;}
.ws8f{word-spacing:1.584000pt;}
.ws31{word-spacing:1.632000pt;}
.ws9e{word-spacing:1.680000pt;}
.wsca{word-spacing:1.717333pt;}
.ws33{word-spacing:1.728000pt;}
.ws6c{word-spacing:1.776000pt;}
.wscc{word-spacing:1.829333pt;}
.wsc4{word-spacing:1.903996pt;}
.ws5a{word-spacing:1.920000pt;}
.wsa{word-spacing:1.968000pt;}
.ws32{word-spacing:2.016000pt;}
.ws14{word-spacing:2.112000pt;}
.ws91{word-spacing:2.160000pt;}
.ws64{word-spacing:2.208000pt;}
.ws11{word-spacing:2.256000pt;}
.wsc7{word-spacing:2.277333pt;}
.ws62{word-spacing:2.304000pt;}
.wsa6{word-spacing:2.352000pt;}
.wsc6{word-spacing:2.389333pt;}
.ws75{word-spacing:2.400000pt;}
.ws16{word-spacing:2.447995pt;}
.ws39{word-spacing:2.544000pt;}
.wsc9{word-spacing:2.576000pt;}
.ws81{word-spacing:2.592000pt;}
.ws3a{word-spacing:2.640000pt;}
.ws9d{word-spacing:2.688000pt;}
.wsd3{word-spacing:2.725333pt;}
.ws6e{word-spacing:2.736000pt;}
.ws5e{word-spacing:2.784000pt;}
.wsd2{word-spacing:2.837333pt;}
.wsab{word-spacing:2.880000pt;}
.ws7{word-spacing:2.928000pt;}
.wsc5{word-spacing:2.949333pt;}
.ws9{word-spacing:2.976000pt;}
.ws93{word-spacing:3.024000pt;}
.ws10{word-spacing:3.264000pt;}
.ws12{word-spacing:3.312000pt;}
.ws95{word-spacing:3.360000pt;}
.wsbb{word-spacing:3.434667pt;}
.ws27{word-spacing:3.456000pt;}
.wsa0{word-spacing:3.504000pt;}
.ws20{word-spacing:3.552000pt;}
.ws69{word-spacing:3.600000pt;}
.wsa2{word-spacing:3.648000pt;}
.wsa4{word-spacing:3.696000pt;}
.ws5b{word-spacing:3.792000pt;}
.wsaf{word-spacing:3.840000pt;}
.ws2c{word-spacing:3.984000pt;}
.ws35{word-spacing:4.032000pt;}
.ws63{word-spacing:4.080000pt;}
.wsb5{word-spacing:4.144000pt;}
.ws6d{word-spacing:4.224000pt;}
.ws13{word-spacing:4.272000pt;}
.ws1f{word-spacing:4.320000pt;}
.ws5d{word-spacing:4.464000pt;}
.wsa1{word-spacing:4.512000pt;}
.ws30{word-spacing:4.608000pt;}
.ws5c{word-spacing:4.704000pt;}
.ws67{word-spacing:4.848000pt;}
.ws34{word-spacing:4.896000pt;}
.wsb0{word-spacing:5.040000pt;}
.ws59{word-spacing:5.136000pt;}
.ws7a{word-spacing:5.232000pt;}
.ws3e{word-spacing:5.328000pt;}
.ws68{word-spacing:5.376000pt;}
.ws8{word-spacing:5.568000pt;}
.ws8c{word-spacing:5.904000pt;}
.wsb3{word-spacing:6.048000pt;}
.wsbf{word-spacing:6.122667pt;}
.ws21{word-spacing:6.144000pt;}
.wsae{word-spacing:6.288000pt;}
.wsd5{word-spacing:6.869333pt;}
.wsb7{word-spacing:6.944000pt;}
.wsd4{word-spacing:7.168000pt;}
.wsb6{word-spacing:7.242667pt;}
.ws46{word-spacing:8.496000pt;}
.ws1b{word-spacing:13.070400pt;}
.ws1a{word-spacing:15.475200pt;}
.ws6{word-spacing:15.546667pt;}
.ws9b{word-spacing:17.840585pt;}
.ws9a{word-spacing:24.516250pt;}
.ws55{word-spacing:51.534766pt;}
.ws53{word-spacing:56.788542pt;}
.ws51{word-spacing:59.654238pt;}
.ws19{word-spacing:61.440000pt;}
.ws7d{word-spacing:83.835733pt;}
.ws1c{word-spacing:83.867918pt;}
.ws4b{word-spacing:85.526400pt;}
.ws98{word-spacing:86.336154pt;}
.ws4a{word-spacing:87.523200pt;}
.ws4c{word-spacing:89.524800pt;}
.ws43{word-spacing:2084.016000pt;}
._18{margin-left:-675.158400pt;}
._20{margin-left:-316.728603pt;}
._2b{margin-left:-282.635520pt;}
._23{margin-left:-268.515715pt;}
._25{margin-left:-264.694787pt;}
._28{margin-left:-255.285752pt;}
._2e{margin-left:-245.543578pt;}
._1d{margin-left:-242.085861pt;}
._1c{margin-left:-241.127675pt;}
._1f{margin-left:-189.091525pt;}
._22{margin-left:-182.903213pt;}
._24{margin-left:-180.576826pt;}
._27{margin-left:-169.505918pt;}
._2a{margin-left:-168.607437pt;}
._c{margin-left:-119.473333pt;}
._1e{margin-left:-98.126400pt;}
._29{margin-left:-96.635733pt;}
._1b{margin-left:-94.567968pt;}
._2c{margin-left:-76.512717pt;}
._1a{margin-left:-52.752853pt;}
._2f{margin-left:-46.757551pt;}
._9{margin-left:-8.773333pt;}
._6{margin-left:-5.200000pt;}
._3{margin-left:-3.600000pt;}
._2{margin-left:-1.876800pt;}
._0{margin-left:-0.964800pt;}
._4{width:1.257600pt;}
._1{width:2.169600pt;}
._5{width:3.782400pt;}
._a{width:5.803200pt;}
._30{width:7.139733pt;}
._b{width:15.546667pt;}
._16{width:20.337600pt;}
._8{width:22.176000pt;}
._14{width:26.520000pt;}
._12{width:27.835200pt;}
._11{width:38.337600pt;}
._7{width:44.870667pt;}
._10{width:48.187200pt;}
._15{width:52.824000pt;}
._26{width:58.898699pt;}
._21{width:61.342059pt;}
._17{width:81.686400pt;}
._d{width:83.016000pt;}
._2d{width:85.955072pt;}
._f{width:97.987200pt;}
._13{width:228.019200pt;}
._19{width:312.624000pt;}
._e{width:363.000000pt;}
.fs8{font-size:27.733333pt;}
.fs17{font-size:29.606933pt;}
.fs7{font-size:31.200000pt;}
.fs2{font-size:33.436800pt;}
.fsd{font-size:33.500267pt;}
.fsf{font-size:34.301410pt;}
.fs5{font-size:37.333333pt;}
.fs19{font-size:42.276267pt;}
.fs18{font-size:42.342400pt;}
.fs16{font-size:42.415467pt;}
.fs9{font-size:42.666667pt;}
.fs1a{font-size:44.680546pt;}
.fs15{font-size:47.635200pt;}
.fsb{font-size:47.717867pt;}
.fs12{font-size:47.761600pt;}
.fsc{font-size:47.789333pt;}
.fs3{font-size:47.909333pt;}
.fs1{font-size:48.000000pt;}
.fse{font-size:49.147875pt;}
.fs14{font-size:50.431683pt;}
.fs13{font-size:50.634075pt;}
.fs11{font-size:53.333333pt;}
.fs10{font-size:57.500267pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fs6{font-size:80.000000pt;}
.y108{bottom:-1.053333pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:0.106667pt;}
.y6a{bottom:0.106800pt;}
.y1b2{bottom:0.546667pt;}
.y148{bottom:0.546800pt;}
.y1be{bottom:1.106800pt;}
.y1b4{bottom:1.160000pt;}
.y97{bottom:1.293333pt;}
.yb0{bottom:1.333333pt;}
.y14d{bottom:1.333467pt;}
.ycc{bottom:1.346667pt;}
.y1da{bottom:1.400000pt;}
.yd4{bottom:1.426667pt;}
.yf2{bottom:1.773067pt;}
.y13c{bottom:1.773467pt;}
.yf7{bottom:1.774000pt;}
.y116{bottom:1.800000pt;}
.y1ba{bottom:1.800133pt;}
.yba{bottom:1.813333pt;}
.ybe{bottom:1.813600pt;}
.y186{bottom:1.853333pt;}
.y92{bottom:1.865467pt;}
.y10d{bottom:1.866667pt;}
.y11{bottom:1.866933pt;}
.y101{bottom:1.867067pt;}
.y1ad{bottom:1.906667pt;}
.ye4{bottom:1.920267pt;}
.yed{bottom:1.920667pt;}
.yb7{bottom:2.600000pt;}
.yc6{bottom:2.666667pt;}
.y14f{bottom:2.666805pt;}
.y106{bottom:2.960000pt;}
.yae{bottom:3.026667pt;}
.yb3{bottom:3.213333pt;}
.y9a{bottom:3.986800pt;}
.y187{bottom:4.413333pt;}
.y1ae{bottom:4.466667pt;}
.yf3{bottom:4.813067pt;}
.y13d{bottom:4.813467pt;}
.yf8{bottom:4.814000pt;}
.y117{bottom:4.840000pt;}
.y1c1{bottom:4.840133pt;}
.ybb{bottom:4.853333pt;}
.ybf{bottom:4.853600pt;}
.y93{bottom:4.905467pt;}
.y10e{bottom:4.906667pt;}
.y12{bottom:4.906933pt;}
.y102{bottom:4.907067pt;}
.ye5{bottom:4.960267pt;}
.yee{bottom:4.960667pt;}
.yb8{bottom:5.640000pt;}
.yb4{bottom:6.253333pt;}
.y1b9{bottom:6.600133pt;}
.ya1{bottom:6.916668pt;}
.ya3{bottom:8.958268pt;}
.ya5{bottom:8.966643pt;}
.ya6{bottom:9.166668pt;}
.ya8{bottom:10.667333pt;}
.ya0{bottom:12.000002pt;}
.ya4{bottom:16.629829pt;}
.ya2{bottom:18.918139pt;}
.yaa{bottom:29.786667pt;}
.y2c{bottom:29.789467pt;}
.y183{bottom:29.792000pt;}
.y129{bottom:29.808000pt;}
.y145{bottom:29.809467pt;}
.y1a9{bottom:29.866800pt;}
.y9f{bottom:64.771332pt;}
.ya7{bottom:66.104000pt;}
.y1b5{bottom:70.000000pt;}
.y182{bottom:70.004000pt;}
.y128{bottom:70.020000pt;}
.ya9{bottom:76.178667pt;}
.y200{bottom:76.394800pt;}
.y180{bottom:82.000000pt;}
.y1b3{bottom:83.333333pt;}
.y181{bottom:86.000000pt;}
.y127{bottom:86.016000pt;}
.y17f{bottom:86.024000pt;}
.y1ff{bottom:88.397467pt;}
.y1b1{bottom:94.000000pt;}
.y1b0{bottom:95.333333pt;}
.y1af{bottom:96.666667pt;}
.y1fe{bottom:100.400133pt;}
.y126{bottom:102.012000pt;}
.y17e{bottom:102.020000pt;}
.y35{bottom:102.837600pt;}
.y15{bottom:102.866933pt;}
.y9d{bottom:103.522667pt;}
.y9e{bottom:103.522800pt;}
.y9c{bottom:103.528133pt;}
.y1ac{bottom:106.000000pt;}
.y1ab{bottom:110.000000pt;}
.y1fd{bottom:112.402800pt;}
.y34{bottom:114.840267pt;}
.y17d{bottom:118.016000pt;}
.y18b{bottom:118.618800pt;}
.y14{bottom:118.862933pt;}
.y1aa{bottom:123.333333pt;}
.y1fc{bottom:124.405467pt;}
.y125{bottom:126.012000pt;}
.y33{bottom:126.842933pt;}
.y9b{bottom:128.860133pt;}
.y10{bottom:130.858667pt;}
.y17c{bottom:134.012000pt;}
.y13{bottom:134.858933pt;}
.yf{bottom:134.911067pt;}
.y1fb{bottom:136.408133pt;}
.y32{bottom:138.845600pt;}
.y99{bottom:140.422667pt;}
.y124{bottom:142.008000pt;}
.y96{bottom:143.522667pt;}
.y98{bottom:144.856133pt;}
.y95{bottom:144.860133pt;}
.y1fa{bottom:148.410800pt;}
.y17b{bottom:150.008000pt;}
.y31{bottom:150.848267pt;}
.ye{bottom:150.907067pt;}
.y144{bottom:153.925467pt;}
.y91{bottom:156.090667pt;}
.y123{bottom:158.004000pt;}
.y1f9{bottom:160.413467pt;}
.y94{bottom:160.856133pt;}
.y90{bottom:160.860133pt;}
.y30{bottom:162.850933pt;}
.y1a8{bottom:164.218800pt;}
.y17a{bottom:166.004000pt;}
.yd{bottom:166.903067pt;}
.y143{bottom:169.921467pt;}
.y1f8{bottom:172.416133pt;}
.y122{bottom:174.000000pt;}
.y121{bottom:174.004000pt;}
.y2f{bottom:174.853600pt;}
.y8f{bottom:176.860133pt;}
.y178{bottom:178.000000pt;}
.y1a7{bottom:180.214800pt;}
.y179{bottom:182.000000pt;}
.y177{bottom:182.008000pt;}
.yc{bottom:182.899067pt;}
.y1f7{bottom:184.418800pt;}
.y142{bottom:185.917467pt;}
.y120{bottom:186.000000pt;}
.y2e{bottom:186.856267pt;}
.y11e{bottom:187.333333pt;}
.y11f{bottom:190.000000pt;}
.y11d{bottom:190.012000pt;}
.y8e{bottom:192.856133pt;}
.y1a6{bottom:196.210800pt;}
.y1f6{bottom:196.421467pt;}
.y176{bottom:198.004000pt;}
.y2d{bottom:198.858933pt;}
.yb{bottom:198.895067pt;}
.y141{bottom:201.913467pt;}
.y11c{bottom:206.008000pt;}
.y1f5{bottom:208.424133pt;}
.y174{bottom:210.000000pt;}
.y1a5{bottom:212.206800pt;}
.y175{bottom:214.000000pt;}
.y173{bottom:214.004000pt;}
.ya{bottom:214.891067pt;}
.y8d{bottom:216.856133pt;}
.y140{bottom:217.909467pt;}
.y1f4{bottom:220.426800pt;}
.y11b{bottom:222.004000pt;}
.y1a4{bottom:228.202800pt;}
.y9{bottom:230.887067pt;}
.y1f3{bottom:232.429467pt;}
.y13f{bottom:233.905467pt;}
.y11a{bottom:238.000000pt;}
.y119{bottom:238.004000pt;}
.y1a3{bottom:244.198800pt;}
.y1f2{bottom:244.432133pt;}
.y13b{bottom:245.901333pt;}
.y8{bottom:246.883067pt;}
.y13e{bottom:249.901467pt;}
.y13a{bottom:249.905467pt;}
.y115{bottom:250.000000pt;}
.y118{bottom:254.000000pt;}
.y114{bottom:254.004000pt;}
.y172{bottom:254.008000pt;}
.y1f1{bottom:256.434800pt;}
.y1a2{bottom:260.194800pt;}
.y7{bottom:262.879067pt;}
.y20a{bottom:264.653467pt;}
.y138{bottom:265.901333pt;}
.y139{bottom:265.901467pt;}
.y137{bottom:265.938800pt;}
.y8c{bottom:266.234800pt;}
.y112{bottom:267.333333pt;}
.y1f0{bottom:268.437467pt;}
.y113{bottom:270.000000pt;}
.y171{bottom:270.004000pt;}
.y111{bottom:270.008000pt;}
.y1a1{bottom:276.190800pt;}
.y209{bottom:276.656133pt;}
.y6{bottom:278.875067pt;}
.y1ef{bottom:280.440133pt;}
.y136{bottom:281.934800pt;}
.y16f{bottom:282.000000pt;}
.y8b{bottom:282.230800pt;}
.y170{bottom:286.000000pt;}
.y110{bottom:286.004000pt;}
.y208{bottom:288.658800pt;}
.y1a0{bottom:292.186800pt;}
.y1ee{bottom:292.442800pt;}
.y5{bottom:294.871067pt;}
.y135{bottom:297.930800pt;}
.y10c{bottom:298.000000pt;}
.y8a{bottom:298.226800pt;}
.y207{bottom:300.661467pt;}
.y10f{bottom:302.000000pt;}
.y16e{bottom:302.004000pt;}
.y10b{bottom:302.012000pt;}
.y1ed{bottom:304.445467pt;}
.y4{bottom:310.867067pt;}
.y206{bottom:312.664133pt;}
.y134{bottom:313.926800pt;}
.y16c{bottom:314.000000pt;}
.y89{bottom:314.222800pt;}
.y1ec{bottom:316.448133pt;}
.y19f{bottom:317.518800pt;}
.y16d{bottom:318.000000pt;}
.y10a{bottom:318.008000pt;}
.y205{bottom:324.666800pt;}
.y3{bottom:326.863067pt;}
.y1eb{bottom:328.450800pt;}
.y133{bottom:329.922800pt;}
.y19e{bottom:333.514800pt;}
.y109{bottom:334.004000pt;}
.y204{bottom:336.669467pt;}
.y88{bottom:339.554800pt;}
.y1ea{bottom:340.453467pt;}
.y2{bottom:342.859067pt;}
.y16b{bottom:346.000000pt;}
.y105{bottom:346.500000pt;}
.y203{bottom:348.672133pt;}
.y19d{bottom:349.510800pt;}
.y107{bottom:350.000000pt;}
.y16a{bottom:350.004000pt;}
.y104{bottom:350.008000pt;}
.y1e9{bottom:352.456133pt;}
.y132{bottom:355.254800pt;}
.y87{bottom:355.550800pt;}
.y202{bottom:360.674800pt;}
.y168{bottom:362.000000pt;}
.y19c{bottom:365.506800pt;}
.y169{bottom:366.000000pt;}
.y103{bottom:366.004000pt;}
.y1{bottom:366.859067pt;}
.y131{bottom:371.250800pt;}
.y86{bottom:371.546800pt;}
.y1e8{bottom:372.456133pt;}
.y201{bottom:372.677467pt;}
.y100{bottom:377.174667pt;}
.y167{bottom:378.000000pt;}
.y54{bottom:379.710933pt;}
.y19b{bottom:381.502800pt;}
.yff{bottom:382.000000pt;}
.yfe{bottom:382.008000pt;}
.y166{bottom:382.016000pt;}
.y130{bottom:387.246800pt;}
.y85{bottom:387.542800pt;}
.y53{bottom:391.713600pt;}
.y19a{bottom:397.498800pt;}
.yfd{bottom:398.004000pt;}
.y165{bottom:398.012000pt;}
.y12f{bottom:403.242800pt;}
.y84{bottom:403.538800pt;}
.y2b{bottom:409.416267pt;}
.y1e7{bottom:412.468133pt;}
.y199{bottom:413.494800pt;}
.yfc{bottom:414.000000pt;}
.y164{bottom:414.008000pt;}
.y52{bottom:419.050933pt;}
.y12e{bottom:419.238800pt;}
.y83{bottom:419.534800pt;}
.y2a{bottom:425.412267pt;}
.y1e6{bottom:428.464133pt;}
.y198{bottom:429.490800pt;}
.y163{bottom:430.004000pt;}
.y51{bottom:431.053600pt;}
.y12c{bottom:435.234667pt;}
.y12d{bottom:435.234800pt;}
.y12b{bottom:435.238800pt;}
.y82{bottom:435.530800pt;}
.yfb{bottom:438.000000pt;}
.y29{bottom:441.408267pt;}
.y162{bottom:442.000000pt;}
.y50{bottom:443.056267pt;}
.y1e5{bottom:444.460133pt;}
.y197{bottom:445.486800pt;}
.y161{bottom:446.000000pt;}
.y12a{bottom:451.234800pt;}
.y81{bottom:451.526800pt;}
.y4f{bottom:455.058933pt;}
.y28{bottom:457.404267pt;}
.y1e4{bottom:460.456133pt;}
.y196{bottom:461.482800pt;}
.y15f{bottom:466.000000pt;}
.y4e{bottom:467.061600pt;}
.y7f{bottom:467.522667pt;}
.y80{bottom:467.522800pt;}
.y7e{bottom:467.546800pt;}
.y160{bottom:470.000000pt;}
.y15e{bottom:470.004000pt;}
.y27{bottom:473.400267pt;}
.y195{bottom:477.478800pt;}
.y4d{bottom:479.064267pt;}
.y15d{bottom:482.000000pt;}
.y1e3{bottom:482.856133pt;}
.y7d{bottom:483.542800pt;}
.yfa{bottom:484.670667pt;}
.y15c{bottom:486.000000pt;}
.y15b{bottom:486.008000pt;}
.y26{bottom:489.396267pt;}
.y151{bottom:492.378667pt;}
.y150{bottom:492.378800pt;}
.y194{bottom:493.474800pt;}
.y4c{bottom:493.726933pt;}
.yf6{bottom:495.882667pt;}
.y7c{bottom:499.538800pt;}
.yf9{bottom:500.666667pt;}
.yf5{bottom:500.670667pt;}
.y15a{bottom:502.004000pt;}
.y14e{bottom:503.045329pt;}
.y14c{bottom:504.378667pt;}
.y25{bottom:505.392267pt;}
.y14b{bottom:505.712133pt;}
.yf1{bottom:511.692000pt;}
.y158{bottom:514.000000pt;}
.y7b{bottom:515.534800pt;}
.yf4{bottom:516.666667pt;}
.y193{bottom:517.474800pt;}
.y159{bottom:518.000000pt;}
.y157{bottom:518.004000pt;}
.y14a{bottom:519.045333pt;}
.y149{bottom:519.045467pt;}
.y24{bottom:521.388267pt;}
.y1e2{bottom:524.884133pt;}
.y4b{bottom:527.056267pt;}
.y155{bottom:530.000000pt;}
.y22c{bottom:530.800000pt;}
.y7a{bottom:531.530800pt;}
.y147{bottom:532.378667pt;}
.y146{bottom:532.378800pt;}
.yf0{bottom:532.670667pt;}
.y156{bottom:534.000000pt;}
.y154{bottom:534.004000pt;}
.y23{bottom:537.384267pt;}
.y4a{bottom:539.058933pt;}
.y1e1{bottom:540.880133pt;}
.y22b{bottom:542.802667pt;}
.yec{bottom:543.582667pt;}
.y79{bottom:547.526800pt;}
.yef{bottom:548.666667pt;}
.yeb{bottom:548.670667pt;}
.y153{bottom:550.000000pt;}
.y22{bottom:553.380267pt;}
.y49{bottom:553.721600pt;}
.y22a{bottom:554.805333pt;}
.y1e0{bottom:556.876133pt;}
.y76{bottom:563.522667pt;}
.y78{bottom:563.522800pt;}
.y75{bottom:563.560133pt;}
.yea{bottom:564.666667pt;}
.ye9{bottom:564.682667pt;}
.y229{bottom:566.808000pt;}
.y192{bottom:566.829467pt;}
.y21{bottom:569.376267pt;}
.y1df{bottom:572.872133pt;}
.y152{bottom:574.000000pt;}
.y228{bottom:578.810667pt;}
.y74{bottom:579.556133pt;}
.ye8{bottom:580.678667pt;}
.y191{bottom:582.825467pt;}
.y20{bottom:585.372267pt;}
.y48{bottom:587.050933pt;}
.y1de{bottom:588.868133pt;}
.y227{bottom:590.813333pt;}
.y73{bottom:595.552133pt;}
.ye7{bottom:596.674667pt;}
.y190{bottom:598.821467pt;}
.y47{bottom:599.053600pt;}
.y1f{bottom:601.368267pt;}
.y226{bottom:602.816000pt;}
.y1dd{bottom:604.864133pt;}
.ye6{bottom:612.670667pt;}
.y46{bottom:613.716267pt;}
.y18f{bottom:614.817467pt;}
.y225{bottom:614.818667pt;}
.y18a{bottom:616.293333pt;}
.y1dc{bottom:620.860133pt;}
.y72{bottom:620.884133pt;}
.ye3{bottom:623.574667pt;}
.y224{bottom:626.821333pt;}
.ye1{bottom:627.333333pt;}
.ye2{bottom:628.666667pt;}
.ye0{bottom:628.670667pt;}
.y189{bottom:629.626667pt;}
.y1e{bottom:630.466933pt;}
.y18e{bottom:630.813467pt;}
.y1d9{bottom:635.522667pt;}
.y1db{bottom:636.856133pt;}
.y1d8{bottom:636.864133pt;}
.y71{bottom:636.880133pt;}
.y223{bottom:638.824000pt;}
.y188{bottom:642.960000pt;}
.ydf{bottom:644.666667pt;}
.yde{bottom:644.674667pt;}
.y1d{bottom:646.462933pt;}
.y45{bottom:649.052267pt;}
.y222{bottom:650.826667pt;}
.y185{bottom:652.293333pt;}
.y1d7{bottom:652.860133pt;}
.y70{bottom:652.876133pt;}
.y18d{bottom:656.145467pt;}
.y184{bottom:656.293333pt;}
.ydd{bottom:660.670667pt;}
.y44{bottom:661.054933pt;}
.y1c{bottom:662.458933pt;}
.y221{bottom:662.829333pt;}
.y1d5{bottom:664.856000pt;}
.y1d6{bottom:668.856133pt;}
.y6f{bottom:668.872133pt;}
.y1d4{bottom:668.884133pt;}
.y18c{bottom:672.141467pt;}
.y43{bottom:673.057600pt;}
.y220{bottom:674.832000pt;}
.ydc{bottom:676.666667pt;}
.ydb{bottom:676.682667pt;}
.y1b{bottom:678.454933pt;}
.y6e{bottom:684.868133pt;}
.y1d3{bottom:684.880133pt;}
.y42{bottom:685.060267pt;}
.y21f{bottom:686.834667pt;}
.y1a{bottom:694.450933pt;}
.y41{bottom:697.062933pt;}
.y21e{bottom:698.837333pt;}
.yda{bottom:700.682667pt;}
.y6d{bottom:700.864133pt;}
.y1d2{bottom:700.876133pt;}
.y40{bottom:709.065600pt;}
.y19{bottom:710.446933pt;}
.y21d{bottom:710.840000pt;}
.y1bd{bottom:713.285333pt;}
.y1bc{bottom:714.618800pt;}
.yd9{bottom:716.678667pt;}
.y6c{bottom:716.860133pt;}
.y1d1{bottom:716.872133pt;}
.y3f{bottom:721.068267pt;}
.y21c{bottom:722.842667pt;}
.y18{bottom:726.442933pt;}
.y1b8{bottom:726.618667pt;}
.y1b7{bottom:727.952000pt;}
.y1bb{bottom:727.952133pt;}
.yd8{bottom:732.674667pt;}
.y69{bottom:732.856000pt;}
.y6b{bottom:732.856133pt;}
.y68{bottom:732.904133pt;}
.y3e{bottom:733.070933pt;}
.y21b{bottom:734.845333pt;}
.y1d0{bottom:740.872133pt;}
.y17{bottom:742.438933pt;}
.y1b6{bottom:742.618667pt;}
.y3d{bottom:745.073600pt;}
.y21a{bottom:746.848000pt;}
.yd7{bottom:748.670667pt;}
.y67{bottom:748.900133pt;}
.y1cf{bottom:756.868133pt;}
.y3c{bottom:757.076267pt;}
.y16{bottom:758.434933pt;}
.y219{bottom:758.850667pt;}
.yd6{bottom:762.000000pt;}
.yd3{bottom:763.333333pt;}
.yd5{bottom:764.666667pt;}
.yd2{bottom:764.670667pt;}
.y66{bottom:764.896133pt;}
.y218{bottom:770.853333pt;}
.y3b{bottom:771.738933pt;}
.y1ce{bottom:772.864133pt;}
.yd0{bottom:778.000000pt;}
.ycf{bottom:779.333333pt;}
.yd1{bottom:780.666667pt;}
.yce{bottom:780.670667pt;}
.y65{bottom:780.892133pt;}
.y217{bottom:782.856000pt;}
.y1cd{bottom:788.860133pt;}
.y216{bottom:794.858667pt;}
.ycb{bottom:795.333333pt;}
.ycd{bottom:796.666667pt;}
.yca{bottom:796.670667pt;}
.y64{bottom:796.888133pt;}
.y3a{bottom:798.226800pt;}
.y59{bottom:798.848133pt;}
.y1cb{bottom:800.856000pt;}
.y1cc{bottom:804.856133pt;}
.y1ca{bottom:804.864133pt;}
.y215{bottom:806.861333pt;}
.y58{bottom:810.848133pt;}
.yc9{bottom:812.666667pt;}
.yc8{bottom:812.670667pt;}
.y63{bottom:812.884133pt;}
.y39{bottom:817.693467pt;}
.y214{bottom:818.864000pt;}
.y1c9{bottom:820.860133pt;}
.y57{bottom:822.848133pt;}
.yc5{bottom:826.000000pt;}
.yc4{bottom:827.333333pt;}
.yc7{bottom:828.666667pt;}
.yc3{bottom:828.682667pt;}
.y62{bottom:828.880133pt;}
.y213{bottom:830.866667pt;}
.y1c7{bottom:832.856000pt;}
.y56{bottom:834.848133pt;}
.y1c8{bottom:836.856133pt;}
.y1c6{bottom:836.860133pt;}
.y38{bottom:837.693467pt;}
.y212{bottom:842.869333pt;}
.yc2{bottom:844.678667pt;}
.y61{bottom:844.876133pt;}
.y1c4{bottom:848.856000pt;}
.y1c5{bottom:852.856133pt;}
.y1c3{bottom:852.860133pt;}
.y211{bottom:854.872000pt;}
.yc1{bottom:860.674667pt;}
.y60{bottom:860.872133pt;}
.y37{bottom:862.760133pt;}
.y1c0{bottom:864.856000pt;}
.y210{bottom:866.874667pt;}
.y1c2{bottom:868.856133pt;}
.y1bf{bottom:868.864133pt;}
.y55{bottom:870.584133pt;}
.yc0{bottom:876.670667pt;}
.y5f{bottom:876.868133pt;}
.y20f{bottom:878.877333pt;}
.y36{bottom:886.760133pt;}
.ybd{bottom:887.874667pt;}
.y5a{bottom:887.890800pt;}
.yb9{bottom:888.666667pt;}
.y20e{bottom:890.880000pt;}
.ybc{bottom:892.666667pt;}
.y5e{bottom:892.864133pt;}
.y20d{bottom:902.882667pt;}
.yb2{bottom:903.000000pt;}
.yb6{bottom:903.333333pt;}
.yb5{bottom:908.666667pt;}
.yb1{bottom:908.670667pt;}
.y5d{bottom:908.860133pt;}
.y20c{bottom:914.885333pt;}
.yad{bottom:922.000000pt;}
.yaf{bottom:923.000000pt;}
.yac{bottom:924.666667pt;}
.y5c{bottom:924.856133pt;}
.y20b{bottom:926.888000pt;}
.y5b{bottom:977.198267pt;}
.yab{bottom:978.284533pt;}
.h2d{height:4.000000pt;}
.h2b{height:7.998667pt;}
.hd{height:8.000000pt;}
.h30{height:9.253333pt;}
.h38{height:9.254667pt;}
.h39{height:9.333333pt;}
.h10{height:10.666667pt;}
.h23{height:10.693333pt;}
.h27{height:10.694667pt;}
.h21{height:12.000000pt;}
.h34{height:13.333333pt;}
.h3{height:14.666667pt;}
.h2c{height:14.668000pt;}
.h12{height:16.000000pt;}
.h32{height:19.920003pt;}
.h35{height:20.369570pt;}
.h28{height:21.360026pt;}
.ha{height:21.770667pt;}
.h18{height:22.646180pt;}
.h16{height:22.880682pt;}
.h4{height:23.004518pt;}
.h2f{height:27.697300pt;}
.h33{height:27.861333pt;}
.h1e{height:28.026667pt;}
.h3c{height:28.177297pt;}
.h37{height:28.200661pt;}
.h31{height:28.842667pt;}
.h3a{height:29.086071pt;}
.h36{height:29.131571pt;}
.h7{height:29.306667pt;}
.h3b{height:29.779758pt;}
.h1c{height:30.474120pt;}
.he{height:31.159767pt;}
.h1a{height:31.202894pt;}
.h29{height:31.344000pt;}
.h2e{height:31.749047pt;}
.h5{height:31.908321pt;}
.h25{height:31.931758pt;}
.h1f{height:32.304000pt;}
.h17{height:32.448000pt;}
.h15{height:32.784000pt;}
.h22{height:32.859981pt;}
.h13{height:32.879061pt;}
.h11{height:32.961621pt;}
.hb{height:33.493333pt;}
.h2a{height:33.612913pt;}
.h26{height:33.747809pt;}
.h2{height:37.680000pt;}
.h14{height:38.693339pt;}
.h20{height:41.866667pt;}
.h1b{height:43.664062pt;}
.h24{height:44.448000pt;}
.h19{height:44.708247pt;}
.h1{height:46.053333pt;}
.hf{height:46.076000pt;}
.h9{height:46.092000pt;}
.h6{height:50.240000pt;}
.h1d{height:52.306151pt;}
.hc{height:58.613333pt;}
.h8{height:62.800000pt;}
.h0{height:1056.000000pt;}
.w10{width:5.334667pt;}
.w16{width:6.666667pt;}
.w2{width:10.665333pt;}
.w3{width:10.666667pt;}
.w9{width:11.946667pt;}
.w1{width:12.000000pt;}
.w1c{width:16.000000pt;}
.w1b{width:22.666667pt;}
.w13{width:25.333333pt;}
.w4{width:25.334667pt;}
.wa{width:26.666667pt;}
.wc{width:27.973333pt;}
.w8{width:28.000000pt;}
.w11{width:29.320000pt;}
.we{width:31.998667pt;}
.w5{width:33.333333pt;}
.wb{width:36.000000pt;}
.w19{width:45.333333pt;}
.wf{width:51.973328pt;}
.wd{width:51.973348pt;}
.w12{width:53.319987pt;}
.w1a{width:58.666667pt;}
.w15{width:65.333333pt;}
.w18{width:68.000000pt;}
.w17{width:70.666667pt;}
.w14{width:72.000000pt;}
.w7{width:189.305333pt;}
.w6{width:213.306641pt;}
.w0{width:816.000000pt;}
.x3e{left:-1.106933pt;}
.x0{left:0.000000pt;}
.x99{left:2.386533pt;}
.x27{left:6.026667pt;}
.x3{left:7.867067pt;}
.x95{left:8.906667pt;}
.x3f{left:10.253067pt;}
.x98{left:13.266667pt;}
.x18{left:14.833454pt;}
.x32{left:16.386667pt;}
.x94{left:17.546667pt;}
.x3d{left:20.013067pt;}
.x2e{left:22.507467pt;}
.x43{left:24.751476pt;}
.x1a{left:25.750120pt;}
.x9b{left:26.760267pt;}
.x1b{left:36.583454pt;}
.x5{left:48.000000pt;}
.x8a{left:52.132933pt;}
.x1e{left:56.958520pt;}
.x6{left:60.002667pt;}
.x20{left:72.291854pt;}
.x8d{left:82.207733pt;}
.x22{left:83.458520pt;}
.x19{left:88.500120pt;}
.x1c{left:90.879011pt;}
.x21{left:96.666920pt;}
.x24{left:97.833600pt;}
.x1f{left:101.044617pt;}
.x93{left:119.433333pt;}
.x96{left:147.433333pt;}
.x1d{left:154.211265pt;}
.x72{left:212.262667pt;}
.x73{left:222.929200pt;}
.x1{left:230.000000pt;}
.x8{left:239.533067pt;}
.xa5{left:240.668000pt;}
.x97{left:244.572000pt;}
.x26{left:265.596000pt;}
.xa3{left:266.701333pt;}
.x5d{left:269.572000pt;}
.x82{left:278.025600pt;}
.x62{left:281.553333pt;}
.xa4{left:282.700933pt;}
.x33{left:283.761333pt;}
.x9a{left:289.905333pt;}
.x28{left:293.596000pt;}
.x11{left:299.249333pt;}
.x56{left:302.000000pt;}
.x6d{left:308.574667pt;}
.x9c{left:310.853333pt;}
.x34{left:319.761467pt;}
.x57{left:323.160000pt;}
.x12{left:324.583867pt;}
.x88{left:331.270933pt;}
.x6e{left:332.886667pt;}
.x42{left:333.869324pt;}
.x5e{left:334.904933pt;}
.x41{left:345.869333pt;}
.x13{left:349.270667pt;}
.x50{left:350.435733pt;}
.x63{left:352.220667pt;}
.x3a{left:364.941333pt;}
.x44{left:373.843067pt;}
.x3b{left:375.608267pt;}
.x14{left:382.604533pt;}
.x59{left:384.053733pt;}
.x8c{left:386.304267pt;}
.x17{left:392.346680pt;}
.x58{left:395.160400pt;}
.x74{left:396.375333pt;}
.x23{left:404.346667pt;}
.x35{left:409.618667pt;}
.x77{left:416.002667pt;}
.x36{left:420.285867pt;}
.x5a{left:422.206000pt;}
.x78{left:426.669467pt;}
.x7b{left:431.835867pt;}
.x45{left:441.961333pt;}
.x67{left:446.121333pt;}
.x46{left:447.294800pt;}
.x64{left:455.026667pt;}
.x4c{left:457.776000pt;}
.x9{left:461.306667pt;}
.x2b{left:467.372000pt;}
.x4d{left:468.442133pt;}
.x9d{left:470.612000pt;}
.xa{left:471.972533pt;}
.x7c{left:474.928000pt;}
.x2c{left:478.038800pt;}
.x9e{left:482.612267pt;}
.x15{left:484.093333pt;}
.x7d{left:486.927200pt;}
.x9f{left:489.765333pt;}
.xb{left:493.697333pt;}
.x16{left:494.759333pt;}
.xa1{left:496.898667pt;}
.xa0{left:501.765467pt;}
.xc{left:504.364267pt;}
.x90{left:507.166667pt;}
.xa2{left:508.898133pt;}
.x68{left:514.122133pt;}
.x3c{left:516.636000pt;}
.x8f{left:519.166667pt;}
.x2d{left:521.885333pt;}
.xf{left:534.661333pt;}
.x2{left:543.456000pt;}
.x10{left:546.660933pt;}
.x2f{left:548.552800pt;}
.x48{left:552.742676pt;}
.x8e{left:554.313867pt;}
.x4{left:555.456400pt;}
.x6f{left:558.719067pt;}
.x79{left:563.222667pt;}
.x47{left:564.742667pt;}
.x7a{left:575.222800pt;}
.x54{left:578.333333pt;}
.x75{left:580.986667pt;}
.x53{left:582.584000pt;}
.x6b{left:585.704000pt;}
.x5f{left:591.137333pt;}
.x76{left:592.986267pt;}
.x49{left:594.062933pt;}
.x6c{left:596.371200pt;}
.x60{left:597.805067pt;}
.x55{left:603.667200pt;}
.x83{left:609.172000pt;}
.x38{left:611.181315pt;}
.x86{left:615.401333pt;}
.x89{left:619.721333pt;}
.x25{left:621.077867pt;}
.x37{left:623.181333pt;}
.x7e{left:626.085333pt;}
.x87{left:627.401067pt;}
.x30{left:634.824000pt;}
.x7f{left:638.085333pt;}
.x70{left:639.809326pt;}
.x31{left:645.490133pt;}
.x40{left:647.753333pt;}
.x5b{left:648.989333pt;}
.x39{left:651.154800pt;}
.x80{left:655.156000pt;}
.x29{left:657.585333pt;}
.x5c{left:659.656533pt;}
.x69{left:663.897333pt;}
.x81{left:667.155333pt;}
.x2a{left:669.532667pt;}
.x6a{left:675.897600pt;}
.x71{left:681.129867pt;}
.x51{left:683.066667pt;}
.x8b{left:685.054400pt;}
.x61{left:696.906667pt;}
.x84{left:700.109333pt;}
.x4e{left:703.154667pt;}
.x65{left:704.577333pt;}
.x52{left:708.400267pt;}
.x85{left:712.108667pt;}
.x4f{left:713.821333pt;}
.x66{left:716.577333pt;}
.x4a{left:718.566667pt;}
.x91{left:720.888000pt;}
.x4b{left:729.233467pt;}
.x92{left:731.554800pt;}
.x7{left:740.028800pt;}
.xd{left:757.333333pt;}
.xe{left:768.000133pt;}
}




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