
    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_55f2401d116c211fcaa32b39.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989746;font-style:normal;font-weight: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_1c55d7e1bb0ff367786f2a91.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.989746;font-style:normal;font-weight: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_40a3e3fc0e3ba46968d7cc35.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.159668;font-style:normal;font-weight: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_e100a7c1a52e3ed9a92a5726.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.166992;font-style:normal;font-weight: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_3bc87b1afca31ea6b900ef37.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.990234;font-style:normal;font-weight: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_137470bcc11354c72a8b89e6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.160156;font-style:normal;font-weight: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_48b31ce4f3efe62ad55bc9a4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.766602;font-style:normal;font-weight: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_c6ad28a304e335dad036ea4d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.875000;font-style:normal;font-weight: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_40a3e3fc0e3ba46968d7cc35.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.159668;font-style:normal;font-weight: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_1c55d7e1bb0ff367786f2a91.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.989746;font-style:normal;font-weight: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_79f9926ad60cb6d4f671d889.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.869629;font-style:normal;font-weight: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_91324e93dfe97b0ce66c0f58.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c9a33d41464e7a2502b933a2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.900391;font-style:normal;font-weight: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_e48df45ebcb81fe139deeeb5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.898438;font-style:normal;font-weight: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_965d3c2a5aac3a389cd78d58.woff2')format("woff");}.fff{font-family:fff;line-height:0.778809;font-style:normal;font-weight: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_d8d5ca1e4d233fd8dff645c7.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.778809;font-style:normal;font-weight: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_c6ec87c12d0d9369eea27a6d.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.011230;font-style:normal;font-weight: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_93b2afb7fd1e2081064787fb.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.011230;font-style:normal;font-weight: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_f1622bafeeeb5c6b37f85deb.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_c6103bf9c950158d793f90fb.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.898438;font-style:normal;font-weight: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_54a1f722adbd72f25cd67544.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.900391;font-style:normal;font-weight: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_72c40b84430764022455e435.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.898438;font-style:normal;font-weight: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_d5ee158bb431727aa143ed1a.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.159668;font-style:normal;font-weight: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_1c55d7e1bb0ff367786f2a91.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.989746;font-style:normal;font-weight: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_6d7b5b4f1a37cfc1ee182465.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.696777;font-style:normal;font-weight: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_66faf6cac062f684ffe2707b.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.696777;font-style:normal;font-weight: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_a9b13f54e6de5fb22c825cf1.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.869629;font-style:normal;font-weight: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_79f9926ad60cb6d4f671d889.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.869629;font-style:normal;font-weight: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_2e4b473f876f08e4d75c9ae6.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.900391;font-style:normal;font-weight: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_1c55d7e1bb0ff367786f2a91.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.989746;font-style:normal;font-weight: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_d5ee158bb431727aa143ed1a.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.159668;font-style:normal;font-weight: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_12778db91e63f51d12bc6c21.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_79f9926ad60cb6d4f671d889.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.869629;font-style:normal;font-weight: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_47d3b639932b98707eb84b5c.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.696777;font-style:normal;font-weight: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_66faf6cac062f684ffe2707b.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.696777;font-style:normal;font-weight: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_f3c3cce131a95deaed7e6ced.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_ba2719890f945adeb964e4cc.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.869629;font-style:normal;font-weight: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_7a7f558a7ed534e02d42fb2c.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.869629;font-style:normal;font-weight: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_30913c40c0545d69ebe9df8b.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.900391;font-style:normal;font-weight: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_17340a449b94bebd9dba831f.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.159668;font-style:normal;font-weight: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_2cc06a7cd2169626d5073143.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.696777;font-style:normal;font-weight: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_a914b4e26f7ff59da2e6018e.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.696777;font-style:normal;font-weight: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_a407f4852291491322a7c32c.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.869629;font-style:normal;font-weight: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_39a1e923137c7a0618271d7e.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.869629;font-style:normal;font-weight: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_518b22293d8a5b6bcad979a7.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.821777;font-style:normal;font-weight: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_0486055551683430283a1b74.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.900391;font-style:normal;font-weight: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_c6103bf9c950158d793f90fb.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.898438;font-style:normal;font-weight: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_b666c11ee3033b2645f0a219.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_79f9926ad60cb6d4f671d889.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.869629;font-style:normal;font-weight: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_fece12848d405571814bef9d.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.869629;font-style:normal;font-weight: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_0486055551683430283a1b74.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.900391;font-style:normal;font-weight: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_c6103bf9c950158d793f90fb.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.898438;font-style:normal;font-weight: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_cec795566a3ec5f23cc3c153.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_1c55d7e1bb0ff367786f2a91.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.989746;font-style:normal;font-weight: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_979fd69e526c3dd87313cadc.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.159668;font-style:normal;font-weight: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_368fbf64cca8a75ec72e70ee.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.159668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.780600px;}
