
    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_95b37495bbf412abca9216fa.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_5fc4787ab47eee7d67004f80.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_71d57e5b42e8898900342a07.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.191000;font-style:normal;font-weight: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_a60b17d04366616e523ab587.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933000;font-style:normal;font-weight: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_8070cc07664624d0003b6033.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d74efa75994c40bdde7843e6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.691000;font-style:normal;font-weight: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_b7abd052cd27103bac4d2547.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.747000;font-style:normal;font-weight: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_52b100d631c958020a056560.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_1470cd285723aedc3a4d261b.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_79e421be4a30b709ce035d14.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.211426;font-style:normal;font-weight: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_1a3e11de0e1a06ecc4387913.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.745605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_8059c63bcf3a0d5b6e44a5a9.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_8216ff2ebc02f436218de725.woff2')format("woff");}.fff{font-family:fff;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_2f6926cc2abddbba52a76aea.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.522000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_cc7d5ae2d1dc33a4c4ac0674.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_ca38d950c1817da33c2a840e.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_9169638880bc165ccdbaaa66.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_1eff8daccd123899fdaa5796.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_e52608cd9e0e6f3fc99a796c.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.745605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_684e3f32c5d1446d60b34b9f.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.775391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_d8511e3924457cdeed536ac6.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.054688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_171b44e1fa2060cc365cfe95.woff2')format("woff");}.ff18{font-family:ff18;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;}
