
    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_e95f7265b6c8a93b73e95365.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;font-style:normal;font-weight: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_0c3918245afe5531eaa83566.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.728000;font-style:normal;font-weight: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_a144eb2a624732ef114cacd9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_64214206abc55c28d2c1de52.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight: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_37c4485ca132861b2bb28f64.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9ea06cef5007e468b5579886.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.752000;font-style:normal;font-weight: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_a90568ea920194a4ba65b08f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.906000;font-style:normal;font-weight: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_e709ece8af0cd31453ae0aa5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.844000;font-style:normal;font-weight: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_9a54ee67a47cc63731c3fd48.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.840000;font-style:normal;font-weight: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_ae1ca7b921b1108ab1ea71d3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c9de132676ccf817f916aa1b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.898000;font-style:normal;font-weight: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_e7d04fdb0bc21a9596c844fa.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.826000;font-style:normal;font-weight: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_28d1b27c9e8e0ed66c2c874e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.908203;font-style:normal;font-weight: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_db32b22b7b6db7a01efa5593.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.906000;font-style:normal;font-weight: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_ae1ca7b921b1108ab1ea71d3.woff2')format("woff");}.fff{font-family:fff;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_9bc8883a0c5195b40b32d9d1.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.839000;font-style:normal;font-weight: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_e709ece8af0cd31453ae0aa5.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.844000;font-style:normal;font-weight: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_c9de132676ccf817f916aa1b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.898000;font-style:normal;font-weight: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_ae1ca7b921b1108ab1ea71d3.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_9bc8883a0c5195b40b32d9d1.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.839000;font-style:normal;font-weight: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_a90568ea920194a4ba65b08f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.906000;font-style:normal;font-weight: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_e709ece8af0cd31453ae0aa5.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.844000;font-style:normal;font-weight: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_9a54ee67a47cc63731c3fd48.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.840000;font-style:normal;font-weight: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_e7d04fdb0bc21a9596c844fa.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.826000;font-style:normal;font-weight: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_c9de132676ccf817f916aa1b.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.898000;font-style:normal;font-weight: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_a90568ea920194a4ba65b08f.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.906000;font-style:normal;font-weight: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_ae1ca7b921b1108ab1ea71d3.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_9a54ee67a47cc63731c3fd48.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.840000;font-style:normal;font-weight: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_8b432214da666a455491e3c9.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.844000;font-style:normal;font-weight: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_a90568ea920194a4ba65b08f.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.906000;font-style:normal;font-weight: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_ae1ca7b921b1108ab1ea71d3.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_9bc8883a0c5195b40b32d9d1.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.839000;font-style:normal;font-weight: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_a90568ea920194a4ba65b08f.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.906000;font-style:normal;font-weight: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_ae1ca7b921b1108ab1ea71d3.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_e709ece8af0cd31453ae0aa5.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.844000;font-style:normal;font-weight: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_5127bfaaf591726d140c420d.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.649000;font-style:normal;font-weight: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_ae1ca7b921b1108ab1ea71d3.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_9bc8883a0c5195b40b32d9d1.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.839000;font-style:normal;font-weight: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_80a01816c55a184e99cfe576.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.906000;font-style:normal;font-weight: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_a90568ea920194a4ba65b08f.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.906000;font-style:normal;font-weight: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_ae1ca7b921b1108ab1ea71d3.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_e709ece8af0cd31453ae0aa5.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.844000;font-style:normal;font-weight: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_9a54ee67a47cc63731c3fd48.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.840000;font-style:normal;font-weight: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_5127bfaaf591726d140c420d.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.649000;font-style:normal;font-weight: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_a90568ea920194a4ba65b08f.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.906000;font-style:normal;font-weight: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_ae1ca7b921b1108ab1ea71d3.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_9bc8883a0c5195b40b32d9d1.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.839000;font-style:normal;font-weight: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_e709ece8af0cd31453ae0aa5.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.844000;font-style:normal;font-weight: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_9a54ee67a47cc63731c3fd48.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.840000;font-style:normal;font-weight: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_5127bfaaf591726d140c420d.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.649000;font-style:normal;font-weight: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_80a01816c55a184e99cfe576.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.906000;font-style:normal;font-weight: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_ae1ca7b921b1108ab1ea71d3.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_9a54ee67a47cc63731c3fd48.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.840000;font-style:normal;font-weight: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_a99799e74fcb0f3a88d16442.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.844000;font-style:normal;font-weight: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_5127bfaaf591726d140c420d.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.649000;font-style:normal;font-weight: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_ae1ca7b921b1108ab1ea71d3.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_9bc8883a0c5195b40b32d9d1.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.839000;font-style:normal;font-weight: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_a90568ea920194a4ba65b08f.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.906000;font-style:normal;font-weight: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_c9de132676ccf817f916aa1b.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.898000;font-style:normal;font-weight: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_9a54ee67a47cc63731c3fd48.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.840000;font-style:normal;font-weight: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_7c4c4af4fa1b6a4ea3b1909c.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.844000;font-style:normal;font-weight: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_5127bfaaf591726d140c420d.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.649000;font-style:normal;font-weight: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_80a01816c55a184e99cfe576.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.906000;font-style:normal;font-weight: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_e709ece8af0cd31453ae0aa5.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.844000;font-style:normal;font-weight: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_ae1ca7b921b1108ab1ea71d3.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_c9de132676ccf817f916aa1b.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.898000;font-style:normal;font-weight: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_db32b22b7b6db7a01efa5593.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.906000;font-style:normal;font-weight: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_ae1ca7b921b1108ab1ea71d3.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_9bc8883a0c5195b40b32d9d1.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.839000;font-style:normal;font-weight: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_e709ece8af0cd31453ae0aa5.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.844000;font-style:normal;font-weight: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_c9de132676ccf817f916aa1b.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-28.212000px;}
