
    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_4950f36c0728fe33f68067fe.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_bb4212fada07b14b4a4b40e7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_eab59b7bc65bf91eb428bc69.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_312795a43d72cd8d90b8d1be.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b77bd3172d5861162705b2a4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_57006f5aa8d063b8e8a84a50.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e999e0b3036272ba6fc5eb47.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cc3dd0a67b844e92fc6c4bcf.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;font-style:normal;font-weight: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_71da1d34844653b00d33d70d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5666831886b200da470b12d6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b29d8260821e88a44418f697.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9d7d5e3aa832257ae2befa2a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_158fa6f7e79e4cb574aff869.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5d91f3724d979489067c653b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_fb1c31cf884e32c78bcbca98.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_50376b83e55e5f5c8e8228be.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_12fd41a173022a93430344a9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_3d17b2732047d5d7ec51d348.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_5411526ad26db600d99a3ecd.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_fb1c31cf884e32c78bcbca98.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_4e6a60cdc896a3112af6a518.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_8aa421d0984aeac0e9f82ad3.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.740723;font-style:normal;font-weight: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_5be1967c16bb110caff495c0.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.808105;font-style:normal;font-weight: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_5d91f3724d979489067c653b.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_6e264a7db45fc79ef757dc65.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_7f7b187005e6ce9cfe42179d.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_845cf83fbd38fa95afb157ad.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_125cefb67baa0378bbea62df.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_0b6c9553592fe0ef84e9564f.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_72c72e3cea9618cbc7bcf717.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_0e9fff3a7b278a176cb2cafe.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_1736e3bb3240a80cfb475b67.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_08580c9148c59170c962cae5.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_490cdf5c80569eac761bdaf0.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_093634f68f1206b690ebb9c2.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_f6674827de1d67ebf36fd272.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_7e27ab95a4cdeef718004bb3.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_1d44d1d48b0034dd1da53121.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_2af280f0f5f9e163b598e8d1.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_f1104503e82e172aa01a6396.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_f7b2fb0171e71f1bc2d25cef.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_643676ed2972c5fe91fabeb7.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_b559485996100eb5884f0e5c.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_d748bbfd546416f381617261.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_0a086ad63afe582f5e422c3f.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_8a42c636c127687f226d2bbe.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_2c930aacae2f75140c2827e7.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_cc063c45e0f9cf497ef45e2d.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_f225da18a6052a427e7caf79.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_1272dd437a1ec1a93ecdbff1.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_cdb8804ba9a4421181c5a8a3.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_2254ee2e698838876215af8f.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_6e2380a4668f090ad8252c13.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_22d12bedbfd70073e5fd54ae.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_c33accf9d41b0802a1bf3d8d.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_8516d6ccf4c3189c3b992d0b.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_3c1b857cf44a89cdd1908dce.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_ee4fb6ee8feb7dbb1888c1d5.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_d826a984cd985851f4bf654f.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_df9d4cf42ec9b754788b4879.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_bd961a0a1f2d4f48f8459f86.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_4e6a60cdc896a3112af6a518.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_37f189b468745ff329b5369b.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_08cb42afb02cf318ce457375.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_1272dd437a1ec1a93ecdbff1.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_c5a1d2bd02ce791bc77424b5.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_c057359609f927594bbdddfa.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_9edb1beb441dc57c4f32c635.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_12584ef7d348ee2884503777.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_2181db19e581c4b947e798e0.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_9b53b29f1cc20bdd802a2dd8.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_df8475faa846710b943f575e.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_dadefd820c7cfdd0cb430440.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url('chunks/assets/font_083ad3ab3a03ebc30a287b5c.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url('chunks/assets/font_cc55a2d356e65d1574b27117.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c;src:url('chunks/assets/font_8080d79f8bab7728f0b4015f.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_406209a65f78a344cda02a06.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url('chunks/assets/font_cc0d9ed252d6e41128f93883.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f;src:url('chunks/assets/font_cb9e564bfd959529a8803c5d.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50;src:url('chunks/assets/font_3963add7c02e47090f4515f3.woff2')format("woff");}.ff50{font-family:ff50;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51;src:url('chunks/assets/font_e0b07c86032b91dfd12e88fc.woff2')format("woff");}.ff51{font-family:ff51;line-height:0.926758;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff52;src:url('chunks/assets/font_89308ca59d3c28d26f3299cd.woff2')format("woff");}.ff52{font-family:ff52;line-height:0.925781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53;src:url('chunks/assets/font_6e968ca1f5f315e4819a55b6.woff2')format("woff");}.ff53{font-family:ff53;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54;src:url('chunks/assets/font_929cfa06edecb50f44d26e6f.woff2')format("woff");}.ff54{font-family:ff54;line-height:0.739746;font-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.000000,-0.249731,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249731,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249731,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.085506,-0.234923,0.234923,0.085506,0,0);-ms-transform:matrix(0.085506,-0.234923,0.234923,0.085506,0,0);-webkit-transform:matrix(0.085506,-0.234923,0.234923,0.085506,0,0);}
.m6{transform:matrix(0.239922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239922,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249727,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249733,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-15.984000px;}
.v8{vertical-align:-5.680800px;}
.v9{vertical-align:-1.786200px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.453400px;}
.v1{vertical-align:12.022200px;}
.v4{vertical-align:14.721600px;}
.v6{vertical-align:15.984000px;}
.v2{vertical-align:17.982000px;}
.v5{vertical-align:27.081000px;}
.lsf{letter-spacing:-4.968000px;}
.ls1e{letter-spacing:-4.416000px;}
.ls10{letter-spacing:-4.165874px;}
.ls8{letter-spacing:-3.998309px;}
.ls12{letter-spacing:-3.487309px;}
.ls3e{letter-spacing:-2.640000px;}
.ls6{letter-spacing:-2.329668px;}
.ls59{letter-spacing:-0.960000px;}
.ls7{letter-spacing:-0.270000px;}
.ls5{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000600px;}
.ls0{letter-spacing:0.001200px;}
.ls3{letter-spacing:0.004296px;}
.ls1{letter-spacing:0.004608px;}
.ls2{letter-spacing:0.005208px;}
.ls28{letter-spacing:0.007200px;}
.ls17{letter-spacing:0.007800px;}
.ls18{letter-spacing:0.008400px;}
.ls9{letter-spacing:0.430200px;}
.ls11{letter-spacing:0.586454px;}
.ls30{letter-spacing:0.629400px;}
.lse{letter-spacing:0.733800px;}
.ls4{letter-spacing:0.741600px;}
.lsd{letter-spacing:0.970200px;}
.ls21{letter-spacing:1.449600px;}
.ls20{letter-spacing:1.462200px;}
.ls55{letter-spacing:1.625400px;}
.ls40{letter-spacing:2.387400px;}
.ls54{letter-spacing:2.407200px;}
.ls25{letter-spacing:2.463600px;}
.ls3d{letter-spacing:2.549400px;}
.ls4d{letter-spacing:2.631000px;}
.ls4a{letter-spacing:2.860200px;}
.lsa{letter-spacing:2.874600px;}
.lsb{letter-spacing:3.232800px;}
.ls53{letter-spacing:3.762000px;}
.ls50{letter-spacing:4.086600px;}
.ls56{letter-spacing:4.277400px;}
.ls4f{letter-spacing:4.282800px;}
.ls4c{letter-spacing:4.423200px;}
.ls57{letter-spacing:4.449000px;}
.ls2c{letter-spacing:5.283000px;}
.ls45{letter-spacing:5.947800px;}
.ls36{letter-spacing:6.224400px;}
.ls37{letter-spacing:6.631200px;}
.ls31{letter-spacing:6.675600px;}
.ls23{letter-spacing:7.005600px;}
.ls3b{letter-spacing:7.962600px;}
.ls4b{letter-spacing:7.978800px;}
.ls39{letter-spacing:8.465400px;}
.ls5a{letter-spacing:8.574000px;}
.ls48{letter-spacing:8.583600px;}
.ls47{letter-spacing:9.415800px;}
.ls46{letter-spacing:9.416400px;}
.ls44{letter-spacing:9.462000px;}
.ls43{letter-spacing:9.462600px;}
.ls2d{letter-spacing:9.630000px;}
.ls51{letter-spacing:10.426200px;}
.ls2e{letter-spacing:10.620600px;}
.ls26{letter-spacing:10.869600px;}
.ls52{letter-spacing:11.753400px;}
.ls14{letter-spacing:12.185400px;}
.ls35{letter-spacing:13.326000px;}
.ls2b{letter-spacing:13.333800px;}
.ls16{letter-spacing:13.377000px;}
.ls32{letter-spacing:14.365200px;}
.ls3a{letter-spacing:15.076200px;}
.ls3c{letter-spacing:15.990000px;}
.ls2f{letter-spacing:16.009800px;}
.ls2a{letter-spacing:16.738200px;}
.ls34{letter-spacing:17.482200px;}
.ls33{letter-spacing:17.482800px;}
.ls58{letter-spacing:17.638800px;}
.ls22{letter-spacing:19.774200px;}
.lsc{letter-spacing:20.195400px;}
.ls1f{letter-spacing:20.445600px;}
.ls1d{letter-spacing:21.203400px;}
.ls24{letter-spacing:21.673200px;}
.ls49{letter-spacing:21.861600px;}
.ls29{letter-spacing:22.060200px;}
.ls27{letter-spacing:22.600800px;}
.ls41{letter-spacing:23.224200px;}
.ls42{letter-spacing:23.224800px;}
.ls4e{letter-spacing:31.940400px;}
.ls38{letter-spacing:32.694000px;}
.ls15{letter-spacing:38.730600px;}
.ls3f{letter-spacing:62.761800px;}
.ls19{letter-spacing:406.749085px;}
.ls1a{letter-spacing:866.218023px;}
.ls1b{letter-spacing:1299.232783px;}
.ls1c{letter-spacing:1772.878770px;}
.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;}
}
.ws2{word-spacing:-30.024000px;}
.ws83{word-spacing:-18.348000px;}
.wsc8{word-spacing:-16.680000px;}
.ws5{word-spacing:-15.012000px;}
.ws2e{word-spacing:-14.742000px;}
.ws7{word-spacing:-13.344000px;}
.ws203{word-spacing:-12.384000px;}
.wsc2{word-spacing:-12.289657px;}
.ws0{word-spacing:-11.676000px;}
.wsfe{word-spacing:-11.484302px;}
.wsc3{word-spacing:-11.022365px;}
.ws1b7{word-spacing:-10.704000px;}
.ws3{word-spacing:-8.751996px;}
.ws84{word-spacing:-8.220000px;}
.ws6{word-spacing:-7.779552px;}
.ws1eb{word-spacing:-7.440000px;}
.ws138{word-spacing:-6.480000px;}
.ws4{word-spacing:-6.422328px;}
.ws18e{word-spacing:-6.156000px;}
.ws261{word-spacing:-5.856000px;}
.ws136{word-spacing:-5.832000px;}
.ws9f{word-spacing:-5.238000px;}
.ws175{word-spacing:-5.022000px;}
.ws1b3{word-spacing:-4.914000px;}
.ws1aa{word-spacing:-4.860000px;}
.ws19d{word-spacing:-4.590000px;}
.ws207{word-spacing:-4.464000px;}
.ws141{word-spacing:-4.428000px;}
.ws146{word-spacing:-4.320000px;}
.ws235{word-spacing:-4.176000px;}
.ws21e{word-spacing:-4.080000px;}
.ws137{word-spacing:-3.996000px;}
.ws22e{word-spacing:-3.984000px;}
.ws9e{word-spacing:-3.942000px;}
.ws24b{word-spacing:-3.888000px;}
.ws12f{word-spacing:-3.672000px;}
.ws1c7{word-spacing:-3.648000px;}
.ws1d7{word-spacing:-3.600000px;}
.ws12b{word-spacing:-3.564000px;}
.ws139{word-spacing:-3.510000px;}
.ws7d{word-spacing:-3.456000px;}
.ws25a{word-spacing:-3.216000px;}
.ws28{word-spacing:-3.186000px;}
.ws5e{word-spacing:-3.132000px;}
.ws1a4{word-spacing:-3.024000px;}
.ws13e{word-spacing:-2.970000px;}
.ws197{word-spacing:-2.916000px;}
.ws20d{word-spacing:-2.880000px;}
.ws194{word-spacing:-2.862000px;}
.wsa4{word-spacing:-2.808000px;}
.ws1f1{word-spacing:-2.784000px;}
.ws95{word-spacing:-2.754000px;}
.ws1f2{word-spacing:-2.688000px;}
.wsec{word-spacing:-2.646000px;}
.ws4e{word-spacing:-2.592000px;}
.ws10{word-spacing:-2.544000px;}
.wsdf{word-spacing:-2.538000px;}
.ws5d{word-spacing:-2.484000px;}
.ws117{word-spacing:-2.448000px;}
.ws9{word-spacing:-2.442000px;}
.ws6e{word-spacing:-2.430000px;}
.ws238{word-spacing:-2.400000px;}
.ws12e{word-spacing:-2.376000px;}
.ws102{word-spacing:-2.352000px;}
.wsa5{word-spacing:-2.322000px;}
.wse0{word-spacing:-2.268000px;}
.wseb{word-spacing:-2.214000px;}
.ws239{word-spacing:-2.208000px;}
.ws15f{word-spacing:-2.160000px;}
.ws169{word-spacing:-2.112000px;}
.ws5f{word-spacing:-2.106000px;}
.wsd9{word-spacing:-2.052000px;}
.ws62{word-spacing:-1.998000px;}
.ws185{word-spacing:-1.944000px;}
.ws252{word-spacing:-1.920000px;}
.wsa2{word-spacing:-1.890000px;}
.ws1da{word-spacing:-1.872000px;}
.wsa7{word-spacing:-1.836000px;}
.wsb{word-spacing:-1.782000px;}
.ws16a{word-spacing:-1.776000px;}
.wsc7{word-spacing:-1.728000px;}
.ws13d{word-spacing:-1.674000px;}
.ws38{word-spacing:-1.620000px;}
.ws166{word-spacing:-1.584000px;}
.ws240{word-spacing:-1.536000px;}
.ws198{word-spacing:-1.512000px;}
.ws17{word-spacing:-1.488000px;}
.ws133{word-spacing:-1.458000px;}
.ws3b{word-spacing:-1.404000px;}
.ws160{word-spacing:-1.350000px;}
.ws19{word-spacing:-1.344000px;}
.wsf{word-spacing:-1.296000px;}
.ws1a{word-spacing:-1.248000px;}
.ws144{word-spacing:-1.242000px;}
.ws114{word-spacing:-1.233101px;}
.ws12{word-spacing:-1.200000px;}
.ws1a3{word-spacing:-1.188000px;}
.wsbe{word-spacing:-1.134000px;}
.ws101{word-spacing:-1.056000px;}
.ws2a{word-spacing:-1.026000px;}
.ws227{word-spacing:-1.008000px;}
.wsa3{word-spacing:-0.972000px;}
.wsd1{word-spacing:-0.918000px;}
.ws165{word-spacing:-0.912000px;}
.ws90{word-spacing:-0.864000px;}
.wsca{word-spacing:-0.810000px;}
.wsc4{word-spacing:-0.795733px;}
.ws20c{word-spacing:-0.768000px;}
.ws131{word-spacing:-0.756000px;}
.ws253{word-spacing:-0.720000px;}
.ws7c{word-spacing:-0.702000px;}
.ws20e{word-spacing:-0.672000px;}
.ws108{word-spacing:-0.628344px;}
.ws1c6{word-spacing:-0.624000px;}
.ws178{word-spacing:-0.594000px;}
.ws1ec{word-spacing:-0.576000px;}
.ws13a{word-spacing:-0.540000px;}
.ws224{word-spacing:-0.528000px;}
.ws86{word-spacing:-0.486000px;}
.ws260{word-spacing:-0.384000px;}
.ws14c{word-spacing:-0.378000px;}
.ws1dd{word-spacing:-0.336000px;}
.ws1a6{word-spacing:-0.324000px;}
.ws226{word-spacing:-0.288000px;}
.ws76{word-spacing:-0.216000px;}
.wsb2{word-spacing:-0.162000px;}
.ws1e{word-spacing:-0.144000px;}
.ws184{word-spacing:-0.108000px;}
.ws106{word-spacing:-0.068506px;}
.wsff{word-spacing:-0.047412px;}
.ws107{word-spacing:-0.041890px;}
.ws8{word-spacing:0.000000px;}
.ws51{word-spacing:0.054000px;}
.ws1e9{word-spacing:0.096000px;}
.ws177{word-spacing:0.108000px;}
.ws167{word-spacing:0.144000px;}
.ws57{word-spacing:0.162000px;}
.wsba{word-spacing:0.216000px;}
.ws21a{word-spacing:0.240000px;}
.ws34{word-spacing:0.270000px;}
.ws25d{word-spacing:0.288000px;}
.ws4c{word-spacing:0.324000px;}
.ws163{word-spacing:0.336000px;}
.wscf{word-spacing:0.432000px;}
.ws147{word-spacing:0.486000px;}
.ws19b{word-spacing:0.540000px;}
.wsc5{word-spacing:0.576000px;}
.ws1d1{word-spacing:0.624000px;}
.ws250{word-spacing:0.672000px;}
.ws72{word-spacing:0.702000px;}
.ws251{word-spacing:0.720000px;}
.wsf0{word-spacing:0.756000px;}
.ws21{word-spacing:0.768000px;}
.ws88{word-spacing:0.810000px;}
.ws96{word-spacing:0.864000px;}
.ws164{word-spacing:0.912000px;}
.ws23a{word-spacing:0.960000px;}
.wse5{word-spacing:0.972000px;}
.ws15{word-spacing:1.008000px;}
.ws14d{word-spacing:1.026000px;}
.wsd4{word-spacing:1.080000px;}
.ws1f8{word-spacing:1.104000px;}
.ws8e{word-spacing:1.134000px;}
.wsa{word-spacing:1.188000px;}
.ws118{word-spacing:1.200000px;}
.wsa1{word-spacing:1.242000px;}
.ws179{word-spacing:1.296000px;}
.ws234{word-spacing:1.344000px;}
.ws89{word-spacing:1.350000px;}
.ws97{word-spacing:1.404000px;}
.ws14{word-spacing:1.440000px;}
.ws92{word-spacing:1.458000px;}
.ws24a{word-spacing:1.488000px;}
.wsf8{word-spacing:1.512000px;}
.ws25c{word-spacing:1.536000px;}
.wsb6{word-spacing:1.566000px;}
.ws145{word-spacing:1.620000px;}
.ws230{word-spacing:1.632000px;}
.ws6a{word-spacing:1.674000px;}
.ws259{word-spacing:1.680000px;}
.wse{word-spacing:1.728000px;}
.wsc0{word-spacing:1.782000px;}
.ws1b{word-spacing:1.824000px;}
.ws168{word-spacing:1.920000px;}
.ws19a{word-spacing:1.944000px;}
.ws151{word-spacing:1.998000px;}
.ws1d0{word-spacing:2.064000px;}
.ws54{word-spacing:2.106000px;}
.ws248{word-spacing:2.112000px;}
.ws35{word-spacing:2.160000px;}
.ws12a{word-spacing:2.214000px;}
.ws14f{word-spacing:2.268000px;}
.ws1f3{word-spacing:2.400000px;}
.ws8d{word-spacing:2.430000px;}
.ws87{word-spacing:2.484000px;}
.ws15e{word-spacing:2.538000px;}
.ws200{word-spacing:2.544000px;}
.wsb5{word-spacing:2.592000px;}
.ws16b{word-spacing:2.640000px;}
.ws1ed{word-spacing:2.688000px;}
.ws9b{word-spacing:2.700000px;}
.ws256{word-spacing:2.736000px;}
.ws156{word-spacing:2.808000px;}
.ws100{word-spacing:2.832000px;}
.wsb8{word-spacing:2.862000px;}
.ws21b{word-spacing:2.880000px;}
.ws1f7{word-spacing:2.928000px;}
.wsbf{word-spacing:2.970000px;}
.ws115{word-spacing:2.976000px;}
.wsd0{word-spacing:3.024000px;}
.ws8f{word-spacing:3.078000px;}
.ws246{word-spacing:3.120000px;}
.wsdd{word-spacing:3.132000px;}
.ws208{word-spacing:3.168000px;}
.ws6b{word-spacing:3.186000px;}
.ws69{word-spacing:3.240000px;}
.wscd{word-spacing:3.294000px;}
.wsc9{word-spacing:3.348000px;}
.ws53{word-spacing:3.402000px;}
.ws103{word-spacing:3.440183px;}
.ws193{word-spacing:3.456000px;}
.wsee{word-spacing:3.564000px;}
.ws1e7{word-spacing:3.600000px;}
.ws27{word-spacing:3.618000px;}
.ws20{word-spacing:3.648000px;}
.wse3{word-spacing:3.672000px;}
.wsd{word-spacing:3.726000px;}
.wsef{word-spacing:3.780000px;}
.ws22d{word-spacing:3.792000px;}
.ws162{word-spacing:3.834000px;}
.ws216{word-spacing:3.840000px;}
.ws2c{word-spacing:3.888000px;}
.ws254{word-spacing:3.936000px;}
.ws18b{word-spacing:3.942000px;}
.ws25b{word-spacing:3.984000px;}
.wsc1{word-spacing:3.996000px;}
.ws228{word-spacing:4.032000px;}
.ws22a{word-spacing:4.080000px;}
.ws12d{word-spacing:4.104000px;}
.ws221{word-spacing:4.176000px;}
.ws48{word-spacing:4.212000px;}
.ws11{word-spacing:4.224000px;}
.ws31{word-spacing:4.266000px;}
.ws229{word-spacing:4.272000px;}
.ws17d{word-spacing:4.320000px;}
.ws2f{word-spacing:4.374000px;}
.ws21f{word-spacing:4.416000px;}
.wsf6{word-spacing:4.428000px;}
.ws1e6{word-spacing:4.464000px;}
.ws49{word-spacing:4.482000px;}
.ws1ef{word-spacing:4.512000px;}
.ws176{word-spacing:4.536000px;}
.ws1cd{word-spacing:4.560000px;}
.wsf1{word-spacing:4.590000px;}
.ws1d{word-spacing:4.656000px;}
.wsc{word-spacing:4.698000px;}
.ws1f6{word-spacing:4.704000px;}
.wsf9{word-spacing:4.752000px;}
.ws14e{word-spacing:4.806000px;}
.ws3c{word-spacing:4.860000px;}
.ws56{word-spacing:4.914000px;}
.ws1fc{word-spacing:4.944000px;}
.ws4a{word-spacing:4.968000px;}
.ws116{word-spacing:4.992000px;}
.ws1e4{word-spacing:5.040000px;}
.ws6d{word-spacing:5.076000px;}
.ws1c{word-spacing:5.184000px;}
.ws1c4{word-spacing:5.280000px;}
.wsdc{word-spacing:5.292000px;}
.ws206{word-spacing:5.328000px;}
.ws19f{word-spacing:5.346000px;}
.ws225{word-spacing:5.376000px;}
.ws9d{word-spacing:5.400000px;}
.wsb9{word-spacing:5.508000px;}
.wsd5{word-spacing:5.562000px;}
.ws5a{word-spacing:5.616000px;}
.ws8a{word-spacing:5.778000px;}
.wsb4{word-spacing:5.832000px;}
.ws66{word-spacing:5.886000px;}
.ws36{word-spacing:5.940000px;}
.ws1f{word-spacing:5.952000px;}
.wsf7{word-spacing:5.994000px;}
.ws18{word-spacing:6.048000px;}
.ws20b{word-spacing:6.096000px;}
.wsde{word-spacing:6.102000px;}
.ws91{word-spacing:6.210000px;}
.ws1e2{word-spacing:6.240000px;}
.ws42{word-spacing:6.264000px;}
.ws1be{word-spacing:6.288000px;}
.ws29{word-spacing:6.318000px;}
.ws265{word-spacing:6.336000px;}
.ws1b1{word-spacing:6.426000px;}
.wsc6{word-spacing:6.528000px;}
.ws39{word-spacing:6.534000px;}
.ws73{word-spacing:6.588000px;}
.ws1ea{word-spacing:6.624000px;}
.ws12c{word-spacing:6.642000px;}
.ws1d4{word-spacing:6.672000px;}
.ws81{word-spacing:6.696000px;}
.ws148{word-spacing:6.750000px;}
.wsa0{word-spacing:6.804000px;}
.ws1b4{word-spacing:6.816000px;}
.ws110{word-spacing:6.858000px;}
.ws59{word-spacing:6.966000px;}
.ws257{word-spacing:7.008000px;}
.ws3d{word-spacing:7.020000px;}
.wsd6{word-spacing:7.074000px;}
.ws1c8{word-spacing:7.104000px;}
.ws46{word-spacing:7.128000px;}
.ws33{word-spacing:7.182000px;}
.wsfc{word-spacing:7.236000px;}
.ws1b9{word-spacing:7.248000px;}
.ws241{word-spacing:7.296000px;}
.wse7{word-spacing:7.344000px;}
.ws172{word-spacing:7.398000px;}
.ws196{word-spacing:7.452000px;}
.ws32{word-spacing:7.506000px;}
.wsf5{word-spacing:7.560000px;}
.ws15a{word-spacing:7.614000px;}
.ws1bc{word-spacing:7.632000px;}
.ws6f{word-spacing:7.668000px;}
.ws17c{word-spacing:7.722000px;}
.ws17a{word-spacing:7.830000px;}
.ws14b{word-spacing:7.884000px;}
.ws1ca{word-spacing:7.968000px;}
.wsfb{word-spacing:7.992000px;}
.ws243{word-spacing:8.016000px;}
.ws1db{word-spacing:8.064000px;}
.wsab{word-spacing:8.100000px;}
.wsaf{word-spacing:8.154000px;}
.ws171{word-spacing:8.208000px;}
.ws249{word-spacing:8.256000px;}
.ws152{word-spacing:8.262000px;}
.ws85{word-spacing:8.316000px;}
.ws16{word-spacing:8.352000px;}
.ws1a2{word-spacing:8.370000px;}
.ws1c3{word-spacing:8.400000px;}
.ws180{word-spacing:8.424000px;}
.ws1f5{word-spacing:8.448000px;}
.ws30{word-spacing:8.478000px;}
.ws1e0{word-spacing:8.496000px;}
.ws4b{word-spacing:8.532000px;}
.ws60{word-spacing:8.586000px;}
.ws1b8{word-spacing:8.592000px;}
.ws47{word-spacing:8.640000px;}
.ws1a0{word-spacing:8.694000px;}
.ws1ac{word-spacing:8.748000px;}
.ws99{word-spacing:8.802000px;}
.ws1fd{word-spacing:8.832000px;}
.wscc{word-spacing:8.856000px;}
.ws22f{word-spacing:8.976000px;}
.wsb0{word-spacing:9.018000px;}
.wsfa{word-spacing:9.072000px;}
.ws16c{word-spacing:9.126000px;}
.wsb1{word-spacing:9.234000px;}
.wsf3{word-spacing:9.288000px;}
.ws1fe{word-spacing:9.312000px;}
.ws211{word-spacing:9.408000px;}
.ws20a{word-spacing:9.456000px;}
.ws13f{word-spacing:9.504000px;}
.ws65{word-spacing:9.558000px;}
.ws10e{word-spacing:9.558162px;}
.ws9a{word-spacing:9.612000px;}
.ws1c9{word-spacing:9.648000px;}
.ws50{word-spacing:9.720000px;}
.ws183{word-spacing:9.774000px;}
.wse6{word-spacing:9.882000px;}
.ws264{word-spacing:10.080000px;}
.ws98{word-spacing:10.098000px;}
.wsfd{word-spacing:10.152000px;}
.ws21c{word-spacing:10.176000px;}
.ws64{word-spacing:10.260000px;}
.ws16e{word-spacing:10.368000px;}
.ws22b{word-spacing:10.416000px;}
.ws37{word-spacing:10.422000px;}
.ws231{word-spacing:10.464000px;}
.ws58{word-spacing:10.476000px;}
.ws94{word-spacing:10.530000px;}
.ws191{word-spacing:10.584000px;}
.ws1cb{word-spacing:10.608000px;}
.ws1a1{word-spacing:10.692000px;}
.wsea{word-spacing:10.746000px;}
.ws1ae{word-spacing:10.800000px;}
.wse8{word-spacing:10.908000px;}
.ws1bb{word-spacing:10.944000px;}
.ws15d{word-spacing:10.962000px;}
.ws7f{word-spacing:11.016000px;}
.ws23d{word-spacing:11.088000px;}
.ws44{word-spacing:11.124000px;}
.ws1d9{word-spacing:11.136000px;}
.ws19c{word-spacing:11.232000px;}
.ws2b{word-spacing:11.286000px;}
.ws15c{word-spacing:11.340000px;}
.wsf4{word-spacing:11.448000px;}
.ws255{word-spacing:11.472000px;}
.ws61{word-spacing:11.502000px;}
.ws205{word-spacing:11.520000px;}
.ws143{word-spacing:11.556000px;}
.ws24f{word-spacing:11.568000px;}
.ws247{word-spacing:11.664000px;}
.ws22c{word-spacing:11.760000px;}
.ws237{word-spacing:11.808000px;}
.ws18f{word-spacing:11.826000px;}
.wsbb{word-spacing:11.880000px;}
.ws23c{word-spacing:11.952000px;}
.ws140{word-spacing:11.988000px;}
.ws25f{word-spacing:12.048000px;}
.wsa6{word-spacing:12.150000px;}
.wsd3{word-spacing:12.204000px;}
.ws93{word-spacing:12.258000px;}
.ws1ad{word-spacing:12.312000px;}
.ws266{word-spacing:12.384000px;}
.wsa8{word-spacing:12.474000px;}
.wsd7{word-spacing:12.528000px;}
.ws1d5{word-spacing:12.576000px;}
.ws75{word-spacing:12.582000px;}
.ws2d{word-spacing:12.636000px;}
.ws201{word-spacing:12.672000px;}
.wsce{word-spacing:12.690000px;}
.ws78{word-spacing:12.798000px;}
.ws55{word-spacing:12.852000px;}
.ws20f{word-spacing:12.864000px;}
.ws1c2{word-spacing:12.912000px;}
.ws4f{word-spacing:12.960000px;}
.ws1d2{word-spacing:13.008000px;}
.ws186{word-spacing:13.014000px;}
.ws7a{word-spacing:13.122000px;}
.ws45{word-spacing:13.176000px;}
.ws213{word-spacing:13.200000px;}
.ws220{word-spacing:13.296000px;}
.ws1c1{word-spacing:13.344000px;}
.ws3e{word-spacing:13.392000px;}
.ws263{word-spacing:13.440000px;}
.ws79{word-spacing:13.608000px;}
.ws218{word-spacing:13.632000px;}
.ws8c{word-spacing:13.662000px;}
.ws52{word-spacing:13.770000px;}
.ws105{word-spacing:13.792811px;}
.ws4d{word-spacing:13.824000px;}
.ws1a5{word-spacing:13.878000px;}
.ws67{word-spacing:13.986000px;}
.ws233{word-spacing:14.016000px;}
.ws1df{word-spacing:14.064000px;}
.ws10a{word-spacing:14.090436px;}
.wse4{word-spacing:14.094000px;}
.ws6c{word-spacing:14.148000px;}
.ws24e{word-spacing:14.208000px;}
.ws232{word-spacing:14.256000px;}
.ws1d6{word-spacing:14.352000px;}
.ws74{word-spacing:14.418000px;}
.wsb7{word-spacing:14.472000px;}
.ws210{word-spacing:14.544000px;}
.ws182{word-spacing:14.688000px;}
.ws13{word-spacing:14.784000px;}
.wsae{word-spacing:14.796000px;}
.wsbd{word-spacing:14.850000px;}
.ws262{word-spacing:14.880000px;}
.ws77{word-spacing:14.904000px;}
.ws1f4{word-spacing:15.072000px;}
.ws153{word-spacing:15.120000px;}
.ws149{word-spacing:15.174000px;}
.ws215{word-spacing:15.216000px;}
.ws1a8{word-spacing:15.228000px;}
.ws159{word-spacing:15.282000px;}
.ws1d8{word-spacing:15.312000px;}
.ws17e{word-spacing:15.390000px;}
.ws1b2{word-spacing:15.552000px;}
.ws154{word-spacing:15.606000px;}
.ws1fa{word-spacing:15.696000px;}
.ws8b{word-spacing:15.714000px;}
.ws25e{word-spacing:15.744000px;}
.ws109{word-spacing:15.750774px;}
.ws217{word-spacing:15.792000px;}
.wse1{word-spacing:15.822000px;}
.ws1c0{word-spacing:15.840000px;}
.ws3a{word-spacing:15.876000px;}
.ws242{word-spacing:15.936000px;}
.ws7e{word-spacing:15.984000px;}
.ws1ce{word-spacing:16.032000px;}
.ws192{word-spacing:16.146000px;}
.ws212{word-spacing:16.320000px;}
.ws157{word-spacing:16.524000px;}
.ws1e3{word-spacing:16.560000px;}
.wsad{word-spacing:16.578000px;}
.ws181{word-spacing:16.632000px;}
.ws13c{word-spacing:16.740000px;}
.ws1bf{word-spacing:16.752000px;}
.ws7b{word-spacing:16.800000px;}
.ws68{word-spacing:16.848000px;}
.ws10b{word-spacing:16.858829px;}
.ws80{word-spacing:16.902000px;}
.ws10c{word-spacing:16.902732px;}
.ws18c{word-spacing:17.010000px;}
.ws1f9{word-spacing:17.280000px;}
.ws23f{word-spacing:17.328000px;}
.ws189{word-spacing:17.334000px;}
.ws1cc{word-spacing:17.424000px;}
.ws1de{word-spacing:17.472000px;}
.ws71{word-spacing:17.496000px;}
.ws1cf{word-spacing:17.664000px;}
.ws24d{word-spacing:17.760000px;}
.ws13b{word-spacing:17.820000px;}
.ws10d{word-spacing:17.868602px;}
.ws24{word-spacing:17.874000px;}
.ws1e8{word-spacing:17.904000px;}
.ws1ff{word-spacing:18.144000px;}
.ws1b5{word-spacing:18.240000px;}
.ws135{word-spacing:18.306000px;}
.ws26{word-spacing:18.360000px;}
.ws1a7{word-spacing:18.468000px;}
.ws23e{word-spacing:18.672000px;}
.ws158{word-spacing:18.684000px;}
.ws155{word-spacing:19.008000px;}
.ws1d3{word-spacing:19.104000px;}
.ws16d{word-spacing:19.116000px;}
.ws19e{word-spacing:19.224000px;}
.ws130{word-spacing:19.332000px;}
.ws132{word-spacing:19.494000px;}
.ws134{word-spacing:19.548000px;}
.ws1e5{word-spacing:19.632000px;}
.ws18d{word-spacing:19.656000px;}
.ws188{word-spacing:19.764000px;}
.ws41{word-spacing:19.818000px;}
.ws3f{word-spacing:19.980000px;}
.ws113{word-spacing:20.142000px;}
.wse2{word-spacing:20.196000px;}
.ws195{word-spacing:20.250000px;}
.wse9{word-spacing:20.412000px;}
.ws173{word-spacing:20.466000px;}
.ws1af{word-spacing:20.682000px;}
.ws25{word-spacing:21.006000px;}
.ws17b{word-spacing:21.168000px;}
.ws16f{word-spacing:21.222000px;}
.ws187{word-spacing:21.330000px;}
.ws1b6{word-spacing:21.696000px;}
.ws17f{word-spacing:21.708000px;}
.ws214{word-spacing:21.792000px;}
.ws1b0{word-spacing:21.870000px;}
.ws219{word-spacing:21.888000px;}
.ws112{word-spacing:21.978000px;}
.ws1bd{word-spacing:22.080000px;}
.wsaa{word-spacing:22.140000px;}
.wsdb{word-spacing:22.410000px;}
.ws223{word-spacing:22.560000px;}
.wsb3{word-spacing:22.572000px;}
.ws1ba{word-spacing:22.608000px;}
.ws170{word-spacing:22.680000px;}
.ws18a{word-spacing:22.734000px;}
.wsf2{word-spacing:22.842000px;}
.ws40{word-spacing:22.896000px;}
.ws111{word-spacing:23.004000px;}
.ws209{word-spacing:23.232000px;}
.ws245{word-spacing:23.424000px;}
.ws1dc{word-spacing:23.472000px;}
.ws14a{word-spacing:23.868000px;}
.ws23b{word-spacing:24.000000px;}
.ws129{word-spacing:24.138000px;}
.ws1ab{word-spacing:24.192000px;}
.wsd8{word-spacing:24.354000px;}
.ws15b{word-spacing:24.408000px;}
.ws202{word-spacing:24.432000px;}
.ws1f0{word-spacing:24.528000px;}
.ws161{word-spacing:25.002000px;}
.ws1e1{word-spacing:25.056000px;}
.ws24c{word-spacing:26.064000px;}
.wsed{word-spacing:26.190000px;}
.ws104{word-spacing:26.659930px;}
.ws21d{word-spacing:27.072000px;}
.ws9c{word-spacing:27.162000px;}
.ws174{word-spacing:27.270000px;}
.ws1fb{word-spacing:27.696000px;}
.wsd2{word-spacing:27.702000px;}
.ws43{word-spacing:29.430000px;}
.ws22{word-spacing:30.186000px;}
.ws70{word-spacing:30.996000px;}
.wsbc{word-spacing:31.320000px;}
.ws63{word-spacing:31.860000px;}
.ws222{word-spacing:31.968000px;}
.ws244{word-spacing:32.352000px;}
.ws199{word-spacing:32.454000px;}
.ws1ee{word-spacing:32.688000px;}
.ws10f{word-spacing:32.832000px;}
.ws5b{word-spacing:34.020000px;}
.ws23{word-spacing:34.182000px;}
.ws190{word-spacing:34.614000px;}
.ws142{word-spacing:35.910000px;}
.ws236{word-spacing:36.432000px;}
.wscb{word-spacing:36.828000px;}
.wsa9{word-spacing:38.220000px;}
.ws150{word-spacing:38.718000px;}
.wsac{word-spacing:39.312000px;}
.ws5c{word-spacing:39.366000px;}
.ws1c5{word-spacing:40.320000px;}
.wsda{word-spacing:46.440000px;}
.ws1a9{word-spacing:48.006000px;}
.ws258{word-spacing:50.016000px;}
.ws204{word-spacing:62.784000px;}
.ws120{word-spacing:132.156600px;}
.ws125{word-spacing:140.860200px;}
.ws11f{word-spacing:147.484200px;}
.ws124{word-spacing:148.876200px;}
.ws127{word-spacing:150.780600px;}
.ws11c{word-spacing:163.788600px;}
.ws11a{word-spacing:178.204200px;}
.ws11e{word-spacing:184.828200px;}
.ws128{word-spacing:187.852800px;}
.ws122{word-spacing:188.124600px;}
.ws119{word-spacing:188.860200px;}
.ws123{word-spacing:191.884800px;}
.ws126{word-spacing:193.452600px;}
.ws121{word-spacing:196.140600px;}
.ws11b{word-spacing:196.876200px;}
.ws11d{word-spacing:260.124600px;}
.ws1{word-spacing:656.523600px;}
.ws82{word-spacing:2053.941000px;}
._c{margin-left:-2844.651000px;}
._76{margin-left:-16.362000px;}
._11{margin-left:-14.958000px;}
._10{margin-left:-12.636000px;}
._74{margin-left:-10.206000px;}
._73{margin-left:-7.719600px;}
._6{margin-left:-6.336000px;}
._9{margin-left:-5.004000px;}
._0{margin-left:-3.029400px;}
._5{margin-left:-1.808400px;}
._7{width:1.349700px;}
._8{width:3.192600px;}
._f{width:4.494000px;}
._b{width:6.311400px;}
._d{width:7.647600px;}
._e{width:8.711400px;}
._12{width:10.589400px;}
._14{width:12.283800px;}
._13{width:13.624200px;}
._20{width:14.766024px;}
._1c{width:15.892958px;}
._17{width:17.496000px;}
._18{width:18.640800px;}
._1a{width:20.680476px;}
._16{width:21.724200px;}
._79{width:22.756800px;}
._1d{width:23.927244px;}
._78{width:25.186800px;}
._1f{width:26.228270px;}
._75{width:27.290400px;}
._a{width:30.209400px;}
._77{width:32.416200px;}
._1e{width:35.309472px;}
._1b{width:37.285116px;}
._15{width:38.857800px;}
._1{width:39.910200px;}
._19{width:41.684466px;}
._29{width:55.189800px;}
._27{width:57.579000px;}
._24{width:58.955400px;}
._21{width:60.472200px;}
._28{width:64.776600px;}
._23{width:68.068200px;}
._22{width:74.719800px;}
._26{width:79.516800px;}
._2a{width:81.205800px;}
._25{width:82.436400px;}
._4{width:116.589000px;}
._6f{width:124.092600px;}
._71{width:134.220600px;}
._70{width:145.500600px;}
._3{width:164.307000px;}
._5a{width:172.092600px;}
._6b{width:174.504600px;}
._72{width:198.172200px;}
._5d{width:200.961000px;}
._69{width:202.204200px;}
._3c{width:205.228800px;}
._2{width:206.830800px;}
._35{width:209.484600px;}
._6a{width:210.504000px;}
._51{width:211.852800px;}
._55{width:217.452600px;}
._44{width:219.904800px;}
._67{width:224.775000px;}
._2f{width:230.560800px;}
._52{width:232.656000px;}
._4b{width:235.063800px;}
._6c{width:238.812600px;}
._47{width:240.313800px;}
._56{width:242.015400px;}
._5b{width:243.875400px;}
._61{width:245.610600px;}
._4a{width:246.828600px;}
._2b{width:249.516600px;}
._4c{width:252.156600px;}
._33{width:253.228800px;}
._4e{width:254.796600px;}
._6e{width:257.484600px;}
._41{width:260.494200px;}
._48{width:261.844200px;}
._3f{width:266.063400px;}
._4d{width:267.904800px;}
._2c{width:272.687400px;}
._53{width:276.204600px;}
._5e{width:278.796600px;}
._38{width:279.952800px;}
._54{width:281.532600px;}
._43{width:283.186200px;}
._36{width:284.735400px;}
._62{width:286.860600px;}
._34{width:288.313800px;}
._2d{width:290.015400px;}
._42{width:292.345800px;}
._59{width:294.047400px;}
._6d{width:296.637000px;}
._3d{width:300.361800px;}
._37{width:302.063400px;}
._3e{width:308.172600px;}
._5f{width:313.452600px;}
._58{width:334.860600px;}
._63{width:342.876600px;}
._64{width:348.204600px;}
._60{width:349.996200px;}
._5c{width:351.381000px;}
._66{width:353.196600px;}
._40{width:354.824400px;}
._30{width:358.047000px;}
._45{width:359.820600px;}
._2e{width:361.448400px;}
._68{width:362.797800px;}
._65{width:365.480400px;}
._39{width:370.095000px;}
._49{width:373.249200px;}
._46{width:393.836400px;}
._31{width:397.164600px;}
._4f{width:401.164200px;}
._3a{width:409.212600px;}
._50{width:424.556400px;}
._32{width:431.180400px;}
._57{width:434.461800px;}
._3b{width:443.228400px;}
.fc7{color:rgb(244,246,234);}
.fc6{color:rgb(46,47,49);}
.fc5{color:rgb(5,6,6);}
.fc4{color:transparent;}
.fc2{color:rgb(52,51,52);}
.fc1{color:rgb(16,15,13);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:25.773000px;}
.fs6{font-size:27.984000px;}
.fs5{font-size:31.482000px;}
.fs0{font-size:33.000000px;}
.fsc{font-size:39.295200px;}
.fs17{font-size:39.939000px;}
.fs9{font-size:41.788200px;}
.fs18{font-size:41.889600px;}
.fs1{font-size:42.000000px;}
.fs1a{font-size:43.903200px;}
.fsa{font-size:44.207400px;}
.fs19{font-size:44.874000px;}
.fs10{font-size:46.059600px;}
.fs14{font-size:46.284600px;}
.fs15{font-size:47.125800px;}
.fsf{font-size:47.412392px;}
.fs7{font-size:48.000000px;}
.fse{font-size:49.119000px;}
.fs12{font-size:51.469800px;}
.fs4{font-size:54.000000px;}
.fsd{font-size:54.031200px;}
.fs11{font-size:56.295600px;}
.fs8{font-size:60.000000px;}
.fs13{font-size:60.048000px;}
.fs1c{font-size:61.827000px;}
.fs2{font-size:66.000000px;}
.fs16{font-size:68.505600px;}
.fs1b{font-size:68.634000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y10c{bottom:0.000450px;}
.y10a{bottom:0.001350px;}
.y108{bottom:0.001650px;}
.ya8{bottom:3.190350px;}
.yf9{bottom:4.178400px;}
.yfb{bottom:4.874850px;}
.y113{bottom:5.560800px;}
.y133{bottom:5.560950px;}
.y119{bottom:5.561100px;}
.y11b{bottom:5.561400px;}
.y127{bottom:5.561550px;}
.y11f{bottom:5.561700px;}
.y123{bottom:5.561850px;}
.y129{bottom:6.446400px;}
.y117{bottom:6.447000px;}
.y12c{bottom:6.447150px;}
.y11d{bottom:6.447300px;}
.y125{bottom:6.447750px;}
.y115{bottom:6.447900px;}
.y131{bottom:6.448050px;}
.y12f{bottom:6.448500px;}
.y136{bottom:6.448650px;}
.y121{bottom:6.449100px;}
.y143{bottom:6.460050px;}
.y141{bottom:6.460800px;}
.y7{bottom:38.905500px;}
.y6{bottom:48.805500px;}
.y5{bottom:58.705500px;}
.y4{bottom:68.605500px;}
.ycf{bottom:72.283500px;}
.y58{bottom:74.834700px;}
.y14c{bottom:78.283500px;}
.y3{bottom:78.505500px;}
.yce{bottom:86.683500px;}
.y2{bottom:88.405500px;}
.y14b{bottom:89.234700px;}
.y57{bottom:92.834700px;}
.ycd{bottom:101.083500px;}
.y1{bottom:102.557550px;}
.y14a{bottom:103.634700px;}
.y56{bottom:110.834700px;}
.ycc{bottom:115.483500px;}
.y149{bottom:118.034700px;}
.y3a{bottom:128.834700px;}
.ycb{bottom:129.883500px;}
.y148{bottom:132.434700px;}
.yf7{bottom:144.283500px;}
.y39{bottom:146.834700px;}
.y147{bottom:161.234700px;}
.y38{bottom:164.834700px;}
.y59{bottom:170.364750px;}
.yd2{bottom:174.264000px;}
.y150{bottom:175.634700px;}
.y37{bottom:182.834700px;}
.y5a{bottom:183.432300px;}
.y14f{bottom:190.034700px;}
.yb0{bottom:195.978300px;}
.y5b{bottom:196.500000px;}
.y14d{bottom:197.338650px;}
.yda{bottom:197.913264px;}
.yf8{bottom:197.986500px;}
.y36{bottom:200.834700px;}
.y14e{bottom:204.434700px;}
.y5c{bottom:209.566350px;}
.y3b{bottom:218.834700px;}
.ydb{bottom:219.784104px;}
.y126{bottom:219.790500px;}
.yb1{bottom:221.481026px;}
.y5d{bottom:222.632850px;}
.y5e{bottom:235.700550px;}
.y35{bottom:236.834700px;}
.y160{bottom:237.319200px;}
.y15d{bottom:239.314200px;}
.y162{bottom:239.508000px;}
.yc9{bottom:239.599050px;}
.y165{bottom:240.216150px;}
.y161{bottom:240.536850px;}
.yfd{bottom:241.775250px;}
.y124{bottom:245.019000px;}
.y5f{bottom:248.768100px;}
.ydc{bottom:251.844448px;}
.y55{bottom:254.834700px;}
.yb2{bottom:255.385604px;}
.yfe{bottom:255.813150px;}
.y60{bottom:261.834600px;}
.yfc{bottom:269.246400px;}
.y128{bottom:270.690000px;}
.y54{bottom:272.834700px;}
.y61{bottom:274.902150px;}
.y62{bottom:287.968800px;}
.y34{bottom:290.834700px;}
.y12a{bottom:296.800500px;}
.y63{bottom:301.035150px;}
.ydd{bottom:305.086012px;}
.y33{bottom:308.834700px;}
.yb3{bottom:314.022964px;}
.y64{bottom:314.104050px;}
.y114{bottom:322.030500px;}
.y32{bottom:326.834700px;}
.y65{bottom:327.169200px;}
.yde{bottom:337.850051px;}
.y66{bottom:340.236900px;}
.y100{bottom:343.135050px;}
.y31{bottom:344.834700px;}
.y112{bottom:348.142500px;}
.ydf{bottom:350.995074px;}
.yb4{bottom:351.507109px;}
.y67{bottom:353.304600px;}
.y101{bottom:357.172950px;}
.y30{bottom:362.834700px;}
.ye0{bottom:362.859372px;}
.yb5{bottom:364.569152px;}
.y68{bottom:366.370950px;}
.yff{bottom:370.604700px;}
.yc8{bottom:371.280450px;}
.y116{bottom:373.371000px;}
.yb6{bottom:377.631194px;}
.y69{bottom:379.438650px;}
.y2f{bottom:380.834700px;}
.ye1{bottom:381.070998px;}
.yc6{bottom:389.583900px;}
.y6a{bottom:392.506200px;}
.yb7{bottom:397.690277px;}
.y166{bottom:398.389800px;}
.y15e{bottom:398.437650px;}
.y53{bottom:398.834700px;}
.y15c{bottom:399.457650px;}
.y118{bottom:399.483000px;}
.y15f{bottom:399.768450px;}
.y164{bottom:400.065300px;}
.y159{bottom:400.155900px;}
.y6b{bottom:405.574050px;}
.y2e{bottom:416.834700px;}
.y6c{bottom:418.639200px;}
.ye2{bottom:423.447511px;}
.y11a{bottom:425.152500px;}
.y6d{bottom:431.706900px;}
.y2d{bottom:434.834700px;}
.yb8{bottom:444.359726px;}
.y6e{bottom:444.772050px;}
.y11c{bottom:450.382500px;}
.y2c{bottom:452.834700px;}
.y6f{bottom:457.840950px;}
.y2b{bottom:470.834700px;}
.y70{bottom:470.907450px;}
.y11e{bottom:476.493000px;}
.ye3{bottom:481.291240px;}
.y71{bottom:483.975150px;}
.y2a{bottom:488.834700px;}
.y72{bottom:497.041500px;}
.y103{bottom:498.361500px;}
.yc7{bottom:500.129400px;}
.y120{bottom:501.721500px;}
.y29{bottom:506.834700px;}
.yb9{bottom:509.480830px;}
.y73{bottom:510.108000px;}
.y104{bottom:512.399400px;}
.y74{bottom:523.176900px;}
.ye4{bottom:523.203314px;}
.y28{bottom:524.834700px;}
.y102{bottom:525.832650px;}
.y122{bottom:527.833500px;}
.y75{bottom:536.243250px;}
.y27{bottom:542.834700px;}
.y76{bottom:549.309750px;}
.y12b{bottom:553.063500px;}
.y158{bottom:554.805600px;}
.y157{bottom:555.468450px;}
.yba{bottom:555.636983px;}
.y167{bottom:555.904350px;}
.y15b{bottom:556.237800px;}
.y15a{bottom:556.270500px;}
.ye5{bottom:559.711011px;}
.y26{bottom:560.834700px;}
.y77{bottom:562.376250px;}
.y145{bottom:570.655500px;}
.yc5{bottom:574.478400px;}
.y78{bottom:575.442600px;}
.y105{bottom:575.907750px;}
.y12d{bottom:578.734500px;}
.y25{bottom:578.834700px;}
.y146{bottom:585.609760px;}
.y79{bottom:588.510300px;}
.ybb{bottom:594.431384px;}
.y24{bottom:596.834700px;}
.y144{bottom:597.782700px;}
.y7a{bottom:601.577850px;}
.y138{bottom:604.404000px;}
.y111{bottom:613.716844px;}
.y7b{bottom:614.644350px;}
.y52{bottom:614.834700px;}
.ye6{bottom:624.816872px;}
.y7c{bottom:627.712050px;}
.yc4{bottom:630.491850px;}
.y137{bottom:630.516000px;}
.y23{bottom:632.834700px;}
.y110{bottom:638.756813px;}
.y7d{bottom:640.778400px;}
.y51{bottom:650.834700px;}
.y7e{bottom:653.846100px;}
.y22{bottom:654.830700px;}
.y132{bottom:656.187000px;}
.y13f{bottom:659.334393px;}
.y10f{bottom:663.796781px;}
.ybc{bottom:666.144295px;}
.y7f{bottom:666.911400px;}
.y50{bottom:668.834700px;}
.y13e{bottom:673.954159px;}
.y80{bottom:679.978350px;}
.y134{bottom:681.415500px;}
.y4f{bottom:686.834700px;}
.y13d{bottom:688.584900px;}
.y10e{bottom:688.836750px;}
.ye7{bottom:690.457542px;}
.y21{bottom:690.830700px;}
.y81{bottom:693.046050px;}
.y13c{bottom:700.436700px;}
.y20{bottom:704.834700px;}
.y109{bottom:705.253500px;}
.y107{bottom:705.900000px;}
.y10b{bottom:706.063500px;}
.y82{bottom:706.113750px;}
.y10d{bottom:706.332000px;}
.y135{bottom:707.085000px;}
.y155{bottom:710.800050px;}
.y163{bottom:711.172500px;}
.y156{bottom:711.374850px;}
.y153{bottom:712.636500px;}
.y152{bottom:712.841700px;}
.y154{bottom:712.886850px;}
.y151{bottom:713.812800px;}
.y83{bottom:719.179050px;}
.y1f{bottom:722.834700px;}
.y84{bottom:732.247800px;}
.y130{bottom:732.756000px;}
.ybd{bottom:738.426150px;}
.y4e{bottom:740.834700px;}
.y1e{bottom:744.830700px;}
.y85{bottom:745.313100px;}
.ye8{bottom:749.413109px;}
.y106{bottom:754.053000px;}
.y13b{bottom:754.549039px;}
.y86{bottom:758.380800px;}
.y12e{bottom:758.424000px;}
.y4d{bottom:758.834700px;}
.y1d{bottom:762.830700px;}
.y13a{bottom:769.503300px;}
.yc3{bottom:770.864400px;}
.y87{bottom:771.449550px;}
.y4c{bottom:776.834700px;}
.y1c{bottom:780.830700px;}
.y139{bottom:781.672050px;}
.y88{bottom:784.514850px;}
.yfa{bottom:785.250000px;}
.yd4{bottom:788.651142px;}
.y4b{bottom:794.834700px;}
.y89{bottom:797.581200px;}
.y1b{bottom:798.830700px;}
.y140{bottom:799.360500px;}
.y142{bottom:799.362000px;}
.yd5{bottom:801.796165px;}
.ybe{bottom:803.360250px;}
.y8a{bottom:810.647850px;}
.y4a{bottom:812.834700px;}
.yd6{bottom:814.307862px;}
.y1a{bottom:816.830700px;}
.y8b{bottom:823.715850px;}
.y49{bottom:830.834700px;}
.y19{bottom:834.830700px;}
.y8c{bottom:836.783550px;}
.yd7{bottom:845.031186px;}
.yaa{bottom:847.969507px;}
.y18{bottom:848.834700px;}
.y8d{bottom:849.848850px;}
.yc0{bottom:854.710350px;}
.yab{bottom:861.031549px;}
.y8e{bottom:862.917150px;}
.y48{bottom:866.834700px;}
.y17{bottom:870.830700px;}
.yac{bottom:874.809505px;}
.y8f{bottom:875.984850px;}
.y47{bottom:884.834700px;}
.y16{bottom:888.830700px;}
.y90{bottom:889.051200px;}
.yc1{bottom:891.967650px;}
.y91{bottom:902.118300px;}
.y46{bottom:902.834700px;}
.y15{bottom:906.830700px;}
.yad{bottom:908.646544px;}
.y92{bottom:915.186000px;}
.y45{bottom:920.834700px;}
.yd8{bottom:921.987271px;}
.y14{bottom:924.830700px;}
.y93{bottom:928.251900px;}
.y13{bottom:938.834700px;}
.y94{bottom:941.318250px;}
.yc2{bottom:951.855991px;}
.y95{bottom:954.385950px;}
.y44{bottom:956.834700px;}
.y12{bottom:960.830700px;}
.y96{bottom:967.453650px;}
.y11{bottom:974.834700px;}
.y97{bottom:980.520000px;}
.y43{bottom:992.834700px;}
.yae{bottom:993.394481px;}
.y98{bottom:993.587700px;}
.yd9{bottom:993.623422px;}
.y10{bottom:996.830700px;}
.y99{bottom:1006.655850px;}
.y42{bottom:1010.834700px;}
.yf{bottom:1014.830700px;}
.y9a{bottom:1019.720550px;}
.y41{bottom:1028.834700px;}
.y9b{bottom:1032.788250px;}
.y9c{bottom:1045.856550px;}
.ye{bottom:1046.834700px;}
.yd3{bottom:1052.438250px;}
.y9d{bottom:1058.922300px;}
.yd{bottom:1064.834700px;}
.y9e{bottom:1071.988800px;}
.yaf{bottom:1072.280033px;}
.yc{bottom:1082.834700px;}
.y9f{bottom:1085.056950px;}
.ya0{bottom:1098.122700px;}
.y40{bottom:1100.834700px;}
.yf2{bottom:1101.799018px;}
.yed{bottom:1101.799650px;}
.ye9{bottom:1101.800250px;}
.yea{bottom:1101.800700px;}
.yf5{bottom:1101.801150px;}
.yf4{bottom:1101.801300px;}
.yee{bottom:1101.802050px;}
.yd1{bottom:1101.802500px;}
.yd0{bottom:1101.802950px;}
.yf3{bottom:1101.803100px;}
.yef{bottom:1101.803250px;}
.yf0{bottom:1101.803550px;}
.yeb{bottom:1101.804003px;}
.yf6{bottom:1101.804453px;}
.yf1{bottom:1101.806853px;}
.yec{bottom:1101.807306px;}
.ybf{bottom:1104.542250px;}
.ya1{bottom:1111.189200px;}
.y3f{bottom:1118.834700px;}
.yb{bottom:1122.434700px;}
.ya2{bottom:1124.256900px;}
.y3e{bottom:1136.834700px;}
.ya9{bottom:1137.076950px;}
.ya3{bottom:1137.324600px;}
.ya4{bottom:1150.392900px;}
.ya{bottom:1154.834700px;}
.ya5{bottom:1163.458800px;}
.ya7{bottom:1166.629500px;}
.y3d{bottom:1172.834700px;}
.yca{bottom:1176.240900px;}
.ya6{bottom:1176.525150px;}
.y3c{bottom:1208.834700px;}
.y9{bottom:1214.421000px;}
.y8{bottom:1227.021000px;}
.h12{height:11.620500px;}
.h1c{height:15.220500px;}
.h1e{height:17.754000px;}
.h7{height:20.400445px;}
.h35{height:21.180000px;}
.h26{height:23.586000px;}
.h21{height:24.000000px;}
.h2{height:24.057129px;}
.h24{height:24.225000px;}
.h23{height:25.525500px;}
.h2f{height:27.027000px;}
.h27{height:27.028500px;}
.h2b{height:27.909000px;}
.h29{height:27.910500px;}
.h2d{height:27.912000px;}
.h30{height:27.915000px;}
.h13{height:28.627167px;}
.he{height:30.443357px;}
.h32{height:30.496774px;}
.h3{height:30.618164px;}
.h34{height:31.962730px;}
.h15{height:32.184196px;}
.hf{height:32.205782px;}
.h33{height:32.669499px;}
.h11{height:33.484449px;}
.h10{height:33.485049px;}
.h1a{height:33.555138px;}
.h20{height:33.719054px;}
.h22{height:34.308871px;}
.h25{height:34.331882px;}
.h19{height:34.517518px;}
.h9{height:34.945312px;}
.h8{height:34.992188px;}
.h16{height:35.783959px;}
.h37{height:36.384445px;}
.h1d{height:37.496554px;}
.h14{height:39.336191px;}
.hb{height:39.366211px;}
.h6{height:40.932501px;}
.h1b{height:40.984736px;}
.h17{height:42.890625px;}
.h18{height:42.949219px;}
.hd{height:43.681641px;}
.h1f{height:43.716586px;}
.h38{height:45.072125px;}
.h39{height:47.525525px;}
.ha{height:48.049805px;}
.hc{height:48.251953px;}
.h36{height:49.967429px;}
.h2e{height:56.157084px;}
.h2a{height:56.157684px;}
.h31{height:56.158284px;}
.h2c{height:56.176586px;}
.h28{height:56.177186px;}
.h4{height:60.072005px;}
.h5{height:78.626953px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w6{width:13.935000px;}
.w5{width:14.542500px;}
.w1f{width:23.817000px;}
.w1d{width:23.819250px;}
.w1e{width:23.820000px;}
.w2{width:64.612500px;}
.w3{width:84.631050px;}
.w4{width:153.394500px;}
.wd{width:157.621500px;}
.wf{width:161.427000px;}
.w14{width:163.798500px;}
.wa{width:174.748500px;}
.w7{width:182.376000px;}
.wc{width:182.847000px;}
.w1b{width:185.211000px;}
.w1a{width:185.701500px;}
.wb{width:186.163500px;}
.w10{width:189.402000px;}
.w13{width:191.566500px;}
.we{width:196.144500px;}
.w9{width:200.884500px;}
.w16{width:201.391500px;}
.w1c{width:209.448000px;}
.w17{width:224.703000px;}
.w18{width:231.229500px;}
.w19{width:237.061500px;}
.w8{width:239.865000px;}
.w15{width:242.757000px;}
.w12{width:248.536500px;}
.w11{width:255.012000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3d{left:10.108200px;}
.x7{left:63.779550px;}
.x1{left:72.283500px;}
.x9d{left:77.037600px;}
.x4c{left:78.703350px;}
.x97{left:80.258400px;}
.x36{left:83.727450px;}
.x8{left:85.039350px;}
.x67{left:87.019800px;}
.xb{left:93.543300px;}
.x4d{left:102.703350px;}
.x68{left:111.019800px;}
.x7e{left:126.515850px;}
.x4e{left:128.203350px;}
.xc{left:132.936000px;}
.x69{left:135.019800px;}
.x7f{left:150.515850px;}
.x4f{left:152.203350px;}
.x6a{left:160.519800px;}
.x80{left:176.015850px;}
.x50{left:177.703350px;}
.x6b{left:186.019800px;}
.x99{left:189.727200px;}
.x11{left:191.345400px;}
.x4{left:198.141750px;}
.x81{left:201.515850px;}
.x51{left:203.203350px;}
.x6c{left:211.519800px;}
.x82{left:227.015850px;}
.x52{left:228.703350px;}
.x6d{left:237.019800px;}
.x83{left:252.515850px;}
.x53{left:254.203350px;}
.x6e{left:262.519800px;}
.x19{left:269.477090px;}
.x1a{left:274.599989px;}
.x84{left:278.015850px;}
.x54{left:279.703350px;}
.x6f{left:288.019800px;}
.x98{left:294.652650px;}
.x1b{left:295.724913px;}
.x96{left:298.327500px;}
.x85{left:303.515850px;}
.x55{left:305.203350px;}
.x70{left:313.519800px;}
.x37{left:331.513500px;}
.x71{left:339.019800px;}
.x12{left:342.591000px;}
.x18{left:351.499779px;}
.x86{left:353.015850px;}
.x1c{left:354.666406px;}
.x56{left:356.203350px;}
.x1f{left:361.070031px;}
.x1d{left:365.404792px;}
.x13{left:366.995143px;}
.x1e{left:368.782528px;}
.x20{left:370.021031px;}
.x14{left:371.949155px;}
.x15{left:376.677986px;}
.x17{left:377.860193px;}
.x21{left:378.972032px;}
.x57{left:381.703350px;}
.x16{left:383.475680px;}
.x72{left:390.019800px;}
.x87{left:391.415850px;}
.x9c{left:403.880700px;}
.x95{left:406.615200px;}
.x9b{left:407.751750px;}
.x88{left:412.152150px;}
.x73{left:415.519800px;}
.x89{left:426.552150px;}
.x58{left:430.810350px;}
.x74{left:441.019800px;}
.x8a{left:447.288450px;}
.x59{left:454.810350px;}
.xa{left:459.212550px;}
.x8b{left:461.688450px;}
.x75{left:466.519800px;}
.x5{left:467.716500px;}
.x5a{left:478.810350px;}
.x9{left:480.472350px;}
.x8c{left:482.424750px;}
.xf{left:488.976450px;}
.x76{left:492.019800px;}
.x22{left:493.197450px;}
.x5b{left:504.310350px;}
.x24{left:505.844400px;}
.x8d{left:507.924750px;}
.x94{left:514.938300px;}
.x9a{left:515.990550px;}
.x25{left:518.484655px;}
.x5c{left:529.810350px;}
.x26{left:531.124910px;}
.x8e{left:533.424750px;}
.x77{left:543.019800px;}
.x10{left:548.898900px;}
.x5d{left:555.310350px;}
.x8f{left:558.924750px;}
.x23{left:561.531600px;}
.x78{left:568.519800px;}
.x3{left:575.100900px;}
.xd{left:576.382200px;}
.x5e{left:580.810350px;}
.x90{left:584.424750px;}
.x27{left:586.829250px;}
.x3c{left:590.139000px;}
.x40{left:592.571850px;}
.x79{left:594.019800px;}
.x2a{left:599.492850px;}
.x3a{left:604.621800px;}
.x5f{left:606.310350px;}
.x38{left:607.476450px;}
.x3b{left:609.711000px;}
.x2b{left:612.133105px;}
.x6{left:616.854300px;}
.x2c{left:624.769305px;}
.x3e{left:628.873500px;}
.x39{left:629.983500px;}
.x60{left:631.810350px;}
.x91{left:635.424750px;}
.x29{left:642.546300px;}
.x3f{left:648.109500px;}
.x28{left:655.369200px;}
.x61{left:657.310350px;}
.x92{left:660.924750px;}
.x2{left:665.417250px;}
.x2d{left:668.212950px;}
.x4b{left:672.523500px;}
.x45{left:679.383750px;}
.x2e{left:680.860950px;}
.x62{left:682.810350px;}
.x93{left:687.924750px;}
.x31{left:693.695700px;}
.x7a{left:705.656100px;}
.x63{left:708.310350px;}
.xe{left:712.121700px;}
.x41{left:713.966100px;}
.x30{left:724.102950px;}
.x7b{left:731.156100px;}
.x64{left:733.810350px;}
.x42{left:735.204127px;}
.x32{left:736.743600px;}
.x43{left:745.823141px;}
.x33{left:749.383855px;}
.x44{left:756.442154px;}
.x65{left:759.310350px;}
.x2f{left:767.145750px;}
.x46{left:778.200169px;}
.x34{left:779.792700px;}
.x7c{left:782.156100px;}
.x66{left:784.810350px;}
.x47{left:788.861072px;}
.x35{left:792.435450px;}
.x48{left:799.521976px;}
.x7d{left:807.656100px;}
.x49{left:810.182879px;}
.x4a{left:820.843782px;}
@media print{
.v3{vertical-align:-14.208000pt;}
.v8{vertical-align:-5.049600pt;}
.v9{vertical-align:-1.587733pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.180800pt;}
.v1{vertical-align:10.686400pt;}
.v4{vertical-align:13.085867pt;}
.v6{vertical-align:14.208000pt;}
.v2{vertical-align:15.984000pt;}
.v5{vertical-align:24.072000pt;}
.lsf{letter-spacing:-4.416000pt;}
.ls1e{letter-spacing:-3.925333pt;}
.ls10{letter-spacing:-3.702999pt;}
.ls8{letter-spacing:-3.554052pt;}
.ls12{letter-spacing:-3.099830pt;}
.ls3e{letter-spacing:-2.346667pt;}
.ls6{letter-spacing:-2.070816pt;}
.ls59{letter-spacing:-0.853333pt;}
.ls7{letter-spacing:-0.240000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000533pt;}
.ls0{letter-spacing:0.001067pt;}
.ls3{letter-spacing:0.003819pt;}
.ls1{letter-spacing:0.004096pt;}
.ls2{letter-spacing:0.004629pt;}
.ls28{letter-spacing:0.006400pt;}
.ls17{letter-spacing:0.006933pt;}
.ls18{letter-spacing:0.007467pt;}
.ls9{letter-spacing:0.382400pt;}
.ls11{letter-spacing:0.521293pt;}
.ls30{letter-spacing:0.559467pt;}
.lse{letter-spacing:0.652267pt;}
.ls4{letter-spacing:0.659200pt;}
.lsd{letter-spacing:0.862400pt;}
.ls21{letter-spacing:1.288533pt;}
.ls20{letter-spacing:1.299733pt;}
.ls55{letter-spacing:1.444800pt;}
.ls40{letter-spacing:2.122133pt;}
.ls54{letter-spacing:2.139733pt;}
.ls25{letter-spacing:2.189867pt;}
.ls3d{letter-spacing:2.266133pt;}
.ls4d{letter-spacing:2.338667pt;}
.ls4a{letter-spacing:2.542400pt;}
.lsa{letter-spacing:2.555200pt;}
.lsb{letter-spacing:2.873600pt;}
.ls53{letter-spacing:3.344000pt;}
.ls50{letter-spacing:3.632533pt;}
.ls56{letter-spacing:3.802133pt;}
.ls4f{letter-spacing:3.806933pt;}
.ls4c{letter-spacing:3.931733pt;}
.ls57{letter-spacing:3.954667pt;}
.ls2c{letter-spacing:4.696000pt;}
.ls45{letter-spacing:5.286933pt;}
.ls36{letter-spacing:5.532800pt;}
.ls37{letter-spacing:5.894400pt;}
.ls31{letter-spacing:5.933867pt;}
.ls23{letter-spacing:6.227200pt;}
.ls3b{letter-spacing:7.077867pt;}
.ls4b{letter-spacing:7.092267pt;}
.ls39{letter-spacing:7.524800pt;}
.ls5a{letter-spacing:7.621333pt;}
.ls48{letter-spacing:7.629867pt;}
.ls47{letter-spacing:8.369600pt;}
.ls46{letter-spacing:8.370133pt;}
.ls44{letter-spacing:8.410667pt;}
.ls43{letter-spacing:8.411200pt;}
.ls2d{letter-spacing:8.560000pt;}
.ls51{letter-spacing:9.267733pt;}
.ls2e{letter-spacing:9.440533pt;}
.ls26{letter-spacing:9.661867pt;}
.ls52{letter-spacing:10.447467pt;}
.ls14{letter-spacing:10.831467pt;}
.ls35{letter-spacing:11.845333pt;}
.ls2b{letter-spacing:11.852267pt;}
.ls16{letter-spacing:11.890667pt;}
.ls32{letter-spacing:12.769067pt;}
.ls3a{letter-spacing:13.401067pt;}
.ls3c{letter-spacing:14.213333pt;}
.ls2f{letter-spacing:14.230933pt;}
.ls2a{letter-spacing:14.878400pt;}
.ls34{letter-spacing:15.539733pt;}
.ls33{letter-spacing:15.540267pt;}
.ls58{letter-spacing:15.678933pt;}
.ls22{letter-spacing:17.577067pt;}
.lsc{letter-spacing:17.951467pt;}
.ls1f{letter-spacing:18.173867pt;}
.ls1d{letter-spacing:18.847467pt;}
.ls24{letter-spacing:19.265067pt;}
.ls49{letter-spacing:19.432533pt;}
.ls29{letter-spacing:19.609067pt;}
.ls27{letter-spacing:20.089600pt;}
.ls41{letter-spacing:20.643733pt;}
.ls42{letter-spacing:20.644267pt;}
.ls4e{letter-spacing:28.391467pt;}
.ls38{letter-spacing:29.061333pt;}
.ls15{letter-spacing:34.427200pt;}
.ls3f{letter-spacing:55.788267pt;}
.ls19{letter-spacing:361.554742pt;}
.ls1a{letter-spacing:769.971576pt;}
.ls1b{letter-spacing:1154.873585pt;}
.ls1c{letter-spacing:1575.892240pt;}
.ws2{word-spacing:-26.688000pt;}
.ws83{word-spacing:-16.309333pt;}
.wsc8{word-spacing:-14.826667pt;}
.ws5{word-spacing:-13.344000pt;}
.ws2e{word-spacing:-13.104000pt;}
.ws7{word-spacing:-11.861333pt;}
.ws203{word-spacing:-11.008000pt;}
.wsc2{word-spacing:-10.924140pt;}
.ws0{word-spacing:-10.378667pt;}
.wsfe{word-spacing:-10.208269pt;}
.wsc3{word-spacing:-9.797658pt;}
.ws1b7{word-spacing:-9.514667pt;}
.ws3{word-spacing:-7.779552pt;}
.ws84{word-spacing:-7.306667pt;}
.ws6{word-spacing:-6.915157pt;}
.ws1eb{word-spacing:-6.613333pt;}
.ws138{word-spacing:-5.760000pt;}
.ws4{word-spacing:-5.708736pt;}
.ws18e{word-spacing:-5.472000pt;}
.ws261{word-spacing:-5.205333pt;}
.ws136{word-spacing:-5.184000pt;}
.ws9f{word-spacing:-4.656000pt;}
.ws175{word-spacing:-4.464000pt;}
.ws1b3{word-spacing:-4.368000pt;}
.ws1aa{word-spacing:-4.320000pt;}
.ws19d{word-spacing:-4.080000pt;}
.ws207{word-spacing:-3.968000pt;}
.ws141{word-spacing:-3.936000pt;}
.ws146{word-spacing:-3.840000pt;}
.ws235{word-spacing:-3.712000pt;}
.ws21e{word-spacing:-3.626667pt;}
.ws137{word-spacing:-3.552000pt;}
.ws22e{word-spacing:-3.541333pt;}
.ws9e{word-spacing:-3.504000pt;}
.ws24b{word-spacing:-3.456000pt;}
.ws12f{word-spacing:-3.264000pt;}
.ws1c7{word-spacing:-3.242667pt;}
.ws1d7{word-spacing:-3.200000pt;}
.ws12b{word-spacing:-3.168000pt;}
.ws139{word-spacing:-3.120000pt;}
.ws7d{word-spacing:-3.072000pt;}
.ws25a{word-spacing:-2.858667pt;}
.ws28{word-spacing:-2.832000pt;}
.ws5e{word-spacing:-2.784000pt;}
.ws1a4{word-spacing:-2.688000pt;}
.ws13e{word-spacing:-2.640000pt;}
.ws197{word-spacing:-2.592000pt;}
.ws20d{word-spacing:-2.560000pt;}
.ws194{word-spacing:-2.544000pt;}
.wsa4{word-spacing:-2.496000pt;}
.ws1f1{word-spacing:-2.474667pt;}
.ws95{word-spacing:-2.448000pt;}
.ws1f2{word-spacing:-2.389333pt;}
.wsec{word-spacing:-2.352000pt;}
.ws4e{word-spacing:-2.304000pt;}
.ws10{word-spacing:-2.261333pt;}
.wsdf{word-spacing:-2.256000pt;}
.ws5d{word-spacing:-2.208000pt;}
.ws117{word-spacing:-2.176000pt;}
.ws9{word-spacing:-2.170667pt;}
.ws6e{word-spacing:-2.160000pt;}
.ws238{word-spacing:-2.133333pt;}
.ws12e{word-spacing:-2.112000pt;}
.ws102{word-spacing:-2.090667pt;}
.wsa5{word-spacing:-2.064000pt;}
.wse0{word-spacing:-2.016000pt;}
.wseb{word-spacing:-1.968000pt;}
.ws239{word-spacing:-1.962667pt;}
.ws15f{word-spacing:-1.920000pt;}
.ws169{word-spacing:-1.877333pt;}
.ws5f{word-spacing:-1.872000pt;}
.wsd9{word-spacing:-1.824000pt;}
.ws62{word-spacing:-1.776000pt;}
.ws185{word-spacing:-1.728000pt;}
.ws252{word-spacing:-1.706667pt;}
.wsa2{word-spacing:-1.680000pt;}
.ws1da{word-spacing:-1.664000pt;}
.wsa7{word-spacing:-1.632000pt;}
.wsb{word-spacing:-1.584000pt;}
.ws16a{word-spacing:-1.578667pt;}
.wsc7{word-spacing:-1.536000pt;}
.ws13d{word-spacing:-1.488000pt;}
.ws38{word-spacing:-1.440000pt;}
.ws166{word-spacing:-1.408000pt;}
.ws240{word-spacing:-1.365333pt;}
.ws198{word-spacing:-1.344000pt;}
.ws17{word-spacing:-1.322667pt;}
.ws133{word-spacing:-1.296000pt;}
.ws3b{word-spacing:-1.248000pt;}
.ws160{word-spacing:-1.200000pt;}
.ws19{word-spacing:-1.194667pt;}
.wsf{word-spacing:-1.152000pt;}
.ws1a{word-spacing:-1.109333pt;}
.ws144{word-spacing:-1.104000pt;}
.ws114{word-spacing:-1.096090pt;}
.ws12{word-spacing:-1.066667pt;}
.ws1a3{word-spacing:-1.056000pt;}
.wsbe{word-spacing:-1.008000pt;}
.ws101{word-spacing:-0.938667pt;}
.ws2a{word-spacing:-0.912000pt;}
.ws227{word-spacing:-0.896000pt;}
.wsa3{word-spacing:-0.864000pt;}
.wsd1{word-spacing:-0.816000pt;}
.ws165{word-spacing:-0.810667pt;}
.ws90{word-spacing:-0.768000pt;}
.wsca{word-spacing:-0.720000pt;}
.wsc4{word-spacing:-0.707318pt;}
.ws20c{word-spacing:-0.682667pt;}
.ws131{word-spacing:-0.672000pt;}
.ws253{word-spacing:-0.640000pt;}
.ws7c{word-spacing:-0.624000pt;}
.ws20e{word-spacing:-0.597333pt;}
.ws108{word-spacing:-0.558528pt;}
.ws1c6{word-spacing:-0.554667pt;}
.ws178{word-spacing:-0.528000pt;}
.ws1ec{word-spacing:-0.512000pt;}
.ws13a{word-spacing:-0.480000pt;}
.ws224{word-spacing:-0.469333pt;}
.ws86{word-spacing:-0.432000pt;}
.ws260{word-spacing:-0.341333pt;}
.ws14c{word-spacing:-0.336000pt;}
.ws1dd{word-spacing:-0.298667pt;}
.ws1a6{word-spacing:-0.288000pt;}
.ws226{word-spacing:-0.256000pt;}
.ws76{word-spacing:-0.192000pt;}
.wsb2{word-spacing:-0.144000pt;}
.ws1e{word-spacing:-0.128000pt;}
.ws184{word-spacing:-0.096000pt;}
.ws106{word-spacing:-0.060894pt;}
.wsff{word-spacing:-0.042144pt;}
.ws107{word-spacing:-0.037235pt;}
.ws8{word-spacing:0.000000pt;}
.ws51{word-spacing:0.048000pt;}
.ws1e9{word-spacing:0.085333pt;}
.ws177{word-spacing:0.096000pt;}
.ws167{word-spacing:0.128000pt;}
.ws57{word-spacing:0.144000pt;}
.wsba{word-spacing:0.192000pt;}
.ws21a{word-spacing:0.213333pt;}
.ws34{word-spacing:0.240000pt;}
.ws25d{word-spacing:0.256000pt;}
.ws4c{word-spacing:0.288000pt;}
.ws163{word-spacing:0.298667pt;}
.wscf{word-spacing:0.384000pt;}
.ws147{word-spacing:0.432000pt;}
.ws19b{word-spacing:0.480000pt;}
.wsc5{word-spacing:0.512000pt;}
.ws1d1{word-spacing:0.554667pt;}
.ws250{word-spacing:0.597333pt;}
.ws72{word-spacing:0.624000pt;}
.ws251{word-spacing:0.640000pt;}
.wsf0{word-spacing:0.672000pt;}
.ws21{word-spacing:0.682667pt;}
.ws88{word-spacing:0.720000pt;}
.ws96{word-spacing:0.768000pt;}
.ws164{word-spacing:0.810667pt;}
.ws23a{word-spacing:0.853333pt;}
.wse5{word-spacing:0.864000pt;}
.ws15{word-spacing:0.896000pt;}
.ws14d{word-spacing:0.912000pt;}
.wsd4{word-spacing:0.960000pt;}
.ws1f8{word-spacing:0.981333pt;}
.ws8e{word-spacing:1.008000pt;}
.wsa{word-spacing:1.056000pt;}
.ws118{word-spacing:1.066667pt;}
.wsa1{word-spacing:1.104000pt;}
.ws179{word-spacing:1.152000pt;}
.ws234{word-spacing:1.194667pt;}
.ws89{word-spacing:1.200000pt;}
.ws97{word-spacing:1.248000pt;}
.ws14{word-spacing:1.280000pt;}
.ws92{word-spacing:1.296000pt;}
.ws24a{word-spacing:1.322667pt;}
.wsf8{word-spacing:1.344000pt;}
.ws25c{word-spacing:1.365333pt;}
.wsb6{word-spacing:1.392000pt;}
.ws145{word-spacing:1.440000pt;}
.ws230{word-spacing:1.450667pt;}
.ws6a{word-spacing:1.488000pt;}
.ws259{word-spacing:1.493333pt;}
.wse{word-spacing:1.536000pt;}
.wsc0{word-spacing:1.584000pt;}
.ws1b{word-spacing:1.621333pt;}
.ws168{word-spacing:1.706667pt;}
.ws19a{word-spacing:1.728000pt;}
.ws151{word-spacing:1.776000pt;}
.ws1d0{word-spacing:1.834667pt;}
.ws54{word-spacing:1.872000pt;}
.ws248{word-spacing:1.877333pt;}
.ws35{word-spacing:1.920000pt;}
.ws12a{word-spacing:1.968000pt;}
.ws14f{word-spacing:2.016000pt;}
.ws1f3{word-spacing:2.133333pt;}
.ws8d{word-spacing:2.160000pt;}
.ws87{word-spacing:2.208000pt;}
.ws15e{word-spacing:2.256000pt;}
.ws200{word-spacing:2.261333pt;}
.wsb5{word-spacing:2.304000pt;}
.ws16b{word-spacing:2.346667pt;}
.ws1ed{word-spacing:2.389333pt;}
.ws9b{word-spacing:2.400000pt;}
.ws256{word-spacing:2.432000pt;}
.ws156{word-spacing:2.496000pt;}
.ws100{word-spacing:2.517333pt;}
.wsb8{word-spacing:2.544000pt;}
.ws21b{word-spacing:2.560000pt;}
.ws1f7{word-spacing:2.602667pt;}
.wsbf{word-spacing:2.640000pt;}
.ws115{word-spacing:2.645333pt;}
.wsd0{word-spacing:2.688000pt;}
.ws8f{word-spacing:2.736000pt;}
.ws246{word-spacing:2.773333pt;}
.wsdd{word-spacing:2.784000pt;}
.ws208{word-spacing:2.816000pt;}
.ws6b{word-spacing:2.832000pt;}
.ws69{word-spacing:2.880000pt;}
.wscd{word-spacing:2.928000pt;}
.wsc9{word-spacing:2.976000pt;}
.ws53{word-spacing:3.024000pt;}
.ws103{word-spacing:3.057941pt;}
.ws193{word-spacing:3.072000pt;}
.wsee{word-spacing:3.168000pt;}
.ws1e7{word-spacing:3.200000pt;}
.ws27{word-spacing:3.216000pt;}
.ws20{word-spacing:3.242667pt;}
.wse3{word-spacing:3.264000pt;}
.wsd{word-spacing:3.312000pt;}
.wsef{word-spacing:3.360000pt;}
.ws22d{word-spacing:3.370667pt;}
.ws162{word-spacing:3.408000pt;}
.ws216{word-spacing:3.413333pt;}
.ws2c{word-spacing:3.456000pt;}
.ws254{word-spacing:3.498667pt;}
.ws18b{word-spacing:3.504000pt;}
.ws25b{word-spacing:3.541333pt;}
.wsc1{word-spacing:3.552000pt;}
.ws228{word-spacing:3.584000pt;}
.ws22a{word-spacing:3.626667pt;}
.ws12d{word-spacing:3.648000pt;}
.ws221{word-spacing:3.712000pt;}
.ws48{word-spacing:3.744000pt;}
.ws11{word-spacing:3.754667pt;}
.ws31{word-spacing:3.792000pt;}
.ws229{word-spacing:3.797333pt;}
.ws17d{word-spacing:3.840000pt;}
.ws2f{word-spacing:3.888000pt;}
.ws21f{word-spacing:3.925333pt;}
.wsf6{word-spacing:3.936000pt;}
.ws1e6{word-spacing:3.968000pt;}
.ws49{word-spacing:3.984000pt;}
.ws1ef{word-spacing:4.010667pt;}
.ws176{word-spacing:4.032000pt;}
.ws1cd{word-spacing:4.053333pt;}
.wsf1{word-spacing:4.080000pt;}
.ws1d{word-spacing:4.138667pt;}
.wsc{word-spacing:4.176000pt;}
.ws1f6{word-spacing:4.181333pt;}
.wsf9{word-spacing:4.224000pt;}
.ws14e{word-spacing:4.272000pt;}
.ws3c{word-spacing:4.320000pt;}
.ws56{word-spacing:4.368000pt;}
.ws1fc{word-spacing:4.394667pt;}
.ws4a{word-spacing:4.416000pt;}
.ws116{word-spacing:4.437333pt;}
.ws1e4{word-spacing:4.480000pt;}
.ws6d{word-spacing:4.512000pt;}
.ws1c{word-spacing:4.608000pt;}
.ws1c4{word-spacing:4.693333pt;}
.wsdc{word-spacing:4.704000pt;}
.ws206{word-spacing:4.736000pt;}
.ws19f{word-spacing:4.752000pt;}
.ws225{word-spacing:4.778667pt;}
.ws9d{word-spacing:4.800000pt;}
.wsb9{word-spacing:4.896000pt;}
.wsd5{word-spacing:4.944000pt;}
.ws5a{word-spacing:4.992000pt;}
.ws8a{word-spacing:5.136000pt;}
.wsb4{word-spacing:5.184000pt;}
.ws66{word-spacing:5.232000pt;}
.ws36{word-spacing:5.280000pt;}
.ws1f{word-spacing:5.290667pt;}
.wsf7{word-spacing:5.328000pt;}
.ws18{word-spacing:5.376000pt;}
.ws20b{word-spacing:5.418667pt;}
.wsde{word-spacing:5.424000pt;}
.ws91{word-spacing:5.520000pt;}
.ws1e2{word-spacing:5.546667pt;}
.ws42{word-spacing:5.568000pt;}
.ws1be{word-spacing:5.589333pt;}
.ws29{word-spacing:5.616000pt;}
.ws265{word-spacing:5.632000pt;}
.ws1b1{word-spacing:5.712000pt;}
.wsc6{word-spacing:5.802667pt;}
.ws39{word-spacing:5.808000pt;}
.ws73{word-spacing:5.856000pt;}
.ws1ea{word-spacing:5.888000pt;}
.ws12c{word-spacing:5.904000pt;}
.ws1d4{word-spacing:5.930667pt;}
.ws81{word-spacing:5.952000pt;}
.ws148{word-spacing:6.000000pt;}
.wsa0{word-spacing:6.048000pt;}
.ws1b4{word-spacing:6.058667pt;}
.ws110{word-spacing:6.096000pt;}
.ws59{word-spacing:6.192000pt;}
.ws257{word-spacing:6.229333pt;}
.ws3d{word-spacing:6.240000pt;}
.wsd6{word-spacing:6.288000pt;}
.ws1c8{word-spacing:6.314667pt;}
.ws46{word-spacing:6.336000pt;}
.ws33{word-spacing:6.384000pt;}
.wsfc{word-spacing:6.432000pt;}
.ws1b9{word-spacing:6.442667pt;}
.ws241{word-spacing:6.485333pt;}
.wse7{word-spacing:6.528000pt;}
.ws172{word-spacing:6.576000pt;}
.ws196{word-spacing:6.624000pt;}
.ws32{word-spacing:6.672000pt;}
.wsf5{word-spacing:6.720000pt;}
.ws15a{word-spacing:6.768000pt;}
.ws1bc{word-spacing:6.784000pt;}
.ws6f{word-spacing:6.816000pt;}
.ws17c{word-spacing:6.864000pt;}
.ws17a{word-spacing:6.960000pt;}
.ws14b{word-spacing:7.008000pt;}
.ws1ca{word-spacing:7.082667pt;}
.wsfb{word-spacing:7.104000pt;}
.ws243{word-spacing:7.125333pt;}
.ws1db{word-spacing:7.168000pt;}
.wsab{word-spacing:7.200000pt;}
.wsaf{word-spacing:7.248000pt;}
.ws171{word-spacing:7.296000pt;}
.ws249{word-spacing:7.338667pt;}
.ws152{word-spacing:7.344000pt;}
.ws85{word-spacing:7.392000pt;}
.ws16{word-spacing:7.424000pt;}
.ws1a2{word-spacing:7.440000pt;}
.ws1c3{word-spacing:7.466667pt;}
.ws180{word-spacing:7.488000pt;}
.ws1f5{word-spacing:7.509333pt;}
.ws30{word-spacing:7.536000pt;}
.ws1e0{word-spacing:7.552000pt;}
.ws4b{word-spacing:7.584000pt;}
.ws60{word-spacing:7.632000pt;}
.ws1b8{word-spacing:7.637333pt;}
.ws47{word-spacing:7.680000pt;}
.ws1a0{word-spacing:7.728000pt;}
.ws1ac{word-spacing:7.776000pt;}
.ws99{word-spacing:7.824000pt;}
.ws1fd{word-spacing:7.850667pt;}
.wscc{word-spacing:7.872000pt;}
.ws22f{word-spacing:7.978667pt;}
.wsb0{word-spacing:8.016000pt;}
.wsfa{word-spacing:8.064000pt;}
.ws16c{word-spacing:8.112000pt;}
.wsb1{word-spacing:8.208000pt;}
.wsf3{word-spacing:8.256000pt;}
.ws1fe{word-spacing:8.277333pt;}
.ws211{word-spacing:8.362667pt;}
.ws20a{word-spacing:8.405333pt;}
.ws13f{word-spacing:8.448000pt;}
.ws65{word-spacing:8.496000pt;}
.ws10e{word-spacing:8.496144pt;}
.ws9a{word-spacing:8.544000pt;}
.ws1c9{word-spacing:8.576000pt;}
.ws50{word-spacing:8.640000pt;}
.ws183{word-spacing:8.688000pt;}
.wse6{word-spacing:8.784000pt;}
.ws264{word-spacing:8.960000pt;}
.ws98{word-spacing:8.976000pt;}
.wsfd{word-spacing:9.024000pt;}
.ws21c{word-spacing:9.045333pt;}
.ws64{word-spacing:9.120000pt;}
.ws16e{word-spacing:9.216000pt;}
.ws22b{word-spacing:9.258667pt;}
.ws37{word-spacing:9.264000pt;}
.ws231{word-spacing:9.301333pt;}
.ws58{word-spacing:9.312000pt;}
.ws94{word-spacing:9.360000pt;}
.ws191{word-spacing:9.408000pt;}
.ws1cb{word-spacing:9.429333pt;}
.ws1a1{word-spacing:9.504000pt;}
.wsea{word-spacing:9.552000pt;}
.ws1ae{word-spacing:9.600000pt;}
.wse8{word-spacing:9.696000pt;}
.ws1bb{word-spacing:9.728000pt;}
.ws15d{word-spacing:9.744000pt;}
.ws7f{word-spacing:9.792000pt;}
.ws23d{word-spacing:9.856000pt;}
.ws44{word-spacing:9.888000pt;}
.ws1d9{word-spacing:9.898667pt;}
.ws19c{word-spacing:9.984000pt;}
.ws2b{word-spacing:10.032000pt;}
.ws15c{word-spacing:10.080000pt;}
.wsf4{word-spacing:10.176000pt;}
.ws255{word-spacing:10.197333pt;}
.ws61{word-spacing:10.224000pt;}
.ws205{word-spacing:10.240000pt;}
.ws143{word-spacing:10.272000pt;}
.ws24f{word-spacing:10.282667pt;}
.ws247{word-spacing:10.368000pt;}
.ws22c{word-spacing:10.453333pt;}
.ws237{word-spacing:10.496000pt;}
.ws18f{word-spacing:10.512000pt;}
.wsbb{word-spacing:10.560000pt;}
.ws23c{word-spacing:10.624000pt;}
.ws140{word-spacing:10.656000pt;}
.ws25f{word-spacing:10.709333pt;}
.wsa6{word-spacing:10.800000pt;}
.wsd3{word-spacing:10.848000pt;}
.ws93{word-spacing:10.896000pt;}
.ws1ad{word-spacing:10.944000pt;}
.ws266{word-spacing:11.008000pt;}
.wsa8{word-spacing:11.088000pt;}
.wsd7{word-spacing:11.136000pt;}
.ws1d5{word-spacing:11.178667pt;}
.ws75{word-spacing:11.184000pt;}
.ws2d{word-spacing:11.232000pt;}
.ws201{word-spacing:11.264000pt;}
.wsce{word-spacing:11.280000pt;}
.ws78{word-spacing:11.376000pt;}
.ws55{word-spacing:11.424000pt;}
.ws20f{word-spacing:11.434667pt;}
.ws1c2{word-spacing:11.477333pt;}
.ws4f{word-spacing:11.520000pt;}
.ws1d2{word-spacing:11.562667pt;}
.ws186{word-spacing:11.568000pt;}
.ws7a{word-spacing:11.664000pt;}
.ws45{word-spacing:11.712000pt;}
.ws213{word-spacing:11.733333pt;}
.ws220{word-spacing:11.818667pt;}
.ws1c1{word-spacing:11.861333pt;}
.ws3e{word-spacing:11.904000pt;}
.ws263{word-spacing:11.946667pt;}
.ws79{word-spacing:12.096000pt;}
.ws218{word-spacing:12.117333pt;}
.ws8c{word-spacing:12.144000pt;}
.ws52{word-spacing:12.240000pt;}
.ws105{word-spacing:12.260276pt;}
.ws4d{word-spacing:12.288000pt;}
.ws1a5{word-spacing:12.336000pt;}
.ws67{word-spacing:12.432000pt;}
.ws233{word-spacing:12.458667pt;}
.ws1df{word-spacing:12.501333pt;}
.ws10a{word-spacing:12.524832pt;}
.wse4{word-spacing:12.528000pt;}
.ws6c{word-spacing:12.576000pt;}
.ws24e{word-spacing:12.629333pt;}
.ws232{word-spacing:12.672000pt;}
.ws1d6{word-spacing:12.757333pt;}
.ws74{word-spacing:12.816000pt;}
.wsb7{word-spacing:12.864000pt;}
.ws210{word-spacing:12.928000pt;}
.ws182{word-spacing:13.056000pt;}
.ws13{word-spacing:13.141333pt;}
.wsae{word-spacing:13.152000pt;}
.wsbd{word-spacing:13.200000pt;}
.ws262{word-spacing:13.226667pt;}
.ws77{word-spacing:13.248000pt;}
.ws1f4{word-spacing:13.397333pt;}
.ws153{word-spacing:13.440000pt;}
.ws149{word-spacing:13.488000pt;}
.ws215{word-spacing:13.525333pt;}
.ws1a8{word-spacing:13.536000pt;}
.ws159{word-spacing:13.584000pt;}
.ws1d8{word-spacing:13.610667pt;}
.ws17e{word-spacing:13.680000pt;}
.ws1b2{word-spacing:13.824000pt;}
.ws154{word-spacing:13.872000pt;}
.ws1fa{word-spacing:13.952000pt;}
.ws8b{word-spacing:13.968000pt;}
.ws25e{word-spacing:13.994667pt;}
.ws109{word-spacing:14.000688pt;}
.ws217{word-spacing:14.037333pt;}
.wse1{word-spacing:14.064000pt;}
.ws1c0{word-spacing:14.080000pt;}
.ws3a{word-spacing:14.112000pt;}
.ws242{word-spacing:14.165333pt;}
.ws7e{word-spacing:14.208000pt;}
.ws1ce{word-spacing:14.250667pt;}
.ws192{word-spacing:14.352000pt;}
.ws212{word-spacing:14.506667pt;}
.ws157{word-spacing:14.688000pt;}
.ws1e3{word-spacing:14.720000pt;}
.wsad{word-spacing:14.736000pt;}
.ws181{word-spacing:14.784000pt;}
.ws13c{word-spacing:14.880000pt;}
.ws1bf{word-spacing:14.890667pt;}
.ws7b{word-spacing:14.933333pt;}
.ws68{word-spacing:14.976000pt;}
.ws10b{word-spacing:14.985626pt;}
.ws80{word-spacing:15.024000pt;}
.ws10c{word-spacing:15.024651pt;}
.ws18c{word-spacing:15.120000pt;}
.ws1f9{word-spacing:15.360000pt;}
.ws23f{word-spacing:15.402667pt;}
.ws189{word-spacing:15.408000pt;}
.ws1cc{word-spacing:15.488000pt;}
.ws1de{word-spacing:15.530667pt;}
.ws71{word-spacing:15.552000pt;}
.ws1cf{word-spacing:15.701333pt;}
.ws24d{word-spacing:15.786667pt;}
.ws13b{word-spacing:15.840000pt;}
.ws10d{word-spacing:15.883202pt;}
.ws24{word-spacing:15.888000pt;}
.ws1e8{word-spacing:15.914667pt;}
.ws1ff{word-spacing:16.128000pt;}
.ws1b5{word-spacing:16.213333pt;}
.ws135{word-spacing:16.272000pt;}
.ws26{word-spacing:16.320000pt;}
.ws1a7{word-spacing:16.416000pt;}
.ws23e{word-spacing:16.597333pt;}
.ws158{word-spacing:16.608000pt;}
.ws155{word-spacing:16.896000pt;}
.ws1d3{word-spacing:16.981333pt;}
.ws16d{word-spacing:16.992000pt;}
.ws19e{word-spacing:17.088000pt;}
.ws130{word-spacing:17.184000pt;}
.ws132{word-spacing:17.328000pt;}
.ws134{word-spacing:17.376000pt;}
.ws1e5{word-spacing:17.450667pt;}
.ws18d{word-spacing:17.472000pt;}
.ws188{word-spacing:17.568000pt;}
.ws41{word-spacing:17.616000pt;}
.ws3f{word-spacing:17.760000pt;}
.ws113{word-spacing:17.904000pt;}
.wse2{word-spacing:17.952000pt;}
.ws195{word-spacing:18.000000pt;}
.wse9{word-spacing:18.144000pt;}
.ws173{word-spacing:18.192000pt;}
.ws1af{word-spacing:18.384000pt;}
.ws25{word-spacing:18.672000pt;}
.ws17b{word-spacing:18.816000pt;}
.ws16f{word-spacing:18.864000pt;}
.ws187{word-spacing:18.960000pt;}
.ws1b6{word-spacing:19.285333pt;}
.ws17f{word-spacing:19.296000pt;}
.ws214{word-spacing:19.370667pt;}
.ws1b0{word-spacing:19.440000pt;}
.ws219{word-spacing:19.456000pt;}
.ws112{word-spacing:19.536000pt;}
.ws1bd{word-spacing:19.626667pt;}
.wsaa{word-spacing:19.680000pt;}
.wsdb{word-spacing:19.920000pt;}
.ws223{word-spacing:20.053333pt;}
.wsb3{word-spacing:20.064000pt;}
.ws1ba{word-spacing:20.096000pt;}
.ws170{word-spacing:20.160000pt;}
.ws18a{word-spacing:20.208000pt;}
.wsf2{word-spacing:20.304000pt;}
.ws40{word-spacing:20.352000pt;}
.ws111{word-spacing:20.448000pt;}
.ws209{word-spacing:20.650667pt;}
.ws245{word-spacing:20.821333pt;}
.ws1dc{word-spacing:20.864000pt;}
.ws14a{word-spacing:21.216000pt;}
.ws23b{word-spacing:21.333333pt;}
.ws129{word-spacing:21.456000pt;}
.ws1ab{word-spacing:21.504000pt;}
.wsd8{word-spacing:21.648000pt;}
.ws15b{word-spacing:21.696000pt;}
.ws202{word-spacing:21.717333pt;}
.ws1f0{word-spacing:21.802667pt;}
.ws161{word-spacing:22.224000pt;}
.ws1e1{word-spacing:22.272000pt;}
.ws24c{word-spacing:23.168000pt;}
.wsed{word-spacing:23.280000pt;}
.ws104{word-spacing:23.697715pt;}
.ws21d{word-spacing:24.064000pt;}
.ws9c{word-spacing:24.144000pt;}
.ws174{word-spacing:24.240000pt;}
.ws1fb{word-spacing:24.618667pt;}
.wsd2{word-spacing:24.624000pt;}
.ws43{word-spacing:26.160000pt;}
.ws22{word-spacing:26.832000pt;}
.ws70{word-spacing:27.552000pt;}
.wsbc{word-spacing:27.840000pt;}
.ws63{word-spacing:28.320000pt;}
.ws222{word-spacing:28.416000pt;}
.ws244{word-spacing:28.757333pt;}
.ws199{word-spacing:28.848000pt;}
.ws1ee{word-spacing:29.056000pt;}
.ws10f{word-spacing:29.184000pt;}
.ws5b{word-spacing:30.240000pt;}
.ws23{word-spacing:30.384000pt;}
.ws190{word-spacing:30.768000pt;}
.ws142{word-spacing:31.920000pt;}
.ws236{word-spacing:32.384000pt;}
.wscb{word-spacing:32.736000pt;}
.wsa9{word-spacing:33.973333pt;}
.ws150{word-spacing:34.416000pt;}
.wsac{word-spacing:34.944000pt;}
.ws5c{word-spacing:34.992000pt;}
.ws1c5{word-spacing:35.840000pt;}
.wsda{word-spacing:41.280000pt;}
.ws1a9{word-spacing:42.672000pt;}
.ws258{word-spacing:44.458667pt;}
.ws204{word-spacing:55.808000pt;}
.ws120{word-spacing:117.472533pt;}
.ws125{word-spacing:125.209067pt;}
.ws11f{word-spacing:131.097067pt;}
.ws124{word-spacing:132.334400pt;}
.ws127{word-spacing:134.027200pt;}
.ws11c{word-spacing:145.589867pt;}
.ws11a{word-spacing:158.403733pt;}
.ws11e{word-spacing:164.291733pt;}
.ws128{word-spacing:166.980267pt;}
.ws122{word-spacing:167.221867pt;}
.ws119{word-spacing:167.875733pt;}
.ws123{word-spacing:170.564267pt;}
.ws126{word-spacing:171.957867pt;}
.ws121{word-spacing:174.347200pt;}
.ws11b{word-spacing:175.001067pt;}
.ws11d{word-spacing:231.221867pt;}
.ws1{word-spacing:583.576533pt;}
.ws82{word-spacing:1825.725333pt;}
._c{margin-left:-2528.578667pt;}
._76{margin-left:-14.544000pt;}
._11{margin-left:-13.296000pt;}
._10{margin-left:-11.232000pt;}
._74{margin-left:-9.072000pt;}
._73{margin-left:-6.861867pt;}
._6{margin-left:-5.632000pt;}
._9{margin-left:-4.448000pt;}
._0{margin-left:-2.692800pt;}
._5{margin-left:-1.607467pt;}
._7{width:1.199733pt;}
._8{width:2.837867pt;}
._f{width:3.994667pt;}
._b{width:5.610133pt;}
._d{width:6.797867pt;}
._e{width:7.743467pt;}
._12{width:9.412800pt;}
._14{width:10.918933pt;}
._13{width:12.110400pt;}
._20{width:13.125355pt;}
._1c{width:14.127074pt;}
._17{width:15.552000pt;}
._18{width:16.569600pt;}
._1a{width:18.382645pt;}
._16{width:19.310400pt;}
._79{width:20.228267pt;}
._1d{width:21.268661pt;}
._78{width:22.388267pt;}
._1f{width:23.314018pt;}
._75{width:24.258133pt;}
._a{width:26.852800pt;}
._77{width:28.814400pt;}
._1e{width:31.386197pt;}
._1b{width:33.142325pt;}
._15{width:34.540267pt;}
._1{width:35.475733pt;}
._19{width:37.052859pt;}
._29{width:49.057600pt;}
._27{width:51.181333pt;}
._24{width:52.404800pt;}
._21{width:53.753067pt;}
._28{width:57.579200pt;}
._23{width:60.505067pt;}
._22{width:66.417600pt;}
._26{width:70.681600pt;}
._2a{width:72.182933pt;}
._25{width:73.276800pt;}
._4{width:103.634667pt;}
._6f{width:110.304533pt;}
._71{width:119.307200pt;}
._70{width:129.333867pt;}
._3{width:146.050667pt;}
._5a{width:152.971200pt;}
._6b{width:155.115200pt;}
._72{width:176.153067pt;}
._5d{width:178.632000pt;}
._69{width:179.737067pt;}
._3c{width:182.425600pt;}
._2{width:183.849600pt;}
._35{width:186.208533pt;}
._6a{width:187.114667pt;}
._51{width:188.313600pt;}
._55{width:193.291200pt;}
._44{width:195.470933pt;}
._67{width:199.800000pt;}
._2f{width:204.942933pt;}
._52{width:206.805333pt;}
._4b{width:208.945600pt;}
._6c{width:212.277867pt;}
._47{width:213.612267pt;}
._56{width:215.124800pt;}
._5b{width:216.778133pt;}
._61{width:218.320533pt;}
._4a{width:219.403200pt;}
._2b{width:221.792533pt;}
._4c{width:224.139200pt;}
._33{width:225.092267pt;}
._4e{width:226.485867pt;}
._6e{width:228.875200pt;}
._41{width:231.550400pt;}
._48{width:232.750400pt;}
._3f{width:236.500800pt;}
._4d{width:238.137600pt;}
._2c{width:242.388800pt;}
._53{width:245.515200pt;}
._5e{width:247.819200pt;}
._38{width:248.846933pt;}
._54{width:250.251200pt;}
._43{width:251.721067pt;}
._36{width:253.098133pt;}
._62{width:254.987200pt;}
._34{width:256.278933pt;}
._2d{width:257.791467pt;}
._42{width:259.862933pt;}
._59{width:261.375467pt;}
._6d{width:263.677333pt;}
._3d{width:266.988267pt;}
._37{width:268.500800pt;}
._3e{width:273.931200pt;}
._5f{width:278.624533pt;}
._58{width:297.653867pt;}
._63{width:304.779200pt;}
._64{width:309.515200pt;}
._60{width:311.107733pt;}
._5c{width:312.338667pt;}
._66{width:313.952533pt;}
._40{width:315.399467pt;}
._30{width:318.264000pt;}
._45{width:319.840533pt;}
._2e{width:321.287467pt;}
._68{width:322.486933pt;}
._65{width:324.871467pt;}
._39{width:328.973333pt;}
._49{width:331.777067pt;}
._46{width:350.076800pt;}
._31{width:353.035200pt;}
._4f{width:356.590400pt;}
._3a{width:363.744533pt;}
._50{width:377.383467pt;}
._32{width:383.271467pt;}
._57{width:386.188267pt;}
._3b{width:393.980800pt;}
.fsb{font-size:22.909333pt;}
.fs6{font-size:24.874667pt;}
.fs5{font-size:27.984000pt;}
.fs0{font-size:29.333333pt;}
.fsc{font-size:34.929067pt;}
.fs17{font-size:35.501333pt;}
.fs9{font-size:37.145067pt;}
.fs18{font-size:37.235200pt;}
.fs1{font-size:37.333333pt;}
.fs1a{font-size:39.025067pt;}
.fsa{font-size:39.295467pt;}
.fs19{font-size:39.888000pt;}
.fs10{font-size:40.941867pt;}
.fs14{font-size:41.141867pt;}
.fs15{font-size:41.889600pt;}
.fsf{font-size:42.144349pt;}
.fs7{font-size:42.666667pt;}
.fse{font-size:43.661333pt;}
.fs12{font-size:45.750933pt;}
.fs4{font-size:48.000000pt;}
.fsd{font-size:48.027733pt;}
.fs11{font-size:50.040533pt;}
.fs8{font-size:53.333333pt;}
.fs13{font-size:53.376000pt;}
.fs1c{font-size:54.957333pt;}
.fs2{font-size:58.666667pt;}
.fs16{font-size:60.893867pt;}
.fs1b{font-size:61.008000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y10c{bottom:0.000400pt;}
.y10a{bottom:0.001200pt;}
.y108{bottom:0.001467pt;}
.ya8{bottom:2.835867pt;}
.yf9{bottom:3.714133pt;}
.yfb{bottom:4.333200pt;}
.y113{bottom:4.942933pt;}
.y133{bottom:4.943067pt;}
.y119{bottom:4.943200pt;}
.y11b{bottom:4.943467pt;}
.y127{bottom:4.943600pt;}
.y11f{bottom:4.943733pt;}
.y123{bottom:4.943867pt;}
.y129{bottom:5.730133pt;}
.y117{bottom:5.730667pt;}
.y12c{bottom:5.730800pt;}
.y11d{bottom:5.730933pt;}
.y125{bottom:5.731333pt;}
.y115{bottom:5.731467pt;}
.y131{bottom:5.731600pt;}
.y12f{bottom:5.732000pt;}
.y136{bottom:5.732133pt;}
.y121{bottom:5.732533pt;}
.y143{bottom:5.742267pt;}
.y141{bottom:5.742933pt;}
.y7{bottom:34.582667pt;}
.y6{bottom:43.382667pt;}
.y5{bottom:52.182667pt;}
.y4{bottom:60.982667pt;}
.ycf{bottom:64.252000pt;}
.y58{bottom:66.519733pt;}
.y14c{bottom:69.585333pt;}
.y3{bottom:69.782667pt;}
.yce{bottom:77.052000pt;}
.y2{bottom:78.582667pt;}
.y14b{bottom:79.319733pt;}
.y57{bottom:82.519733pt;}
.ycd{bottom:89.852000pt;}
.y1{bottom:91.162267pt;}
.y14a{bottom:92.119733pt;}
.y56{bottom:98.519733pt;}
.ycc{bottom:102.652000pt;}
.y149{bottom:104.919733pt;}
.y3a{bottom:114.519733pt;}
.ycb{bottom:115.452000pt;}
.y148{bottom:117.719733pt;}
.yf7{bottom:128.252000pt;}
.y39{bottom:130.519733pt;}
.y147{bottom:143.319733pt;}
.y38{bottom:146.519733pt;}
.y59{bottom:151.435333pt;}
.yd2{bottom:154.901333pt;}
.y150{bottom:156.119733pt;}
.y37{bottom:162.519733pt;}
.y5a{bottom:163.050933pt;}
.y14f{bottom:168.919733pt;}
.yb0{bottom:174.202933pt;}
.y5b{bottom:174.666667pt;}
.y14d{bottom:175.412133pt;}
.yda{bottom:175.922901pt;}
.yf8{bottom:175.988000pt;}
.y36{bottom:178.519733pt;}
.y14e{bottom:181.719733pt;}
.y5c{bottom:186.281200pt;}
.y3b{bottom:194.519733pt;}
.ydb{bottom:195.363648pt;}
.y126{bottom:195.369333pt;}
.yb1{bottom:196.872023pt;}
.y5d{bottom:197.895867pt;}
.y5e{bottom:209.511600pt;}
.y35{bottom:210.519733pt;}
.y160{bottom:210.950400pt;}
.y15d{bottom:212.723733pt;}
.y162{bottom:212.896000pt;}
.yc9{bottom:212.976933pt;}
.y165{bottom:213.525467pt;}
.y161{bottom:213.810533pt;}
.yfd{bottom:214.911333pt;}
.y124{bottom:217.794667pt;}
.y5f{bottom:221.127200pt;}
.ydc{bottom:223.861732pt;}
.y55{bottom:226.519733pt;}
.yb2{bottom:227.009426pt;}
.yfe{bottom:227.389467pt;}
.y60{bottom:232.741867pt;}
.yfc{bottom:239.330133pt;}
.y128{bottom:240.613333pt;}
.y54{bottom:242.519733pt;}
.y61{bottom:244.357467pt;}
.y62{bottom:255.972267pt;}
.y34{bottom:258.519733pt;}
.y12a{bottom:263.822667pt;}
.y63{bottom:267.586800pt;}
.ydd{bottom:271.187566pt;}
.y33{bottom:274.519733pt;}
.yb3{bottom:279.131524pt;}
.y64{bottom:279.203600pt;}
.y114{bottom:286.249333pt;}
.y32{bottom:290.519733pt;}
.y65{bottom:290.817067pt;}
.yde{bottom:300.311157pt;}
.y66{bottom:302.432800pt;}
.y100{bottom:305.008933pt;}
.y31{bottom:306.519733pt;}
.y112{bottom:309.460000pt;}
.ydf{bottom:311.995621pt;}
.yb4{bottom:312.450764pt;}
.y67{bottom:314.048533pt;}
.y101{bottom:317.487067pt;}
.y30{bottom:322.519733pt;}
.ye0{bottom:322.541664pt;}
.yb5{bottom:324.061468pt;}
.y68{bottom:325.663067pt;}
.yff{bottom:329.426400pt;}
.yc8{bottom:330.027067pt;}
.y116{bottom:331.885333pt;}
.yb6{bottom:335.672173pt;}
.y69{bottom:337.278800pt;}
.y2f{bottom:338.519733pt;}
.ye1{bottom:338.729776pt;}
.yc6{bottom:346.296800pt;}
.y6a{bottom:348.894400pt;}
.yb7{bottom:353.502469pt;}
.y166{bottom:354.124267pt;}
.y15e{bottom:354.166800pt;}
.y53{bottom:354.519733pt;}
.y15c{bottom:355.073467pt;}
.y118{bottom:355.096000pt;}
.y15f{bottom:355.349733pt;}
.y164{bottom:355.613600pt;}
.y159{bottom:355.694133pt;}
.y6b{bottom:360.510267pt;}
.y2e{bottom:370.519733pt;}
.y6c{bottom:372.123733pt;}
.ye2{bottom:376.397788pt;}
.y11a{bottom:377.913333pt;}
.y6d{bottom:383.739467pt;}
.y2d{bottom:386.519733pt;}
.yb8{bottom:394.986423pt;}
.y6e{bottom:395.352933pt;}
.y11c{bottom:400.340000pt;}
.y2c{bottom:402.519733pt;}
.y6f{bottom:406.969733pt;}
.y2b{bottom:418.519733pt;}
.y70{bottom:418.584400pt;}
.y11e{bottom:423.549333pt;}
.ye3{bottom:427.814436pt;}
.y71{bottom:430.200133pt;}
.y2a{bottom:434.519733pt;}
.y72{bottom:441.814667pt;}
.y103{bottom:442.988000pt;}
.yc7{bottom:444.559467pt;}
.y120{bottom:445.974667pt;}
.y29{bottom:450.519733pt;}
.yb9{bottom:452.871849pt;}
.y73{bottom:453.429333pt;}
.y104{bottom:455.466133pt;}
.y74{bottom:465.046133pt;}
.ye4{bottom:465.069613pt;}
.y28{bottom:466.519733pt;}
.y102{bottom:467.406800pt;}
.y122{bottom:469.185333pt;}
.y75{bottom:476.660667pt;}
.y27{bottom:482.519733pt;}
.y76{bottom:488.275333pt;}
.y12b{bottom:491.612000pt;}
.y158{bottom:493.160533pt;}
.y157{bottom:493.749733pt;}
.yba{bottom:493.899540pt;}
.y167{bottom:494.137200pt;}
.y15b{bottom:494.433600pt;}
.y15a{bottom:494.462667pt;}
.ye5{bottom:497.520899pt;}
.y26{bottom:498.519733pt;}
.y77{bottom:499.890000pt;}
.y145{bottom:507.249333pt;}
.yc5{bottom:510.647467pt;}
.y78{bottom:511.504533pt;}
.y105{bottom:511.918000pt;}
.y12d{bottom:514.430667pt;}
.y25{bottom:514.519733pt;}
.y146{bottom:520.542009pt;}
.y79{bottom:523.120267pt;}
.ybb{bottom:528.383453pt;}
.y24{bottom:530.519733pt;}
.y144{bottom:531.362400pt;}
.y7a{bottom:534.735867pt;}
.y138{bottom:537.248000pt;}
.y111{bottom:545.526084pt;}
.y7b{bottom:546.350533pt;}
.y52{bottom:546.519733pt;}
.ye6{bottom:555.392775pt;}
.y7c{bottom:557.966267pt;}
.yc4{bottom:560.437200pt;}
.y137{bottom:560.458667pt;}
.y23{bottom:562.519733pt;}
.y110{bottom:567.783834pt;}
.y7d{bottom:569.580800pt;}
.y51{bottom:578.519733pt;}
.y7e{bottom:581.196533pt;}
.y22{bottom:582.071733pt;}
.y132{bottom:583.277333pt;}
.y13f{bottom:586.075016pt;}
.y10f{bottom:590.041583pt;}
.ybc{bottom:592.128262pt;}
.y7f{bottom:592.810133pt;}
.y50{bottom:594.519733pt;}
.y13e{bottom:599.070363pt;}
.y80{bottom:604.425200pt;}
.y134{bottom:605.702667pt;}
.y4f{bottom:610.519733pt;}
.y13d{bottom:612.075467pt;}
.y10e{bottom:612.299333pt;}
.ye7{bottom:613.740037pt;}
.y21{bottom:614.071733pt;}
.y81{bottom:616.040933pt;}
.y13c{bottom:622.610400pt;}
.y20{bottom:626.519733pt;}
.y109{bottom:626.892000pt;}
.y107{bottom:627.466667pt;}
.y10b{bottom:627.612000pt;}
.y82{bottom:627.656667pt;}
.y10d{bottom:627.850667pt;}
.y135{bottom:628.520000pt;}
.y155{bottom:631.822267pt;}
.y163{bottom:632.153333pt;}
.y156{bottom:632.333200pt;}
.y153{bottom:633.454667pt;}
.y152{bottom:633.637067pt;}
.y154{bottom:633.677200pt;}
.y151{bottom:634.500267pt;}
.y83{bottom:639.270267pt;}
.y1f{bottom:642.519733pt;}
.y84{bottom:650.886933pt;}
.y130{bottom:651.338667pt;}
.ybd{bottom:656.378800pt;}
.y4e{bottom:658.519733pt;}
.y1e{bottom:662.071733pt;}
.y85{bottom:662.500533pt;}
.ye8{bottom:666.144986pt;}
.y106{bottom:670.269333pt;}
.y13b{bottom:670.710257pt;}
.y86{bottom:674.116267pt;}
.y12e{bottom:674.154667pt;}
.y4d{bottom:674.519733pt;}
.y1d{bottom:678.071733pt;}
.y13a{bottom:684.002933pt;}
.yc3{bottom:685.212800pt;}
.y87{bottom:685.732933pt;}
.y4c{bottom:690.519733pt;}
.y1c{bottom:694.071733pt;}
.y139{bottom:694.819600pt;}
.y88{bottom:697.346533pt;}
.yfa{bottom:698.000000pt;}
.yd4{bottom:701.023238pt;}
.y4b{bottom:706.519733pt;}
.y89{bottom:708.961067pt;}
.y1b{bottom:710.071733pt;}
.y140{bottom:710.542667pt;}
.y142{bottom:710.544000pt;}
.yd5{bottom:712.707702pt;}
.ybe{bottom:714.098000pt;}
.y8a{bottom:720.575867pt;}
.y4a{bottom:722.519733pt;}
.yd6{bottom:723.829211pt;}
.y1a{bottom:726.071733pt;}
.y8b{bottom:732.191867pt;}
.y49{bottom:738.519733pt;}
.y19{bottom:742.071733pt;}
.y8c{bottom:743.807600pt;}
.yd7{bottom:751.138832pt;}
.yaa{bottom:753.750673pt;}
.y18{bottom:754.519733pt;}
.y8d{bottom:755.421200pt;}
.yc0{bottom:759.742533pt;}
.yab{bottom:765.361377pt;}
.y8e{bottom:767.037467pt;}
.y48{bottom:770.519733pt;}
.y17{bottom:774.071733pt;}
.yac{bottom:777.608449pt;}
.y8f{bottom:778.653200pt;}
.y47{bottom:786.519733pt;}
.y16{bottom:790.071733pt;}
.y90{bottom:790.267733pt;}
.yc1{bottom:792.860133pt;}
.y91{bottom:801.882933pt;}
.y46{bottom:802.519733pt;}
.y15{bottom:806.071733pt;}
.yad{bottom:807.685817pt;}
.y92{bottom:813.498667pt;}
.y45{bottom:818.519733pt;}
.yd8{bottom:819.544241pt;}
.y14{bottom:822.071733pt;}
.y93{bottom:825.112800pt;}
.y13{bottom:834.519733pt;}
.y94{bottom:836.727333pt;}
.yc2{bottom:846.094214pt;}
.y95{bottom:848.343067pt;}
.y44{bottom:850.519733pt;}
.y12{bottom:854.071733pt;}
.y96{bottom:859.958800pt;}
.y11{bottom:866.519733pt;}
.y97{bottom:871.573333pt;}
.y43{bottom:882.519733pt;}
.yae{bottom:883.017317pt;}
.y98{bottom:883.189067pt;}
.yd9{bottom:883.220819pt;}
.y10{bottom:886.071733pt;}
.y99{bottom:894.805200pt;}
.y42{bottom:898.519733pt;}
.yf{bottom:902.071733pt;}
.y9a{bottom:906.418267pt;}
.y41{bottom:914.519733pt;}
.y9b{bottom:918.034000pt;}
.y9c{bottom:929.650267pt;}
.ye{bottom:930.519733pt;}
.yd3{bottom:935.500667pt;}
.y9d{bottom:941.264267pt;}
.yd{bottom:946.519733pt;}
.y9e{bottom:952.878933pt;}
.yaf{bottom:953.137807pt;}
.yc{bottom:962.519733pt;}
.y9f{bottom:964.495067pt;}
.ya0{bottom:976.109067pt;}
.y40{bottom:978.519733pt;}
.yf2{bottom:979.376905pt;}
.yed{bottom:979.377467pt;}
.ye9{bottom:979.378000pt;}
.yea{bottom:979.378400pt;}
.yf5{bottom:979.378800pt;}
.yf4{bottom:979.378933pt;}
.yee{bottom:979.379600pt;}
.yd1{bottom:979.380000pt;}
.yd0{bottom:979.380400pt;}
.yf3{bottom:979.380533pt;}
.yef{bottom:979.380667pt;}
.yf0{bottom:979.380933pt;}
.yeb{bottom:979.381336pt;}
.yf6{bottom:979.381736pt;}
.yf1{bottom:979.383869pt;}
.yec{bottom:979.384272pt;}
.ybf{bottom:981.815333pt;}
.ya1{bottom:987.723733pt;}
.y3f{bottom:994.519733pt;}
.yb{bottom:997.719733pt;}
.ya2{bottom:999.339467pt;}
.y3e{bottom:1010.519733pt;}
.ya9{bottom:1010.735067pt;}
.ya3{bottom:1010.955200pt;}
.ya4{bottom:1022.571467pt;}
.ya{bottom:1026.519733pt;}
.ya5{bottom:1034.185600pt;}
.ya7{bottom:1037.004000pt;}
.y3d{bottom:1042.519733pt;}
.yca{bottom:1045.547467pt;}
.ya6{bottom:1045.800133pt;}
.y3c{bottom:1074.519733pt;}
.y9{bottom:1079.485333pt;}
.y8{bottom:1090.685333pt;}
.h12{height:10.329333pt;}
.h1c{height:13.529333pt;}
.h1e{height:15.781333pt;}
.h7{height:18.133729pt;}
.h35{height:18.826667pt;}
.h26{height:20.965333pt;}
.h21{height:21.333333pt;}
.h2{height:21.384115pt;}
.h24{height:21.533333pt;}
.h23{height:22.689333pt;}
.h2f{height:24.024000pt;}
.h27{height:24.025333pt;}
.h2b{height:24.808000pt;}
.h29{height:24.809333pt;}
.h2d{height:24.810667pt;}
.h30{height:24.813333pt;}
.h13{height:25.446371pt;}
.he{height:27.060761pt;}
.h32{height:27.108244pt;}
.h3{height:27.216146pt;}
.h34{height:28.411316pt;}
.h15{height:28.608174pt;}
.hf{height:28.627361pt;}
.h33{height:29.039555pt;}
.h11{height:29.763954pt;}
.h10{height:29.764488pt;}
.h1a{height:29.826790pt;}
.h20{height:29.972493pt;}
.h22{height:30.496774pt;}
.h25{height:30.517228pt;}
.h19{height:30.682238pt;}
.h9{height:31.062500pt;}
.h8{height:31.104167pt;}
.h16{height:31.807964pt;}
.h37{height:32.341729pt;}
.h1d{height:33.330270pt;}
.h14{height:34.965503pt;}
.hb{height:34.992188pt;}
.h6{height:36.384445pt;}
.h1b{height:36.430877pt;}
.h17{height:38.125000pt;}
.h18{height:38.177083pt;}
.hd{height:38.828125pt;}
.h1f{height:38.859187pt;}
.h38{height:40.064111pt;}
.h39{height:42.244911pt;}
.ha{height:42.710938pt;}
.hc{height:42.890625pt;}
.h36{height:44.415492pt;}
.h2e{height:49.917408pt;}
.h2a{height:49.917941pt;}
.h31{height:49.918475pt;}
.h2c{height:49.934743pt;}
.h28{height:49.935276pt;}
.h4{height:53.397338pt;}
.h5{height:69.890625pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w6{width:12.386667pt;}
.w5{width:12.926667pt;}
.w1f{width:21.170667pt;}
.w1d{width:21.172667pt;}
.w1e{width:21.173333pt;}
.w2{width:57.433333pt;}
.w3{width:75.227600pt;}
.w4{width:136.350667pt;}
.wd{width:140.108000pt;}
.wf{width:143.490667pt;}
.w14{width:145.598667pt;}
.wa{width:155.332000pt;}
.w7{width:162.112000pt;}
.wc{width:162.530667pt;}
.w1b{width:164.632000pt;}
.w1a{width:165.068000pt;}
.wb{width:165.478667pt;}
.w10{width:168.357333pt;}
.w13{width:170.281333pt;}
.we{width:174.350667pt;}
.w9{width:178.564000pt;}
.w16{width:179.014667pt;}
.w1c{width:186.176000pt;}
.w17{width:199.736000pt;}
.w18{width:205.537333pt;}
.w19{width:210.721333pt;}
.w8{width:213.213333pt;}
.w15{width:215.784000pt;}
.w12{width:220.921333pt;}
.w11{width:226.677333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3d{left:8.985067pt;}
.x7{left:56.692933pt;}
.x1{left:64.252000pt;}
.x9d{left:68.477867pt;}
.x4c{left:69.958533pt;}
.x97{left:71.340800pt;}
.x36{left:74.424400pt;}
.x8{left:75.590533pt;}
.x67{left:77.350933pt;}
.xb{left:83.149600pt;}
.x4d{left:91.291867pt;}
.x68{left:98.684267pt;}
.x7e{left:112.458533pt;}
.x4e{left:113.958533pt;}
.xc{left:118.165333pt;}
.x69{left:120.017600pt;}
.x7f{left:133.791867pt;}
.x4f{left:135.291867pt;}
.x6a{left:142.684267pt;}
.x80{left:156.458533pt;}
.x50{left:157.958533pt;}
.x6b{left:165.350933pt;}
.x99{left:168.646400pt;}
.x11{left:170.084800pt;}
.x4{left:176.126000pt;}
.x81{left:179.125200pt;}
.x51{left:180.625200pt;}
.x6c{left:188.017600pt;}
.x82{left:201.791867pt;}
.x52{left:203.291867pt;}
.x6d{left:210.684267pt;}
.x83{left:224.458533pt;}
.x53{left:225.958533pt;}
.x6e{left:233.350933pt;}
.x19{left:239.535191pt;}
.x1a{left:244.088879pt;}
.x84{left:247.125200pt;}
.x54{left:248.625200pt;}
.x6f{left:256.017600pt;}
.x98{left:261.913467pt;}
.x1b{left:262.866589pt;}
.x96{left:265.180000pt;}
.x85{left:269.791867pt;}
.x55{left:271.291867pt;}
.x70{left:278.684267pt;}
.x37{left:294.678667pt;}
.x71{left:301.350933pt;}
.x12{left:304.525333pt;}
.x18{left:312.444248pt;}
.x86{left:313.791867pt;}
.x1c{left:315.259028pt;}
.x56{left:316.625200pt;}
.x1f{left:320.951138pt;}
.x1d{left:324.804259pt;}
.x13{left:326.217905pt;}
.x1e{left:327.806691pt;}
.x20{left:328.907583pt;}
.x14{left:330.621471pt;}
.x15{left:334.824876pt;}
.x17{left:335.875727pt;}
.x21{left:336.864028pt;}
.x57{left:339.291867pt;}
.x16{left:340.867271pt;}
.x72{left:346.684267pt;}
.x87{left:347.925200pt;}
.x9c{left:359.005067pt;}
.x95{left:361.435733pt;}
.x9b{left:362.446000pt;}
.x88{left:366.357467pt;}
.x73{left:369.350933pt;}
.x89{left:379.157467pt;}
.x58{left:382.942533pt;}
.x74{left:392.017600pt;}
.x8a{left:397.589733pt;}
.x59{left:404.275867pt;}
.xa{left:408.188933pt;}
.x8b{left:410.389733pt;}
.x75{left:414.684267pt;}
.x5{left:415.748000pt;}
.x5a{left:425.609200pt;}
.x9{left:427.086533pt;}
.x8c{left:428.822000pt;}
.xf{left:434.645733pt;}
.x76{left:437.350933pt;}
.x22{left:438.397733pt;}
.x5b{left:448.275867pt;}
.x24{left:449.639467pt;}
.x8d{left:451.488667pt;}
.x94{left:457.722933pt;}
.x9a{left:458.658267pt;}
.x25{left:460.875249pt;}
.x5c{left:470.942533pt;}
.x26{left:472.111031pt;}
.x8e{left:474.155333pt;}
.x77{left:482.684267pt;}
.x10{left:487.910133pt;}
.x5d{left:493.609200pt;}
.x8f{left:496.822000pt;}
.x23{left:499.139200pt;}
.x78{left:505.350933pt;}
.x3{left:511.200800pt;}
.xd{left:512.339733pt;}
.x5e{left:516.275867pt;}
.x90{left:519.488667pt;}
.x27{left:521.626000pt;}
.x3c{left:524.568000pt;}
.x40{left:526.730533pt;}
.x79{left:528.017600pt;}
.x2a{left:532.882533pt;}
.x3a{left:537.441600pt;}
.x5f{left:538.942533pt;}
.x38{left:539.979067pt;}
.x3b{left:541.965333pt;}
.x2b{left:544.118315pt;}
.x6{left:548.314933pt;}
.x2c{left:555.350494pt;}
.x3e{left:558.998667pt;}
.x39{left:559.985333pt;}
.x60{left:561.609200pt;}
.x91{left:564.822000pt;}
.x29{left:571.152267pt;}
.x3f{left:576.097333pt;}
.x28{left:582.550400pt;}
.x61{left:584.275867pt;}
.x92{left:587.488667pt;}
.x2{left:591.482000pt;}
.x2d{left:593.967067pt;}
.x4b{left:597.798667pt;}
.x45{left:603.896667pt;}
.x2e{left:605.209733pt;}
.x62{left:606.942533pt;}
.x93{left:611.488667pt;}
.x31{left:616.618400pt;}
.x7a{left:627.249867pt;}
.x63{left:629.609200pt;}
.xe{left:632.997067pt;}
.x41{left:634.636533pt;}
.x30{left:643.647067pt;}
.x7b{left:649.916533pt;}
.x64{left:652.275867pt;}
.x42{left:653.514780pt;}
.x32{left:654.883200pt;}
.x43{left:662.953903pt;}
.x33{left:666.118982pt;}
.x44{left:672.393026pt;}
.x65{left:674.942533pt;}
.x2f{left:681.907333pt;}
.x46{left:691.733484pt;}
.x34{left:693.149067pt;}
.x7c{left:695.249867pt;}
.x66{left:697.609200pt;}
.x47{left:701.209842pt;}
.x35{left:704.387067pt;}
.x48{left:710.686201pt;}
.x7d{left:717.916533pt;}
.x49{left:720.162559pt;}
.x4a{left:729.638917pt;}
}




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