.ma{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);}
.m4{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);}
.m10{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);}
.m5{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);}
.md{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);}
.mb{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);}
.m29{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);}
.m26{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);}
.m1a{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);}
.mc{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);}
.m18{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);}
.mf{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);}
.m15{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);}
.m3{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);}
.m22{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);}
.m23{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);}
.m28{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);}
.m25{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);}
.m7{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);}
.m1b{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);}
.m2a{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m24{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);}
.me{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);}
.m8{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);}
.m20{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);}
.m21{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);}
.m1c{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);}
.m14{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);}
.m16{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);}
.m1d{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);}
.m1f{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);}
.m19{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);}
.m27{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);}
.m9{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);}
.m17{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);}
.m11{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);}
.m6{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);}
.m1e{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m13{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;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.688000px;}
.v7{vertical-align:12.912000px;}
.v1{vertical-align:21.702000px;}
.v4{vertical-align:32.880000px;}
.v5{vertical-align:40.322484px;}
.ls82{letter-spacing:-4.268520px;}
.ls3a{letter-spacing:-0.730578px;}
.ls33{letter-spacing:-0.701119px;}
.ls38{letter-spacing:-0.677552px;}
.ls3b{letter-spacing:-0.659877px;}
.ls37{letter-spacing:-0.648094px;}
.ls34{letter-spacing:-0.642202px;}
.ls39{letter-spacing:-0.624527px;}
.ls35{letter-spacing:-0.618635px;}
.ls36{letter-spacing:-0.530258px;}
.ls77{letter-spacing:-0.390780px;}
.ls87{letter-spacing:-0.294588px;}
.ls46{letter-spacing:-0.288696px;}
.ls31{letter-spacing:-0.282804px;}
.ls7e{letter-spacing:-0.252504px;}
.ls3e{letter-spacing:-0.200320px;}
.ls84{letter-spacing:-0.124200px;}
.ls7a{letter-spacing:-0.120240px;}
.ls40{letter-spacing:-0.117835px;}
.ls3d{letter-spacing:-0.100160px;}
.ls32{letter-spacing:-0.088376px;}
.ls44{letter-spacing:-0.082485px;}
.ls78{letter-spacing:-0.060120px;}
.ls43{letter-spacing:-0.058918px;}
.ls8a{letter-spacing:-0.048096px;}
.ls3c{letter-spacing:-0.047134px;}
.ls89{letter-spacing:-0.042084px;}
.ls85{letter-spacing:-0.037800px;}
.ls76{letter-spacing:-0.036072px;}
.ls80{letter-spacing:-0.030060px;}
.ls41{letter-spacing:-0.029459px;}
.ls74{letter-spacing:-0.028728px;}
.ls2e{letter-spacing:-0.028153px;}
.ls86{letter-spacing:-0.024048px;}
.ls45{letter-spacing:-0.023567px;}
.ls88{letter-spacing:-0.018036px;}
.ls42{letter-spacing:-0.017675px;}
.ls7d{letter-spacing:-0.012024px;}
.ls30{letter-spacing:-0.011784px;}
.ls3f{letter-spacing:-0.005892px;}
.ls75{letter-spacing:-0.004788px;}
.ls2f{letter-spacing:-0.004692px;}
.ls0{letter-spacing:0.000000px;}
.lsa4{letter-spacing:0.000009px;}
.ls48{letter-spacing:0.000273px;}
.ls91{letter-spacing:0.000292px;}
.ls2b{letter-spacing:0.000435px;}
.lsa0{letter-spacing:0.000800px;}
.ls4b{letter-spacing:0.000838px;}
.ls9f{letter-spacing:0.001155px;}
.ls9b{letter-spacing:0.001357px;}
.ls93{letter-spacing:0.001484px;}
.ls4c{letter-spacing:0.001574px;}
.ls6{letter-spacing:0.001952px;}
.ls55{letter-spacing:0.001996px;}
.lsa6{letter-spacing:0.002090px;}
.lsa1{letter-spacing:0.002552px;}
.ls2d{letter-spacing:0.002667px;}
.ls3{letter-spacing:0.002725px;}
.ls96{letter-spacing:0.002841px;}
.ls49{letter-spacing:0.003226px;}
.ls9c{letter-spacing:0.003437px;}
.lsa5{letter-spacing:0.003646px;}
.lsa{letter-spacing:0.003699px;}
.ls4a{letter-spacing:0.003875px;}
.ls99{letter-spacing:0.004078px;}
.ls5c{letter-spacing:0.004090px;}
.ls8f{letter-spacing:0.004092px;}
.ls2c{letter-spacing:0.004646px;}
.ls94{letter-spacing:0.004754px;}
.lsa3{letter-spacing:0.004971px;}
.ls9a{letter-spacing:0.005384px;}
.ls68{letter-spacing:0.005400px;}
.ls28{letter-spacing:0.005892px;}
.ls65{letter-spacing:0.006012px;}
.ls6f{letter-spacing:0.010800px;}
.ls29{letter-spacing:0.011784px;}
.ls66{letter-spacing:0.012024px;}
.ls70{letter-spacing:0.016200px;}
.ls72{letter-spacing:0.018036px;}
.ls25{letter-spacing:0.023567px;}
.ls6e{letter-spacing:0.024048px;}
.ls26{letter-spacing:0.031752px;}
.ls71{letter-spacing:0.032400px;}
.ls1d{letter-spacing:0.035351px;}
.ls20{letter-spacing:0.041242px;}
.ls6a{letter-spacing:0.042084px;}
.ls24{letter-spacing:0.047134px;}
.ls63{letter-spacing:0.048096px;}
.ls1c{letter-spacing:0.053026px;}
.ls1e{letter-spacing:0.058918px;}
.ls69{letter-spacing:0.060120px;}
.ls23{letter-spacing:0.064809px;}
.ls6c{letter-spacing:0.066132px;}
.ls21{letter-spacing:0.070701px;}
.ls7b{letter-spacing:0.078156px;}
.ls47{letter-spacing:0.082485px;}
.ls67{letter-spacing:0.084168px;}
.ls27{letter-spacing:0.084672px;}
.ls61{letter-spacing:0.090180px;}
.ls1f{letter-spacing:0.100160px;}
.ls79{letter-spacing:0.102204px;}
.ls6d{letter-spacing:0.108216px;}
.ls6b{letter-spacing:0.114228px;}
.ls1b{letter-spacing:0.117835px;}
.ls64{letter-spacing:0.120240px;}
.ls83{letter-spacing:0.132264px;}
.ls81{letter-spacing:0.144288px;}
.ls22{letter-spacing:0.147294px;}
.ls7f{letter-spacing:0.150300px;}
.ls1a{letter-spacing:0.173613px;}
.ls2a{letter-spacing:0.176753px;}
.ls73{letter-spacing:0.180360px;}
.ls60{letter-spacing:0.181944px;}
.ls19{letter-spacing:0.187690px;}
.ls5f{letter-spacing:0.191520px;}
.ls7c{letter-spacing:0.192384px;}
.ls62{letter-spacing:0.246492px;}
.ls5d{letter-spacing:0.672000px;}
.ls2{letter-spacing:2.989200px;}
.ls5e{letter-spacing:11.951700px;}
.ls8{letter-spacing:11.954850px;}
.ls4f{letter-spacing:11.957700px;}
.ls97{letter-spacing:12.012199px;}
.ls4e{letter-spacing:12.433325px;}
.ls95{letter-spacing:13.233516px;}
.lsa2{letter-spacing:13.277472px;}
.ls9e{letter-spacing:13.450800px;}
.ls98{letter-spacing:13.686956px;}
.ls92{letter-spacing:13.714830px;}
.ls5b{letter-spacing:13.912200px;}
.ls11{letter-spacing:14.107042px;}
.ls58{letter-spacing:14.693732px;}
.lsd{letter-spacing:14.704798px;}
.ls14{letter-spacing:14.764573px;}
.ls5a{letter-spacing:14.803900px;}
.ls50{letter-spacing:14.824349px;}
.lsf{letter-spacing:14.943900px;}
.ls90{letter-spacing:14.983071px;}
.ls54{letter-spacing:15.020363px;}
.ls57{letter-spacing:15.036823px;}
.ls10{letter-spacing:15.063451px;}
.lsc{letter-spacing:15.183002px;}
.ls8c{letter-spacing:15.194434px;}
.ls56{letter-spacing:15.246894px;}
.ls8b{letter-spacing:15.289751px;}
.ls17{letter-spacing:15.294093px;}
.ls59{letter-spacing:15.335729px;}
.ls18{letter-spacing:15.362329px;}
.ls8d{letter-spacing:16.347494px;}
.ls9d{letter-spacing:16.909426px;}
.lsb{letter-spacing:17.095822px;}
.ls13{letter-spacing:19.068416px;}
.ls9{letter-spacing:19.128192px;}
.ls4d{letter-spacing:20.323704px;}
.ls8e{letter-spacing:20.371024px;}
.lse{letter-spacing:20.622582px;}
.ls15{letter-spacing:22.057196px;}
.ls12{letter-spacing:27.735878px;}
.ls16{letter-spacing:30.605107px;}
.ls1{letter-spacing:57.415200px;}
.ls5{letter-spacing:62.761200px;}
.ls7{letter-spacing:64.321654px;}
.ls4{letter-spacing:72.361200px;}
.ls52{letter-spacing:156.342000px;}
.ls53{letter-spacing:165.678000px;}
.ls51{letter-spacing:186.360000px;}
.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;}
}
.ws11c{word-spacing:-60.120000px;}
.wsa0{word-spacing:-58.917600px;}
.wsc{word-spacing:-22.718660px;}
.ws119{word-spacing:-15.042024px;}
.ws118{word-spacing:-15.030000px;}
.ws26{word-spacing:-14.943900px;}
.wsa1{word-spacing:-14.829560px;}
.ws11b{word-spacing:-13.500000px;}
.wsf4{word-spacing:-13.449600px;}
.ws115{word-spacing:-12.161520px;}
.ws116{word-spacing:-11.970000px;}
.wsf{word-spacing:-11.955150px;}
.ws9e{word-spacing:-11.918290px;}
.ws9f{word-spacing:-11.730600px;}
.wsd{word-spacing:-11.357400px;}
.ws11a{word-spacing:-10.761480px;}
.ws3{word-spacing:-10.460700px;}
.ws12f{word-spacing:-3.589164px;}
.ws12e{word-spacing:-3.583152px;}
.wsa3{word-spacing:-3.347434px;}
.wse8{word-spacing:-3.227882px;}
.ws91{word-spacing:-2.809453px;}
.wsa4{word-spacing:-2.630126px;}
.wsef{word-spacing:-2.510575px;}
.ws127{word-spacing:-2.470932px;}
.wsb4{word-spacing:-2.456864px;}
.wsb5{word-spacing:-2.439189px;}
.ws5d{word-spacing:-2.391024px;}
.ws129{word-spacing:-2.362716px;}
.wsde{word-spacing:-2.331248px;}
.ws1c{word-spacing:-2.259533px;}
.ws1f{word-spacing:-2.205734px;}
.ws14b{word-spacing:-2.151922px;}
.ws148{word-spacing:-2.104200px;}
.ws8d{word-spacing:-2.092146px;}
.ws178{word-spacing:-2.044339px;}
.ws9c{word-spacing:-2.032370px;}
.ws128{word-spacing:-2.032056px;}
.ws75{word-spacing:-1.972595px;}
.ws106{word-spacing:-1.853044px;}
.ws11d{word-spacing:-1.733492px;}
.wsb6{word-spacing:-1.732177px;}
.ws76{word-spacing:-1.673717px;}
.wsb7{word-spacing:-1.643801px;}
.ws68{word-spacing:-1.613941px;}
.ws49{word-spacing:-1.494390px;}
.ws17a{word-spacing:-1.452557px;}
.ws6a{word-spacing:-1.434614px;}
.ws47{word-spacing:-1.135736px;}
.ws12c{word-spacing:-1.088172px;}
.ws48{word-spacing:-1.075961px;}
.wsb2{word-spacing:-1.025166px;}
.ws85{word-spacing:-1.016185px;}
.wsb3{word-spacing:-0.995707px;}
.ws13e{word-spacing:-0.973944px;}
.ws6c{word-spacing:-0.956410px;}
.ws196{word-spacing:-0.914573px;}
.ws6d{word-spacing:-0.896634px;}
.ws12d{word-spacing:-0.865728px;}
.ws197{word-spacing:-0.860774px;}
.ws6b{word-spacing:-0.836858px;}
.ws168{word-spacing:-0.806976px;}
.ws5a{word-spacing:-0.777083px;}
.ws16f{word-spacing:-0.753178px;}
.ws105{word-spacing:-0.717307px;}
.ws99{word-spacing:-0.657532px;}
.wscd{word-spacing:-0.648094px;}
.ws18b{word-spacing:-0.645581px;}
.wsa9{word-spacing:-0.600960px;}
.ws107{word-spacing:-0.597756px;}
.wsce{word-spacing:-0.553825px;}
.ws46{word-spacing:-0.537980px;}
.ws69{word-spacing:-0.478205px;}
.ws1e{word-spacing:-0.376589px;}
.ws32{word-spacing:-0.358654px;}
.wsaa{word-spacing:-0.329939px;}
.ws172{word-spacing:-0.322790px;}
.wsac{word-spacing:-0.312263px;}
.ws3b{word-spacing:-0.298878px;}
.ws13f{word-spacing:-0.282564px;}
.ws11f{word-spacing:-0.277704px;}
.wsa6{word-spacing:-0.272150px;}
.ws154{word-spacing:-0.268992px;}
.ws142{word-spacing:-0.264528px;}
.ws13d{word-spacing:-0.240480px;}
.ws3a{word-spacing:-0.239102px;}
.wsd3{word-spacing:-0.235670px;}
.ws130{word-spacing:-0.228456px;}
.ws169{word-spacing:-0.215194px;}
.ws45{word-spacing:-0.179327px;}
.ws190{word-spacing:-0.177102px;}
.ws17{word-spacing:-0.161395px;}
.ws3c{word-spacing:-0.119551px;}
.ws19{word-spacing:-0.107597px;}
.ws100{word-spacing:-0.095641px;}
.ws120{word-spacing:-0.081396px;}
.wsa7{word-spacing:-0.079768px;}
.ws117{word-spacing:-0.060120px;}
.ws27{word-spacing:-0.059776px;}
.wsa2{word-spacing:-0.058918px;}
.ws11e{word-spacing:-0.057456px;}
.wsa5{word-spacing:-0.056307px;}
.ws18{word-spacing:-0.053798px;}
.ws2{word-spacing:-0.041843px;}
.ws1a1{word-spacing:-0.012355px;}
.ws16c{word-spacing:-0.010339px;}
.ws15d{word-spacing:-0.010186px;}
.ws189{word-spacing:-0.010157px;}
.ws167{word-spacing:-0.009302px;}
.ws165{word-spacing:-0.008592px;}
.ws17b{word-spacing:-0.008467px;}
.ws170{word-spacing:-0.008266px;}
.ws15a{word-spacing:-0.007718px;}
.ws199{word-spacing:-0.007488px;}
.ws198{word-spacing:-0.006816px;}
.ws17f{word-spacing:-0.006682px;}
.ws18f{word-spacing:-0.005990px;}
.ws193{word-spacing:-0.005683px;}
.ws17c{word-spacing:-0.004752px;}
.ws114{word-spacing:-0.003790px;}
.ws16b{word-spacing:-0.003427px;}
.ws186{word-spacing:-0.002582px;}
.ws4{word-spacing:-0.000026px;}
.ws0{word-spacing:0.000000px;}
.wse{word-spacing:0.000283px;}
.ws22{word-spacing:0.003599px;}
.wsd7{word-spacing:0.011784px;}
.wsd6{word-spacing:0.029459px;}
.ws143{word-spacing:0.030060px;}
.wsb8{word-spacing:0.047134px;}
.ws166{word-spacing:0.053798px;}
.ws19f{word-spacing:0.054878px;}
.wsbe{word-spacing:0.058918px;}
.ws24{word-spacing:0.059776px;}
.ws136{word-spacing:0.072144px;}
.ws146{word-spacing:0.090180px;}
.wsd5{word-spacing:0.095256px;}
.ws1b{word-spacing:0.107597px;}
.ws140{word-spacing:0.108216px;}
.wscf{word-spacing:0.111943px;}
.ws144{word-spacing:0.114228px;}
.ws19d{word-spacing:0.114836px;}
.ws34{word-spacing:0.119551px;}
.ws145{word-spacing:0.138276px;}
.ws147{word-spacing:0.144288px;}
.wsd4{word-spacing:0.148176px;}
.ws13b{word-spacing:0.151200px;}
.ws15{word-spacing:0.161395px;}
.ws183{word-spacing:0.161591px;}
.ws139{word-spacing:0.167400px;}
.ws13a{word-spacing:0.172800px;}
.ws131{word-spacing:0.178200px;}
.ws28{word-spacing:0.179327px;}
.wsab{word-spacing:0.182645px;}
.wsd0{word-spacing:0.194428px;}
.ws1d{word-spacing:0.215194px;}
.ws13c{word-spacing:0.221400px;}
.ws3d{word-spacing:0.239102px;}
.ws16{word-spacing:0.268992px;}
.ws2a{word-spacing:0.298878px;}
.ws18e{word-spacing:0.322790px;}
.ws29{word-spacing:0.358654px;}
.ws16d{word-spacing:0.376589px;}
.ws55{word-spacing:0.418429px;}
.ws35{word-spacing:0.478205px;}
.ws18a{word-spacing:0.484186px;}
.ws54{word-spacing:0.537980px;}
.ws17e{word-spacing:0.537984px;}
.wsbd{word-spacing:0.547934px;}
.ws14{word-spacing:0.591782px;}
.ws80{word-spacing:0.597756px;}
.ws15c{word-spacing:0.645581px;}
.ws8a{word-spacing:0.717307px;}
.ws74{word-spacing:0.777083px;}
.ws7d{word-spacing:0.836858px;}
.ws156{word-spacing:0.860774px;}
.ws88{word-spacing:0.896634px;}
.ws9a{word-spacing:0.956410px;}
.ws19e{word-spacing:0.968371px;}
.ws72{word-spacing:1.075961px;}
.ws164{word-spacing:1.075968px;}
.wsc1{word-spacing:1.084084px;}
.wsc9{word-spacing:1.107651px;}
.ws161{word-spacing:1.129766px;}
.ws67{word-spacing:1.135736px;}
.wsc0{word-spacing:1.166568px;}
.wsca{word-spacing:1.184244px;}
.ws7e{word-spacing:1.195512px;}
.ws126{word-spacing:1.214424px;}
.ws50{word-spacing:1.255288px;}
.ws4f{word-spacing:1.315063px;}
.ws14d{word-spacing:1.374839px;}
.wsb{word-spacing:1.380812px;}
.ws14c{word-spacing:1.434614px;}
.wsc3{word-spacing:1.443481px;}
.wsba{word-spacing:1.449373px;}
.ws152{word-spacing:1.494390px;}
.wsdb{word-spacing:1.496507px;}
.wsc2{word-spacing:1.508291px;}
.ws141{word-spacing:1.527048px;}
.ws12b{word-spacing:1.533060px;}
.wsdc{word-spacing:1.537749px;}
.ws89{word-spacing:1.554166px;}
.ws15f{word-spacing:1.560154px;}
.wse3{word-spacing:1.613941px;}
.ws16a{word-spacing:1.667750px;}
.ws90{word-spacing:1.673717px;}
.ws184{word-spacing:1.721549px;}
.ws150{word-spacing:1.733492px;}
.ws12a{word-spacing:1.773540px;}
.ws187{word-spacing:1.775347px;}
.ws4c{word-spacing:1.793268px;}
.ws4a{word-spacing:1.853044px;}
.ws19c{word-spacing:1.882944px;}
.ws7b{word-spacing:1.912819px;}
.ws62{word-spacing:2.032370px;}
.ws30{word-spacing:2.092146px;}
.ws19a{word-spacing:2.098138px;}
.wse4{word-spacing:2.151922px;}
.ws96{word-spacing:2.211697px;}
.ws3e{word-spacing:2.271473px;}
.ws15b{word-spacing:2.313331px;}
.wsc8{word-spacing:2.327245px;}
.ws14f{word-spacing:2.331248px;}
.ws1a{word-spacing:2.367130px;}
.ws8b{word-spacing:2.391024px;}
.ws179{word-spacing:2.420928px;}
.ws92{word-spacing:2.450800px;}
.ws192{word-spacing:2.474726px;}
.wsae{word-spacing:2.498106px;}
.ws56{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.ws191{word-spacing:2.528525px;}
.wsad{word-spacing:2.557024px;}
.ws2e{word-spacing:2.570351px;}
.wsc7{word-spacing:2.610050px;}
.ws71{word-spacing:2.630126px;}
.ws41{word-spacing:2.689902px;}
.ws18d{word-spacing:2.743718px;}
.ws37{word-spacing:2.749678px;}
.wse5{word-spacing:2.809453px;}
.wsdd{word-spacing:2.863395px;}
.ws8c{word-spacing:2.869229px;}
.ws10{word-spacing:2.869236px;}
.ws1a0{word-spacing:2.905114px;}
.ws43{word-spacing:2.988780px;}
.ws4d{word-spacing:3.048556px;}
.ws13{word-spacing:3.066509px;}
.wsb1{word-spacing:3.093174px;}
.ws44{word-spacing:3.108331px;}
.ws18c{word-spacing:3.120307px;}
.wsb0{word-spacing:3.175659px;}
.wsaf{word-spacing:3.181550px;}
.ws19b{word-spacing:3.216221px;}
.ws182{word-spacing:3.218880px;}
.ws177{word-spacing:3.221165px;}
.ws17d{word-spacing:3.221971px;}
.ws185{word-spacing:3.223776px;}
.ws16e{word-spacing:3.224362px;}
.ws157{word-spacing:3.224822px;}
.ws73{word-spacing:3.227882px;}
.ws10a{word-spacing:3.227904px;}
.wsbf{word-spacing:3.228684px;}
.ws21{word-spacing:3.281702px;}
.ws7c{word-spacing:3.287658px;}
.ws195{word-spacing:3.335501px;}
.wse0{word-spacing:3.347434px;}
.ws175{word-spacing:3.389299px;}
.ws51{word-spacing:3.407209px;}
.ws173{word-spacing:3.443098px;}
.ws14a{word-spacing:3.466985px;}
.ws162{word-spacing:3.496896px;}
.ws25{word-spacing:3.526760px;}
.ws23{word-spacing:3.586536px;}
.ws176{word-spacing:3.604493px;}
.ws57{word-spacing:3.646312px;}
.ws160{word-spacing:3.658291px;}
.ws7a{word-spacing:3.706087px;}
.wsf7{word-spacing:3.765863px;}
.ws124{word-spacing:3.811608px;}
.ws180{word-spacing:3.819686px;}
.ws6e{word-spacing:3.825638px;}
.ws9b{word-spacing:3.885414px;}
.ws65{word-spacing:3.945190px;}
.ws102{word-spacing:4.004965px;}
.wse6{word-spacing:4.064741px;}
.ws188{word-spacing:4.088678px;}
.ws6f{word-spacing:4.124516px;}
.ws82{word-spacing:4.184292px;}
.ws194{word-spacing:4.196275px;}
.ws123{word-spacing:4.328640px;}
.ws122{word-spacing:4.418820px;}
.ws2c{word-spacing:4.423394px;}
.ws9d{word-spacing:4.483170px;}
.ws5e{word-spacing:4.542946px;}
.ws39{word-spacing:4.602721px;}
.wsd8{word-spacing:4.648599px;}
.ws38{word-spacing:4.662497px;}
.wsf8{word-spacing:4.722272px;}
.ws81{word-spacing:4.782048px;}
.ws2d{word-spacing:4.841824px;}
.wsee{word-spacing:4.901599px;}
.ws83{word-spacing:4.961375px;}
.ws4e{word-spacing:5.021150px;}
.ws15e{word-spacing:5.057050px;}
.ws3f{word-spacing:5.080926px;}
.ws12{word-spacing:5.110848px;}
.wse2{word-spacing:5.140702px;}
.wse1{word-spacing:5.200477px;}
.ws33{word-spacing:5.260253px;}
.ws149{word-spacing:5.320028px;}
.ws159{word-spacing:5.326042px;}
.wscb{word-spacing:5.332043px;}
.wse7{word-spacing:5.379804px;}
.wscc{word-spacing:5.402744px;}
.ws14e{word-spacing:5.412302px;}
.ws86{word-spacing:5.439580px;}
.ws9{word-spacing:5.481407px;}
.ws97{word-spacing:5.499355px;}
.ws2f{word-spacing:5.678682px;}
.ws93{word-spacing:5.798233px;}
.ws58{word-spacing:5.858009px;}
.ws63{word-spacing:5.917784px;}
.ws174{word-spacing:5.917824px;}
.ws61{word-spacing:5.977560px;}
.ws94{word-spacing:6.037336px;}
.wsd9{word-spacing:6.086188px;}
.ws36{word-spacing:6.097111px;}
.wsda{word-spacing:6.109755px;}
.ws60{word-spacing:6.156887px;}
.ws151{word-spacing:6.216662px;}
.wsb9{word-spacing:6.410235px;}
.wsbc{word-spacing:6.457369px;}
.wsbb{word-spacing:6.492720px;}
.ws53{word-spacing:6.635092px;}
.ws77{word-spacing:6.694867px;}
.ws163{word-spacing:6.724800px;}
.ws5b{word-spacing:6.874194px;}
.ws153{word-spacing:6.933970px;}
.wsf0{word-spacing:6.993745px;}
.ws155{word-spacing:7.047590px;}
.wse9{word-spacing:7.053521px;}
.wsd1{word-spacing:7.129030px;}
.ws101{word-spacing:7.173072px;}
.ws64{word-spacing:7.232848px;}
.wsd2{word-spacing:7.235081px;}
.ws31{word-spacing:7.711052px;}
.ws5c{word-spacing:7.770828px;}
.ws2b{word-spacing:7.830604px;}
.wsc6{word-spacing:7.865500px;}
.wsc4{word-spacing:7.906742px;}
.wsc5{word-spacing:8.059928px;}
.ws70{word-spacing:8.428360px;}
.ws40{word-spacing:8.727238px;}
.ws5f{word-spacing:9.085891px;}
.ws66{word-spacing:9.265218px;}
.ws4b{word-spacing:9.683647px;}
.ws7{word-spacing:9.833058px;}
.ws20{word-spacing:9.970726px;}
.ws125{word-spacing:10.214388px;}
.wsdf{word-spacing:10.221628px;}
.ws79{word-spacing:10.281403px;}
.ws78{word-spacing:10.341179px;}
.ws181{word-spacing:11.082470px;}
.wsa8{word-spacing:11.388066px;}
.ws121{word-spacing:11.615688px;}
.ws8{word-spacing:11.841512px;}
.ws52{word-spacing:11.955120px;}
.ws42{word-spacing:12.134447px;}
.ws135{word-spacing:12.294540px;}
.ws132{word-spacing:12.300552px;}
.ws134{word-spacing:12.372696px;}
.ws11{word-spacing:13.662978px;}
.ws95{word-spacing:14.824349px;}
.ws5{word-spacing:15.481836px;}
.ws171{word-spacing:15.978125px;}
.ws59{word-spacing:17.872904px;}
.ws87{word-spacing:18.528959px;}
.ws7f{word-spacing:18.529525px;}
.ws84{word-spacing:18.530434px;}
.ws8e{word-spacing:18.559573px;}
.ws98{word-spacing:19.069202px;}
.ws6{word-spacing:22.339429px;}
.wsa{word-spacing:22.720640px;}
.ws8f{word-spacing:29.520198px;}
.ws133{word-spacing:58.328424px;}
.wseb{word-spacing:95.761152px;}
.ws138{word-spacing:122.049612px;}
.ws111{word-spacing:137.185920px;}
.ws109{word-spacing:141.704986px;}
.ws110{word-spacing:143.672237px;}
.ws10b{word-spacing:145.632269px;}
.ws10c{word-spacing:153.594432px;}
.ws108{word-spacing:155.250739px;}
.ws137{word-spacing:155.530440px;}
.ws10d{word-spacing:158.328691px;}
.ws10e{word-spacing:159.028070px;}
.ws112{word-spacing:163.889309px;}
.ws113{word-spacing:171.563098px;}
.wsf9{word-spacing:180.009446px;}
.wsed{word-spacing:227.997619px;}
.wsfa{word-spacing:236.766758px;}
.wsfe{word-spacing:236.820557px;}
.wsfc{word-spacing:256.564570px;}
.wsff{word-spacing:282.656794px;}
.wsfd{word-spacing:292.017715px;}
.wsf1{word-spacing:303.100186px;}
.wsf5{word-spacing:309.287002px;}
.wsfb{word-spacing:312.676301px;}
.ws10f{word-spacing:313.588954px;}
.ws103{word-spacing:325.480320px;}
.ws104{word-spacing:331.505741px;}
.wsf3{word-spacing:336.939379px;}
.wsf2{word-spacing:336.993178px;}
.wsf6{word-spacing:361.525248px;}
.wsec{word-spacing:1345.928371px;}
.ws158{word-spacing:1384.555622px;}
.wsea{word-spacing:1415.866291px;}
._6d{margin-left:-155.392373px;}
._70{margin-left:-122.783076px;}
._6b{margin-left:-59.310978px;}
._6a{margin-left:-52.824030px;}
._6c{margin-left:-35.539530px;}
._1e{margin-left:-27.257674px;}
._75{margin-left:-25.267266px;}
._6e{margin-left:-20.759866px;}
._69{margin-left:-16.940813px;}
._5{margin-left:-11.943245px;}
._19{margin-left:-7.496009px;}
._9{margin-left:-6.168857px;}
._8{margin-left:-5.068831px;}
._1{margin-left:-3.096367px;}
._0{margin-left:-1.506414px;}
._21{width:1.229367px;}
._6{width:3.002038px;}
._24{width:4.303843px;}
._1d{width:7.352399px;}
._72{width:10.197701px;}
._2{width:12.971268px;}
._e{width:14.698745px;}
._d{width:16.115639px;}
._c{width:17.496320px;}
._f{width:18.506650px;}
._a{width:19.576441px;}
._13{width:21.591016px;}
._14{width:22.607201px;}
._12{width:24.119527px;}
._3{width:25.314894px;}
._b{width:26.576468px;}
._17{width:28.369706px;}
._1f{width:29.708473px;}
._1b{width:31.441966px;}
._4{width:33.355008px;}
._16{width:34.861199px;}
._20{width:35.996935px;}
._15{width:37.287950px;}
._18{width:39.033467px;}
._1a{width:40.707184px;}
._1c{width:44.520858px;}
._74{width:48.770986px;}
._7{width:54.401042px;}
._73{width:65.705878px;}
._66{width:75.261630px;}
._67{width:78.800748px;}
._6f{width:92.173468px;}
._71{width:110.085732px;}
._62{width:145.570862px;}
._60{width:154.822954px;}
._2e{width:166.775040px;}
._5a{width:171.646754px;}
._5f{width:173.122896px;}
._5c{width:175.759728px;}
._31{width:180.224640px;}
._59{width:193.198274px;}
._55{width:194.965402px;}
._56{width:196.719727px;}
._58{width:200.883226px;}
._2a{width:207.177638px;}
._2f{width:208.576397px;}
._57{width:209.759962px;}
._61{width:211.074194px;}
._68{width:216.934410px;}
._5e{width:220.712038px;}
._34{width:222.079795px;}
._5b{width:223.209562px;}
._63{width:232.032499px;}
._36{width:239.510477px;}
._27{width:241.447219px;}
._28{width:247.526438px;}
._2b{width:248.925197px;}
._5d{width:251.617766px;}
._4c{width:252.762914px;}
._2c{width:254.950618px;}
._4a{width:265.226112px;}
._30{width:268.400218px;}
._48{width:274.156646px;}
._29{width:275.824397px;}
._4b{width:277.868736px;}
._45{width:279.835337px;}
._33{width:281.796019px;}
._49{width:305.927561px;}
._46{width:312.299712px;}
._47{width:316.173197px;}
._65{width:318.678084px;}
._40{width:338.929920px;}
._41{width:341.542102px;}
._44{width:343.395187px;}
._37{width:348.183245px;}
._52{width:349.504265px;}
._51{width:354.262464px;}
._53{width:363.892378px;}
._43{width:370.939968px;}
._50{width:373.444553px;}
._42{width:375.997018px;}
._38{width:382.237632px;}
._3c{width:385.626931px;}
._3a{width:394.934054px;}
._39{width:397.193587px;}
._3b{width:423.339610px;}
._3e{width:507.534106px;}
._3f{width:512.160768px;}
._3d{width:524.641997px;}
._4e{width:621.455177px;}
._26{width:631.700813px;}
._2d{width:645.150413px;}
._4f{width:647.547401px;}
._32{width:658.600013px;}
._4d{width:678.451622px;}
._35{width:682.647898px;}
._54{width:737.091878px;}
._25{width:805.308250px;}
._10{width:881.535320px;}
._22{width:2063.379694px;}
._64{width:2081.742153px;}
._23{width:2512.928641px;}
._11{width:2536.838641px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(81,125,151);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.429600px;}
.fsd{font-size:46.922400px;}
.fsb{font-size:47.820600px;}
.fs11{font-size:47.880000px;}
.fsf{font-size:52.920000px;}
.fsc{font-size:53.798400px;}
.fs13{font-size:54.000000px;}
.fs10{font-size:56.058000px;}
.fse{font-size:58.917600px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs12{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs6{font-size:90.874640px;}
.fs8{font-size:107.596800px;}
.y20d{bottom:-247.183050px;}
.y135{bottom:-223.636539px;}
.y225{bottom:-186.702150px;}
.y224{bottom:-167.442708px;}
.y154{bottom:-156.339586px;}
.y223{bottom:-148.273446px;}
.y153{bottom:-137.553709px;}
.y222{bottom:-129.014004px;}
.y152{bottom:-118.679456px;}
.y221{bottom:-109.843239px;}
.y151{bottom:-99.805203px;}
.y220{bottom:-90.583797px;}
.y150{bottom:-76.607871px;}
.y21f{bottom:-66.913050px;}
.y14f{bottom:-53.410539px;}
.y21e{bottom:-30.103050px;}
.y14e{bottom:-17.248392px;}
.y21d{bottom:-7.603050px;}
.y0{bottom:0.000000px;}
.y14d{bottom:4.809029px;}
.y3d{bottom:9.233944px;}
.y3c{bottom:26.903761px;}
.y6a{bottom:31.890000px;}
.y6{bottom:50.595005px;}
.y5{bottom:75.795004px;}
.y4{bottom:100.995005px;}
.y18a{bottom:103.621500px;}
.yfa{bottom:104.353500px;}
.y3a{bottom:104.646000px;}
.y2b0{bottom:106.242000px;}
.y1ab{bottom:106.549500px;}
.y23f{bottom:107.475000px;}
.y15c{bottom:109.870500px;}
.y209{bottom:110.187000px;}
.y1db{bottom:112.542000px;}
.ya1{bottom:115.113000px;}
.y2e7{bottom:116.458500px;}
.ye1{bottom:119.148000px;}
.yd6{bottom:119.596500px;}
.y131{bottom:120.942000px;}
.y125{bottom:121.390500px;}
.y189{bottom:122.449500px;}
.y39{bottom:122.535000px;}
.yf9{bottom:123.183000px;}
.y2af{bottom:123.502500px;}
.y1aa{bottom:125.379000px;}
.y23e{bottom:126.304500px;}
.y274{bottom:127.935000px;}
.y15b{bottom:128.700000px;}
.y1da{bottom:131.371500px;}
.y208{bottom:131.655000px;}
.y2e6{bottom:133.719000px;}
.ya0{bottom:133.942500px;}
.ye0{bottom:137.977500px;}
.yd5{bottom:138.426000px;}
.y22{bottom:139.264499px;}
.y130{bottom:139.771500px;}
.y124{bottom:140.220000px;}
.y38{bottom:140.422500px;}
.y2ae{bottom:140.761500px;}
.y188{bottom:141.279000px;}
.yf8{bottom:142.012500px;}
.y1a9{bottom:144.208500px;}
.y23d{bottom:145.134000px;}
.y273{bottom:145.509000px;}
.y15a{bottom:147.529500px;}
.y207{bottom:148.093500px;}
.y1d9{bottom:150.201000px;}
.y2e5{bottom:150.978000px;}
.y9f{bottom:152.772000px;}
.ydf{bottom:156.807000px;}
.yd4{bottom:157.255500px;}
.y2ad{bottom:158.022000px;}
.y37{bottom:158.310000px;}
.y12f{bottom:158.601000px;}
.y123{bottom:159.049500px;}
.y187{bottom:160.108500px;}
.yf7{bottom:160.842000px;}
.y1a8{bottom:163.036500px;}
.y272{bottom:163.083000px;}
.y23c{bottom:163.963500px;}
.y159{bottom:166.359000px;}
.y2e4{bottom:168.238500px;}
.y1d8{bottom:169.030500px;}
.y9e{bottom:171.601500px;}
.y205{bottom:171.733500px;}
.y2ac{bottom:175.282500px;}
.yde{bottom:175.636500px;}
.yd3{bottom:176.085000px;}
.y36{bottom:176.199000px;}
.y12e{bottom:177.430500px;}
.y122{bottom:177.877500px;}
.yf6{bottom:179.671500px;}
.y204{bottom:179.952000px;}
.y271{bottom:180.658500px;}
.y1a7{bottom:181.866000px;}
.y23b{bottom:182.791500px;}
.y186{bottom:183.421500px;}
.y158{bottom:185.188500px;}
.y2e3{bottom:185.499000px;}
.y69{bottom:186.630000px;}
.y1d7{bottom:187.860000px;}
.y206{bottom:188.172000px;}
.y9d{bottom:190.431000px;}
.y2ab{bottom:192.543000px;}
.y35{bottom:194.086500px;}
.ydd{bottom:194.466000px;}
.yd2{bottom:194.914500px;}
.y12d{bottom:196.258500px;}
.y19{bottom:196.933500px;}
.y270{bottom:198.232500px;}
.y1a6{bottom:200.695500px;}
.y121{bottom:201.190500px;}
.y23a{bottom:201.621000px;}
.y2e2{bottom:202.759500px;}
.y185{bottom:203.596500px;}
.y68{bottom:206.088000px;}
.y1d6{bottom:206.689500px;}
.y157{bottom:208.501500px;}
.y9c{bottom:209.260500px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y2aa{bottom:209.803500px;}
.y34{bottom:211.974000px;}
.ydc{bottom:213.295500px;}
.yd1{bottom:213.744000px;}
.y12c{bottom:215.088000px;}
.y26f{bottom:215.806500px;}
.yf5{bottom:216.433500px;}
.y1a5{bottom:219.525000px;}
.y2e1{bottom:220.020000px;}
.y239{bottom:220.450500px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y203{bottom:222.780000px;}
.y1d5{bottom:225.519000px;}
.y2a9{bottom:227.064000px;}
.y9b{bottom:228.090000px;}
.y156{bottom:228.675000px;}
.y33{bottom:229.863000px;}
.ydb{bottom:232.125000px;}
.yd0{bottom:232.573500px;}
.y26e{bottom:233.380500px;}
.y12b{bottom:233.917500px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y120{bottom:234.814500px;}
.y2e0{bottom:237.280500px;}
.y1a4{bottom:238.354500px;}
.y238{bottom:239.280000px;}
.y67{bottom:243.477000px;}
.y2a8{bottom:244.324500px;}
.y1d4{bottom:244.348500px;}
.y9a{bottom:246.919500px;}
.y184{bottom:248.253000px;}
.yda{bottom:250.954500px;}
.ycf{bottom:251.403000px;}
.y12a{bottom:252.747000px;}
.yf4{bottom:253.195500px;}
.y11f{bottom:253.644000px;}
.y2df{bottom:254.541000px;}
.y1a3{bottom:257.184000px;}
.y237{bottom:258.109500px;}
.y155{bottom:259.102500px;}
.y202{bottom:259.884000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y2a7{bottom:261.585000px;}
.y66{bottom:262.935000px;}
.y183{bottom:264.691500px;}
.y99{bottom:265.749000px;}
.y1d3{bottom:267.661500px;}
.y26d{bottom:268.887000px;}
.yd9{bottom:269.784000px;}
.yce{bottom:270.232500px;}
.y129{bottom:271.576500px;}
.y2de{bottom:271.801500px;}
.yf3{bottom:272.025000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y1a2{bottom:276.013500px;}
.y236{bottom:276.939000px;}
.y201{bottom:278.713500px;}
.y2a6{bottom:278.845500px;}
.y182{bottom:281.130000px;}
.y132{bottom:281.532000px;}
.y65{bottom:282.391500px;}
.y98{bottom:284.578500px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y26c{bottom:287.716500px;}
.yd8{bottom:288.613500px;}
.ycd{bottom:289.062000px;}
.y11e{bottom:290.406000px;}
.yf2{bottom:290.854500px;}
.y15d{bottom:293.095500px;}
.y1a1{bottom:294.843000px;}
.y235{bottom:295.768500px;}
.y2a5{bottom:296.104500px;}
.y200{bottom:297.543000px;}
.y181{bottom:297.568500px;}
.y32{bottom:299.890500px;}
.y1d2{bottom:301.285500px;}
.y64{bottom:301.848000px;}
.y97{bottom:303.408000px;}
.y2dd{bottom:306.321000px;}
.y26b{bottom:306.546000px;}
.ye5{bottom:307.443000px;}
.ycc{bottom:307.891500px;}
.y128{bottom:309.235500px;}
.yf1{bottom:309.684000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.yd7{bottom:311.925000px;}
.y2a4{bottom:313.365000px;}
.y1a0{bottom:313.672500px;}
.y180{bottom:314.007000px;}
.y234{bottom:314.598000px;}
.y1ff{bottom:316.372500px;}
.y31{bottom:317.779500px;}
.y1d1{bottom:320.115000px;}
.y63{bottom:321.306000px;}
.y96{bottom:322.237500px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y2dc{bottom:323.581500px;}
.y26a{bottom:325.375500px;}
.ye4{bottom:326.272500px;}
.ycb{bottom:326.719500px;}
.y11d{bottom:327.168000px;}
.yf0{bottom:328.513500px;}
.y17f{bottom:330.445500px;}
.y2a3{bottom:330.625500px;}
.y19f{bottom:332.502000px;}
.y127{bottom:332.548500px;}
.y233{bottom:333.427500px;}
.y1fe{bottom:335.202000px;}
.y30{bottom:335.667000px;}
.y1d0{bottom:338.944500px;}
.y62{bottom:340.762500px;}
.y2db{bottom:340.842000px;}
.y95{bottom:341.067000px;}
.y269{bottom:344.205000px;}
.ye3{bottom:345.102000px;}
.yca{bottom:345.549000px;}
.y11c{bottom:345.997500px;}
.y17e{bottom:346.884000px;}
.yef{bottom:347.343000px;}
.y2a2{bottom:347.886000px;}
.y10{bottom:348.133500px;}
.y19e{bottom:351.331500px;}
.y232{bottom:352.257000px;}
.y2f{bottom:353.554500px;}
.y1fd{bottom:354.031500px;}
.y1cf{bottom:357.774000px;}
.y2da{bottom:358.102500px;}
.y94{bottom:359.896500px;}
.y61{bottom:360.219000px;}
.y268{bottom:363.034500px;}
.y24b{bottom:363.931500px;}
.yc9{bottom:364.378500px;}
.y11b{bottom:364.827000px;}
.y2a1{bottom:365.146500px;}
.yee{bottom:366.172500px;}
.ye2{bottom:368.413500px;}
.y19d{bottom:370.161000px;}
.y17d{bottom:370.524000px;}
.y231{bottom:371.086500px;}
.y1fc{bottom:372.861000px;}
.y2d8{bottom:375.363000px;}
.y2d9{bottom:375.571500px;}
.y93{bottom:378.726000px;}
.y60{bottom:379.677000px;}
.y2e{bottom:380.409000px;}
.y267{bottom:381.864000px;}
.y2a0{bottom:382.407000px;}
.y24a{bottom:382.761000px;}
.yc8{bottom:383.208000px;}
.y11a{bottom:383.656500px;}
.yed{bottom:385.002000px;}
.yf{bottom:386.785499px;}
.y17c{bottom:386.962500px;}
.y19c{bottom:388.990500px;}
.y230{bottom:389.916000px;}
.y1fb{bottom:391.690500px;}
.y2d7{bottom:392.623500px;}
.y92{bottom:397.555500px;}
.y2d{bottom:398.298000px;}
.y5f{bottom:399.133500px;}
.y29f{bottom:399.667500px;}
.y266{bottom:400.693500px;}
.y249{bottom:401.589000px;}
.yc7{bottom:402.037500px;}
.y119{bottom:402.486000px;}
.y1ce{bottom:403.236000px;}
.y17b{bottom:403.401000px;}
.yec{bottom:403.831500px;}
.y19b{bottom:407.820000px;}
.ye{bottom:408.044999px;}
.y22f{bottom:408.745500px;}
.y2d6{bottom:409.884000px;}
.y1fa{bottom:410.520000px;}
.y2c{bottom:416.185500px;}
.y91{bottom:416.383500px;}
.y29e{bottom:416.928000px;}
.y5e{bottom:418.591500px;}
.y265{bottom:419.523000px;}
.y1cd{bottom:419.674500px;}
.y17a{bottom:419.839500px;}
.y248{bottom:420.418500px;}
.yc6{bottom:420.867000px;}
.y118{bottom:421.315500px;}
.y14c{bottom:421.730587px;}
.y126{bottom:421.764000px;}
.yeb{bottom:422.661000px;}
.y19a{bottom:426.649500px;}
.y2d5{bottom:427.144500px;}
.y22e{bottom:427.575000px;}
.y1f9{bottom:429.349500px;}
.y2b{bottom:434.073000px;}
.y29d{bottom:434.187000px;}
.y90{bottom:435.213000px;}
.y1cc{bottom:436.111500px;}
.y179{bottom:436.278000px;}
.y5d{bottom:438.048000px;}
.y264{bottom:438.352500px;}
.y247{bottom:439.248000px;}
.yc5{bottom:439.696500px;}
.y117{bottom:440.145000px;}
.y14b{bottom:440.517937px;}
.yea{bottom:441.490500px;}
.y2d4{bottom:444.403500px;}
.y199{bottom:445.479000px;}
.y22d{bottom:446.404500px;}
.y29c{bottom:451.447500px;}
.y2a{bottom:451.962000px;}
.y1cb{bottom:452.550000px;}
.y1f8{bottom:452.662500px;}
.y178{bottom:452.716500px;}
.y8f{bottom:454.042500px;}
.y263{bottom:457.182000px;}
.y5c{bottom:457.504500px;}
.y246{bottom:458.077500px;}
.yc4{bottom:458.526000px;}
.y116{bottom:458.974500px;}
.y14a{bottom:459.392190px;}
.ye9{bottom:460.320000px;}
.y2d3{bottom:461.664000px;}
.y198{bottom:464.308500px;}
.y22c{bottom:465.234000px;}
.y29{bottom:469.849500px;}
.y8e{bottom:472.872000px;}
.y29b{bottom:473.191500px;}
.y1ca{bottom:476.191500px;}
.y177{bottom:476.356500px;}
.y245{bottom:476.907000px;}
.y5b{bottom:476.962500px;}
.yc3{bottom:477.355500px;}
.y115{bottom:477.804000px;}
.y149{bottom:478.266443px;}
.y2d2{bottom:478.924500px;}
.ye8{bottom:479.149500px;}
.y262{bottom:480.493500px;}
.y197{bottom:483.138000px;}
.y22b{bottom:484.063500px;}
.y1f7{bottom:486.286500px;}
.y28{bottom:487.737000px;}
.y8d{bottom:491.701500px;}
.y244{bottom:495.736500px;}
.yc2{bottom:496.185000px;}
.y5a{bottom:496.419000px;}
.y114{bottom:496.633500px;}
.y148{bottom:497.053793px;}
.ye7{bottom:497.979000px;}
.y176{bottom:499.998000px;}
.yd{bottom:502.864502px;}
.y22a{bottom:502.893000px;}
.y1f6{bottom:505.116000px;}
.y27{bottom:505.626000px;}
.y1c9{bottom:507.810000px;}
.y8c{bottom:510.531000px;}
.y2d1{bottom:513.445500px;}
.y261{bottom:514.117500px;}
.y196{bottom:514.305000px;}
.y243{bottom:514.566000px;}
.yc1{bottom:515.014500px;}
.y113{bottom:515.463000px;}
.y59{bottom:515.877000px;}
.y147{bottom:515.928046px;}
.y29a{bottom:518.503500px;}
.yc{bottom:520.864502px;}
.y229{bottom:521.722500px;}
.y26{bottom:523.513500px;}
.y1f5{bottom:523.945500px;}
.y8b{bottom:529.360500px;}
.y2d0{bottom:530.706000px;}
.y260{bottom:532.947000px;}
.y195{bottom:533.148000px;}
.y242{bottom:533.395500px;}
.yc0{bottom:533.844000px;}
.y112{bottom:534.292500px;}
.y175{bottom:534.606000px;}
.y146{bottom:534.713923px;}
.ye6{bottom:534.741000px;}
.y299{bottom:534.942000px;}
.y58{bottom:535.333500px;}
.yb{bottom:538.864499px;}
.y228{bottom:540.552000px;}
.y25{bottom:541.401000px;}
.y1f4{bottom:542.775000px;}
.y294{bottom:543.162000px;}
.y1c8{bottom:544.915500px;}
.y2cf{bottom:547.966500px;}
.y8a{bottom:548.190000px;}
.y194{bottom:549.586500px;}
.y298{bottom:551.380500px;}
.y25f{bottom:551.776500px;}
.y241{bottom:552.225000px;}
.ybf{bottom:552.673500px;}
.y21c{bottom:553.006950px;}
.y111{bottom:553.122000px;}
.y145{bottom:553.588176px;}
.y57{bottom:554.790000px;}
.ya{bottom:556.864499px;}
.y24{bottom:559.290000px;}
.y293{bottom:559.600500px;}
.y1f3{bottom:561.603000px;}
.y1c7{bottom:563.745000px;}
.y227{bottom:563.865000px;}
.y2ce{bottom:565.227000px;}
.y193{bottom:566.025000px;}
.y89{bottom:567.019500px;}
.y297{bottom:567.819000px;}
.y25e{bottom:570.606000px;}
.y174{bottom:571.054500px;}
.ybe{bottom:571.503000px;}
.y110{bottom:571.951500px;}
.y21b{bottom:572.446950px;}
.y144{bottom:572.462429px;}
.y56{bottom:574.248000px;}
.y292{bottom:576.039000px;}
.y23{bottom:577.177500px;}
.y2ea{bottom:577.929000px;}
.y1f2{bottom:580.432500px;}
.y192{bottom:582.463500px;}
.y2cd{bottom:582.487500px;}
.y1c6{bottom:582.574500px;}
.y296{bottom:584.257500px;}
.y88{bottom:585.849000px;}
.y25d{bottom:589.435500px;}
.y173{bottom:589.884000px;}
.ybd{bottom:590.332500px;}
.y10f{bottom:590.781000px;}
.y143{bottom:591.249779px;}
.y21a{bottom:592.696950px;}
.y55{bottom:593.704500px;}
.y226{bottom:594.292500px;}
.y2e9{bottom:595.189500px;}
.y1f1{bottom:599.262000px;}
.y2cc{bottom:599.746500px;}
.y295{bottom:600.696000px;}
.y1c5{bottom:601.402500px;}
.y87{bottom:604.678500px;}
.y191{bottom:606.105000px;}
.y25c{bottom:608.265000px;}
.y172{bottom:608.713500px;}
.ybc{bottom:609.162000px;}
.y10e{bottom:609.610500px;}
.y142{bottom:610.124032px;}
.y2e8{bottom:612.450000px;}
.y54{bottom:613.161000px;}
.y218{bottom:613.667652px;}
.y20a{bottom:616.720500px;}
.y2cb{bottom:617.007000px;}
.y1f0{bottom:618.091500px;}
.y1c4{bottom:620.232000px;}
.y86{bottom:623.508000px;}
.y217{bottom:623.836950px;}
.y291{bottom:624.336000px;}
.y25b{bottom:627.094500px;}
.y171{bottom:627.543000px;}
.ybb{bottom:627.991500px;}
.y10d{bottom:628.440000px;}
.y141{bottom:628.909909px;}
.y190{bottom:629.745000px;}
.y53{bottom:632.619000px;}
.y219{bottom:633.917571px;}
.y2ca{bottom:634.267500px;}
.y1ef{bottom:636.921000px;}
.y1c3{bottom:639.061500px;}
.y28f{bottom:640.774500px;}
.y85{bottom:642.337500px;}
.y9{bottom:645.510000px;}
.y25a{bottom:645.924000px;}
.y170{bottom:646.372500px;}
.yba{bottom:646.821000px;}
.y10c{bottom:647.269500px;}
.y140{bottom:647.784162px;}
.y2c9{bottom:651.528000px;}
.y52{bottom:652.075500px;}
.y18f{bottom:653.385000px;}
.y1ee{bottom:655.750500px;}
.y28e{bottom:657.213000px;}
.y84{bottom:661.167000px;}
.y216{bottom:663.976950px;}
.y259{bottom:664.753500px;}
.y16f{bottom:665.202000px;}
.yb9{bottom:665.650500px;}
.y10b{bottom:666.099000px;}
.y13f{bottom:666.658415px;}
.y8{bottom:666.771000px;}
.y2c8{bottom:668.788500px;}
.y18e{bottom:669.823500px;}
.y290{bottom:673.651500px;}
.y1ed{bottom:674.580000px;}
.y1c2{bottom:679.195500px;}
.y83{bottom:679.996500px;}
.y258{bottom:683.583000px;}
.y16e{bottom:684.031500px;}
.yb8{bottom:684.480000px;}
.y10a{bottom:684.928500px;}
.y13e{bottom:685.444292px;}
.y2c7{bottom:686.049000px;}
.y18d{bottom:686.262000px;}
.y51{bottom:690.661500px;}
.y1c1{bottom:693.393000px;}
.y1ec{bottom:693.409500px;}
.y28d{bottom:697.293000px;}
.y82{bottom:698.826000px;}
.y215{bottom:699.709893px;}
.y257{bottom:702.412500px;}
.y16d{bottom:702.861000px;}
.yb7{bottom:703.309500px;}
.y109{bottom:703.758000px;}
.y13d{bottom:704.318545px;}
.y50{bottom:706.800000px;}
.y18c{bottom:709.903500px;}
.y1c0{bottom:712.236000px;}
.y1eb{bottom:712.239000px;}
.y28c{bottom:713.730000px;}
.y81{bottom:717.655500px;}
.y214{bottom:718.969335px;}
.y2c6{bottom:720.570000px;}
.y256{bottom:721.242000px;}
.y16c{bottom:721.690500px;}
.y287{bottom:721.950000px;}
.yb6{bottom:722.139000px;}
.y108{bottom:722.587500px;}
.y13c{bottom:723.192798px;}
.y7{bottom:726.298500px;}
.y4f{bottom:727.279500px;}
.y1bf{bottom:728.674500px;}
.y28b{bottom:730.168500px;}
.y1ea{bottom:731.068500px;}
.y80{bottom:736.485000px;}
.y2c5{bottom:737.829000px;}
.y213{bottom:738.138597px;}
.y286{bottom:738.388500px;}
.y4e{bottom:739.080000px;}
.y255{bottom:740.071500px;}
.y16b{bottom:740.520000px;}
.yb5{bottom:740.968500px;}
.y107{bottom:741.417000px;}
.y18b{bottom:741.522000px;}
.y13b{bottom:741.978675px;}
.y1be{bottom:745.113000px;}
.y28a{bottom:746.607000px;}
.y1e9{bottom:749.898000px;}
.y3{bottom:752.599495px;}
.y285{bottom:754.827000px;}
.y2c4{bottom:755.089500px;}
.y7f{bottom:755.314500px;}
.y212{bottom:757.398039px;}
.y254{bottom:758.901000px;}
.y16a{bottom:759.349500px;}
.y4d{bottom:759.559500px;}
.yb4{bottom:759.798000px;}
.y106{bottom:760.246500px;}
.y13a{bottom:760.852928px;}
.y1bd{bottom:761.551500px;}
.y289{bottom:763.045500px;}
.y1e8{bottom:768.727500px;}
.y4c{bottom:771.358500px;}
.y2c3{bottom:772.350000px;}
.y7e{bottom:774.144000px;}
.y211{bottom:776.567301px;}
.y253{bottom:777.730500px;}
.y1bc{bottom:777.990000px;}
.y169{bottom:778.179000px;}
.yb3{bottom:778.627500px;}
.y105{bottom:779.076000px;}
.y288{bottom:779.484000px;}
.y139{bottom:779.638805px;}
.y1e7{bottom:787.557000px;}
.y2c2{bottom:789.610500px;}
.y4b{bottom:791.838000px;}
.y7d{bottom:792.973500px;}
.y1bb{bottom:794.428500px;}
.y210{bottom:795.826743px;}
.y252{bottom:796.560000px;}
.y168{bottom:797.008500px;}
.yb2{bottom:797.457000px;}
.y104{bottom:797.904000px;}
.y138{bottom:798.513058px;}
.y284{bottom:803.125500px;}
.y4a{bottom:803.638500px;}
.y1e6{bottom:806.386500px;}
.y2c1{bottom:806.871000px;}
.y1ba{bottom:810.865500px;}
.y7c{bottom:811.803000px;}
.y20f{bottom:815.086185px;}
.y251{bottom:815.389500px;}
.y167{bottom:815.838000px;}
.yb1{bottom:816.286500px;}
.y103{bottom:816.733500px;}
.y137{bottom:817.387311px;}
.y283{bottom:819.562500px;}
.y49{bottom:824.116500px;}
.y2c0{bottom:824.131500px;}
.y1e5{bottom:825.216000px;}
.y1b9{bottom:827.304000px;}
.y27e{bottom:827.782500px;}
.y7b{bottom:830.632500px;}
.y20e{bottom:834.256950px;}
.y166{bottom:834.667500px;}
.yb0{bottom:835.114500px;}
.y102{bottom:835.563000px;}
.y48{bottom:835.917000px;}
.y282{bottom:836.001000px;}
.y136{bottom:836.174661px;}
.y250{bottom:838.702500px;}
.y2bf{bottom:841.392000px;}
.y1b8{bottom:843.742500px;}
.y1e4{bottom:844.045500px;}
.y27d{bottom:844.221000px;}
.y7a{bottom:849.462000px;}
.y281{bottom:852.439500px;}
.y165{bottom:853.497000px;}
.yaf{bottom:853.944000px;}
.y101{bottom:854.392500px;}
.y47{bottom:856.396500px;}
.y240{bottom:857.979000px;}
.y2be{bottom:858.652500px;}
.y1b7{bottom:860.181000px;}
.y27c{bottom:860.659500px;}
.y46{bottom:868.195500px;}
.y79{bottom:868.291500px;}
.y280{bottom:868.878000px;}
.y164{bottom:872.326500px;}
.yae{bottom:872.773500px;}
.y100{bottom:873.222000px;}
.y2bd{bottom:875.913000px;}
.y1b6{bottom:876.619500px;}
.y2{bottom:879.369000px;}
.y1e3{bottom:884.107500px;}
.y27f{bottom:885.316500px;}
.y78{bottom:887.121000px;}
.y45{bottom:888.675000px;}
.y20c{bottom:888.977085px;}
.y134{bottom:889.800393px;}
.y163{bottom:891.156000px;}
.yad{bottom:891.603000px;}
.yff{bottom:892.051500px;}
.y1b5{bottom:893.058000px;}
.y2bc{bottom:893.172000px;}
.y20b{bottom:898.606950px;}
.y133{bottom:899.237661px;}
.y1e2{bottom:902.950500px;}
.y44{bottom:904.815000px;}
.y77{bottom:905.950500px;}
.y27b{bottom:908.958000px;}
.y1b4{bottom:909.496500px;}
.y162{bottom:909.984000px;}
.yac{bottom:910.432500px;}
.yfe{bottom:910.881000px;}
.y1e1{bottom:919.389000px;}
.y76{bottom:924.778500px;}
.y1b3{bottom:925.935000px;}
.y2bb{bottom:927.693000px;}
.y161{bottom:928.813500px;}
.yab{bottom:929.262000px;}
.yfd{bottom:929.710500px;}
.y1e0{bottom:935.827500px;}
.y1b2{bottom:942.373500px;}
.y27a{bottom:943.566000px;}
.y75{bottom:943.608000px;}
.y2ba{bottom:944.953500px;}
.y160{bottom:947.643000px;}
.yaa{bottom:948.091500px;}
.y43{bottom:949.491000px;}
.y1df{bottom:952.266000px;}
.yfc{bottom:953.023500px;}
.y1b1{bottom:958.812000px;}
.y2b9{bottom:962.214000px;}
.y74{bottom:962.437500px;}
.y15f{bottom:966.472500px;}
.y1{bottom:966.726000px;}
.ya9{bottom:966.921000px;}
.y42{bottom:968.320500px;}
.y1de{bottom:968.704500px;}
.y279{bottom:974.632500px;}
.y1b0{bottom:975.249000px;}
.y2b8{bottom:979.474500px;}
.y73{bottom:981.267000px;}
.y24f{bottom:985.302000px;}
.ya8{bottom:985.750500px;}
.yfb{bottom:986.647500px;}
.y15e{bottom:989.785500px;}
.y1af{bottom:991.687500px;}
.y1dd{bottom:992.344500px;}
.y2b7{bottom:996.735000px;}
.y72{bottom:1000.096500px;}
.y24e{bottom:1004.131500px;}
.ya7{bottom:1004.580000px;}
.y1ae{bottom:1008.126000px;}
.y41{bottom:1008.240000px;}
.y278{bottom:1011.394500px;}
.y2b6{bottom:1013.995500px;}
.y71{bottom:1018.926000px;}
.y24d{bottom:1022.961000px;}
.ya6{bottom:1023.409500px;}
.y1dc{bottom:1023.964500px;}
.y2b5{bottom:1031.254500px;}
.y1ad{bottom:1031.767500px;}
.y40{bottom:1036.485000px;}
.y70{bottom:1037.755500px;}
.y277{bottom:1037.935500px;}
.ya5{bottom:1042.239000px;}
.y24c{bottom:1046.274000px;}
.y2b4{bottom:1048.515000px;}
.y6f{bottom:1056.585000px;}
.ya4{bottom:1061.068500px;}
.y1ac{bottom:1063.386000px;}
.y276{bottom:1064.476500px;}
.y3f{bottom:1064.728500px;}
.y2b3{bottom:1065.775500px;}
.y6e{bottom:1075.414500px;}
.ya3{bottom:1079.898000px;}
.y2b2{bottom:1083.036000px;}
.y275{bottom:1091.016000px;}
.y3e{bottom:1092.972000px;}
.y6d{bottom:1094.244000px;}
.ya2{bottom:1098.727500px;}
.y2b1{bottom:1100.296500px;}
.y6c{bottom:1117.557000px;}
.y3b{bottom:1136.460000px;}
.y6b{bottom:1177.662000px;}
.h7{height:32.130000px;}
.h10{height:32.565965px;}
.h9{height:37.993262px;}
.ha{height:38.202476px;}
.h1c{height:38.896243px;}
.h1b{height:42.749782px;}
.h13{height:43.217759px;}
.h1a{height:43.382686px;}
.h11{height:43.421105px;}
.h17{height:43.646080px;}
.hd{height:43.875290px;}
.h24{height:44.268047px;}
.h20{height:44.536816px;}
.h6{height:45.900000px;}
.h27{height:47.988281px;}
.h3{height:48.195000px;}
.h12{height:48.848947px;}
.h28{height:49.117939px;}
.h19{height:49.224902px;}
.h22{height:50.229492px;}
.hb{height:50.930649px;}
.h29{height:51.536947px;}
.h14{height:54.276245px;}
.hf{height:54.547601px;}
.h15{height:54.575123px;}
.h18{height:54.803725px;}
.h2{height:55.080000px;}
.h21{height:55.922168px;}
.hc{height:61.613006px;}
.h2a{height:61.760947px;}
.h5{height:64.260000px;}
.h1e{height:71.770243px;}
.h1d{height:71.776243px;}
.he{height:77.792486px;}
.h23{height:84.590531px;}
.h26{height:84.945239px;}
.h4{height:119.055004px;}
.h25{height:125.267723px;}
.h16{height:404.116230px;}
.h1f{height:515.781000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.527766px;}
.w6{width:537.379500px;}
.w5{width:586.929987px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x46{left:-196.036500px;}
.x4c{left:-180.916500px;}
.x4b{left:-172.546500px;}
.x47{left:-127.096500px;}
.x1b{left:-90.124083px;}
.x0{left:0.000000px;}
.x4e{left:31.393394px;}
.x48{left:36.973092px;}
.x5{left:53.574000px;}
.x6{left:58.054042px;}
.x25{left:62.602500px;}
.x56{left:64.105500px;}
.x45{left:66.762000px;}
.x44{left:74.266500px;}
.x57{left:76.203000px;}
.x55{left:80.035500px;}
.x51{left:81.151500px;}
.x59{left:84.220500px;}
.x58{left:85.444500px;}
.x52{left:87.271500px;}
.x54{left:91.918500px;}
.x1{left:102.045000px;}
.x24{left:103.780500px;}
.x2{left:106.297500px;}
.x49{left:108.972607px;}
.x50{left:110.626500px;}
.x27{left:113.148000px;}
.x3f{left:116.121000px;}
.x5a{left:122.629500px;}
.x1c{left:132.757214px;}
.x28{left:144.531000px;}
.x29{left:146.979000px;}
.x22{left:177.771000px;}
.x23{left:183.783000px;}
.x4{left:203.484001px;}
.x53{left:228.196500px;}
.x1f{left:247.348500px;}
.x9{left:248.526000px;}
.x7{left:249.591000px;}
.x11{left:254.137500px;}
.x20{left:264.469500px;}
.x2a{left:268.006500px;}
.x8{left:269.914500px;}
.x3e{left:279.580500px;}
.xa{left:281.479500px;}
.x3d{left:283.575000px;}
.x33{left:285.504000px;}
.x35{left:292.027500px;}
.x34{left:294.360000px;}
.x38{left:297.282000px;}
.x31{left:298.522500px;}
.x30{left:299.787000px;}
.x2f{left:302.161500px;}
.x3a{left:303.804000px;}
.x39{left:306.138000px;}
.x37{left:307.947000px;}
.x36{left:311.310000px;}
.x17{left:320.490000px;}
.x4f{left:325.084500px;}
.x40{left:339.384000px;}
.x41{left:345.852000px;}
.x21{left:347.271000px;}
.x3c{left:350.505000px;}
.xe{left:365.166000px;}
.x26{left:372.678000px;}
.x1a{left:382.552500px;}
.x4a{left:386.531993px;}
.x3b{left:402.601500px;}
.x2e{left:417.046500px;}
.x12{left:429.474000px;}
.x18{left:432.166500px;}
.xb{left:434.745000px;}
.x3{left:454.959000px;}
.x5d{left:456.906000px;}
.x5c{left:468.220500px;}
.x5b{left:469.759500px;}
.x32{left:507.495000px;}
.x4d{left:548.533350px;}
.x1d{left:584.430637px;}
.xc{left:586.758000px;}
.xf{left:642.547500px;}
.x42{left:651.225000px;}
.x43{left:664.801500px;}
.x2c{left:666.165000px;}
.x1e{left:692.403000px;}
.x15{left:698.226000px;}
.x13{left:702.487500px;}
.x19{left:719.923500px;}
.x2b{left:735.816000px;}
.x16{left:785.184000px;}
.xd{left:794.626500px;}
.x2d{left:803.991000px;}
.x10{left:805.122000px;}
.x14{left:837.625500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.389333pt;}
.v7{vertical-align:11.477333pt;}
.v1{vertical-align:19.290667pt;}
.v4{vertical-align:29.226667pt;}
.v5{vertical-align:35.842208pt;}
.ls82{letter-spacing:-3.794240pt;}
.ls3a{letter-spacing:-0.649403pt;}
.ls33{letter-spacing:-0.623217pt;}
.ls38{letter-spacing:-0.602269pt;}
.ls3b{letter-spacing:-0.586557pt;}
.ls37{letter-spacing:-0.576083pt;}
.ls34{letter-spacing:-0.570846pt;}
.ls39{letter-spacing:-0.555135pt;}
.ls35{letter-spacing:-0.549898pt;}
.ls36{letter-spacing:-0.471341pt;}
.ls77{letter-spacing:-0.347360pt;}
.ls87{letter-spacing:-0.261856pt;}
.ls46{letter-spacing:-0.256619pt;}
.ls31{letter-spacing:-0.251382pt;}
.ls7e{letter-spacing:-0.224448pt;}
.ls3e{letter-spacing:-0.178062pt;}
.ls84{letter-spacing:-0.110400pt;}
.ls7a{letter-spacing:-0.106880pt;}
.ls40{letter-spacing:-0.104742pt;}
.ls3d{letter-spacing:-0.089031pt;}
.ls32{letter-spacing:-0.078557pt;}
.ls44{letter-spacing:-0.073320pt;}
.ls78{letter-spacing:-0.053440pt;}
.ls43{letter-spacing:-0.052371pt;}
.ls8a{letter-spacing:-0.042752pt;}
.ls3c{letter-spacing:-0.041897pt;}
.ls89{letter-spacing:-0.037408pt;}
.ls85{letter-spacing:-0.033600pt;}
.ls76{letter-spacing:-0.032064pt;}
.ls80{letter-spacing:-0.026720pt;}
.ls41{letter-spacing:-0.026186pt;}
.ls74{letter-spacing:-0.025536pt;}
.ls2e{letter-spacing:-0.025025pt;}
.ls86{letter-spacing:-0.021376pt;}
.ls45{letter-spacing:-0.020948pt;}
.ls88{letter-spacing:-0.016032pt;}
.ls42{letter-spacing:-0.015711pt;}
.ls7d{letter-spacing:-0.010688pt;}
.ls30{letter-spacing:-0.010474pt;}
.ls3f{letter-spacing:-0.005237pt;}
.ls75{letter-spacing:-0.004256pt;}
.ls2f{letter-spacing:-0.004171pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa4{letter-spacing:0.000008pt;}
.ls48{letter-spacing:0.000243pt;}
.ls91{letter-spacing:0.000260pt;}
.ls2b{letter-spacing:0.000387pt;}
.lsa0{letter-spacing:0.000711pt;}
.ls4b{letter-spacing:0.000745pt;}
.ls9f{letter-spacing:0.001026pt;}
.ls9b{letter-spacing:0.001207pt;}
.ls93{letter-spacing:0.001319pt;}
.ls4c{letter-spacing:0.001399pt;}
.ls6{letter-spacing:0.001735pt;}
.ls55{letter-spacing:0.001774pt;}
.lsa6{letter-spacing:0.001858pt;}
.lsa1{letter-spacing:0.002269pt;}
.ls2d{letter-spacing:0.002370pt;}
.ls3{letter-spacing:0.002422pt;}
.ls96{letter-spacing:0.002525pt;}
.ls49{letter-spacing:0.002868pt;}
.ls9c{letter-spacing:0.003055pt;}
.lsa5{letter-spacing:0.003241pt;}
.lsa{letter-spacing:0.003288pt;}
.ls4a{letter-spacing:0.003444pt;}
.ls99{letter-spacing:0.003625pt;}
.ls5c{letter-spacing:0.003635pt;}
.ls8f{letter-spacing:0.003637pt;}
.ls2c{letter-spacing:0.004130pt;}
.ls94{letter-spacing:0.004226pt;}
.lsa3{letter-spacing:0.004419pt;}
.ls9a{letter-spacing:0.004786pt;}
.ls68{letter-spacing:0.004800pt;}
.ls28{letter-spacing:0.005237pt;}
.ls65{letter-spacing:0.005344pt;}
.ls6f{letter-spacing:0.009600pt;}
.ls29{letter-spacing:0.010474pt;}
.ls66{letter-spacing:0.010688pt;}
.ls70{letter-spacing:0.014400pt;}
.ls72{letter-spacing:0.016032pt;}
.ls25{letter-spacing:0.020948pt;}
.ls6e{letter-spacing:0.021376pt;}
.ls26{letter-spacing:0.028224pt;}
.ls71{letter-spacing:0.028800pt;}
.ls1d{letter-spacing:0.031423pt;}
.ls20{letter-spacing:0.036660pt;}
.ls6a{letter-spacing:0.037408pt;}
.ls24{letter-spacing:0.041897pt;}
.ls63{letter-spacing:0.042752pt;}
.ls1c{letter-spacing:0.047134pt;}
.ls1e{letter-spacing:0.052371pt;}
.ls69{letter-spacing:0.053440pt;}
.ls23{letter-spacing:0.057608pt;}
.ls6c{letter-spacing:0.058784pt;}
.ls21{letter-spacing:0.062845pt;}
.ls7b{letter-spacing:0.069472pt;}
.ls47{letter-spacing:0.073320pt;}
.ls67{letter-spacing:0.074816pt;}
.ls27{letter-spacing:0.075264pt;}
.ls61{letter-spacing:0.080160pt;}
.ls1f{letter-spacing:0.089031pt;}
.ls79{letter-spacing:0.090848pt;}
.ls6d{letter-spacing:0.096192pt;}
.ls6b{letter-spacing:0.101536pt;}
.ls1b{letter-spacing:0.104742pt;}
.ls64{letter-spacing:0.106880pt;}
.ls83{letter-spacing:0.117568pt;}
.ls81{letter-spacing:0.128256pt;}
.ls22{letter-spacing:0.130928pt;}
.ls7f{letter-spacing:0.133600pt;}
.ls1a{letter-spacing:0.154323pt;}
.ls2a{letter-spacing:0.157114pt;}
.ls73{letter-spacing:0.160320pt;}
.ls60{letter-spacing:0.161728pt;}
.ls19{letter-spacing:0.166835pt;}
.ls5f{letter-spacing:0.170240pt;}
.ls7c{letter-spacing:0.171008pt;}
.ls62{letter-spacing:0.219104pt;}
.ls5d{letter-spacing:0.597333pt;}
.ls2{letter-spacing:2.657067pt;}
.ls5e{letter-spacing:10.623733pt;}
.ls8{letter-spacing:10.626533pt;}
.ls4f{letter-spacing:10.629067pt;}
.ls97{letter-spacing:10.677510pt;}
.ls4e{letter-spacing:11.051844pt;}
.ls95{letter-spacing:11.763126pt;}
.lsa2{letter-spacing:11.802197pt;}
.ls9e{letter-spacing:11.956267pt;}
.ls98{letter-spacing:12.166183pt;}
.ls92{letter-spacing:12.190960pt;}
.ls5b{letter-spacing:12.366400pt;}
.ls11{letter-spacing:12.539593pt;}
.ls58{letter-spacing:13.061095pt;}
.lsd{letter-spacing:13.070931pt;}
.ls14{letter-spacing:13.124065pt;}
.ls5a{letter-spacing:13.159022pt;}
.ls50{letter-spacing:13.177199pt;}
.lsf{letter-spacing:13.283467pt;}
.ls90{letter-spacing:13.318285pt;}
.ls54{letter-spacing:13.351434pt;}
.ls57{letter-spacing:13.366065pt;}
.ls10{letter-spacing:13.389734pt;}
.lsc{letter-spacing:13.496002pt;}
.ls8c{letter-spacing:13.506163pt;}
.ls56{letter-spacing:13.552795pt;}
.ls8b{letter-spacing:13.590890pt;}
.ls17{letter-spacing:13.594749pt;}
.ls59{letter-spacing:13.631759pt;}
.ls18{letter-spacing:13.655404pt;}
.ls8d{letter-spacing:14.531106pt;}
.ls9d{letter-spacing:15.030601pt;}
.lsb{letter-spacing:15.196286pt;}
.ls13{letter-spacing:16.949703pt;}
.ls9{letter-spacing:17.002837pt;}
.ls4d{letter-spacing:18.065515pt;}
.ls8e{letter-spacing:18.107576pt;}
.lse{letter-spacing:18.331184pt;}
.ls15{letter-spacing:19.606397pt;}
.ls12{letter-spacing:24.654114pt;}
.ls16{letter-spacing:27.204540pt;}
.ls1{letter-spacing:51.035733pt;}
.ls5{letter-spacing:55.787733pt;}
.ls7{letter-spacing:57.174803pt;}
.ls4{letter-spacing:64.321067pt;}
.ls52{letter-spacing:138.970667pt;}
.ls53{letter-spacing:147.269333pt;}
.ls51{letter-spacing:165.653333pt;}
.ws11c{word-spacing:-53.440000pt;}
.wsa0{word-spacing:-52.371200pt;}
.wsc{word-spacing:-20.194365pt;}
.ws119{word-spacing:-13.370688pt;}
.ws118{word-spacing:-13.360000pt;}
.ws26{word-spacing:-13.283467pt;}
.wsa1{word-spacing:-13.181831pt;}
.ws11b{word-spacing:-12.000000pt;}
.wsf4{word-spacing:-11.955200pt;}
.ws115{word-spacing:-10.810240pt;}
.ws116{word-spacing:-10.640000pt;}
.wsf{word-spacing:-10.626800pt;}
.ws9e{word-spacing:-10.594035pt;}
.ws9f{word-spacing:-10.427200pt;}
.wsd{word-spacing:-10.095467pt;}
.ws11a{word-spacing:-9.565760pt;}
.ws3{word-spacing:-9.298400pt;}
.ws12f{word-spacing:-3.190368pt;}
.ws12e{word-spacing:-3.185024pt;}
.wsa3{word-spacing:-2.975497pt;}
.wse8{word-spacing:-2.869229pt;}
.ws91{word-spacing:-2.497292pt;}
.wsa4{word-spacing:-2.337890pt;}
.wsef{word-spacing:-2.231622pt;}
.ws127{word-spacing:-2.196384pt;}
.wsb4{word-spacing:-2.183879pt;}
.wsb5{word-spacing:-2.168168pt;}
.ws5d{word-spacing:-2.125355pt;}
.ws129{word-spacing:-2.100192pt;}
.wsde{word-spacing:-2.072221pt;}
.ws1c{word-spacing:-2.008474pt;}
.ws1f{word-spacing:-1.960653pt;}
.ws14b{word-spacing:-1.912819pt;}
.ws148{word-spacing:-1.870400pt;}
.ws8d{word-spacing:-1.859685pt;}
.ws178{word-spacing:-1.817190pt;}
.ws9c{word-spacing:-1.806551pt;}
.ws128{word-spacing:-1.806272pt;}
.ws75{word-spacing:-1.753418pt;}
.ws106{word-spacing:-1.647150pt;}
.ws11d{word-spacing:-1.540882pt;}
.wsb6{word-spacing:-1.539713pt;}
.ws76{word-spacing:-1.487748pt;}
.wsb7{word-spacing:-1.461156pt;}
.ws68{word-spacing:-1.434614pt;}
.ws49{word-spacing:-1.328347pt;}
.ws17a{word-spacing:-1.291162pt;}
.ws6a{word-spacing:-1.275213pt;}
.ws47{word-spacing:-1.009543pt;}
.ws12c{word-spacing:-0.967264pt;}
.ws48{word-spacing:-0.956410pt;}
.wsb2{word-spacing:-0.911259pt;}
.ws85{word-spacing:-0.903276pt;}
.wsb3{word-spacing:-0.885073pt;}
.ws13e{word-spacing:-0.865728pt;}
.ws6c{word-spacing:-0.850142pt;}
.ws196{word-spacing:-0.812954pt;}
.ws6d{word-spacing:-0.797008pt;}
.ws12d{word-spacing:-0.769536pt;}
.ws197{word-spacing:-0.765133pt;}
.ws6b{word-spacing:-0.743874pt;}
.ws168{word-spacing:-0.717312pt;}
.ws5a{word-spacing:-0.690740pt;}
.ws16f{word-spacing:-0.669491pt;}
.ws105{word-spacing:-0.637606pt;}
.ws99{word-spacing:-0.584473pt;}
.wscd{word-spacing:-0.576083pt;}
.ws18b{word-spacing:-0.573850pt;}
.wsa9{word-spacing:-0.534186pt;}
.ws107{word-spacing:-0.531339pt;}
.wsce{word-spacing:-0.492289pt;}
.ws46{word-spacing:-0.478205pt;}
.ws69{word-spacing:-0.425071pt;}
.ws1e{word-spacing:-0.334746pt;}
.ws32{word-spacing:-0.318803pt;}
.wsaa{word-spacing:-0.293279pt;}
.ws172{word-spacing:-0.286925pt;}
.wsac{word-spacing:-0.277567pt;}
.ws3b{word-spacing:-0.265669pt;}
.ws13f{word-spacing:-0.251168pt;}
.ws11f{word-spacing:-0.246848pt;}
.wsa6{word-spacing:-0.241911pt;}
.ws154{word-spacing:-0.239104pt;}
.ws142{word-spacing:-0.235136pt;}
.ws13d{word-spacing:-0.213760pt;}
.ws3a{word-spacing:-0.212535pt;}
.wsd3{word-spacing:-0.209485pt;}
.ws130{word-spacing:-0.203072pt;}
.ws169{word-spacing:-0.191283pt;}
.ws45{word-spacing:-0.159402pt;}
.ws190{word-spacing:-0.157424pt;}
.ws17{word-spacing:-0.143462pt;}
.ws3c{word-spacing:-0.106268pt;}
.ws19{word-spacing:-0.095642pt;}
.ws100{word-spacing:-0.085014pt;}
.ws120{word-spacing:-0.072352pt;}
.wsa7{word-spacing:-0.070905pt;}
.ws117{word-spacing:-0.053440pt;}
.ws27{word-spacing:-0.053134pt;}
.wsa2{word-spacing:-0.052371pt;}
.ws11e{word-spacing:-0.051072pt;}
.wsa5{word-spacing:-0.050051pt;}
.ws18{word-spacing:-0.047821pt;}
.ws2{word-spacing:-0.037194pt;}
.ws1a1{word-spacing:-0.010982pt;}
.ws16c{word-spacing:-0.009190pt;}
.ws15d{word-spacing:-0.009054pt;}
.ws189{word-spacing:-0.009028pt;}
.ws167{word-spacing:-0.008269pt;}
.ws165{word-spacing:-0.007637pt;}
.ws17b{word-spacing:-0.007526pt;}
.ws170{word-spacing:-0.007347pt;}
.ws15a{word-spacing:-0.006861pt;}
.ws199{word-spacing:-0.006656pt;}
.ws198{word-spacing:-0.006059pt;}
.ws17f{word-spacing:-0.005939pt;}
.ws18f{word-spacing:-0.005325pt;}
.ws193{word-spacing:-0.005052pt;}
.ws17c{word-spacing:-0.004224pt;}
.ws114{word-spacing:-0.003369pt;}
.ws16b{word-spacing:-0.003046pt;}
.ws186{word-spacing:-0.002295pt;}
.ws4{word-spacing:-0.000023pt;}
.ws0{word-spacing:0.000000pt;}
.wse{word-spacing:0.000252pt;}
.ws22{word-spacing:0.003199pt;}
.wsd7{word-spacing:0.010474pt;}
.wsd6{word-spacing:0.026186pt;}
.ws143{word-spacing:0.026720pt;}
.wsb8{word-spacing:0.041897pt;}
.ws166{word-spacing:0.047821pt;}
.ws19f{word-spacing:0.048781pt;}
.wsbe{word-spacing:0.052371pt;}
.ws24{word-spacing:0.053134pt;}
.ws136{word-spacing:0.064128pt;}
.ws146{word-spacing:0.080160pt;}
.wsd5{word-spacing:0.084672pt;}
.ws1b{word-spacing:0.095642pt;}
.ws140{word-spacing:0.096192pt;}
.wscf{word-spacing:0.099505pt;}
.ws144{word-spacing:0.101536pt;}
.ws19d{word-spacing:0.102077pt;}
.ws34{word-spacing:0.106268pt;}
.ws145{word-spacing:0.122912pt;}
.ws147{word-spacing:0.128256pt;}
.wsd4{word-spacing:0.131712pt;}
.ws13b{word-spacing:0.134400pt;}
.ws15{word-spacing:0.143462pt;}
.ws183{word-spacing:0.143636pt;}
.ws139{word-spacing:0.148800pt;}
.ws13a{word-spacing:0.153600pt;}
.ws131{word-spacing:0.158400pt;}
.ws28{word-spacing:0.159402pt;}
.wsab{word-spacing:0.162351pt;}
.wsd0{word-spacing:0.172825pt;}
.ws1d{word-spacing:0.191283pt;}
.ws13c{word-spacing:0.196800pt;}
.ws3d{word-spacing:0.212535pt;}
.ws16{word-spacing:0.239104pt;}
.ws2a{word-spacing:0.265669pt;}
.ws18e{word-spacing:0.286925pt;}
.ws29{word-spacing:0.318803pt;}
.ws16d{word-spacing:0.334746pt;}
.ws55{word-spacing:0.371937pt;}
.ws35{word-spacing:0.425071pt;}
.ws18a{word-spacing:0.430387pt;}
.ws54{word-spacing:0.478205pt;}
.ws17e{word-spacing:0.478208pt;}
.wsbd{word-spacing:0.487052pt;}
.ws14{word-spacing:0.526029pt;}
.ws80{word-spacing:0.531339pt;}
.ws15c{word-spacing:0.573850pt;}
.ws8a{word-spacing:0.637606pt;}
.ws74{word-spacing:0.690740pt;}
.ws7d{word-spacing:0.743874pt;}
.ws156{word-spacing:0.765133pt;}
.ws88{word-spacing:0.797008pt;}
.ws9a{word-spacing:0.850142pt;}
.ws19e{word-spacing:0.860774pt;}
.ws72{word-spacing:0.956410pt;}
.ws164{word-spacing:0.956416pt;}
.wsc1{word-spacing:0.963630pt;}
.wsc9{word-spacing:0.984579pt;}
.ws161{word-spacing:1.004237pt;}
.ws67{word-spacing:1.009543pt;}
.wsc0{word-spacing:1.036950pt;}
.wsca{word-spacing:1.052661pt;}
.ws7e{word-spacing:1.062677pt;}
.ws126{word-spacing:1.079488pt;}
.ws50{word-spacing:1.115811pt;}
.ws4f{word-spacing:1.168945pt;}
.ws14d{word-spacing:1.222079pt;}
.wsb{word-spacing:1.227389pt;}
.ws14c{word-spacing:1.275213pt;}
.wsc3{word-spacing:1.283094pt;}
.wsba{word-spacing:1.288332pt;}
.ws152{word-spacing:1.328347pt;}
.wsdb{word-spacing:1.330228pt;}
.wsc2{word-spacing:1.340703pt;}
.ws141{word-spacing:1.357376pt;}
.ws12b{word-spacing:1.362720pt;}
.wsdc{word-spacing:1.366888pt;}
.ws89{word-spacing:1.381481pt;}
.ws15f{word-spacing:1.386803pt;}
.wse3{word-spacing:1.434614pt;}
.ws16a{word-spacing:1.482445pt;}
.ws90{word-spacing:1.487748pt;}
.ws184{word-spacing:1.530266pt;}
.ws150{word-spacing:1.540882pt;}
.ws12a{word-spacing:1.576480pt;}
.ws187{word-spacing:1.578086pt;}
.ws4c{word-spacing:1.594016pt;}
.ws4a{word-spacing:1.647150pt;}
.ws19c{word-spacing:1.673728pt;}
.ws7b{word-spacing:1.700284pt;}
.ws62{word-spacing:1.806551pt;}
.ws30{word-spacing:1.859685pt;}
.ws19a{word-spacing:1.865011pt;}
.wse4{word-spacing:1.912819pt;}
.ws96{word-spacing:1.965953pt;}
.ws3e{word-spacing:2.019087pt;}
.ws15b{word-spacing:2.056294pt;}
.wsc8{word-spacing:2.068662pt;}
.ws14f{word-spacing:2.072221pt;}
.ws1a{word-spacing:2.104115pt;}
.ws8b{word-spacing:2.125355pt;}
.ws179{word-spacing:2.151936pt;}
.ws92{word-spacing:2.178489pt;}
.ws192{word-spacing:2.199757pt;}
.wsae{word-spacing:2.220539pt;}
.ws56{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.ws191{word-spacing:2.247578pt;}
.wsad{word-spacing:2.272910pt;}
.ws2e{word-spacing:2.284756pt;}
.wsc7{word-spacing:2.320044pt;}
.ws71{word-spacing:2.337890pt;}
.ws41{word-spacing:2.391024pt;}
.ws18d{word-spacing:2.438861pt;}
.ws37{word-spacing:2.444158pt;}
.wse5{word-spacing:2.497292pt;}
.wsdd{word-spacing:2.545240pt;}
.ws8c{word-spacing:2.550426pt;}
.ws10{word-spacing:2.550432pt;}
.ws1a0{word-spacing:2.582323pt;}
.ws43{word-spacing:2.656693pt;}
.ws4d{word-spacing:2.709827pt;}
.ws13{word-spacing:2.725786pt;}
.wsb1{word-spacing:2.749488pt;}
.ws44{word-spacing:2.762961pt;}
.ws18c{word-spacing:2.773606pt;}
.wsb0{word-spacing:2.822808pt;}
.wsaf{word-spacing:2.828045pt;}
.ws19b{word-spacing:2.858863pt;}
.ws182{word-spacing:2.861227pt;}
.ws177{word-spacing:2.863258pt;}
.ws17d{word-spacing:2.863974pt;}
.ws185{word-spacing:2.865579pt;}
.ws16e{word-spacing:2.866099pt;}
.ws157{word-spacing:2.866509pt;}
.ws73{word-spacing:2.869229pt;}
.ws10a{word-spacing:2.869248pt;}
.wsbf{word-spacing:2.869942pt;}
.ws21{word-spacing:2.917069pt;}
.ws7c{word-spacing:2.922363pt;}
.ws195{word-spacing:2.964890pt;}
.wse0{word-spacing:2.975497pt;}
.ws175{word-spacing:3.012710pt;}
.ws51{word-spacing:3.028630pt;}
.ws173{word-spacing:3.060531pt;}
.ws14a{word-spacing:3.081764pt;}
.ws162{word-spacing:3.108352pt;}
.ws25{word-spacing:3.134898pt;}
.ws23{word-spacing:3.188032pt;}
.ws176{word-spacing:3.203994pt;}
.ws57{word-spacing:3.241166pt;}
.ws160{word-spacing:3.251814pt;}
.ws7a{word-spacing:3.294300pt;}
.wsf7{word-spacing:3.347434pt;}
.ws124{word-spacing:3.388096pt;}
.ws180{word-spacing:3.395277pt;}
.ws6e{word-spacing:3.400567pt;}
.ws9b{word-spacing:3.453701pt;}
.ws65{word-spacing:3.506835pt;}
.ws102{word-spacing:3.559969pt;}
.wse6{word-spacing:3.613103pt;}
.ws188{word-spacing:3.634381pt;}
.ws6f{word-spacing:3.666237pt;}
.ws82{word-spacing:3.719371pt;}
.ws194{word-spacing:3.730022pt;}
.ws123{word-spacing:3.847680pt;}
.ws122{word-spacing:3.927840pt;}
.ws2c{word-spacing:3.931906pt;}
.ws9d{word-spacing:3.985040pt;}
.ws5e{word-spacing:4.038174pt;}
.ws39{word-spacing:4.091308pt;}
.wsd8{word-spacing:4.132088pt;}
.ws38{word-spacing:4.144442pt;}
.wsf8{word-spacing:4.197575pt;}
.ws81{word-spacing:4.250709pt;}
.ws2d{word-spacing:4.303843pt;}
.wsee{word-spacing:4.356977pt;}
.ws83{word-spacing:4.410111pt;}
.ws4e{word-spacing:4.463245pt;}
.ws15e{word-spacing:4.495155pt;}
.ws3f{word-spacing:4.516379pt;}
.ws12{word-spacing:4.542976pt;}
.wse2{word-spacing:4.569513pt;}
.wse1{word-spacing:4.622646pt;}
.ws33{word-spacing:4.675780pt;}
.ws149{word-spacing:4.728914pt;}
.ws159{word-spacing:4.734259pt;}
.wscb{word-spacing:4.739594pt;}
.wse7{word-spacing:4.782048pt;}
.wscc{word-spacing:4.802439pt;}
.ws14e{word-spacing:4.810935pt;}
.ws86{word-spacing:4.835182pt;}
.ws9{word-spacing:4.872362pt;}
.ws97{word-spacing:4.888316pt;}
.ws2f{word-spacing:5.047717pt;}
.ws93{word-spacing:5.153985pt;}
.ws58{word-spacing:5.207119pt;}
.ws63{word-spacing:5.260253pt;}
.ws174{word-spacing:5.260288pt;}
.ws61{word-spacing:5.313387pt;}
.ws94{word-spacing:5.366521pt;}
.wsd9{word-spacing:5.409945pt;}
.ws36{word-spacing:5.419654pt;}
.wsda{word-spacing:5.430893pt;}
.ws60{word-spacing:5.472788pt;}
.ws151{word-spacing:5.525922pt;}
.wsb9{word-spacing:5.697987pt;}
.wsbc{word-spacing:5.739884pt;}
.wsbb{word-spacing:5.771306pt;}
.ws53{word-spacing:5.897859pt;}
.ws77{word-spacing:5.950993pt;}
.ws163{word-spacing:5.977600pt;}
.ws5b{word-spacing:6.110395pt;}
.ws153{word-spacing:6.163529pt;}
.wsf0{word-spacing:6.216662pt;}
.ws155{word-spacing:6.264525pt;}
.wse9{word-spacing:6.269796pt;}
.wsd1{word-spacing:6.336915pt;}
.ws101{word-spacing:6.376064pt;}
.ws64{word-spacing:6.429198pt;}
.wsd2{word-spacing:6.431183pt;}
.ws31{word-spacing:6.854269pt;}
.ws5c{word-spacing:6.907403pt;}
.ws2b{word-spacing:6.960537pt;}
.wsc6{word-spacing:6.991555pt;}
.wsc4{word-spacing:7.028215pt;}
.wsc5{word-spacing:7.164380pt;}
.ws70{word-spacing:7.491875pt;}
.ws40{word-spacing:7.757545pt;}
.ws5f{word-spacing:8.076348pt;}
.ws66{word-spacing:8.235749pt;}
.ws4b{word-spacing:8.607686pt;}
.ws7{word-spacing:8.740496pt;}
.ws20{word-spacing:8.862868pt;}
.ws125{word-spacing:9.079456pt;}
.wsdf{word-spacing:9.085891pt;}
.ws79{word-spacing:9.139025pt;}
.ws78{word-spacing:9.192159pt;}
.ws181{word-spacing:9.851085pt;}
.wsa8{word-spacing:10.122726pt;}
.ws121{word-spacing:10.325056pt;}
.ws8{word-spacing:10.525789pt;}
.ws52{word-spacing:10.626773pt;}
.ws42{word-spacing:10.786175pt;}
.ws135{word-spacing:10.928480pt;}
.ws132{word-spacing:10.933824pt;}
.ws134{word-spacing:10.997952pt;}
.ws11{word-spacing:12.144870pt;}
.ws95{word-spacing:13.177199pt;}
.ws5{word-spacing:13.761632pt;}
.ws171{word-spacing:14.202778pt;}
.ws59{word-spacing:15.887026pt;}
.ws87{word-spacing:16.470186pt;}
.ws7f{word-spacing:16.470689pt;}
.ws84{word-spacing:16.471497pt;}
.ws8e{word-spacing:16.497399pt;}
.ws98{word-spacing:16.950402pt;}
.ws6{word-spacing:19.857270pt;}
.wsa{word-spacing:20.196125pt;}
.ws8f{word-spacing:26.240176pt;}
.ws133{word-spacing:51.847488pt;}
.wseb{word-spacing:85.121024pt;}
.ws138{word-spacing:108.488544pt;}
.ws111{word-spacing:121.943040pt;}
.ws109{word-spacing:125.959987pt;}
.ws110{word-spacing:127.708655pt;}
.ws10b{word-spacing:129.450906pt;}
.ws10c{word-spacing:136.528384pt;}
.ws108{word-spacing:138.000657pt;}
.ws137{word-spacing:138.249280pt;}
.ws10d{word-spacing:140.736614pt;}
.ws10e{word-spacing:141.358285pt;}
.ws112{word-spacing:145.679386pt;}
.ws113{word-spacing:152.500531pt;}
.wsf9{word-spacing:160.008397pt;}
.wsed{word-spacing:202.664550pt;}
.wsfa{word-spacing:210.459341pt;}
.wsfe{word-spacing:210.507162pt;}
.wsfc{word-spacing:228.057395pt;}
.wsff{word-spacing:251.250483pt;}
.wsfd{word-spacing:259.571302pt;}
.wsf1{word-spacing:269.422387pt;}
.wsf5{word-spacing:274.921779pt;}
.wsfb{word-spacing:277.934490pt;}
.ws10f{word-spacing:278.745737pt;}
.ws103{word-spacing:289.315840pt;}
.ws104{word-spacing:294.671770pt;}
.wsf3{word-spacing:299.501670pt;}
.wsf2{word-spacing:299.549491pt;}
.wsf6{word-spacing:321.355776pt;}
.wsec{word-spacing:1196.380774pt;}
.ws158{word-spacing:1230.716109pt;}
.wsea{word-spacing:1258.547814pt;}
._6d{margin-left:-138.126554pt;}
._70{margin-left:-109.140512pt;}
._6b{margin-left:-52.720869pt;}
._6a{margin-left:-46.954693pt;}
._6c{margin-left:-31.590693pt;}
._1e{margin-left:-24.229043pt;}
._75{margin-left:-22.459792pt;}
._6e{margin-left:-18.453214pt;}
._69{margin-left:-15.058500pt;}
._5{margin-left:-10.616218pt;}
._19{margin-left:-6.663119pt;}
._9{margin-left:-5.483429pt;}
._8{margin-left:-4.505628pt;}
._1{margin-left:-2.752326pt;}
._0{margin-left:-1.339035pt;}
._21{width:1.092771pt;}
._6{width:2.668478pt;}
._24{width:3.825638pt;}
._1d{width:6.535466pt;}
._72{width:9.064623pt;}
._2{width:11.530016pt;}
._e{width:13.065551pt;}
._d{width:14.325012pt;}
._c{width:15.552285pt;}
._f{width:16.450355pt;}
._a{width:17.401281pt;}
._13{width:19.192014pt;}
._14{width:20.095290pt;}
._12{width:21.439580pt;}
._3{width:22.502128pt;}
._b{width:23.623527pt;}
._17{width:25.217517pt;}
._1f{width:26.407532pt;}
._1b{width:27.948414pt;}
._4{width:29.648896pt;}
._16{width:30.987732pt;}
._20{width:31.997276pt;}
._15{width:33.144845pt;}
._18{width:34.696415pt;}
._1a{width:36.184163pt;}
._1c{width:39.574096pt;}
._74{width:43.351987pt;}
._7{width:48.356482pt;}
._73{width:58.405225pt;}
._66{width:66.899227pt;}
._67{width:70.045109pt;}
._6f{width:81.931971pt;}
._71{width:97.853984pt;}
._62{width:129.396322pt;}
._60{width:137.620403pt;}
._2e{width:148.244480pt;}
._5a{width:152.574893pt;}
._5f{width:153.887019pt;}
._5c{width:156.230869pt;}
._31{width:160.199680pt;}
._59{width:171.731799pt;}
._55{width:173.302579pt;}
._56{width:174.861980pt;}
._58{width:178.562867pt;}
._2a{width:184.157901pt;}
._2f{width:185.401242pt;}
._57{width:186.453299pt;}
._61{width:187.621506pt;}
._68{width:192.830587pt;}
._5e{width:196.188478pt;}
._34{width:197.404262pt;}
._5b{width:198.408499pt;}
._63{width:206.251110pt;}
._36{width:212.898202pt;}
._27{width:214.619750pt;}
._28{width:220.023501pt;}
._2b{width:221.266842pt;}
._5d{width:223.660237pt;}
._4c{width:224.678146pt;}
._2c{width:226.622771pt;}
._4a{width:235.756544pt;}
._30{width:238.577971pt;}
._48{width:243.694797pt;}
._29{width:245.177242pt;}
._4b{width:246.994432pt;}
._45{width:248.742522pt;}
._33{width:250.485350pt;}
._49{width:271.935610pt;}
._46{width:277.599744pt;}
._47{width:281.042842pt;}
._65{width:283.269408pt;}
._40{width:301.271040pt;}
._41{width:303.592979pt;}
._44{width:305.240166pt;}
._37{width:309.496218pt;}
._52{width:310.670458pt;}
._51{width:314.899968pt;}
._53{width:323.459891pt;}
._43{width:329.724416pt;}
._50{width:331.950714pt;}
._42{width:334.219571pt;}
._38{width:339.766784pt;}
._3c{width:342.779494pt;}
._3a{width:351.052493pt;}
._39{width:353.060966pt;}
._3b{width:376.301875pt;}
._3e{width:451.141427pt;}
._3f{width:455.254016pt;}
._3d{width:466.348442pt;}
._4e{width:552.404602pt;}
._26{width:561.511834pt;}
._2d{width:573.467034pt;}
._4f{width:575.597690pt;}
._32{width:585.422234pt;}
._4d{width:603.068109pt;}
._35{width:606.798131pt;}
._54{width:655.192781pt;}
._25{width:715.829555pt;}
._10{width:783.586951pt;}
._22{width:1834.115284pt;}
._64{width:1850.437469pt;}
._23{width:2233.714348pt;}
._11{width:2254.967681pt;}
.fsa{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.381867pt;}
.fsd{font-size:41.708800pt;}
.fsb{font-size:42.507200pt;}
.fs11{font-size:42.560000pt;}
.fsf{font-size:47.040000pt;}
.fsc{font-size:47.820800pt;}
.fs13{font-size:48.000000pt;}
.fs10{font-size:49.829333pt;}
.fse{font-size:52.371200pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs12{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs6{font-size:80.777458pt;}
.fs8{font-size:95.641600pt;}
.y20d{bottom:-219.718267pt;}
.y135{bottom:-198.788035pt;}
.y225{bottom:-165.957467pt;}
.y224{bottom:-148.837963pt;}
.y154{bottom:-138.968521pt;}
.y223{bottom:-131.798619pt;}
.y153{bottom:-122.269964pt;}
.y222{bottom:-114.679115pt;}
.y152{bottom:-105.492850pt;}
.y221{bottom:-97.638435pt;}
.y151{bottom:-88.715736pt;}
.y220{bottom:-80.518931pt;}
.y150{bottom:-68.095885pt;}
.y21f{bottom:-59.478267pt;}
.y14f{bottom:-47.476035pt;}
.y21e{bottom:-26.758267pt;}
.y14e{bottom:-15.331904pt;}
.y21d{bottom:-6.758267pt;}
.y0{bottom:0.000000pt;}
.y14d{bottom:4.274692pt;}
.y3d{bottom:8.207950pt;}
.y3c{bottom:23.914454pt;}
.y6a{bottom:28.346667pt;}
.y6{bottom:44.973338pt;}
.y5{bottom:67.373337pt;}
.y4{bottom:89.773337pt;}
.y18a{bottom:92.108000pt;}
.yfa{bottom:92.758667pt;}
.y3a{bottom:93.018667pt;}
.y2b0{bottom:94.437333pt;}
.y1ab{bottom:94.710667pt;}
.y23f{bottom:95.533333pt;}
.y15c{bottom:97.662667pt;}
.y209{bottom:97.944000pt;}
.y1db{bottom:100.037333pt;}
.ya1{bottom:102.322667pt;}
.y2e7{bottom:103.518667pt;}
.ye1{bottom:105.909333pt;}
.yd6{bottom:106.308000pt;}
.y131{bottom:107.504000pt;}
.y125{bottom:107.902667pt;}
.y189{bottom:108.844000pt;}
.y39{bottom:108.920000pt;}
.yf9{bottom:109.496000pt;}
.y2af{bottom:109.780000pt;}
.y1aa{bottom:111.448000pt;}
.y23e{bottom:112.270667pt;}
.y274{bottom:113.720000pt;}
.y15b{bottom:114.400000pt;}
.y1da{bottom:116.774667pt;}
.y208{bottom:117.026667pt;}
.y2e6{bottom:118.861333pt;}
.ya0{bottom:119.060000pt;}
.ye0{bottom:122.646667pt;}
.yd5{bottom:123.045333pt;}
.y22{bottom:123.790666pt;}
.y130{bottom:124.241333pt;}
.y124{bottom:124.640000pt;}
.y38{bottom:124.820000pt;}
.y2ae{bottom:125.121333pt;}
.y188{bottom:125.581333pt;}
.yf8{bottom:126.233333pt;}
.y1a9{bottom:128.185333pt;}
.y23d{bottom:129.008000pt;}
.y273{bottom:129.341333pt;}
.y15a{bottom:131.137333pt;}
.y207{bottom:131.638667pt;}
.y1d9{bottom:133.512000pt;}
.y2e5{bottom:134.202667pt;}
.y9f{bottom:135.797333pt;}
.ydf{bottom:139.384000pt;}
.yd4{bottom:139.782667pt;}
.y2ad{bottom:140.464000pt;}
.y37{bottom:140.720000pt;}
.y12f{bottom:140.978667pt;}
.y123{bottom:141.377333pt;}
.y187{bottom:142.318667pt;}
.yf7{bottom:142.970667pt;}
.y1a8{bottom:144.921333pt;}
.y272{bottom:144.962667pt;}
.y23c{bottom:145.745333pt;}
.y159{bottom:147.874667pt;}
.y2e4{bottom:149.545333pt;}
.y1d8{bottom:150.249333pt;}
.y9e{bottom:152.534667pt;}
.y205{bottom:152.652000pt;}
.y2ac{bottom:155.806667pt;}
.yde{bottom:156.121333pt;}
.yd3{bottom:156.520000pt;}
.y36{bottom:156.621333pt;}
.y12e{bottom:157.716000pt;}
.y122{bottom:158.113333pt;}
.yf6{bottom:159.708000pt;}
.y204{bottom:159.957333pt;}
.y271{bottom:160.585333pt;}
.y1a7{bottom:161.658667pt;}
.y23b{bottom:162.481333pt;}
.y186{bottom:163.041333pt;}
.y158{bottom:164.612000pt;}
.y2e3{bottom:164.888000pt;}
.y69{bottom:165.893333pt;}
.y1d7{bottom:166.986667pt;}
.y206{bottom:167.264000pt;}
.y9d{bottom:169.272000pt;}
.y2ab{bottom:171.149333pt;}
.y35{bottom:172.521333pt;}
.ydd{bottom:172.858667pt;}
.yd2{bottom:173.257333pt;}
.y12d{bottom:174.452000pt;}
.y19{bottom:175.052000pt;}
.y270{bottom:176.206667pt;}
.y1a6{bottom:178.396000pt;}
.y121{bottom:178.836000pt;}
.y23a{bottom:179.218667pt;}
.y2e2{bottom:180.230667pt;}
.y185{bottom:180.974667pt;}
.y68{bottom:183.189333pt;}
.y1d6{bottom:183.724000pt;}
.y157{bottom:185.334667pt;}
.y9c{bottom:186.009333pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y2aa{bottom:186.492000pt;}
.y34{bottom:188.421333pt;}
.ydc{bottom:189.596000pt;}
.yd1{bottom:189.994667pt;}
.y12c{bottom:191.189333pt;}
.y26f{bottom:191.828000pt;}
.yf5{bottom:192.385333pt;}
.y1a5{bottom:195.133333pt;}
.y2e1{bottom:195.573333pt;}
.y239{bottom:195.956000pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y203{bottom:198.026667pt;}
.y1d5{bottom:200.461333pt;}
.y2a9{bottom:201.834667pt;}
.y9b{bottom:202.746667pt;}
.y156{bottom:203.266667pt;}
.y33{bottom:204.322667pt;}
.ydb{bottom:206.333333pt;}
.yd0{bottom:206.732000pt;}
.y26e{bottom:207.449333pt;}
.y12b{bottom:207.926667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y120{bottom:208.724000pt;}
.y2e0{bottom:210.916000pt;}
.y1a4{bottom:211.870667pt;}
.y238{bottom:212.693333pt;}
.y67{bottom:216.424000pt;}
.y2a8{bottom:217.177333pt;}
.y1d4{bottom:217.198667pt;}
.y9a{bottom:219.484000pt;}
.y184{bottom:220.669333pt;}
.yda{bottom:223.070667pt;}
.ycf{bottom:223.469333pt;}
.y12a{bottom:224.664000pt;}
.yf4{bottom:225.062667pt;}
.y11f{bottom:225.461333pt;}
.y2df{bottom:226.258667pt;}
.y1a3{bottom:228.608000pt;}
.y237{bottom:229.430667pt;}
.y155{bottom:230.313333pt;}
.y202{bottom:231.008000pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y2a7{bottom:232.520000pt;}
.y66{bottom:233.720000pt;}
.y183{bottom:235.281333pt;}
.y99{bottom:236.221333pt;}
.y1d3{bottom:237.921333pt;}
.y26d{bottom:239.010667pt;}
.yd9{bottom:239.808000pt;}
.yce{bottom:240.206667pt;}
.y129{bottom:241.401333pt;}
.y2de{bottom:241.601333pt;}
.yf3{bottom:241.800000pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y1a2{bottom:245.345333pt;}
.y236{bottom:246.168000pt;}
.y201{bottom:247.745333pt;}
.y2a6{bottom:247.862667pt;}
.y182{bottom:249.893333pt;}
.y132{bottom:250.250667pt;}
.y65{bottom:251.014667pt;}
.y98{bottom:252.958667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y26c{bottom:255.748000pt;}
.yd8{bottom:256.545333pt;}
.ycd{bottom:256.944000pt;}
.y11e{bottom:258.138667pt;}
.yf2{bottom:258.537333pt;}
.y15d{bottom:260.529333pt;}
.y1a1{bottom:262.082667pt;}
.y235{bottom:262.905333pt;}
.y2a5{bottom:263.204000pt;}
.y200{bottom:264.482667pt;}
.y181{bottom:264.505333pt;}
.y32{bottom:266.569333pt;}
.y1d2{bottom:267.809333pt;}
.y64{bottom:268.309333pt;}
.y97{bottom:269.696000pt;}
.y2dd{bottom:272.285333pt;}
.y26b{bottom:272.485333pt;}
.ye5{bottom:273.282667pt;}
.ycc{bottom:273.681333pt;}
.y128{bottom:274.876000pt;}
.yf1{bottom:275.274667pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.yd7{bottom:277.266667pt;}
.y2a4{bottom:278.546667pt;}
.y1a0{bottom:278.820000pt;}
.y180{bottom:279.117333pt;}
.y234{bottom:279.642667pt;}
.y1ff{bottom:281.220000pt;}
.y31{bottom:282.470667pt;}
.y1d1{bottom:284.546667pt;}
.y63{bottom:285.605333pt;}
.y96{bottom:286.433333pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y2dc{bottom:287.628000pt;}
.y26a{bottom:289.222667pt;}
.ye4{bottom:290.020000pt;}
.ycb{bottom:290.417333pt;}
.y11d{bottom:290.816000pt;}
.yf0{bottom:292.012000pt;}
.y17f{bottom:293.729333pt;}
.y2a3{bottom:293.889333pt;}
.y19f{bottom:295.557333pt;}
.y127{bottom:295.598667pt;}
.y233{bottom:296.380000pt;}
.y1fe{bottom:297.957333pt;}
.y30{bottom:298.370667pt;}
.y1d0{bottom:301.284000pt;}
.y62{bottom:302.900000pt;}
.y2db{bottom:302.970667pt;}
.y95{bottom:303.170667pt;}
.y269{bottom:305.960000pt;}
.ye3{bottom:306.757333pt;}
.yca{bottom:307.154667pt;}
.y11c{bottom:307.553333pt;}
.y17e{bottom:308.341333pt;}
.yef{bottom:308.749333pt;}
.y2a2{bottom:309.232000pt;}
.y10{bottom:309.452000pt;}
.y19e{bottom:312.294667pt;}
.y232{bottom:313.117333pt;}
.y2f{bottom:314.270667pt;}
.y1fd{bottom:314.694667pt;}
.y1cf{bottom:318.021333pt;}
.y2da{bottom:318.313333pt;}
.y94{bottom:319.908000pt;}
.y61{bottom:320.194667pt;}
.y268{bottom:322.697333pt;}
.y24b{bottom:323.494667pt;}
.yc9{bottom:323.892000pt;}
.y11b{bottom:324.290667pt;}
.y2a1{bottom:324.574667pt;}
.yee{bottom:325.486667pt;}
.ye2{bottom:327.478667pt;}
.y19d{bottom:329.032000pt;}
.y17d{bottom:329.354667pt;}
.y231{bottom:329.854667pt;}
.y1fc{bottom:331.432000pt;}
.y2d8{bottom:333.656000pt;}
.y2d9{bottom:333.841333pt;}
.y93{bottom:336.645333pt;}
.y60{bottom:337.490667pt;}
.y2e{bottom:338.141333pt;}
.y267{bottom:339.434667pt;}
.y2a0{bottom:339.917333pt;}
.y24a{bottom:340.232000pt;}
.yc8{bottom:340.629333pt;}
.y11a{bottom:341.028000pt;}
.yed{bottom:342.224000pt;}
.yf{bottom:343.809333pt;}
.y17c{bottom:343.966667pt;}
.y19c{bottom:345.769333pt;}
.y230{bottom:346.592000pt;}
.y1fb{bottom:348.169333pt;}
.y2d7{bottom:348.998667pt;}
.y92{bottom:353.382667pt;}
.y2d{bottom:354.042667pt;}
.y5f{bottom:354.785333pt;}
.y29f{bottom:355.260000pt;}
.y266{bottom:356.172000pt;}
.y249{bottom:356.968000pt;}
.yc7{bottom:357.366667pt;}
.y119{bottom:357.765333pt;}
.y1ce{bottom:358.432000pt;}
.y17b{bottom:358.578667pt;}
.yec{bottom:358.961333pt;}
.y19b{bottom:362.506667pt;}
.ye{bottom:362.706666pt;}
.y22f{bottom:363.329333pt;}
.y2d6{bottom:364.341333pt;}
.y1fa{bottom:364.906667pt;}
.y2c{bottom:369.942667pt;}
.y91{bottom:370.118667pt;}
.y29e{bottom:370.602667pt;}
.y5e{bottom:372.081333pt;}
.y265{bottom:372.909333pt;}
.y1cd{bottom:373.044000pt;}
.y17a{bottom:373.190667pt;}
.y248{bottom:373.705333pt;}
.yc6{bottom:374.104000pt;}
.y118{bottom:374.502667pt;}
.y14c{bottom:374.871633pt;}
.y126{bottom:374.901333pt;}
.yeb{bottom:375.698667pt;}
.y19a{bottom:379.244000pt;}
.y2d5{bottom:379.684000pt;}
.y22e{bottom:380.066667pt;}
.y1f9{bottom:381.644000pt;}
.y2b{bottom:385.842667pt;}
.y29d{bottom:385.944000pt;}
.y90{bottom:386.856000pt;}
.y1cc{bottom:387.654667pt;}
.y179{bottom:387.802667pt;}
.y5d{bottom:389.376000pt;}
.y264{bottom:389.646667pt;}
.y247{bottom:390.442667pt;}
.yc5{bottom:390.841333pt;}
.y117{bottom:391.240000pt;}
.y14b{bottom:391.571500pt;}
.yea{bottom:392.436000pt;}
.y2d4{bottom:395.025333pt;}
.y199{bottom:395.981333pt;}
.y22d{bottom:396.804000pt;}
.y29c{bottom:401.286667pt;}
.y2a{bottom:401.744000pt;}
.y1cb{bottom:402.266667pt;}
.y1f8{bottom:402.366667pt;}
.y178{bottom:402.414667pt;}
.y8f{bottom:403.593333pt;}
.y263{bottom:406.384000pt;}
.y5c{bottom:406.670667pt;}
.y246{bottom:407.180000pt;}
.yc4{bottom:407.578667pt;}
.y116{bottom:407.977333pt;}
.y14a{bottom:408.348613pt;}
.ye9{bottom:409.173333pt;}
.y2d3{bottom:410.368000pt;}
.y198{bottom:412.718667pt;}
.y22c{bottom:413.541333pt;}
.y29{bottom:417.644000pt;}
.y8e{bottom:420.330667pt;}
.y29b{bottom:420.614667pt;}
.y1ca{bottom:423.281333pt;}
.y177{bottom:423.428000pt;}
.y245{bottom:423.917333pt;}
.y5b{bottom:423.966667pt;}
.yc3{bottom:424.316000pt;}
.y115{bottom:424.714667pt;}
.y149{bottom:425.125727pt;}
.y2d2{bottom:425.710667pt;}
.ye8{bottom:425.910667pt;}
.y262{bottom:427.105333pt;}
.y197{bottom:429.456000pt;}
.y22b{bottom:430.278667pt;}
.y1f7{bottom:432.254667pt;}
.y28{bottom:433.544000pt;}
.y8d{bottom:437.068000pt;}
.y244{bottom:440.654667pt;}
.yc2{bottom:441.053333pt;}
.y5a{bottom:441.261333pt;}
.y114{bottom:441.452000pt;}
.y148{bottom:441.825594pt;}
.ye7{bottom:442.648000pt;}
.y176{bottom:444.442667pt;}
.yd{bottom:446.990669pt;}
.y22a{bottom:447.016000pt;}
.y1f6{bottom:448.992000pt;}
.y27{bottom:449.445333pt;}
.y1c9{bottom:451.386667pt;}
.y8c{bottom:453.805333pt;}
.y2d1{bottom:456.396000pt;}
.y261{bottom:456.993333pt;}
.y196{bottom:457.160000pt;}
.y243{bottom:457.392000pt;}
.yc1{bottom:457.790667pt;}
.y113{bottom:458.189333pt;}
.y59{bottom:458.557333pt;}
.y147{bottom:458.602708pt;}
.y29a{bottom:460.892000pt;}
.yc{bottom:462.990669pt;}
.y229{bottom:463.753333pt;}
.y26{bottom:465.345333pt;}
.y1f5{bottom:465.729333pt;}
.y8b{bottom:470.542667pt;}
.y2d0{bottom:471.738667pt;}
.y260{bottom:473.730667pt;}
.y195{bottom:473.909333pt;}
.y242{bottom:474.129333pt;}
.yc0{bottom:474.528000pt;}
.y112{bottom:474.926667pt;}
.y175{bottom:475.205333pt;}
.y146{bottom:475.301265pt;}
.ye6{bottom:475.325333pt;}
.y299{bottom:475.504000pt;}
.y58{bottom:475.852000pt;}
.yb{bottom:478.990666pt;}
.y228{bottom:480.490667pt;}
.y25{bottom:481.245333pt;}
.y1f4{bottom:482.466667pt;}
.y294{bottom:482.810667pt;}
.y1c8{bottom:484.369333pt;}
.y2cf{bottom:487.081333pt;}
.y8a{bottom:487.280000pt;}
.y194{bottom:488.521333pt;}
.y298{bottom:490.116000pt;}
.y25f{bottom:490.468000pt;}
.y241{bottom:490.866667pt;}
.ybf{bottom:491.265333pt;}
.y21c{bottom:491.561733pt;}
.y111{bottom:491.664000pt;}
.y145{bottom:492.078379pt;}
.y57{bottom:493.146667pt;}
.ya{bottom:494.990666pt;}
.y24{bottom:497.146667pt;}
.y293{bottom:497.422667pt;}
.y1f3{bottom:499.202667pt;}
.y1c7{bottom:501.106667pt;}
.y227{bottom:501.213333pt;}
.y2ce{bottom:502.424000pt;}
.y193{bottom:503.133333pt;}
.y89{bottom:504.017333pt;}
.y297{bottom:504.728000pt;}
.y25e{bottom:507.205333pt;}
.y174{bottom:507.604000pt;}
.ybe{bottom:508.002667pt;}
.y110{bottom:508.401333pt;}
.y21b{bottom:508.841733pt;}
.y144{bottom:508.855493pt;}
.y56{bottom:510.442667pt;}
.y292{bottom:512.034667pt;}
.y23{bottom:513.046667pt;}
.y2ea{bottom:513.714667pt;}
.y1f2{bottom:515.940000pt;}
.y192{bottom:517.745333pt;}
.y2cd{bottom:517.766667pt;}
.y1c6{bottom:517.844000pt;}
.y296{bottom:519.340000pt;}
.y88{bottom:520.754667pt;}
.y25d{bottom:523.942667pt;}
.y173{bottom:524.341333pt;}
.ybd{bottom:524.740000pt;}
.y10f{bottom:525.138667pt;}
.y143{bottom:525.555359pt;}
.y21a{bottom:526.841733pt;}
.y55{bottom:527.737333pt;}
.y226{bottom:528.260000pt;}
.y2e9{bottom:529.057333pt;}
.y1f1{bottom:532.677333pt;}
.y2cc{bottom:533.108000pt;}
.y295{bottom:533.952000pt;}
.y1c5{bottom:534.580000pt;}
.y87{bottom:537.492000pt;}
.y191{bottom:538.760000pt;}
.y25c{bottom:540.680000pt;}
.y172{bottom:541.078667pt;}
.ybc{bottom:541.477333pt;}
.y10e{bottom:541.876000pt;}
.y142{bottom:542.332473pt;}
.y2e8{bottom:544.400000pt;}
.y54{bottom:545.032000pt;}
.y218{bottom:545.482357pt;}
.y20a{bottom:548.196000pt;}
.y2cb{bottom:548.450667pt;}
.y1f0{bottom:549.414667pt;}
.y1c4{bottom:551.317333pt;}
.y86{bottom:554.229333pt;}
.y217{bottom:554.521733pt;}
.y291{bottom:554.965333pt;}
.y25b{bottom:557.417333pt;}
.y171{bottom:557.816000pt;}
.ybb{bottom:558.214667pt;}
.y10d{bottom:558.613333pt;}
.y141{bottom:559.031030pt;}
.y190{bottom:559.773333pt;}
.y53{bottom:562.328000pt;}
.y219{bottom:563.482285pt;}
.y2ca{bottom:563.793333pt;}
.y1ef{bottom:566.152000pt;}
.y1c3{bottom:568.054667pt;}
.y28f{bottom:569.577333pt;}
.y85{bottom:570.966667pt;}
.y9{bottom:573.786667pt;}
.y25a{bottom:574.154667pt;}
.y170{bottom:574.553333pt;}
.yba{bottom:574.952000pt;}
.y10c{bottom:575.350667pt;}
.y140{bottom:575.808144pt;}
.y2c9{bottom:579.136000pt;}
.y52{bottom:579.622667pt;}
.y18f{bottom:580.786667pt;}
.y1ee{bottom:582.889333pt;}
.y28e{bottom:584.189333pt;}
.y84{bottom:587.704000pt;}
.y216{bottom:590.201733pt;}
.y259{bottom:590.892000pt;}
.y16f{bottom:591.290667pt;}
.yb9{bottom:591.689333pt;}
.y10b{bottom:592.088000pt;}
.y13f{bottom:592.585258pt;}
.y8{bottom:592.685334pt;}
.y2c8{bottom:594.478667pt;}
.y18e{bottom:595.398667pt;}
.y290{bottom:598.801333pt;}
.y1ed{bottom:599.626667pt;}
.y1c2{bottom:603.729333pt;}
.y83{bottom:604.441333pt;}
.y258{bottom:607.629333pt;}
.y16e{bottom:608.028000pt;}
.yb8{bottom:608.426667pt;}
.y10a{bottom:608.825333pt;}
.y13e{bottom:609.283815pt;}
.y2c7{bottom:609.821333pt;}
.y18d{bottom:610.010667pt;}
.y51{bottom:613.921333pt;}
.y1c1{bottom:616.349333pt;}
.y1ec{bottom:616.364000pt;}
.y28d{bottom:619.816000pt;}
.y82{bottom:621.178667pt;}
.y215{bottom:621.964349pt;}
.y257{bottom:624.366667pt;}
.y16d{bottom:624.765333pt;}
.yb7{bottom:625.164000pt;}
.y109{bottom:625.562667pt;}
.y13d{bottom:626.060929pt;}
.y50{bottom:628.266667pt;}
.y18c{bottom:631.025333pt;}
.y1c0{bottom:633.098667pt;}
.y1eb{bottom:633.101333pt;}
.y28c{bottom:634.426667pt;}
.y81{bottom:637.916000pt;}
.y214{bottom:639.083853pt;}
.y2c6{bottom:640.506667pt;}
.y256{bottom:641.104000pt;}
.y16c{bottom:641.502667pt;}
.y287{bottom:641.733333pt;}
.yb6{bottom:641.901333pt;}
.y108{bottom:642.300000pt;}
.y13c{bottom:642.838043pt;}
.y7{bottom:645.598667pt;}
.y4f{bottom:646.470667pt;}
.y1bf{bottom:647.710667pt;}
.y28b{bottom:649.038667pt;}
.y1ea{bottom:649.838667pt;}
.y80{bottom:654.653333pt;}
.y2c5{bottom:655.848000pt;}
.y213{bottom:656.123197pt;}
.y286{bottom:656.345333pt;}
.y4e{bottom:656.960000pt;}
.y255{bottom:657.841333pt;}
.y16b{bottom:658.240000pt;}
.yb5{bottom:658.638667pt;}
.y107{bottom:659.037333pt;}
.y18b{bottom:659.130667pt;}
.y13b{bottom:659.536600pt;}
.y1be{bottom:662.322667pt;}
.y28a{bottom:663.650667pt;}
.y1e9{bottom:666.576000pt;}
.y3{bottom:668.977329pt;}
.y285{bottom:670.957333pt;}
.y2c4{bottom:671.190667pt;}
.y7f{bottom:671.390667pt;}
.y212{bottom:673.242701pt;}
.y254{bottom:674.578667pt;}
.y16a{bottom:674.977333pt;}
.y4d{bottom:675.164000pt;}
.yb4{bottom:675.376000pt;}
.y106{bottom:675.774667pt;}
.y13a{bottom:676.313714pt;}
.y1bd{bottom:676.934667pt;}
.y289{bottom:678.262667pt;}
.y1e8{bottom:683.313333pt;}
.y4c{bottom:685.652000pt;}
.y2c3{bottom:686.533333pt;}
.y7e{bottom:688.128000pt;}
.y211{bottom:690.282045pt;}
.y253{bottom:691.316000pt;}
.y1bc{bottom:691.546667pt;}
.y169{bottom:691.714667pt;}
.yb3{bottom:692.113333pt;}
.y105{bottom:692.512000pt;}
.y288{bottom:692.874667pt;}
.y139{bottom:693.012271pt;}
.y1e7{bottom:700.050667pt;}
.y2c2{bottom:701.876000pt;}
.y4b{bottom:703.856000pt;}
.y7d{bottom:704.865333pt;}
.y1bb{bottom:706.158667pt;}
.y210{bottom:707.401549pt;}
.y252{bottom:708.053333pt;}
.y168{bottom:708.452000pt;}
.yb2{bottom:708.850667pt;}
.y104{bottom:709.248000pt;}
.y138{bottom:709.789385pt;}
.y284{bottom:713.889333pt;}
.y4a{bottom:714.345333pt;}
.y1e6{bottom:716.788000pt;}
.y2c1{bottom:717.218667pt;}
.y1ba{bottom:720.769333pt;}
.y7c{bottom:721.602667pt;}
.y20f{bottom:724.521053pt;}
.y251{bottom:724.790667pt;}
.y167{bottom:725.189333pt;}
.yb1{bottom:725.588000pt;}
.y103{bottom:725.985333pt;}
.y137{bottom:726.566499pt;}
.y283{bottom:728.500000pt;}
.y49{bottom:732.548000pt;}
.y2c0{bottom:732.561333pt;}
.y1e5{bottom:733.525333pt;}
.y1b9{bottom:735.381333pt;}
.y27e{bottom:735.806667pt;}
.y7b{bottom:738.340000pt;}
.y20e{bottom:741.561733pt;}
.y166{bottom:741.926667pt;}
.yb0{bottom:742.324000pt;}
.y102{bottom:742.722667pt;}
.y48{bottom:743.037333pt;}
.y282{bottom:743.112000pt;}
.y136{bottom:743.266365pt;}
.y250{bottom:745.513333pt;}
.y2bf{bottom:747.904000pt;}
.y1b8{bottom:749.993333pt;}
.y1e4{bottom:750.262667pt;}
.y27d{bottom:750.418667pt;}
.y7a{bottom:755.077333pt;}
.y281{bottom:757.724000pt;}
.y165{bottom:758.664000pt;}
.yaf{bottom:759.061333pt;}
.y101{bottom:759.460000pt;}
.y47{bottom:761.241333pt;}
.y240{bottom:762.648000pt;}
.y2be{bottom:763.246667pt;}
.y1b7{bottom:764.605333pt;}
.y27c{bottom:765.030667pt;}
.y46{bottom:771.729333pt;}
.y79{bottom:771.814667pt;}
.y280{bottom:772.336000pt;}
.y164{bottom:775.401333pt;}
.yae{bottom:775.798667pt;}
.y100{bottom:776.197333pt;}
.y2bd{bottom:778.589333pt;}
.y1b6{bottom:779.217333pt;}
.y2{bottom:781.661334pt;}
.y1e3{bottom:785.873333pt;}
.y27f{bottom:786.948000pt;}
.y78{bottom:788.552000pt;}
.y45{bottom:789.933333pt;}
.y20c{bottom:790.201853pt;}
.y134{bottom:790.933683pt;}
.y163{bottom:792.138667pt;}
.yad{bottom:792.536000pt;}
.yff{bottom:792.934667pt;}
.y1b5{bottom:793.829333pt;}
.y2bc{bottom:793.930667pt;}
.y20b{bottom:798.761733pt;}
.y133{bottom:799.322365pt;}
.y1e2{bottom:802.622667pt;}
.y44{bottom:804.280000pt;}
.y77{bottom:805.289333pt;}
.y27b{bottom:807.962667pt;}
.y1b4{bottom:808.441333pt;}
.y162{bottom:808.874667pt;}
.yac{bottom:809.273333pt;}
.yfe{bottom:809.672000pt;}
.y1e1{bottom:817.234667pt;}
.y76{bottom:822.025333pt;}
.y1b3{bottom:823.053333pt;}
.y2bb{bottom:824.616000pt;}
.y161{bottom:825.612000pt;}
.yab{bottom:826.010667pt;}
.yfd{bottom:826.409333pt;}
.y1e0{bottom:831.846667pt;}
.y1b2{bottom:837.665333pt;}
.y27a{bottom:838.725333pt;}
.y75{bottom:838.762667pt;}
.y2ba{bottom:839.958667pt;}
.y160{bottom:842.349333pt;}
.yaa{bottom:842.748000pt;}
.y43{bottom:843.992000pt;}
.y1df{bottom:846.458667pt;}
.yfc{bottom:847.132000pt;}
.y1b1{bottom:852.277333pt;}
.y2b9{bottom:855.301333pt;}
.y74{bottom:855.500000pt;}
.y15f{bottom:859.086667pt;}
.y1{bottom:859.312000pt;}
.ya9{bottom:859.485333pt;}
.y42{bottom:860.729333pt;}
.y1de{bottom:861.070667pt;}
.y279{bottom:866.340000pt;}
.y1b0{bottom:866.888000pt;}
.y2b8{bottom:870.644000pt;}
.y73{bottom:872.237333pt;}
.y24f{bottom:875.824000pt;}
.ya8{bottom:876.222667pt;}
.yfb{bottom:877.020000pt;}
.y15e{bottom:879.809333pt;}
.y1af{bottom:881.500000pt;}
.y1dd{bottom:882.084000pt;}
.y2b7{bottom:885.986667pt;}
.y72{bottom:888.974667pt;}
.y24e{bottom:892.561333pt;}
.ya7{bottom:892.960000pt;}
.y1ae{bottom:896.112000pt;}
.y41{bottom:896.213333pt;}
.y278{bottom:899.017333pt;}
.y2b6{bottom:901.329333pt;}
.y71{bottom:905.712000pt;}
.y24d{bottom:909.298667pt;}
.ya6{bottom:909.697333pt;}
.y1dc{bottom:910.190667pt;}
.y2b5{bottom:916.670667pt;}
.y1ad{bottom:917.126667pt;}
.y40{bottom:921.320000pt;}
.y70{bottom:922.449333pt;}
.y277{bottom:922.609333pt;}
.ya5{bottom:926.434667pt;}
.y24c{bottom:930.021333pt;}
.y2b4{bottom:932.013333pt;}
.y6f{bottom:939.186667pt;}
.ya4{bottom:943.172000pt;}
.y1ac{bottom:945.232000pt;}
.y276{bottom:946.201333pt;}
.y3f{bottom:946.425333pt;}
.y2b3{bottom:947.356000pt;}
.y6e{bottom:955.924000pt;}
.ya3{bottom:959.909333pt;}
.y2b2{bottom:962.698667pt;}
.y275{bottom:969.792000pt;}
.y3e{bottom:971.530667pt;}
.y6d{bottom:972.661333pt;}
.ya2{bottom:976.646667pt;}
.y2b1{bottom:978.041333pt;}
.y6c{bottom:993.384000pt;}
.y3b{bottom:1010.186667pt;}
.y6b{bottom:1046.810667pt;}
.h7{height:28.560000pt;}
.h10{height:28.947524pt;}
.h9{height:33.771789pt;}
.ha{height:33.957757pt;}
.h1c{height:34.574438pt;}
.h1b{height:37.999806pt;}
.h13{height:38.415786pt;}
.h1a{height:38.562387pt;}
.h11{height:38.596538pt;}
.h17{height:38.796516pt;}
.hd{height:39.000258pt;}
.h24{height:39.349375pt;}
.h20{height:39.588281pt;}
.h6{height:40.800000pt;}
.h27{height:42.656250pt;}
.h3{height:42.840000pt;}
.h12{height:43.421286pt;}
.h28{height:43.660390pt;}
.h19{height:43.755469pt;}
.h22{height:44.648438pt;}
.hb{height:45.271688pt;}
.h29{height:45.810620pt;}
.h14{height:48.245551pt;}
.hf{height:48.486756pt;}
.h15{height:48.511220pt;}
.h18{height:48.714422pt;}
.h2{height:48.960000pt;}
.h21{height:49.708594pt;}
.hc{height:54.767117pt;}
.h2a{height:54.898620pt;}
.h5{height:57.120000pt;}
.h1e{height:63.795772pt;}
.h1d{height:63.801105pt;}
.he{height:69.148877pt;}
.h23{height:75.191583pt;}
.h26{height:75.506879pt;}
.h4{height:105.826671pt;}
.h25{height:111.349087pt;}
.h16{height:359.214427pt;}
.h1f{height:458.472000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.580236pt;}
.w6{width:477.670667pt;}
.w5{width:521.715544pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x46{left:-174.254667pt;}
.x4c{left:-160.814667pt;}
.x4b{left:-153.374667pt;}
.x47{left:-112.974667pt;}
.x1b{left:-80.110296pt;}
.x0{left:0.000000pt;}
.x4e{left:27.905239pt;}
.x48{left:32.864971pt;}
.x5{left:47.621333pt;}
.x6{left:51.603593pt;}
.x25{left:55.646667pt;}
.x56{left:56.982667pt;}
.x45{left:59.344000pt;}
.x44{left:66.014667pt;}
.x57{left:67.736000pt;}
.x55{left:71.142667pt;}
.x51{left:72.134667pt;}
.x59{left:74.862667pt;}
.x58{left:75.950667pt;}
.x52{left:77.574667pt;}
.x54{left:81.705333pt;}
.x1{left:90.706667pt;}
.x24{left:92.249333pt;}
.x2{left:94.486667pt;}
.x49{left:96.864540pt;}
.x50{left:98.334667pt;}
.x27{left:100.576000pt;}
.x3f{left:103.218667pt;}
.x5a{left:109.004000pt;}
.x1c{left:118.006412pt;}
.x28{left:128.472000pt;}
.x29{left:130.648000pt;}
.x22{left:158.018667pt;}
.x23{left:163.362667pt;}
.x4{left:180.874667pt;}
.x53{left:202.841333pt;}
.x1f{left:219.865333pt;}
.x9{left:220.912000pt;}
.x7{left:221.858667pt;}
.x11{left:225.900000pt;}
.x20{left:235.084000pt;}
.x2a{left:238.228000pt;}
.x8{left:239.924000pt;}
.x3e{left:248.516000pt;}
.xa{left:250.204000pt;}
.x3d{left:252.066667pt;}
.x33{left:253.781333pt;}
.x35{left:259.580000pt;}
.x34{left:261.653333pt;}
.x38{left:264.250667pt;}
.x31{left:265.353333pt;}
.x30{left:266.477333pt;}
.x2f{left:268.588000pt;}
.x3a{left:270.048000pt;}
.x39{left:272.122667pt;}
.x37{left:273.730667pt;}
.x36{left:276.720000pt;}
.x17{left:284.880000pt;}
.x4f{left:288.964000pt;}
.x40{left:301.674667pt;}
.x41{left:307.424000pt;}
.x21{left:308.685333pt;}
.x3c{left:311.560000pt;}
.xe{left:324.592000pt;}
.x26{left:331.269333pt;}
.x1a{left:340.046667pt;}
.x4a{left:343.583994pt;}
.x3b{left:357.868000pt;}
.x2e{left:370.708000pt;}
.x12{left:381.754667pt;}
.x18{left:384.148000pt;}
.xb{left:386.440000pt;}
.x3{left:404.408000pt;}
.x5d{left:406.138667pt;}
.x5c{left:416.196000pt;}
.x5b{left:417.564000pt;}
.x32{left:451.106667pt;}
.x4d{left:487.585200pt;}
.x1d{left:519.493899pt;}
.xc{left:521.562667pt;}
.xf{left:571.153333pt;}
.x42{left:578.866667pt;}
.x43{left:590.934667pt;}
.x2c{left:592.146667pt;}
.x1e{left:615.469333pt;}
.x15{left:620.645333pt;}
.x13{left:624.433333pt;}
.x19{left:639.932000pt;}
.x2b{left:654.058667pt;}
.x16{left:697.941333pt;}
.xd{left:706.334667pt;}
.x2d{left:714.658667pt;}
.x10{left:715.664000pt;}
.x14{left:744.556000pt;}
}




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