.v5{vertical-align:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.780000px;}
.v1{vertical-align:23.760600px;}
.v4{vertical-align:60.000000px;}
.ls45{letter-spacing:-4.422000px;}
.lsb{letter-spacing:-4.224000px;}
.ls12{letter-spacing:-3.762000px;}
.ls16{letter-spacing:-2.772000px;}
.ls82{letter-spacing:-2.508000px;}
.ls14{letter-spacing:-2.475000px;}
.ls1a{letter-spacing:-2.277000px;}
.ls3{letter-spacing:-2.100000px;}
.ls13{letter-spacing:-1.980000px;}
.ls18{letter-spacing:-1.930500px;}
.ls1b{letter-spacing:-1.848000px;}
.ls6e{letter-spacing:-1.831500px;}
.ls7f{letter-spacing:-1.716000px;}
.ls40{letter-spacing:-1.616512px;}
.ls1d{letter-spacing:-1.518000px;}
.ls1f{letter-spacing:-1.485000px;}
.ls15{letter-spacing:-1.336500px;}
.ls7c{letter-spacing:-1.320000px;}
.ls5a{letter-spacing:-1.254000px;}
.ls7b{letter-spacing:-1.188000px;}
.ls19{letter-spacing:-1.138500px;}
.ls1c{letter-spacing:-1.039500px;}
.lsa{letter-spacing:-0.858000px;}
.ls11{letter-spacing:-0.841500px;}
.lsd{letter-spacing:-0.726000px;}
.ls2c{letter-spacing:-0.720000px;}
.ls6d{letter-spacing:-0.594000px;}
.ls48{letter-spacing:-0.528000px;}
.ls46{letter-spacing:-0.495000px;}
.ls6{letter-spacing:-0.462000px;}
.ls4d{letter-spacing:-0.457134px;}
.lsc{letter-spacing:-0.396000px;}
.ls3c{letter-spacing:-0.392928px;}
.ls37{letter-spacing:-0.389611px;}
.ls3b{letter-spacing:-0.342896px;}
.ls39{letter-spacing:-0.340003px;}
.lsf{letter-spacing:-0.330000px;}
.ls4c{letter-spacing:-0.319994px;}
.ls60{letter-spacing:-0.319447px;}
.ls41{letter-spacing:-0.293911px;}
.ls49{letter-spacing:-0.280377px;}
.ls32{letter-spacing:-0.270000px;}
.ls26{letter-spacing:-0.264000px;}
.ls5e{letter-spacing:-0.249362px;}
.ls70{letter-spacing:-0.235910px;}
.ls5f{letter-spacing:-0.213739px;}
.ls75{letter-spacing:-0.212645px;}
.ls6f{letter-spacing:-0.205871px;}
.ls5d{letter-spacing:-0.200848px;}
.ls36{letter-spacing:-0.198970px;}
.ls10{letter-spacing:-0.198000px;}
.ls3f{letter-spacing:-0.195941px;}
.ls3a{letter-spacing:-0.194287px;}
.ls74{letter-spacing:-0.185573px;}
.ls77{letter-spacing:-0.165778px;}
.ls23{letter-spacing:-0.148500px;}
.ls1{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.132000px;}
.ls2{letter-spacing:-0.108000px;}
.ls72{letter-spacing:-0.105094px;}
.ls76{letter-spacing:-0.094730px;}
.ls8{letter-spacing:-0.066000px;}
.ls80{letter-spacing:-0.049500px;}
.ls62{letter-spacing:-0.029041px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.002700px;}
.ls4{letter-spacing:0.003300px;}
.ls61{letter-spacing:0.058081px;}
.ls56{letter-spacing:0.071246px;}
.ls71{letter-spacing:0.078820px;}
.ls50{letter-spacing:0.080957px;}
.ls24{letter-spacing:0.099000px;}
.ls2e{letter-spacing:0.113206px;}
.ls55{letter-spacing:0.128554px;}
.ls17{letter-spacing:0.132000px;}
.ls73{letter-spacing:0.132903px;}
.ls4f{letter-spacing:0.137638px;}
.ls64{letter-spacing:0.139262px;}
.ls2d{letter-spacing:0.140250px;}
.ls5c{letter-spacing:0.143847px;}
.ls51{letter-spacing:0.174244px;}
.ls68{letter-spacing:0.185573px;}
.ls9{letter-spacing:0.198000px;}
.ls5b{letter-spacing:0.200848px;}
.ls54{letter-spacing:0.203284px;}
.ls66{letter-spacing:0.205871px;}
.ls42{letter-spacing:0.216772px;}
.ls4b{letter-spacing:0.229176px;}
.ls52{letter-spacing:0.232325px;}
.ls6b{letter-spacing:0.247500px;}
.ls7{letter-spacing:0.264000px;}
.ls44{letter-spacing:0.274280px;}
.ls2f{letter-spacing:0.291431px;}
.ls31{letter-spacing:0.293911px;}
.ls4a{letter-spacing:0.319994px;}
.ls6a{letter-spacing:0.330000px;}
.ls38{letter-spacing:0.340003px;}
.ls3d{letter-spacing:0.342896px;}
.ls25{letter-spacing:0.346500px;}
.ls33{letter-spacing:0.348197px;}
.ls34{letter-spacing:0.355493px;}
.ls63{letter-spacing:0.360000px;}
.ls4e{letter-spacing:0.365707px;}
.ls3e{letter-spacing:0.440867px;}
.ls35{letter-spacing:0.488803px;}
.ls21{letter-spacing:0.495000px;}
.ls84{letter-spacing:0.526500px;}
.ls20{letter-spacing:0.643500px;}
.ls83{letter-spacing:0.769500px;}
.ls1e{letter-spacing:0.792000px;}
.ls7e{letter-spacing:0.858000px;}
.ls78{letter-spacing:0.900000px;}
.ls7d{letter-spacing:0.924000px;}
.ls79{letter-spacing:0.990000px;}
.ls6c{letter-spacing:1.089000px;}
.ls22{letter-spacing:1.188000px;}
.ls81{letter-spacing:1.237500px;}
.ls7a{letter-spacing:1.254000px;}
.ls2b{letter-spacing:1.500000px;}
.ls47{letter-spacing:2.376000px;}
.ls43{letter-spacing:78.423900px;}
.ls30{letter-spacing:89.323540px;}
.ls67{letter-spacing:233.715686px;}
.ls69{letter-spacing:239.972141px;}
.ls53{letter-spacing:255.441118px;}
.ls65{letter-spacing:302.366266px;}
.ls27{letter-spacing:346.939200px;}
.ls57{letter-spacing:346.939800px;}
.ls58{letter-spacing:373.252200px;}
.ls28{letter-spacing:373.252800px;}
.ls2a{letter-spacing:373.560000px;}
.ls29{letter-spacing:383.711400px;}
.ls59{letter-spacing:448.706400px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(35,31,32),0 0.015em rgb(35,31,32),0.015em 0 rgb(35,31,32),0 -0.015em  rgb(35,31,32);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(35,31,32);text-shadow:none;}
}
.ws0{word-spacing:-21.450000px;}
.ws68{word-spacing:-20.460000px;}
.ws2{word-spacing:-19.584000px;}
.ws32{word-spacing:-19.272000px;}
.wsc4{word-spacing:-18.942000px;}
.wsa5{word-spacing:-18.480000px;}
.wscd{word-spacing:-18.414000px;}
.ws14{word-spacing:-18.348000px;}
.ws30{word-spacing:-18.282000px;}
.ws66{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.150000px;}
.ws87{word-spacing:-18.084000px;}
.wsf{word-spacing:-18.018000px;}
.ws36{word-spacing:-17.952000px;}
.wse{word-spacing:-17.754000px;}
.wsd{word-spacing:-17.688000px;}
.ws69{word-spacing:-17.556000px;}
.wsa9{word-spacing:-17.490000px;}
.wscf{word-spacing:-15.576000px;}
.ws89{word-spacing:-14.850000px;}
.ws3{word-spacing:-14.796000px;}
.wsa8{word-spacing:-14.701500px;}
.ws1{word-spacing:-14.688000px;}
.ws2e{word-spacing:-14.404500px;}
.wsa7{word-spacing:-14.256000px;}
.ws31{word-spacing:-14.107500px;}
.ws35{word-spacing:-13.959000px;}
.wsa6{word-spacing:-13.860000px;}
.ws34{word-spacing:-13.711500px;}
.wscc{word-spacing:-13.612500px;}
.ws42{word-spacing:-13.563000px;}
.ws33{word-spacing:-13.464000px;}
.ws50{word-spacing:-13.438200px;}
.wsce{word-spacing:-13.414500px;}
.ws67{word-spacing:-13.117500px;}
.ws10{word-spacing:-12.771000px;}
.ws6a{word-spacing:-12.673040px;}
.ws2d{word-spacing:-12.573000px;}
.ws55{word-spacing:-12.540211px;}
.ws17{word-spacing:-12.474000px;}
.ws4b{word-spacing:-12.434381px;}
.wsc3{word-spacing:-12.424500px;}
.ws15{word-spacing:-12.276000px;}
.ws5c{word-spacing:-12.246300px;}
.ws52{word-spacing:-12.142950px;}
.ws2f{word-spacing:-12.127500px;}
.ws4f{word-spacing:-11.948663px;}
.ws53{word-spacing:-11.903404px;}
.ws54{word-spacing:-11.886072px;}
.wsd1{word-spacing:-11.866500px;}
.ws4c{word-spacing:-11.785739px;}
.wsaa{word-spacing:-11.781000px;}
.ws75{word-spacing:-11.702630px;}
.ws16{word-spacing:-11.682000px;}
.ws12{word-spacing:-11.632500px;}
.wsd2{word-spacing:-11.623500px;}
.ws18{word-spacing:-11.335500px;}
.ws13{word-spacing:-11.137500px;}
.ws6b{word-spacing:-11.108356px;}
.ws5d{word-spacing:-10.629788px;}
.ws11{word-spacing:-9.850500px;}
.ws8a{word-spacing:-8.050843px;}
.ws8f{word-spacing:-7.492475px;}
.ws8c{word-spacing:-7.434394px;}
.wsab{word-spacing:-7.146679px;}
.wsac{word-spacing:-7.136290px;}
.ws88{word-spacing:-6.972302px;}
.ws8b{word-spacing:-6.940703px;}
.ws8d{word-spacing:-6.737419px;}
.ws8e{word-spacing:-6.563176px;}
.wsb0{word-spacing:-6.442027px;}
.ws26{word-spacing:-5.742000px;}
.ws77{word-spacing:-4.020000px;}
.wsf4{word-spacing:-2.970000px;}
.ws2a{word-spacing:-2.838000px;}
.ws41{word-spacing:-2.700000px;}
.wse6{word-spacing:-2.646000px;}
.ws2c{word-spacing:-2.508000px;}
.wse4{word-spacing:-2.430000px;}
.wsb3{word-spacing:-1.914000px;}
.ws93{word-spacing:-1.860000px;}
.wsf1{word-spacing:-1.836000px;}
.ws7c{word-spacing:-1.716000px;}
.ws7d{word-spacing:-1.560000px;}
.wsf6{word-spacing:-1.404000px;}
.wsc8{word-spacing:-1.254000px;}
.wsed{word-spacing:-1.080000px;}
.wsc7{word-spacing:-0.990000px;}
.wsca{word-spacing:-0.924000px;}
.wsdc{word-spacing:-0.810000px;}
.ws3a{word-spacing:-0.643500px;}
.ws84{word-spacing:-0.455306px;}
.ws61{word-spacing:-0.397939px;}
.ws9c{word-spacing:-0.391855px;}
.ws86{word-spacing:-0.365707px;}
.wsa4{word-spacing:-0.360000px;}
.ws90{word-spacing:-0.348487px;}
.ws60{word-spacing:-0.348197px;}
.wsa3{word-spacing:-0.321384px;}
.ws81{word-spacing:-0.319994px;}
.wsa1{word-spacing:-0.290406px;}
.ws98{word-spacing:-0.286926px;}
.wsbe{word-spacing:-0.265806px;}
.ws19{word-spacing:-0.264000px;}
.ws82{word-spacing:-0.229176px;}
.ws46{word-spacing:-0.216000px;}
.wsbd{word-spacing:-0.212083px;}
.wsb5{word-spacing:-0.205871px;}
.ws96{word-spacing:-0.200848px;}
.ws1b{word-spacing:-0.198000px;}
.wsba{word-spacing:-0.185573px;}
.ws97{word-spacing:-0.143847px;}
.wsc1{word-spacing:-0.142096px;}
.wsb9{word-spacing:-0.132903px;}
.ws28{word-spacing:-0.132000px;}
.wseb{word-spacing:-0.108000px;}
.wsb8{word-spacing:-0.078820px;}
.ws9a{word-spacing:-0.071246px;}
.ws5{word-spacing:-0.066000px;}
.ws9f{word-spacing:-0.058081px;}
.ws6{word-spacing:0.000000px;}
.wsa0{word-spacing:0.029041px;}
.wsbf{word-spacing:0.053021px;}
.ws92{word-spacing:0.060000px;}
.ws1a{word-spacing:0.066000px;}
.ws85{word-spacing:0.091427px;}
.ws63{word-spacing:0.099485px;}
.ws83{word-spacing:0.101179px;}
.ws9d{word-spacing:0.106870px;}
.ws8{word-spacing:0.108000px;}
.wsb4{word-spacing:0.108230px;}
.ws22{word-spacing:0.132000px;}
.ws7{word-spacing:0.144000px;}
.wsa2{word-spacing:0.160692px;}
.wsc2{word-spacing:0.165778px;}
.wsbc{word-spacing:0.185573px;}
.ws24{word-spacing:0.198000px;}
.ws62{word-spacing:0.198970px;}
.wsc0{word-spacing:0.212645px;}
.ws9b{word-spacing:0.213739px;}
.wsd8{word-spacing:0.216000px;}
.wsb7{word-spacing:0.235910px;}
.wsc5{word-spacing:0.264000px;}
.ws5f{word-spacing:0.270000px;}
.ws7f{word-spacing:0.280377px;}
.ws99{word-spacing:0.324000px;}
.ws25{word-spacing:0.330000px;}
.ws65{word-spacing:0.342896px;}
.ws9e{word-spacing:0.377528px;}
.ws23{word-spacing:0.396000px;}
.ws21{word-spacing:0.462000px;}
.ws47{word-spacing:0.720000px;}
.ws20{word-spacing:0.726000px;}
.wsf2{word-spacing:0.810000px;}
.ws1c{word-spacing:0.858000px;}
.wsbb{word-spacing:1.113437px;}
.wsb6{word-spacing:1.235228px;}
.wse7{word-spacing:1.242000px;}
.ws95{word-spacing:1.254000px;}
.wse8{word-spacing:1.296000px;}
.wsc9{word-spacing:1.320000px;}
.ws38{word-spacing:1.518000px;}
.wsd0{word-spacing:1.716000px;}
.ws29{word-spacing:1.848000px;}
.wsc{word-spacing:2.100000px;}
.wsf5{word-spacing:2.160000px;}
.wsdf{word-spacing:2.592000px;}
.ws64{word-spacing:2.596216px;}
.ws27{word-spacing:2.772000px;}
.ws7b{word-spacing:2.904000px;}
.ws2b{word-spacing:3.036000px;}
.ws3c{word-spacing:3.366000px;}
.wsb{word-spacing:3.630000px;}
.ws44{word-spacing:3.840000px;}
.wsf0{word-spacing:3.996000px;}
.wsdb{word-spacing:4.104000px;}
.wsf7{word-spacing:4.212000px;}
.ws1d{word-spacing:4.224000px;}
.wsd3{word-spacing:4.290000px;}
.wsda{word-spacing:4.320000px;}
.ws78{word-spacing:4.422000px;}
.wse0{word-spacing:4.752000px;}
.wsd5{word-spacing:5.280000px;}
.ws7e{word-spacing:5.346000px;}
.ws3e{word-spacing:6.072000px;}
.wsd7{word-spacing:6.102000px;}
.wsf3{word-spacing:6.426000px;}
.wse2{word-spacing:6.480000px;}
.wse1{word-spacing:6.534000px;}
.ws1f{word-spacing:6.666000px;}
.wsd9{word-spacing:6.966000px;}
.wse5{word-spacing:7.074000px;}
.wse9{word-spacing:7.398000px;}
.ws79{word-spacing:7.500000px;}
.ws80{word-spacing:8.018782px;}
.wsef{word-spacing:8.100000px;}
.wsec{word-spacing:8.316000px;}
.wsdd{word-spacing:8.478000px;}
.ws3f{word-spacing:8.700000px;}
.ws1e{word-spacing:9.174000px;}
.wsde{word-spacing:9.342000px;}
.wsa{word-spacing:9.504000px;}
.ws40{word-spacing:9.834000px;}
.ws3d{word-spacing:10.428000px;}
.ws39{word-spacing:11.352000px;}
.wse3{word-spacing:11.664000px;}
.ws7a{word-spacing:12.000000px;}
.wsee{word-spacing:12.420000px;}
.wsc6{word-spacing:13.134000px;}
.wsea{word-spacing:15.012000px;}
.ws3b{word-spacing:15.444000px;}
.ws45{word-spacing:16.380000px;}
.wsd4{word-spacing:16.566000px;}
.wsd6{word-spacing:19.710000px;}
.ws37{word-spacing:21.450000px;}
.wscb{word-spacing:26.700000px;}
.ws94{word-spacing:30.240000px;}
.ws4a{word-spacing:31.887704px;}
.ws49{word-spacing:32.283190px;}
.ws4e{word-spacing:41.383174px;}
.ws48{word-spacing:44.258854px;}
.ws5a{word-spacing:46.780866px;}
.ws59{word-spacing:47.221733px;}
.ws5b{word-spacing:47.319703px;}
.ws70{word-spacing:48.974905px;}
.ws73{word-spacing:49.188212px;}
.ws72{word-spacing:49.188812px;}
.ws6c{word-spacing:49.239212px;}
.ws6e{word-spacing:49.340612px;}
.ws6f{word-spacing:50.874022px;}
.ws6d{word-spacing:50.935595px;}
.ws71{word-spacing:51.026422px;}
.ws74{word-spacing:51.027022px;}
.wsae{word-spacing:53.632364px;}
.wsaf{word-spacing:60.590527px;}
.ws4d{word-spacing:63.920489px;}
.ws5e{word-spacing:68.732294px;}
.ws58{word-spacing:69.754925px;}
.ws57{word-spacing:70.048836px;}
.ws56{word-spacing:83.323825px;}
.ws9{word-spacing:199.500000px;}
.wsb1{word-spacing:219.797726px;}
.wsb2{word-spacing:226.107202px;}
.ws51{word-spacing:239.557492px;}
.ws91{word-spacing:240.223843px;}
.wsad{word-spacing:286.984732px;}
.ws43{word-spacing:307.392000px;}
.ws76{word-spacing:547.507171px;}
._2{margin-left:-2985.191400px;}
._0{margin-left:-84.084000px;}
._56{margin-left:-12.157200px;}
._c{margin-left:-10.776000px;}
._15{margin-left:-9.345600px;}
._3{margin-left:-7.784700px;}
._4{margin-left:-6.521700px;}
._11{margin-left:-5.249400px;}
._d{margin-left:-3.372600px;}
._14{margin-left:-2.270400px;}
._1{margin-left:-1.200000px;}
._8{width:1.940400px;}
._21{width:2.943000px;}
._9{width:3.946800px;}
._6{width:5.742000px;}
._13{width:7.056600px;}
._5{width:8.316000px;}
._7{width:9.655800px;}
._e{width:10.685400px;}
._a{width:11.864400px;}
._b{width:13.796400px;}
._16{width:15.241200px;}
._1e{width:16.683600px;}
._44{width:19.125600px;}
._10{width:20.552400px;}
._f{width:21.693000px;}
._24{width:23.080200px;}
._17{width:24.096600px;}
._2d{width:25.441800px;}
._12{width:27.027000px;}
._1a{width:28.812000px;}
._1d{width:29.982000px;}
._3e{width:31.967690px;}
._2f{width:33.150600px;}
._20{width:34.287000px;}
._26{width:35.778600px;}
._27{width:37.757400px;}
._28{width:39.200400px;}
._29{width:40.798200px;}
._19{width:42.510600px;}
._18{width:43.639200px;}
._2a{width:45.393600px;}
._2b{width:46.917300px;}
._57{width:48.319800px;}
._2c{width:49.498800px;}
._1b{width:51.077400px;}
._1c{width:52.101000px;}
._25{width:53.424000px;}
._22{width:55.123200px;}
._23{width:56.641200px;}
._4c{width:57.677400px;}
._2e{width:58.771800px;}
._58{width:59.823000px;}
._1f{width:61.485600px;}
._30{width:63.702000px;}
._3d{width:66.477154px;}
._43{width:70.293762px;}
._5b{width:71.973000px;}
._53{width:73.827600px;}
._54{width:74.868000px;}
._5a{width:78.103200px;}
._59{width:92.458200px;}
._52{width:96.215400px;}
._4b{width:97.986600px;}
._42{width:107.816425px;}
._35{width:179.400000px;}
._3f{width:181.892928px;}
._4e{width:199.272000px;}
._31{width:200.426400px;}
._50{width:205.735800px;}
._32{width:206.832600px;}
._38{width:215.040600px;}
._4f{width:218.442000px;}
._34{width:226.676400px;}
._37{width:227.798400px;}
._3a{width:235.713000px;}
._51{width:239.892000px;}
._39{width:272.784000px;}
._3b{width:279.672000px;}
._33{width:338.130000px;}
._36{width:343.526400px;}
._4a{width:360.122058px;}
._49{width:367.442089px;}
._48{width:442.177611px;}
._4d{width:456.686357px;}
._47{width:460.011724px;}
._55{width:462.495043px;}
._46{width:475.182686px;}
._45{width:718.876360px;}
._40{width:761.100900px;}
._41{width:767.578800px;}
._3c{width:779.443950px;}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc2{color:rgb(0,173,239);}
.fc0{color:transparent;}
.fs28{font-size:23.682600px;}
.fs23{font-size:26.273400px;}
.fs26{font-size:26.510400px;}
.fs27{font-size:26.580600px;}
.fs19{font-size:28.692600px;}
.fs1a{font-size:28.769400px;}
.fs1d{font-size:29.040600px;}
.fs22{font-size:29.410200px;}
.fs21{font-size:29.488800px;}
.fs1e{font-size:32.138400px;}
.fs24{font-size:32.519400px;}
.fs18{font-size:35.196600px;}
.fs25{font-size:35.346600px;}
.fs1c{font-size:35.623200px;}
.fs20{font-size:36.076800px;}
.fs17{font-size:38.257200px;}
.fs1b{font-size:38.721000px;}
.fs1f{font-size:39.213600px;}
.fs29{font-size:40.500000px;}
.fsa{font-size:44.436600px;}
.fs14{font-size:45.713400px;}
.fs15{font-size:45.835200px;}
.fsc{font-size:48.571800px;}
.fsd{font-size:48.701400px;}
.fs10{font-size:48.985200px;}
.fs11{font-size:49.116000px;}
.fs5{font-size:49.500000px;}
.fs9{font-size:49.742400px;}
.fs16{font-size:50.589600px;}
.fse{font-size:53.752800px;}
.fs4{font-size:54.000000px;}
.fs13{font-size:56.075400px;}
.fs1{font-size:60.000000px;}
.fs12{font-size:60.951600px;}
.fs7{font-size:61.017600px;}
.fsb{font-size:64.762800px;}
.fsf{font-size:65.313600px;}
.fs6{font-size:66.000000px;}
.fs8{font-size:66.323400px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.y16b{bottom:-307.000050px;}
.y16a{bottom:-287.010750px;}
.y17d{bottom:-207.189150px;}
.y17e{bottom:-196.628700px;}
.y17f{bottom:-186.068100px;}
.y18d{bottom:-177.061800px;}
.y180{bottom:-175.507650px;}
.y181{bottom:-164.955000px;}
.y182{bottom:-154.394550px;}
.y183{bottom:-143.833950px;}
.y184{bottom:-133.273500px;}
.y185{bottom:-122.712900px;}
.y186{bottom:-112.160400px;}
.y187{bottom:-101.599950px;}
.y188{bottom:-91.039350px;}
.yd6{bottom:-84.670800px;}
.y189{bottom:-80.478900px;}
.yae{bottom:-72.186450px;}
.y18a{bottom:-69.918300px;}
.y9e{bottom:-62.049450px;}
.y18b{bottom:-59.365800px;}
.yc0{bottom:-53.794500px;}
.y1c4{bottom:-50.645100px;}
.yd5{bottom:-49.014150px;}
.y18c{bottom:-48.805350px;}
.y140{bottom:-45.150300px;}
.yad{bottom:-37.538400px;}
.y1c3{bottom:-32.312850px;}
.y9d{bottom:-30.048450px;}
.y13f{bottom:-27.048150px;}
.y169{bottom:-23.858550px;}
.yd4{bottom:-23.389200px;}
.y1c2{bottom:-20.434350px;}
.y111{bottom:-18.515100px;}
.ybf{bottom:-18.361800px;}
.y13e{bottom:-15.334950px;}
.y159{bottom:-14.424900px;}
.y156{bottom:-14.424150px;}
.y1e7{bottom:-12.710550px;}
.yac{bottom:-5.319000px;}
.y168{bottom:-3.183900px;}
.y9c{bottom:-3.021600px;}
.y155{bottom:-2.807850px;}
.y158{bottom:-2.711850px;}
.y151{bottom:-2.710050px;}
.y153{bottom:-2.709750px;}
.y0{bottom:0.000000px;}
.y1c1{bottom:0.152850px;}
.y14f{bottom:0.210150px;}
.y110{bottom:1.474050px;}
.y13d{bottom:4.896750px;}
.y1{bottom:47.511450px;}
.y113{bottom:71.620200px;}
.y114{bottom:82.443750px;}
.y115{bottom:93.267300px;}
.y2b{bottom:93.949650px;}
.y49{bottom:95.360250px;}
.y99{bottom:96.825150px;}
.yd0{bottom:97.066200px;}
.y90{bottom:98.020200px;}
.y14c{bottom:99.457950px;}
.y271{bottom:100.508100px;}
.y8b{bottom:101.360250px;}
.y22d{bottom:101.785350px;}
.y116{bottom:104.074950px;}
.y123{bottom:104.808150px;}
.y135{bottom:109.756650px;}
.y166{bottom:112.645800px;}
.ycf{bottom:113.266200px;}
.y2a{bottom:113.449650px;}
.ybe{bottom:113.760000px;}
.y8f{bottom:114.220200px;}
.y19c{bottom:114.281400px;}
.y117{bottom:114.906450px;}
.y270{bottom:115.508100px;}
.y48{bottom:116.360250px;}
.y22c{bottom:116.785350px;}
.ycc{bottom:118.230900px;}
.y8a{bottom:122.360250px;}
.y118{bottom:125.730000px;}
.y8e{bottom:130.420200px;}
.y26f{bottom:130.508100px;}
.y22b{bottom:131.785350px;}
.yd1{bottom:133.486500px;}
.y19b{bottom:135.281400px;}
.y119{bottom:136.561500px;}
.y47{bottom:137.360250px;}
.y165{bottom:139.401900px;}
.yca{bottom:139.621200px;}
.yd3{bottom:141.944400px;}
.y89{bottom:143.360250px;}
.y26e{bottom:145.508100px;}
.y22a{bottom:146.785350px;}
.ye4{bottom:147.010950px;}
.y11a{bottom:147.384900px;}
.y29{bottom:149.194650px;}
.ycb{bottom:153.241800px;}
.yc1{bottom:153.990150px;}
.y19a{bottom:156.281400px;}
.y11b{bottom:158.208450px;}
.y46{bottom:158.360250px;}
.y26d{bottom:160.508100px;}
.y229{bottom:161.785350px;}
.y88{bottom:164.360250px;}
.y164{bottom:166.158150px;}
.y11c{bottom:169.040100px;}
.ye2{bottom:170.172600px;}
.y28{bottom:170.194650px;}
.y26c{bottom:175.508100px;}
.y228{bottom:176.785350px;}
.y199{bottom:177.281400px;}
.y45{bottom:179.360250px;}
.y11d{bottom:179.847600px;}
.yd7{bottom:183.607350px;}
.y87{bottom:185.360250px;}
.yc2{bottom:188.438992px;}
.y26b{bottom:190.508100px;}
.y11e{bottom:190.671150px;}
.y27{bottom:191.194650px;}
.y227{bottom:191.785350px;}
.y163{bottom:192.914250px;}
.y198{bottom:198.281400px;}
.y44{bottom:200.360250px;}
.y11f{bottom:201.502650px;}
.y13c{bottom:205.496400px;}
.y26a{bottom:205.508100px;}
.y86{bottom:206.360250px;}
.y226{bottom:206.785350px;}
.yd8{bottom:208.292586px;}
.y120{bottom:212.326200px;}
.y26{bottom:216.446550px;}
.y197{bottom:219.281400px;}
.y269{bottom:220.508100px;}
.y43{bottom:221.360250px;}
.yc3{bottom:222.851095px;}
.y121{bottom:223.149750px;}
.y162{bottom:223.872900px;}
.ye7{bottom:225.358950px;}
.y85{bottom:227.360250px;}
.yd9{bottom:232.977822px;}
.y122{bottom:233.981250px;}
.y268{bottom:235.508100px;}
.y161{bottom:238.872900px;}
.y196{bottom:240.281400px;}
.y42{bottom:242.360250px;}
.ye3{bottom:243.860250px;}
.ye6{bottom:245.142750px;}
.y84{bottom:248.360250px;}
.y267{bottom:250.508100px;}
.yc4{bottom:257.275444px;}
.yda{bottom:257.663058px;}
.y195{bottom:261.281400px;}
.y41{bottom:263.360250px;}
.y10f{bottom:264.626250px;}
.ye5{bottom:264.913950px;}
.y266{bottom:265.508100px;}
.y25{bottom:266.950500px;}
.y160{bottom:267.323700px;}
.y8d{bottom:269.360250px;}
.y265{bottom:280.508100px;}
.y194{bottom:282.281400px;}
.ydb{bottom:282.348294px;}
.y4b{bottom:284.360250px;}
.y10e{bottom:285.301050px;}
.y24{bottom:287.950500px;}
.y83{bottom:290.360250px;}
.yc5{bottom:291.734250px;}
.y264{bottom:295.508100px;}
.y10c{bottom:302.856300px;}
.y193{bottom:303.281400px;}
.y139{bottom:303.414150px;}
.y40{bottom:305.360250px;}
.ydc{bottom:307.033530px;}
.y23{bottom:308.950500px;}
.y263{bottom:310.508100px;}
.y82{bottom:311.360250px;}
.yc9{bottom:315.691200px;}
.y138{bottom:319.614150px;}
.y10b{bottom:323.856300px;}
.y192{bottom:324.281400px;}
.y262{bottom:325.508100px;}
.yc6{bottom:326.160000px;}
.y3f{bottom:326.360250px;}
.ydd{bottom:331.718766px;}
.y81{bottom:332.360250px;}
.y137{bottom:335.814150px;}
.y261{bottom:340.508100px;}
.y10a{bottom:344.856300px;}
.y191{bottom:345.281400px;}
.y3e{bottom:347.360250px;}
.y1e4{bottom:347.532900px;}
.y136{bottom:352.014150px;}
.yd2{bottom:352.871550px;}
.y80{bottom:353.360250px;}
.y260{bottom:355.508100px;}
.yde{bottom:356.404500px;}
.yc7{bottom:360.572103px;}
.y1e3{bottom:364.146000px;}
.y109{bottom:365.856300px;}
.y190{bottom:366.281400px;}
.y10d{bottom:366.687000px;}
.y134{bottom:368.353500px;}
.y3d{bottom:368.360250px;}
.y25f{bottom:370.508100px;}
.y7f{bottom:374.360250px;}
.ycd{bottom:380.860350px;}
.ydf{bottom:381.086755px;}
.y22{bottom:384.706500px;}
.y25e{bottom:385.508100px;}
.y108{bottom:386.856300px;}
.y1bf{bottom:387.281400px;}
.y3c{bottom:389.360250px;}
.y13a{bottom:391.770150px;}
.yc8{bottom:394.996452px;}
.y7e{bottom:395.360250px;}
.y25d{bottom:400.508100px;}
.y21{bottom:405.706500px;}
.ye0{bottom:405.749850px;}
.y107{bottom:407.856300px;}
.y18f{bottom:408.281400px;}
.y3b{bottom:410.360250px;}
.y25c{bottom:415.508100px;}
.y7d{bottom:416.360250px;}
.y106{bottom:428.856300px;}
.y1be{bottom:429.281400px;}
.ye1{bottom:430.435086px;}
.y25b{bottom:430.508100px;}
.y3a{bottom:431.360250px;}
.y7c{bottom:437.360250px;}
.y98{bottom:437.478750px;}
.y222{bottom:443.488200px;}
.y25a{bottom:445.508100px;}
.y124{bottom:447.982650px;}
.y105{bottom:449.856300px;}
.y1bd{bottom:450.281400px;}
.y39{bottom:452.360250px;}
.yab{bottom:453.259500px;}
.y20{bottom:456.210450px;}
.y7b{bottom:458.360250px;}
.y125{bottom:458.541527px;}
.y221{bottom:459.688200px;}
.y259{bottom:460.508100px;}
.ybc{bottom:461.149350px;}
.y126{bottom:469.100404px;}
.y104{bottom:470.856300px;}
.y1bc{bottom:471.281400px;}
.y38{bottom:473.360250px;}
.y258{bottom:475.508100px;}
.y220{bottom:475.888200px;}
.y1f{bottom:477.210450px;}
.y7a{bottom:479.360250px;}
.y127{bottom:479.659280px;}
.yba{bottom:480.416250px;}
.y128{bottom:490.210984px;}
.y257{bottom:490.508100px;}
.y103{bottom:491.856300px;}
.y1bb{bottom:492.281400px;}
.y1e2{bottom:492.519000px;}
.y37{bottom:494.360250px;}
.yaf{bottom:494.704500px;}
.y1e{bottom:498.210450px;}
.y1e6{bottom:498.280010px;}
.y79{bottom:500.360250px;}
.y224{bottom:500.407950px;}
.y129{bottom:500.769861px;}
.y213{bottom:501.760350px;}
.y256{bottom:505.508100px;}
.y211{bottom:510.619904px;}
.y12a{bottom:511.328738px;}
.y102{bottom:512.856300px;}
.y1ba{bottom:513.281400px;}
.y36{bottom:515.360250px;}
.y204{bottom:518.447100px;}
.y21f{bottom:518.637114px;}
.y1d{bottom:519.210450px;}
.y255{bottom:520.508100px;}
.yb0{bottom:520.957558px;}
.y78{bottom:521.360250px;}
.y12b{bottom:521.887614px;}
.y21e{bottom:525.428100px;}
.y205{bottom:528.872315px;}
.y12c{bottom:532.446491px;}
.y101{bottom:533.856300px;}
.y1b9{bottom:534.281400px;}
.y254{bottom:535.508100px;}
.y21d{bottom:535.678747px;}
.y35{bottom:536.360250px;}
.y206{bottom:539.297530px;}
.y1c{bottom:540.210450px;}
.y77{bottom:542.360250px;}
.y21c{bottom:542.446050px;}
.y12d{bottom:542.998195px;}
.yb1{bottom:547.259188px;}
.y207{bottom:549.722744px;}
.y253{bottom:550.508100px;}
.y21b{bottom:552.695214px;}
.y12e{bottom:553.557072px;}
.y100{bottom:554.856300px;}
.y1b8{bottom:555.281400px;}
.y212{bottom:556.570200px;}
.y34{bottom:557.360250px;}
.y21a{bottom:559.486200px;}
.y208{bottom:560.147959px;}
.y1b{bottom:561.210450px;}
.y76{bottom:563.360250px;}
.y12f{bottom:564.115948px;}
.y252{bottom:565.508100px;}
.y219{bottom:569.736997px;}
.y209{bottom:570.573174px;}
.yb2{bottom:573.560817px;}
.y130{bottom:574.674825px;}
.yff{bottom:575.856300px;}
.y1b7{bottom:576.281400px;}
.y218{bottom:576.504300px;}
.y33{bottom:578.360250px;}
.y97{bottom:579.937200px;}
.y251{bottom:580.508100px;}
.y20a{bottom:580.998389px;}
.y1a{bottom:582.210450px;}
.yce{bottom:584.360250px;}
.y131{bottom:585.233702px;}
.y20b{bottom:591.423604px;}
.y217{bottom:593.537100px;}
.ybb{bottom:593.912700px;}
.y250{bottom:595.508100px;}
.y132{bottom:595.785406px;}
.yfe{bottom:596.856300px;}
.y1b6{bottom:597.281400px;}
.y32{bottom:599.360250px;}
.yb3{bottom:599.862447px;}
.y20c{bottom:601.848818px;}
.y19{bottom:603.210450px;}
.y75{bottom:605.360250px;}
.y133{bottom:606.344283px;}
.y96{bottom:606.693300px;}
.y24f{bottom:610.508100px;}
.y216{bottom:610.562400px;}
.y20d{bottom:612.274033px;}
.yfd{bottom:617.856300px;}
.y1b5{bottom:618.281400px;}
.y31{bottom:620.360250px;}
.y20e{bottom:622.699248px;}
.y167{bottom:622.888500px;}
.y18{bottom:624.210450px;}
.y24e{bottom:625.508100px;}
.yb4{bottom:626.139791px;}
.y74{bottom:626.360250px;}
.y215{bottom:627.595200px;}
.y20f{bottom:633.124463px;}
.y95{bottom:633.449400px;}
.yfc{bottom:638.856300px;}
.y1b4{bottom:639.281400px;}
.y18e{bottom:640.085100px;}
.y24d{bottom:640.508100px;}
.y30{bottom:641.360250px;}
.y210{bottom:643.549678px;}
.y214{bottom:644.613300px;}
.y17{bottom:645.210450px;}
.y73{bottom:647.360250px;}
.y112{bottom:652.123500px;}
.yb5{bottom:652.404992px;}
.y24c{bottom:655.508100px;}
.yfb{bottom:659.856300px;}
.y94{bottom:660.205650px;}
.y1b3{bottom:660.281400px;}
.y2f{bottom:662.360250px;}
.y16{bottom:666.210450px;}
.y72{bottom:668.360250px;}
.y1e5{bottom:669.923100px;}
.y24b{bottom:670.508100px;}
.y1f7{bottom:673.391550px;}
.y223{bottom:673.888200px;}
.yb6{bottom:678.706621px;}
.yfa{bottom:680.856300px;}
.y1b2{bottom:681.281400px;}
.y1f5{bottom:682.338492px;}
.y2e{bottom:683.360250px;}
.y24a{bottom:685.508100px;}
.y15{bottom:687.210450px;}
.y71{bottom:689.360250px;}
.y1e8{bottom:690.122400px;}
.y93{bottom:691.164300px;}
.y16c{bottom:691.460400px;}
.y203{bottom:691.536150px;}
.y202{bottom:699.157950px;}
.y249{bottom:700.508100px;}
.y1e9{bottom:700.586550px;}
.yf9{bottom:701.856300px;}
.y1b1{bottom:702.281400px;}
.y16d{bottom:702.284683px;}
.y2d{bottom:704.360250px;}
.yb7{bottom:704.983965px;}
.y92{bottom:706.164300px;}
.y14{bottom:708.210450px;}
.y201{bottom:708.560788px;}
.y70{bottom:710.360250px;}
.ybd{bottom:710.391000px;}
.y1ea{bottom:711.036000px;}
.y16e{bottom:713.107500px;}
.y248{bottom:715.508100px;}
.y200{bottom:716.175900px;}
.y1eb{bottom:721.494353px;}
.yf8{bottom:722.856300px;}
.y1b0{bottom:723.281400px;}
.y16f{bottom:723.915000px;}
.y17c{bottom:724.648350px;}
.y4a{bottom:725.360250px;}
.y1ff{bottom:725.581055px;}
.y1f6{bottom:728.510550px;}
.y13{bottom:729.210450px;}
.y247{bottom:730.508100px;}
.yb8{bottom:731.285595px;}
.y6f{bottom:731.360250px;}
.y1ec{bottom:731.959333px;}
.y1fe{bottom:733.216050px;}
.y91{bottom:734.614950px;}
.y170{bottom:734.746457px;}
.y1ed{bottom:742.424314px;}
.y1fd{bottom:742.612410px;}
.yf7{bottom:743.856300px;}
.y1af{bottom:744.281400px;}
.y246{bottom:745.508100px;}
.y171{bottom:745.570740px;}
.y2c{bottom:746.360250px;}
.y12{bottom:750.210450px;}
.y1fc{bottom:750.234150px;}
.y8c{bottom:752.360250px;}
.y1ee{bottom:752.889294px;}
.y172{bottom:756.402196px;}
.yb9{bottom:757.573200px;}
.y245{bottom:760.508100px;}
.y1ef{bottom:763.354274px;}
.yf6{bottom:764.856300px;}
.y1ae{bottom:765.281400px;}
.y173{bottom:767.226480px;}
.y1fb{bottom:767.266950px;}
.y11{bottom:771.210450px;}
.y6e{bottom:773.360250px;}
.y1f0{bottom:773.812627px;}
.y244{bottom:775.508100px;}
.y174{bottom:778.050763px;}
.y1f1{bottom:784.277608px;}
.y1fa{bottom:784.292250px;}
.yf5{bottom:785.856300px;}
.y9a{bottom:786.106200px;}
.y1ad{bottom:786.281400px;}
.y175{bottom:788.880300px;}
.y243{bottom:790.508100px;}
.y10{bottom:792.210450px;}
.y6d{bottom:794.360250px;}
.y1f2{bottom:794.742588px;}
.y9b{bottom:796.182000px;}
.y176{bottom:799.687800px;}
.y1f9{bottom:801.325050px;}
.y1f3{bottom:805.207568px;}
.ya9{bottom:805.499250px;}
.y242{bottom:805.508100px;}
.y5b{bottom:806.397000px;}
.yf4{bottom:806.856300px;}
.y177{bottom:810.512083px;}
.yf{bottom:813.210450px;}
.y6c{bottom:815.360250px;}
.y1f4{bottom:815.672549px;}
.y1f8{bottom:818.343150px;}
.y241{bottom:820.508100px;}
.y178{bottom:821.343540px;}
.y5a{bottom:827.397000px;}
.yf3{bottom:827.856300px;}
.y1ac{bottom:828.281400px;}
.y179{bottom:832.167823px;}
.ye{bottom:834.210450px;}
.y240{bottom:835.508100px;}
.ya7{bottom:835.773150px;}
.y6b{bottom:836.360250px;}
.y1e1{bottom:839.091300px;}
.y17a{bottom:842.992107px;}
.y9f{bottom:848.747700px;}
.yf2{bottom:848.856300px;}
.y1ab{bottom:849.281400px;}
.y23f{bottom:850.508100px;}
.y17b{bottom:853.823563px;}
.yd{bottom:855.210450px;}
.y1e0{bottom:855.291300px;}
.y6a{bottom:857.360250px;}
.y23e{bottom:865.508100px;}
.yf1{bottom:869.856300px;}
.y1aa{bottom:870.281400px;}
.y1df{bottom:871.491300px;}
.y59{bottom:877.900950px;}
.y15f{bottom:878.195250px;}
.y69{bottom:878.360250px;}
.yc{bottom:880.462350px;}
.y23d{bottom:880.508100px;}
.y1de{bottom:887.691300px;}
.ya0{bottom:890.692979px;}
.yf0{bottom:890.856300px;}
.yaa{bottom:890.987400px;}
.y1a9{bottom:891.281400px;}
.y15e{bottom:894.395250px;}
.y23c{bottom:895.508100px;}
.y58{bottom:898.900950px;}
.y68{bottom:899.360250px;}
.yb{bottom:901.462350px;}
.y1c0{bottom:907.086000px;}
.y23b{bottom:910.508100px;}
.y15d{bottom:910.595250px;}
.yef{bottom:911.856300px;}
.y1a8{bottom:912.281400px;}
.y1d6{bottom:919.198950px;}
.ya8{bottom:919.313100px;}
.y57{bottom:919.900950px;}
.y67{bottom:920.360250px;}
.y23a{bottom:925.508100px;}
.y15c{bottom:926.795250px;}
.y1d4{bottom:928.890525px;}
.ya1{bottom:932.675564px;}
.yee{bottom:932.856300px;}
.y1a7{bottom:933.281400px;}
.y1c5{bottom:937.531350px;}
.y239{bottom:940.508100px;}
.y56{bottom:940.900950px;}
.y66{bottom:941.360250px;}
.y15b{bottom:942.995250px;}
.y1c6{bottom:951.476550px;}
.yed{bottom:953.856300px;}
.y1a6{bottom:954.281400px;}
.y238{bottom:955.508100px;}
.y15a{bottom:959.195250px;}
.y55{bottom:961.900950px;}
.y65{bottom:962.360250px;}
.y1c7{bottom:965.431690px;}
.y237{bottom:970.508100px;}
.y13b{bottom:973.249500px;}
.ya2{bottom:974.620843px;}
.yec{bottom:974.856300px;}
.y1d9{bottom:975.262403px;}
.y1a5{bottom:975.281400px;}
.y14b{bottom:978.960000px;}
.y1c8{bottom:979.394182px;}
.y54{bottom:982.900950px;}
.y225{bottom:983.006250px;}
.y64{bottom:983.360250px;}
.y14d{bottom:984.188400px;}
.y1d8{bottom:985.102350px;}
.y236{bottom:985.508100px;}
.ya{bottom:986.558100px;}
.y1c9{bottom:993.356675px;}
.y14a{bottom:995.553528px;}
.yeb{bottom:995.856300px;}
.y1a4{bottom:996.281400px;}
.y1da{bottom:1002.392156px;}
.y53{bottom:1003.900950px;}
.y63{bottom:1004.360250px;}
.y272{bottom:1004.633250px;}
.y1d5{bottom:1005.232050px;}
.y1ca{bottom:1007.319167px;}
.y9{bottom:1009.560000px;}
.ya3{bottom:1016.566122px;}
.yea{bottom:1016.856300px;}
.y1a3{bottom:1017.281400px;}
.y157{bottom:1019.676000px;}
.y1cb{bottom:1021.281660px;}
.y52{bottom:1024.900950px;}
.y62{bottom:1025.360250px;}
.y1db{bottom:1027.763166px;}
.y141{bottom:1030.960200px;}
.y8{bottom:1032.562050px;}
.y235{bottom:1034.308200px;}
.y142{bottom:1034.566200px;}
.y1cc{bottom:1035.236800px;}
.ye9{bottom:1037.856300px;}
.y1a2{bottom:1038.281400px;}
.y1dc{bottom:1043.312267px;}
.y51{bottom:1045.900950px;}
.y61{bottom:1046.360250px;}
.y1cd{bottom:1049.199292px;}
.y234{bottom:1049.308200px;}
.y154{bottom:1049.781000px;}
.y7{bottom:1055.564100px;}
.ya4{bottom:1058.548708px;}
.y1a1{bottom:1059.281400px;}
.y1ce{bottom:1063.161784px;}
.y144{bottom:1064.260500px;}
.y143{bottom:1064.744550px;}
.y50{bottom:1066.900950px;}
.y60{bottom:1067.360250px;}
.y6{bottom:1073.120850px;}
.y233{bottom:1073.360100px;}
.y1cf{bottom:1077.124277px;}
.y152{bottom:1079.425500px;}
.ye8{bottom:1079.856300px;}
.y1a0{bottom:1080.281400px;}
.y4f{bottom:1087.900950px;}
.y232{bottom:1088.360100px;}
.y5f{bottom:1088.360250px;}
.y145{bottom:1090.365000px;}
.y1d0{bottom:1091.086769px;}
.y146{bottom:1093.381950px;}
.y5{bottom:1094.120850px;}
.ya5{bottom:1100.493986px;}
.y19f{bottom:1101.281400px;}
.y231{bottom:1103.360100px;}
.y1d1{bottom:1105.030650px;}
.y150{bottom:1107.595500px;}
.y4e{bottom:1108.900950px;}
.y5e{bottom:1109.360250px;}
.y1d2{bottom:1118.976000px;}
.y147{bottom:1121.245050px;}
.y230{bottom:1121.360100px;}
.y148{bottom:1121.922600px;}
.y19e{bottom:1122.281400px;}
.y1d7{bottom:1123.526400px;}
.y4{bottom:1123.624950px;}
.y4d{bottom:1129.900950px;}
.y5d{bottom:1130.360250px;}
.y1d3{bottom:1132.938492px;}
.y1dd{bottom:1133.991304px;}
.y14e{bottom:1135.878000px;}
.y22f{bottom:1136.360100px;}
.ya6{bottom:1142.439265px;}
.y19d{bottom:1143.281400px;}
.y149{bottom:1145.671650px;}
.y3{bottom:1147.624950px;}
.y4c{bottom:1150.900950px;}
.y22e{bottom:1151.360100px;}
.y5c{bottom:1151.360250px;}
.y2{bottom:1188.134700px;}
.h3d{height:-37.767000px;}
.h2c{height:-33.862500px;}
.h3a{height:5.634000px;}
.h3b{height:5.710500px;}
.h39{height:5.712000px;}
.h38{height:11.617500px;}
.h4d{height:16.443680px;}
.h4b{height:18.148233px;}
.h4c{height:18.196290px;}
.h45{height:18.242566px;}
.h49{height:18.407123px;}
.h4a{height:18.455866px;}
.h2f{height:19.445961px;}
.h2d{height:19.922303px;}
.h2e{height:19.975628px;}
.h35{height:20.078852px;}
.h43{height:20.133350px;}
.h34{height:20.163932px;}
.h44{height:20.187157px;}
.h42{height:20.420559px;}
.h41{height:20.475134px;}
.h37{height:22.000995px;}
.h47{height:22.484116px;}
.h2b{height:24.335149px;}
.h48{height:24.542415px;}
.h33{height:24.630103px;}
.h40{height:24.943725px;}
.h2a{height:25.498573px;}
.h32{height:26.885382px;}
.h3f{height:27.227412px;}
.h15{height:30.853928px;}
.h26{height:31.740456px;}
.h27{height:31.825027px;}
.h22{height:33.533814px;}
.h1a{height:33.725146px;}
.h1b{height:33.815132px;}
.h20{height:34.012185px;}
.h16{height:34.052170px;}
.h21{height:34.103004px;}
.h14{height:34.537936px;}
.h28{height:34.632138px;}
.h1c{height:36.430120px;}
.h1d{height:36.797571px;}
.h25{height:38.770882px;}
.h6{height:39.256509px;}
.h7{height:39.257109px;}
.hf{height:40.763672px;}
.h12{height:42.187950px;}
.h24{height:42.320886px;}
.h18{height:44.967139px;}
.h8{height:45.292969px;}
.h1f{height:45.349580px;}
.h13{height:46.050720px;}
.h19{height:47.275579px;}
.hb{height:49.822266px;}
.he{height:49.939453px;}
.hd{height:50.308594px;}
.h3{height:55.488281px;}
.hc{height:55.898438px;}
.h2{height:58.880859px;}
.ha{height:61.037109px;}
.h9{height:61.488281px;}
.h5{height:66.585938px;}
.h4{height:78.257812px;}
.h10{height:115.898438px;}
.h36{height:183.765000px;}
.h31{height:189.475500px;}
.h3e{height:240.433500px;}
.h3c{height:241.947000px;}
.h30{height:249.052500px;}
.h29{height:251.574000px;}
.h1e{height:311.862000px;}
.h17{height:320.598000px;}
.h46{height:336.426000px;}
.h23{height:339.003000px;}
.h11{height:366.544500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wb{width:15.681000px;}
.wc{width:15.702000px;}
.wa{width:30.976500px;}
.w8{width:352.975500px;}
.w9{width:353.262000px;}
.wd{width:354.487500px;}
.w7{width:361.041000px;}
.wf{width:361.843500px;}
.we{width:362.268000px;}
.w5{width:617.215500px;}
.w6{width:627.873000px;}
.w2{width:665.694000px;}
.w3{width:667.134000px;}
.w4{width:672.811500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x32{left:-8.247900px;}
.x50{left:-7.022400px;}
.x3b{left:-3.646350px;}
.x45{left:-2.407350px;}
.x0{left:0.000000px;}
.x49{left:5.807550px;}
.x59{left:7.087200px;}
.x35{left:8.451300px;}
.x34{left:12.391800px;}
.x57{left:13.617300px;}
.x2a{left:14.635650px;}
.x11{left:15.925650px;}
.x56{left:17.195850px;}
.x33{left:19.564950px;}
.x55{left:20.790450px;}
.x24{left:41.638350px;}
.xe{left:71.126700px;}
.x3{left:72.283500px;}
.x5{left:74.409450px;}
.x64{left:89.442900px;}
.x4c{left:91.998450px;}
.x5c{left:93.868050px;}
.x8{left:94.974750px;}
.xf{left:97.108500px;}
.x1e{left:99.421500px;}
.x5b{left:101.593200px;}
.x5a{left:105.259650px;}
.x23{left:115.071000px;}
.x18{left:116.503500px;}
.x5e{left:120.183600px;}
.x29{left:122.740500px;}
.x4e{left:141.351300px;}
.x15{left:142.481700px;}
.xd{left:144.327600px;}
.xc{left:145.473900px;}
.x26{left:146.618400px;}
.x1b{left:153.459000px;}
.x22{left:156.709350px;}
.x1a{left:159.514350px;}
.x5f{left:161.039400px;}
.x21{left:162.846150px;}
.x13{left:167.189971px;}
.x2d{left:170.985768px;}
.x12{left:173.382900px;}
.x20{left:175.092450px;}
.x2c{left:176.721553px;}
.x2b{left:182.424300px;}
.x14{left:187.352400px;}
.x2e{left:195.008250px;}
.x25{left:205.109550px;}
.x60{left:241.797317px;}
.x66{left:243.820350px;}
.x5d{left:253.232250px;}
.x28{left:254.680050px;}
.x9{left:257.283750px;}
.x30{left:266.042100px;}
.x1d{left:282.946500px;}
.x61{left:323.556365px;}
.x65{left:345.192150px;}
.x67{left:350.214300px;}
.x31{left:353.054250px;}
.x4f{left:354.279600px;}
.x3c{left:362.329500px;}
.x58{left:377.718000px;}
.x2f{left:383.462400px;}
.x17{left:395.068950px;}
.x27{left:405.813450px;}
.x63{left:414.707700px;}
.x1c{left:415.817850px;}
.x62{left:419.015578px;}
.x16{left:426.738450px;}
.x7{left:456.023550px;}
.x39{left:457.086600px;}
.x6{left:458.149500px;}
.x44{left:462.868058px;}
.x54{left:466.951800px;}
.x38{left:469.666800px;}
.x53{left:470.892300px;}
.x37{left:473.246202px;}
.x52{left:474.471702px;}
.x36{left:476.839950px;}
.x51{left:478.065450px;}
.x68{left:480.771450px;}
.x3e{left:484.973400px;}
.x2{left:505.591350px;}
.x41{left:513.514050px;}
.x3f{left:517.265100px;}
.x4d{left:553.413600px;}
.xa{left:556.389900px;}
.x46{left:558.680550px;}
.x4{left:578.952600px;}
.x47{left:585.744000px;}
.x43{left:612.035100px;}
.x19{left:627.660750px;}
.x1f{left:633.001800px;}
.x10{left:642.787050px;}
.x48{left:674.473500px;}
.x42{left:677.844900px;}
.x4a{left:702.739500px;}
.xb{left:714.446850px;}
.x40{left:722.180550px;}
.x3d{left:752.633100px;}
.x4b{left:793.080000px;}
.x1{left:797.480550px;}
.x3a{left:801.603000px;}
.x69{left:803.013300px;}
@media print{
.v2{vertical-align:-19.360533pt;}
.v5{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.360000pt;}
.v1{vertical-align:21.120533pt;}
.v4{vertical-align:53.333333pt;}
.ls45{letter-spacing:-3.930667pt;}
.lsb{letter-spacing:-3.754667pt;}
.ls12{letter-spacing:-3.344000pt;}
.ls16{letter-spacing:-2.464000pt;}
.ls82{letter-spacing:-2.229333pt;}
.ls14{letter-spacing:-2.200000pt;}
.ls1a{letter-spacing:-2.024000pt;}
.ls3{letter-spacing:-1.866667pt;}
.ls13{letter-spacing:-1.760000pt;}
.ls18{letter-spacing:-1.716000pt;}
.ls1b{letter-spacing:-1.642667pt;}
.ls6e{letter-spacing:-1.628000pt;}
.ls7f{letter-spacing:-1.525333pt;}
.ls40{letter-spacing:-1.436899pt;}
.ls1d{letter-spacing:-1.349333pt;}
.ls1f{letter-spacing:-1.320000pt;}
.ls15{letter-spacing:-1.188000pt;}
.ls7c{letter-spacing:-1.173333pt;}
.ls5a{letter-spacing:-1.114667pt;}
.ls7b{letter-spacing:-1.056000pt;}
.ls19{letter-spacing:-1.012000pt;}
.ls1c{letter-spacing:-0.924000pt;}
.lsa{letter-spacing:-0.762667pt;}
.ls11{letter-spacing:-0.748000pt;}
.lsd{letter-spacing:-0.645333pt;}
.ls2c{letter-spacing:-0.640000pt;}
.ls6d{letter-spacing:-0.528000pt;}
.ls48{letter-spacing:-0.469333pt;}
.ls46{letter-spacing:-0.440000pt;}
.ls6{letter-spacing:-0.410667pt;}
.ls4d{letter-spacing:-0.406341pt;}
.lsc{letter-spacing:-0.352000pt;}
.ls3c{letter-spacing:-0.349269pt;}
.ls37{letter-spacing:-0.346321pt;}
.ls3b{letter-spacing:-0.304797pt;}
.ls39{letter-spacing:-0.302225pt;}
.lsf{letter-spacing:-0.293333pt;}
.ls4c{letter-spacing:-0.284439pt;}
.ls60{letter-spacing:-0.283953pt;}
.ls41{letter-spacing:-0.261254pt;}
.ls49{letter-spacing:-0.249224pt;}
.ls32{letter-spacing:-0.240000pt;}
.ls26{letter-spacing:-0.234667pt;}
.ls5e{letter-spacing:-0.221655pt;}
.ls70{letter-spacing:-0.209698pt;}
.ls5f{letter-spacing:-0.189990pt;}
.ls75{letter-spacing:-0.189018pt;}
.ls6f{letter-spacing:-0.182997pt;}
.ls5d{letter-spacing:-0.178532pt;}
.ls36{letter-spacing:-0.176862pt;}
.ls10{letter-spacing:-0.176000pt;}
.ls3f{letter-spacing:-0.174170pt;}
.ls3a{letter-spacing:-0.172700pt;}
.ls74{letter-spacing:-0.164954pt;}
.ls77{letter-spacing:-0.147358pt;}
.ls23{letter-spacing:-0.132000pt;}
.ls1{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.117333pt;}
.ls2{letter-spacing:-0.096000pt;}
.ls72{letter-spacing:-0.093417pt;}
.ls76{letter-spacing:-0.084205pt;}
.ls8{letter-spacing:-0.058667pt;}
.ls80{letter-spacing:-0.044000pt;}
.ls62{letter-spacing:-0.025814pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.002400pt;}
.ls4{letter-spacing:0.002933pt;}
.ls61{letter-spacing:0.051628pt;}
.ls56{letter-spacing:0.063330pt;}
.ls71{letter-spacing:0.070062pt;}
.ls50{letter-spacing:0.071962pt;}
.ls24{letter-spacing:0.088000pt;}
.ls2e{letter-spacing:0.100628pt;}
.ls55{letter-spacing:0.114270pt;}
.ls17{letter-spacing:0.117333pt;}
.ls73{letter-spacing:0.118136pt;}
.ls4f{letter-spacing:0.122345pt;}
.ls64{letter-spacing:0.123789pt;}
.ls2d{letter-spacing:0.124667pt;}
.ls5c{letter-spacing:0.127864pt;}
.ls51{letter-spacing:0.154883pt;}
.ls68{letter-spacing:0.164954pt;}
.ls9{letter-spacing:0.176000pt;}
.ls5b{letter-spacing:0.178532pt;}
.ls54{letter-spacing:0.180697pt;}
.ls66{letter-spacing:0.182997pt;}
.ls42{letter-spacing:0.192686pt;}
.ls4b{letter-spacing:0.203712pt;}
.ls52{letter-spacing:0.206511pt;}
.ls6b{letter-spacing:0.220000pt;}
.ls7{letter-spacing:0.234667pt;}
.ls44{letter-spacing:0.243805pt;}
.ls2f{letter-spacing:0.259050pt;}
.ls31{letter-spacing:0.261254pt;}
.ls4a{letter-spacing:0.284439pt;}
.ls6a{letter-spacing:0.293333pt;}
.ls38{letter-spacing:0.302225pt;}
.ls3d{letter-spacing:0.304797pt;}
.ls25{letter-spacing:0.308000pt;}
.ls33{letter-spacing:0.309508pt;}
.ls34{letter-spacing:0.315994pt;}
.ls63{letter-spacing:0.320000pt;}
.ls4e{letter-spacing:0.325073pt;}
.ls3e{letter-spacing:0.391882pt;}
.ls35{letter-spacing:0.434491pt;}
.ls21{letter-spacing:0.440000pt;}
.ls84{letter-spacing:0.468000pt;}
.ls20{letter-spacing:0.572000pt;}
.ls83{letter-spacing:0.684000pt;}
.ls1e{letter-spacing:0.704000pt;}
.ls7e{letter-spacing:0.762667pt;}
.ls78{letter-spacing:0.800000pt;}
.ls7d{letter-spacing:0.821333pt;}
.ls79{letter-spacing:0.880000pt;}
.ls6c{letter-spacing:0.968000pt;}
.ls22{letter-spacing:1.056000pt;}
.ls81{letter-spacing:1.100000pt;}
.ls7a{letter-spacing:1.114667pt;}
.ls2b{letter-spacing:1.333333pt;}
.ls47{letter-spacing:2.112000pt;}
.ls43{letter-spacing:69.710133pt;}
.ls30{letter-spacing:79.398702pt;}
.ls67{letter-spacing:207.747277pt;}
.ls69{letter-spacing:213.308570pt;}
.ls53{letter-spacing:227.058771pt;}
.ls65{letter-spacing:268.770014pt;}
.ls27{letter-spacing:308.390400pt;}
.ls57{letter-spacing:308.390933pt;}
.ls58{letter-spacing:331.779733pt;}
.ls28{letter-spacing:331.780267pt;}
.ls2a{letter-spacing:332.053333pt;}
.ls29{letter-spacing:341.076800pt;}
.ls59{letter-spacing:398.850133pt;}
.ws0{word-spacing:-19.066667pt;}
.ws68{word-spacing:-18.186667pt;}
.ws2{word-spacing:-17.408000pt;}
.ws32{word-spacing:-17.130667pt;}
.wsc4{word-spacing:-16.837333pt;}
.wsa5{word-spacing:-16.426667pt;}
.wscd{word-spacing:-16.368000pt;}
.ws14{word-spacing:-16.309333pt;}
.ws30{word-spacing:-16.250667pt;}
.ws66{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.133333pt;}
.ws87{word-spacing:-16.074667pt;}
.wsf{word-spacing:-16.016000pt;}
.ws36{word-spacing:-15.957333pt;}
.wse{word-spacing:-15.781333pt;}
.wsd{word-spacing:-15.722667pt;}
.ws69{word-spacing:-15.605333pt;}
.wsa9{word-spacing:-15.546667pt;}
.wscf{word-spacing:-13.845333pt;}
.ws89{word-spacing:-13.200000pt;}
.ws3{word-spacing:-13.152000pt;}
.wsa8{word-spacing:-13.068000pt;}
.ws1{word-spacing:-13.056000pt;}
.ws2e{word-spacing:-12.804000pt;}
.wsa7{word-spacing:-12.672000pt;}
.ws31{word-spacing:-12.540000pt;}
.ws35{word-spacing:-12.408000pt;}
.wsa6{word-spacing:-12.320000pt;}
.ws34{word-spacing:-12.188000pt;}
.wscc{word-spacing:-12.100000pt;}
.ws42{word-spacing:-12.056000pt;}
.ws33{word-spacing:-11.968000pt;}
.ws50{word-spacing:-11.945067pt;}
.wsce{word-spacing:-11.924000pt;}
.ws67{word-spacing:-11.660000pt;}
.ws10{word-spacing:-11.352000pt;}
.ws6a{word-spacing:-11.264925pt;}
.ws2d{word-spacing:-11.176000pt;}
.ws55{word-spacing:-11.146854pt;}
.ws17{word-spacing:-11.088000pt;}
.ws4b{word-spacing:-11.052783pt;}
.wsc3{word-spacing:-11.044000pt;}
.ws15{word-spacing:-10.912000pt;}
.ws5c{word-spacing:-10.885600pt;}
.ws52{word-spacing:-10.793733pt;}
.ws2f{word-spacing:-10.780000pt;}
.ws4f{word-spacing:-10.621034pt;}
.ws53{word-spacing:-10.580803pt;}
.ws54{word-spacing:-10.565397pt;}
.wsd1{word-spacing:-10.548000pt;}
.ws4c{word-spacing:-10.476212pt;}
.wsaa{word-spacing:-10.472000pt;}
.ws75{word-spacing:-10.402338pt;}
.ws16{word-spacing:-10.384000pt;}
.ws12{word-spacing:-10.340000pt;}
.wsd2{word-spacing:-10.332000pt;}
.ws18{word-spacing:-10.076000pt;}
.ws13{word-spacing:-9.900000pt;}
.ws6b{word-spacing:-9.874094pt;}
.ws5d{word-spacing:-9.448701pt;}
.ws11{word-spacing:-8.756000pt;}
.ws8a{word-spacing:-7.156305pt;}
.ws8f{word-spacing:-6.659978pt;}
.ws8c{word-spacing:-6.608350pt;}
.wsab{word-spacing:-6.352603pt;}
.wsac{word-spacing:-6.343369pt;}
.ws88{word-spacing:-6.197602pt;}
.ws8b{word-spacing:-6.169514pt;}
.ws8d{word-spacing:-5.988817pt;}
.ws8e{word-spacing:-5.833934pt;}
.wsb0{word-spacing:-5.726246pt;}
.ws26{word-spacing:-5.104000pt;}
.ws77{word-spacing:-3.573333pt;}
.wsf4{word-spacing:-2.640000pt;}
.ws2a{word-spacing:-2.522667pt;}
.ws41{word-spacing:-2.400000pt;}
.wse6{word-spacing:-2.352000pt;}
.ws2c{word-spacing:-2.229333pt;}
.wse4{word-spacing:-2.160000pt;}
.wsb3{word-spacing:-1.701333pt;}
.ws93{word-spacing:-1.653333pt;}
.wsf1{word-spacing:-1.632000pt;}
.ws7c{word-spacing:-1.525333pt;}
.ws7d{word-spacing:-1.386667pt;}
.wsf6{word-spacing:-1.248000pt;}
.wsc8{word-spacing:-1.114667pt;}
.wsed{word-spacing:-0.960000pt;}
.wsc7{word-spacing:-0.880000pt;}
.wsca{word-spacing:-0.821333pt;}
.wsdc{word-spacing:-0.720000pt;}
.ws3a{word-spacing:-0.572000pt;}
.ws84{word-spacing:-0.404717pt;}
.ws61{word-spacing:-0.353724pt;}
.ws9c{word-spacing:-0.348316pt;}
.ws86{word-spacing:-0.325073pt;}
.wsa4{word-spacing:-0.320000pt;}
.ws90{word-spacing:-0.309766pt;}
.ws60{word-spacing:-0.309508pt;}
.wsa3{word-spacing:-0.285675pt;}
.ws81{word-spacing:-0.284439pt;}
.wsa1{word-spacing:-0.258139pt;}
.ws98{word-spacing:-0.255045pt;}
.wsbe{word-spacing:-0.236272pt;}
.ws19{word-spacing:-0.234667pt;}
.ws82{word-spacing:-0.203712pt;}
.ws46{word-spacing:-0.192000pt;}
.wsbd{word-spacing:-0.188518pt;}
.wsb5{word-spacing:-0.182997pt;}
.ws96{word-spacing:-0.178532pt;}
.ws1b{word-spacing:-0.176000pt;}
.wsba{word-spacing:-0.164954pt;}
.ws97{word-spacing:-0.127864pt;}
.wsc1{word-spacing:-0.126307pt;}
.wsb9{word-spacing:-0.118136pt;}
.ws28{word-spacing:-0.117333pt;}
.wseb{word-spacing:-0.096000pt;}
.wsb8{word-spacing:-0.070062pt;}
.ws9a{word-spacing:-0.063330pt;}
.ws5{word-spacing:-0.058667pt;}
.ws9f{word-spacing:-0.051628pt;}
.ws6{word-spacing:0.000000pt;}
.wsa0{word-spacing:0.025814pt;}
.wsbf{word-spacing:0.047130pt;}
.ws92{word-spacing:0.053333pt;}
.ws1a{word-spacing:0.058667pt;}
.ws85{word-spacing:0.081268pt;}
.ws63{word-spacing:0.088431pt;}
.ws83{word-spacing:0.089937pt;}
.ws9d{word-spacing:0.094995pt;}
.ws8{word-spacing:0.096000pt;}
.wsb4{word-spacing:0.096205pt;}
.ws22{word-spacing:0.117333pt;}
.ws7{word-spacing:0.128000pt;}
.wsa2{word-spacing:0.142837pt;}
.wsc2{word-spacing:0.147358pt;}
.wsbc{word-spacing:0.164954pt;}
.ws24{word-spacing:0.176000pt;}
.ws62{word-spacing:0.176862pt;}
.wsc0{word-spacing:0.189018pt;}
.ws9b{word-spacing:0.189990pt;}
.wsd8{word-spacing:0.192000pt;}
.wsb7{word-spacing:0.209698pt;}
.wsc5{word-spacing:0.234667pt;}
.ws5f{word-spacing:0.240000pt;}
.ws7f{word-spacing:0.249224pt;}
.ws99{word-spacing:0.288000pt;}
.ws25{word-spacing:0.293333pt;}
.ws65{word-spacing:0.304797pt;}
.ws9e{word-spacing:0.335580pt;}
.ws23{word-spacing:0.352000pt;}
.ws21{word-spacing:0.410667pt;}
.ws47{word-spacing:0.640000pt;}
.ws20{word-spacing:0.645333pt;}
.wsf2{word-spacing:0.720000pt;}
.ws1c{word-spacing:0.762667pt;}
.wsbb{word-spacing:0.989722pt;}
.wsb6{word-spacing:1.097981pt;}
.wse7{word-spacing:1.104000pt;}
.ws95{word-spacing:1.114667pt;}
.wse8{word-spacing:1.152000pt;}
.wsc9{word-spacing:1.173333pt;}
.ws38{word-spacing:1.349333pt;}
.wsd0{word-spacing:1.525333pt;}
.ws29{word-spacing:1.642667pt;}
.wsc{word-spacing:1.866667pt;}
.wsf5{word-spacing:1.920000pt;}
.wsdf{word-spacing:2.304000pt;}
.ws64{word-spacing:2.307747pt;}
.ws27{word-spacing:2.464000pt;}
.ws7b{word-spacing:2.581333pt;}
.ws2b{word-spacing:2.698667pt;}
.ws3c{word-spacing:2.992000pt;}
.wsb{word-spacing:3.226667pt;}
.ws44{word-spacing:3.413333pt;}
.wsf0{word-spacing:3.552000pt;}
.wsdb{word-spacing:3.648000pt;}
.wsf7{word-spacing:3.744000pt;}
.ws1d{word-spacing:3.754667pt;}
.wsd3{word-spacing:3.813333pt;}
.wsda{word-spacing:3.840000pt;}
.ws78{word-spacing:3.930667pt;}
.wse0{word-spacing:4.224000pt;}
.wsd5{word-spacing:4.693333pt;}
.ws7e{word-spacing:4.752000pt;}
.ws3e{word-spacing:5.397333pt;}
.wsd7{word-spacing:5.424000pt;}
.wsf3{word-spacing:5.712000pt;}
.wse2{word-spacing:5.760000pt;}
.wse1{word-spacing:5.808000pt;}
.ws1f{word-spacing:5.925333pt;}
.wsd9{word-spacing:6.192000pt;}
.wse5{word-spacing:6.288000pt;}
.wse9{word-spacing:6.576000pt;}
.ws79{word-spacing:6.666667pt;}
.ws80{word-spacing:7.127806pt;}
.wsef{word-spacing:7.200000pt;}
.wsec{word-spacing:7.392000pt;}
.wsdd{word-spacing:7.536000pt;}
.ws3f{word-spacing:7.733333pt;}
.ws1e{word-spacing:8.154667pt;}
.wsde{word-spacing:8.304000pt;}
.wsa{word-spacing:8.448000pt;}
.ws40{word-spacing:8.741333pt;}
.ws3d{word-spacing:9.269333pt;}
.ws39{word-spacing:10.090667pt;}
.wse3{word-spacing:10.368000pt;}
.ws7a{word-spacing:10.666667pt;}
.wsee{word-spacing:11.040000pt;}
.wsc6{word-spacing:11.674667pt;}
.wsea{word-spacing:13.344000pt;}
.ws3b{word-spacing:13.728000pt;}
.ws45{word-spacing:14.560000pt;}
.wsd4{word-spacing:14.725333pt;}
.wsd6{word-spacing:17.520000pt;}
.ws37{word-spacing:19.066667pt;}
.wscb{word-spacing:23.733333pt;}
.ws94{word-spacing:26.880000pt;}
.ws4a{word-spacing:28.344626pt;}
.ws49{word-spacing:28.696169pt;}
.ws4e{word-spacing:36.785043pt;}
.ws48{word-spacing:39.341203pt;}
.ws5a{word-spacing:41.582992pt;}
.ws59{word-spacing:41.974874pt;}
.ws5b{word-spacing:42.061958pt;}
.ws70{word-spacing:43.533249pt;}
.ws73{word-spacing:43.722855pt;}
.ws72{word-spacing:43.723389pt;}
.ws6c{word-spacing:43.768189pt;}
.ws6e{word-spacing:43.858322pt;}
.ws6f{word-spacing:45.221353pt;}
.ws6d{word-spacing:45.276084pt;}
.ws71{word-spacing:45.356819pt;}
.ws74{word-spacing:45.357353pt;}
.wsae{word-spacing:47.673213pt;}
.wsaf{word-spacing:53.858246pt;}
.ws4d{word-spacing:56.818212pt;}
.ws5e{word-spacing:61.095373pt;}
.ws58{word-spacing:62.004378pt;}
.ws57{word-spacing:62.265632pt;}
.ws56{word-spacing:74.065622pt;}
.ws9{word-spacing:177.333333pt;}
.wsb1{word-spacing:195.375757pt;}
.wsb2{word-spacing:200.984179pt;}
.ws51{word-spacing:212.939993pt;}
.ws91{word-spacing:213.532305pt;}
.wsad{word-spacing:255.097539pt;}
.ws43{word-spacing:273.237333pt;}
.ws76{word-spacing:486.673041pt;}
._2{margin-left:-2653.503467pt;}
._0{margin-left:-74.741333pt;}
._56{margin-left:-10.806400pt;}
._c{margin-left:-9.578667pt;}
._15{margin-left:-8.307200pt;}
._3{margin-left:-6.919733pt;}
._4{margin-left:-5.797067pt;}
._11{margin-left:-4.666133pt;}
._d{margin-left:-2.997867pt;}
._14{margin-left:-2.018133pt;}
._1{margin-left:-1.066667pt;}
._8{width:1.724800pt;}
._21{width:2.616000pt;}
._9{width:3.508267pt;}
._6{width:5.104000pt;}
._13{width:6.272533pt;}
._5{width:7.392000pt;}
._7{width:8.582933pt;}
._e{width:9.498133pt;}
._a{width:10.546133pt;}
._b{width:12.263467pt;}
._16{width:13.547733pt;}
._1e{width:14.829867pt;}
._44{width:17.000533pt;}
._10{width:18.268800pt;}
._f{width:19.282667pt;}
._24{width:20.515733pt;}
._17{width:21.419200pt;}
._2d{width:22.614933pt;}
._12{width:24.024000pt;}
._1a{width:25.610667pt;}
._1d{width:26.650667pt;}
._3e{width:28.415724pt;}
._2f{width:29.467200pt;}
._20{width:30.477333pt;}
._26{width:31.803200pt;}
._27{width:33.562133pt;}
._28{width:34.844800pt;}
._29{width:36.265067pt;}
._19{width:37.787200pt;}
._18{width:38.790400pt;}
._2a{width:40.349867pt;}
._2b{width:41.704267pt;}
._57{width:42.950933pt;}
._2c{width:43.998933pt;}
._1b{width:45.402133pt;}
._1c{width:46.312000pt;}
._25{width:47.488000pt;}
._22{width:48.998400pt;}
._23{width:50.347733pt;}
._4c{width:51.268800pt;}
._2e{width:52.241600pt;}
._58{width:53.176000pt;}
._1f{width:54.653867pt;}
._30{width:56.624000pt;}
._3d{width:59.090803pt;}
._43{width:62.483344pt;}
._5b{width:63.976000pt;}
._53{width:65.624533pt;}
._54{width:66.549333pt;}
._5a{width:69.425067pt;}
._59{width:82.185067pt;}
._52{width:85.524800pt;}
._4b{width:87.099200pt;}
._42{width:95.836822pt;}
._35{width:159.466667pt;}
._3f{width:161.682603pt;}
._4e{width:177.130667pt;}
._31{width:178.156800pt;}
._50{width:182.876267pt;}
._32{width:183.851200pt;}
._38{width:191.147200pt;}
._4f{width:194.170667pt;}
._34{width:201.490133pt;}
._37{width:202.487467pt;}
._3a{width:209.522667pt;}
._51{width:213.237333pt;}
._39{width:242.474667pt;}
._3b{width:248.597333pt;}
._33{width:300.560000pt;}
._36{width:305.356800pt;}
._4a{width:320.108496pt;}
._49{width:326.615190pt;}
._48{width:393.046765pt;}
._4d{width:405.943428pt;}
._47{width:408.899310pt;}
._55{width:411.106705pt;}
._46{width:422.384610pt;}
._45{width:639.001209pt;}
._40{width:676.534133pt;}
._41{width:682.292267pt;}
._3c{width:692.839067pt;}
.fs28{font-size:21.051200pt;}
.fs23{font-size:23.354133pt;}
.fs26{font-size:23.564800pt;}
.fs27{font-size:23.627200pt;}
.fs19{font-size:25.504533pt;}
.fs1a{font-size:25.572800pt;}
.fs1d{font-size:25.813867pt;}
.fs22{font-size:26.142400pt;}
.fs21{font-size:26.212267pt;}
.fs1e{font-size:28.567467pt;}
.fs24{font-size:28.906133pt;}
.fs18{font-size:31.285867pt;}
.fs25{font-size:31.419200pt;}
.fs1c{font-size:31.665067pt;}
.fs20{font-size:32.068267pt;}
.fs17{font-size:34.006400pt;}
.fs1b{font-size:34.418667pt;}
.fs1f{font-size:34.856533pt;}
.fs29{font-size:36.000000pt;}
.fsa{font-size:39.499200pt;}
.fs14{font-size:40.634133pt;}
.fs15{font-size:40.742400pt;}
.fsc{font-size:43.174933pt;}
.fsd{font-size:43.290133pt;}
.fs10{font-size:43.542400pt;}
.fs11{font-size:43.658667pt;}
.fs5{font-size:44.000000pt;}
.fs9{font-size:44.215467pt;}
.fs16{font-size:44.968533pt;}
.fse{font-size:47.780267pt;}
.fs4{font-size:48.000000pt;}
.fs13{font-size:49.844800pt;}
.fs1{font-size:53.333333pt;}
.fs12{font-size:54.179200pt;}
.fs7{font-size:54.237867pt;}
.fsb{font-size:57.566933pt;}
.fsf{font-size:58.056533pt;}
.fs6{font-size:58.666667pt;}
.fs8{font-size:58.954133pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.y16b{bottom:-272.888933pt;}
.y16a{bottom:-255.120667pt;}
.y17d{bottom:-184.168133pt;}
.y17e{bottom:-174.781067pt;}
.y17f{bottom:-165.393867pt;}
.y18d{bottom:-157.388267pt;}
.y180{bottom:-156.006800pt;}
.y181{bottom:-146.626667pt;}
.y182{bottom:-137.239600pt;}
.y183{bottom:-127.852400pt;}
.y184{bottom:-118.465333pt;}
.y185{bottom:-109.078133pt;}
.y186{bottom:-99.698133pt;}
.y187{bottom:-90.311067pt;}
.y188{bottom:-80.923867pt;}
.yd6{bottom:-75.262933pt;}
.y189{bottom:-71.536800pt;}
.yae{bottom:-64.165733pt;}
.y18a{bottom:-62.149600pt;}
.y9e{bottom:-55.155067pt;}
.y18b{bottom:-52.769600pt;}
.yc0{bottom:-47.817333pt;}
.y1c4{bottom:-45.017867pt;}
.yd5{bottom:-43.568133pt;}
.y18c{bottom:-43.382533pt;}
.y140{bottom:-40.133600pt;}
.yad{bottom:-33.367467pt;}
.y1c3{bottom:-28.722533pt;}
.y9d{bottom:-26.709733pt;}
.y13f{bottom:-24.042800pt;}
.y169{bottom:-21.207600pt;}
.yd4{bottom:-20.790400pt;}
.y1c2{bottom:-18.163867pt;}
.y111{bottom:-16.457867pt;}
.ybf{bottom:-16.321600pt;}
.y13e{bottom:-13.631067pt;}
.y159{bottom:-12.822133pt;}
.y156{bottom:-12.821467pt;}
.y1e7{bottom:-11.298267pt;}
.yac{bottom:-4.728000pt;}
.y168{bottom:-2.830133pt;}
.y9c{bottom:-2.685867pt;}
.y155{bottom:-2.495867pt;}
.y158{bottom:-2.410533pt;}
.y151{bottom:-2.408933pt;}
.y153{bottom:-2.408667pt;}
.y0{bottom:0.000000pt;}
.y1c1{bottom:0.135867pt;}
.y14f{bottom:0.186800pt;}
.y110{bottom:1.310267pt;}
.y13d{bottom:4.352667pt;}
.y1{bottom:42.232400pt;}
.y113{bottom:63.662400pt;}
.y114{bottom:73.283333pt;}
.y115{bottom:82.904267pt;}
.y2b{bottom:83.510800pt;}
.y49{bottom:84.764667pt;}
.y99{bottom:86.066800pt;}
.yd0{bottom:86.281067pt;}
.y90{bottom:87.129067pt;}
.y14c{bottom:88.407067pt;}
.y271{bottom:89.340533pt;}
.y8b{bottom:90.098000pt;}
.y22d{bottom:90.475867pt;}
.y116{bottom:92.511067pt;}
.y123{bottom:93.162800pt;}
.y135{bottom:97.561467pt;}
.y166{bottom:100.129600pt;}
.ycf{bottom:100.681067pt;}
.y2a{bottom:100.844133pt;}
.ybe{bottom:101.120000pt;}
.y8f{bottom:101.529067pt;}
.y19c{bottom:101.583467pt;}
.y117{bottom:102.139067pt;}
.y270{bottom:102.673867pt;}
.y48{bottom:103.431333pt;}
.y22c{bottom:103.809200pt;}
.ycc{bottom:105.094133pt;}
.y8a{bottom:108.764667pt;}
.y118{bottom:111.760000pt;}
.y8e{bottom:115.929067pt;}
.y26f{bottom:116.007200pt;}
.y22b{bottom:117.142533pt;}
.yd1{bottom:118.654667pt;}
.y19b{bottom:120.250133pt;}
.y119{bottom:121.388000pt;}
.y47{bottom:122.098000pt;}
.y165{bottom:123.912800pt;}
.yca{bottom:124.107733pt;}
.yd3{bottom:126.172800pt;}
.y89{bottom:127.431333pt;}
.y26e{bottom:129.340533pt;}
.y22a{bottom:130.475867pt;}
.ye4{bottom:130.676400pt;}
.y11a{bottom:131.008800pt;}
.y29{bottom:132.617467pt;}
.ycb{bottom:136.214933pt;}
.yc1{bottom:136.880133pt;}
.y19a{bottom:138.916800pt;}
.y11b{bottom:140.629733pt;}
.y46{bottom:140.764667pt;}
.y26d{bottom:142.673867pt;}
.y229{bottom:143.809200pt;}
.y88{bottom:146.098000pt;}
.y164{bottom:147.696133pt;}
.y11c{bottom:150.257867pt;}
.ye2{bottom:151.264533pt;}
.y28{bottom:151.284133pt;}
.y26c{bottom:156.007200pt;}
.y228{bottom:157.142533pt;}
.y199{bottom:157.583467pt;}
.y45{bottom:159.431333pt;}
.y11d{bottom:159.864533pt;}
.yd7{bottom:163.206533pt;}
.y87{bottom:164.764667pt;}
.yc2{bottom:167.501326pt;}
.y26b{bottom:169.340533pt;}
.y11e{bottom:169.485467pt;}
.y27{bottom:169.950800pt;}
.y227{bottom:170.475867pt;}
.y163{bottom:171.479333pt;}
.y198{bottom:176.250133pt;}
.y44{bottom:178.098000pt;}
.y11f{bottom:179.113467pt;}
.y13c{bottom:182.663467pt;}
.y26a{bottom:182.673867pt;}
.y86{bottom:183.431333pt;}
.y226{bottom:183.809200pt;}
.yd8{bottom:185.148965pt;}
.y120{bottom:188.734400pt;}
.y26{bottom:192.396933pt;}
.y197{bottom:194.916800pt;}
.y269{bottom:196.007200pt;}
.y43{bottom:196.764667pt;}
.yc3{bottom:198.089862pt;}
.y121{bottom:198.355333pt;}
.y162{bottom:198.998133pt;}
.ye7{bottom:200.319067pt;}
.y85{bottom:202.098000pt;}
.yd9{bottom:207.091397pt;}
.y122{bottom:207.983333pt;}
.y268{bottom:209.340533pt;}
.y161{bottom:212.331467pt;}
.y196{bottom:213.583467pt;}
.y42{bottom:215.431333pt;}
.ye3{bottom:216.764667pt;}
.ye6{bottom:217.904667pt;}
.y84{bottom:220.764667pt;}
.y267{bottom:222.673867pt;}
.yc4{bottom:228.689284pt;}
.yda{bottom:229.033829pt;}
.y195{bottom:232.250133pt;}
.y41{bottom:234.098000pt;}
.y10f{bottom:235.223333pt;}
.ye5{bottom:235.479067pt;}
.y266{bottom:236.007200pt;}
.y25{bottom:237.289333pt;}
.y160{bottom:237.621067pt;}
.y8d{bottom:239.431333pt;}
.y265{bottom:249.340533pt;}
.y194{bottom:250.916800pt;}
.ydb{bottom:250.976261pt;}
.y4b{bottom:252.764667pt;}
.y10e{bottom:253.600933pt;}
.y24{bottom:255.956000pt;}
.y83{bottom:258.098000pt;}
.yc5{bottom:259.319333pt;}
.y264{bottom:262.673867pt;}
.y10c{bottom:269.205600pt;}
.y193{bottom:269.583467pt;}
.y139{bottom:269.701467pt;}
.y40{bottom:271.431333pt;}
.ydc{bottom:272.918693pt;}
.y23{bottom:274.622667pt;}
.y263{bottom:276.007200pt;}
.y82{bottom:276.764667pt;}
.yc9{bottom:280.614400pt;}
.y138{bottom:284.101467pt;}
.y10b{bottom:287.872267pt;}
.y192{bottom:288.250133pt;}
.y262{bottom:289.340533pt;}
.yc6{bottom:289.920000pt;}
.y3f{bottom:290.098000pt;}
.ydd{bottom:294.861125pt;}
.y81{bottom:295.431333pt;}
.y137{bottom:298.501467pt;}
.y261{bottom:302.673867pt;}
.y10a{bottom:306.538933pt;}
.y191{bottom:306.916800pt;}
.y3e{bottom:308.764667pt;}
.y1e4{bottom:308.918133pt;}
.y136{bottom:312.901467pt;}
.yd2{bottom:313.663600pt;}
.y80{bottom:314.098000pt;}
.y260{bottom:316.007200pt;}
.yde{bottom:316.804000pt;}
.yc7{bottom:320.508536pt;}
.y1e3{bottom:323.685333pt;}
.y109{bottom:325.205600pt;}
.y190{bottom:325.583467pt;}
.y10d{bottom:325.944000pt;}
.y134{bottom:327.425333pt;}
.y3d{bottom:327.431333pt;}
.y25f{bottom:329.340533pt;}
.y7f{bottom:332.764667pt;}
.ycd{bottom:338.542533pt;}
.ydf{bottom:338.743782pt;}
.y22{bottom:341.961333pt;}
.y25e{bottom:342.673867pt;}
.y108{bottom:343.872267pt;}
.y1bf{bottom:344.250133pt;}
.y3c{bottom:346.098000pt;}
.y13a{bottom:348.240133pt;}
.yc8{bottom:351.107958pt;}
.y7e{bottom:351.431333pt;}
.y25d{bottom:356.007200pt;}
.y21{bottom:360.628000pt;}
.ye0{bottom:360.666533pt;}
.y107{bottom:362.538933pt;}
.y18f{bottom:362.916800pt;}
.y3b{bottom:364.764667pt;}
.y25c{bottom:369.340533pt;}
.y7d{bottom:370.098000pt;}
.y106{bottom:381.205600pt;}
.y1be{bottom:381.583467pt;}
.ye1{bottom:382.608965pt;}
.y25b{bottom:382.673867pt;}
.y3a{bottom:383.431333pt;}
.y7c{bottom:388.764667pt;}
.y98{bottom:388.870000pt;}
.y222{bottom:394.211733pt;}
.y25a{bottom:396.007200pt;}
.y124{bottom:398.206800pt;}
.y105{bottom:399.872267pt;}
.y1bd{bottom:400.250133pt;}
.y39{bottom:402.098000pt;}
.yab{bottom:402.897333pt;}
.y20{bottom:405.520400pt;}
.y7b{bottom:407.431333pt;}
.y125{bottom:407.592468pt;}
.y221{bottom:408.611733pt;}
.y259{bottom:409.340533pt;}
.ybc{bottom:409.910533pt;}
.y126{bottom:416.978137pt;}
.y104{bottom:418.538933pt;}
.y1bc{bottom:418.916800pt;}
.y38{bottom:420.764667pt;}
.y258{bottom:422.673867pt;}
.y220{bottom:423.011733pt;}
.y1f{bottom:424.187067pt;}
.y7a{bottom:426.098000pt;}
.y127{bottom:426.363805pt;}
.yba{bottom:427.036667pt;}
.y128{bottom:435.743097pt;}
.y257{bottom:436.007200pt;}
.y103{bottom:437.205600pt;}
.y1bb{bottom:437.583467pt;}
.y1e2{bottom:437.794667pt;}
.y37{bottom:439.431333pt;}
.yaf{bottom:439.737333pt;}
.y1e{bottom:442.853733pt;}
.y1e6{bottom:442.915565pt;}
.y79{bottom:444.764667pt;}
.y224{bottom:444.807067pt;}
.y129{bottom:445.128765pt;}
.y213{bottom:446.009200pt;}
.y256{bottom:449.340533pt;}
.y211{bottom:453.884359pt;}
.y12a{bottom:454.514433pt;}
.y102{bottom:455.872267pt;}
.y1ba{bottom:456.250133pt;}
.y36{bottom:458.098000pt;}
.y204{bottom:460.841867pt;}
.y21f{bottom:461.010768pt;}
.y1d{bottom:461.520400pt;}
.y255{bottom:462.673867pt;}
.yb0{bottom:463.073385pt;}
.y78{bottom:463.431333pt;}
.y12b{bottom:463.900102pt;}
.y21e{bottom:467.047200pt;}
.y205{bottom:470.108724pt;}
.y12c{bottom:473.285770pt;}
.y101{bottom:474.538933pt;}
.y1b9{bottom:474.916800pt;}
.y254{bottom:476.007200pt;}
.y21d{bottom:476.158886pt;}
.y35{bottom:476.764667pt;}
.y206{bottom:479.375582pt;}
.y1c{bottom:480.187067pt;}
.y77{bottom:482.098000pt;}
.y21c{bottom:482.174267pt;}
.y12d{bottom:482.665062pt;}
.yb1{bottom:486.452611pt;}
.y207{bottom:488.642439pt;}
.y253{bottom:489.340533pt;}
.y21b{bottom:491.284635pt;}
.y12e{bottom:492.050730pt;}
.y100{bottom:493.205600pt;}
.y1b8{bottom:493.583467pt;}
.y212{bottom:494.729067pt;}
.y34{bottom:495.431333pt;}
.y21a{bottom:497.321067pt;}
.y208{bottom:497.909297pt;}
.y1b{bottom:498.853733pt;}
.y76{bottom:500.764667pt;}
.y12f{bottom:501.436399pt;}
.y252{bottom:502.673867pt;}
.y219{bottom:506.432886pt;}
.y209{bottom:507.176155pt;}
.yb2{bottom:509.831838pt;}
.y130{bottom:510.822067pt;}
.yff{bottom:511.872267pt;}
.y1b7{bottom:512.250133pt;}
.y218{bottom:512.448267pt;}
.y33{bottom:514.098000pt;}
.y97{bottom:515.499733pt;}
.y251{bottom:516.007200pt;}
.y20a{bottom:516.443012pt;}
.y1a{bottom:517.520400pt;}
.yce{bottom:519.431333pt;}
.y131{bottom:520.207735pt;}
.y20b{bottom:525.709870pt;}
.y217{bottom:527.588533pt;}
.ybb{bottom:527.922400pt;}
.y250{bottom:529.340533pt;}
.y132{bottom:529.587027pt;}
.yfe{bottom:530.538933pt;}
.y1b6{bottom:530.916800pt;}
.y32{bottom:532.764667pt;}
.yb3{bottom:533.211064pt;}
.y20c{bottom:534.976727pt;}
.y19{bottom:536.187067pt;}
.y75{bottom:538.098000pt;}
.y133{bottom:538.972696pt;}
.y96{bottom:539.282933pt;}
.y24f{bottom:542.673867pt;}
.y216{bottom:542.722133pt;}
.y20d{bottom:544.243585pt;}
.yfd{bottom:549.205600pt;}
.y1b5{bottom:549.583467pt;}
.y31{bottom:551.431333pt;}
.y20e{bottom:553.510443pt;}
.y167{bottom:553.678667pt;}
.y18{bottom:554.853733pt;}
.y24e{bottom:556.007200pt;}
.yb4{bottom:556.568703pt;}
.y74{bottom:556.764667pt;}
.y215{bottom:557.862400pt;}
.y20f{bottom:562.777300pt;}
.y95{bottom:563.066133pt;}
.yfc{bottom:567.872267pt;}
.y1b4{bottom:568.250133pt;}
.y18e{bottom:568.964533pt;}
.y24d{bottom:569.340533pt;}
.y30{bottom:570.098000pt;}
.y210{bottom:572.044158pt;}
.y214{bottom:572.989600pt;}
.y17{bottom:573.520400pt;}
.y73{bottom:575.431333pt;}
.y112{bottom:579.665333pt;}
.yb5{bottom:579.915548pt;}
.y24c{bottom:582.673867pt;}
.yfb{bottom:586.538933pt;}
.y94{bottom:586.849467pt;}
.y1b3{bottom:586.916800pt;}
.y2f{bottom:588.764667pt;}
.y16{bottom:592.187067pt;}
.y72{bottom:594.098000pt;}
.y1e5{bottom:595.487200pt;}
.y24b{bottom:596.007200pt;}
.y1f7{bottom:598.570267pt;}
.y223{bottom:599.011733pt;}
.yb6{bottom:603.294775pt;}
.yfa{bottom:605.205600pt;}
.y1b2{bottom:605.583467pt;}
.y1f5{bottom:606.523104pt;}
.y2e{bottom:607.431333pt;}
.y24a{bottom:609.340533pt;}
.y15{bottom:610.853733pt;}
.y71{bottom:612.764667pt;}
.y1e8{bottom:613.442133pt;}
.y93{bottom:614.368267pt;}
.y16c{bottom:614.631467pt;}
.y203{bottom:614.698800pt;}
.y202{bottom:621.473733pt;}
.y249{bottom:622.673867pt;}
.y1e9{bottom:622.743600pt;}
.yf9{bottom:623.872267pt;}
.y1b1{bottom:624.250133pt;}
.y16d{bottom:624.253052pt;}
.y2d{bottom:626.098000pt;}
.yb7{bottom:626.652413pt;}
.y92{bottom:627.701600pt;}
.y14{bottom:629.520400pt;}
.y201{bottom:629.831811pt;}
.y70{bottom:631.431333pt;}
.ybd{bottom:631.458667pt;}
.y1ea{bottom:632.032000pt;}
.y16e{bottom:633.873333pt;}
.y248{bottom:636.007200pt;}
.y200{bottom:636.600800pt;}
.y1eb{bottom:641.328314pt;}
.yf8{bottom:642.538933pt;}
.y1b0{bottom:642.916800pt;}
.y16f{bottom:643.480000pt;}
.y17c{bottom:644.131867pt;}
.y4a{bottom:644.764667pt;}
.y1ff{bottom:644.960938pt;}
.y1f6{bottom:647.564933pt;}
.y13{bottom:648.187067pt;}
.y247{bottom:649.340533pt;}
.yb8{bottom:650.031640pt;}
.y6f{bottom:650.098000pt;}
.y1ec{bottom:650.630518pt;}
.y1fe{bottom:651.747600pt;}
.y91{bottom:652.991067pt;}
.y170{bottom:653.107961pt;}
.y1ed{bottom:659.932723pt;}
.y1fd{bottom:660.099920pt;}
.yf7{bottom:661.205600pt;}
.y1af{bottom:661.583467pt;}
.y246{bottom:662.673867pt;}
.y171{bottom:662.729547pt;}
.y2c{bottom:663.431333pt;}
.y12{bottom:666.853733pt;}
.y1fc{bottom:666.874800pt;}
.y8c{bottom:668.764667pt;}
.y1ee{bottom:669.234928pt;}
.y172{bottom:672.357508pt;}
.yb9{bottom:673.398400pt;}
.y245{bottom:676.007200pt;}
.y1ef{bottom:678.537133pt;}
.yf6{bottom:679.872267pt;}
.y1ae{bottom:680.250133pt;}
.y173{bottom:681.979093pt;}
.y1fb{bottom:682.015067pt;}
.y11{bottom:685.520400pt;}
.y6e{bottom:687.431333pt;}
.y1f0{bottom:687.833446pt;}
.y244{bottom:689.340533pt;}
.y174{bottom:691.600678pt;}
.y1f1{bottom:697.135651pt;}
.y1fa{bottom:697.148667pt;}
.yf5{bottom:698.538933pt;}
.y9a{bottom:698.761067pt;}
.y1ad{bottom:698.916800pt;}
.y175{bottom:701.226933pt;}
.y243{bottom:702.673867pt;}
.y10{bottom:704.187067pt;}
.y6d{bottom:706.098000pt;}
.y1f2{bottom:706.437856pt;}
.y9b{bottom:707.717333pt;}
.y176{bottom:710.833600pt;}
.y1f9{bottom:712.288933pt;}
.y1f3{bottom:715.740061pt;}
.ya9{bottom:715.999333pt;}
.y242{bottom:716.007200pt;}
.y5b{bottom:716.797333pt;}
.yf4{bottom:717.205600pt;}
.y177{bottom:720.455185pt;}
.yf{bottom:722.853733pt;}
.y6c{bottom:724.764667pt;}
.y1f4{bottom:725.042266pt;}
.y1f8{bottom:727.416133pt;}
.y241{bottom:729.340533pt;}
.y178{bottom:730.083147pt;}
.y5a{bottom:735.464000pt;}
.yf3{bottom:735.872267pt;}
.y1ac{bottom:736.250133pt;}
.y179{bottom:739.704732pt;}
.ye{bottom:741.520400pt;}
.y240{bottom:742.673867pt;}
.ya7{bottom:742.909467pt;}
.y6b{bottom:743.431333pt;}
.y1e1{bottom:745.858933pt;}
.y17a{bottom:749.326317pt;}
.y9f{bottom:754.442400pt;}
.yf2{bottom:754.538933pt;}
.y1ab{bottom:754.916800pt;}
.y23f{bottom:756.007200pt;}
.y17b{bottom:758.954278pt;}
.yd{bottom:760.187067pt;}
.y1e0{bottom:760.258933pt;}
.y6a{bottom:762.098000pt;}
.y23e{bottom:769.340533pt;}
.yf1{bottom:773.205600pt;}
.y1aa{bottom:773.583467pt;}
.y1df{bottom:774.658933pt;}
.y59{bottom:780.356400pt;}
.y15f{bottom:780.618000pt;}
.y69{bottom:780.764667pt;}
.yc{bottom:782.633200pt;}
.y23d{bottom:782.673867pt;}
.y1de{bottom:789.058933pt;}
.ya0{bottom:791.727092pt;}
.yf0{bottom:791.872267pt;}
.yaa{bottom:791.988800pt;}
.y1a9{bottom:792.250133pt;}
.y15e{bottom:795.018000pt;}
.y23c{bottom:796.007200pt;}
.y58{bottom:799.023067pt;}
.y68{bottom:799.431333pt;}
.yb{bottom:801.299867pt;}
.y1c0{bottom:806.298667pt;}
.y23b{bottom:809.340533pt;}
.y15d{bottom:809.418000pt;}
.yef{bottom:810.538933pt;}
.y1a8{bottom:810.916800pt;}
.y1d6{bottom:817.065733pt;}
.ya8{bottom:817.167200pt;}
.y57{bottom:817.689733pt;}
.y67{bottom:818.098000pt;}
.y23a{bottom:822.673867pt;}
.y15c{bottom:823.818000pt;}
.y1d4{bottom:825.680467pt;}
.ya1{bottom:829.044946pt;}
.yee{bottom:829.205600pt;}
.y1a7{bottom:829.583467pt;}
.y1c5{bottom:833.361200pt;}
.y239{bottom:836.007200pt;}
.y56{bottom:836.356400pt;}
.y66{bottom:836.764667pt;}
.y15b{bottom:838.218000pt;}
.y1c6{bottom:845.756933pt;}
.yed{bottom:847.872267pt;}
.y1a6{bottom:848.250133pt;}
.y238{bottom:849.340533pt;}
.y15a{bottom:852.618000pt;}
.y55{bottom:855.023067pt;}
.y65{bottom:855.431333pt;}
.y1c7{bottom:858.161502pt;}
.y237{bottom:862.673867pt;}
.y13b{bottom:865.110667pt;}
.ya2{bottom:866.329638pt;}
.yec{bottom:866.538933pt;}
.y1d9{bottom:866.899914pt;}
.y1a5{bottom:866.916800pt;}
.y14b{bottom:870.186667pt;}
.y1c8{bottom:870.572607pt;}
.y54{bottom:873.689733pt;}
.y225{bottom:873.783333pt;}
.y64{bottom:874.098000pt;}
.y14d{bottom:874.834133pt;}
.y1d8{bottom:875.646533pt;}
.y236{bottom:876.007200pt;}
.ya{bottom:876.940533pt;}
.y1c9{bottom:882.983711pt;}
.y14a{bottom:884.936470pt;}
.yeb{bottom:885.205600pt;}
.y1a4{bottom:885.583467pt;}
.y1da{bottom:891.015250pt;}
.y53{bottom:892.356400pt;}
.y63{bottom:892.764667pt;}
.y272{bottom:893.007333pt;}
.y1d5{bottom:893.539600pt;}
.y1ca{bottom:895.394815pt;}
.y9{bottom:897.386667pt;}
.ya3{bottom:903.614331pt;}
.yea{bottom:903.872267pt;}
.y1a3{bottom:904.250133pt;}
.y157{bottom:906.378667pt;}
.y1cb{bottom:907.805920pt;}
.y52{bottom:911.023067pt;}
.y62{bottom:911.431333pt;}
.y1db{bottom:913.567259pt;}
.y141{bottom:916.409067pt;}
.y8{bottom:917.832933pt;}
.y235{bottom:919.385067pt;}
.y142{bottom:919.614400pt;}
.y1cc{bottom:920.210489pt;}
.ye9{bottom:922.538933pt;}
.y1a2{bottom:922.916800pt;}
.y1dc{bottom:927.388682pt;}
.y51{bottom:929.689733pt;}
.y61{bottom:930.098000pt;}
.y1cd{bottom:932.621593pt;}
.y234{bottom:932.718400pt;}
.y154{bottom:933.138667pt;}
.y7{bottom:938.279200pt;}
.ya4{bottom:940.932185pt;}
.y1a1{bottom:941.583467pt;}
.y1ce{bottom:945.032697pt;}
.y144{bottom:946.009333pt;}
.y143{bottom:946.439600pt;}
.y50{bottom:948.356400pt;}
.y60{bottom:948.764667pt;}
.y6{bottom:953.885200pt;}
.y233{bottom:954.097867pt;}
.y1cf{bottom:957.443802pt;}
.y152{bottom:959.489333pt;}
.ye8{bottom:959.872267pt;}
.y1a0{bottom:960.250133pt;}
.y4f{bottom:967.023067pt;}
.y232{bottom:967.431200pt;}
.y5f{bottom:967.431333pt;}
.y145{bottom:969.213333pt;}
.y1d0{bottom:969.854906pt;}
.y146{bottom:971.895067pt;}
.y5{bottom:972.551867pt;}
.ya5{bottom:978.216877pt;}
.y19f{bottom:978.916800pt;}
.y231{bottom:980.764533pt;}
.y1d1{bottom:982.249467pt;}
.y150{bottom:984.529333pt;}
.y4e{bottom:985.689733pt;}
.y5e{bottom:986.098000pt;}
.y1d2{bottom:994.645333pt;}
.y147{bottom:996.662267pt;}
.y230{bottom:996.764533pt;}
.y148{bottom:997.264533pt;}
.y19e{bottom:997.583467pt;}
.y1d7{bottom:998.690133pt;}
.y4{bottom:998.777733pt;}
.y4d{bottom:1004.356400pt;}
.y5d{bottom:1004.764667pt;}
.y1d3{bottom:1007.056438pt;}
.y1dd{bottom:1007.992270pt;}
.y14e{bottom:1009.669333pt;}
.y22f{bottom:1010.097867pt;}
.ya6{bottom:1015.501569pt;}
.y19d{bottom:1016.250133pt;}
.y149{bottom:1018.374800pt;}
.y3{bottom:1020.111067pt;}
.y4c{bottom:1023.023067pt;}
.y22e{bottom:1023.431200pt;}
.y5c{bottom:1023.431333pt;}
.y2{bottom:1056.119733pt;}
.h3d{height:-33.570667pt;}
.h2c{height:-30.100000pt;}
.h3a{height:5.008000pt;}
.h3b{height:5.076000pt;}
.h39{height:5.077333pt;}
.h38{height:10.326667pt;}
.h4d{height:14.616605pt;}
.h4b{height:16.131763pt;}
.h4c{height:16.174480pt;}
.h45{height:16.215614pt;}
.h49{height:16.361888pt;}
.h4a{height:16.405214pt;}
.h2f{height:17.285299pt;}
.h2d{height:17.708714pt;}
.h2e{height:17.756114pt;}
.h35{height:17.847869pt;}
.h43{height:17.896311pt;}
.h34{height:17.923495pt;}
.h44{height:17.944140pt;}
.h42{height:18.151608pt;}
.h41{height:18.200119pt;}
.h37{height:19.556440pt;}
.h47{height:19.985881pt;}
.h2b{height:21.631244pt;}
.h48{height:21.815480pt;}
.h33{height:21.893425pt;}
.h40{height:22.172200pt;}
.h2a{height:22.665398pt;}
.h32{height:23.898117pt;}
.h3f{height:24.202144pt;}
.h15{height:27.425714pt;}
.h26{height:28.213739pt;}
.h27{height:28.288912pt;}
.h22{height:29.807834pt;}
.h1a{height:29.977908pt;}
.h1b{height:30.057895pt;}
.h20{height:30.233053pt;}
.h16{height:30.268596pt;}
.h21{height:30.313781pt;}
.h14{height:30.700388pt;}
.h28{height:30.784123pt;}
.h1c{height:32.382329pt;}
.h1d{height:32.708952pt;}
.h25{height:34.463006pt;}
.h6{height:34.894675pt;}
.h7{height:34.895208pt;}
.hf{height:36.234375pt;}
.h12{height:37.500400pt;}
.h24{height:37.618566pt;}
.h18{height:39.970791pt;}
.h8{height:40.260417pt;}
.h1f{height:40.310738pt;}
.h13{height:40.933973pt;}
.h19{height:42.022737pt;}
.hb{height:44.286458pt;}
.he{height:44.390625pt;}
.hd{height:44.718750pt;}
.h3{height:49.322917pt;}
.hc{height:49.687500pt;}
.h2{height:52.338542pt;}
.ha{height:54.255208pt;}
.h9{height:54.656250pt;}
.h5{height:59.187500pt;}
.h4{height:69.562500pt;}
.h10{height:103.020833pt;}
.h36{height:163.346667pt;}
.h31{height:168.422667pt;}
.h3e{height:213.718667pt;}
.h3c{height:215.064000pt;}
.h30{height:221.380000pt;}
.h29{height:223.621333pt;}
.h1e{height:277.210667pt;}
.h17{height:284.976000pt;}
.h46{height:299.045333pt;}
.h23{height:301.336000pt;}
.h11{height:325.817333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wb{width:13.938667pt;}
.wc{width:13.957333pt;}
.wa{width:27.534667pt;}
.w8{width:313.756000pt;}
.w9{width:314.010667pt;}
.wd{width:315.100000pt;}
.w7{width:320.925333pt;}
.wf{width:321.638667pt;}
.we{width:322.016000pt;}
.w5{width:548.636000pt;}
.w6{width:558.109333pt;}
.w2{width:591.728000pt;}
.w3{width:593.008000pt;}
.w4{width:598.054667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x32{left:-7.331467pt;}
.x50{left:-6.242133pt;}
.x3b{left:-3.241200pt;}
.x45{left:-2.139867pt;}
.x0{left:0.000000pt;}
.x49{left:5.162267pt;}
.x59{left:6.299733pt;}
.x35{left:7.512267pt;}
.x34{left:11.014933pt;}
.x57{left:12.104267pt;}
.x2a{left:13.009467pt;}
.x11{left:14.156133pt;}
.x56{left:15.285200pt;}
.x33{left:17.391067pt;}
.x55{left:18.480400pt;}
.x24{left:37.011867pt;}
.xe{left:63.223733pt;}
.x3{left:64.252000pt;}
.x5{left:66.141733pt;}
.x64{left:79.504800pt;}
.x4c{left:81.776400pt;}
.x5c{left:83.438267pt;}
.x8{left:84.422000pt;}
.xf{left:86.318667pt;}
.x1e{left:88.374667pt;}
.x5b{left:90.305067pt;}
.x5a{left:93.564133pt;}
.x23{left:102.285333pt;}
.x18{left:103.558667pt;}
.x5e{left:106.829867pt;}
.x29{left:109.102667pt;}
.x4e{left:125.645600pt;}
.x15{left:126.650400pt;}
.xd{left:128.291200pt;}
.xc{left:129.310133pt;}
.x26{left:130.327467pt;}
.x1b{left:136.408000pt;}
.x22{left:139.297200pt;}
.x1a{left:141.790533pt;}
.x5f{left:143.146133pt;}
.x21{left:144.752133pt;}
.x13{left:148.613308pt;}
.x2d{left:151.987350pt;}
.x12{left:154.118133pt;}
.x20{left:155.637733pt;}
.x2c{left:157.085825pt;}
.x2b{left:162.154933pt;}
.x14{left:166.535467pt;}
.x2e{left:173.340667pt;}
.x25{left:182.319600pt;}
.x60{left:214.930948pt;}
.x66{left:216.729200pt;}
.x5d{left:225.095333pt;}
.x28{left:226.382267pt;}
.x9{left:228.696667pt;}
.x30{left:236.481867pt;}
.x1d{left:251.508000pt;}
.x61{left:287.605658pt;}
.x65{left:306.837467pt;}
.x67{left:311.301600pt;}
.x31{left:313.826000pt;}
.x4f{left:314.915200pt;}
.x3c{left:322.070667pt;}
.x58{left:335.749333pt;}
.x2f{left:340.855467pt;}
.x17{left:351.172400pt;}
.x27{left:360.723067pt;}
.x63{left:368.629067pt;}
.x1c{left:369.615867pt;}
.x62{left:372.458291pt;}
.x16{left:379.323067pt;}
.x7{left:405.354267pt;}
.x39{left:406.299200pt;}
.x6{left:407.244000pt;}
.x44{left:411.438274pt;}
.x54{left:415.068267pt;}
.x38{left:417.481600pt;}
.x53{left:418.570933pt;}
.x37{left:420.663291pt;}
.x52{left:421.752624pt;}
.x36{left:423.857733pt;}
.x51{left:424.947067pt;}
.x68{left:427.352400pt;}
.x3e{left:431.087467pt;}
.x2{left:449.414533pt;}
.x41{left:456.456933pt;}
.x3f{left:459.791200pt;}
.x4d{left:491.923200pt;}
.xa{left:494.568800pt;}
.x46{left:496.604933pt;}
.x4{left:514.624533pt;}
.x47{left:520.661333pt;}
.x43{left:544.031200pt;}
.x19{left:557.920667pt;}
.x1f{left:562.668267pt;}
.x10{left:571.366267pt;}
.x48{left:599.532000pt;}
.x42{left:602.528800pt;}
.x4a{left:624.657333pt;}
.xb{left:635.063867pt;}
.x40{left:641.938267pt;}
.x3d{left:669.007200pt;}
.x4b{left:704.960000pt;}
.x1{left:708.871600pt;}
.x3a{left:712.536000pt;}
.x69{left:713.789600pt;}
}




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