
    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_6bb6064e152d20da68739efe.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight: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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight: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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight: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_4c43d6385c179ee74a7e6c08.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;font-style:normal;font-weight: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_6dfb71990d9293af8289e488.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.151000;font-style:normal;font-weight: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_2a7fc92cfbf5671f9d053a13.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2fcc9647fdc8ea6e74477112.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.734000;font-style:normal;font-weight: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_0ed6928f649133d46adddf26.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006348;font-style:normal;font-weight: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_6c771847daf0c99019f5f1cd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.174316;font-style:normal;font-weight: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_5e405117304ebb1ca5ed9ed8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006348;font-style:normal;font-weight: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_a25e7aee0f44fc09a379037e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.727539;font-style:normal;font-weight: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_eb81d57cc4fdae9fc31eeda4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.734863;font-style:normal;font-weight: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_59fe086477633a869d20e6ed.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,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:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v8{vertical-align:-1.266000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.664000px;}
.v4{vertical-align:7.158000px;}
.v1{vertical-align:21.702000px;}
.v5{vertical-align:32.874000px;}
.v6{vertical-align:65.754000px;}
.ls27{letter-spacing:-0.180360px;}
.ls28{letter-spacing:-0.156312px;}
.ls2a{letter-spacing:-0.150300px;}
.ls2d{letter-spacing:-0.144288px;}
.ls2b{letter-spacing:-0.138276px;}
.ls2e{letter-spacing:-0.132264px;}
.ls20{letter-spacing:-0.114228px;}
.ls31{letter-spacing:-0.108216px;}
.ls21{letter-spacing:-0.090180px;}
.ls22{letter-spacing:-0.084168px;}
.ls23{letter-spacing:-0.081000px;}
.ls1e{letter-spacing:-0.054108px;}
.ls24{letter-spacing:-0.027000px;}
.ls1f{letter-spacing:-0.024048px;}
.ls30{letter-spacing:-0.021600px;}
.ls25{letter-spacing:-0.018036px;}
.ls26{letter-spacing:-0.006012px;}
.ls1d{letter-spacing:-0.004788px;}
.ls0{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.000652px;}
.ls16{letter-spacing:0.006012px;}
.ls11{letter-spacing:0.012024px;}
.ls15{letter-spacing:0.018036px;}
.ls13{letter-spacing:0.021600px;}
.ls1c{letter-spacing:0.024048px;}
.ls19{letter-spacing:0.027000px;}
.ls12{letter-spacing:0.030060px;}
.ls17{letter-spacing:0.042084px;}
.ls18{letter-spacing:0.048096px;}
.ls1b{letter-spacing:0.048600px;}
.ls14{letter-spacing:0.084168px;}
.ls29{letter-spacing:0.096192px;}
.ls2c{letter-spacing:0.102204px;}
.ls2f{letter-spacing:0.156312px;}
.ls10{letter-spacing:0.167580px;}
.ls1a{letter-spacing:0.178200px;}
.lsf{letter-spacing:0.181944px;}
.ls1{letter-spacing:2.989200px;}
.ls5{letter-spacing:11.954850px;}
.lsa{letter-spacing:13.569061px;}
.ls8{letter-spacing:13.808164px;}
.ls7{letter-spacing:14.884124px;}
.ls9{letter-spacing:14.943900px;}
.ls34{letter-spacing:15.063451px;}
.lsb{letter-spacing:15.123227px;}
.lse{letter-spacing:15.183002px;}
.ls33{letter-spacing:15.302554px;}
.ls6{letter-spacing:16.976270px;}
.lsd{letter-spacing:17.753353px;}
.ls2{letter-spacing:17.935200px;}
.ls32{letter-spacing:18.709763px;}
.ls35{letter-spacing:18.948865px;}
.lsc{letter-spacing:19.849841px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws127{word-spacing:-33.892765px;}
.ws80{word-spacing:-14.975892px;}
.ws2b{word-spacing:-14.943900px;}
.wsee{word-spacing:-13.449600px;}
.ws7e{word-spacing:-12.151944px;}
.ws7f{word-spacing:-11.970000px;}
.ws7d{word-spacing:-11.965212px;}
.ws28{word-spacing:-11.955150px;}
.wsc{word-spacing:-11.357400px;}
.wsa{word-spacing:-10.460700px;}
.ws86{word-spacing:-2.801592px;}
.ws125{word-spacing:-2.689902px;}
.ws48{word-spacing:-2.510575px;}
.ws38{word-spacing:-2.450800px;}
.ws85{word-spacing:-2.404800px;}
.ws75{word-spacing:-2.391024px;}
.ws59{word-spacing:-2.331248px;}
.ws12d{word-spacing:-2.271473px;}
.wsac{word-spacing:-2.211697px;}
.ws13a{word-spacing:-2.205734px;}
.ws13b{word-spacing:-2.151936px;}
.ws73{word-spacing:-2.032370px;}
.ws11c{word-spacing:-1.972595px;}
.ws3b{word-spacing:-1.853044px;}
.ws3c{word-spacing:-1.793268px;}
.ws126{word-spacing:-1.733492px;}
.ws134{word-spacing:-1.721549px;}
.ws15a{word-spacing:-1.667750px;}
.ws129{word-spacing:-1.613941px;}
.ws76{word-spacing:-1.554166px;}
.ws105{word-spacing:-1.494390px;}
.ws58{word-spacing:-1.434614px;}
.ws4b{word-spacing:-1.374839px;}
.ws63{word-spacing:-1.255288px;}
.ws14c{word-spacing:-1.183565px;}
.ws4a{word-spacing:-1.135736px;}
.ws106{word-spacing:-1.075961px;}
.ws8e{word-spacing:-1.022040px;}
.ws11f{word-spacing:-1.016185px;}
.ws46{word-spacing:-0.956410px;}
.ws32{word-spacing:-0.896634px;}
.ws31{word-spacing:-0.836858px;}
.ws6c{word-spacing:-0.777083px;}
.ws121{word-spacing:-0.717307px;}
.ws93{word-spacing:-0.661320px;}
.ws6a{word-spacing:-0.657532px;}
.ws8c{word-spacing:-0.649296px;}
.ws8d{word-spacing:-0.637272px;}
.ws39{word-spacing:-0.597756px;}
.ws94{word-spacing:-0.541080px;}
.ws7c{word-spacing:-0.537980px;}
.ws34{word-spacing:-0.478205px;}
.ws41{word-spacing:-0.418429px;}
.ws16{word-spacing:-0.376589px;}
.ws2f{word-spacing:-0.358654px;}
.ws150{word-spacing:-0.322790px;}
.ws3e{word-spacing:-0.298878px;}
.ws83{word-spacing:-0.272916px;}
.ws13{word-spacing:-0.268992px;}
.ws29{word-spacing:-0.239102px;}
.ws137{word-spacing:-0.215194px;}
.ws1e{word-spacing:-0.179327px;}
.ws12{word-spacing:-0.161395px;}
.wsd{word-spacing:-0.143462px;}
.wsa3{word-spacing:-0.138276px;}
.ws47{word-spacing:-0.119551px;}
.wsc0{word-spacing:-0.107597px;}
.ws81{word-spacing:-0.060120px;}
.ws1a{word-spacing:-0.059776px;}
.ws15{word-spacing:-0.053798px;}
.wsdc{word-spacing:-0.047821px;}
.ws13e{word-spacing:-0.012355px;}
.ws159{word-spacing:-0.007526px;}
.ws158{word-spacing:-0.006442px;}
.ws9e{word-spacing:-0.006012px;}
.ws147{word-spacing:-0.005309px;}
.ws27{word-spacing:-0.000448px;}
.wsb{word-spacing:-0.000208px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:0.000631px;}
.ws9a{word-spacing:0.006012px;}
.ws14e{word-spacing:0.043311px;}
.ws138{word-spacing:0.053798px;}
.ws23{word-spacing:0.059776px;}
.ws87{word-spacing:0.060120px;}
.ws99{word-spacing:0.096192px;}
.ws148{word-spacing:0.107597px;}
.ws20{word-spacing:0.119551px;}
.ws96{word-spacing:0.151200px;}
.ws89{word-spacing:0.156600px;}
.ws133{word-spacing:0.161395px;}
.ws95{word-spacing:0.174348px;}
.ws88{word-spacing:0.178200px;}
.ws30{word-spacing:0.179327px;}
.ws100{word-spacing:0.191282px;}
.ws98{word-spacing:0.205200px;}
.ws11{word-spacing:0.215194px;}
.ws22{word-spacing:0.239102px;}
.ws97{word-spacing:0.259200px;}
.ws14{word-spacing:0.268992px;}
.ws21{word-spacing:0.298878px;}
.ws155{word-spacing:0.322790px;}
.ws33{word-spacing:0.358654px;}
.ws8f{word-spacing:0.408816px;}
.ws2a{word-spacing:0.418429px;}
.ws3d{word-spacing:0.478205px;}
.ws151{word-spacing:0.484186px;}
.ws24{word-spacing:0.537980px;}
.ws13f{word-spacing:0.591782px;}
.ws36{word-spacing:0.597756px;}
.ws139{word-spacing:0.645581px;}
.ws26{word-spacing:0.657532px;}
.ws55{word-spacing:0.717307px;}
.ws5d{word-spacing:0.777083px;}
.ws12c{word-spacing:0.836858px;}
.ws3a{word-spacing:0.896634px;}
.ws11e{word-spacing:0.956410px;}
.wsb0{word-spacing:1.075961px;}
.ws128{word-spacing:1.135736px;}
.ws79{word-spacing:1.195512px;}
.wsc8{word-spacing:1.195515px;}
.wsc9{word-spacing:1.243336px;}
.ws1f{word-spacing:1.255288px;}
.ws156{word-spacing:1.291162px;}
.ws45{word-spacing:1.315063px;}
.ws6b{word-spacing:1.374839px;}
.ws9{word-spacing:1.380812px;}
.ws44{word-spacing:1.494390px;}
.wsc7{word-spacing:1.530259px;}
.ws11a{word-spacing:1.613941px;}
.ws17{word-spacing:1.667750px;}
.ws131{word-spacing:1.673717px;}
.ws56{word-spacing:1.733492px;}
.ws57{word-spacing:1.793268px;}
.ws132{word-spacing:1.829146px;}
.ws54{word-spacing:1.853044px;}
.ws78{word-spacing:1.912819px;}
.ws40{word-spacing:1.972595px;}
.ws104{word-spacing:2.032370px;}
.wsab{word-spacing:2.056286px;}
.ws5b{word-spacing:2.092146px;}
.wsdd{word-spacing:2.151922px;}
.ws7a{word-spacing:2.211697px;}
.ws91{word-spacing:2.248488px;}
.ws52{word-spacing:2.271473px;}
.ws5a{word-spacing:2.331248px;}
.ws154{word-spacing:2.367130px;}
.ws67{word-spacing:2.450800px;}
.ws2c{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.ws53{word-spacing:2.570351px;}
.ws65{word-spacing:2.630126px;}
.ws61{word-spacing:2.689902px;}
.ws10{word-spacing:2.689920px;}
.ws92{word-spacing:2.723436px;}
.wsaf{word-spacing:2.749678px;}
.ws72{word-spacing:2.809453px;}
.ws14f{word-spacing:2.851315px;}
.ws119{word-spacing:2.869229px;}
.wsb7{word-spacing:2.869236px;}
.ws42{word-spacing:2.929004px;}
.wsda{word-spacing:3.012698px;}
.ws13c{word-spacing:3.012710px;}
.ws3f{word-spacing:3.048556px;}
.wsff{word-spacing:3.108339px;}
.ws101{word-spacing:3.156160px;}
.ws64{word-spacing:3.168107px;}
.wsdb{word-spacing:3.203980px;}
.ws18{word-spacing:3.219667px;}
.ws141{word-spacing:3.221491px;}
.ws149{word-spacing:3.222010px;}
.ws146{word-spacing:3.222768px;}
.ws14d{word-spacing:3.223987px;}
.ws51{word-spacing:3.227882px;}
.ws13d{word-spacing:3.227904px;}
.ws142{word-spacing:3.281702px;}
.wsb8{word-spacing:3.347434px;}
.ws14a{word-spacing:3.389299px;}
.ws4e{word-spacing:3.407209px;}
.ws157{word-spacing:3.443098px;}
.ws140{word-spacing:3.496896px;}
.ws14b{word-spacing:3.550694px;}
.ws19{word-spacing:3.586536px;}
.ws7b{word-spacing:3.646312px;}
.wsbd{word-spacing:3.706087px;}
.ws6d{word-spacing:3.765863px;}
.ws1c{word-spacing:3.825638px;}
.wsde{word-spacing:3.885414px;}
.ws25{word-spacing:3.945190px;}
.ws82{word-spacing:4.004965px;}
.ws90{word-spacing:4.016016px;}
.ws5f{word-spacing:4.124516px;}
.ws77{word-spacing:4.184292px;}
.ws1d{word-spacing:4.244068px;}
.ws11d{word-spacing:4.303843px;}
.ws152{word-spacing:4.357670px;}
.ws102{word-spacing:4.363619px;}
.ws2e{word-spacing:4.423394px;}
.ws74{word-spacing:4.483170px;}
.ws60{word-spacing:4.542946px;}
.ws120{word-spacing:4.602721px;}
.ws35{word-spacing:4.662497px;}
.ws49{word-spacing:4.722272px;}
.ws37{word-spacing:4.782048px;}
.wsad{word-spacing:4.841824px;}
.ws4f{word-spacing:4.901599px;}
.wsbf{word-spacing:5.080926px;}
.ws66{word-spacing:5.140702px;}
.wsa7{word-spacing:5.236452px;}
.ws50{word-spacing:5.260253px;}
.ws1b{word-spacing:5.320028px;}
.wsbe{word-spacing:5.379804px;}
.ws5e{word-spacing:5.439580px;}
.ws7{word-spacing:5.481407px;}
.ws118{word-spacing:5.618906px;}
.ws62{word-spacing:5.678682px;}
.ws8b{word-spacing:5.765508px;}
.ws5c{word-spacing:5.798233px;}
.ws103{word-spacing:5.858009px;}
.ws8a{word-spacing:5.873724px;}
.ws12a{word-spacing:5.977560px;}
.ws2d{word-spacing:6.037336px;}
.wsf{word-spacing:6.186816px;}
.ws145{word-spacing:6.240614px;}
.ws4c{word-spacing:6.276438px;}
.ws144{word-spacing:6.294413px;}
.ws4d{word-spacing:6.336214px;}
.ws15b{word-spacing:6.509606px;}
.ws11b{word-spacing:6.575316px;}
.ws71{word-spacing:6.694867px;}
.ws70{word-spacing:6.754643px;}
.ws130{word-spacing:6.993745px;}
.ws136{word-spacing:7.155187px;}
.ws12e{word-spacing:7.173072px;}
.ws69{word-spacing:7.232848px;}
.ws12b{word-spacing:7.292623px;}
.wsae{word-spacing:7.471950px;}
.ws117{word-spacing:7.531726px;}
.ws6f{word-spacing:7.830604px;}
.ws43{word-spacing:7.890379px;}
.ws12f{word-spacing:8.368584px;}
.ws6e{word-spacing:9.564096px;}
.ws5{word-spacing:9.833058px;}
.ws68{word-spacing:11.118262px;}
.wsa5{word-spacing:11.291400px;}
.wsa6{word-spacing:11.361600px;}
.ws84{word-spacing:11.620476px;}
.ws153{word-spacing:11.781850px;}
.ws6{word-spacing:11.841512px;}
.wsc6{word-spacing:13.867974px;}
.ws3{word-spacing:15.481836px;}
.wse{word-spacing:15.804155px;}
.ws143{word-spacing:15.924326px;}
.ws8{word-spacing:16.067635px;}
.ws135{word-spacing:17.684705px;}
.ws4{word-spacing:22.339429px;}
.wsc5{word-spacing:30.844287px;}
.wsed{word-spacing:33.086016px;}
.wsfd{word-spacing:70.529702px;}
.wsfa{word-spacing:70.852493px;}
.wsfb{word-spacing:72.627840px;}
.wsfe{word-spacing:75.263962px;}
.wsdf{word-spacing:76.662720px;}
.wsfc{word-spacing:82.634342px;}
.wsf6{word-spacing:82.741939px;}
.wsf9{word-spacing:84.194496px;}
.wsf7{word-spacing:84.624883px;}
.wsf8{word-spacing:85.593254px;}
.wsf5{word-spacing:88.713562px;}
.wsf4{word-spacing:90.166118px;}
.wsf3{word-spacing:91.080691px;}
.wsf2{word-spacing:109.802534px;}
.wsd8{word-spacing:110.232922px;}
.ws115{word-spacing:110.663309px;}
.ws122{word-spacing:111.016109px;}
.wsd9{word-spacing:113.353229px;}
.ws116{word-spacing:113.729818px;}
.wscb{word-spacing:114.746621px;}
.wsd4{word-spacing:114.859584px;}
.ws111{word-spacing:115.289971px;}
.wsd5{word-spacing:116.634931px;}
.ws112{word-spacing:117.011520px;}
.wsd7{word-spacing:119.271053px;}
.ws114{word-spacing:119.647642px;}
.wsf0{word-spacing:122.082576px;}
.wsd1{word-spacing:124.973683px;}
.wsce{word-spacing:126.480038px;}
.wsd6{word-spacing:126.641434px;}
.wscf{word-spacing:126.910426px;}
.ws113{word-spacing:127.018022px;}
.ws123{word-spacing:127.125619px;}
.ws10c{word-spacing:127.179418px;}
.wsd0{word-spacing:127.932595px;}
.ws10b{word-spacing:128.416781px;}
.ws10f{word-spacing:128.631974px;}
.ws10d{word-spacing:129.062362px;}
.ws10e{word-spacing:130.030733px;}
.wsd3{word-spacing:131.106701px;}
.wscc{word-spacing:132.613056px;}
.wseb{word-spacing:132.666854px;}
.wscd{word-spacing:132.720653px;}
.ws10a{word-spacing:133.151040px;}
.ws109{word-spacing:134.603597px;}
.wsef{word-spacing:134.623978px;}
.ws110{word-spacing:135.518170px;}
.wsec{word-spacing:135.787162px;}
.wsd2{word-spacing:136.916928px;}
.wse7{word-spacing:137.293517px;}
.wse8{word-spacing:139.068864px;}
.wsc1{word-spacing:139.152710px;}
.ws124{word-spacing:140.629018px;}
.wsea{word-spacing:141.704986px;}
.wse9{word-spacing:149.075366px;}
.wse1{word-spacing:149.182963px;}
.wse4{word-spacing:150.635520px;}
.wse2{word-spacing:151.065907px;}
.wse3{word-spacing:152.034278px;}
.wsf1{word-spacing:152.572262px;}
.wse6{word-spacing:155.154586px;}
.wse5{word-spacing:162.632563px;}
.wsb4{word-spacing:168.604186px;}
.wsb1{word-spacing:178.395494px;}
.wsca{word-spacing:180.003466px;}
.wsc3{word-spacing:182.352710px;}
.ws107{word-spacing:185.273693px;}
.wsb3{word-spacing:188.778586px;}
.wsb5{word-spacing:188.832384px;}
.wsb6{word-spacing:209.006784px;}
.wsb2{word-spacing:215.677786px;}
.wsc4{word-spacing:232.301491px;}
.wsa4{word-spacing:232.850772px;}
.wsa2{word-spacing:232.904880px;}
.wsa1{word-spacing:233.145360px;}
.wsa0{word-spacing:233.151372px;}
.ws9f{word-spacing:233.157384px;}
.ws9d{word-spacing:233.163396px;}
.wse0{word-spacing:242.731978px;}
.wsaa{word-spacing:243.921946px;}
.ws9c{word-spacing:276.948792px;}
.wsa9{word-spacing:282.818189px;}
.wsa8{word-spacing:284.270746px;}
.ws108{word-spacing:296.100576px;}
.ws9b{word-spacing:691.470180px;}
.wsc2{word-spacing:794.014829px;}
.wsb9{word-spacing:1012.754880px;}
.wsbb{word-spacing:1044.173146px;}
.wsbc{word-spacing:1052.673293px;}
.wsba{word-spacing:1057.622746px;}
._1e{margin-left:-412.561476px;}
._1f{margin-left:-232.664400px;}
._1d{margin-left:-173.157624px;}
._2d{margin-left:-47.465723px;}
._20{margin-left:-36.739332px;}
._97{margin-left:-18.948865px;}
._98{margin-left:-7.866629px;}
._f{margin-left:-6.808434px;}
._8{margin-left:-5.308087px;}
._0{margin-left:-3.849538px;}
._1{margin-left:-2.301354px;}
._9{margin-left:-1.022170px;}
._1c{width:1.094184px;}
._6{width:2.998561px;}
._1a{width:5.349910px;}
._2{width:12.971268px;}
._10{width:14.822586px;}
._99{width:15.836846px;}
._a{width:16.934519px;}
._e{width:18.889090px;}
._c{width:20.473222px;}
._16{width:21.626790px;}
._d{width:22.894055px;}
._19{width:24.149342px;}
._3{width:25.314894px;}
._13{width:26.486575px;}
._17{width:27.741863px;}
._2e{width:29.828024px;}
._4{width:31.256572px;}
._5{width:33.355008px;}
._b{width:35.327380px;}
._14{width:37.413541px;}
._18{width:39.272569px;}
._24{width:40.671180px;}
._15{width:43.092223px;}
._2a{width:50.440680px;}
._7{width:54.404519px;}
._56{width:56.093564px;}
._25{width:61.791336px;}
._27{width:81.306288px;}
._26{width:90.618876px;}
._74{width:93.125030px;}
._6f{width:96.245338px;}
._29{width:103.274136px;}
._28{width:115.520580px;}
._70{width:116.796326px;}
._75{width:117.926093px;}
._77{width:118.948262px;}
._7a{width:120.723610px;}
._78{width:122.176166px;}
._71{width:123.252134px;}
._23{width:124.352208px;}
._79{width:127.932595px;}
._73{width:129.546547px;}
._72{width:135.948557px;}
._66{width:137.078323px;}
._76{width:138.853670px;}
._65{width:140.198630px;}
._5c{width:141.435994px;}
._60{width:143.049946px;}
._64{width:146.170253px;}
._3f{width:147.515213px;}
._87{width:148.686676px;}
._57{width:149.768400px;}
._5a{width:151.926682px;}
._62{width:153.648230px;}
._96{width:159.297062px;}
._91{width:160.534426px;}
._8b{width:162.578765px;}
._95{width:164.085120px;}
._8f{width:165.214886px;}
._41{width:166.398451px;}
._5e{width:167.474419px;}
._4c{width:168.657984px;}
._55{width:171.455501px;}
._58{width:173.030659px;}
._84{width:178.126502px;}
._5d{width:180.532426px;}
._21{width:182.378790px;}
._7d{width:183.721536px;}
._94{width:186.127459px;}
._93{width:187.595021px;}
._4b{width:188.778586px;}
._4a{width:190.966365px;}
._90{width:195.557184px;}
._40{width:196.794547px;}
._47{width:202.281984px;}
._82{width:203.680742px;}
._85{width:205.294694px;}
._80{width:208.361203px;}
._7b{width:210.405542px;}
._88{width:215.785382px;}
._67{width:217.076544px;}
._49{width:220.842432px;}
._46{width:222.133594px;}
._32{width:223.891110px;}
._6a{width:225.630490px;}
._3e{width:227.597222px;}
._6c{width:229.181184px;}
._44{width:231.225523px;}
._22{width:232.826854px;}
._2c{width:234.029124px;}
._31{width:235.254550px;}
._48{width:236.557418px;}
._6b{width:237.573734px;}
._54{width:245.697293px;}
._89{width:246.932442px;}
._7e{width:248.494810px;}
._42{width:250.051946px;}
._6d{width:254.161597px;}
._52{width:255.327206px;}
._45{width:262.162620px;}
._53{width:268.328464px;}
._68{width:270.229363px;}
._6e{width:272.183936px;}
._2b{width:273.191292px;}
._86{width:274.479437px;}
._83{width:276.093389px;}
._69{width:278.245325px;}
._81{width:282.011213px;}
._4e{width:288.348490px;}
._43{width:289.704384px;}
._3d{width:293.034031px;}
._8c{width:296.919223px;}
._3c{width:303.686114px;}
._34{width:304.923478px;}
._5b{width:311.438938px;}
._3a{width:313.369826px;}
._8a{width:314.654854px;}
._3b{width:316.962342px;}
._61{width:318.863117px;}
._59{width:319.998737px;}
._35{width:323.860514px;}
._7c{width:328.493030px;}
._63{width:335.594419px;}
._5f{width:336.664534px;}
._37{width:340.274880px;}
._8d{width:343.556582px;}
._36{width:349.097818px;}
._39{width:359.803699px;}
._38{width:370.993766px;}
._33{width:378.902131px;}
._4f{width:410.427994px;}
._51{width:411.772954px;}
._7f{width:421.552161px;}
._50{width:437.273395px;}
._30{width:500.378918px;}
._8e{width:529.304503px;}
._92{width:531.199409px;}
._2f{width:703.037491px;}
._11{width:723.860422px;}
._1b{width:2483.080740px;}
._4d{width:2500.851000px;}
._12{width:2524.761000px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:45.429600px;}
.fsa{font-size:47.820600px;}
.fsc{font-size:47.880000px;}
.fsb{font-size:53.798400px;}
.fse{font-size:54.000000px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsd{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:107.596800px;}
.y140{bottom:-715.483812px;}
.y13f{bottom:-696.314550px;}
.y13e{bottom:-659.505000px;}
.y13d{bottom:-642.134550px;}
.y13c{bottom:-622.693497px;}
.y13b{bottom:-601.723641px;}
.y13a{bottom:-581.473722px;}
.y139{bottom:-561.223803px;}
.y138{bottom:-540.973884px;}
.y137{bottom:-520.723965px;}
.y136{bottom:-500.564226px;}
.y135{bottom:-480.314307px;}
.y134{bottom:-460.064388px;}
.y133{bottom:-439.814469px;}
.y132{bottom:-419.564550px;}
.y131{bottom:-399.314175px;}
.y130{bottom:-378.344319px;}
.y12f{bottom:-358.094400px;}
.y12e{bottom:-337.844325px;}
.y12d{bottom:-316.874469px;}
.y12b{bottom:-296.624550px;}
.y12c{bottom:-276.464811px;}
.y12a{bottom:-246.404550px;}
.y129{bottom:-210.670284px;}
.y128{bottom:-191.410842px;}
.y127{bottom:-172.241580px;}
.y126{bottom:-152.982138px;}
.y125{bottom:-133.722696px;}
.y124{bottom:-114.553434px;}
.y123{bottom:-95.293992px;}
.y122{bottom:-76.034550px;}
.y121{bottom:-39.314550px;}
.y120{bottom:-16.813344px;}
.y0{bottom:0.000000px;}
.y65{bottom:31.890000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y64{bottom:103.621500px;}
.y36{bottom:104.646000px;}
.y262{bottom:104.844000px;}
.y22b{bottom:105.357000px;}
.y146{bottom:107.635500px;}
.y298{bottom:110.674500px;}
.y119{bottom:115.113000px;}
.yb6{bottom:117.355500px;}
.ye4{bottom:118.699500px;}
.yc1{bottom:119.148000px;}
.y9c{bottom:119.596500px;}
.y63{bottom:122.449500px;}
.y35{bottom:122.535000px;}
.y197{bottom:122.610000px;}
.y169{bottom:123.435000px;}
.y261{bottom:123.673500px;}
.y22a{bottom:124.186500px;}
.y145{bottom:126.465000px;}
.y297{bottom:127.935000px;}
.y2cd{bottom:133.719000px;}
.y118{bottom:133.942500px;}
.yb5{bottom:136.185000px;}
.ye3{bottom:137.529000px;}
.yc0{bottom:137.977500px;}
.y9b{bottom:138.426000px;}
.y21{bottom:139.264499px;}
.y34{bottom:140.422500px;}
.y62{bottom:141.279000px;}
.y196{bottom:141.439500px;}
.y168{bottom:142.264500px;}
.y260{bottom:142.503000px;}
.y229{bottom:143.016000px;}
.y296{bottom:145.195500px;}
.y144{bottom:145.294500px;}
.y2cc{bottom:150.978000px;}
.y117{bottom:152.772000px;}
.yb4{bottom:155.013000px;}
.ye2{bottom:156.358500px;}
.ybf{bottom:156.807000px;}
.y9a{bottom:157.255500px;}
.y33{bottom:158.310000px;}
.y61{bottom:160.108500px;}
.y195{bottom:160.269000px;}
.y167{bottom:161.094000px;}
.y25f{bottom:161.332500px;}
.y228{bottom:161.845500px;}
.y295{bottom:162.456000px;}
.y143{bottom:164.124000px;}
.y2cb{bottom:168.238500px;}
.y116{bottom:171.601500px;}
.yb3{bottom:173.842500px;}
.ye1{bottom:175.188000px;}
.ybe{bottom:175.636500px;}
.y99{bottom:176.085000px;}
.y32{bottom:176.199000px;}
.y60{bottom:178.938000px;}
.y194{bottom:179.098500px;}
.y294{bottom:179.716500px;}
.y166{bottom:179.923500px;}
.y25e{bottom:180.162000px;}
.y227{bottom:180.675000px;}
.y142{bottom:182.953500px;}
.y2ca{bottom:185.499000px;}
.y1c9{bottom:189.507000px;}
.y115{bottom:190.431000px;}
.yb2{bottom:192.672000px;}
.ye0{bottom:194.017500px;}
.y31{bottom:194.086500px;}
.ybd{bottom:194.466000px;}
.y98{bottom:194.914500px;}
.y1fe{bottom:195.759000px;}
.y18{bottom:196.933500px;}
.y293{bottom:196.977000px;}
.y5f{bottom:197.767500px;}
.y193{bottom:197.928000px;}
.y165{bottom:198.753000px;}
.y25d{bottom:198.991500px;}
.y226{bottom:199.504500px;}
.y2c9{bottom:202.759500px;}
.y1c8{bottom:208.336500px;}
.y114{bottom:209.260500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y1fd{bottom:209.955000px;}
.yb1{bottom:211.501500px;}
.y30{bottom:211.974000px;}
.ydf{bottom:212.847000px;}
.ybc{bottom:213.295500px;}
.y97{bottom:213.744000px;}
.y292{bottom:214.237500px;}
.y141{bottom:216.519000px;}
.y5e{bottom:216.597000px;}
.y192{bottom:216.756000px;}
.y164{bottom:217.582500px;}
.y25c{bottom:217.821000px;}
.y225{bottom:218.334000px;}
.y2c8{bottom:220.020000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1c7{bottom:227.166000px;}
.y113{bottom:228.090000px;}
.y2f{bottom:229.863000px;}
.yb0{bottom:230.331000px;}
.y291{bottom:231.498000px;}
.yde{bottom:231.676500px;}
.y1fc{bottom:231.787500px;}
.ybb{bottom:232.125000px;}
.y96{bottom:232.573500px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y5d{bottom:235.426500px;}
.y191{bottom:235.585500px;}
.y163{bottom:236.412000px;}
.y25b{bottom:236.650500px;}
.y224{bottom:237.163500px;}
.y2c7{bottom:237.280500px;}
.y11b{bottom:241.938000px;}
.y1c6{bottom:245.995500px;}
.y112{bottom:246.919500px;}
.y1fb{bottom:248.226000px;}
.y290{bottom:248.758500px;}
.yaf{bottom:249.160500px;}
.ydd{bottom:250.506000px;}
.yba{bottom:250.954500px;}
.y95{bottom:251.403000px;}
.y5c{bottom:254.256000px;}
.y190{bottom:254.415000px;}
.y2c6{bottom:254.541000px;}
.y162{bottom:255.241500px;}
.y25a{bottom:255.480000px;}
.y223{bottom:255.993000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y1fa{bottom:264.664500px;}
.y1c5{bottom:264.825000px;}
.y111{bottom:265.749000px;}
.y28f{bottom:266.017500px;}
.yae{bottom:267.990000px;}
.ydc{bottom:269.335500px;}
.yb9{bottom:269.784000px;}
.y94{bottom:270.232500px;}
.y2c5{bottom:271.801500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y5b{bottom:273.085500px;}
.y18f{bottom:273.244500px;}
.y161{bottom:274.071000px;}
.y259{bottom:274.309500px;}
.y222{bottom:274.822500px;}
.y11f{bottom:280.456008px;}
.y1f9{bottom:281.103000px;}
.y28e{bottom:283.278000px;}
.y1c4{bottom:283.654500px;}
.y110{bottom:284.578500px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.yad{bottom:286.819500px;}
.ydb{bottom:288.165000px;}
.yb8{bottom:288.613500px;}
.y93{bottom:289.062000px;}
.y5a{bottom:291.915000px;}
.y18e{bottom:292.074000px;}
.y160{bottom:292.900500px;}
.y258{bottom:293.139000px;}
.y221{bottom:293.652000px;}
.y2e{bottom:297.166500px;}
.y1f8{bottom:297.541500px;}
.y11e{bottom:299.715450px;}
.y28d{bottom:300.538500px;}
.y2d0{bottom:301.764000px;}
.y1c3{bottom:302.484000px;}
.y10f{bottom:303.408000px;}
.yac{bottom:305.649000px;}
.y2c4{bottom:306.321000px;}
.yda{bottom:306.994500px;}
.y266{bottom:307.443000px;}
.y92{bottom:307.891500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y59{bottom:310.744500px;}
.y18d{bottom:310.903500px;}
.y15f{bottom:311.730000px;}
.yb7{bottom:311.925000px;}
.y257{bottom:311.968500px;}
.y220{bottom:312.481500px;}
.y1f7{bottom:313.980000px;}
.y2d{bottom:315.054000px;}
.y28c{bottom:317.799000px;}
.y2cf{bottom:319.024500px;}
.y1c2{bottom:321.313500px;}
.y10e{bottom:322.237500px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y2c3{bottom:323.581500px;}
.yab{bottom:324.478500px;}
.y265{bottom:326.272500px;}
.y91{bottom:326.719500px;}
.y58{bottom:329.574000px;}
.y18c{bottom:329.733000px;}
.yd9{bottom:330.307500px;}
.y1f6{bottom:330.418500px;}
.y15e{bottom:330.559500px;}
.y256{bottom:330.798000px;}
.y21f{bottom:331.311000px;}
.y2c{bottom:332.943000px;}
.y28b{bottom:335.059500px;}
.y2ce{bottom:336.285000px;}
.y1c1{bottom:340.143000px;}
.y2c2{bottom:340.842000px;}
.y10d{bottom:341.067000px;}
.y264{bottom:345.102000px;}
.y90{bottom:345.549000px;}
.y1f5{bottom:346.857000px;}
.yaa{bottom:347.791500px;}
.yf{bottom:348.133500px;}
.y57{bottom:348.403500px;}
.y18b{bottom:348.562500px;}
.y15d{bottom:349.389000px;}
.y255{bottom:349.627500px;}
.y21e{bottom:350.140500px;}
.y2b{bottom:350.830500px;}
.y28a{bottom:352.320000px;}
.y11d{bottom:352.905585px;}
.y2c1{bottom:358.102500px;}
.y1c0{bottom:358.972500px;}
.y10c{bottom:359.896500px;}
.y11c{bottom:362.535450px;}
.y1f4{bottom:363.294000px;}
.yd8{bottom:363.931500px;}
.y8f{bottom:364.378500px;}
.y56{bottom:367.233000px;}
.y18a{bottom:367.392000px;}
.y254{bottom:368.457000px;}
.y21d{bottom:368.970000px;}
.y289{bottom:369.580500px;}
.y2c0{bottom:375.363000px;}
.y1bf{bottom:377.802000px;}
.y10b{bottom:378.726000px;}
.y2a{bottom:379.179000px;}
.y1f3{bottom:379.732500px;}
.ya9{bottom:381.415500px;}
.yd7{bottom:382.761000px;}
.y8e{bottom:383.208000px;}
.y55{bottom:386.062500px;}
.y189{bottom:386.221500px;}
.ye{bottom:386.785499px;}
.y288{bottom:386.841000px;}
.y253{bottom:387.286500px;}
.y15c{bottom:388.656000px;}
.y2bf{bottom:392.623500px;}
.y1f2{bottom:396.171000px;}
.y1be{bottom:396.631500px;}
.y10a{bottom:397.555500px;}
.ya8{bottom:400.245000px;}
.yd6{bottom:401.589000px;}
.y8d{bottom:402.037500px;}
.y15b{bottom:402.852000px;}
.y287{bottom:404.100000px;}
.y54{bottom:404.892000px;}
.y188{bottom:405.051000px;}
.y29{bottom:406.033500px;}
.y252{bottom:406.116000px;}
.yd{bottom:408.044999px;}
.y2be{bottom:409.884000px;}
.y1f1{bottom:412.609500px;}
.y1bd{bottom:415.461000px;}
.y109{bottom:416.383500px;}
.y21c{bottom:417.420000px;}
.ya7{bottom:419.074500px;}
.yd5{bottom:420.418500px;}
.y8c{bottom:420.867000px;}
.y286{bottom:421.360500px;}
.y53{bottom:423.721500px;}
.y187{bottom:423.880500px;}
.y28{bottom:423.921000px;}
.y15a{bottom:424.684500px;}
.y251{bottom:424.944000px;}
.y2bd{bottom:427.144500px;}
.y1f0{bottom:429.048000px;}
.y21b{bottom:433.858500px;}
.y108{bottom:435.213000px;}
.ya6{bottom:437.904000px;}
.y285{bottom:438.621000px;}
.y1bc{bottom:438.772500px;}
.yd4{bottom:439.248000px;}
.y8b{bottom:439.696500px;}
.y27{bottom:441.810000px;}
.y186{bottom:442.710000px;}
.y250{bottom:443.773500px;}
.y2bc{bottom:444.403500px;}
.y1ef{bottom:445.486500px;}
.y52{bottom:447.034500px;}
.y159{bottom:448.326000px;}
.y21a{bottom:450.297000px;}
.y107{bottom:454.042500px;}
.y284{bottom:455.881500px;}
.ya5{bottom:456.733500px;}
.yd3{bottom:458.077500px;}
.y8a{bottom:458.526000px;}
.y26{bottom:459.697500px;}
.y185{bottom:461.539500px;}
.y2bb{bottom:461.664000px;}
.y1ee{bottom:461.925000px;}
.y24f{bottom:462.603000px;}
.y158{bottom:464.764500px;}
.y219{bottom:466.735500px;}
.y106{bottom:472.872000px;}
.y283{bottom:473.142000px;}
.y1bb{bottom:474.609000px;}
.ya4{bottom:475.563000px;}
.yd2{bottom:476.907000px;}
.y89{bottom:477.355500px;}
.y25{bottom:477.585000px;}
.y2ba{bottom:478.924500px;}
.y157{bottom:481.201500px;}
.y24e{bottom:481.432500px;}
.y218{bottom:483.174000px;}
.y184{bottom:484.852500px;}
.y1ec{bottom:485.565000px;}
.y1ba{bottom:488.805000px;}
.y282{bottom:490.402500px;}
.y105{bottom:491.701500px;}
.y1ed{bottom:493.785000px;}
.ya3{bottom:494.392500px;}
.y24{bottom:495.474000px;}
.yd1{bottom:495.736500px;}
.y88{bottom:496.185000px;}
.y156{bottom:497.640000px;}
.y217{bottom:499.612500px;}
.y24d{bottom:500.262000px;}
.y1ea{bottom:502.003500px;}
.yc{bottom:502.864502px;}
.y183{bottom:505.026000px;}
.y281{bottom:507.663000px;}
.y104{bottom:510.531000px;}
.y1b9{bottom:510.637500px;}
.ya2{bottom:513.222000px;}
.y23{bottom:513.361500px;}
.y2b9{bottom:513.445500px;}
.y155{bottom:514.078500px;}
.yd0{bottom:514.566000px;}
.y87{bottom:515.014500px;}
.y216{bottom:516.051000px;}
.y1eb{bottom:518.442000px;}
.y24c{bottom:519.091500px;}
.yb{bottom:520.864502px;}
.y51{bottom:521.377500px;}
.y280{bottom:524.923500px;}
.y1b8{bottom:527.076000px;}
.y103{bottom:529.360500px;}
.y154{bottom:530.517000px;}
.y2b8{bottom:530.706000px;}
.y22{bottom:531.249000px;}
.ya1{bottom:532.051500px;}
.y215{bottom:532.489500px;}
.ycf{bottom:533.395500px;}
.y86{bottom:533.844000px;}
.y24b{bottom:537.921000px;}
.ya{bottom:538.864499px;}
.y182{bottom:542.022000px;}
.y27f{bottom:542.184000px;}
.y1b7{bottom:543.514500px;}
.y153{bottom:546.955500px;}
.y2b7{bottom:547.966500px;}
.y102{bottom:548.190000px;}
.y214{bottom:548.928000px;}
.ya0{bottom:550.881000px;}
.yce{bottom:552.225000px;}
.y85{bottom:552.673500px;}
.y1e9{bottom:553.050000px;}
.y24a{bottom:556.750500px;}
.y9{bottom:556.864499px;}
.y50{bottom:558.766500px;}
.y27e{bottom:559.443000px;}
.y1b6{bottom:559.953000px;}
.y181{bottom:560.865000px;}
.y152{bottom:563.394000px;}
.y2b6{bottom:565.227000px;}
.y213{bottom:565.366500px;}
.y101{bottom:567.019500px;}
.ycd{bottom:571.054500px;}
.y84{bottom:571.503000px;}
.y9f{bottom:574.192500px;}
.y249{bottom:575.580000px;}
.y1b5{bottom:576.391500px;}
.y27d{bottom:576.703500px;}
.y151{bottom:579.832500px;}
.y212{bottom:581.803500px;}
.y2b5{bottom:582.487500px;}
.y180{bottom:584.506500px;}
.y100{bottom:585.849000px;}
.y1e8{bottom:588.784500px;}
.ycc{bottom:589.884000px;}
.y83{bottom:590.332500px;}
.y1b4{bottom:592.830000px;}
.y27c{bottom:593.964000px;}
.y9e{bottom:594.367500px;}
.y248{bottom:594.409500px;}
.y4f{bottom:596.157000px;}
.y150{bottom:596.271000px;}
.y211{bottom:598.242000px;}
.y2b4{bottom:599.746500px;}
.y17f{bottom:600.945000px;}
.yff{bottom:604.678500px;}
.y1e7{bottom:607.614000px;}
.ycb{bottom:608.713500px;}
.y82{bottom:609.162000px;}
.y1b3{bottom:609.268500px;}
.y27b{bottom:611.224500px;}
.y14f{bottom:612.709500px;}
.y11a{bottom:613.197000px;}
.y247{bottom:613.239000px;}
.y210{bottom:614.680500px;}
.y4e{bottom:615.613500px;}
.y2b3{bottom:617.007000px;}
.y17e{bottom:617.383500px;}
.y1ab{bottom:617.523000px;}
.yfe{bottom:623.508000px;}
.y1b2{bottom:625.707000px;}
.y1e6{bottom:626.443500px;}
.yca{bottom:627.543000px;}
.y81{bottom:627.991500px;}
.y27a{bottom:628.485000px;}
.y20f{bottom:631.119000px;}
.y246{bottom:632.068500px;}
.y17d{bottom:633.820500px;}
.y1aa{bottom:633.961500px;}
.y2b2{bottom:634.267500px;}
.y4d{bottom:635.070000px;}
.y14e{bottom:636.349500px;}
.y1b1{bottom:642.144000px;}
.yfd{bottom:642.337500px;}
.y1e5{bottom:645.273000px;}
.y8{bottom:645.510000px;}
.y279{bottom:645.745500px;}
.yc9{bottom:646.372500px;}
.y80{bottom:646.821000px;}
.y20e{bottom:647.557500px;}
.y245{bottom:650.898000px;}
.y2b1{bottom:651.528000px;}
.y14d{bottom:652.788000px;}
.y4c{bottom:654.528000px;}
.y17c{bottom:657.462000px;}
.y1b0{bottom:658.582500px;}
.yfc{bottom:661.167000px;}
.y278{bottom:663.006000px;}
.y1e4{bottom:664.102500px;}
.yc8{bottom:665.202000px;}
.y7f{bottom:665.650500px;}
.y7{bottom:666.771000px;}
.y2b0{bottom:668.788500px;}
.y14c{bottom:669.226500px;}
.y244{bottom:669.727500px;}
.y20d{bottom:671.199000px;}
.y4b{bottom:673.984500px;}
.y1af{bottom:675.021000px;}
.y20c{bottom:679.417500px;}
.yfb{bottom:679.996500px;}
.y1e3{bottom:682.932000px;}
.yc7{bottom:684.031500px;}
.y7e{bottom:684.480000px;}
.y277{bottom:684.748500px;}
.y2af{bottom:686.049000px;}
.y243{bottom:688.557000px;}
.y17b{bottom:689.082000px;}
.y1ae{bottom:691.459500px;}
.y14b{bottom:692.866500px;}
.y4a{bottom:693.442500px;}
.yfa{bottom:698.826000px;}
.y1e2{bottom:701.761500px;}
.yc6{bottom:702.861000px;}
.y7d{bottom:703.309500px;}
.y242{bottom:707.386500px;}
.y1ad{bottom:707.898000px;}
.y14a{bottom:709.305000px;}
.y148{bottom:709.530000px;}
.y49{bottom:712.899000px;}
.yf9{bottom:717.655500px;}
.y276{bottom:718.372500px;}
.y2ae{bottom:720.570000px;}
.y1e1{bottom:720.591000px;}
.yc5{bottom:721.690500px;}
.y7c{bottom:722.139000px;}
.y20b{bottom:722.245500px;}
.y1ac{bottom:724.336500px;}
.y149{bottom:725.743500px;}
.y17a{bottom:726.186000px;}
.y241{bottom:726.216000px;}
.y6{bottom:726.298500px;}
.y48{bottom:732.355500px;}
.yf8{bottom:736.485000px;}
.y2ad{bottom:737.829000px;}
.y1e0{bottom:739.420500px;}
.yc4{bottom:740.520000px;}
.y1a9{bottom:740.775000px;}
.y7b{bottom:740.968500px;}
.y275{bottom:744.913500px;}
.y179{bottom:745.015500px;}
.y240{bottom:745.045500px;}
.y47{bottom:751.813500px;}
.y3{bottom:752.599495px;}
.y2ac{bottom:755.089500px;}
.yf7{bottom:755.314500px;}
.yc3{bottom:759.349500px;}
.y7a{bottom:759.798000px;}
.y147{bottom:760.351500px;}
.y274{bottom:762.487500px;}
.y1df{bottom:762.733500px;}
.y178{bottom:763.845000px;}
.y1a8{bottom:764.415000px;}
.y46{bottom:771.270000px;}
.y2ab{bottom:772.350000px;}
.y1a7{bottom:772.635000px;}
.yf6{bottom:774.144000px;}
.y20a{bottom:778.179000px;}
.y79{bottom:778.627500px;}
.yc2{bottom:782.662500px;}
.y177{bottom:782.674500px;}
.y23f{bottom:785.178000px;}
.y273{bottom:789.028500px;}
.y2aa{bottom:789.610500px;}
.y45{bottom:790.728000px;}
.yf5{bottom:792.973500px;}
.y209{bottom:797.008500px;}
.y78{bottom:797.457000px;}
.y1de{bottom:798.358500px;}
.y176{bottom:801.504000px;}
.y272{bottom:806.602500px;}
.y2a9{bottom:806.871000px;}
.y23e{bottom:807.010500px;}
.yf4{bottom:811.803000px;}
.y1a6{bottom:815.463000px;}
.y208{bottom:815.838000px;}
.y9d{bottom:816.285000px;}
.y77{bottom:816.286500px;}
.y1dd{bottom:817.203000px;}
.y175{bottom:820.333500px;}
.y23d{bottom:823.449000px;}
.y2a8{bottom:824.131500px;}
.y44{bottom:824.367000px;}
.yf3{bottom:830.632500px;}
.y271{bottom:833.143500px;}
.y1dc{bottom:833.640000px;}
.y207{bottom:834.667500px;}
.y76{bottom:835.114500px;}
.y174{bottom:839.163000px;}
.y23c{bottom:839.887500px;}
.y43{bottom:840.507000px;}
.y2a7{bottom:841.392000px;}
.yf2{bottom:849.462000px;}
.y1db{bottom:850.078500px;}
.y270{bottom:850.717500px;}
.y1a5{bottom:851.724000px;}
.y206{bottom:853.497000px;}
.y75{bottom:853.944000px;}
.y23b{bottom:856.326000px;}
.y42{bottom:856.645500px;}
.y173{bottom:857.991000px;}
.y2a6{bottom:858.652500px;}
.y41{bottom:860.986500px;}
.y1a4{bottom:865.920000px;}
.y1da{bottom:866.517000px;}
.yf1{bottom:868.291500px;}
.y205{bottom:872.326500px;}
.y23a{bottom:872.764500px;}
.y74{bottom:872.773500px;}
.y40{bottom:872.785500px;}
.y2a5{bottom:875.913000px;}
.y2{bottom:879.369000px;}
.y1a3{bottom:880.117500px;}
.y1d9{bottom:882.955500px;}
.y26f{bottom:885.865500px;}
.yf0{bottom:887.121000px;}
.y239{bottom:889.203000px;}
.y204{bottom:891.156000px;}
.y73{bottom:891.603000px;}
.y2a4{bottom:893.172000px;}
.y3f{bottom:893.265000px;}
.y172{bottom:898.125000px;}
.y1d8{bottom:899.394000px;}
.y1a2{bottom:901.950000px;}
.y3e{bottom:905.065500px;}
.y238{bottom:905.641500px;}
.yef{bottom:905.950500px;}
.y203{bottom:909.984000px;}
.y72{bottom:910.432500px;}
.y26e{bottom:912.406500px;}
.y263{bottom:914.467500px;}
.y1d7{bottom:915.832500px;}
.y171{bottom:916.969500px;}
.y1a1{bottom:918.388500px;}
.y237{bottom:922.080000px;}
.y1cf{bottom:924.088500px;}
.yee{bottom:924.778500px;}
.y3d{bottom:925.543500px;}
.y2a3{bottom:927.693000px;}
.y202{bottom:928.813500px;}
.y71{bottom:929.262000px;}
.y26d{bottom:929.980500px;}
.y1d6{bottom:932.271000px;}
.y1a0{bottom:934.827000px;}
.y3c{bottom:937.344000px;}
.y236{bottom:938.518500px;}
.y1ce{bottom:940.525500px;}
.y170{bottom:940.609500px;}
.yed{bottom:943.608000px;}
.y2a2{bottom:944.953500px;}
.y201{bottom:947.643000px;}
.y70{bottom:948.091500px;}
.y1d5{bottom:948.709500px;}
.y19f{bottom:951.264000px;}
.y235{bottom:954.957000px;}
.y26c{bottom:956.520000px;}
.y16f{bottom:957.048000px;}
.y3b{bottom:957.823500px;}
.y2a1{bottom:962.214000px;}
.yec{bottom:962.437500px;}
.y1d4{bottom:965.148000px;}
.y200{bottom:966.472500px;}
.y1{bottom:966.726000px;}
.y6f{bottom:966.921000px;}
.y234{bottom:971.394000px;}
.y16e{bottom:973.486500px;}
.y26b{bottom:974.094000px;}
.y19e{bottom:974.905500px;}
.y19c{bottom:976.695000px;}
.y2a0{bottom:979.474500px;}
.yeb{bottom:981.267000px;}
.y1d3{bottom:981.586500px;}
.y6e{bottom:985.750500px;}
.y233{bottom:987.832500px;}
.y1ff{bottom:989.785500px;}
.y16d{bottom:989.925000px;}
.y19d{bottom:991.344000px;}
.y199{bottom:991.569000px;}
.y26a{bottom:991.668000px;}
.y19b{bottom:993.133500px;}
.y29f{bottom:996.735000px;}
.y3a{bottom:997.554000px;}
.y1d2{bottom:998.023500px;}
.yea{bottom:1000.096500px;}
.y232{bottom:1004.271000px;}
.y6d{bottom:1004.580000px;}
.y19a{bottom:1007.782500px;}
.y269{bottom:1009.243500px;}
.y16c{bottom:1013.565000px;}
.y29e{bottom:1013.995500px;}
.y1d1{bottom:1014.462000px;}
.ye9{bottom:1018.926000px;}
.y231{bottom:1020.709500px;}
.y6c{bottom:1023.409500px;}
.y268{bottom:1026.817500px;}
.y16b{bottom:1030.003500px;}
.y1d0{bottom:1030.900500px;}
.y29d{bottom:1031.254500px;}
.y230{bottom:1037.148000px;}
.y39{bottom:1037.473500px;}
.ye8{bottom:1037.755500px;}
.y6b{bottom:1042.239000px;}
.y198{bottom:1042.390500px;}
.y267{bottom:1044.391500px;}
.y1cd{bottom:1047.339000px;}
.y29c{bottom:1048.515000px;}
.ye7{bottom:1056.585000px;}
.y22f{bottom:1060.789500px;}
.y6a{bottom:1061.068500px;}
.y16a{bottom:1061.623500px;}
.y38{bottom:1065.717000px;}
.y29b{bottom:1065.775500px;}
.y22d{bottom:1070.682000px;}
.y1cc{bottom:1070.980500px;}
.y22c{bottom:1071.031500px;}
.ye6{bottom:1075.414500px;}
.y1cb{bottom:1079.199000px;}
.y69{bottom:1079.898000px;}
.y29a{bottom:1083.036000px;}
.y22e{bottom:1084.429500px;}
.y37{bottom:1093.962000px;}
.ye5{bottom:1094.244000px;}
.y68{bottom:1098.727500px;}
.y299{bottom:1100.296500px;}
.y67{bottom:1117.557000px;}
.y1ca{bottom:1119.037500px;}
.y66{bottom:1177.662000px;}
.hd{height:31.131341px;}
.h7{height:32.130000px;}
.h9{height:36.319550px;}
.h17{height:38.896243px;}
.he{height:41.508281px;}
.h1c{height:41.560243px;}
.h13{height:42.760020px;}
.h10{height:43.217759px;}
.ha{height:43.875290px;}
.h16{height:44.268047px;}
.h6{height:45.900000px;}
.h18{height:46.054243px;}
.hf{height:46.697011px;}
.h3{height:48.195000px;}
.h15{height:48.225586px;}
.h11{height:51.885221px;}
.h14{height:53.691152px;}
.hc{height:54.547601px;}
.h2{height:55.080000px;}
.h1a{height:71.770243px;}
.h1b{height:71.776243px;}
.hb{height:77.792486px;}
.h5{height:78.030000px;}
.h19{height:104.650243px;}
.h4{height:119.055004px;}
.h12{height:248.988000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w4{width:655.851750px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.xc{left:-65.388750px;}
.x14{left:-51.528750px;}
.x13{left:-48.109308px;}
.x1c{left:-31.999317px;}
.x10{left:-28.668750px;}
.x1b{left:-26.330001px;}
.x16{left:-23.448750px;}
.x18{left:-18.679731px;}
.x17{left:-16.249380px;}
.x1a{left:-13.279452px;}
.x19{left:-10.129164px;}
.x15{left:-7.968804px;}
.x0{left:0.000000px;}
.x6{left:52.525500px;}
.x5{left:53.574000px;}
.x3a{left:62.541000px;}
.x5a{left:64.609500px;}
.x5e{left:65.787000px;}
.x3f{left:66.819000px;}
.x32{left:69.208500px;}
.x5d{left:72.268500px;}
.x21{left:80.785500px;}
.x20{left:83.461500px;}
.x62{left:85.848000px;}
.x39{left:93.208500px;}
.x28{left:97.905000px;}
.x23{left:100.872000px;}
.x1{left:102.045000px;}
.x27{left:104.052000px;}
.x2{left:106.297500px;}
.x25{left:109.828500px;}
.x24{left:112.035000px;}
.x26{left:114.717000px;}
.xb{left:118.319250px;}
.x22{left:119.485500px;}
.x38{left:128.829000px;}
.xd{left:130.181250px;}
.x4d{left:133.246500px;}
.x12{left:145.211061px;}
.x3b{left:150.565500px;}
.x5f{left:157.027500px;}
.xf{left:162.041250px;}
.x5b{left:167.700000px;}
.x11{left:188.141250px;}
.x4{left:203.484001px;}
.x4f{left:209.341500px;}
.x50{left:210.733500px;}
.x4e{left:212.448000px;}
.x3c{left:214.900500px;}
.x9{left:248.526000px;}
.x7{left:249.591000px;}
.x37{left:259.540500px;}
.x46{left:260.679000px;}
.x4c{left:264.976500px;}
.x1f{left:268.098000px;}
.x8{left:269.914500px;}
.x2a{left:274.873500px;}
.x2e{left:276.997500px;}
.xa{left:281.479500px;}
.x2d{left:284.886000px;}
.x2c{left:287.152500px;}
.x2b{left:289.419000px;}
.x51{left:290.520000px;}
.x33{left:308.569500px;}
.x1e{left:318.385500px;}
.x53{left:347.793000px;}
.x1d{left:349.026000px;}
.x29{left:354.648000px;}
.x3d{left:356.577000px;}
.x54{left:363.151500px;}
.x52{left:365.605500px;}
.x30{left:380.109000px;}
.x31{left:382.234500px;}
.x2f{left:384.588000px;}
.x5c{left:390.915000px;}
.x55{left:442.938000px;}
.x3{left:454.959000px;}
.x47{left:456.025500px;}
.x34{left:475.066500px;}
.x35{left:499.047000px;}
.x56{left:504.771000px;}
.x40{left:525.912000px;}
.x41{left:528.420000px;}
.x61{left:563.056500px;}
.x59{left:569.460000px;}
.x48{left:601.786500px;}
.x60{left:631.279500px;}
.x42{left:635.059500px;}
.x43{left:637.233000px;}
.x3e{left:639.034500px;}
.x57{left:646.389000px;}
.xe{left:651.103014px;}
.x36{left:655.854000px;}
.x49{left:701.010000px;}
.x4a{left:711.459000px;}
.x4b{left:713.968500px;}
.x58{left:726.175500px;}
.x44{left:743.704500px;}
.x45{left:746.044500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v8{vertical-align:-1.125333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.368000pt;}
.v4{vertical-align:6.362667pt;}
.v1{vertical-align:19.290667pt;}
.v5{vertical-align:29.221333pt;}
.v6{vertical-align:58.448000pt;}
.ls27{letter-spacing:-0.160320pt;}
.ls28{letter-spacing:-0.138944pt;}
.ls2a{letter-spacing:-0.133600pt;}
.ls2d{letter-spacing:-0.128256pt;}
.ls2b{letter-spacing:-0.122912pt;}
.ls2e{letter-spacing:-0.117568pt;}
.ls20{letter-spacing:-0.101536pt;}
.ls31{letter-spacing:-0.096192pt;}
.ls21{letter-spacing:-0.080160pt;}
.ls22{letter-spacing:-0.074816pt;}
.ls23{letter-spacing:-0.072000pt;}
.ls1e{letter-spacing:-0.048096pt;}
.ls24{letter-spacing:-0.024000pt;}
.ls1f{letter-spacing:-0.021376pt;}
.ls30{letter-spacing:-0.019200pt;}
.ls25{letter-spacing:-0.016032pt;}
.ls26{letter-spacing:-0.005344pt;}
.ls1d{letter-spacing:-0.004256pt;}
.ls0{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.000580pt;}
.ls16{letter-spacing:0.005344pt;}
.ls11{letter-spacing:0.010688pt;}
.ls15{letter-spacing:0.016032pt;}
.ls13{letter-spacing:0.019200pt;}
.ls1c{letter-spacing:0.021376pt;}
.ls19{letter-spacing:0.024000pt;}
.ls12{letter-spacing:0.026720pt;}
.ls17{letter-spacing:0.037408pt;}
.ls18{letter-spacing:0.042752pt;}
.ls1b{letter-spacing:0.043200pt;}
.ls14{letter-spacing:0.074816pt;}
.ls29{letter-spacing:0.085504pt;}
.ls2c{letter-spacing:0.090848pt;}
.ls2f{letter-spacing:0.138944pt;}
.ls10{letter-spacing:0.148960pt;}
.ls1a{letter-spacing:0.158400pt;}
.lsf{letter-spacing:0.161728pt;}
.ls1{letter-spacing:2.657067pt;}
.ls5{letter-spacing:10.626533pt;}
.lsa{letter-spacing:12.061388pt;}
.ls8{letter-spacing:12.273923pt;}
.ls7{letter-spacing:13.230333pt;}
.ls9{letter-spacing:13.283467pt;}
.ls34{letter-spacing:13.389734pt;}
.lsb{letter-spacing:13.442868pt;}
.lse{letter-spacing:13.496002pt;}
.ls33{letter-spacing:13.602270pt;}
.ls6{letter-spacing:15.090018pt;}
.lsd{letter-spacing:15.780758pt;}
.ls2{letter-spacing:15.942400pt;}
.ls32{letter-spacing:16.630900pt;}
.ls35{letter-spacing:16.843436pt;}
.lsc{letter-spacing:17.644303pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ws127{word-spacing:-30.126902pt;}
.ws80{word-spacing:-13.311904pt;}
.ws2b{word-spacing:-13.283467pt;}
.wsee{word-spacing:-11.955200pt;}
.ws7e{word-spacing:-10.801728pt;}
.ws7f{word-spacing:-10.640000pt;}
.ws7d{word-spacing:-10.635744pt;}
.ws28{word-spacing:-10.626800pt;}
.wsc{word-spacing:-10.095467pt;}
.wsa{word-spacing:-9.298400pt;}
.ws86{word-spacing:-2.490304pt;}
.ws125{word-spacing:-2.391024pt;}
.ws48{word-spacing:-2.231622pt;}
.ws38{word-spacing:-2.178489pt;}
.ws85{word-spacing:-2.137600pt;}
.ws75{word-spacing:-2.125355pt;}
.ws59{word-spacing:-2.072221pt;}
.ws12d{word-spacing:-2.019087pt;}
.wsac{word-spacing:-1.965953pt;}
.ws13a{word-spacing:-1.960653pt;}
.ws13b{word-spacing:-1.912832pt;}
.ws73{word-spacing:-1.806551pt;}
.ws11c{word-spacing:-1.753418pt;}
.ws3b{word-spacing:-1.647150pt;}
.ws3c{word-spacing:-1.594016pt;}
.ws126{word-spacing:-1.540882pt;}
.ws134{word-spacing:-1.530266pt;}
.ws15a{word-spacing:-1.482445pt;}
.ws129{word-spacing:-1.434614pt;}
.ws76{word-spacing:-1.381481pt;}
.ws105{word-spacing:-1.328347pt;}
.ws58{word-spacing:-1.275213pt;}
.ws4b{word-spacing:-1.222079pt;}
.ws63{word-spacing:-1.115811pt;}
.ws14c{word-spacing:-1.052058pt;}
.ws4a{word-spacing:-1.009543pt;}
.ws106{word-spacing:-0.956410pt;}
.ws8e{word-spacing:-0.908480pt;}
.ws11f{word-spacing:-0.903276pt;}
.ws46{word-spacing:-0.850142pt;}
.ws32{word-spacing:-0.797008pt;}
.ws31{word-spacing:-0.743874pt;}
.ws6c{word-spacing:-0.690740pt;}
.ws121{word-spacing:-0.637606pt;}
.ws93{word-spacing:-0.587840pt;}
.ws6a{word-spacing:-0.584473pt;}
.ws8c{word-spacing:-0.577152pt;}
.ws8d{word-spacing:-0.566464pt;}
.ws39{word-spacing:-0.531339pt;}
.ws94{word-spacing:-0.480960pt;}
.ws7c{word-spacing:-0.478205pt;}
.ws34{word-spacing:-0.425071pt;}
.ws41{word-spacing:-0.371937pt;}
.ws16{word-spacing:-0.334746pt;}
.ws2f{word-spacing:-0.318803pt;}
.ws150{word-spacing:-0.286925pt;}
.ws3e{word-spacing:-0.265669pt;}
.ws83{word-spacing:-0.242592pt;}
.ws13{word-spacing:-0.239104pt;}
.ws29{word-spacing:-0.212535pt;}
.ws137{word-spacing:-0.191283pt;}
.ws1e{word-spacing:-0.159402pt;}
.ws12{word-spacing:-0.143462pt;}
.wsd{word-spacing:-0.127522pt;}
.wsa3{word-spacing:-0.122912pt;}
.ws47{word-spacing:-0.106268pt;}
.wsc0{word-spacing:-0.095642pt;}
.ws81{word-spacing:-0.053440pt;}
.ws1a{word-spacing:-0.053134pt;}
.ws15{word-spacing:-0.047821pt;}
.wsdc{word-spacing:-0.042507pt;}
.ws13e{word-spacing:-0.010982pt;}
.ws159{word-spacing:-0.006690pt;}
.ws158{word-spacing:-0.005726pt;}
.ws9e{word-spacing:-0.005344pt;}
.ws147{word-spacing:-0.004719pt;}
.ws27{word-spacing:-0.000398pt;}
.wsb{word-spacing:-0.000185pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:0.000561pt;}
.ws9a{word-spacing:0.005344pt;}
.ws14e{word-spacing:0.038498pt;}
.ws138{word-spacing:0.047821pt;}
.ws23{word-spacing:0.053134pt;}
.ws87{word-spacing:0.053440pt;}
.ws99{word-spacing:0.085504pt;}
.ws148{word-spacing:0.095642pt;}
.ws20{word-spacing:0.106268pt;}
.ws96{word-spacing:0.134400pt;}
.ws89{word-spacing:0.139200pt;}
.ws133{word-spacing:0.143462pt;}
.ws95{word-spacing:0.154976pt;}
.ws88{word-spacing:0.158400pt;}
.ws30{word-spacing:0.159402pt;}
.ws100{word-spacing:0.170029pt;}
.ws98{word-spacing:0.182400pt;}
.ws11{word-spacing:0.191283pt;}
.ws22{word-spacing:0.212535pt;}
.ws97{word-spacing:0.230400pt;}
.ws14{word-spacing:0.239104pt;}
.ws21{word-spacing:0.265669pt;}
.ws155{word-spacing:0.286925pt;}
.ws33{word-spacing:0.318803pt;}
.ws8f{word-spacing:0.363392pt;}
.ws2a{word-spacing:0.371937pt;}
.ws3d{word-spacing:0.425071pt;}
.ws151{word-spacing:0.430387pt;}
.ws24{word-spacing:0.478205pt;}
.ws13f{word-spacing:0.526029pt;}
.ws36{word-spacing:0.531339pt;}
.ws139{word-spacing:0.573850pt;}
.ws26{word-spacing:0.584473pt;}
.ws55{word-spacing:0.637606pt;}
.ws5d{word-spacing:0.690740pt;}
.ws12c{word-spacing:0.743874pt;}
.ws3a{word-spacing:0.797008pt;}
.ws11e{word-spacing:0.850142pt;}
.wsb0{word-spacing:0.956410pt;}
.ws128{word-spacing:1.009543pt;}
.ws79{word-spacing:1.062677pt;}
.wsc8{word-spacing:1.062680pt;}
.wsc9{word-spacing:1.105187pt;}
.ws1f{word-spacing:1.115811pt;}
.ws156{word-spacing:1.147699pt;}
.ws45{word-spacing:1.168945pt;}
.ws6b{word-spacing:1.222079pt;}
.ws9{word-spacing:1.227389pt;}
.ws44{word-spacing:1.328347pt;}
.wsc7{word-spacing:1.360230pt;}
.ws11a{word-spacing:1.434614pt;}
.ws17{word-spacing:1.482445pt;}
.ws131{word-spacing:1.487748pt;}
.ws56{word-spacing:1.540882pt;}
.ws57{word-spacing:1.594016pt;}
.ws132{word-spacing:1.625907pt;}
.ws54{word-spacing:1.647150pt;}
.ws78{word-spacing:1.700284pt;}
.ws40{word-spacing:1.753418pt;}
.ws104{word-spacing:1.806551pt;}
.wsab{word-spacing:1.827810pt;}
.ws5b{word-spacing:1.859685pt;}
.wsdd{word-spacing:1.912819pt;}
.ws7a{word-spacing:1.965953pt;}
.ws91{word-spacing:1.998656pt;}
.ws52{word-spacing:2.019087pt;}
.ws5a{word-spacing:2.072221pt;}
.ws154{word-spacing:2.104115pt;}
.ws67{word-spacing:2.178489pt;}
.ws2c{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.ws53{word-spacing:2.284756pt;}
.ws65{word-spacing:2.337890pt;}
.ws61{word-spacing:2.391024pt;}
.ws10{word-spacing:2.391040pt;}
.ws92{word-spacing:2.420832pt;}
.wsaf{word-spacing:2.444158pt;}
.ws72{word-spacing:2.497292pt;}
.ws14f{word-spacing:2.534502pt;}
.ws119{word-spacing:2.550426pt;}
.wsb7{word-spacing:2.550432pt;}
.ws42{word-spacing:2.603559pt;}
.wsda{word-spacing:2.677954pt;}
.ws13c{word-spacing:2.677965pt;}
.ws3f{word-spacing:2.709827pt;}
.wsff{word-spacing:2.762968pt;}
.ws101{word-spacing:2.805475pt;}
.ws64{word-spacing:2.816095pt;}
.wsdb{word-spacing:2.847982pt;}
.ws18{word-spacing:2.861926pt;}
.ws141{word-spacing:2.863548pt;}
.ws149{word-spacing:2.864009pt;}
.ws146{word-spacing:2.864683pt;}
.ws14d{word-spacing:2.865766pt;}
.ws51{word-spacing:2.869229pt;}
.ws13d{word-spacing:2.869248pt;}
.ws142{word-spacing:2.917069pt;}
.wsb8{word-spacing:2.975497pt;}
.ws14a{word-spacing:3.012710pt;}
.ws4e{word-spacing:3.028630pt;}
.ws157{word-spacing:3.060531pt;}
.ws140{word-spacing:3.108352pt;}
.ws14b{word-spacing:3.156173pt;}
.ws19{word-spacing:3.188032pt;}
.ws7b{word-spacing:3.241166pt;}
.wsbd{word-spacing:3.294300pt;}
.ws6d{word-spacing:3.347434pt;}
.ws1c{word-spacing:3.400567pt;}
.wsde{word-spacing:3.453701pt;}
.ws25{word-spacing:3.506835pt;}
.ws82{word-spacing:3.559969pt;}
.ws90{word-spacing:3.569792pt;}
.ws5f{word-spacing:3.666237pt;}
.ws77{word-spacing:3.719371pt;}
.ws1d{word-spacing:3.772505pt;}
.ws11d{word-spacing:3.825638pt;}
.ws152{word-spacing:3.873485pt;}
.ws102{word-spacing:3.878772pt;}
.ws2e{word-spacing:3.931906pt;}
.ws74{word-spacing:3.985040pt;}
.ws60{word-spacing:4.038174pt;}
.ws120{word-spacing:4.091308pt;}
.ws35{word-spacing:4.144442pt;}
.ws49{word-spacing:4.197575pt;}
.ws37{word-spacing:4.250709pt;}
.wsad{word-spacing:4.303843pt;}
.ws4f{word-spacing:4.356977pt;}
.wsbf{word-spacing:4.516379pt;}
.ws66{word-spacing:4.569513pt;}
.wsa7{word-spacing:4.654624pt;}
.ws50{word-spacing:4.675780pt;}
.ws1b{word-spacing:4.728914pt;}
.wsbe{word-spacing:4.782048pt;}
.ws5e{word-spacing:4.835182pt;}
.ws7{word-spacing:4.872362pt;}
.ws118{word-spacing:4.994583pt;}
.ws62{word-spacing:5.047717pt;}
.ws8b{word-spacing:5.124896pt;}
.ws5c{word-spacing:5.153985pt;}
.ws103{word-spacing:5.207119pt;}
.ws8a{word-spacing:5.221088pt;}
.ws12a{word-spacing:5.313387pt;}
.ws2d{word-spacing:5.366521pt;}
.wsf{word-spacing:5.499392pt;}
.ws145{word-spacing:5.547213pt;}
.ws4c{word-spacing:5.579056pt;}
.ws144{word-spacing:5.595034pt;}
.ws4d{word-spacing:5.632190pt;}
.ws15b{word-spacing:5.786317pt;}
.ws11b{word-spacing:5.844725pt;}
.ws71{word-spacing:5.950993pt;}
.ws70{word-spacing:6.004127pt;}
.ws130{word-spacing:6.216662pt;}
.ws136{word-spacing:6.360166pt;}
.ws12e{word-spacing:6.376064pt;}
.ws69{word-spacing:6.429198pt;}
.ws12b{word-spacing:6.482332pt;}
.wsae{word-spacing:6.641733pt;}
.ws117{word-spacing:6.694867pt;}
.ws6f{word-spacing:6.960537pt;}
.ws43{word-spacing:7.013670pt;}
.ws12f{word-spacing:7.438741pt;}
.ws6e{word-spacing:8.501419pt;}
.ws5{word-spacing:8.740496pt;}
.ws68{word-spacing:9.882899pt;}
.wsa5{word-spacing:10.036800pt;}
.wsa6{word-spacing:10.099200pt;}
.ws84{word-spacing:10.329312pt;}
.ws153{word-spacing:10.472755pt;}
.ws6{word-spacing:10.525789pt;}
.wsc6{word-spacing:12.327088pt;}
.ws3{word-spacing:13.761632pt;}
.wse{word-spacing:14.048138pt;}
.ws143{word-spacing:14.154957pt;}
.ws8{word-spacing:14.282342pt;}
.ws135{word-spacing:15.719738pt;}
.ws4{word-spacing:19.857270pt;}
.wsc5{word-spacing:27.417144pt;}
.wsed{word-spacing:29.409792pt;}
.wsfd{word-spacing:62.693069pt;}
.wsfa{word-spacing:62.979994pt;}
.wsfb{word-spacing:64.558080pt;}
.wsfe{word-spacing:66.901299pt;}
.wsdf{word-spacing:68.144640pt;}
.wsfc{word-spacing:73.452749pt;}
.wsf6{word-spacing:73.548390pt;}
.wsf9{word-spacing:74.839552pt;}
.wsf7{word-spacing:75.222118pt;}
.wsf8{word-spacing:76.082893pt;}
.wsf5{word-spacing:78.856499pt;}
.wsf4{word-spacing:80.147661pt;}
.wsf3{word-spacing:80.960614pt;}
.wsf2{word-spacing:97.602253pt;}
.wsd8{word-spacing:97.984819pt;}
.ws115{word-spacing:98.367386pt;}
.ws122{word-spacing:98.680986pt;}
.wsd9{word-spacing:100.758426pt;}
.ws116{word-spacing:101.093171pt;}
.wscb{word-spacing:101.996996pt;}
.wsd4{word-spacing:102.097408pt;}
.ws111{word-spacing:102.479974pt;}
.wsd5{word-spacing:103.675494pt;}
.ws112{word-spacing:104.010240pt;}
.wsd7{word-spacing:106.018714pt;}
.ws114{word-spacing:106.353459pt;}
.wsf0{word-spacing:108.517845pt;}
.wsd1{word-spacing:111.087718pt;}
.wsce{word-spacing:112.426701pt;}
.wsd6{word-spacing:112.570163pt;}
.wscf{word-spacing:112.809267pt;}
.ws113{word-spacing:112.904909pt;}
.ws123{word-spacing:113.000550pt;}
.ws10c{word-spacing:113.048371pt;}
.wsd0{word-spacing:113.717862pt;}
.ws10b{word-spacing:114.148250pt;}
.ws10f{word-spacing:114.339533pt;}
.ws10d{word-spacing:114.722099pt;}
.ws10e{word-spacing:115.582874pt;}
.wsd3{word-spacing:116.539290pt;}
.wscc{word-spacing:117.878272pt;}
.wseb{word-spacing:117.926093pt;}
.wscd{word-spacing:117.973914pt;}
.ws10a{word-spacing:118.356480pt;}
.ws109{word-spacing:119.647642pt;}
.wsef{word-spacing:119.665758pt;}
.ws110{word-spacing:120.460595pt;}
.wsec{word-spacing:120.699699pt;}
.wsd2{word-spacing:121.703936pt;}
.wse7{word-spacing:122.038682pt;}
.wse8{word-spacing:123.616768pt;}
.wsc1{word-spacing:123.691298pt;}
.ws124{word-spacing:125.003571pt;}
.wsea{word-spacing:125.959987pt;}
.wse9{word-spacing:132.511437pt;}
.wse1{word-spacing:132.607078pt;}
.wse4{word-spacing:133.898240pt;}
.wse2{word-spacing:134.280806pt;}
.wse3{word-spacing:135.141581pt;}
.wsf1{word-spacing:135.619789pt;}
.wse6{word-spacing:137.915187pt;}
.wse5{word-spacing:144.562278pt;}
.wsb4{word-spacing:149.870387pt;}
.wsb1{word-spacing:158.573773pt;}
.wsca{word-spacing:160.003081pt;}
.wsc3{word-spacing:162.091298pt;}
.ws107{word-spacing:164.687727pt;}
.wsb3{word-spacing:167.803187pt;}
.wsb5{word-spacing:167.851008pt;}
.wsb6{word-spacing:185.783808pt;}
.wsb2{word-spacing:191.713587pt;}
.wsc4{word-spacing:206.490214pt;}
.wsa4{word-spacing:206.978464pt;}
.wsa2{word-spacing:207.026560pt;}
.wsa1{word-spacing:207.240320pt;}
.wsa0{word-spacing:207.245664pt;}
.ws9f{word-spacing:207.251008pt;}
.ws9d{word-spacing:207.256352pt;}
.wse0{word-spacing:215.761758pt;}
.wsaa{word-spacing:216.819507pt;}
.ws9c{word-spacing:246.176704pt;}
.wsa9{word-spacing:251.393946pt;}
.wsa8{word-spacing:252.685107pt;}
.ws108{word-spacing:263.200512pt;}
.ws9b{word-spacing:614.640160pt;}
.wsc2{word-spacing:705.790959pt;}
.wsb9{word-spacing:900.226560pt;}
.wsbb{word-spacing:928.153907pt;}
.wsbc{word-spacing:935.709594pt;}
.wsba{word-spacing:940.109107pt;}
._1e{margin-left:-366.721312pt;}
._1f{margin-left:-206.812800pt;}
._1d{margin-left:-153.917888pt;}
._2d{margin-left:-42.191754pt;}
._20{margin-left:-32.657184pt;}
._97{margin-left:-16.843436pt;}
._98{margin-left:-6.992559pt;}
._f{margin-left:-6.051941pt;}
._8{margin-left:-4.718299pt;}
._0{margin-left:-3.421811pt;}
._1{margin-left:-2.045648pt;}
._9{margin-left:-0.908595pt;}
._1c{width:0.972608pt;}
._6{width:2.665388pt;}
._1a{width:4.755475pt;}
._2{width:11.530016pt;}
._10{width:13.175632pt;}
._99{width:14.077197pt;}
._a{width:15.052906pt;}
._e{width:16.790302pt;}
._c{width:18.198419pt;}
._16{width:19.223813pt;}
._d{width:20.350271pt;}
._19{width:21.466082pt;}
._3{width:22.502128pt;}
._13{width:23.543622pt;}
._17{width:24.659434pt;}
._2e{width:26.513799pt;}
._4{width:27.783619pt;}
._5{width:29.648896pt;}
._b{width:31.402115pt;}
._14{width:33.256481pt;}
._18{width:34.908950pt;}
._24{width:36.152160pt;}
._15{width:38.304198pt;}
._2a{width:44.836160pt;}
._7{width:48.359572pt;}
._56{width:49.860946pt;}
._25{width:54.925632pt;}
._27{width:72.272256pt;}
._26{width:80.550112pt;}
._74{width:82.777805pt;}
._6f{width:85.551411pt;}
._29{width:91.799232pt;}
._28{width:102.684960pt;}
._70{width:103.818957pt;}
._75{width:104.823194pt;}
._77{width:105.731789pt;}
._7a{width:107.309875pt;}
._78{width:108.601037pt;}
._71{width:109.557453pt;}
._23{width:110.535296pt;}
._79{width:113.717862pt;}
._73{width:115.152486pt;}
._72{width:120.843162pt;}
._66{width:121.847398pt;}
._76{width:123.425485pt;}
._65{width:124.621005pt;}
._5c{width:125.720883pt;}
._60{width:127.155507pt;}
._64{width:129.929114pt;}
._3f{width:131.124634pt;}
._87{width:132.165934pt;}
._57{width:133.127467pt;}
._5a{width:135.045939pt;}
._62{width:136.576205pt;}
._96{width:141.597389pt;}
._91{width:142.697267pt;}
._8b{width:144.514458pt;}
._95{width:145.853440pt;}
._8f{width:146.857677pt;}
._41{width:147.909734pt;}
._5e{width:148.866150pt;}
._4c{width:149.918208pt;}
._55{width:152.404890pt;}
._58{width:153.805030pt;}
._84{width:158.334669pt;}
._5d{width:160.473267pt;}
._21{width:162.114480pt;}
._7d{width:163.308032pt;}
._94{width:165.446630pt;}
._93{width:166.751130pt;}
._4b{width:167.803187pt;}
._4a{width:169.747880pt;}
._90{width:173.828608pt;}
._40{width:174.928486pt;}
._47{width:179.806208pt;}
._82{width:181.049549pt;}
._85{width:182.484173pt;}
._80{width:185.209958pt;}
._7b{width:187.027149pt;}
._88{width:191.809229pt;}
._67{width:192.956928pt;}
._49{width:196.304384pt;}
._46{width:197.452083pt;}
._32{width:199.014320pt;}
._6a{width:200.560435pt;}
._3e{width:202.308642pt;}
._6c{width:203.716608pt;}
._44{width:205.533798pt;}
._22{width:206.957203pt;}
._2c{width:208.025888pt;}
._31{width:209.115155pt;}
._48{width:210.273261pt;}
._6b{width:211.176653pt;}
._54{width:218.397594pt;}
._89{width:219.495504pt;}
._7e{width:220.884275pt;}
._42{width:222.268397pt;}
._6d{width:225.921419pt;}
._52{width:226.957517pt;}
._45{width:233.033440pt;}
._53{width:238.514190pt;}
._68{width:240.203878pt;}
._6e{width:241.941277pt;}
._2b{width:242.836704pt;}
._86{width:243.981722pt;}
._83{width:245.416346pt;}
._69{width:247.329178pt;}
._81{width:250.676634pt;}
._4e{width:256.309769pt;}
._43{width:257.515008pt;}
._3d{width:260.474694pt;}
._8c{width:263.928198pt;}
._3c{width:269.943213pt;}
._34{width:271.043091pt;}
._5b{width:276.834611pt;}
._3a{width:278.550957pt;}
._8a{width:279.693203pt;}
._3b{width:281.744304pt;}
._61{width:283.433882pt;}
._59{width:284.443322pt;}
._35{width:287.876013pt;}
._7c{width:291.993805pt;}
._63{width:298.306150pt;}
._5f{width:299.257363pt;}
._37{width:302.466560pt;}
._8d{width:305.383629pt;}
._36{width:310.309171pt;}
._39{width:319.825510pt;}
._38{width:329.772237pt;}
._33{width:336.801894pt;}
._4f{width:364.824883pt;}
._51{width:366.020403pt;}
._7f{width:374.713032pt;}
._50{width:388.687462pt;}
._30{width:444.781261pt;}
._8e{width:470.492891pt;}
._92{width:472.177253pt;}
._2f{width:624.922214pt;}
._11{width:643.431486pt;}
._1b{width:2207.182880pt;}
._4d{width:2222.978667pt;}
._12{width:2244.232000pt;}
.fs9{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:40.381867pt;}
.fsa{font-size:42.507200pt;}
.fsc{font-size:42.560000pt;}
.fsb{font-size:47.820800pt;}
.fse{font-size:48.000000pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsd{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:95.641600pt;}
.y140{bottom:-635.985611pt;}
.y13f{bottom:-618.946267pt;}
.y13e{bottom:-586.226667pt;}
.y13d{bottom:-570.786267pt;}
.y13c{bottom:-553.505331pt;}
.y13b{bottom:-534.865459pt;}
.y13a{bottom:-516.865531pt;}
.y139{bottom:-498.865603pt;}
.y138{bottom:-480.865675pt;}
.y137{bottom:-462.865747pt;}
.y136{bottom:-444.945979pt;}
.y135{bottom:-426.946051pt;}
.y134{bottom:-408.946123pt;}
.y133{bottom:-390.946195pt;}
.y132{bottom:-372.946267pt;}
.y131{bottom:-354.945933pt;}
.y130{bottom:-336.306061pt;}
.y12f{bottom:-318.306133pt;}
.y12e{bottom:-300.306067pt;}
.y12d{bottom:-281.666195pt;}
.y12b{bottom:-263.666267pt;}
.y12c{bottom:-245.746499pt;}
.y12a{bottom:-219.026267pt;}
.y129{bottom:-187.262475pt;}
.y128{bottom:-170.142971pt;}
.y127{bottom:-153.103627pt;}
.y126{bottom:-135.984123pt;}
.y125{bottom:-118.864619pt;}
.y124{bottom:-101.825275pt;}
.y123{bottom:-84.705771pt;}
.y122{bottom:-67.586267pt;}
.y121{bottom:-34.946267pt;}
.y120{bottom:-14.945195pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:28.346667pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y64{bottom:92.108000pt;}
.y36{bottom:93.018667pt;}
.y262{bottom:93.194667pt;}
.y22b{bottom:93.650667pt;}
.y146{bottom:95.676000pt;}
.y298{bottom:98.377333pt;}
.y119{bottom:102.322667pt;}
.yb6{bottom:104.316000pt;}
.ye4{bottom:105.510667pt;}
.yc1{bottom:105.909333pt;}
.y9c{bottom:106.308000pt;}
.y63{bottom:108.844000pt;}
.y35{bottom:108.920000pt;}
.y197{bottom:108.986667pt;}
.y169{bottom:109.720000pt;}
.y261{bottom:109.932000pt;}
.y22a{bottom:110.388000pt;}
.y145{bottom:112.413333pt;}
.y297{bottom:113.720000pt;}
.y2cd{bottom:118.861333pt;}
.y118{bottom:119.060000pt;}
.yb5{bottom:121.053333pt;}
.ye3{bottom:122.248000pt;}
.yc0{bottom:122.646667pt;}
.y9b{bottom:123.045333pt;}
.y21{bottom:123.790666pt;}
.y34{bottom:124.820000pt;}
.y62{bottom:125.581333pt;}
.y196{bottom:125.724000pt;}
.y168{bottom:126.457333pt;}
.y260{bottom:126.669333pt;}
.y229{bottom:127.125333pt;}
.y296{bottom:129.062667pt;}
.y144{bottom:129.150667pt;}
.y2cc{bottom:134.202667pt;}
.y117{bottom:135.797333pt;}
.yb4{bottom:137.789333pt;}
.ye2{bottom:138.985333pt;}
.ybf{bottom:139.384000pt;}
.y9a{bottom:139.782667pt;}
.y33{bottom:140.720000pt;}
.y61{bottom:142.318667pt;}
.y195{bottom:142.461333pt;}
.y167{bottom:143.194667pt;}
.y25f{bottom:143.406667pt;}
.y228{bottom:143.862667pt;}
.y295{bottom:144.405333pt;}
.y143{bottom:145.888000pt;}
.y2cb{bottom:149.545333pt;}
.y116{bottom:152.534667pt;}
.yb3{bottom:154.526667pt;}
.ye1{bottom:155.722667pt;}
.ybe{bottom:156.121333pt;}
.y99{bottom:156.520000pt;}
.y32{bottom:156.621333pt;}
.y60{bottom:159.056000pt;}
.y194{bottom:159.198667pt;}
.y294{bottom:159.748000pt;}
.y166{bottom:159.932000pt;}
.y25e{bottom:160.144000pt;}
.y227{bottom:160.600000pt;}
.y142{bottom:162.625333pt;}
.y2ca{bottom:164.888000pt;}
.y1c9{bottom:168.450667pt;}
.y115{bottom:169.272000pt;}
.yb2{bottom:171.264000pt;}
.ye0{bottom:172.460000pt;}
.y31{bottom:172.521333pt;}
.ybd{bottom:172.858667pt;}
.y98{bottom:173.257333pt;}
.y1fe{bottom:174.008000pt;}
.y18{bottom:175.052000pt;}
.y293{bottom:175.090667pt;}
.y5f{bottom:175.793333pt;}
.y193{bottom:175.936000pt;}
.y165{bottom:176.669333pt;}
.y25d{bottom:176.881333pt;}
.y226{bottom:177.337333pt;}
.y2c9{bottom:180.230667pt;}
.y1c8{bottom:185.188000pt;}
.y114{bottom:186.009333pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y1fd{bottom:186.626667pt;}
.yb1{bottom:188.001333pt;}
.y30{bottom:188.421333pt;}
.ydf{bottom:189.197333pt;}
.ybc{bottom:189.596000pt;}
.y97{bottom:189.994667pt;}
.y292{bottom:190.433333pt;}
.y141{bottom:192.461333pt;}
.y5e{bottom:192.530667pt;}
.y192{bottom:192.672000pt;}
.y164{bottom:193.406667pt;}
.y25c{bottom:193.618667pt;}
.y225{bottom:194.074667pt;}
.y2c8{bottom:195.573333pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1c7{bottom:201.925333pt;}
.y113{bottom:202.746667pt;}
.y2f{bottom:204.322667pt;}
.yb0{bottom:204.738667pt;}
.y291{bottom:205.776000pt;}
.yde{bottom:205.934667pt;}
.y1fc{bottom:206.033333pt;}
.ybb{bottom:206.333333pt;}
.y96{bottom:206.732000pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y5d{bottom:209.268000pt;}
.y191{bottom:209.409333pt;}
.y163{bottom:210.144000pt;}
.y25b{bottom:210.356000pt;}
.y224{bottom:210.812000pt;}
.y2c7{bottom:210.916000pt;}
.y11b{bottom:215.056000pt;}
.y1c6{bottom:218.662667pt;}
.y112{bottom:219.484000pt;}
.y1fb{bottom:220.645333pt;}
.y290{bottom:221.118667pt;}
.yaf{bottom:221.476000pt;}
.ydd{bottom:222.672000pt;}
.yba{bottom:223.070667pt;}
.y95{bottom:223.469333pt;}
.y5c{bottom:226.005333pt;}
.y190{bottom:226.146667pt;}
.y2c6{bottom:226.258667pt;}
.y162{bottom:226.881333pt;}
.y25a{bottom:227.093333pt;}
.y223{bottom:227.549333pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y1fa{bottom:235.257333pt;}
.y1c5{bottom:235.400000pt;}
.y111{bottom:236.221333pt;}
.y28f{bottom:236.460000pt;}
.yae{bottom:238.213333pt;}
.ydc{bottom:239.409333pt;}
.yb9{bottom:239.808000pt;}
.y94{bottom:240.206667pt;}
.y2c5{bottom:241.601333pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y5b{bottom:242.742667pt;}
.y18f{bottom:242.884000pt;}
.y161{bottom:243.618667pt;}
.y259{bottom:243.830667pt;}
.y222{bottom:244.286667pt;}
.y11f{bottom:249.294229pt;}
.y1f9{bottom:249.869333pt;}
.y28e{bottom:251.802667pt;}
.y1c4{bottom:252.137333pt;}
.y110{bottom:252.958667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.yad{bottom:254.950667pt;}
.ydb{bottom:256.146667pt;}
.yb8{bottom:256.545333pt;}
.y93{bottom:256.944000pt;}
.y5a{bottom:259.480000pt;}
.y18e{bottom:259.621333pt;}
.y160{bottom:260.356000pt;}
.y258{bottom:260.568000pt;}
.y221{bottom:261.024000pt;}
.y2e{bottom:264.148000pt;}
.y1f8{bottom:264.481333pt;}
.y11e{bottom:266.413733pt;}
.y28d{bottom:267.145333pt;}
.y2d0{bottom:268.234667pt;}
.y1c3{bottom:268.874667pt;}
.y10f{bottom:269.696000pt;}
.yac{bottom:271.688000pt;}
.y2c4{bottom:272.285333pt;}
.yda{bottom:272.884000pt;}
.y266{bottom:273.282667pt;}
.y92{bottom:273.681333pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y59{bottom:276.217333pt;}
.y18d{bottom:276.358667pt;}
.y15f{bottom:277.093333pt;}
.yb7{bottom:277.266667pt;}
.y257{bottom:277.305333pt;}
.y220{bottom:277.761333pt;}
.y1f7{bottom:279.093333pt;}
.y2d{bottom:280.048000pt;}
.y28c{bottom:282.488000pt;}
.y2cf{bottom:283.577333pt;}
.y1c2{bottom:285.612000pt;}
.y10e{bottom:286.433333pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y2c3{bottom:287.628000pt;}
.yab{bottom:288.425333pt;}
.y265{bottom:290.020000pt;}
.y91{bottom:290.417333pt;}
.y58{bottom:292.954667pt;}
.y18c{bottom:293.096000pt;}
.yd9{bottom:293.606667pt;}
.y1f6{bottom:293.705333pt;}
.y15e{bottom:293.830667pt;}
.y256{bottom:294.042667pt;}
.y21f{bottom:294.498667pt;}
.y2c{bottom:295.949333pt;}
.y28b{bottom:297.830667pt;}
.y2ce{bottom:298.920000pt;}
.y1c1{bottom:302.349333pt;}
.y2c2{bottom:302.970667pt;}
.y10d{bottom:303.170667pt;}
.y264{bottom:306.757333pt;}
.y90{bottom:307.154667pt;}
.y1f5{bottom:308.317333pt;}
.yaa{bottom:309.148000pt;}
.yf{bottom:309.452000pt;}
.y57{bottom:309.692000pt;}
.y18b{bottom:309.833333pt;}
.y15d{bottom:310.568000pt;}
.y255{bottom:310.780000pt;}
.y21e{bottom:311.236000pt;}
.y2b{bottom:311.849333pt;}
.y28a{bottom:313.173333pt;}
.y11d{bottom:313.693853pt;}
.y2c1{bottom:318.313333pt;}
.y1c0{bottom:319.086667pt;}
.y10c{bottom:319.908000pt;}
.y11c{bottom:322.253733pt;}
.y1f4{bottom:322.928000pt;}
.yd8{bottom:323.494667pt;}
.y8f{bottom:323.892000pt;}
.y56{bottom:326.429333pt;}
.y18a{bottom:326.570667pt;}
.y254{bottom:327.517333pt;}
.y21d{bottom:327.973333pt;}
.y289{bottom:328.516000pt;}
.y2c0{bottom:333.656000pt;}
.y1bf{bottom:335.824000pt;}
.y10b{bottom:336.645333pt;}
.y2a{bottom:337.048000pt;}
.y1f3{bottom:337.540000pt;}
.ya9{bottom:339.036000pt;}
.yd7{bottom:340.232000pt;}
.y8e{bottom:340.629333pt;}
.y55{bottom:343.166667pt;}
.y189{bottom:343.308000pt;}
.ye{bottom:343.809333pt;}
.y288{bottom:343.858667pt;}
.y253{bottom:344.254667pt;}
.y15c{bottom:345.472000pt;}
.y2bf{bottom:348.998667pt;}
.y1f2{bottom:352.152000pt;}
.y1be{bottom:352.561333pt;}
.y10a{bottom:353.382667pt;}
.ya8{bottom:355.773333pt;}
.yd6{bottom:356.968000pt;}
.y8d{bottom:357.366667pt;}
.y15b{bottom:358.090667pt;}
.y287{bottom:359.200000pt;}
.y54{bottom:359.904000pt;}
.y188{bottom:360.045333pt;}
.y29{bottom:360.918667pt;}
.y252{bottom:360.992000pt;}
.yd{bottom:362.706666pt;}
.y2be{bottom:364.341333pt;}
.y1f1{bottom:366.764000pt;}
.y1bd{bottom:369.298667pt;}
.y109{bottom:370.118667pt;}
.y21c{bottom:371.040000pt;}
.ya7{bottom:372.510667pt;}
.yd5{bottom:373.705333pt;}
.y8c{bottom:374.104000pt;}
.y286{bottom:374.542667pt;}
.y53{bottom:376.641333pt;}
.y187{bottom:376.782667pt;}
.y28{bottom:376.818667pt;}
.y15a{bottom:377.497333pt;}
.y251{bottom:377.728000pt;}
.y2bd{bottom:379.684000pt;}
.y1f0{bottom:381.376000pt;}
.y21b{bottom:385.652000pt;}
.y108{bottom:386.856000pt;}
.ya6{bottom:389.248000pt;}
.y285{bottom:389.885333pt;}
.y1bc{bottom:390.020000pt;}
.yd4{bottom:390.442667pt;}
.y8b{bottom:390.841333pt;}
.y27{bottom:392.720000pt;}
.y186{bottom:393.520000pt;}
.y250{bottom:394.465333pt;}
.y2bc{bottom:395.025333pt;}
.y1ef{bottom:395.988000pt;}
.y52{bottom:397.364000pt;}
.y159{bottom:398.512000pt;}
.y21a{bottom:400.264000pt;}
.y107{bottom:403.593333pt;}
.y284{bottom:405.228000pt;}
.ya5{bottom:405.985333pt;}
.yd3{bottom:407.180000pt;}
.y8a{bottom:407.578667pt;}
.y26{bottom:408.620000pt;}
.y185{bottom:410.257333pt;}
.y2bb{bottom:410.368000pt;}
.y1ee{bottom:410.600000pt;}
.y24f{bottom:411.202667pt;}
.y158{bottom:413.124000pt;}
.y219{bottom:414.876000pt;}
.y106{bottom:420.330667pt;}
.y283{bottom:420.570667pt;}
.y1bb{bottom:421.874667pt;}
.ya4{bottom:422.722667pt;}
.yd2{bottom:423.917333pt;}
.y89{bottom:424.316000pt;}
.y25{bottom:424.520000pt;}
.y2ba{bottom:425.710667pt;}
.y157{bottom:427.734667pt;}
.y24e{bottom:427.940000pt;}
.y218{bottom:429.488000pt;}
.y184{bottom:430.980000pt;}
.y1ec{bottom:431.613333pt;}
.y1ba{bottom:434.493333pt;}
.y282{bottom:435.913333pt;}
.y105{bottom:437.068000pt;}
.y1ed{bottom:438.920000pt;}
.ya3{bottom:439.460000pt;}
.y24{bottom:440.421333pt;}
.yd1{bottom:440.654667pt;}
.y88{bottom:441.053333pt;}
.y156{bottom:442.346667pt;}
.y217{bottom:444.100000pt;}
.y24d{bottom:444.677333pt;}
.y1ea{bottom:446.225333pt;}
.yc{bottom:446.990669pt;}
.y183{bottom:448.912000pt;}
.y281{bottom:451.256000pt;}
.y104{bottom:453.805333pt;}
.y1b9{bottom:453.900000pt;}
.ya2{bottom:456.197333pt;}
.y23{bottom:456.321333pt;}
.y2b9{bottom:456.396000pt;}
.y155{bottom:456.958667pt;}
.yd0{bottom:457.392000pt;}
.y87{bottom:457.790667pt;}
.y216{bottom:458.712000pt;}
.y1eb{bottom:460.837333pt;}
.y24c{bottom:461.414667pt;}
.yb{bottom:462.990669pt;}
.y51{bottom:463.446667pt;}
.y280{bottom:466.598667pt;}
.y1b8{bottom:468.512000pt;}
.y103{bottom:470.542667pt;}
.y154{bottom:471.570667pt;}
.y2b8{bottom:471.738667pt;}
.y22{bottom:472.221333pt;}
.ya1{bottom:472.934667pt;}
.y215{bottom:473.324000pt;}
.ycf{bottom:474.129333pt;}
.y86{bottom:474.528000pt;}
.y24b{bottom:478.152000pt;}
.ya{bottom:478.990666pt;}
.y182{bottom:481.797333pt;}
.y27f{bottom:481.941333pt;}
.y1b7{bottom:483.124000pt;}
.y153{bottom:486.182667pt;}
.y2b7{bottom:487.081333pt;}
.y102{bottom:487.280000pt;}
.y214{bottom:487.936000pt;}
.ya0{bottom:489.672000pt;}
.yce{bottom:490.866667pt;}
.y85{bottom:491.265333pt;}
.y1e9{bottom:491.600000pt;}
.y24a{bottom:494.889333pt;}
.y9{bottom:494.990666pt;}
.y50{bottom:496.681333pt;}
.y27e{bottom:497.282667pt;}
.y1b6{bottom:497.736000pt;}
.y181{bottom:498.546667pt;}
.y152{bottom:500.794667pt;}
.y2b6{bottom:502.424000pt;}
.y213{bottom:502.548000pt;}
.y101{bottom:504.017333pt;}
.ycd{bottom:507.604000pt;}
.y84{bottom:508.002667pt;}
.y9f{bottom:510.393333pt;}
.y249{bottom:511.626667pt;}
.y1b5{bottom:512.348000pt;}
.y27d{bottom:512.625333pt;}
.y151{bottom:515.406667pt;}
.y212{bottom:517.158667pt;}
.y2b5{bottom:517.766667pt;}
.y180{bottom:519.561333pt;}
.y100{bottom:520.754667pt;}
.y1e8{bottom:523.364000pt;}
.ycc{bottom:524.341333pt;}
.y83{bottom:524.740000pt;}
.y1b4{bottom:526.960000pt;}
.y27c{bottom:527.968000pt;}
.y9e{bottom:528.326667pt;}
.y248{bottom:528.364000pt;}
.y4f{bottom:529.917333pt;}
.y150{bottom:530.018667pt;}
.y211{bottom:531.770667pt;}
.y2b4{bottom:533.108000pt;}
.y17f{bottom:534.173333pt;}
.yff{bottom:537.492000pt;}
.y1e7{bottom:540.101333pt;}
.ycb{bottom:541.078667pt;}
.y82{bottom:541.477333pt;}
.y1b3{bottom:541.572000pt;}
.y27b{bottom:543.310667pt;}
.y14f{bottom:544.630667pt;}
.y11a{bottom:545.064000pt;}
.y247{bottom:545.101333pt;}
.y210{bottom:546.382667pt;}
.y4e{bottom:547.212000pt;}
.y2b3{bottom:548.450667pt;}
.y17e{bottom:548.785333pt;}
.y1ab{bottom:548.909333pt;}
.yfe{bottom:554.229333pt;}
.y1b2{bottom:556.184000pt;}
.y1e6{bottom:556.838667pt;}
.yca{bottom:557.816000pt;}
.y81{bottom:558.214667pt;}
.y27a{bottom:558.653333pt;}
.y20f{bottom:560.994667pt;}
.y246{bottom:561.838667pt;}
.y17d{bottom:563.396000pt;}
.y1aa{bottom:563.521333pt;}
.y2b2{bottom:563.793333pt;}
.y4d{bottom:564.506667pt;}
.y14e{bottom:565.644000pt;}
.y1b1{bottom:570.794667pt;}
.yfd{bottom:570.966667pt;}
.y1e5{bottom:573.576000pt;}
.y8{bottom:573.786667pt;}
.y279{bottom:573.996000pt;}
.yc9{bottom:574.553333pt;}
.y80{bottom:574.952000pt;}
.y20e{bottom:575.606667pt;}
.y245{bottom:578.576000pt;}
.y2b1{bottom:579.136000pt;}
.y14d{bottom:580.256000pt;}
.y4c{bottom:581.802667pt;}
.y17c{bottom:584.410667pt;}
.y1b0{bottom:585.406667pt;}
.yfc{bottom:587.704000pt;}
.y278{bottom:589.338667pt;}
.y1e4{bottom:590.313333pt;}
.yc8{bottom:591.290667pt;}
.y7f{bottom:591.689333pt;}
.y7{bottom:592.685334pt;}
.y2b0{bottom:594.478667pt;}
.y14c{bottom:594.868000pt;}
.y244{bottom:595.313333pt;}
.y20d{bottom:596.621333pt;}
.y4b{bottom:599.097333pt;}
.y1af{bottom:600.018667pt;}
.y20c{bottom:603.926667pt;}
.yfb{bottom:604.441333pt;}
.y1e3{bottom:607.050667pt;}
.yc7{bottom:608.028000pt;}
.y7e{bottom:608.426667pt;}
.y277{bottom:608.665333pt;}
.y2af{bottom:609.821333pt;}
.y243{bottom:612.050667pt;}
.y17b{bottom:612.517333pt;}
.y1ae{bottom:614.630667pt;}
.y14b{bottom:615.881333pt;}
.y4a{bottom:616.393333pt;}
.yfa{bottom:621.178667pt;}
.y1e2{bottom:623.788000pt;}
.yc6{bottom:624.765333pt;}
.y7d{bottom:625.164000pt;}
.y242{bottom:628.788000pt;}
.y1ad{bottom:629.242667pt;}
.y14a{bottom:630.493333pt;}
.y148{bottom:630.693333pt;}
.y49{bottom:633.688000pt;}
.yf9{bottom:637.916000pt;}
.y276{bottom:638.553333pt;}
.y2ae{bottom:640.506667pt;}
.y1e1{bottom:640.525333pt;}
.yc5{bottom:641.502667pt;}
.y7c{bottom:641.901333pt;}
.y20b{bottom:641.996000pt;}
.y1ac{bottom:643.854667pt;}
.y149{bottom:645.105333pt;}
.y17a{bottom:645.498667pt;}
.y241{bottom:645.525333pt;}
.y6{bottom:645.598667pt;}
.y48{bottom:650.982667pt;}
.yf8{bottom:654.653333pt;}
.y2ad{bottom:655.848000pt;}
.y1e0{bottom:657.262667pt;}
.yc4{bottom:658.240000pt;}
.y1a9{bottom:658.466667pt;}
.y7b{bottom:658.638667pt;}
.y275{bottom:662.145333pt;}
.y179{bottom:662.236000pt;}
.y240{bottom:662.262667pt;}
.y47{bottom:668.278667pt;}
.y3{bottom:668.977329pt;}
.y2ac{bottom:671.190667pt;}
.yf7{bottom:671.390667pt;}
.yc3{bottom:674.977333pt;}
.y7a{bottom:675.376000pt;}
.y147{bottom:675.868000pt;}
.y274{bottom:677.766667pt;}
.y1df{bottom:677.985333pt;}
.y178{bottom:678.973333pt;}
.y1a8{bottom:679.480000pt;}
.y46{bottom:685.573333pt;}
.y2ab{bottom:686.533333pt;}
.y1a7{bottom:686.786667pt;}
.yf6{bottom:688.128000pt;}
.y20a{bottom:691.714667pt;}
.y79{bottom:692.113333pt;}
.yc2{bottom:695.700000pt;}
.y177{bottom:695.710667pt;}
.y23f{bottom:697.936000pt;}
.y273{bottom:701.358667pt;}
.y2aa{bottom:701.876000pt;}
.y45{bottom:702.869333pt;}
.yf5{bottom:704.865333pt;}
.y209{bottom:708.452000pt;}
.y78{bottom:708.850667pt;}
.y1de{bottom:709.652000pt;}
.y176{bottom:712.448000pt;}
.y272{bottom:716.980000pt;}
.y2a9{bottom:717.218667pt;}
.y23e{bottom:717.342667pt;}
.yf4{bottom:721.602667pt;}
.y1a6{bottom:724.856000pt;}
.y208{bottom:725.189333pt;}
.y9d{bottom:725.586667pt;}
.y77{bottom:725.588000pt;}
.y1dd{bottom:726.402667pt;}
.y175{bottom:729.185333pt;}
.y23d{bottom:731.954667pt;}
.y2a8{bottom:732.561333pt;}
.y44{bottom:732.770667pt;}
.yf3{bottom:738.340000pt;}
.y271{bottom:740.572000pt;}
.y1dc{bottom:741.013333pt;}
.y207{bottom:741.926667pt;}
.y76{bottom:742.324000pt;}
.y174{bottom:745.922667pt;}
.y23c{bottom:746.566667pt;}
.y43{bottom:747.117333pt;}
.y2a7{bottom:747.904000pt;}
.yf2{bottom:755.077333pt;}
.y1db{bottom:755.625333pt;}
.y270{bottom:756.193333pt;}
.y1a5{bottom:757.088000pt;}
.y206{bottom:758.664000pt;}
.y75{bottom:759.061333pt;}
.y23b{bottom:761.178667pt;}
.y42{bottom:761.462667pt;}
.y173{bottom:762.658667pt;}
.y2a6{bottom:763.246667pt;}
.y41{bottom:765.321333pt;}
.y1a4{bottom:769.706667pt;}
.y1da{bottom:770.237333pt;}
.yf1{bottom:771.814667pt;}
.y205{bottom:775.401333pt;}
.y23a{bottom:775.790667pt;}
.y74{bottom:775.798667pt;}
.y40{bottom:775.809333pt;}
.y2a5{bottom:778.589333pt;}
.y2{bottom:781.661334pt;}
.y1a3{bottom:782.326667pt;}
.y1d9{bottom:784.849333pt;}
.y26f{bottom:787.436000pt;}
.yf0{bottom:788.552000pt;}
.y239{bottom:790.402667pt;}
.y204{bottom:792.138667pt;}
.y73{bottom:792.536000pt;}
.y2a4{bottom:793.930667pt;}
.y3f{bottom:794.013333pt;}
.y172{bottom:798.333333pt;}
.y1d8{bottom:799.461333pt;}
.y1a2{bottom:801.733333pt;}
.y3e{bottom:804.502667pt;}
.y238{bottom:805.014667pt;}
.yef{bottom:805.289333pt;}
.y203{bottom:808.874667pt;}
.y72{bottom:809.273333pt;}
.y26e{bottom:811.028000pt;}
.y263{bottom:812.860000pt;}
.y1d7{bottom:814.073333pt;}
.y171{bottom:815.084000pt;}
.y1a1{bottom:816.345333pt;}
.y237{bottom:819.626667pt;}
.y1cf{bottom:821.412000pt;}
.yee{bottom:822.025333pt;}
.y3d{bottom:822.705333pt;}
.y2a3{bottom:824.616000pt;}
.y202{bottom:825.612000pt;}
.y71{bottom:826.010667pt;}
.y26d{bottom:826.649333pt;}
.y1d6{bottom:828.685333pt;}
.y1a0{bottom:830.957333pt;}
.y3c{bottom:833.194667pt;}
.y236{bottom:834.238667pt;}
.y1ce{bottom:836.022667pt;}
.y170{bottom:836.097333pt;}
.yed{bottom:838.762667pt;}
.y2a2{bottom:839.958667pt;}
.y201{bottom:842.349333pt;}
.y70{bottom:842.748000pt;}
.y1d5{bottom:843.297333pt;}
.y19f{bottom:845.568000pt;}
.y235{bottom:848.850667pt;}
.y26c{bottom:850.240000pt;}
.y16f{bottom:850.709333pt;}
.y3b{bottom:851.398667pt;}
.y2a1{bottom:855.301333pt;}
.yec{bottom:855.500000pt;}
.y1d4{bottom:857.909333pt;}
.y200{bottom:859.086667pt;}
.y1{bottom:859.312000pt;}
.y6f{bottom:859.485333pt;}
.y234{bottom:863.461333pt;}
.y16e{bottom:865.321333pt;}
.y26b{bottom:865.861333pt;}
.y19e{bottom:866.582667pt;}
.y19c{bottom:868.173333pt;}
.y2a0{bottom:870.644000pt;}
.yeb{bottom:872.237333pt;}
.y1d3{bottom:872.521333pt;}
.y6e{bottom:876.222667pt;}
.y233{bottom:878.073333pt;}
.y1ff{bottom:879.809333pt;}
.y16d{bottom:879.933333pt;}
.y19d{bottom:881.194667pt;}
.y199{bottom:881.394667pt;}
.y26a{bottom:881.482667pt;}
.y19b{bottom:882.785333pt;}
.y29f{bottom:885.986667pt;}
.y3a{bottom:886.714667pt;}
.y1d2{bottom:887.132000pt;}
.yea{bottom:888.974667pt;}
.y232{bottom:892.685333pt;}
.y6d{bottom:892.960000pt;}
.y19a{bottom:895.806667pt;}
.y269{bottom:897.105333pt;}
.y16c{bottom:900.946667pt;}
.y29e{bottom:901.329333pt;}
.y1d1{bottom:901.744000pt;}
.ye9{bottom:905.712000pt;}
.y231{bottom:907.297333pt;}
.y6c{bottom:909.697333pt;}
.y268{bottom:912.726667pt;}
.y16b{bottom:915.558667pt;}
.y1d0{bottom:916.356000pt;}
.y29d{bottom:916.670667pt;}
.y230{bottom:921.909333pt;}
.y39{bottom:922.198667pt;}
.ye8{bottom:922.449333pt;}
.y6b{bottom:926.434667pt;}
.y198{bottom:926.569333pt;}
.y267{bottom:928.348000pt;}
.y1cd{bottom:930.968000pt;}
.y29c{bottom:932.013333pt;}
.ye7{bottom:939.186667pt;}
.y22f{bottom:942.924000pt;}
.y6a{bottom:943.172000pt;}
.y16a{bottom:943.665333pt;}
.y38{bottom:947.304000pt;}
.y29b{bottom:947.356000pt;}
.y22d{bottom:951.717333pt;}
.y1cc{bottom:951.982667pt;}
.y22c{bottom:952.028000pt;}
.ye6{bottom:955.924000pt;}
.y1cb{bottom:959.288000pt;}
.y69{bottom:959.909333pt;}
.y29a{bottom:962.698667pt;}
.y22e{bottom:963.937333pt;}
.y37{bottom:972.410667pt;}
.ye5{bottom:972.661333pt;}
.y68{bottom:976.646667pt;}
.y299{bottom:978.041333pt;}
.y67{bottom:993.384000pt;}
.y1ca{bottom:994.700000pt;}
.y66{bottom:1046.810667pt;}
.hd{height:27.672303pt;}
.h7{height:28.560000pt;}
.h9{height:32.284045pt;}
.h17{height:34.574438pt;}
.he{height:36.896250pt;}
.h1c{height:36.942438pt;}
.h13{height:38.008906pt;}
.h10{height:38.415786pt;}
.ha{height:39.000258pt;}
.h16{height:39.349375pt;}
.h6{height:40.800000pt;}
.h18{height:40.937105pt;}
.hf{height:41.508454pt;}
.h3{height:42.840000pt;}
.h15{height:42.867188pt;}
.h11{height:46.120196pt;}
.h14{height:47.725469pt;}
.hc{height:48.486756pt;}
.h2{height:48.960000pt;}
.h1a{height:63.795772pt;}
.h1b{height:63.801105pt;}
.hb{height:69.148877pt;}
.h5{height:69.360000pt;}
.h19{height:93.022438pt;}
.h4{height:105.826671pt;}
.h12{height:221.322667pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w4{width:582.979333pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.xc{left:-58.123333pt;}
.x14{left:-45.803333pt;}
.x13{left:-42.763829pt;}
.x1c{left:-28.443837pt;}
.x10{left:-25.483333pt;}
.x1b{left:-23.404445pt;}
.x16{left:-20.843333pt;}
.x18{left:-16.604205pt;}
.x17{left:-14.443893pt;}
.x1a{left:-11.803957pt;}
.x19{left:-9.003701pt;}
.x15{left:-7.083381pt;}
.x0{left:0.000000pt;}
.x6{left:46.689333pt;}
.x5{left:47.621333pt;}
.x3a{left:55.592000pt;}
.x5a{left:57.430667pt;}
.x5e{left:58.477333pt;}
.x3f{left:59.394667pt;}
.x32{left:61.518667pt;}
.x5d{left:64.238667pt;}
.x21{left:71.809333pt;}
.x20{left:74.188000pt;}
.x62{left:76.309333pt;}
.x39{left:82.852000pt;}
.x28{left:87.026667pt;}
.x23{left:89.664000pt;}
.x1{left:90.706667pt;}
.x27{left:92.490667pt;}
.x2{left:94.486667pt;}
.x25{left:97.625333pt;}
.x24{left:99.586667pt;}
.x26{left:101.970667pt;}
.xb{left:105.172667pt;}
.x22{left:106.209333pt;}
.x38{left:114.514667pt;}
.xd{left:115.716667pt;}
.x4d{left:118.441333pt;}
.x12{left:129.076499pt;}
.x3b{left:133.836000pt;}
.x5f{left:139.580000pt;}
.xf{left:144.036667pt;}
.x5b{left:149.066667pt;}
.x11{left:167.236667pt;}
.x4{left:180.874667pt;}
.x4f{left:186.081333pt;}
.x50{left:187.318667pt;}
.x4e{left:188.842667pt;}
.x3c{left:191.022667pt;}
.x9{left:220.912000pt;}
.x7{left:221.858667pt;}
.x37{left:230.702667pt;}
.x46{left:231.714667pt;}
.x4c{left:235.534667pt;}
.x1f{left:238.309333pt;}
.x8{left:239.924000pt;}
.x2a{left:244.332000pt;}
.x2e{left:246.220000pt;}
.xa{left:250.204000pt;}
.x2d{left:253.232000pt;}
.x2c{left:255.246667pt;}
.x2b{left:257.261333pt;}
.x51{left:258.240000pt;}
.x33{left:274.284000pt;}
.x1e{left:283.009333pt;}
.x53{left:309.149333pt;}
.x1d{left:310.245333pt;}
.x29{left:315.242667pt;}
.x3d{left:316.957333pt;}
.x54{left:322.801333pt;}
.x52{left:324.982667pt;}
.x30{left:337.874667pt;}
.x31{left:339.764000pt;}
.x2f{left:341.856000pt;}
.x5c{left:347.480000pt;}
.x55{left:393.722667pt;}
.x3{left:404.408000pt;}
.x47{left:405.356000pt;}
.x34{left:422.281333pt;}
.x35{left:443.597333pt;}
.x56{left:448.685333pt;}
.x40{left:467.477333pt;}
.x41{left:469.706667pt;}
.x61{left:500.494667pt;}
.x59{left:506.186667pt;}
.x48{left:534.921333pt;}
.x60{left:561.137333pt;}
.x42{left:564.497333pt;}
.x43{left:566.429333pt;}
.x3e{left:568.030667pt;}
.x57{left:574.568000pt;}
.xe{left:578.758235pt;}
.x36{left:582.981333pt;}
.x49{left:623.120000pt;}
.x4a{left:632.408000pt;}
.x4b{left:634.638667pt;}
.x58{left:645.489333pt;}
.x44{left:661.070667pt;}
.x45{left:663.150667pt;}
}




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