.v1{vertical-align:-17.884904px;}
.v8{vertical-align:-15.240000px;}
.v5{vertical-align:-8.968440px;}
.v7{vertical-align:-7.170000px;}
.vd{vertical-align:-5.064000px;}
.vf{vertical-align:-1.494390px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:5.779079px;}
.vb{vertical-align:8.964000px;}
.ve{vertical-align:12.253200px;}
.v9{vertical-align:14.743079px;}
.v6{vertical-align:17.280000px;}
.v4{vertical-align:21.698160px;}
.v2{vertical-align:28.212000px;}
.vc{vertical-align:36.445079px;}
.lsa0{letter-spacing:-8.308808px;}
.ls92{letter-spacing:-1.688106px;}
.ls93{letter-spacing:-0.896634px;}
.lsa{letter-spacing:-0.810000px;}
.ls9{letter-spacing:-0.480000px;}
.ls8{letter-spacing:0.000000px;}
.ls76{letter-spacing:0.001192px;}
.ls34{letter-spacing:0.001453px;}
.ls95{letter-spacing:0.001684px;}
.ls53{letter-spacing:0.002725px;}
.ls49{letter-spacing:0.003052px;}
.ls68{letter-spacing:0.003072px;}
.ls73{letter-spacing:0.003370px;}
.ls60{letter-spacing:0.004157px;}
.ls78{letter-spacing:0.005384px;}
.ls4d{letter-spacing:0.009205px;}
.ls7f{letter-spacing:0.010985px;}
.ls82{letter-spacing:0.013464px;}
.ls50{letter-spacing:0.015330px;}
.ls4f{letter-spacing:0.016321px;}
.ls61{letter-spacing:0.016884px;}
.ls5b{letter-spacing:0.018216px;}
.ls57{letter-spacing:0.018613px;}
.ls40{letter-spacing:0.020573px;}
.ls51{letter-spacing:0.023732px;}
.ls8f{letter-spacing:0.029215px;}
.ls97{letter-spacing:0.030830px;}
.ls31{letter-spacing:0.042358px;}
.ls5e{letter-spacing:0.125528px;}
.lsa1{letter-spacing:0.143462px;}
.ls13{letter-spacing:0.179327px;}
.ls6c{letter-spacing:0.605418px;}
.ls69{letter-spacing:0.606018px;}
.ls63{letter-spacing:0.610218px;}
.ls4b{letter-spacing:0.859613px;}
.ls3c{letter-spacing:0.862976px;}
.ls88{letter-spacing:0.865613px;}
.ls6f{letter-spacing:0.865892px;}
.ls75{letter-spacing:0.870692px;}
.ls39{letter-spacing:1.045212px;}
.ls47{letter-spacing:1.046725px;}
.ls85{letter-spacing:1.047325px;}
.ls42{letter-spacing:1.072508px;}
.ls45{letter-spacing:1.073108px;}
.ls83{letter-spacing:1.073708px;}
.ls3e{letter-spacing:1.074253px;}
.ls25{letter-spacing:1.075466px;}
.ls23{letter-spacing:1.076383px;}
.ls28{letter-spacing:1.076813px;}
.ls1d{letter-spacing:1.078037px;}
.ls2a{letter-spacing:1.079108px;}
.ls79{letter-spacing:1.097250px;}
.ls15{letter-spacing:1.122054px;}
.ls87{letter-spacing:1.195072px;}
.ls74{letter-spacing:2.409072px;}
.ls62{letter-spacing:2.412185px;}
.ls6e{letter-spacing:2.413872px;}
.ls66{letter-spacing:2.963954px;}
.ls64{letter-spacing:2.964554px;}
.ls6a{letter-spacing:2.968754px;}
.ls6d{letter-spacing:2.969354px;}
.ls90{letter-spacing:2.985197px;}
.ls29{letter-spacing:2.985797px;}
.ls0{letter-spacing:2.986176px;}
.ls4a{letter-spacing:2.987674px;}
.ls1{letter-spacing:2.988600px;}
.ls8a{letter-spacing:2.988780px;}
.ls2{letter-spacing:2.989200px;}
.ls41{letter-spacing:2.991797px;}
.ls4e{letter-spacing:2.993674px;}
.ls27{letter-spacing:2.994600px;}
.ls80{letter-spacing:2.996303px;}
.ls84{letter-spacing:3.001703px;}
.ls52{letter-spacing:3.002303px;}
.ls3b{letter-spacing:3.012682px;}
.ls36{letter-spacing:3.119972px;}
.ls9d{letter-spacing:3.138210px;}
.ls1c{letter-spacing:3.139117px;}
.ls70{letter-spacing:3.186582px;}
.ls4c{letter-spacing:3.814282px;}
.ls2b{letter-spacing:3.949151px;}
.ls46{letter-spacing:3.955151px;}
.ls43{letter-spacing:3.955751px;}
.ls7{letter-spacing:11.955150px;}
.ls2e{letter-spacing:13.294127px;}
.ls3{letter-spacing:13.449600px;}
.lsd{letter-spacing:13.628837px;}
.lsa2{letter-spacing:13.867939px;}
.ls2d{letter-spacing:14.394001px;}
.ls35{letter-spacing:14.941200px;}
.ls5{letter-spacing:14.943900px;}
.lse{letter-spacing:15.302554px;}
.lsa3{letter-spacing:15.564600px;}
.ls14{letter-spacing:15.601432px;}
.ls3d{letter-spacing:15.766282px;}
.ls2c{letter-spacing:15.772282px;}
.ls2f{letter-spacing:16.199188px;}
.ls18{letter-spacing:16.438290px;}
.ls19{letter-spacing:16.498066px;}
.ls26{letter-spacing:16.557841px;}
.ls21{letter-spacing:16.617617px;}
.ls9a{letter-spacing:16.833797px;}
.ls1b{letter-spacing:17.095822px;}
.ls30{letter-spacing:17.454475px;}
.ls17{letter-spacing:17.872904px;}
.ls94{letter-spacing:17.892600px;}
.ls20{letter-spacing:17.992456px;}
.ls1f{letter-spacing:18.112007px;}
.ls12{letter-spacing:18.530436px;}
.ls1a{letter-spacing:18.709763px;}
.ls24{letter-spacing:18.895151px;}
.ls9f{letter-spacing:19.084290px;}
.ls11{letter-spacing:19.187968px;}
.ls7e{letter-spacing:19.254600px;}
.ls89{letter-spacing:19.260600px;}
.ls86{letter-spacing:19.604100px;}
.ls4{letter-spacing:20.144377px;}
.ls32{letter-spacing:20.472600px;}
.ls5f{letter-spacing:20.503031px;}
.ls1e{letter-spacing:20.557151px;}
.ls48{letter-spacing:20.918100px;}
.ls44{letter-spacing:20.921460px;}
.ls6{letter-spacing:20.925302px;}
.lsc{letter-spacing:21.041011px;}
.ls99{letter-spacing:21.144600px;}
.ls98{letter-spacing:21.147797px;}
.ls9e{letter-spacing:21.304290px;}
.ls3f{letter-spacing:21.373151px;}
.ls33{letter-spacing:21.638767px;}
.ls16{letter-spacing:21.823151px;}
.lsf{letter-spacing:22.296299px;}
.ls10{letter-spacing:22.356074px;}
.ls81{letter-spacing:22.580100px;}
.ls77{letter-spacing:23.292600px;}
.ls8e{letter-spacing:23.494718px;}
.ls8c{letter-spacing:23.501318px;}
.ls7c{letter-spacing:23.611362px;}
.ls9c{letter-spacing:23.712600px;}
.ls9b{letter-spacing:23.718600px;}
.ls59{letter-spacing:24.448220px;}
.ls91{letter-spacing:24.644100px;}
.ls7d{letter-spacing:24.996600px;}
.ls38{letter-spacing:25.165528px;}
.ls96{letter-spacing:25.542600px;}
.ls5a{letter-spacing:26.839244px;}
.ls3a{letter-spacing:27.139151px;}
.ls58{letter-spacing:27.416922px;}
.ls5c{letter-spacing:27.735878px;}
.ls5d{letter-spacing:27.795654px;}
.ls37{letter-spacing:28.134600px;}
.ls8b{letter-spacing:29.476345px;}
.ls8d{letter-spacing:29.476917px;}
.ls7b{letter-spacing:29.648698px;}
.ls55{letter-spacing:30.246454px;}
.ls22{letter-spacing:31.382190px;}
.ls54{letter-spacing:33.242922px;}
.ls56{letter-spacing:33.248922px;}
.ls7a{letter-spacing:33.631151px;}
.ls6b{letter-spacing:60.287454px;}
.ls65{letter-spacing:60.291654px;}
.ls67{letter-spacing:60.292254px;}
.ls71{letter-spacing:112.524323px;}
.ls72{letter-spacing:120.592034px;}
.lsb{letter-spacing:666.523523px;}
.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;}
}
.ws6e{word-spacing:-20.562806px;}
.ws3{word-spacing:-15.984000px;}
.ws1{word-spacing:-15.012000px;}
.ws5{word-spacing:-13.500000px;}
.ws2{word-spacing:-12.000000px;}
.ws2c{word-spacing:-0.239102px;}
.ws95{word-spacing:-0.191282px;}
.ws66{word-spacing:-0.167371px;}
.ws0{word-spacing:-0.099000px;}
.wsd{word-spacing:-0.077708px;}
.ws33{word-spacing:-0.059776px;}
.wsc{word-spacing:-0.054396px;}
.ws14{word-spacing:-0.053798px;}
.ws72{word-spacing:-0.048232px;}
.ws8{word-spacing:-0.047821px;}
.ws6a{word-spacing:-0.041843px;}
.ws71{word-spacing:-0.033762px;}
.ws83{word-spacing:-0.029888px;}
.ws21{word-spacing:0.000000px;}
.ws22{word-spacing:0.480000px;}
.ws23{word-spacing:0.810000px;}
.ws73{word-spacing:1.639874px;}
.wsa6{word-spacing:9.659761px;}
.wsa3{word-spacing:10.520532px;}
.ws45{word-spacing:11.596466px;}
.ws3b{word-spacing:11.716018px;}
.ws3c{word-spacing:11.775793px;}
.ws6f{word-spacing:11.902547px;}
.ws7{word-spacing:11.907329px;}
.ws70{word-spacing:12.009668px;}
.ws76{word-spacing:12.134447px;}
.ws9c{word-spacing:12.493100px;}
.ws9e{word-spacing:12.672427px;}
.wsa5{word-spacing:12.672459px;}
.ws67{word-spacing:12.791978px;}
.ws5d{word-spacing:12.851754px;}
.ws96{word-spacing:12.911530px;}
.ws94{word-spacing:13.102844px;}
.ws68{word-spacing:13.150632px;}
.wsa0{word-spacing:13.150665px;}
.ws1f{word-spacing:13.210408px;}
.ws58{word-spacing:13.329959px;}
.wsa9{word-spacing:13.389768px;}
.ws13{word-spacing:13.395802px;}
.ws1e{word-spacing:13.449510px;}
.ws7e{word-spacing:13.509286px;}
.ws27{word-spacing:13.569061px;}
.ws38{word-spacing:13.628837px;}
.wsa1{word-spacing:13.628871px;}
.ws97{word-spacing:13.688612px;}
.ws80{word-spacing:13.748388px;}
.ws4f{word-spacing:13.808164px;}
.ws9b{word-spacing:13.867939px;}
.ws47{word-spacing:13.987490px;}
.ws7d{word-spacing:14.047266px;}
.ws17{word-spacing:14.107042px;}
.ws6{word-spacing:14.156916px;}
.ws4e{word-spacing:14.166817px;}
.ws85{word-spacing:14.226593px;}
.ws8e{word-spacing:14.286368px;}
.ws7f{word-spacing:14.346144px;}
.ws10{word-spacing:14.412591px;}
.wsf{word-spacing:14.417971px;}
.ws4b{word-spacing:14.459718px;}
.ws4a{word-spacing:14.465695px;}
.ws50{word-spacing:14.525471px;}
.wsa8{word-spacing:14.537462px;}
.ws36{word-spacing:14.645022px;}
.wsa4{word-spacing:14.680924px;}
.ws9d{word-spacing:14.704798px;}
.ws87{word-spacing:14.824349px;}
.ws20{word-spacing:14.884124px;}
.ws12{word-spacing:15.009754px;}
.ws8f{word-spacing:15.063451px;}
.ws8d{word-spacing:15.123227px;}
.wsa2{word-spacing:15.159130px;}
.ws29{word-spacing:15.242778px;}
.ws2a{word-spacing:15.248756px;}
.ws28{word-spacing:15.302554px;}
.ws89{word-spacing:15.481880px;}
.ws11{word-spacing:15.493939px;}
.ws52{word-spacing:15.601432px;}
.ws51{word-spacing:15.720983px;}
.ws31{word-spacing:15.780758px;}
.ws54{word-spacing:15.900310px;}
.wse{word-spacing:15.924326px;}
.ws92{word-spacing:16.019861px;}
.ws59{word-spacing:16.139412px;}
.ws79{word-spacing:16.199188px;}
.ws88{word-spacing:16.318739px;}
.ws1b{word-spacing:16.378514px;}
.ws6c{word-spacing:16.438290px;}
.ws42{word-spacing:16.498066px;}
.ws1d{word-spacing:16.617617px;}
.ws1a{word-spacing:16.737168px;}
.ws30{word-spacing:16.856719px;}
.ws32{word-spacing:16.916495px;}
.ws78{word-spacing:16.976270px;}
.wsaa{word-spacing:16.976313px;}
.wsab{word-spacing:17.024134px;}
.ws4d{word-spacing:17.036046px;}
.ws3f{word-spacing:17.095822px;}
.ws62{word-spacing:17.155597px;}
.ws61{word-spacing:17.215373px;}
.ws64{word-spacing:17.334924px;}
.ws5b{word-spacing:17.394700px;}
.ws5a{word-spacing:17.454475px;}
.wsa7{word-spacing:17.502340px;}
.ws8c{word-spacing:17.514251px;}
.ws5c{word-spacing:17.574026px;}
.ws7b{word-spacing:17.693578px;}
.ws46{word-spacing:17.753353px;}
.ws4c{word-spacing:17.813129px;}
.ws9{word-spacing:17.861069px;}
.ws9a{word-spacing:17.872904px;}
.ws84{word-spacing:17.932680px;}
.ws53{word-spacing:17.992456px;}
.ws7a{word-spacing:18.052231px;}
.ws75{word-spacing:18.112007px;}
.ws3d{word-spacing:18.171782px;}
.ws34{word-spacing:18.231558px;}
.ws37{word-spacing:18.291334px;}
.ws24{word-spacing:18.351109px;}
.ws81{word-spacing:18.410885px;}
.ws43{word-spacing:18.470660px;}
.ws3e{word-spacing:18.530436px;}
.ws82{word-spacing:18.590212px;}
.ws3a{word-spacing:18.649987px;}
.ws48{word-spacing:19.008641px;}
.ws1c{word-spacing:19.068416px;}
.ws6b{word-spacing:19.128192px;}
.wsb{word-spacing:19.349392px;}
.ws86{word-spacing:19.427070px;}
.ws5e{word-spacing:19.486846px;}
.ws2e{word-spacing:19.546621px;}
.ws44{word-spacing:19.725948px;}
.ws40{word-spacing:19.785724px;}
.ws93{word-spacing:19.797556px;}
.ws18{word-spacing:20.024826px;}
.ws19{word-spacing:20.084602px;}
.ws49{word-spacing:20.263928px;}
.ws2b{word-spacing:20.383480px;}
.ws6d{word-spacing:20.443255px;}
.ws65{word-spacing:20.562806px;}
.ws41{word-spacing:20.682358px;}
.ws57{word-spacing:20.742133px;}
.ws26{word-spacing:20.921460px;}
.ws25{word-spacing:20.981236px;}
.ws7c{word-spacing:21.100787px;}
.ws99{word-spacing:21.459440px;}
.ws91{word-spacing:21.519216px;}
.ws56{word-spacing:21.578992px;}
.ws77{word-spacing:21.937645px;}
.ws98{word-spacing:22.057196px;}
.ws60{word-spacing:22.068539px;}
.ws90{word-spacing:22.176748px;}
.ws35{word-spacing:22.236523px;}
.ws2f{word-spacing:22.296299px;}
.ws8a{word-spacing:22.415850px;}
.ws2d{word-spacing:22.535401px;}
.ws39{word-spacing:22.774504px;}
.ws69{word-spacing:22.834279px;}
.ws9f{word-spacing:22.953830px;}
.ws63{word-spacing:23.133157px;}
.ws55{word-spacing:24.388445px;}
.wsa{word-spacing:25.303131px;}
.ws15{word-spacing:25.351171px;}
.ws5f{word-spacing:28.853656px;}
.ws16{word-spacing:29.828024px;}
.ws8b{word-spacing:39.093242px;}
.ws74{word-spacing:103.697940px;}
.ws4{word-spacing:1231.458600px;}
._15{margin-left:-20.325072px;}
._6{margin-left:-11.279709px;}
._2{margin-left:-6.971400px;}
._5{margin-left:-5.738496px;}
._1{margin-left:-3.985200px;}
._4{margin-left:-2.948787px;}
._0{margin-left:-1.791900px;}
._a{width:1.551430px;}
._12{width:3.602215px;}
._e{width:4.961375px;}
._7{width:10.952583px;}
._26{width:12.790610px;}
._c{width:14.824349px;}
._13{width:16.135308px;}
._d{width:17.633802px;}
._9{width:19.463132px;}
._14{width:20.860316px;}
._24{width:22.055828px;}
._25{width:23.571369px;}
._2a{width:25.105815px;}
._28{width:26.126138px;}
._27{width:28.070716px;}
._b{width:29.887800px;}
._29{width:34.956859px;}
._21{width:103.683278px;}
._17{width:108.528431px;}
._1d{width:140.005643px;}
._23{width:147.692490px;}
._19{width:200.981077px;}
._1f{width:209.035754px;}
._1c{width:220.321949px;}
._16{width:233.407374px;}
._18{width:235.559773px;}
._22{width:243.246620px;}
._20{width:281.576081px;}
._3{width:298.853467px;}
._1b{width:349.968490px;}
._1e{width:387.114152px;}
._10{width:395.425587px;}
._1a{width:402.155081px;}
._11{width:667.383844px;}
._8{width:701.323200px;}
._f{width:773.322600px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,57,255);}
.fc2{color:rgb(0,158,227);}
.fc1{color:rgb(0,150,189);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:24.115800px;}
.fsd{font-size:29.887800px;}
.fsf{font-size:33.762000px;}
.fs9{font-size:35.865600px;}
.fsc{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs2{font-size:48.000000px;}
.fse{font-size:48.231600px;}
.fs3{font-size:51.108000px;}
.fsa{font-size:53.798400px;}
.fs1{font-size:54.000000px;}
.fs8{font-size:54.396000px;}
.fsb{font-size:59.775600px;}
.fs5{font-size:71.731200px;}
.fs7{font-size:77.708400px;}
.fs0{font-size:99.000000px;}
.fs6{font-size:101.619000px;}
.y55{bottom:-472.605242px;}
.y54{bottom:-457.661304px;}
.y53{bottom:-442.717367px;}
.y52{bottom:-413.510935px;}
.y51{bottom:-394.000350px;}
.y50{bottom:-348.912528px;}
.y4f{bottom:-330.979848px;}
.y4e{bottom:-313.047168px;}
.y4d{bottom:-295.114488px;}
.y4c{bottom:-277.181808px;}
.y4b{bottom:-259.249128px;}
.y4a{bottom:-241.316448px;}
.y49{bottom:-223.383768px;}
.y48{bottom:-205.451088px;}
.y47{bottom:-169.286850px;}
.y46{bottom:-82.226435px;}
.y45{bottom:-55.152390px;}
.y31{bottom:-54.099075px;}
.y30{bottom:-39.155137px;}
.y44{bottom:-39.012870px;}
.y9{bottom:-32.314950px;}
.y2f{bottom:-24.211200px;}
.y43{bottom:-22.873350px;}
.y0{bottom:0.000000px;}
.y8{bottom:67.888350px;}
.ye6{bottom:71.739030px;}
.ye5{bottom:75.426120px;}
.y98{bottom:79.926120px;}
.y101{bottom:79.926162px;}
.y86{bottom:79.928994px;}
.y7{bottom:81.388350px;}
.ybf{bottom:85.925760px;}
.y12b{bottom:90.794625px;}
.ye4{bottom:93.358620px;}
.y6{bottom:94.888350px;}
.ya6{bottom:97.858440px;}
.y97{bottom:97.858800px;}
.y100{bottom:97.858842px;}
.y85{bottom:97.861674px;}
.ybe{bottom:103.858440px;}
.y12a{bottom:105.738562px;}
.y5{bottom:108.388350px;}
.ye3{bottom:111.291300px;}
.ya5{bottom:115.791120px;}
.yff{bottom:115.791522px;}
.y84{bottom:115.794354px;}
.y129{bottom:120.682500px;}
.ybd{bottom:121.791120px;}
.y4{bottom:121.888350px;}
.yfe{bottom:133.724202px;}
.ya4{bottom:133.724940px;}
.y83{bottom:133.727034px;}
.y128{bottom:135.626437px;}
.ybc{bottom:136.038030px;}
.ybb{bottom:139.725120px;}
.y96{bottom:140.553300px;}
.ye{bottom:148.467000px;}
.y127{bottom:150.570375px;}
.ye2{bottom:150.681300px;}
.yfd{bottom:151.656882px;}
.ya3{bottom:151.657620px;}
.y82{bottom:151.659714px;}
.y2e{bottom:153.454715px;}
.yba{bottom:157.657260px;}
.y126{bottom:165.514312px;}
.yfc{bottom:169.589562px;}
.ya2{bottom:169.590300px;}
.y81{bottom:169.592394px;}
.y2d{bottom:172.965300px;}
.yb9{bottom:175.589940px;}
.y125{bottom:180.458250px;}
.yb8{bottom:193.522620px;}
.y124{bottom:195.402187px;}
.yfb{bottom:205.753800px;}
.y80{bottom:205.756632px;}
.yb7{bottom:207.759070px;}
.y123{bottom:210.346125px;}
.yb6{bottom:211.455120px;}
.ya1{bottom:215.266800px;}
.y2c{bottom:218.053122px;}
.y122{bottom:225.290062px;}
.yb5{bottom:225.691570px;}
.yb4{bottom:225.702030px;}
.yb3{bottom:229.388580px;}
.y2b{bottom:235.985802px;}
.y121{bottom:240.234000px;}
.yb2{bottom:247.321260px;}
.y7f{bottom:249.093942px;}
.yfa{bottom:252.840300px;}
.y2a{bottom:253.918482px;}
.y120{bottom:255.177937px;}
.yb1{bottom:265.253940px;}
.y7e{bottom:267.026622px;}
.y11f{bottom:270.121875px;}
.y29{bottom:271.851162px;}
.yb0{bottom:283.186620px;}
.y7d{bottom:284.959302px;}
.y11e{bottom:285.065812px;}
.y28{bottom:289.783842px;}
.y11d{bottom:300.009750px;}
.yaf{bottom:301.119120px;}
.y7c{bottom:302.891982px;}
.y27{bottom:307.716522px;}
.y11c{bottom:314.953688px;}
.yae{bottom:319.051800px;}
.y7b{bottom:320.824662px;}
.y26{bottom:325.649202px;}
.y11b{bottom:329.897625px;}
.y7a{bottom:338.757342px;}
.y25{bottom:343.581882px;}
.y11a{bottom:344.841562px;}
.y79{bottom:356.690022px;}
.y119{bottom:359.785500px;}
.yad{bottom:359.799863px;}
.y24{bottom:361.514562px;}
.y21{bottom:363.344926px;}
.y78{bottom:374.622702px;}
.y118{bottom:374.729437px;}
.yac{bottom:374.743800px;}
.y20{bottom:379.484446px;}
.y117{bottom:389.673375px;}
.y34{bottom:389.802150px;}
.y77{bottom:392.555382px;}
.y1f{bottom:395.623966px;}
.y23{bottom:397.678800px;}
.y116{bottom:404.617312px;}
.y76{bottom:410.488062px;}
.y115{bottom:419.561250px;}
.y75{bottom:428.420742px;}
.y1e{bottom:429.691802px;}
.y114{bottom:434.505187px;}
.y1d{bottom:445.831322px;}
.y74{bottom:446.353422px;}
.y113{bottom:449.449125px;}
.ya0{bottom:455.851080px;}
.y1c{bottom:461.970842px;}
.y73{bottom:464.286102px;}
.y112{bottom:464.393062px;}
.y33{bottom:470.755650px;}
.y9f{bottom:473.783760px;}
.y1b{bottom:478.110362px;}
.y111{bottom:479.337000px;}
.y72{bottom:482.218782px;}
.y22{bottom:484.744650px;}
.ye1{bottom:488.902920px;}
.y9e{bottom:491.716440px;}
.y1a{bottom:494.249882px;}
.y71{bottom:500.151462px;}
.yd{bottom:501.919500px;}
.ye0{bottom:503.149830px;}
.ydf{bottom:506.836920px;}
.y9d{bottom:509.649120px;}
.y110{bottom:512.525161px;}
.yc{bottom:516.919500px;}
.y70{bottom:518.084142px;}
.y19{bottom:520.557300px;}
.yde{bottom:521.082330px;}
.ydd{bottom:524.769420px;}
.y9c{bottom:527.582940px;}
.yb{bottom:531.919500px;}
.y6f{bottom:536.016822px;}
.yf9{bottom:536.751120px;}
.ydc{bottom:539.014830px;}
.ydb{bottom:542.701770px;}
.y9b{bottom:545.515620px;}
.ya{bottom:546.919500px;}
.y6e{bottom:553.949502px;}
.yf8{bottom:554.683440px;}
.y10f{bottom:554.906062px;}
.yda{bottom:556.947180px;}
.y32{bottom:560.515500px;}
.yd9{bottom:560.634270px;}
.y9a{bottom:563.448300px;}
.y42{bottom:571.708652px;}
.y6d{bottom:571.882182px;}
.yf7{bottom:572.616120px;}
.y10e{bottom:572.838742px;}
.yd8{bottom:574.879680px;}
.y95{bottom:577.120385px;}
.yd7{bottom:578.566590px;}
.y18{bottom:584.028300px;}
.y41{bottom:587.848172px;}
.y6c{bottom:589.814862px;}
.yf6{bottom:590.548470px;}
.y10d{bottom:590.771422px;}
.y94{bottom:595.053065px;}
.yd6{bottom:596.499270px;}
.y17{bottom:599.719800px;}
.y40{bottom:603.987692px;}
.y6b{bottom:607.747542px;}
.yf5{bottom:608.482710px;}
.y99{bottom:609.124800px;}
.y93{bottom:612.985745px;}
.yd5{bottom:614.433270px;}
.y16{bottom:619.291587px;}
.y3f{bottom:620.127212px;}
.y6a{bottom:625.680222px;}
.yf4{bottom:626.415390px;}
.y10c{bottom:626.935660px;}
.y92{bottom:630.918425px;}
.yd4{bottom:632.365440px;}
.y3e{bottom:636.266732px;}
.y15{bottom:637.222800px;}
.y69{bottom:643.612902px;}
.yf3{bottom:644.348070px;}
.yab{bottom:645.859440px;}
.y91{bottom:648.851105px;}
.yd3{bottom:650.298120px;}
.y68{bottom:661.545582px;}
.yf2{bottom:662.280750px;}
.y3d{bottom:662.574150px;}
.yaa{bottom:663.792120px;}
.yd2{bottom:668.230260px;}
.y10b{bottom:669.316560px;}
.y14{bottom:674.358600px;}
.y67{bottom:679.478262px;}
.yf1{bottom:680.213430px;}
.ya9{bottom:681.724800px;}
.y90{bottom:685.015343px;}
.yd1{bottom:686.162940px;}
.y10a{bottom:687.249240px;}
.y66{bottom:697.410942px;}
.yf0{bottom:698.146110px;}
.yd0{bottom:704.095620px;}
.y13{bottom:704.844300px;}
.y109{bottom:705.181920px;}
.y65{bottom:715.343622px;}
.yef{bottom:716.078790px;}
.ycf{bottom:722.029620px;}
.ya8{bottom:722.472300px;}
.y108{bottom:723.114600px;}
.y3c{bottom:726.045300px;}
.y64{bottom:733.276302px;}
.yee{bottom:734.011470px;}
.y8f{bottom:736.885620px;}
.yce{bottom:739.962300px;}
.y107{bottom:741.047280px;}
.y3b{bottom:741.736800px;}
.y12{bottom:741.756000px;}
.y63{bottom:751.208982px;}
.yed{bottom:751.943820px;}
.y8e{bottom:754.817940px;}
.ycd{bottom:757.894620px;}
.y106{bottom:758.979960px;}
.y11{bottom:759.688800px;}
.y3a{bottom:761.308587px;}
.y62{bottom:769.141662px;}
.yec{bottom:769.874633px;}
.ycc{bottom:775.827300px;}
.y105{bottom:776.912640px;}
.y39{bottom:779.239800px;}
.yeb{bottom:787.807313px;}
.y8d{bottom:790.683120px;}
.y104{bottom:794.845320px;}
.y61{bottom:805.305900px;}
.yea{bottom:805.739993px;}
.y10{bottom:808.300800px;}
.y8c{bottom:808.615620px;}
.y103{bottom:812.777850px;}
.ycb{bottom:815.557020px;}
.y38{bottom:816.375600px;}
.y8b{bottom:826.540762px;}
.yca{bottom:830.026500px;}
.y102{bottom:830.710530px;}
.ye9{bottom:841.904231px;}
.yc9{bottom:844.496970px;}
.y37{bottom:846.861300px;}
.y60{bottom:848.643210px;}
.yc8{bottom:858.966450px;}
.y8a{bottom:866.575470px;}
.y5f{bottom:866.575890px;}
.yc7{bottom:873.435690px;}
.y36{bottom:883.772850px;}
.y5e{bottom:884.508570px;}
.y89{bottom:884.509110px;}
.ye8{bottom:884.509290px;}
.yc6{bottom:887.905170px;}
.yf{bottom:889.254150px;}
.y35{bottom:901.705650px;}
.yc5{bottom:902.374650px;}
.y5d{bottom:902.441250px;}
.y88{bottom:902.441790px;}
.ye7{bottom:902.441970px;}
.yc4{bottom:916.844100px;}
.y5c{bottom:920.373930px;}
.y87{bottom:920.374470px;}
.yc3{bottom:931.796250px;}
.y5b{bottom:938.306610px;}
.yc2{bottom:947.580000px;}
.y5a{bottom:956.239290px;}
.y3{bottom:961.130850px;}
.y59{bottom:974.171970px;}
.y1{bottom:988.999500px;}
.yc1{bottom:992.089106px;}
.y58{bottom:992.104650px;}
.yc0{bottom:1017.493800px;}
.y57{bottom:1021.993800px;}
.ya7{bottom:1027.993800px;}
.y2{bottom:1033.378950px;}
.y56{bottom:1035.561750px;}
.h14{height:24.281011px;}
.he{height:24.603802px;}
.h9{height:32.900573px;}
.h36{height:33.139676px;}
.h2a{height:33.183341px;}
.h4{height:33.328125px;}
.h5{height:36.000000px;}
.h11{height:36.905702px;}
.h10{height:37.013299px;}
.hf{height:37.228493px;}
.h8{height:37.257732px;}
.h6{height:37.494141px;}
.h3{height:38.664000px;}
.h29{height:40.671732px;}
.h13{height:41.125613px;}
.h35{height:41.126213px;}
.h2e{height:41.126333px;}
.h32{height:41.126933px;}
.h33{height:41.127053px;}
.h30{height:41.128493px;}
.h31{height:41.133080px;}
.h12{height:41.364715px;}
.h17{height:41.424491px;}
.h27{height:41.958577px;}
.h20{height:41.959552px;}
.h1e{height:41.961802px;}
.h28{height:46.307639px;}
.ha{height:49.351066px;}
.h1f{height:50.400161px;}
.h1b{height:50.400881px;}
.h2d{height:50.401481px;}
.h1c{height:50.401601px;}
.h2b{height:50.402201px;}
.h18{height:50.402321px;}
.h21{height:50.403041px;}
.h1a{height:50.406881px;}
.h19{height:50.436313px;}
.h25{height:55.868692px;}
.h2c{height:55.874692px;}
.h23{height:55.910534px;}
.h22{height:65.149240px;}
.h24{height:65.191082px;}
.hd{height:65.631301px;}
.hc{height:65.636448px;}
.hb{height:69.913872px;}
.h2{height:74.646000px;}
.h7{height:351.000000px;}
.h15{height:364.783500px;}
.h26{height:1007.349000px;}
.h2f{height:1011.850500px;}
.h16{height:1012.912500px;}
.h34{height:1013.977500px;}
.h1d{height:1018.914000px;}
.h1{height:1113.750000px;}
.h0{height:1114.015500px;}
.w2{width:813.378000px;}
.w0{width:816.378000px;}
.w1{width:816.750000px;}
.x0{left:0.000000px;}
.x6{left:3.000000px;}
.x5{left:56.125950px;}
.x4{left:57.959100px;}
.x19{left:63.754500px;}
.x11{left:66.754500px;}
.x18{left:73.207680px;}
.x10{left:76.207680px;}
.x9{left:78.265500px;}
.x2e{left:79.647000px;}
.x12{left:81.265500px;}
.xb{left:83.670000px;}
.x14{left:86.670000px;}
.x2f{left:89.617595px;}
.xd{left:94.498500px;}
.xe{left:97.629000px;}
.x16{left:100.629000px;}
.x1a{left:103.541576px;}
.x24{left:109.609200px;}
.x30{left:111.531385px;}
.xf{left:124.236000px;}
.x17{left:127.236000px;}
.x29{left:146.682000px;}
.x22{left:153.319950px;}
.x32{left:156.901179px;}
.x2a{left:175.103424px;}
.x31{left:183.441612px;}
.x1d{left:184.845000px;}
.x2d{left:198.672000px;}
.x1c{left:220.609500px;}
.x1b{left:221.907000px;}
.x2{left:236.123100px;}
.x3{left:242.822550px;}
.x8{left:254.118000px;}
.x7{left:262.809000px;}
.x1e{left:278.580178px;}
.x27{left:282.725574px;}
.x1{left:284.738700px;}
.x23{left:317.498850px;}
.x2b{left:336.265074px;}
.xa{left:346.038070px;}
.x13{left:349.038070px;}
.xc{left:366.856748px;}
.x15{left:369.856748px;}
.x1f{left:499.115574px;}
.x21{left:511.070424px;}
.x26{left:539.858372px;}
.x20{left:630.074522px;}
.x28{left:640.369074px;}
.x2c{left:660.396924px;}
.x25{left:707.945574px;}
@media print{
.v3{vertical-align:-25.077333pt;}
.v1{vertical-align:-15.897693pt;}
.v8{vertical-align:-13.546667pt;}
.v5{vertical-align:-7.971947pt;}
.v7{vertical-align:-6.373333pt;}
.vd{vertical-align:-4.501333pt;}
.vf{vertical-align:-1.328347pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:5.136959pt;}
.vb{vertical-align:7.968000pt;}
.ve{vertical-align:10.891733pt;}
.v9{vertical-align:13.104959pt;}
.v6{vertical-align:15.360000pt;}
.v4{vertical-align:19.287253pt;}
.v2{vertical-align:25.077333pt;}
.vc{vertical-align:32.395626pt;}
.lsa0{letter-spacing:-7.385607pt;}
.ls92{letter-spacing:-1.500539pt;}
.ls93{letter-spacing:-0.797008pt;}
.lsa{letter-spacing:-0.720000pt;}
.ls9{letter-spacing:-0.426667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls76{letter-spacing:0.001059pt;}
.ls34{letter-spacing:0.001292pt;}
.ls95{letter-spacing:0.001497pt;}
.ls53{letter-spacing:0.002422pt;}
.ls49{letter-spacing:0.002713pt;}
.ls68{letter-spacing:0.002731pt;}
.ls73{letter-spacing:0.002995pt;}
.ls60{letter-spacing:0.003695pt;}
.ls78{letter-spacing:0.004786pt;}
.ls4d{letter-spacing:0.008182pt;}
.ls7f{letter-spacing:0.009764pt;}
.ls82{letter-spacing:0.011968pt;}
.ls50{letter-spacing:0.013627pt;}
.ls4f{letter-spacing:0.014508pt;}
.ls61{letter-spacing:0.015008pt;}
.ls5b{letter-spacing:0.016192pt;}
.ls57{letter-spacing:0.016545pt;}
.ls40{letter-spacing:0.018287pt;}
.ls51{letter-spacing:0.021095pt;}
.ls8f{letter-spacing:0.025969pt;}
.ls97{letter-spacing:0.027405pt;}
.ls31{letter-spacing:0.037651pt;}
.ls5e{letter-spacing:0.111581pt;}
.lsa1{letter-spacing:0.127522pt;}
.ls13{letter-spacing:0.159402pt;}
.ls6c{letter-spacing:0.538149pt;}
.ls69{letter-spacing:0.538683pt;}
.ls63{letter-spacing:0.542416pt;}
.ls4b{letter-spacing:0.764101pt;}
.ls3c{letter-spacing:0.767090pt;}
.ls88{letter-spacing:0.769434pt;}
.ls6f{letter-spacing:0.769682pt;}
.ls75{letter-spacing:0.773949pt;}
.ls39{letter-spacing:0.929077pt;}
.ls47{letter-spacing:0.930422pt;}
.ls85{letter-spacing:0.930956pt;}
.ls42{letter-spacing:0.953341pt;}
.ls45{letter-spacing:0.953874pt;}
.ls83{letter-spacing:0.954407pt;}
.ls3e{letter-spacing:0.954892pt;}
.ls25{letter-spacing:0.955970pt;}
.ls23{letter-spacing:0.956785pt;}
.ls28{letter-spacing:0.957167pt;}
.ls1d{letter-spacing:0.958255pt;}
.ls2a{letter-spacing:0.959207pt;}
.ls79{letter-spacing:0.975333pt;}
.ls15{letter-spacing:0.997381pt;}
.ls87{letter-spacing:1.062286pt;}
.ls74{letter-spacing:2.141397pt;}
.ls62{letter-spacing:2.144164pt;}
.ls6e{letter-spacing:2.145664pt;}
.ls66{letter-spacing:2.634626pt;}
.ls64{letter-spacing:2.635159pt;}
.ls6a{letter-spacing:2.638892pt;}
.ls6d{letter-spacing:2.639426pt;}
.ls90{letter-spacing:2.653508pt;}
.ls29{letter-spacing:2.654042pt;}
.ls0{letter-spacing:2.654379pt;}
.ls4a{letter-spacing:2.655710pt;}
.ls1{letter-spacing:2.656533pt;}
.ls8a{letter-spacing:2.656693pt;}
.ls2{letter-spacing:2.657067pt;}
.ls41{letter-spacing:2.659375pt;}
.ls4e{letter-spacing:2.661043pt;}
.ls27{letter-spacing:2.661867pt;}
.ls80{letter-spacing:2.663380pt;}
.ls84{letter-spacing:2.668180pt;}
.ls52{letter-spacing:2.668714pt;}
.ls3b{letter-spacing:2.677939pt;}
.ls36{letter-spacing:2.773309pt;}
.ls9d{letter-spacing:2.789520pt;}
.ls1c{letter-spacing:2.790326pt;}
.ls70{letter-spacing:2.832517pt;}
.ls4c{letter-spacing:3.390473pt;}
.ls2b{letter-spacing:3.510356pt;}
.ls46{letter-spacing:3.515690pt;}
.ls43{letter-spacing:3.516223pt;}
.ls7{letter-spacing:10.626800pt;}
.ls2e{letter-spacing:11.817002pt;}
.ls3{letter-spacing:11.955200pt;}
.lsd{letter-spacing:12.114522pt;}
.lsa2{letter-spacing:12.327057pt;}
.ls2d{letter-spacing:12.794667pt;}
.ls35{letter-spacing:13.281067pt;}
.ls5{letter-spacing:13.283467pt;}
.lse{letter-spacing:13.602270pt;}
.lsa3{letter-spacing:13.835200pt;}
.ls14{letter-spacing:13.867939pt;}
.ls3d{letter-spacing:14.014473pt;}
.ls2c{letter-spacing:14.019806pt;}
.ls2f{letter-spacing:14.399278pt;}
.ls18{letter-spacing:14.611813pt;}
.ls19{letter-spacing:14.664947pt;}
.ls26{letter-spacing:14.718081pt;}
.ls21{letter-spacing:14.771215pt;}
.ls9a{letter-spacing:14.963375pt;}
.ls1b{letter-spacing:15.196286pt;}
.ls30{letter-spacing:15.515089pt;}
.ls17{letter-spacing:15.887026pt;}
.ls94{letter-spacing:15.904533pt;}
.ls20{letter-spacing:15.993294pt;}
.ls1f{letter-spacing:16.099562pt;}
.ls12{letter-spacing:16.471499pt;}
.ls1a{letter-spacing:16.630900pt;}
.ls24{letter-spacing:16.795690pt;}
.ls9f{letter-spacing:16.963813pt;}
.ls11{letter-spacing:17.055971pt;}
.ls7e{letter-spacing:17.115200pt;}
.ls89{letter-spacing:17.120533pt;}
.ls86{letter-spacing:17.425867pt;}
.ls4{letter-spacing:17.906113pt;}
.ls32{letter-spacing:18.197867pt;}
.ls5f{letter-spacing:18.224916pt;}
.ls1e{letter-spacing:18.273023pt;}
.ls48{letter-spacing:18.593867pt;}
.ls44{letter-spacing:18.596853pt;}
.ls6{letter-spacing:18.600269pt;}
.lsc{letter-spacing:18.703121pt;}
.ls99{letter-spacing:18.795200pt;}
.ls98{letter-spacing:18.798042pt;}
.ls9e{letter-spacing:18.937147pt;}
.ls3f{letter-spacing:18.998356pt;}
.ls33{letter-spacing:19.234460pt;}
.ls16{letter-spacing:19.398356pt;}
.lsf{letter-spacing:19.818932pt;}
.ls10{letter-spacing:19.872066pt;}
.ls81{letter-spacing:20.071200pt;}
.ls77{letter-spacing:20.704533pt;}
.ls8e{letter-spacing:20.884194pt;}
.ls8c{letter-spacing:20.890061pt;}
.ls7c{letter-spacing:20.987877pt;}
.ls9c{letter-spacing:21.077867pt;}
.ls9b{letter-spacing:21.083200pt;}
.ls59{letter-spacing:21.731751pt;}
.ls91{letter-spacing:21.905867pt;}
.ls7d{letter-spacing:22.219200pt;}
.ls38{letter-spacing:22.369358pt;}
.ls96{letter-spacing:22.704533pt;}
.ls5a{letter-spacing:23.857106pt;}
.ls3a{letter-spacing:24.123690pt;}
.ls58{letter-spacing:24.370597pt;}
.ls5c{letter-spacing:24.654114pt;}
.ls5d{letter-spacing:24.707248pt;}
.ls37{letter-spacing:25.008533pt;}
.ls8b{letter-spacing:26.201196pt;}
.ls8d{letter-spacing:26.201704pt;}
.ls7b{letter-spacing:26.354398pt;}
.ls55{letter-spacing:26.885737pt;}
.ls22{letter-spacing:27.895280pt;}
.ls54{letter-spacing:29.549264pt;}
.ls56{letter-spacing:29.554597pt;}
.ls7a{letter-spacing:29.894356pt;}
.ls6b{letter-spacing:53.588848pt;}
.ls65{letter-spacing:53.592581pt;}
.ls67{letter-spacing:53.593115pt;}
.ls71{letter-spacing:100.021620pt;}
.ls72{letter-spacing:107.192919pt;}
.lsb{letter-spacing:592.465354pt;}
.ws6e{word-spacing:-18.278050pt;}
.ws3{word-spacing:-14.208000pt;}
.ws1{word-spacing:-13.344000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws2{word-spacing:-10.666667pt;}
.ws2c{word-spacing:-0.212535pt;}
.ws95{word-spacing:-0.170029pt;}
.ws66{word-spacing:-0.148774pt;}
.ws0{word-spacing:-0.088000pt;}
.wsd{word-spacing:-0.069074pt;}
.ws33{word-spacing:-0.053134pt;}
.wsc{word-spacing:-0.048352pt;}
.ws14{word-spacing:-0.047821pt;}
.ws72{word-spacing:-0.042873pt;}
.ws8{word-spacing:-0.042507pt;}
.ws6a{word-spacing:-0.037194pt;}
.ws71{word-spacing:-0.030011pt;}
.ws83{word-spacing:-0.026567pt;}
.ws21{word-spacing:0.000000pt;}
.ws22{word-spacing:0.426667pt;}
.ws23{word-spacing:0.720000pt;}
.ws73{word-spacing:1.457666pt;}
.wsa6{word-spacing:8.586454pt;}
.wsa3{word-spacing:9.351584pt;}
.ws45{word-spacing:10.307970pt;}
.ws3b{word-spacing:10.414238pt;}
.ws3c{word-spacing:10.467372pt;}
.ws6f{word-spacing:10.580042pt;}
.ws7{word-spacing:10.584293pt;}
.ws70{word-spacing:10.675261pt;}
.ws76{word-spacing:10.786175pt;}
.ws9c{word-spacing:11.104978pt;}
.ws9e{word-spacing:11.264380pt;}
.wsa5{word-spacing:11.264408pt;}
.ws67{word-spacing:11.370647pt;}
.ws5d{word-spacing:11.423781pt;}
.ws96{word-spacing:11.476915pt;}
.ws94{word-spacing:11.646973pt;}
.ws68{word-spacing:11.689451pt;}
.wsa0{word-spacing:11.689480pt;}
.ws1f{word-spacing:11.742585pt;}
.ws58{word-spacing:11.848852pt;}
.wsa9{word-spacing:11.902016pt;}
.ws13{word-spacing:11.907379pt;}
.ws1e{word-spacing:11.955120pt;}
.ws7e{word-spacing:12.008254pt;}
.ws27{word-spacing:12.061388pt;}
.ws38{word-spacing:12.114522pt;}
.wsa1{word-spacing:12.114552pt;}
.ws97{word-spacing:12.167655pt;}
.ws80{word-spacing:12.220789pt;}
.ws4f{word-spacing:12.273923pt;}
.ws9b{word-spacing:12.327057pt;}
.ws47{word-spacing:12.433325pt;}
.ws7d{word-spacing:12.486459pt;}
.ws17{word-spacing:12.539593pt;}
.ws6{word-spacing:12.583925pt;}
.ws4e{word-spacing:12.592726pt;}
.ws85{word-spacing:12.645860pt;}
.ws8e{word-spacing:12.698994pt;}
.ws7f{word-spacing:12.752128pt;}
.ws10{word-spacing:12.811192pt;}
.wsf{word-spacing:12.815974pt;}
.ws4b{word-spacing:12.853082pt;}
.ws4a{word-spacing:12.858396pt;}
.ws50{word-spacing:12.911530pt;}
.wsa8{word-spacing:12.922189pt;}
.ws36{word-spacing:13.017797pt;}
.wsa4{word-spacing:13.049710pt;}
.ws9d{word-spacing:13.070931pt;}
.ws87{word-spacing:13.177199pt;}
.ws20{word-spacing:13.230333pt;}
.ws12{word-spacing:13.342003pt;}
.ws8f{word-spacing:13.389734pt;}
.ws8d{word-spacing:13.442868pt;}
.wsa2{word-spacing:13.474782pt;}
.ws29{word-spacing:13.549136pt;}
.ws2a{word-spacing:13.554449pt;}
.ws28{word-spacing:13.602270pt;}
.ws89{word-spacing:13.761671pt;}
.ws11{word-spacing:13.772390pt;}
.ws52{word-spacing:13.867939pt;}
.ws51{word-spacing:13.974207pt;}
.ws31{word-spacing:14.027341pt;}
.ws54{word-spacing:14.133609pt;}
.wse{word-spacing:14.154957pt;}
.ws92{word-spacing:14.239876pt;}
.ws59{word-spacing:14.346144pt;}
.ws79{word-spacing:14.399278pt;}
.ws88{word-spacing:14.505546pt;}
.ws1b{word-spacing:14.558679pt;}
.ws6c{word-spacing:14.611813pt;}
.ws42{word-spacing:14.664947pt;}
.ws1d{word-spacing:14.771215pt;}
.ws1a{word-spacing:14.877483pt;}
.ws30{word-spacing:14.983750pt;}
.ws32{word-spacing:15.036884pt;}
.ws78{word-spacing:15.090018pt;}
.wsaa{word-spacing:15.090056pt;}
.wsab{word-spacing:15.132563pt;}
.ws4d{word-spacing:15.143152pt;}
.ws3f{word-spacing:15.196286pt;}
.ws62{word-spacing:15.249420pt;}
.ws61{word-spacing:15.302554pt;}
.ws64{word-spacing:15.408821pt;}
.ws5b{word-spacing:15.461955pt;}
.ws5a{word-spacing:15.515089pt;}
.wsa7{word-spacing:15.557635pt;}
.ws8c{word-spacing:15.568223pt;}
.ws5c{word-spacing:15.621357pt;}
.ws7b{word-spacing:15.727625pt;}
.ws46{word-spacing:15.780758pt;}
.ws4c{word-spacing:15.833892pt;}
.ws9{word-spacing:15.876506pt;}
.ws9a{word-spacing:15.887026pt;}
.ws84{word-spacing:15.940160pt;}
.ws53{word-spacing:15.993294pt;}
.ws7a{word-spacing:16.046428pt;}
.ws75{word-spacing:16.099562pt;}
.ws3d{word-spacing:16.152695pt;}
.ws34{word-spacing:16.205829pt;}
.ws37{word-spacing:16.258963pt;}
.ws24{word-spacing:16.312097pt;}
.ws81{word-spacing:16.365231pt;}
.ws43{word-spacing:16.418365pt;}
.ws3e{word-spacing:16.471499pt;}
.ws82{word-spacing:16.524633pt;}
.ws3a{word-spacing:16.577766pt;}
.ws48{word-spacing:16.896570pt;}
.ws1c{word-spacing:16.949703pt;}
.ws6b{word-spacing:17.002837pt;}
.wsb{word-spacing:17.199459pt;}
.ws86{word-spacing:17.268507pt;}
.ws5e{word-spacing:17.321641pt;}
.ws2e{word-spacing:17.374774pt;}
.ws44{word-spacing:17.534176pt;}
.ws40{word-spacing:17.587310pt;}
.ws93{word-spacing:17.597827pt;}
.ws18{word-spacing:17.799845pt;}
.ws19{word-spacing:17.852979pt;}
.ws49{word-spacing:18.012381pt;}
.ws2b{word-spacing:18.118649pt;}
.ws6d{word-spacing:18.171782pt;}
.ws65{word-spacing:18.278050pt;}
.ws41{word-spacing:18.384318pt;}
.ws57{word-spacing:18.437452pt;}
.ws26{word-spacing:18.596853pt;}
.ws25{word-spacing:18.649987pt;}
.ws7c{word-spacing:18.756255pt;}
.ws99{word-spacing:19.075058pt;}
.ws91{word-spacing:19.128192pt;}
.ws56{word-spacing:19.181326pt;}
.ws77{word-spacing:19.500129pt;}
.ws98{word-spacing:19.606397pt;}
.ws60{word-spacing:19.616479pt;}
.ws90{word-spacing:19.712665pt;}
.ws35{word-spacing:19.765798pt;}
.ws2f{word-spacing:19.818932pt;}
.ws8a{word-spacing:19.925200pt;}
.ws2d{word-spacing:20.031468pt;}
.ws39{word-spacing:20.244003pt;}
.ws69{word-spacing:20.297137pt;}
.ws9f{word-spacing:20.403405pt;}
.ws63{word-spacing:20.562806pt;}
.ws55{word-spacing:21.678618pt;}
.wsa{word-spacing:22.491672pt;}
.ws15{word-spacing:22.534374pt;}
.ws5f{word-spacing:25.647694pt;}
.ws16{word-spacing:26.513799pt;}
.ws8b{word-spacing:34.749549pt;}
.ws74{word-spacing:92.175947pt;}
.ws4{word-spacing:1094.629867pt;}
._15{margin-left:-18.066731pt;}
._6{margin-left:-10.026408pt;}
._2{margin-left:-6.196800pt;}
._5{margin-left:-5.100885pt;}
._1{margin-left:-3.542400pt;}
._4{margin-left:-2.621144pt;}
._0{margin-left:-1.592800pt;}
._a{width:1.379049pt;}
._12{width:3.201969pt;}
._e{width:4.410111pt;}
._7{width:9.735629pt;}
._26{width:11.369431pt;}
._c{width:13.177199pt;}
._13{width:14.342496pt;}
._d{width:15.674491pt;}
._9{width:17.300562pt;}
._14{width:18.542503pt;}
._24{width:19.605181pt;}
._25{width:20.952328pt;}
._2a{width:22.316280pt;}
._28{width:23.223234pt;}
._27{width:24.951748pt;}
._b{width:26.566933pt;}
._29{width:31.072763pt;}
._21{width:92.162914pt;}
._17{width:96.469716pt;}
._1d{width:124.449460pt;}
._23{width:131.282213pt;}
._19{width:178.649846pt;}
._1f{width:185.809559pt;}
._1c{width:195.841732pt;}
._16{width:207.473221pt;}
._18{width:209.386465pt;}
._22{width:216.219218pt;}
._20{width:250.289850pt;}
._3{width:265.647526pt;}
._1b{width:311.083102pt;}
._1e{width:344.101469pt;}
._10{width:351.489411pt;}
._1a{width:357.471183pt;}
._11{width:593.230083pt;}
._8{width:623.398400pt;}
._f{width:687.397867pt;}
.fs10{font-size:21.436267pt;}
.fsd{font-size:26.566933pt;}
.fsf{font-size:30.010667pt;}
.fs9{font-size:31.880533pt;}
.fsc{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs2{font-size:42.666667pt;}
.fse{font-size:42.872533pt;}
.fs3{font-size:45.429333pt;}
.fsa{font-size:47.820800pt;}
.fs1{font-size:48.000000pt;}
.fs8{font-size:48.352000pt;}
.fsb{font-size:53.133867pt;}
.fs5{font-size:63.761067pt;}
.fs7{font-size:69.074133pt;}
.fs0{font-size:88.000000pt;}
.fs6{font-size:90.328000pt;}
.y55{bottom:-420.093548pt;}
.y54{bottom:-406.810048pt;}
.y53{bottom:-393.526548pt;}
.y52{bottom:-367.565276pt;}
.y51{bottom:-350.222533pt;}
.y50{bottom:-310.144469pt;}
.y4f{bottom:-294.204309pt;}
.y4e{bottom:-278.264149pt;}
.y4d{bottom:-262.323989pt;}
.y4c{bottom:-246.383829pt;}
.y4b{bottom:-230.443669pt;}
.y4a{bottom:-214.503509pt;}
.y49{bottom:-198.563349pt;}
.y48{bottom:-182.623189pt;}
.y47{bottom:-150.477200pt;}
.y46{bottom:-73.090164pt;}
.y45{bottom:-49.024347pt;}
.y31{bottom:-48.088067pt;}
.y30{bottom:-34.804567pt;}
.y44{bottom:-34.678107pt;}
.y9{bottom:-28.724400pt;}
.y2f{bottom:-21.521067pt;}
.y43{bottom:-20.331867pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:60.345200pt;}
.ye6{bottom:63.768027pt;}
.ye5{bottom:67.045440pt;}
.y98{bottom:71.045440pt;}
.y101{bottom:71.045477pt;}
.y86{bottom:71.047995pt;}
.y7{bottom:72.345200pt;}
.ybf{bottom:76.378453pt;}
.y12b{bottom:80.706333pt;}
.ye4{bottom:82.985440pt;}
.y6{bottom:84.345200pt;}
.ya6{bottom:86.985280pt;}
.y97{bottom:86.985600pt;}
.y100{bottom:86.985637pt;}
.y85{bottom:86.988155pt;}
.ybe{bottom:92.318613pt;}
.y12a{bottom:93.989833pt;}
.y5{bottom:96.345200pt;}
.ye3{bottom:98.925600pt;}
.ya5{bottom:102.925440pt;}
.yff{bottom:102.925797pt;}
.y84{bottom:102.928315pt;}
.y129{bottom:107.273333pt;}
.ybd{bottom:108.258773pt;}
.y4{bottom:108.345200pt;}
.yfe{bottom:118.865957pt;}
.ya4{bottom:118.866613pt;}
.y83{bottom:118.868475pt;}
.y128{bottom:120.556833pt;}
.ybc{bottom:120.922694pt;}
.ybb{bottom:124.200107pt;}
.y96{bottom:124.936267pt;}
.ye{bottom:131.970667pt;}
.y127{bottom:133.840333pt;}
.ye2{bottom:133.938933pt;}
.yfd{bottom:134.806117pt;}
.ya3{bottom:134.806773pt;}
.y82{bottom:134.808635pt;}
.y2e{bottom:136.404191pt;}
.yba{bottom:140.139787pt;}
.y126{bottom:147.123833pt;}
.yfc{bottom:150.746277pt;}
.ya2{bottom:150.746933pt;}
.y81{bottom:150.748795pt;}
.y2d{bottom:153.746933pt;}
.yb9{bottom:156.079947pt;}
.y125{bottom:160.407333pt;}
.yb8{bottom:172.020107pt;}
.y124{bottom:173.690833pt;}
.yfb{bottom:182.892267pt;}
.y80{bottom:182.894784pt;}
.yb7{bottom:184.674729pt;}
.y123{bottom:186.974333pt;}
.yb6{bottom:187.960107pt;}
.ya1{bottom:191.348267pt;}
.y2c{bottom:193.824997pt;}
.y122{bottom:200.257833pt;}
.yb5{bottom:200.614729pt;}
.yb4{bottom:200.624027pt;}
.yb3{bottom:203.900960pt;}
.y2b{bottom:209.765157pt;}
.y121{bottom:213.541333pt;}
.yb2{bottom:219.841120pt;}
.y7f{bottom:221.416837pt;}
.yfa{bottom:224.746933pt;}
.y2a{bottom:225.705317pt;}
.y120{bottom:226.824833pt;}
.yb1{bottom:235.781280pt;}
.y7e{bottom:237.356997pt;}
.y11f{bottom:240.108333pt;}
.y29{bottom:241.645477pt;}
.yb0{bottom:251.721440pt;}
.y7d{bottom:253.297157pt;}
.y11e{bottom:253.391833pt;}
.y28{bottom:257.585637pt;}
.y11d{bottom:266.675333pt;}
.yaf{bottom:267.661440pt;}
.y7c{bottom:269.237317pt;}
.y27{bottom:273.525797pt;}
.y11c{bottom:279.958833pt;}
.yae{bottom:283.601600pt;}
.y7b{bottom:285.177477pt;}
.y26{bottom:289.465957pt;}
.y11b{bottom:293.242333pt;}
.y7a{bottom:301.117637pt;}
.y25{bottom:305.406117pt;}
.y11a{bottom:306.525833pt;}
.y79{bottom:317.057797pt;}
.y119{bottom:319.809333pt;}
.yad{bottom:319.822100pt;}
.y24{bottom:321.346277pt;}
.y21{bottom:322.973267pt;}
.y78{bottom:332.997957pt;}
.y118{bottom:333.092833pt;}
.yac{bottom:333.105600pt;}
.y20{bottom:337.319507pt;}
.y117{bottom:346.376333pt;}
.y34{bottom:346.490800pt;}
.y77{bottom:348.938117pt;}
.y1f{bottom:351.665747pt;}
.y23{bottom:353.492267pt;}
.y116{bottom:359.659833pt;}
.y76{bottom:364.878277pt;}
.y115{bottom:372.943333pt;}
.y75{bottom:380.818437pt;}
.y1e{bottom:381.948269pt;}
.y114{bottom:386.226833pt;}
.y1d{bottom:396.294509pt;}
.y74{bottom:396.758597pt;}
.y113{bottom:399.510333pt;}
.ya0{bottom:405.200960pt;}
.y1c{bottom:410.640749pt;}
.y73{bottom:412.698757pt;}
.y112{bottom:412.793833pt;}
.y33{bottom:418.449467pt;}
.y9f{bottom:421.141120pt;}
.y1b{bottom:424.986989pt;}
.y111{bottom:426.077333pt;}
.y72{bottom:428.638917pt;}
.y22{bottom:430.884133pt;}
.ye1{bottom:434.580373pt;}
.y9e{bottom:437.081280pt;}
.y1a{bottom:439.333229pt;}
.y71{bottom:444.579077pt;}
.yd{bottom:446.150667pt;}
.ye0{bottom:447.244294pt;}
.ydf{bottom:450.521707pt;}
.y9d{bottom:453.021440pt;}
.y110{bottom:455.577921pt;}
.yc{bottom:459.484000pt;}
.y70{bottom:460.519237pt;}
.y19{bottom:462.717600pt;}
.yde{bottom:463.184294pt;}
.ydd{bottom:466.461707pt;}
.y9c{bottom:468.962613pt;}
.yb{bottom:472.817333pt;}
.y6f{bottom:476.459397pt;}
.yf9{bottom:477.112107pt;}
.ydc{bottom:479.124294pt;}
.ydb{bottom:482.401573pt;}
.y9b{bottom:484.902773pt;}
.ya{bottom:486.150667pt;}
.y6e{bottom:492.399557pt;}
.yf8{bottom:493.051947pt;}
.y10f{bottom:493.249833pt;}
.yda{bottom:495.064160pt;}
.y32{bottom:498.236000pt;}
.yd9{bottom:498.341573pt;}
.y9a{bottom:500.842933pt;}
.y42{bottom:508.185469pt;}
.y6d{bottom:508.339717pt;}
.yf7{bottom:508.992107pt;}
.y10e{bottom:509.189993pt;}
.yd8{bottom:511.004160pt;}
.y95{bottom:512.995898pt;}
.yd7{bottom:514.281413pt;}
.y18{bottom:519.136267pt;}
.y41{bottom:522.531709pt;}
.y6c{bottom:524.279877pt;}
.yf6{bottom:524.931973pt;}
.y10d{bottom:525.130153pt;}
.y94{bottom:528.936058pt;}
.yd6{bottom:530.221573pt;}
.y17{bottom:533.084267pt;}
.y40{bottom:536.877949pt;}
.y6b{bottom:540.220037pt;}
.yf5{bottom:540.873520pt;}
.y99{bottom:541.444267pt;}
.y93{bottom:544.876218pt;}
.yd5{bottom:546.162907pt;}
.y16{bottom:550.481410pt;}
.y3f{bottom:551.224189pt;}
.y6a{bottom:556.160197pt;}
.yf4{bottom:556.813680pt;}
.y10c{bottom:557.276142pt;}
.y92{bottom:560.816378pt;}
.yd4{bottom:562.102613pt;}
.y3e{bottom:565.570429pt;}
.y15{bottom:566.420267pt;}
.y69{bottom:572.100357pt;}
.yf3{bottom:572.753840pt;}
.yab{bottom:574.097280pt;}
.y91{bottom:576.756538pt;}
.yd3{bottom:578.042773pt;}
.y68{bottom:588.040517pt;}
.yf2{bottom:588.694000pt;}
.y3d{bottom:588.954800pt;}
.yaa{bottom:590.037440pt;}
.yd2{bottom:593.982453pt;}
.y10b{bottom:594.948053pt;}
.y14{bottom:599.429867pt;}
.y67{bottom:603.980677pt;}
.yf1{bottom:604.634160pt;}
.ya9{bottom:605.977600pt;}
.y90{bottom:608.902527pt;}
.yd1{bottom:609.922613pt;}
.y10a{bottom:610.888213pt;}
.y66{bottom:619.920837pt;}
.yf0{bottom:620.574320pt;}
.yd0{bottom:625.862773pt;}
.y13{bottom:626.528267pt;}
.y109{bottom:626.828373pt;}
.y65{bottom:635.860997pt;}
.yef{bottom:636.514480pt;}
.ycf{bottom:641.804107pt;}
.ya8{bottom:642.197600pt;}
.y108{bottom:642.768533pt;}
.y3c{bottom:645.373600pt;}
.y64{bottom:651.801157pt;}
.yee{bottom:652.454640pt;}
.y8f{bottom:655.009440pt;}
.yce{bottom:657.744267pt;}
.y107{bottom:658.708693pt;}
.y3b{bottom:659.321600pt;}
.y12{bottom:659.338667pt;}
.y63{bottom:667.741317pt;}
.yed{bottom:668.394507pt;}
.y8e{bottom:670.949280pt;}
.ycd{bottom:673.684107pt;}
.y106{bottom:674.648853pt;}
.y11{bottom:675.278933pt;}
.y3a{bottom:676.718744pt;}
.y62{bottom:683.681477pt;}
.yec{bottom:684.333007pt;}
.ycc{bottom:689.624267pt;}
.y105{bottom:690.589013pt;}
.y39{bottom:692.657600pt;}
.yeb{bottom:700.273167pt;}
.y8d{bottom:702.829440pt;}
.y104{bottom:706.529173pt;}
.y61{bottom:715.827467pt;}
.yea{bottom:716.213327pt;}
.y10{bottom:718.489600pt;}
.y8c{bottom:718.769440pt;}
.y103{bottom:722.469200pt;}
.ycb{bottom:724.939573pt;}
.y38{bottom:725.667200pt;}
.y8b{bottom:734.702899pt;}
.yca{bottom:737.801333pt;}
.y102{bottom:738.409360pt;}
.ye9{bottom:748.359317pt;}
.yc9{bottom:750.663973pt;}
.y37{bottom:752.765600pt;}
.y60{bottom:754.349520pt;}
.yc8{bottom:763.525733pt;}
.y8a{bottom:770.289307pt;}
.y5f{bottom:770.289680pt;}
.yc7{bottom:776.387280pt;}
.y36{bottom:785.575867pt;}
.y5e{bottom:786.229840pt;}
.y89{bottom:786.230320pt;}
.ye8{bottom:786.230480pt;}
.yc6{bottom:789.249040pt;}
.yf{bottom:790.448133pt;}
.y35{bottom:801.516133pt;}
.yc5{bottom:802.110800pt;}
.y5d{bottom:802.170000pt;}
.y88{bottom:802.170480pt;}
.ye7{bottom:802.170640pt;}
.yc4{bottom:814.972533pt;}
.y5c{bottom:818.110160pt;}
.y87{bottom:818.110640pt;}
.yc3{bottom:828.263333pt;}
.y5b{bottom:834.050320pt;}
.yc2{bottom:842.293333pt;}
.y5a{bottom:849.990480pt;}
.y3{bottom:854.338533pt;}
.y59{bottom:865.930640pt;}
.y1{bottom:879.110667pt;}
.yc1{bottom:881.856983pt;}
.y58{bottom:881.870800pt;}
.yc0{bottom:904.438933pt;}
.y57{bottom:908.438933pt;}
.ya7{bottom:913.772267pt;}
.y2{bottom:918.559067pt;}
.y56{bottom:920.499333pt;}
.h14{height:21.583121pt;}
.he{height:21.870046pt;}
.h9{height:29.244954pt;}
.h36{height:29.457490pt;}
.h2a{height:29.496303pt;}
.h4{height:29.625000pt;}
.h5{height:32.000000pt;}
.h11{height:32.805069pt;}
.h10{height:32.900710pt;}
.hf{height:33.091994pt;}
.h8{height:33.117984pt;}
.h6{height:33.328125pt;}
.h3{height:34.368000pt;}
.h29{height:36.152651pt;}
.h13{height:36.556100pt;}
.h35{height:36.556634pt;}
.h2e{height:36.556740pt;}
.h32{height:36.557274pt;}
.h33{height:36.557380pt;}
.h30{height:36.558660pt;}
.h31{height:36.562738pt;}
.h12{height:36.768636pt;}
.h17{height:36.821770pt;}
.h27{height:37.296513pt;}
.h20{height:37.297379pt;}
.h1e{height:37.299379pt;}
.h28{height:41.162346pt;}
.ha{height:43.867614pt;}
.h1f{height:44.800143pt;}
.h1b{height:44.800783pt;}
.h2d{height:44.801316pt;}
.h1c{height:44.801423pt;}
.h2b{height:44.801956pt;}
.h18{height:44.802063pt;}
.h21{height:44.802703pt;}
.h1a{height:44.806116pt;}
.h19{height:44.832278pt;}
.h25{height:49.661059pt;}
.h2c{height:49.666393pt;}
.h23{height:49.698253pt;}
.h22{height:57.910435pt;}
.h24{height:57.947629pt;}
.hd{height:58.338934pt;}
.hc{height:58.343509pt;}
.hb{height:62.145664pt;}
.h2{height:66.352000pt;}
.h7{height:312.000000pt;}
.h15{height:324.252000pt;}
.h26{height:895.421333pt;}
.h2f{height:899.422667pt;}
.h16{height:900.366667pt;}
.h34{height:901.313333pt;}
.h1d{height:905.701333pt;}
.h1{height:990.000000pt;}
.h0{height:990.236000pt;}
.w2{width:723.002667pt;}
.w0{width:725.669333pt;}
.w1{width:726.000000pt;}
.x0{left:0.000000pt;}
.x6{left:2.666667pt;}
.x5{left:49.889733pt;}
.x4{left:51.519200pt;}
.x19{left:56.670667pt;}
.x11{left:59.337333pt;}
.x18{left:65.073493pt;}
.x10{left:67.740160pt;}
.x9{left:69.569333pt;}
.x2e{left:70.797333pt;}
.x12{left:72.236000pt;}
.xb{left:74.373333pt;}
.x14{left:77.040000pt;}
.x2f{left:79.660085pt;}
.xd{left:83.998667pt;}
.xe{left:86.781333pt;}
.x16{left:89.448000pt;}
.x1a{left:92.036957pt;}
.x24{left:97.430400pt;}
.x30{left:99.139009pt;}
.xf{left:110.432000pt;}
.x17{left:113.098667pt;}
.x29{left:130.384000pt;}
.x22{left:136.284400pt;}
.x32{left:139.467715pt;}
.x2a{left:155.647488pt;}
.x31{left:163.059211pt;}
.x1d{left:164.306667pt;}
.x2d{left:176.597333pt;}
.x1c{left:196.097333pt;}
.x1b{left:197.250667pt;}
.x2{left:209.887200pt;}
.x3{left:215.842267pt;}
.x8{left:225.882667pt;}
.x7{left:233.608000pt;}
.x1e{left:247.626825pt;}
.x27{left:251.311622pt;}
.x1{left:253.101067pt;}
.x23{left:282.221200pt;}
.x2b{left:298.902288pt;}
.xa{left:307.589395pt;}
.x13{left:310.256062pt;}
.xc{left:326.094887pt;}
.x15{left:328.761554pt;}
.x1f{left:443.658288pt;}
.x21{left:454.284822pt;}
.x26{left:479.874108pt;}
.x20{left:560.066242pt;}
.x28{left:569.216955pt;}
.x2c{left:587.019488pt;}
.x25{left:629.284955pt;}
}




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