
    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_4cf326016a716cc60215b480.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6e7b6790293a37cd0f3f8134.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;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_2ad1908149da244459108bd0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_5b2c6dd1683cbc59e9fcc320.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_61603b033d2d9792c3195b81.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.803000;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_f7e357f1888faa4ca4d3a3eb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.665000;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_581195230fe4dd49f69289ec.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a46b99cc384b3be56c5c9933.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000488;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_e7b207a11dc3c38c9485e8ce.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.675781;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_f531c22d248a83da3ba2a00e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006836;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_d7bf389ca09e58629059f1e6.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2290a696e42be72ccb124297.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7fd831f231c23d578167e2db.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_136435cf88d18574ebb15d7f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000488;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_a5f0c2657c3f79d73c79fd0c.woff2')format("woff");}.fff{font-family:fff;line-height:0.675781;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_67b6f9f8463ce398827c6793.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.006836;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_d034d63e7c0bfca3e663d1ad.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_7c197db69d42c30486b3e28b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_e1d2384640cdf4c25acd98c5.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.752441;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_7fd831f231c23d578167e2db.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_0668e41d683a57bfd8bd6748.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000488;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_e7b207a11dc3c38c9485e8ce.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.675781;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_52950a7e58a7de1a3ae39a3a.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.006836;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_01af9f30756edcc1fd0da506.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_2290a696e42be72ccb124297.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{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);}
.m12{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);}
.mb{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);}
.m15{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);}
.m1b{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);}
.m19{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);}
.mc{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);}
.m11{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);}
.md{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);}
.m24{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);}
.m9{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);}
.m1{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);}
.m13{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);}
.m4{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);}
.m1d{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);}
.ma{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);}
.m1f{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);}
.mf{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);}
.m8{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m21{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);}
.m18{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);}
.m26{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);}
.m20{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.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.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);}
.m1e{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.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);}
.me{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);}
.m22{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.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);}
.m23{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);}
.m2{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);}
.m17{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);}
.m7{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);}
.m10{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:-10.920000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:32.874000px;}
.lsb3{letter-spacing:-1.445742px;}
.lsad{letter-spacing:-1.372540px;}
.ls7d{letter-spacing:-1.171234px;}
.lsb6{letter-spacing:-0.896726px;}
.ls97{letter-spacing:-0.575316px;}
.lsa4{letter-spacing:-0.410940px;}
.ls86{letter-spacing:-0.402612px;}
.ls73{letter-spacing:-0.393461px;}
.ls85{letter-spacing:-0.384311px;}
.ls6a{letter-spacing:-0.379736px;}
.ls6b{letter-spacing:-0.329410px;}
.lsaf{letter-spacing:-0.320259px;}
.ls78{letter-spacing:-0.306534px;}
.lsab{letter-spacing:-0.299986px;}
.ls8e{letter-spacing:-0.288233px;}
.lsa0{letter-spacing:-0.275330px;}
.ls8c{letter-spacing:-0.265358px;}
.ls9d{letter-spacing:-0.254783px;}
.lsb4{letter-spacing:-0.237907px;}
.ls8f{letter-spacing:-0.228757px;}
.ls8b{letter-spacing:-0.215031px;}
.ls90{letter-spacing:-0.205881px;}
.ls83{letter-spacing:-0.196731px;}
.lsb7{letter-spacing:-0.192156px;}
.lsa7{letter-spacing:-0.184923px;}
.lsa9{letter-spacing:-0.180814px;}
.lsaa{letter-spacing:-0.172595px;}
.ls7a{letter-spacing:-0.169280px;}
.ls87{letter-spacing:-0.164705px;}
.lsae{letter-spacing:-0.150979px;}
.ls8a{letter-spacing:-0.146404px;}
.lsa8{letter-spacing:-0.143829px;}
.ls7e{letter-spacing:-0.137254px;}
.lsa1{letter-spacing:-0.135610px;}
.ls7f{letter-spacing:-0.128104px;}
.ls9e{letter-spacing:-0.127391px;}
.ls7c{letter-spacing:-0.105228px;}
.ls8d{letter-spacing:-0.100653px;}
.ls6d{letter-spacing:-0.096078px;}
.ls71{letter-spacing:-0.091503px;}
.ls89{letter-spacing:-0.086928px;}
.ls72{letter-spacing:-0.082352px;}
.ls95{letter-spacing:-0.078079px;}
.lsb0{letter-spacing:-0.077777px;}
.ls68{letter-spacing:-0.073202px;}
.ls82{letter-spacing:-0.068627px;}
.lsa5{letter-spacing:-0.065750px;}
.ls65{letter-spacing:-0.065586px;}
.ls81{letter-spacing:-0.064052px;}
.lsc1{letter-spacing:-0.061191px;}
.ls80{letter-spacing:-0.059477px;}
.lsa3{letter-spacing:-0.057532px;}
.ls6c{letter-spacing:-0.054902px;}
.ls76{letter-spacing:-0.050326px;}
.ls70{letter-spacing:-0.045751px;}
.lsa2{letter-spacing:-0.045203px;}
.ls6e{letter-spacing:-0.041176px;}
.ls94{letter-spacing:-0.041094px;}
.ls64{letter-spacing:-0.040080px;}
.lsc0{letter-spacing:-0.037394px;}
.ls92{letter-spacing:-0.036985px;}
.lsb5{letter-spacing:-0.036601px;}
.ls79{letter-spacing:-0.032026px;}
.ls69{letter-spacing:-0.027451px;}
.ls88{letter-spacing:-0.022876px;}
.lsac{letter-spacing:-0.020547px;}
.ls74{letter-spacing:-0.018301px;}
.ls91{letter-spacing:-0.016438px;}
.ls75{letter-spacing:-0.013725px;}
.ls93{letter-spacing:-0.012328px;}
.ls98{letter-spacing:-0.008219px;}
.ls7b{letter-spacing:-0.004575px;}
.lsa6{letter-spacing:-0.004109px;}
.lsa{letter-spacing:0.000000px;}
.lsca{letter-spacing:0.000263px;}
.ls13{letter-spacing:0.000566px;}
.lscc{letter-spacing:0.000604px;}
.lsd2{letter-spacing:0.002892px;}
.ls48{letter-spacing:0.004109px;}
.ls35{letter-spacing:0.004575px;}
.lsc6{letter-spacing:0.004800px;}
.ls4b{letter-spacing:0.008219px;}
.ls2d{letter-spacing:0.009150px;}
.ls52{letter-spacing:0.012328px;}
.ls3c{letter-spacing:0.013725px;}
.ls9b{letter-spacing:0.016438px;}
.lsbe{letter-spacing:0.017074px;}
.ls3d{letter-spacing:0.018301px;}
.ls53{letter-spacing:0.019177px;}
.ls99{letter-spacing:0.020547px;}
.ls38{letter-spacing:0.022876px;}
.ls51{letter-spacing:0.024656px;}
.ls3f{letter-spacing:0.027451px;}
.ls4e{letter-spacing:0.028766px;}
.ls2f{letter-spacing:0.032026px;}
.ls4f{letter-spacing:0.032875px;}
.ls2b{letter-spacing:0.036601px;}
.ls50{letter-spacing:0.036985px;}
.ls32{letter-spacing:0.041176px;}
.ls59{letter-spacing:0.050326px;}
.ls33{letter-spacing:0.054902px;}
.ls49{letter-spacing:0.057532px;}
.ls34{letter-spacing:0.059477px;}
.lsba{letter-spacing:0.061191px;}
.ls47{letter-spacing:0.061641px;}
.ls28{letter-spacing:0.065586px;}
.ls9f{letter-spacing:0.065750px;}
.ls2e{letter-spacing:0.068627px;}
.ls4c{letter-spacing:0.069860px;}
.ls77{letter-spacing:0.073202px;}
.ls4a{letter-spacing:0.073969px;}
.ls84{letter-spacing:0.077777px;}
.ls54{letter-spacing:0.078079px;}
.ls45{letter-spacing:0.082188px;}
.ls6f{letter-spacing:0.082352px;}
.ls42{letter-spacing:0.086928px;}
.ls96{letter-spacing:0.090407px;}
.lsb2{letter-spacing:0.091503px;}
.ls4d{letter-spacing:0.094516px;}
.lsb9{letter-spacing:0.095185px;}
.lsbd{letter-spacing:0.098176px;}
.lsc3{letter-spacing:0.101984px;}
.ls27{letter-spacing:0.102023px;}
.ls9c{letter-spacing:0.102735px;}
.ls39{letter-spacing:0.105228px;}
.ls9a{letter-spacing:0.106844px;}
.ls67{letter-spacing:0.109310px;}
.ls5c{letter-spacing:0.109803px;}
.ls3b{letter-spacing:0.123529px;}
.lsb8{letter-spacing:0.129180px;}
.ls2c{letter-spacing:0.137254px;}
.ls26{letter-spacing:0.138459px;}
.lsb1{letter-spacing:0.155554px;}
.lsc2{letter-spacing:0.295755px;}
.ls66{letter-spacing:0.316999px;}
.ls58{letter-spacing:0.410940px;}
.ls57{letter-spacing:0.686270px;}
.ls3e{letter-spacing:0.892151px;}
.ls55{letter-spacing:0.957490px;}
.ls37{letter-spacing:1.162084px;}
.ls3a{letter-spacing:1.166659px;}
.ls43{letter-spacing:1.226985px;}
.ls56{letter-spacing:1.232820px;}
.ls36{letter-spacing:1.436591px;}
.ls5b{letter-spacing:1.494150px;}
.ls46{letter-spacing:1.508150px;}
.ls44{letter-spacing:1.779370px;}
.ls2{letter-spacing:2.989200px;}
.ls1{letter-spacing:2.998354px;}
.ls5a{letter-spacing:3.358147px;}
.lsb{letter-spacing:3.559200px;}
.ls41{letter-spacing:3.628080px;}
.ls40{letter-spacing:3.902588px;}
.ls5e{letter-spacing:8.011056px;}
.ls5d{letter-spacing:8.015631px;}
.lsbc{letter-spacing:8.369520px;}
.ls31{letter-spacing:8.560072px;}
.ls30{letter-spacing:8.834580px;}
.ls2a{letter-spacing:8.970711px;}
.ls0{letter-spacing:10.461300px;}
.ls20{letter-spacing:10.758685px;}
.ls9{letter-spacing:11.954850px;}
.lsbf{letter-spacing:12.186049px;}
.ls18{letter-spacing:12.524693px;}
.ls17{letter-spacing:12.530693px;}
.lscf{letter-spacing:12.913665px;}
.ls8{letter-spacing:12.915086px;}
.lsce{letter-spacing:13.103461px;}
.lscb{letter-spacing:13.143720px;}
.lsd4{letter-spacing:13.201288px;}
.lsc7{letter-spacing:13.207543px;}
.lsd3{letter-spacing:13.248028px;}
.lsc5{letter-spacing:13.448400px;}
.ls62{letter-spacing:13.450090px;}
.lsc9{letter-spacing:13.454400px;}
.lsc4{letter-spacing:13.541355px;}
.ls61{letter-spacing:13.568373px;}
.lsd1{letter-spacing:13.597459px;}
.lscd{letter-spacing:13.623869px;}
.lsd0{letter-spacing:13.642050px;}
.ls6{letter-spacing:13.664695px;}
.ls7{letter-spacing:13.670780px;}
.ls60{letter-spacing:14.094088px;}
.ls63{letter-spacing:14.100088px;}
.ls5f{letter-spacing:14.122800px;}
.lsd5{letter-spacing:14.132753px;}
.lsc8{letter-spacing:14.291576px;}
.ls21{letter-spacing:14.781515px;}
.ls24{letter-spacing:14.929383px;}
.lse{letter-spacing:14.938766px;}
.ls10{letter-spacing:14.944200px;}
.lsc{letter-spacing:14.944766px;}
.lsd{letter-spacing:15.657483px;}
.lsf{letter-spacing:15.663483px;}
.ls23{letter-spacing:16.847494px;}
.ls25{letter-spacing:17.165141px;}
.ls22{letter-spacing:19.535729px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls3{letter-spacing:72.361200px;}
.ls14{letter-spacing:236.765933px;}
.ls11{letter-spacing:238.248845px;}
.ls12{letter-spacing:241.232467px;}
.ls15{letter-spacing:248.712422px;}
.ls1e{letter-spacing:330.695440px;}
.ls1b{letter-spacing:330.701440px;}
.ls16{letter-spacing:332.011573px;}
.ls1a{letter-spacing:333.351527px;}
.ls19{letter-spacing:334.667660px;}
.ls1c{letter-spacing:336.007613px;}
.ls1d{letter-spacing:337.323746px;}
.ls1f{letter-spacing:341.307787px;}
.lsbb{letter-spacing:1493.150201px;}
.ls29{letter-spacing:1600.404652px;}
.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;}
}
.ws70{word-spacing:-45.751320px;}
.wsc2{word-spacing:-42.873370px;}
.wsd1{word-spacing:-41.780270px;}
.wsb0{word-spacing:-41.094000px;}
.wsc4{word-spacing:-40.958390px;}
.wsc7{word-spacing:-40.683060px;}
.ws68{word-spacing:-36.436680px;}
.wse2{word-spacing:-33.994800px;}
.ws57{word-spacing:-13.449600px;}
.ws28{word-spacing:-11.955150px;}
.wsd{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws56{word-spacing:-3.168107px;}
.ws3e{word-spacing:-2.869229px;}
.ws15{word-spacing:-2.044339px;}
.wsef{word-spacing:-2.032370px;}
.ws126{word-spacing:-1.936742px;}
.ws46{word-spacing:-1.853044px;}
.wsea{word-spacing:-1.775347px;}
.ws109{word-spacing:-1.673717px;}
.ws25{word-spacing:-1.613941px;}
.ws10c{word-spacing:-1.554166px;}
.wsfa{word-spacing:-1.434614px;}
.ws105{word-spacing:-1.374839px;}
.ws16{word-spacing:-1.291162px;}
.ws62{word-spacing:-1.243336px;}
.wseb{word-spacing:-1.237363px;}
.ws63{word-spacing:-1.195515px;}
.wsf0{word-spacing:-0.896634px;}
.wsdf{word-spacing:-0.860774px;}
.ws4e{word-spacing:-0.836858px;}
.wsf6{word-spacing:-0.777083px;}
.ws137{word-spacing:-0.753178px;}
.wsec{word-spacing:-0.699379px;}
.ws1d{word-spacing:-0.537984px;}
.ws131{word-spacing:-0.484186px;}
.wsf3{word-spacing:-0.478205px;}
.wsf4{word-spacing:-0.418429px;}
.ws11b{word-spacing:-0.376589px;}
.ws38{word-spacing:-0.358654px;}
.ws6d{word-spacing:-0.353436px;}
.wse7{word-spacing:-0.329750px;}
.ws12c{word-spacing:-0.322790px;}
.ws2c{word-spacing:-0.298878px;}
.ws1e{word-spacing:-0.268992px;}
.ws30{word-spacing:-0.239102px;}
.ws17{word-spacing:-0.215194px;}
.ws6f{word-spacing:-0.183005px;}
.ws35{word-spacing:-0.179327px;}
.ws69{word-spacing:-0.174896px;}
.ws93{word-spacing:-0.169280px;}
.wse3{word-spacing:-0.163175px;}
.ws11{word-spacing:-0.161395px;}
.ws91{word-spacing:-0.155554px;}
.wsda{word-spacing:-0.150979px;}
.wsb9{word-spacing:-0.147938px;}
.ws6e{word-spacing:-0.145747px;}
.wsbb{word-spacing:-0.143829px;}
.wsd8{word-spacing:-0.137254px;}
.wse8{word-spacing:-0.135979px;}
.wsa3{word-spacing:-0.132679px;}
.wsb3{word-spacing:-0.131501px;}
.ws7a{word-spacing:-0.128104px;}
.ws98{word-spacing:-0.123529px;}
.ws4f{word-spacing:-0.119551px;}
.wscc{word-spacing:-0.119173px;}
.ws86{word-spacing:-0.118953px;}
.wsb4{word-spacing:-0.115063px;}
.ws7f{word-spacing:-0.114378px;}
.ws118{word-spacing:-0.107597px;}
.wsc1{word-spacing:-0.106844px;}
.ws87{word-spacing:-0.105228px;}
.wsad{word-spacing:-0.102735px;}
.ws6b{word-spacing:-0.102023px;}
.ws84{word-spacing:-0.100653px;}
.wsb1{word-spacing:-0.098626px;}
.wsd4{word-spacing:-0.096078px;}
.wse5{word-spacing:-0.095185px;}
.ws82{word-spacing:-0.086928px;}
.ws77{word-spacing:-0.082352px;}
.wsc0{word-spacing:-0.078079px;}
.ws80{word-spacing:-0.077777px;}
.wsbe{word-spacing:-0.073969px;}
.wsa0{word-spacing:-0.073202px;}
.wsbc{word-spacing:-0.069860px;}
.ws8f{word-spacing:-0.068627px;}
.wsc8{word-spacing:-0.065750px;}
.wsa5{word-spacing:-0.064052px;}
.wsb7{word-spacing:-0.061641px;}
.ws44{word-spacing:-0.059776px;}
.ws9a{word-spacing:-0.059477px;}
.wsba{word-spacing:-0.057532px;}
.ws7b{word-spacing:-0.054902px;}
.ws14{word-spacing:-0.053798px;}
.wsab{word-spacing:-0.053422px;}
.ws89{word-spacing:-0.050326px;}
.wsb8{word-spacing:-0.049313px;}
.ws29{word-spacing:-0.047821px;}
.ws76{word-spacing:-0.045751px;}
.wsae{word-spacing:-0.045203px;}
.wse9{word-spacing:-0.042685px;}
.ws4{word-spacing:-0.041843px;}
.ws8c{word-spacing:-0.041176px;}
.wsaa{word-spacing:-0.041094px;}
.wsca{word-spacing:-0.036985px;}
.ws6a{word-spacing:-0.036437px;}
.wse4{word-spacing:-0.033995px;}
.wsb6{word-spacing:-0.032875px;}
.ws83{word-spacing:-0.032026px;}
.wsaf{word-spacing:-0.028766px;}
.ws81{word-spacing:-0.027451px;}
.wsa9{word-spacing:-0.024656px;}
.ws9d{word-spacing:-0.022876px;}
.wsd2{word-spacing:-0.020547px;}
.ws72{word-spacing:-0.018301px;}
.ws8a{word-spacing:-0.013725px;}
.wsdc{word-spacing:-0.009150px;}
.ws79{word-spacing:-0.004575px;}
.wsac{word-spacing:-0.004109px;}
.ws1{word-spacing:0.000000px;}
.wse1{word-spacing:0.003399px;}
.ws67{word-spacing:0.003644px;}
.wsc5{word-spacing:0.004109px;}
.ws85{word-spacing:0.004575px;}
.ws75{word-spacing:0.009150px;}
.ws94{word-spacing:0.013725px;}
.wsc6{word-spacing:0.016438px;}
.ws95{word-spacing:0.018301px;}
.ws96{word-spacing:0.022876px;}
.wsc9{word-spacing:0.024656px;}
.wse6{word-spacing:0.027196px;}
.ws71{word-spacing:0.027451px;}
.ws6c{word-spacing:0.029149px;}
.wsd7{word-spacing:0.032026px;}
.ws7d{word-spacing:0.036601px;}
.wsb2{word-spacing:0.036985px;}
.ws9e{word-spacing:0.041176px;}
.ws7c{word-spacing:0.045751px;}
.ws78{word-spacing:0.050326px;}
.ws1a{word-spacing:0.053798px;}
.wsa4{word-spacing:0.054902px;}
.ws8d{word-spacing:0.059477px;}
.ws34{word-spacing:0.059776px;}
.ws92{word-spacing:0.082352px;}
.wsbf{word-spacing:0.086297px;}
.ws90{word-spacing:0.091503px;}
.wsf{word-spacing:0.095641px;}
.ws9f{word-spacing:0.100653px;}
.wscd{word-spacing:0.102735px;}
.wsd5{word-spacing:0.105228px;}
.ws13{word-spacing:0.107597px;}
.ws9c{word-spacing:0.118953px;}
.ws2d{word-spacing:0.119551px;}
.ws8b{word-spacing:0.123529px;}
.wscf{word-spacing:0.131501px;}
.wsce{word-spacing:0.139720px;}
.ws59{word-spacing:0.143462px;}
.wscb{word-spacing:0.143829px;}
.wsde{word-spacing:0.146404px;}
.ws97{word-spacing:0.150979px;}
.wsa8{word-spacing:0.160130px;}
.ws12{word-spacing:0.161395px;}
.wsa1{word-spacing:0.169280px;}
.ws26{word-spacing:0.179327px;}
.wsa7{word-spacing:0.183005px;}
.ws61{word-spacing:0.191282px;}
.wsdb{word-spacing:0.192156px;}
.wsbd{word-spacing:0.213689px;}
.ws1c{word-spacing:0.215194px;}
.wsa2{word-spacing:0.219606px;}
.wsc3{word-spacing:0.234236px;}
.ws2b{word-spacing:0.239102px;}
.wsa6{word-spacing:0.242482px;}
.wsd0{word-spacing:0.258892px;}
.ws88{word-spacing:0.260783px;}
.ws10f{word-spacing:0.268992px;}
.wsd6{word-spacing:0.274508px;}
.ws74{word-spacing:0.283658px;}
.ws2e{word-spacing:0.298878px;}
.ws1b{word-spacing:0.322790px;}
.ws73{word-spacing:0.333985px;}
.ws99{word-spacing:0.338560px;}
.ws7e{word-spacing:0.347710px;}
.ws9b{word-spacing:0.356860px;}
.ws51{word-spacing:0.358654px;}
.ws45{word-spacing:0.418429px;}
.wsed{word-spacing:0.430387px;}
.ws13e{word-spacing:0.484186px;}
.wsb5{word-spacing:0.534222px;}
.wsff{word-spacing:0.537980px;}
.ws5c{word-spacing:0.587306px;}
.ws5f{word-spacing:0.587687px;}
.ws11d{word-spacing:0.591782px;}
.ws5d{word-spacing:0.593306px;}
.ws60{word-spacing:0.593687px;}
.ws65{word-spacing:0.597756px;}
.ws5b{word-spacing:0.612067px;}
.ws5a{word-spacing:0.612322px;}
.ws5e{word-spacing:0.618322px;}
.ws140{word-spacing:0.699379px;}
.ws24{word-spacing:0.717307px;}
.wsdd{word-spacing:0.850975px;}
.ws111{word-spacing:0.860774px;}
.wsfc{word-spacing:0.896634px;}
.ws3a{word-spacing:0.956410px;}
.ws42{word-spacing:1.016185px;}
.wsee{word-spacing:1.075961px;}
.ws8e{word-spacing:1.125482px;}
.ws36{word-spacing:1.135736px;}
.ws4b{word-spacing:1.195512px;}
.ws32{word-spacing:1.255288px;}
.ws31{word-spacing:1.315063px;}
.wsd3{word-spacing:1.326788px;}
.wsd9{word-spacing:1.399990px;}
.ws47{word-spacing:1.554166px;}
.ws43{word-spacing:1.613941px;}
.ws49{word-spacing:1.733492px;}
.ws22{word-spacing:1.793268px;}
.ws18{word-spacing:1.882944px;}
.ws66{word-spacing:1.912819px;}
.ws12a{word-spacing:1.936742px;}
.ws2a{word-spacing:1.972595px;}
.ws101{word-spacing:2.151922px;}
.ws4c{word-spacing:2.211697px;}
.ws4d{word-spacing:2.271473px;}
.ws53{word-spacing:2.331248px;}
.ws12f{word-spacing:2.367130px;}
.ws50{word-spacing:2.450800px;}
.ws129{word-spacing:2.474726px;}
.wse0{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws123{word-spacing:2.528525px;}
.ws37{word-spacing:2.630126px;}
.wsf2{word-spacing:2.749678px;}
.ws2f{word-spacing:2.809453px;}
.ws10{word-spacing:2.869236px;}
.ws10a{word-spacing:2.929004px;}
.ws3d{word-spacing:3.048556px;}
.ws102{word-spacing:3.168107px;}
.ws1f{word-spacing:3.174106px;}
.ws130{word-spacing:3.218246px;}
.ws20{word-spacing:3.219667px;}
.ws121{word-spacing:3.220224px;}
.ws127{word-spacing:3.221693px;}
.ws110{word-spacing:3.224822px;}
.ws116{word-spacing:3.225283px;}
.wsfb{word-spacing:3.227882px;}
.ws112{word-spacing:3.227904px;}
.ws23{word-spacing:3.526760px;}
.ws21{word-spacing:3.586536px;}
.ws54{word-spacing:3.646312px;}
.ws125{word-spacing:3.712090px;}
.wsfd{word-spacing:3.765863px;}
.ws64{word-spacing:3.825638px;}
.wsf7{word-spacing:3.885414px;}
.ws104{word-spacing:4.064741px;}
.wsf5{word-spacing:4.124516px;}
.ws4a{word-spacing:4.184292px;}
.ws19{word-spacing:4.250074px;}
.ws55{word-spacing:4.423394px;}
.ws3b{word-spacing:4.602721px;}
.ws141{word-spacing:4.626662px;}
.ws3f{word-spacing:4.722272px;}
.wsb{word-spacing:4.770079px;}
.wsc{word-spacing:4.853765px;}
.ws10d{word-spacing:4.895654px;}
.ws52{word-spacing:4.901599px;}
.wsfe{word-spacing:4.961375px;}
.wsf8{word-spacing:5.080926px;}
.ws33{word-spacing:5.439580px;}
.ws120{word-spacing:5.541235px;}
.wsf9{word-spacing:5.678682px;}
.ws108{word-spacing:5.738458px;}
.ws10e{word-spacing:5.756429px;}
.ws58{word-spacing:5.978375px;}
.ws3c{word-spacing:6.037336px;}
.ws40{word-spacing:6.336214px;}
.ws100{word-spacing:6.395989px;}
.ws41{word-spacing:6.575316px;}
.ws10b{word-spacing:6.814418px;}
.ws106{word-spacing:7.053521px;}
.ws107{word-spacing:7.352399px;}
.ws9{word-spacing:7.782761px;}
.ws39{word-spacing:8.129482px;}
.ws2{word-spacing:10.415114px;}
.ws27{word-spacing:11.907959px;}
.ws7{word-spacing:12.176255px;}
.ws138{word-spacing:12.642624px;}
.ws12d{word-spacing:13.073011px;}
.ws13c{word-spacing:13.126810px;}
.ws13d{word-spacing:13.135967px;}
.ws13b{word-spacing:13.180608px;}
.ws122{word-spacing:13.388803px;}
.ws12b{word-spacing:13.392202px;}
.ws128{word-spacing:13.394803px;}
.ws115{word-spacing:13.395802px;}
.ws13a{word-spacing:13.449600px;}
.ws135{word-spacing:13.503398px;}
.ws103{word-spacing:13.509286px;}
.ws12e{word-spacing:13.557197px;}
.ws139{word-spacing:13.571427px;}
.ws133{word-spacing:13.610995px;}
.ws11f{word-spacing:14.018390px;}
.wsf1{word-spacing:14.585246px;}
.ws48{word-spacing:14.884124px;}
.ws5{word-spacing:15.481836px;}
.ws8{word-spacing:16.109478px;}
.ws119{word-spacing:16.569907px;}
.ws134{word-spacing:16.613933px;}
.ws117{word-spacing:16.615670px;}
.ws124{word-spacing:16.617514px;}
.ws114{word-spacing:16.618685px;}
.ws11a{word-spacing:16.620173px;}
.ws136{word-spacing:16.620883px;}
.ws113{word-spacing:16.623706px;}
.ws132{word-spacing:16.677504px;}
.ws11c{word-spacing:16.731302px;}
.ws13f{word-spacing:18.560448px;}
.ws11e{word-spacing:18.937037px;}
.wsa{word-spacing:26.109907px;}
.ws6{word-spacing:26.840252px;}
.wse{word-spacing:40.068708px;}
._5{margin-left:-7.531776px;}
._1{margin-left:-6.150892px;}
._8{margin-left:-4.399495px;}
._0{margin-left:-3.096367px;}
._2{margin-left:-1.506341px;}
._26{width:1.007651px;}
._6{width:2.999755px;}
._9{width:11.046559px;}
._3{width:12.218455px;}
._2c{width:13.572672px;}
._f{width:14.822586px;}
._a{width:16.509890px;}
._c{width:17.747358px;}
._e{width:19.128192px;}
._d{width:21.220338px;}
._13{width:22.894055px;}
._12{width:24.747098px;}
._16{width:25.954561px;}
._b{width:27.706176px;}
._28{width:28.895516px;}
._4{width:30.587087px;}
._14{width:32.757029px;}
._17{width:33.773214px;}
._27{width:36.415291px;}
._15{width:38.017282px;}
._29{width:41.065837px;}
._7{width:54.409325px;}
._2d{width:61.868160px;}
._2b{width:88.767360px;}
._22{width:94.081385px;}
._21{width:99.466848px;}
._24{width:113.006705px;}
._20{width:133.323833px;}
._25{width:161.251063px;}
._19{width:167.324279px;}
._23{width:201.133444px;}
._1a{width:224.469896px;}
._1f{width:234.990428px;}
._1e{width:316.715834px;}
._1d{width:323.362897px;}
._1c{width:331.396758px;}
._1b{width:337.948180px;}
._10{width:911.269354px;}
._18{width:1294.174310px;}
._2a{width:2491.952700px;}
._11{width:2515.862700px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(41,66,37);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:33.994800px;}
.fs5{font-size:35.865600px;}
.fsc{font-size:36.436680px;}
.fse{font-size:41.094000px;}
.fs0{font-size:41.842800px;}
.fs10{font-size:42.685200px;}
.fs4{font-size:45.429600px;}
.fsd{font-size:45.751320px;}
.fsa{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fsb{font-size:49.829400px;}
.fs7{font-size:53.798400px;}
.fs8{font-size:56.058000px;}
.fs2{font-size:59.775600px;}
.fs9{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:151.185600px;}
.y135{bottom:-442.060372px;}
.y123{bottom:-247.299925px;}
.y145{bottom:-214.604276px;}
.y144{bottom:-199.947841px;}
.y143{bottom:-185.358889px;}
.y142{bottom:-170.702453px;}
.y141{bottom:-156.045600px;}
.y140{bottom:-141.457792px;}
.y13f{bottom:-126.801356px;}
.y13e{bottom:-108.787918px;}
.y13d{bottom:-80.775280px;}
.y13c{bottom:-67.488562px;}
.y14e{bottom:-56.913494px;}
.y13b{bottom:-54.338482px;}
.y13a{bottom:-41.188745px;}
.y139{bottom:-28.038665px;}
.y138{bottom:-14.819752px;}
.y0{bottom:0.000000px;}
.y137{bottom:5.658820px;}
.y131{bottom:6.181764px;}
.y152{bottom:6.922792px;}
.y19{bottom:14.814771px;}
.y136{bottom:21.069008px;}
.y151{bottom:21.236207px;}
.y130{bottom:21.523325px;}
.y48{bottom:31.890000px;}
.y14a{bottom:100.791000px;}
.y179{bottom:103.158000px;}
.y47{bottom:103.621500px;}
.y17{bottom:104.646000px;}
.y180{bottom:107.193000px;}
.y7f{bottom:107.641500px;}
.y1b3{bottom:110.197500px;}
.y119{bottom:115.788000px;}
.y1e6{bottom:117.205500px;}
.y149{bottom:120.024000px;}
.y178{bottom:121.987500px;}
.y46{bottom:122.449500px;}
.y16{bottom:122.535000px;}
.y158{bottom:123.705000px;}
.y17f{bottom:126.022500px;}
.y7e{bottom:126.471000px;}
.y1b2{bottom:127.456500px;}
.y1e5{bottom:134.466000px;}
.y118{bottom:134.617500px;}
.y148{bottom:139.257000px;}
.y15{bottom:140.422500px;}
.y177{bottom:140.817000px;}
.y45{bottom:141.279000px;}
.yb2{bottom:141.714000px;}
.y157{bottom:142.936500px;}
.y1b1{bottom:144.717000px;}
.y17e{bottom:144.852000px;}
.y7d{bottom:145.300500px;}
.y1e4{bottom:151.726500px;}
.y117{bottom:153.447000px;}
.y14{bottom:158.310000px;}
.y147{bottom:158.490000px;}
.y176{bottom:159.646500px;}
.y44{bottom:160.108500px;}
.yb0{bottom:160.543500px;}
.y1b0{bottom:161.977500px;}
.y156{bottom:162.169500px;}
.y17d{bottom:163.681500px;}
.y7c{bottom:164.130000px;}
.yb1{bottom:165.967500px;}
.y116{bottom:172.276500px;}
.y13{bottom:176.199000px;}
.y146{bottom:177.723000px;}
.y175{bottom:178.476000px;}
.y43{bottom:178.938000px;}
.y1af{bottom:179.238000px;}
.yae{bottom:179.373000px;}
.y155{bottom:181.402500px;}
.y17c{bottom:182.511000px;}
.y7b{bottom:182.959500px;}
.yaf{bottom:184.797000px;}
.y1e3{bottom:190.804500px;}
.y115{bottom:191.106000px;}
.y12{bottom:194.086500px;}
.y1ae{bottom:196.498500px;}
.y174{bottom:197.305500px;}
.y42{bottom:197.767500px;}
.yad{bottom:198.202500px;}
.y132{bottom:200.152500px;}
.y154{bottom:200.635500px;}
.y17b{bottom:201.340500px;}
.y7a{bottom:201.789000px;}
.y1e2{bottom:208.065000px;}
.y114{bottom:209.935500px;}
.y11{bottom:211.974000px;}
.ye4{bottom:213.445500px;}
.y1ad{bottom:213.759000px;}
.y173{bottom:216.135000px;}
.yac{bottom:217.032000px;}
.y153{bottom:219.868500px;}
.y79{bottom:220.618500px;}
.y41{bottom:221.080500px;}
.y17a{bottom:224.652000px;}
.y1e1{bottom:225.325500px;}
.y113{bottom:228.765000px;}
.y10{bottom:229.863000px;}
.y1ac{bottom:231.019500px;}
.ye3{bottom:232.275000px;}
.y172{bottom:234.964500px;}
.yab{bottom:235.861500px;}
.y78{bottom:239.446500px;}
.y14b{bottom:242.298213px;}
.y1e0{bottom:242.586000px;}
.y112{bottom:247.594500px;}
.y1ab{bottom:248.280000px;}
.ye2{bottom:251.104500px;}
.y171{bottom:253.794000px;}
.yaa{bottom:254.691000px;}
.y77{bottom:258.276000px;}
.y1df{bottom:259.846500px;}
.y1aa{bottom:265.540500px;}
.ye1{bottom:269.932500px;}
.ya9{bottom:270.790500px;}
.y170{bottom:272.623500px;}
.ya8{bottom:273.520500px;}
.y76{bottom:277.105500px;}
.y1a9{bottom:282.799500px;}
.y111{bottom:287.728500px;}
.ye0{bottom:288.762000px;}
.y16f{bottom:291.453000px;}
.ya6{bottom:292.350000px;}
.y1de{bottom:294.366000px;}
.y75{bottom:295.935000px;}
.y40{bottom:296.230500px;}
.ya7{bottom:297.774000px;}
.yf{bottom:298.876500px;}
.y1a8{bottom:300.060000px;}
.y110{bottom:301.924500px;}
.ydf{bottom:307.591500px;}
.y16e{bottom:310.282500px;}
.ya5{bottom:311.179500px;}
.y1dd{bottom:311.626500px;}
.y74{bottom:314.764500px;}
.y10f{bottom:316.122000px;}
.ye{bottom:316.764000px;}
.y1a7{bottom:317.320500px;}
.yde{bottom:326.421000px;}
.y1dc{bottom:328.887000px;}
.y16d{bottom:329.112000px;}
.ya3{bottom:330.009000px;}
.y10e{bottom:330.318000px;}
.y73{bottom:333.594000px;}
.y3f{bottom:333.621000px;}
.y1a6{bottom:334.581000px;}
.yd{bottom:334.653000px;}
.ya4{bottom:335.433000px;}
.ydd{bottom:345.250500px;}
.y1db{bottom:346.147500px;}
.y16c{bottom:347.940000px;}
.ya2{bottom:348.837000px;}
.y10d{bottom:351.478500px;}
.y1a5{bottom:351.841500px;}
.y72{bottom:352.423500px;}
.yc{bottom:352.540500px;}
.y3e{bottom:353.077500px;}
.y1da{bottom:363.408000px;}
.ydc{bottom:364.080000px;}
.y150{bottom:364.443164px;}
.y10c{bottom:365.674500px;}
.y16b{bottom:366.769500px;}
.ya1{bottom:367.666500px;}
.y1a4{bottom:369.102000px;}
.y71{bottom:371.253000px;}
.y3d{bottom:372.534000px;}
.y14f{bottom:378.820606px;}
.y10b{bottom:379.872000px;}
.y1d9{bottom:380.668500px;}
.yb{bottom:380.889000px;}
.y16a{bottom:385.599000px;}
.y1a3{bottom:386.362500px;}
.ya0{bottom:386.496000px;}
.ydb{bottom:387.393000px;}
.y70{bottom:390.082500px;}
.y3c{bottom:391.992000px;}
.y10a{bottom:394.068000px;}
.y12f{bottom:396.027070px;}
.y1d8{bottom:397.929000px;}
.ya{bottom:398.778000px;}
.y1a2{bottom:403.623000px;}
.y169{bottom:404.428500px;}
.yda{bottom:407.568000px;}
.y109{bottom:408.265500px;}
.y6f{bottom:408.912000px;}
.y9f{bottom:409.809000px;}
.y12e{bottom:410.684916px;}
.y3b{bottom:411.448500px;}
.y1d7{bottom:415.188000px;}
.y1a1{bottom:420.882000px;}
.y134{bottom:420.982221px;}
.y108{bottom:422.461500px;}
.y168{bottom:423.258000px;}
.y12d{bottom:425.341351px;}
.y9{bottom:425.631000px;}
.y6e{bottom:427.741500px;}
.y133{bottom:428.310548px;}
.y3a{bottom:430.906500px;}
.y1d6{bottom:432.448500px;}
.y107{bottom:436.659000px;}
.y1a0{bottom:438.142500px;}
.y12c{bottom:439.929160px;}
.yd9{bottom:441.192000px;}
.y167{bottom:442.087500px;}
.y9e{bottom:443.433000px;}
.y8{bottom:443.520000px;}
.y6d{bottom:446.571000px;}
.y1d5{bottom:449.709000px;}
.y39{bottom:450.363000px;}
.y106{bottom:450.855000px;}
.y12b{bottom:454.585595px;}
.y19f{bottom:455.403000px;}
.yd8{bottom:460.021500px;}
.y166{bottom:460.917000px;}
.y7{bottom:461.407500px;}
.y9d{bottom:462.262500px;}
.y105{bottom:465.052500px;}
.y6c{bottom:465.400500px;}
.y1d4{bottom:466.969500px;}
.y38{bottom:469.819500px;}
.y12a{bottom:472.599931px;}
.y19e{bottom:472.663500px;}
.yd7{bottom:478.851000px;}
.y6{bottom:479.295000px;}
.y165{bottom:479.746500px;}
.y9c{bottom:481.092000px;}
.y6b{bottom:484.230000px;}
.y104{bottom:486.451500px;}
.y37{bottom:489.277500px;}
.y19d{bottom:489.924000px;}
.y5{bottom:497.184000px;}
.yd6{bottom:497.680500px;}
.y164{bottom:498.576000px;}
.y9b{bottom:499.921500px;}
.y129{bottom:500.954311px;}
.y1d3{bottom:501.490500px;}
.y6a{bottom:503.059500px;}
.y19c{bottom:507.184500px;}
.y36{bottom:508.734000px;}
.y4{bottom:515.071500px;}
.y128{bottom:515.610747px;}
.yd5{bottom:516.508500px;}
.y163{bottom:517.405500px;}
.y99{bottom:518.751000px;}
.y103{bottom:519.490500px;}
.y69{bottom:521.889000px;}
.y9a{bottom:524.175000px;}
.y19b{bottom:524.445000px;}
.y35{bottom:528.190500px;}
.y127{bottom:530.199151px;}
.y3{bottom:532.959000px;}
.y1d2{bottom:536.011500px;}
.y162{bottom:536.235000px;}
.y98{bottom:537.580500px;}
.y102{bottom:538.723500px;}
.yd4{bottom:539.821500px;}
.y68{bottom:540.718500px;}
.y19a{bottom:541.705500px;}
.y126{bottom:544.855586px;}
.y34{bottom:547.648500px;}
.y2{bottom:550.848000px;}
.y1d1{bottom:553.272000px;}
.y97{bottom:553.680000px;}
.y161{bottom:555.064500px;}
.y96{bottom:556.410000px;}
.y199{bottom:558.966000px;}
.y125{bottom:559.512022px;}
.y67{bottom:559.548000px;}
.y33{bottom:567.105000px;}
.y1{bottom:568.735500px;}
.y1d0{bottom:570.531000px;}
.y120{bottom:572.737500px;}
.yd3{bottom:573.445500px;}
.y160{bottom:573.894000px;}
.y124{bottom:574.100974px;}
.y95{bottom:575.239500px;}
.y198{bottom:576.225000px;}
.y101{bottom:576.478500px;}
.y66{bottom:578.377500px;}
.y32{bottom:586.563000px;}
.y1cf{bottom:587.791500px;}
.y100{bottom:590.676000px;}
.yd2{bottom:592.275000px;}
.y15f{bottom:592.723500px;}
.y197{bottom:593.485500px;}
.y94{bottom:594.069000px;}
.y65{bottom:597.207000px;}
.y1ce{bottom:605.052000px;}
.y31{bottom:606.019500px;}
.y196{bottom:610.746000px;}
.yd1{bottom:611.104500px;}
.y15e{bottom:611.553000px;}
.yff{bottom:612.508500px;}
.y93{bottom:612.898500px;}
.y122{bottom:615.742668px;}
.y64{bottom:616.036500px;}
.y1cd{bottom:622.312500px;}
.y121{bottom:623.070995px;}
.y30{bottom:625.476000px;}
.y195{bottom:628.006500px;}
.yd0{bottom:629.934000px;}
.y15d{bottom:630.382500px;}
.y63{bottom:634.866000px;}
.yfe{bottom:636.148500px;}
.y92{bottom:636.211500px;}
.y1cc{bottom:639.573000px;}
.yfd{bottom:644.368500px;}
.y2f{bottom:644.934000px;}
.y194{bottom:645.267000px;}
.ycf{bottom:648.763500px;}
.y15c{bottom:649.212000px;}
.y62{bottom:653.695500px;}
.y1cb{bottom:656.833500px;}
.y193{bottom:662.527500px;}
.y2e{bottom:664.390500px;}
.yce{bottom:667.593000px;}
.y15b{bottom:668.041500px;}
.y91{bottom:669.835500px;}
.y61{bottom:672.525000px;}
.y1ca{bottom:674.094000px;}
.yfc{bottom:676.228500px;}
.y192{bottom:679.788000px;}
.y2d{bottom:683.847000px;}
.y15a{bottom:686.871000px;}
.y90{bottom:688.663500px;}
.ycd{bottom:690.906000px;}
.y60{bottom:691.354500px;}
.yfa{bottom:692.665500px;}
.y191{bottom:697.048500px;}
.y2c{bottom:703.305000px;}
.y159{bottom:705.700500px;}
.y8e{bottom:707.493000px;}
.y1c9{bottom:708.613500px;}
.yfb{bottom:709.104000px;}
.y5f{bottom:710.184000px;}
.y8f{bottom:712.918500px;}
.y18f{bottom:714.307500px;}
.y190{bottom:714.309000px;}
.y2b{bottom:722.761500px;}
.ycc{bottom:724.530000px;}
.y1c8{bottom:725.874000px;}
.y8d{bottom:726.322500px;}
.y5e{bottom:729.013500px;}
.y18e{bottom:731.568000px;}
.yf9{bottom:732.745500px;}
.y2a{bottom:742.219500px;}
.y1c7{bottom:743.134500px;}
.ycb{bottom:743.359500px;}
.y5d{bottom:747.843000px;}
.y14d{bottom:748.290502px;}
.y18d{bottom:748.828500px;}
.yf7{bottom:749.184000px;}
.y8c{bottom:749.635500px;}
.y14c{bottom:755.127707px;}
.y1c6{bottom:760.395000px;}
.y29{bottom:761.676000px;}
.yc9{bottom:762.189000px;}
.yf8{bottom:765.622500px;}
.y18c{bottom:766.089000px;}
.y5c{bottom:766.671000px;}
.yca{bottom:767.613000px;}
.y1c5{bottom:777.655500px;}
.yc8{bottom:778.288500px;}
.yc7{bottom:781.018500px;}
.y8b{bottom:783.259500px;}
.y18b{bottom:783.349500px;}
.y5b{bottom:785.500500px;}
.yf6{bottom:789.262500px;}
.y1c4{bottom:794.916000px;}
.yc6{bottom:799.848000px;}
.y28{bottom:799.962000px;}
.y18a{bottom:800.610000px;}
.y8a{bottom:802.089000px;}
.y5a{bottom:804.330000px;}
.yf5{bottom:805.701000px;}
.y1c3{bottom:812.176500px;}
.y27{bottom:816.102000px;}
.yc5{bottom:818.677500px;}
.y88{bottom:820.918500px;}
.yf2{bottom:822.139500px;}
.y189{bottom:822.354000px;}
.y59{bottom:823.159500px;}
.y89{bottom:826.342500px;}
.y1c2{bottom:829.437000px;}
.y26{bottom:832.240500px;}
.y25{bottom:836.581500px;}
.yc3{bottom:837.507000px;}
.yf4{bottom:838.578000px;}
.y87{bottom:839.748000px;}
.y58{bottom:841.989000px;}
.yc4{bottom:842.931000px;}
.y1c1{bottom:846.697500px;}
.y24{bottom:848.380500px;}
.yf3{bottom:855.016500px;}
.y188{bottom:855.978000px;}
.yc2{bottom:856.335000px;}
.y86{bottom:858.577500px;}
.y57{bottom:860.818500px;}
.y1c0{bottom:863.956500px;}
.y23{bottom:868.860000px;}
.yc0{bottom:875.164500px;}
.yf1{bottom:878.656500px;}
.y56{bottom:879.648000px;}
.yc1{bottom:880.590000px;}
.y22{bottom:880.660500px;}
.y1bf{bottom:881.217000px;}
.y85{bottom:881.890500px;}
.y187{bottom:882.517500px;}
.ybe{bottom:893.994000px;}
.yef{bottom:895.095000px;}
.y21{bottom:896.799000px;}
.y55{bottom:898.477500px;}
.ybf{bottom:899.419500px;}
.y186{bottom:900.091500px;}
.yf0{bottom:911.533500px;}
.ybd{bottom:912.823500px;}
.y20{bottom:912.939000px;}
.y84{bottom:915.514500px;}
.y1be{bottom:915.738000px;}
.y54{bottom:917.307000px;}
.y185{bottom:926.632500px;}
.ybc{bottom:931.653000px;}
.y1bd{bottom:932.998500px;}
.y1f{bottom:933.418500px;}
.y83{bottom:934.344000px;}
.yee{bottom:935.173500px;}
.y53{bottom:936.136500px;}
.y1bc{bottom:950.259000px;}
.ybb{bottom:950.482500px;}
.yed{bottom:951.612000px;}
.yeb{bottom:951.925500px;}
.y82{bottom:953.173500px;}
.y11f{bottom:954.517500px;}
.y52{bottom:954.966000px;}
.y1bb{bottom:967.519500px;}
.yec{bottom:968.050500px;}
.yba{bottom:969.312000px;}
.y11e{bottom:973.347000px;}
.y51{bottom:973.795500px;}
.y81{bottom:976.485000px;}
.y1e{bottom:977.796000px;}
.y184{bottom:979.713000px;}
.y1ba{bottom:984.780000px;}
.yb9{bottom:988.141500px;}
.y11d{bottom:992.176500px;}
.yea{bottom:992.316000px;}
.y50{bottom:992.625000px;}
.y1d{bottom:996.625500px;}
.y80{bottom:996.660000px;}
.y183{bottom:997.287000px;}
.ye9{bottom:1000.536000px;}
.y1b9{bottom:1002.040500px;}
.yb8{bottom:1006.971000px;}
.y11c{bottom:1011.006000px;}
.y4f{bottom:1011.454500px;}
.y182{bottom:1014.862500px;}
.y1b8{bottom:1019.299500px;}
.yb6{bottom:1025.800500px;}
.y11b{bottom:1029.835500px;}
.y4e{bottom:1030.284000px;}
.yb7{bottom:1031.226000px;}
.ye8{bottom:1032.396000px;}
.y181{bottom:1032.436500px;}
.y1c{bottom:1036.543500px;}
.y1b7{bottom:1036.560000px;}
.ye7{bottom:1040.614500px;}
.yb5{bottom:1044.630000px;}
.y4d{bottom:1049.113500px;}
.y11a{bottom:1053.148500px;}
.y1b6{bottom:1053.820500px;}
.yb4{bottom:1063.459500px;}
.y1b{bottom:1064.788500px;}
.y4c{bottom:1067.943000px;}
.y1b5{bottom:1071.081000px;}
.ye6{bottom:1072.474500px;}
.yb3{bottom:1082.289000px;}
.y4b{bottom:1086.772500px;}
.y1b4{bottom:1088.341500px;}
.y1a{bottom:1093.032000px;}
.y4a{bottom:1105.602000px;}
.ye5{bottom:1107.082500px;}
.y18{bottom:1136.520000px;}
.y49{bottom:1168.366500px;}
.h28{height:24.599753px;}
.h27{height:25.031327px;}
.h9{height:26.110157px;}
.h1d{height:26.366777px;}
.h1c{height:26.829352px;}
.h16{height:27.855430px;}
.h24{height:29.997817px;}
.h23{height:30.258668px;}
.h25{height:30.260038px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h29{height:30.888411px;}
.h2a{height:31.430313px;}
.h13{height:31.526842px;}
.h20{height:32.928440px;}
.h15{height:33.072749px;}
.h1e{height:33.107156px;}
.h1a{height:33.186380px;}
.h1f{height:33.397570px;}
.h21{height:33.687984px;}
.h19{height:34.574294px;}
.ha{height:34.813397px;}
.h11{height:35.052500px;}
.he{height:37.334628px;}
.hb{height:38.896243px;}
.hc{height:39.165235px;}
.hd{height:39.434227px;}
.h12{height:41.482876px;}
.hf{height:43.217759px;}
.h10{height:43.516637px;}
.h6{height:43.815515px;}
.h18{height:49.991558px;}
.h4{height:50.931027px;}
.h14{height:53.228842px;}
.h8{height:54.541601px;}
.h17{height:72.039235px;}
.h7{height:77.792486px;}
.h5{height:102.503837px;}
.h1b{height:358.139918px;}
.h22{height:371.090235px;}
.h26{height:703.368387px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:198.814733px;}
.w5{width:354.820725px;}
.w3{width:374.577518px;}
.w4{width:417.414588px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x72{left:-185.545118px;}
.x77{left:-163.628318px;}
.x8d{left:-151.269405px;}
.x73{left:-36.716074px;}
.x7a{left:-14.799547px;}
.x74{left:-12.470887px;}
.x0{left:0.000000px;}
.x7b{left:9.442933px;}
.x1{left:53.574000px;}
.x2{left:58.056593px;}
.x6c{left:82.045500px;}
.x66{left:86.242500px;}
.x6d{left:97.981500px;}
.x6e{left:99.307500px;}
.x67{left:104.170500px;}
.x69{left:105.294000px;}
.x6a{left:106.786500px;}
.x8e{left:166.058321px;}
.x68{left:173.632500px;}
.x76{left:175.260730px;}
.x79{left:197.862423px;}
.xbd{left:216.177000px;}
.xcb{left:238.488000px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x7f{left:260.820000px;}
.x4f{left:262.068000px;}
.x4{left:269.914500px;}
.x8b{left:274.042500px;}
.x62{left:279.004500px;}
.xd{left:281.479500px;}
.x50{left:287.590500px;}
.x99{left:289.342500px;}
.x6b{left:300.381000px;}
.x9a{left:304.285500px;}
.x43{left:306.328500px;}
.x6{left:308.163000px;}
.x7c{left:311.401500px;}
.x91{left:312.432000px;}
.x80{left:313.510500px;}
.xc8{left:314.640000px;}
.x90{left:320.995500px;}
.x3a{left:322.471500px;}
.x92{left:323.493000px;}
.x81{left:324.571500px;}
.x8c{left:326.026500px;}
.xae{left:327.919500px;}
.x97{left:330.948000px;}
.x5a{left:335.350500px;}
.x29{left:336.501000px;}
.x5b{left:341.776500px;}
.xaf{left:342.864000px;}
.x2a{left:343.974000px;}
.xe{left:347.635500px;}
.x39{left:350.998500px;}
.x8f{left:353.923995px;}
.xf{left:355.108500px;}
.x44{left:358.684500px;}
.xbe{left:359.763000px;}
.x6f{left:361.005000px;}
.xb5{left:364.009500px;}
.x3b{left:367.477500px;}
.x9f{left:372.528000px;}
.x75{left:375.730433px;}
.x3c{left:378.171000px;}
.x98{left:382.932000px;}
.x55{left:384.348000px;}
.xa0{left:387.471000px;}
.x10{left:393.867000px;}
.x11{left:401.340000px;}
.x53{left:404.541000px;}
.x52{left:405.612000px;}
.xbf{left:407.130000px;}
.x70{left:409.633500px;}
.x54{left:411.348000px;}
.x2d{left:413.868000px;}
.x82{left:414.960000px;}
.xb6{left:415.990500px;}
.x48{left:417.012000px;}
.x65{left:418.261500px;}
.x78{left:419.495542px;}
.x4e{left:422.506500px;}
.x49{left:423.817500px;}
.x83{left:426.022500px;}
.x2e{left:428.812500px;}
.x14{left:433.737000px;}
.x5c{left:438.687000px;}
.x15{left:441.208500px;}
.x5d{left:447.916500px;}
.x20{left:454.278000px;}
.x71{left:461.595000px;}
.x21{left:469.222500px;}
.x22{left:473.032500px;}
.x3d{left:474.085500px;}
.x33{left:476.455500px;}
.x24{left:477.535500px;}
.x3e{left:483.315000px;}
.x23{left:487.977000px;}
.x34{left:491.400000px;}
.x25{left:492.478500px;}
.xa5{left:494.512500px;}
.x18{left:496.579500px;}
.x56{left:497.767500px;}
.x96{left:499.732500px;}
.xbc{left:503.040000px;}
.x19{left:504.051000px;}
.xb1{left:505.983000px;}
.x1a{left:507.862500px;}
.xa6{left:509.457000px;}
.xa7{left:513.264000px;}
.x1b{left:515.334000px;}
.xb2{left:520.927500px;}
.xa8{left:528.207000px;}
.x1c{left:534.526500px;}
.x88{left:535.590000px;}
.x35{left:537.222000px;}
.x1d{left:541.998000px;}
.x2f{left:546.466500px;}
.x36{left:549.513000px;}
.x4a{left:551.391000px;}
.x4b{left:558.198000px;}
.x30{left:561.411000px;}
.x31{left:565.221000px;}
.xc1{left:566.776500px;}
.x37{left:568.255500px;}
.xac{left:569.862000px;}
.x2b{left:573.715500px;}
.x38{left:575.061000px;}
.x32{left:580.165500px;}
.x51{left:582.394500px;}
.x16{left:585.645000px;}
.x2c{left:588.658500px;}
.xb{left:590.380500px;}
.x17{left:593.118000px;}
.xb7{left:594.906000px;}
.xad{left:603.535500px;}
.xc{left:604.797000px;}
.xb8{left:609.850500px;}
.x41{left:612.603000px;}
.x94{left:616.191000px;}
.x42{left:621.832500px;}
.x95{left:627.253500px;}
.xb3{left:632.766000px;}
.x9{left:635.331000px;}
.xc6{left:638.395500px;}
.x7{left:641.544000px;}
.x3f{left:643.437000px;}
.xb4{left:647.710500px;}
.x26{left:649.821000px;}
.x40{left:652.668000px;}
.x1e{left:662.464500px;}
.xc7{left:665.295000px;}
.x93{left:667.647000px;}
.xa9{left:669.465000px;}
.x12{left:671.364000px;}
.x84{left:675.198000px;}
.x1f{left:677.409000px;}
.x13{left:678.835500px;}
.xa{left:682.108500px;}
.xaa{left:684.409500px;}
.x8{left:687.937500px;}
.x85{left:689.614500px;}
.xa3{left:691.648500px;}
.x45{left:693.219000px;}
.x46{left:700.840500px;}
.xab{left:703.014000px;}
.x47{left:715.785000px;}
.xbb{left:718.455000px;}
.x60{left:720.406500px;}
.x86{left:728.418000px;}
.x61{left:729.637500px;}
.x63{left:732.547500px;}
.x4c{left:736.321500px;}
.x87{left:737.389500px;}
.xc2{left:738.841500px;}
.x27{left:739.918500px;}
.x64{left:741.777000px;}
.xa4{left:744.961500px;}
.x4d{left:746.478000px;}
.xc9{left:748.857000px;}
.x28{left:754.861500px;}
.x89{left:756.105000px;}
.xc4{left:762.309000px;}
.xc3{left:765.741000px;}
.x7d{left:771.531000px;}
.xca{left:775.756500px;}
.x5e{left:782.304000px;}
.xb9{left:783.562500px;}
.xb0{left:786.453000px;}
.xc0{left:790.585500px;}
.x5f{left:792.454500px;}
.x9b{left:799.155000px;}
.xba{left:810.462000px;}
.x9c{left:814.099500px;}
.xc5{left:816.826500px;}
.x9d{left:817.846500px;}
.xa1{left:818.893500px;}
.x57{left:821.299500px;}
.x58{left:828.106500px;}
.x59{left:830.062500px;}
.x9e{left:832.789500px;}
.xa2{left:833.838000px;}
.x8a{left:835.618500px;}
.x7e{left:837.300000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-9.706667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:29.221333pt;}
.lsb3{letter-spacing:-1.285104pt;}
.lsad{letter-spacing:-1.220035pt;}
.ls7d{letter-spacing:-1.041097pt;}
.lsb6{letter-spacing:-0.797090pt;}
.ls97{letter-spacing:-0.511392pt;}
.lsa4{letter-spacing:-0.365280pt;}
.ls86{letter-spacing:-0.357877pt;}
.ls73{letter-spacing:-0.349743pt;}
.ls85{letter-spacing:-0.341610pt;}
.ls6a{letter-spacing:-0.337543pt;}
.ls6b{letter-spacing:-0.292808pt;}
.lsaf{letter-spacing:-0.284675pt;}
.ls78{letter-spacing:-0.272475pt;}
.lsab{letter-spacing:-0.266654pt;}
.ls8e{letter-spacing:-0.256207pt;}
.lsa0{letter-spacing:-0.244738pt;}
.ls8c{letter-spacing:-0.235873pt;}
.ls9d{letter-spacing:-0.226474pt;}
.lsb4{letter-spacing:-0.211473pt;}
.ls8f{letter-spacing:-0.203339pt;}
.ls8b{letter-spacing:-0.191139pt;}
.ls90{letter-spacing:-0.183005pt;}
.ls83{letter-spacing:-0.174872pt;}
.lsb7{letter-spacing:-0.170805pt;}
.lsa7{letter-spacing:-0.164376pt;}
.lsa9{letter-spacing:-0.160723pt;}
.lsaa{letter-spacing:-0.153418pt;}
.ls7a{letter-spacing:-0.150471pt;}
.ls87{letter-spacing:-0.146404pt;}
.lsae{letter-spacing:-0.134204pt;}
.ls8a{letter-spacing:-0.130137pt;}
.lsa8{letter-spacing:-0.127848pt;}
.ls7e{letter-spacing:-0.122004pt;}
.lsa1{letter-spacing:-0.120542pt;}
.ls7f{letter-spacing:-0.113870pt;}
.ls9e{letter-spacing:-0.113237pt;}
.ls7c{letter-spacing:-0.093536pt;}
.ls8d{letter-spacing:-0.089469pt;}
.ls6d{letter-spacing:-0.085402pt;}
.ls71{letter-spacing:-0.081336pt;}
.ls89{letter-spacing:-0.077269pt;}
.ls72{letter-spacing:-0.073202pt;}
.ls95{letter-spacing:-0.069403pt;}
.lsb0{letter-spacing:-0.069135pt;}
.ls68{letter-spacing:-0.065069pt;}
.ls82{letter-spacing:-0.061002pt;}
.lsa5{letter-spacing:-0.058445pt;}
.ls65{letter-spacing:-0.058299pt;}
.ls81{letter-spacing:-0.056935pt;}
.lsc1{letter-spacing:-0.054392pt;}
.ls80{letter-spacing:-0.052868pt;}
.lsa3{letter-spacing:-0.051139pt;}
.ls6c{letter-spacing:-0.048801pt;}
.ls76{letter-spacing:-0.044735pt;}
.ls70{letter-spacing:-0.040668pt;}
.lsa2{letter-spacing:-0.040181pt;}
.ls6e{letter-spacing:-0.036601pt;}
.ls94{letter-spacing:-0.036528pt;}
.ls64{letter-spacing:-0.035627pt;}
.lsc0{letter-spacing:-0.033239pt;}
.ls92{letter-spacing:-0.032875pt;}
.lsb5{letter-spacing:-0.032534pt;}
.ls79{letter-spacing:-0.028467pt;}
.ls69{letter-spacing:-0.024401pt;}
.ls88{letter-spacing:-0.020334pt;}
.lsac{letter-spacing:-0.018264pt;}
.ls74{letter-spacing:-0.016267pt;}
.ls91{letter-spacing:-0.014611pt;}
.ls75{letter-spacing:-0.012200pt;}
.ls93{letter-spacing:-0.010958pt;}
.ls98{letter-spacing:-0.007306pt;}
.ls7b{letter-spacing:-0.004067pt;}
.lsa6{letter-spacing:-0.003653pt;}
.lsa{letter-spacing:0.000000pt;}
.lsca{letter-spacing:0.000234pt;}
.ls13{letter-spacing:0.000503pt;}
.lscc{letter-spacing:0.000536pt;}
.lsd2{letter-spacing:0.002571pt;}
.ls48{letter-spacing:0.003653pt;}
.ls35{letter-spacing:0.004067pt;}
.lsc6{letter-spacing:0.004267pt;}
.ls4b{letter-spacing:0.007306pt;}
.ls2d{letter-spacing:0.008134pt;}
.ls52{letter-spacing:0.010958pt;}
.ls3c{letter-spacing:0.012200pt;}
.ls9b{letter-spacing:0.014611pt;}
.lsbe{letter-spacing:0.015177pt;}
.ls3d{letter-spacing:0.016267pt;}
.ls53{letter-spacing:0.017046pt;}
.ls99{letter-spacing:0.018264pt;}
.ls38{letter-spacing:0.020334pt;}
.ls51{letter-spacing:0.021917pt;}
.ls3f{letter-spacing:0.024401pt;}
.ls4e{letter-spacing:0.025570pt;}
.ls2f{letter-spacing:0.028467pt;}
.ls4f{letter-spacing:0.029222pt;}
.ls2b{letter-spacing:0.032534pt;}
.ls50{letter-spacing:0.032875pt;}
.ls32{letter-spacing:0.036601pt;}
.ls59{letter-spacing:0.044735pt;}
.ls33{letter-spacing:0.048801pt;}
.ls49{letter-spacing:0.051139pt;}
.ls34{letter-spacing:0.052868pt;}
.lsba{letter-spacing:0.054392pt;}
.ls47{letter-spacing:0.054792pt;}
.ls28{letter-spacing:0.058299pt;}
.ls9f{letter-spacing:0.058445pt;}
.ls2e{letter-spacing:0.061002pt;}
.ls4c{letter-spacing:0.062098pt;}
.ls77{letter-spacing:0.065069pt;}
.ls4a{letter-spacing:0.065750pt;}
.ls84{letter-spacing:0.069135pt;}
.ls54{letter-spacing:0.069403pt;}
.ls45{letter-spacing:0.073056pt;}
.ls6f{letter-spacing:0.073202pt;}
.ls42{letter-spacing:0.077269pt;}
.ls96{letter-spacing:0.080362pt;}
.lsb2{letter-spacing:0.081336pt;}
.ls4d{letter-spacing:0.084014pt;}
.lsb9{letter-spacing:0.084609pt;}
.lsbd{letter-spacing:0.087268pt;}
.lsc3{letter-spacing:0.090653pt;}
.ls27{letter-spacing:0.090687pt;}
.ls9c{letter-spacing:0.091320pt;}
.ls39{letter-spacing:0.093536pt;}
.ls9a{letter-spacing:0.094973pt;}
.ls67{letter-spacing:0.097164pt;}
.ls5c{letter-spacing:0.097603pt;}
.ls3b{letter-spacing:0.109803pt;}
.lsb8{letter-spacing:0.114827pt;}
.ls2c{letter-spacing:0.122004pt;}
.ls26{letter-spacing:0.123075pt;}
.lsb1{letter-spacing:0.138271pt;}
.lsc2{letter-spacing:0.262893pt;}
.ls66{letter-spacing:0.281777pt;}
.ls58{letter-spacing:0.365280pt;}
.ls57{letter-spacing:0.610018pt;}
.ls3e{letter-spacing:0.793023pt;}
.ls55{letter-spacing:0.851102pt;}
.ls37{letter-spacing:1.032963pt;}
.ls3a{letter-spacing:1.037030pt;}
.ls43{letter-spacing:1.090653pt;}
.ls56{letter-spacing:1.095840pt;}
.ls36{letter-spacing:1.276970pt;}
.ls5b{letter-spacing:1.328134pt;}
.ls46{letter-spacing:1.340578pt;}
.ls44{letter-spacing:1.581662pt;}
.ls2{letter-spacing:2.657067pt;}
.ls1{letter-spacing:2.665203pt;}
.ls5a{letter-spacing:2.985019pt;}
.lsb{letter-spacing:3.163733pt;}
.ls41{letter-spacing:3.224960pt;}
.ls40{letter-spacing:3.468967pt;}
.ls5e{letter-spacing:7.120939pt;}
.ls5d{letter-spacing:7.125006pt;}
.lsbc{letter-spacing:7.439573pt;}
.ls31{letter-spacing:7.608953pt;}
.ls30{letter-spacing:7.852960pt;}
.ls2a{letter-spacing:7.973965pt;}
.ls0{letter-spacing:9.298933pt;}
.ls20{letter-spacing:9.563276pt;}
.ls9{letter-spacing:10.626533pt;}
.lsbf{letter-spacing:10.832043pt;}
.ls18{letter-spacing:11.133060pt;}
.ls17{letter-spacing:11.138393pt;}
.lscf{letter-spacing:11.478814pt;}
.ls8{letter-spacing:11.480076pt;}
.lsce{letter-spacing:11.647521pt;}
.lscb{letter-spacing:11.683307pt;}
.lsd4{letter-spacing:11.734478pt;}
.lsc7{letter-spacing:11.740038pt;}
.lsd3{letter-spacing:11.776025pt;}
.lsc5{letter-spacing:11.954133pt;}
.ls62{letter-spacing:11.955635pt;}
.lsc9{letter-spacing:11.959467pt;}
.lsc4{letter-spacing:12.036760pt;}
.ls61{letter-spacing:12.060776pt;}
.lsd1{letter-spacing:12.086630pt;}
.lscd{letter-spacing:12.110106pt;}
.lsd0{letter-spacing:12.126266pt;}
.ls6{letter-spacing:12.146395pt;}
.ls7{letter-spacing:12.151804pt;}
.ls60{letter-spacing:12.528078pt;}
.ls63{letter-spacing:12.533411pt;}
.ls5f{letter-spacing:12.553600pt;}
.lsd5{letter-spacing:12.562447pt;}
.lsc8{letter-spacing:12.703624pt;}
.ls21{letter-spacing:13.139124pt;}
.ls24{letter-spacing:13.270563pt;}
.lse{letter-spacing:13.278903pt;}
.ls10{letter-spacing:13.283733pt;}
.lsc{letter-spacing:13.284237pt;}
.lsd{letter-spacing:13.917762pt;}
.lsf{letter-spacing:13.923096pt;}
.ls23{letter-spacing:14.975550pt;}
.ls25{letter-spacing:15.257903pt;}
.ls22{letter-spacing:17.365093pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls3{letter-spacing:64.321067pt;}
.ls14{letter-spacing:210.458607pt;}
.ls11{letter-spacing:211.776751pt;}
.ls12{letter-spacing:214.428860pt;}
.ls15{letter-spacing:221.077709pt;}
.ls1e{letter-spacing:293.951502pt;}
.ls1b{letter-spacing:293.956836pt;}
.ls16{letter-spacing:295.121398pt;}
.ls1a{letter-spacing:296.312468pt;}
.ls19{letter-spacing:297.482364pt;}
.ls1c{letter-spacing:298.673434pt;}
.ls1d{letter-spacing:299.843330pt;}
.ls1f{letter-spacing:303.384699pt;}
.lsbb{letter-spacing:1327.244623pt;}
.ls29{letter-spacing:1422.581913pt;}
.ws70{word-spacing:-40.667840pt;}
.wsc2{word-spacing:-38.109662pt;}
.wsd1{word-spacing:-37.138018pt;}
.wsb0{word-spacing:-36.528000pt;}
.wsc4{word-spacing:-36.407458pt;}
.wsc7{word-spacing:-36.162720pt;}
.ws68{word-spacing:-32.388160pt;}
.wse2{word-spacing:-30.217600pt;}
.ws57{word-spacing:-11.955200pt;}
.ws28{word-spacing:-10.626800pt;}
.wsd{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws56{word-spacing:-2.816095pt;}
.ws3e{word-spacing:-2.550426pt;}
.ws15{word-spacing:-1.817190pt;}
.wsef{word-spacing:-1.806551pt;}
.ws126{word-spacing:-1.721549pt;}
.ws46{word-spacing:-1.647150pt;}
.wsea{word-spacing:-1.578086pt;}
.ws109{word-spacing:-1.487748pt;}
.ws25{word-spacing:-1.434614pt;}
.ws10c{word-spacing:-1.381481pt;}
.wsfa{word-spacing:-1.275213pt;}
.ws105{word-spacing:-1.222079pt;}
.ws16{word-spacing:-1.147699pt;}
.ws62{word-spacing:-1.105187pt;}
.wseb{word-spacing:-1.099878pt;}
.ws63{word-spacing:-1.062680pt;}
.wsf0{word-spacing:-0.797008pt;}
.wsdf{word-spacing:-0.765133pt;}
.ws4e{word-spacing:-0.743874pt;}
.wsf6{word-spacing:-0.690740pt;}
.ws137{word-spacing:-0.669491pt;}
.wsec{word-spacing:-0.621670pt;}
.ws1d{word-spacing:-0.478208pt;}
.ws131{word-spacing:-0.430387pt;}
.wsf3{word-spacing:-0.425071pt;}
.wsf4{word-spacing:-0.371937pt;}
.ws11b{word-spacing:-0.334746pt;}
.ws38{word-spacing:-0.318803pt;}
.ws6d{word-spacing:-0.314165pt;}
.wse7{word-spacing:-0.293111pt;}
.ws12c{word-spacing:-0.286925pt;}
.ws2c{word-spacing:-0.265669pt;}
.ws1e{word-spacing:-0.239104pt;}
.ws30{word-spacing:-0.212535pt;}
.ws17{word-spacing:-0.191283pt;}
.ws6f{word-spacing:-0.162671pt;}
.ws35{word-spacing:-0.159402pt;}
.ws69{word-spacing:-0.155463pt;}
.ws93{word-spacing:-0.150471pt;}
.wse3{word-spacing:-0.145044pt;}
.ws11{word-spacing:-0.143462pt;}
.ws91{word-spacing:-0.138271pt;}
.wsda{word-spacing:-0.134204pt;}
.wsb9{word-spacing:-0.131501pt;}
.ws6e{word-spacing:-0.129553pt;}
.wsbb{word-spacing:-0.127848pt;}
.wsd8{word-spacing:-0.122004pt;}
.wse8{word-spacing:-0.120870pt;}
.wsa3{word-spacing:-0.117937pt;}
.wsb3{word-spacing:-0.116890pt;}
.ws7a{word-spacing:-0.113870pt;}
.ws98{word-spacing:-0.109803pt;}
.ws4f{word-spacing:-0.106268pt;}
.wscc{word-spacing:-0.105931pt;}
.ws86{word-spacing:-0.105736pt;}
.wsb4{word-spacing:-0.102278pt;}
.ws7f{word-spacing:-0.101670pt;}
.ws118{word-spacing:-0.095642pt;}
.wsc1{word-spacing:-0.094973pt;}
.ws87{word-spacing:-0.093536pt;}
.wsad{word-spacing:-0.091320pt;}
.ws6b{word-spacing:-0.090687pt;}
.ws84{word-spacing:-0.089469pt;}
.wsb1{word-spacing:-0.087667pt;}
.wsd4{word-spacing:-0.085402pt;}
.wse5{word-spacing:-0.084609pt;}
.ws82{word-spacing:-0.077269pt;}
.ws77{word-spacing:-0.073202pt;}
.wsc0{word-spacing:-0.069403pt;}
.ws80{word-spacing:-0.069135pt;}
.wsbe{word-spacing:-0.065750pt;}
.wsa0{word-spacing:-0.065069pt;}
.wsbc{word-spacing:-0.062098pt;}
.ws8f{word-spacing:-0.061002pt;}
.wsc8{word-spacing:-0.058445pt;}
.wsa5{word-spacing:-0.056935pt;}
.wsb7{word-spacing:-0.054792pt;}
.ws44{word-spacing:-0.053134pt;}
.ws9a{word-spacing:-0.052868pt;}
.wsba{word-spacing:-0.051139pt;}
.ws7b{word-spacing:-0.048801pt;}
.ws14{word-spacing:-0.047821pt;}
.wsab{word-spacing:-0.047486pt;}
.ws89{word-spacing:-0.044735pt;}
.wsb8{word-spacing:-0.043834pt;}
.ws29{word-spacing:-0.042507pt;}
.ws76{word-spacing:-0.040668pt;}
.wsae{word-spacing:-0.040181pt;}
.wse9{word-spacing:-0.037942pt;}
.ws4{word-spacing:-0.037194pt;}
.ws8c{word-spacing:-0.036601pt;}
.wsaa{word-spacing:-0.036528pt;}
.wsca{word-spacing:-0.032875pt;}
.ws6a{word-spacing:-0.032388pt;}
.wse4{word-spacing:-0.030218pt;}
.wsb6{word-spacing:-0.029222pt;}
.ws83{word-spacing:-0.028467pt;}
.wsaf{word-spacing:-0.025570pt;}
.ws81{word-spacing:-0.024401pt;}
.wsa9{word-spacing:-0.021917pt;}
.ws9d{word-spacing:-0.020334pt;}
.wsd2{word-spacing:-0.018264pt;}
.ws72{word-spacing:-0.016267pt;}
.ws8a{word-spacing:-0.012200pt;}
.wsdc{word-spacing:-0.008134pt;}
.ws79{word-spacing:-0.004067pt;}
.wsac{word-spacing:-0.003653pt;}
.ws1{word-spacing:0.000000pt;}
.wse1{word-spacing:0.003022pt;}
.ws67{word-spacing:0.003239pt;}
.wsc5{word-spacing:0.003653pt;}
.ws85{word-spacing:0.004067pt;}
.ws75{word-spacing:0.008134pt;}
.ws94{word-spacing:0.012200pt;}
.wsc6{word-spacing:0.014611pt;}
.ws95{word-spacing:0.016267pt;}
.ws96{word-spacing:0.020334pt;}
.wsc9{word-spacing:0.021917pt;}
.wse6{word-spacing:0.024174pt;}
.ws71{word-spacing:0.024401pt;}
.ws6c{word-spacing:0.025911pt;}
.wsd7{word-spacing:0.028467pt;}
.ws7d{word-spacing:0.032534pt;}
.wsb2{word-spacing:0.032875pt;}
.ws9e{word-spacing:0.036601pt;}
.ws7c{word-spacing:0.040668pt;}
.ws78{word-spacing:0.044735pt;}
.ws1a{word-spacing:0.047821pt;}
.wsa4{word-spacing:0.048801pt;}
.ws8d{word-spacing:0.052868pt;}
.ws34{word-spacing:0.053134pt;}
.ws92{word-spacing:0.073202pt;}
.wsbf{word-spacing:0.076709pt;}
.ws90{word-spacing:0.081336pt;}
.wsf{word-spacing:0.085014pt;}
.ws9f{word-spacing:0.089469pt;}
.wscd{word-spacing:0.091320pt;}
.wsd5{word-spacing:0.093536pt;}
.ws13{word-spacing:0.095642pt;}
.ws9c{word-spacing:0.105736pt;}
.ws2d{word-spacing:0.106268pt;}
.ws8b{word-spacing:0.109803pt;}
.wscf{word-spacing:0.116890pt;}
.wsce{word-spacing:0.124195pt;}
.ws59{word-spacing:0.127522pt;}
.wscb{word-spacing:0.127848pt;}
.wsde{word-spacing:0.130137pt;}
.ws97{word-spacing:0.134204pt;}
.wsa8{word-spacing:0.142337pt;}
.ws12{word-spacing:0.143462pt;}
.wsa1{word-spacing:0.150471pt;}
.ws26{word-spacing:0.159402pt;}
.wsa7{word-spacing:0.162671pt;}
.ws61{word-spacing:0.170029pt;}
.wsdb{word-spacing:0.170805pt;}
.wsbd{word-spacing:0.189946pt;}
.ws1c{word-spacing:0.191283pt;}
.wsa2{word-spacing:0.195206pt;}
.wsc3{word-spacing:0.208210pt;}
.ws2b{word-spacing:0.212535pt;}
.wsa6{word-spacing:0.215540pt;}
.wsd0{word-spacing:0.230126pt;}
.ws88{word-spacing:0.231807pt;}
.ws10f{word-spacing:0.239104pt;}
.wsd6{word-spacing:0.244007pt;}
.ws74{word-spacing:0.252141pt;}
.ws2e{word-spacing:0.265669pt;}
.ws1b{word-spacing:0.286925pt;}
.ws73{word-spacing:0.296875pt;}
.ws99{word-spacing:0.300942pt;}
.ws7e{word-spacing:0.309076pt;}
.ws9b{word-spacing:0.317209pt;}
.ws51{word-spacing:0.318803pt;}
.ws45{word-spacing:0.371937pt;}
.wsed{word-spacing:0.382566pt;}
.ws13e{word-spacing:0.430387pt;}
.wsb5{word-spacing:0.474864pt;}
.wsff{word-spacing:0.478205pt;}
.ws5c{word-spacing:0.522050pt;}
.ws5f{word-spacing:0.522388pt;}
.ws11d{word-spacing:0.526029pt;}
.ws5d{word-spacing:0.527383pt;}
.ws60{word-spacing:0.527722pt;}
.ws65{word-spacing:0.531339pt;}
.ws5b{word-spacing:0.544060pt;}
.ws5a{word-spacing:0.544286pt;}
.ws5e{word-spacing:0.549619pt;}
.ws140{word-spacing:0.621670pt;}
.ws24{word-spacing:0.637606pt;}
.wsdd{word-spacing:0.756422pt;}
.ws111{word-spacing:0.765133pt;}
.wsfc{word-spacing:0.797008pt;}
.ws3a{word-spacing:0.850142pt;}
.ws42{word-spacing:0.903276pt;}
.wsee{word-spacing:0.956410pt;}
.ws8e{word-spacing:1.000429pt;}
.ws36{word-spacing:1.009543pt;}
.ws4b{word-spacing:1.062677pt;}
.ws32{word-spacing:1.115811pt;}
.ws31{word-spacing:1.168945pt;}
.wsd3{word-spacing:1.179367pt;}
.wsd9{word-spacing:1.244436pt;}
.ws47{word-spacing:1.381481pt;}
.ws43{word-spacing:1.434614pt;}
.ws49{word-spacing:1.540882pt;}
.ws22{word-spacing:1.594016pt;}
.ws18{word-spacing:1.673728pt;}
.ws66{word-spacing:1.700284pt;}
.ws12a{word-spacing:1.721549pt;}
.ws2a{word-spacing:1.753418pt;}
.ws101{word-spacing:1.912819pt;}
.ws4c{word-spacing:1.965953pt;}
.ws4d{word-spacing:2.019087pt;}
.ws53{word-spacing:2.072221pt;}
.ws12f{word-spacing:2.104115pt;}
.ws50{word-spacing:2.178489pt;}
.ws129{word-spacing:2.199757pt;}
.wse0{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws123{word-spacing:2.247578pt;}
.ws37{word-spacing:2.337890pt;}
.wsf2{word-spacing:2.444158pt;}
.ws2f{word-spacing:2.497292pt;}
.ws10{word-spacing:2.550432pt;}
.ws10a{word-spacing:2.603559pt;}
.ws3d{word-spacing:2.709827pt;}
.ws102{word-spacing:2.816095pt;}
.ws1f{word-spacing:2.821427pt;}
.ws130{word-spacing:2.860663pt;}
.ws20{word-spacing:2.861926pt;}
.ws121{word-spacing:2.862421pt;}
.ws127{word-spacing:2.863727pt;}
.ws110{word-spacing:2.866509pt;}
.ws116{word-spacing:2.866918pt;}
.wsfb{word-spacing:2.869229pt;}
.ws112{word-spacing:2.869248pt;}
.ws23{word-spacing:3.134898pt;}
.ws21{word-spacing:3.188032pt;}
.ws54{word-spacing:3.241166pt;}
.ws125{word-spacing:3.299635pt;}
.wsfd{word-spacing:3.347434pt;}
.ws64{word-spacing:3.400567pt;}
.wsf7{word-spacing:3.453701pt;}
.ws104{word-spacing:3.613103pt;}
.wsf5{word-spacing:3.666237pt;}
.ws4a{word-spacing:3.719371pt;}
.ws19{word-spacing:3.777843pt;}
.ws55{word-spacing:3.931906pt;}
.ws3b{word-spacing:4.091308pt;}
.ws141{word-spacing:4.112589pt;}
.ws3f{word-spacing:4.197575pt;}
.wsb{word-spacing:4.240070pt;}
.wsc{word-spacing:4.314458pt;}
.ws10d{word-spacing:4.351693pt;}
.ws52{word-spacing:4.356977pt;}
.wsfe{word-spacing:4.410111pt;}
.wsf8{word-spacing:4.516379pt;}
.ws33{word-spacing:4.835182pt;}
.ws120{word-spacing:4.925542pt;}
.wsf9{word-spacing:5.047717pt;}
.ws108{word-spacing:5.100851pt;}
.ws10e{word-spacing:5.116826pt;}
.ws58{word-spacing:5.314111pt;}
.ws3c{word-spacing:5.366521pt;}
.ws40{word-spacing:5.632190pt;}
.ws100{word-spacing:5.685324pt;}
.ws41{word-spacing:5.844725pt;}
.ws10b{word-spacing:6.057261pt;}
.ws106{word-spacing:6.269796pt;}
.ws107{word-spacing:6.535466pt;}
.ws9{word-spacing:6.918010pt;}
.ws39{word-spacing:7.226206pt;}
.ws2{word-spacing:9.257879pt;}
.ws27{word-spacing:10.584852pt;}
.ws7{word-spacing:10.823338pt;}
.ws138{word-spacing:11.237888pt;}
.ws12d{word-spacing:11.620454pt;}
.ws13c{word-spacing:11.668275pt;}
.ws13d{word-spacing:11.676415pt;}
.ws13b{word-spacing:11.716096pt;}
.ws122{word-spacing:11.901158pt;}
.ws12b{word-spacing:11.904179pt;}
.ws128{word-spacing:11.906492pt;}
.ws115{word-spacing:11.907379pt;}
.ws13a{word-spacing:11.955200pt;}
.ws135{word-spacing:12.003021pt;}
.ws103{word-spacing:12.008254pt;}
.ws12e{word-spacing:12.050842pt;}
.ws139{word-spacing:12.063491pt;}
.ws133{word-spacing:12.098662pt;}
.ws11f{word-spacing:12.460791pt;}
.wsf1{word-spacing:12.964663pt;}
.ws48{word-spacing:13.230333pt;}
.ws5{word-spacing:13.761632pt;}
.ws8{word-spacing:14.319536pt;}
.ws119{word-spacing:14.728806pt;}
.ws134{word-spacing:14.767940pt;}
.ws117{word-spacing:14.769485pt;}
.ws124{word-spacing:14.771123pt;}
.ws114{word-spacing:14.772164pt;}
.ws11a{word-spacing:14.773487pt;}
.ws136{word-spacing:14.774118pt;}
.ws113{word-spacing:14.776627pt;}
.ws132{word-spacing:14.824448pt;}
.ws11c{word-spacing:14.872269pt;}
.ws13f{word-spacing:16.498176pt;}
.ws11e{word-spacing:16.832922pt;}
.wsa{word-spacing:23.208806pt;}
.ws6{word-spacing:23.858002pt;}
.wse{word-spacing:35.616629pt;}
._5{margin-left:-6.694912pt;}
._1{margin-left:-5.467459pt;}
._8{margin-left:-3.910662pt;}
._0{margin-left:-2.752326pt;}
._2{margin-left:-1.338970pt;}
._26{width:0.895690pt;}
._6{width:2.666449pt;}
._9{width:9.819163pt;}
._3{width:10.860849pt;}
._2c{width:12.064597pt;}
._f{width:13.175632pt;}
._a{width:14.675458pt;}
._c{width:15.775429pt;}
._e{width:17.002837pt;}
._d{width:18.862523pt;}
._13{width:20.350271pt;}
._12{width:21.997421pt;}
._16{width:23.070721pt;}
._b{width:24.627712pt;}
._28{width:25.684903pt;}
._4{width:27.188522pt;}
._14{width:29.117359pt;}
._17{width:30.020635pt;}
._27{width:32.369148pt;}
._15{width:33.793139pt;}
._29{width:36.502966pt;}
._7{width:48.363844pt;}
._2d{width:54.993920pt;}
._2b{width:78.904320pt;}
._22{width:83.627898pt;}
._21{width:88.414976pt;}
._24{width:100.450404pt;}
._20{width:118.510074pt;}
._25{width:143.334278pt;}
._19{width:148.732693pt;}
._23{width:178.785283pt;}
._1a{width:199.528797pt;}
._1f{width:208.880381pt;}
._1e{width:281.525186pt;}
._1d{width:287.433686pt;}
._1c{width:294.574896pt;}
._1b{width:300.398382pt;}
._10{width:810.017203pt;}
._18{width:1150.377165pt;}
._2a{width:2215.069067pt;}
._11{width:2236.322400pt;}
.fsf{font-size:30.217600pt;}
.fs5{font-size:31.880533pt;}
.fsc{font-size:32.388160pt;}
.fse{font-size:36.528000pt;}
.fs0{font-size:37.193600pt;}
.fs10{font-size:37.942400pt;}
.fs4{font-size:40.381867pt;}
.fsd{font-size:40.667840pt;}
.fsa{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fsb{font-size:44.292800pt;}
.fs7{font-size:47.820800pt;}
.fs8{font-size:49.829333pt;}
.fs2{font-size:53.133867pt;}
.fs9{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:134.387200pt;}
.y135{bottom:-392.942553pt;}
.y123{bottom:-219.822156pt;}
.y145{bottom:-190.759357pt;}
.y144{bottom:-177.731414pt;}
.y143{bottom:-164.763457pt;}
.y142{bottom:-151.735514pt;}
.y141{bottom:-138.707200pt;}
.y140{bottom:-125.740259pt;}
.y13f{bottom:-112.712317pt;}
.y13e{bottom:-96.700371pt;}
.y13d{bottom:-71.800249pt;}
.y13c{bottom:-59.989833pt;}
.y14e{bottom:-50.589772pt;}
.y13b{bottom:-48.300873pt;}
.y13a{bottom:-36.612217pt;}
.y139{bottom:-24.923257pt;}
.y138{bottom:-13.173113pt;}
.y0{bottom:0.000000pt;}
.y137{bottom:5.030062pt;}
.y131{bottom:5.494901pt;}
.y152{bottom:6.153593pt;}
.y19{bottom:13.168686pt;}
.y136{bottom:18.728007pt;}
.y151{bottom:18.876628pt;}
.y130{bottom:19.131844pt;}
.y48{bottom:28.346667pt;}
.y14a{bottom:89.592000pt;}
.y179{bottom:91.696000pt;}
.y47{bottom:92.108000pt;}
.y17{bottom:93.018667pt;}
.y180{bottom:95.282667pt;}
.y7f{bottom:95.681333pt;}
.y1b3{bottom:97.953333pt;}
.y119{bottom:102.922667pt;}
.y1e6{bottom:104.182667pt;}
.y149{bottom:106.688000pt;}
.y178{bottom:108.433333pt;}
.y46{bottom:108.844000pt;}
.y16{bottom:108.920000pt;}
.y158{bottom:109.960000pt;}
.y17f{bottom:112.020000pt;}
.y7e{bottom:112.418667pt;}
.y1b2{bottom:113.294667pt;}
.y1e5{bottom:119.525333pt;}
.y118{bottom:119.660000pt;}
.y148{bottom:123.784000pt;}
.y15{bottom:124.820000pt;}
.y177{bottom:125.170667pt;}
.y45{bottom:125.581333pt;}
.yb2{bottom:125.968000pt;}
.y157{bottom:127.054667pt;}
.y1b1{bottom:128.637333pt;}
.y17e{bottom:128.757333pt;}
.y7d{bottom:129.156000pt;}
.y1e4{bottom:134.868000pt;}
.y117{bottom:136.397333pt;}
.y14{bottom:140.720000pt;}
.y147{bottom:140.880000pt;}
.y176{bottom:141.908000pt;}
.y44{bottom:142.318667pt;}
.yb0{bottom:142.705333pt;}
.y1b0{bottom:143.980000pt;}
.y156{bottom:144.150667pt;}
.y17d{bottom:145.494667pt;}
.y7c{bottom:145.893333pt;}
.yb1{bottom:147.526667pt;}
.y116{bottom:153.134667pt;}
.y13{bottom:156.621333pt;}
.y146{bottom:157.976000pt;}
.y175{bottom:158.645333pt;}
.y43{bottom:159.056000pt;}
.y1af{bottom:159.322667pt;}
.yae{bottom:159.442667pt;}
.y155{bottom:161.246667pt;}
.y17c{bottom:162.232000pt;}
.y7b{bottom:162.630667pt;}
.yaf{bottom:164.264000pt;}
.y1e3{bottom:169.604000pt;}
.y115{bottom:169.872000pt;}
.y12{bottom:172.521333pt;}
.y1ae{bottom:174.665333pt;}
.y174{bottom:175.382667pt;}
.y42{bottom:175.793333pt;}
.yad{bottom:176.180000pt;}
.y132{bottom:177.913333pt;}
.y154{bottom:178.342667pt;}
.y17b{bottom:178.969333pt;}
.y7a{bottom:179.368000pt;}
.y1e2{bottom:184.946667pt;}
.y114{bottom:186.609333pt;}
.y11{bottom:188.421333pt;}
.ye4{bottom:189.729333pt;}
.y1ad{bottom:190.008000pt;}
.y173{bottom:192.120000pt;}
.yac{bottom:192.917333pt;}
.y153{bottom:195.438667pt;}
.y79{bottom:196.105333pt;}
.y41{bottom:196.516000pt;}
.y17a{bottom:199.690667pt;}
.y1e1{bottom:200.289333pt;}
.y113{bottom:203.346667pt;}
.y10{bottom:204.322667pt;}
.y1ac{bottom:205.350667pt;}
.ye3{bottom:206.466667pt;}
.y172{bottom:208.857333pt;}
.yab{bottom:209.654667pt;}
.y78{bottom:212.841333pt;}
.y14b{bottom:215.376189pt;}
.y1e0{bottom:215.632000pt;}
.y112{bottom:220.084000pt;}
.y1ab{bottom:220.693333pt;}
.ye2{bottom:223.204000pt;}
.y171{bottom:225.594667pt;}
.yaa{bottom:226.392000pt;}
.y77{bottom:229.578667pt;}
.y1df{bottom:230.974667pt;}
.y1aa{bottom:236.036000pt;}
.ye1{bottom:239.940000pt;}
.ya9{bottom:240.702667pt;}
.y170{bottom:242.332000pt;}
.ya8{bottom:243.129333pt;}
.y76{bottom:246.316000pt;}
.y1a9{bottom:251.377333pt;}
.y111{bottom:255.758667pt;}
.ye0{bottom:256.677333pt;}
.y16f{bottom:259.069333pt;}
.ya6{bottom:259.866667pt;}
.y1de{bottom:261.658667pt;}
.y75{bottom:263.053333pt;}
.y40{bottom:263.316000pt;}
.ya7{bottom:264.688000pt;}
.yf{bottom:265.668000pt;}
.y1a8{bottom:266.720000pt;}
.y110{bottom:268.377333pt;}
.ydf{bottom:273.414667pt;}
.y16e{bottom:275.806667pt;}
.ya5{bottom:276.604000pt;}
.y1dd{bottom:277.001333pt;}
.y74{bottom:279.790667pt;}
.y10f{bottom:280.997333pt;}
.ye{bottom:281.568000pt;}
.y1a7{bottom:282.062667pt;}
.yde{bottom:290.152000pt;}
.y1dc{bottom:292.344000pt;}
.y16d{bottom:292.544000pt;}
.ya3{bottom:293.341333pt;}
.y10e{bottom:293.616000pt;}
.y73{bottom:296.528000pt;}
.y3f{bottom:296.552000pt;}
.y1a6{bottom:297.405333pt;}
.yd{bottom:297.469333pt;}
.ya4{bottom:298.162667pt;}
.ydd{bottom:306.889333pt;}
.y1db{bottom:307.686667pt;}
.y16c{bottom:309.280000pt;}
.ya2{bottom:310.077333pt;}
.y10d{bottom:312.425333pt;}
.y1a5{bottom:312.748000pt;}
.y72{bottom:313.265333pt;}
.yc{bottom:313.369333pt;}
.y3e{bottom:313.846667pt;}
.y1da{bottom:323.029333pt;}
.ydc{bottom:323.626667pt;}
.y150{bottom:323.949479pt;}
.y10c{bottom:325.044000pt;}
.y16b{bottom:326.017333pt;}
.ya1{bottom:326.814667pt;}
.y1a4{bottom:328.090667pt;}
.y71{bottom:330.002667pt;}
.y3d{bottom:331.141333pt;}
.y14f{bottom:336.729428pt;}
.y10b{bottom:337.664000pt;}
.y1d9{bottom:338.372000pt;}
.yb{bottom:338.568000pt;}
.y16a{bottom:342.754667pt;}
.y1a3{bottom:343.433333pt;}
.ya0{bottom:343.552000pt;}
.ydb{bottom:344.349333pt;}
.y70{bottom:346.740000pt;}
.y3c{bottom:348.437333pt;}
.y10a{bottom:350.282667pt;}
.y12f{bottom:352.024062pt;}
.y1d8{bottom:353.714667pt;}
.ya{bottom:354.469333pt;}
.y1a2{bottom:358.776000pt;}
.y169{bottom:359.492000pt;}
.yda{bottom:362.282667pt;}
.y109{bottom:362.902667pt;}
.y6f{bottom:363.477333pt;}
.y9f{bottom:364.274667pt;}
.y12e{bottom:365.053259pt;}
.y3b{bottom:365.732000pt;}
.y1d7{bottom:369.056000pt;}
.y1a1{bottom:374.117333pt;}
.y134{bottom:374.206418pt;}
.y108{bottom:375.521333pt;}
.y168{bottom:376.229333pt;}
.y12d{bottom:378.081201pt;}
.y9{bottom:378.338667pt;}
.y6e{bottom:380.214667pt;}
.y133{bottom:380.720487pt;}
.y3a{bottom:383.028000pt;}
.y1d6{bottom:384.398667pt;}
.y107{bottom:388.141333pt;}
.y1a0{bottom:389.460000pt;}
.y12c{bottom:391.048142pt;}
.yd9{bottom:392.170667pt;}
.y167{bottom:392.966667pt;}
.y9e{bottom:394.162667pt;}
.y8{bottom:394.240000pt;}
.y6d{bottom:396.952000pt;}
.y1d5{bottom:399.741333pt;}
.y39{bottom:400.322667pt;}
.y106{bottom:400.760000pt;}
.y12b{bottom:404.076084pt;}
.y19f{bottom:404.802667pt;}
.yd8{bottom:408.908000pt;}
.y166{bottom:409.704000pt;}
.y7{bottom:410.140000pt;}
.y9d{bottom:410.900000pt;}
.y105{bottom:413.380000pt;}
.y6c{bottom:413.689333pt;}
.y1d4{bottom:415.084000pt;}
.y38{bottom:417.617333pt;}
.y12a{bottom:420.088827pt;}
.y19e{bottom:420.145333pt;}
.yd7{bottom:425.645333pt;}
.y6{bottom:426.040000pt;}
.y165{bottom:426.441333pt;}
.y9c{bottom:427.637333pt;}
.y6b{bottom:430.426667pt;}
.y104{bottom:432.401333pt;}
.y37{bottom:434.913333pt;}
.y19d{bottom:435.488000pt;}
.y5{bottom:441.941333pt;}
.yd6{bottom:442.382667pt;}
.y164{bottom:443.178667pt;}
.y9b{bottom:444.374667pt;}
.y129{bottom:445.292721pt;}
.y1d3{bottom:445.769333pt;}
.y6a{bottom:447.164000pt;}
.y19c{bottom:450.830667pt;}
.y36{bottom:452.208000pt;}
.y4{bottom:457.841333pt;}
.y128{bottom:458.320664pt;}
.yd5{bottom:459.118667pt;}
.y163{bottom:459.916000pt;}
.y99{bottom:461.112000pt;}
.y103{bottom:461.769333pt;}
.y69{bottom:463.901333pt;}
.y9a{bottom:465.933333pt;}
.y19b{bottom:466.173333pt;}
.y35{bottom:469.502667pt;}
.y127{bottom:471.288134pt;}
.y3{bottom:473.741333pt;}
.y1d2{bottom:476.454667pt;}
.y162{bottom:476.653333pt;}
.y98{bottom:477.849333pt;}
.y102{bottom:478.865333pt;}
.yd4{bottom:479.841333pt;}
.y68{bottom:480.638667pt;}
.y19a{bottom:481.516000pt;}
.y126{bottom:484.316077pt;}
.y34{bottom:486.798667pt;}
.y2{bottom:489.642667pt;}
.y1d1{bottom:491.797333pt;}
.y97{bottom:492.160000pt;}
.y161{bottom:493.390667pt;}
.y96{bottom:494.586667pt;}
.y199{bottom:496.858667pt;}
.y125{bottom:497.344019pt;}
.y67{bottom:497.376000pt;}
.y33{bottom:504.093333pt;}
.y1{bottom:505.542667pt;}
.y1d0{bottom:507.138667pt;}
.y120{bottom:509.100000pt;}
.yd3{bottom:509.729333pt;}
.y160{bottom:510.128000pt;}
.y124{bottom:510.311977pt;}
.y95{bottom:511.324000pt;}
.y198{bottom:512.200000pt;}
.y101{bottom:512.425333pt;}
.y66{bottom:514.113333pt;}
.y32{bottom:521.389333pt;}
.y1cf{bottom:522.481333pt;}
.y100{bottom:525.045333pt;}
.yd2{bottom:526.466667pt;}
.y15f{bottom:526.865333pt;}
.y197{bottom:527.542667pt;}
.y94{bottom:528.061333pt;}
.y65{bottom:530.850667pt;}
.y1ce{bottom:537.824000pt;}
.y31{bottom:538.684000pt;}
.y196{bottom:542.885333pt;}
.yd1{bottom:543.204000pt;}
.y15e{bottom:543.602667pt;}
.yff{bottom:544.452000pt;}
.y93{bottom:544.798667pt;}
.y122{bottom:547.326816pt;}
.y64{bottom:547.588000pt;}
.y1cd{bottom:553.166667pt;}
.y121{bottom:553.840884pt;}
.y30{bottom:555.978667pt;}
.y195{bottom:558.228000pt;}
.yd0{bottom:559.941333pt;}
.y15d{bottom:560.340000pt;}
.y63{bottom:564.325333pt;}
.yfe{bottom:565.465333pt;}
.y92{bottom:565.521333pt;}
.y1cc{bottom:568.509333pt;}
.yfd{bottom:572.772000pt;}
.y2f{bottom:573.274667pt;}
.y194{bottom:573.570667pt;}
.ycf{bottom:576.678667pt;}
.y15c{bottom:577.077333pt;}
.y62{bottom:581.062667pt;}
.y1cb{bottom:583.852000pt;}
.y193{bottom:588.913333pt;}
.y2e{bottom:590.569333pt;}
.yce{bottom:593.416000pt;}
.y15b{bottom:593.814667pt;}
.y91{bottom:595.409333pt;}
.y61{bottom:597.800000pt;}
.y1ca{bottom:599.194667pt;}
.yfc{bottom:601.092000pt;}
.y192{bottom:604.256000pt;}
.y2d{bottom:607.864000pt;}
.y15a{bottom:610.552000pt;}
.y90{bottom:612.145333pt;}
.ycd{bottom:614.138667pt;}
.y60{bottom:614.537333pt;}
.yfa{bottom:615.702667pt;}
.y191{bottom:619.598667pt;}
.y2c{bottom:625.160000pt;}
.y159{bottom:627.289333pt;}
.y8e{bottom:628.882667pt;}
.y1c9{bottom:629.878667pt;}
.yfb{bottom:630.314667pt;}
.y5f{bottom:631.274667pt;}
.y8f{bottom:633.705333pt;}
.y18f{bottom:634.940000pt;}
.y190{bottom:634.941333pt;}
.y2b{bottom:642.454667pt;}
.ycc{bottom:644.026667pt;}
.y1c8{bottom:645.221333pt;}
.y8d{bottom:645.620000pt;}
.y5e{bottom:648.012000pt;}
.y18e{bottom:650.282667pt;}
.yf9{bottom:651.329333pt;}
.y2a{bottom:659.750667pt;}
.y1c7{bottom:660.564000pt;}
.ycb{bottom:660.764000pt;}
.y5d{bottom:664.749333pt;}
.y14d{bottom:665.147113pt;}
.y18d{bottom:665.625333pt;}
.yf7{bottom:665.941333pt;}
.y8c{bottom:666.342667pt;}
.y14c{bottom:671.224628pt;}
.y1c6{bottom:675.906667pt;}
.y29{bottom:677.045333pt;}
.yc9{bottom:677.501333pt;}
.yf8{bottom:680.553333pt;}
.y18c{bottom:680.968000pt;}
.y5c{bottom:681.485333pt;}
.yca{bottom:682.322667pt;}
.y1c5{bottom:691.249333pt;}
.yc8{bottom:691.812000pt;}
.yc7{bottom:694.238667pt;}
.y8b{bottom:696.230667pt;}
.y18b{bottom:696.310667pt;}
.y5b{bottom:698.222667pt;}
.yf6{bottom:701.566667pt;}
.y1c4{bottom:706.592000pt;}
.yc6{bottom:710.976000pt;}
.y28{bottom:711.077333pt;}
.y18a{bottom:711.653333pt;}
.y8a{bottom:712.968000pt;}
.y5a{bottom:714.960000pt;}
.yf5{bottom:716.178667pt;}
.y1c3{bottom:721.934667pt;}
.y27{bottom:725.424000pt;}
.yc5{bottom:727.713333pt;}
.y88{bottom:729.705333pt;}
.yf2{bottom:730.790667pt;}
.y189{bottom:730.981333pt;}
.y59{bottom:731.697333pt;}
.y89{bottom:734.526667pt;}
.y1c2{bottom:737.277333pt;}
.y26{bottom:739.769333pt;}
.y25{bottom:743.628000pt;}
.yc3{bottom:744.450667pt;}
.yf4{bottom:745.402667pt;}
.y87{bottom:746.442667pt;}
.y58{bottom:748.434667pt;}
.yc4{bottom:749.272000pt;}
.y1c1{bottom:752.620000pt;}
.y24{bottom:754.116000pt;}
.yf3{bottom:760.014667pt;}
.y188{bottom:760.869333pt;}
.yc2{bottom:761.186667pt;}
.y86{bottom:763.180000pt;}
.y57{bottom:765.172000pt;}
.y1c0{bottom:767.961333pt;}
.y23{bottom:772.320000pt;}
.yc0{bottom:777.924000pt;}
.yf1{bottom:781.028000pt;}
.y56{bottom:781.909333pt;}
.yc1{bottom:782.746667pt;}
.y22{bottom:782.809333pt;}
.y1bf{bottom:783.304000pt;}
.y85{bottom:783.902667pt;}
.y187{bottom:784.460000pt;}
.ybe{bottom:794.661333pt;}
.yef{bottom:795.640000pt;}
.y21{bottom:797.154667pt;}
.y55{bottom:798.646667pt;}
.ybf{bottom:799.484000pt;}
.y186{bottom:800.081333pt;}
.yf0{bottom:810.252000pt;}
.ybd{bottom:811.398667pt;}
.y20{bottom:811.501333pt;}
.y84{bottom:813.790667pt;}
.y1be{bottom:813.989333pt;}
.y54{bottom:815.384000pt;}
.y185{bottom:823.673333pt;}
.ybc{bottom:828.136000pt;}
.y1bd{bottom:829.332000pt;}
.y1f{bottom:829.705333pt;}
.y83{bottom:830.528000pt;}
.yee{bottom:831.265333pt;}
.y53{bottom:832.121333pt;}
.y1bc{bottom:844.674667pt;}
.ybb{bottom:844.873333pt;}
.yed{bottom:845.877333pt;}
.yeb{bottom:846.156000pt;}
.y82{bottom:847.265333pt;}
.y11f{bottom:848.460000pt;}
.y52{bottom:848.858667pt;}
.y1bb{bottom:860.017333pt;}
.yec{bottom:860.489333pt;}
.yba{bottom:861.610667pt;}
.y11e{bottom:865.197333pt;}
.y51{bottom:865.596000pt;}
.y81{bottom:867.986667pt;}
.y1e{bottom:869.152000pt;}
.y184{bottom:870.856000pt;}
.y1ba{bottom:875.360000pt;}
.yb9{bottom:878.348000pt;}
.y11d{bottom:881.934667pt;}
.yea{bottom:882.058667pt;}
.y50{bottom:882.333333pt;}
.y1d{bottom:885.889333pt;}
.y80{bottom:885.920000pt;}
.y183{bottom:886.477333pt;}
.ye9{bottom:889.365333pt;}
.y1b9{bottom:890.702667pt;}
.yb8{bottom:895.085333pt;}
.y11c{bottom:898.672000pt;}
.y4f{bottom:899.070667pt;}
.y182{bottom:902.100000pt;}
.y1b8{bottom:906.044000pt;}
.yb6{bottom:911.822667pt;}
.y11b{bottom:915.409333pt;}
.y4e{bottom:915.808000pt;}
.yb7{bottom:916.645333pt;}
.ye8{bottom:917.685333pt;}
.y181{bottom:917.721333pt;}
.y1c{bottom:921.372000pt;}
.y1b7{bottom:921.386667pt;}
.ye7{bottom:924.990667pt;}
.yb5{bottom:928.560000pt;}
.y4d{bottom:932.545333pt;}
.y11a{bottom:936.132000pt;}
.y1b6{bottom:936.729333pt;}
.yb4{bottom:945.297333pt;}
.y1b{bottom:946.478667pt;}
.y4c{bottom:949.282667pt;}
.y1b5{bottom:952.072000pt;}
.ye6{bottom:953.310667pt;}
.yb3{bottom:962.034667pt;}
.y4b{bottom:966.020000pt;}
.y1b4{bottom:967.414667pt;}
.y1a{bottom:971.584000pt;}
.y4a{bottom:982.757333pt;}
.ye5{bottom:984.073333pt;}
.y18{bottom:1010.240000pt;}
.y49{bottom:1038.548000pt;}
.h28{height:21.866447pt;}
.h27{height:22.250069pt;}
.h9{height:23.209028pt;}
.h1d{height:23.437135pt;}
.h1c{height:23.848313pt;}
.h16{height:24.760382pt;}
.h24{height:26.664727pt;}
.h23{height:26.896594pt;}
.h25{height:26.897811pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h29{height:27.456366pt;}
.h2a{height:27.938056pt;}
.h13{height:28.023859pt;}
.h20{height:29.269725pt;}
.h15{height:29.397999pt;}
.h1e{height:29.428583pt;}
.h1a{height:29.499005pt;}
.h1f{height:29.686729pt;}
.h21{height:29.944874pt;}
.h19{height:30.732706pt;}
.ha{height:30.945242pt;}
.h11{height:31.157778pt;}
.he{height:33.186336pt;}
.hb{height:34.574438pt;}
.hc{height:34.813542pt;}
.hd{height:35.052646pt;}
.h12{height:36.873667pt;}
.hf{height:38.415786pt;}
.h10{height:38.681455pt;}
.h6{height:38.947124pt;}
.h18{height:44.436941pt;}
.h4{height:45.272024pt;}
.h14{height:47.314526pt;}
.h8{height:48.481423pt;}
.h17{height:64.034876pt;}
.h7{height:69.148877pt;}
.h5{height:91.114522pt;}
.h1b{height:318.346593pt;}
.h22{height:329.857987pt;}
.h26{height:625.216344pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:176.724208pt;}
.w5{width:315.396200pt;}
.w3{width:332.957793pt;}
.w4{width:371.035189pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x72{left:-164.928993pt;}
.x77{left:-145.447393pt;}
.x8d{left:-134.461693pt;}
.x73{left:-32.636510pt;}
.x7a{left:-13.155153pt;}
.x74{left:-11.085233pt;}
.x0{left:0.000000pt;}
.x7b{left:8.393718pt;}
.x1{left:47.621333pt;}
.x2{left:51.605861pt;}
.x6c{left:72.929333pt;}
.x66{left:76.660000pt;}
.x6d{left:87.094667pt;}
.x6e{left:88.273333pt;}
.x67{left:92.596000pt;}
.x69{left:93.594667pt;}
.x6a{left:94.921333pt;}
.x8e{left:147.607396pt;}
.x68{left:154.340000pt;}
.x76{left:155.787315pt;}
.x79{left:175.877709pt;}
.xbd{left:192.157333pt;}
.xcb{left:211.989333pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x7f{left:231.840000pt;}
.x4f{left:232.949333pt;}
.x4{left:239.924000pt;}
.x8b{left:243.593333pt;}
.x62{left:248.004000pt;}
.xd{left:250.204000pt;}
.x50{left:255.636000pt;}
.x99{left:257.193333pt;}
.x6b{left:267.005333pt;}
.x9a{left:270.476000pt;}
.x43{left:272.292000pt;}
.x6{left:273.922667pt;}
.x7c{left:276.801333pt;}
.x91{left:277.717333pt;}
.x80{left:278.676000pt;}
.xc8{left:279.680000pt;}
.x90{left:285.329333pt;}
.x3a{left:286.641333pt;}
.x92{left:287.549333pt;}
.x81{left:288.508000pt;}
.x8c{left:289.801333pt;}
.xae{left:291.484000pt;}
.x97{left:294.176000pt;}
.x5a{left:298.089333pt;}
.x29{left:299.112000pt;}
.x5b{left:303.801333pt;}
.xaf{left:304.768000pt;}
.x2a{left:305.754667pt;}
.xe{left:309.009333pt;}
.x39{left:311.998667pt;}
.x8f{left:314.599107pt;}
.xf{left:315.652000pt;}
.x44{left:318.830667pt;}
.xbe{left:319.789333pt;}
.x6f{left:320.893333pt;}
.xb5{left:323.564000pt;}
.x3b{left:326.646667pt;}
.x9f{left:331.136000pt;}
.x75{left:333.982607pt;}
.x3c{left:336.152000pt;}
.x98{left:340.384000pt;}
.x55{left:341.642667pt;}
.xa0{left:344.418667pt;}
.x10{left:350.104000pt;}
.x11{left:356.746667pt;}
.x53{left:359.592000pt;}
.x52{left:360.544000pt;}
.xbf{left:361.893333pt;}
.x70{left:364.118667pt;}
.x54{left:365.642667pt;}
.x2d{left:367.882667pt;}
.x82{left:368.853333pt;}
.xb6{left:369.769333pt;}
.x48{left:370.677333pt;}
.x65{left:371.788000pt;}
.x78{left:372.884927pt;}
.x4e{left:375.561333pt;}
.x49{left:376.726667pt;}
.x83{left:378.686667pt;}
.x2e{left:381.166667pt;}
.x14{left:385.544000pt;}
.x5c{left:389.944000pt;}
.x15{left:392.185333pt;}
.x5d{left:398.148000pt;}
.x20{left:403.802667pt;}
.x71{left:410.306667pt;}
.x21{left:417.086667pt;}
.x22{left:420.473333pt;}
.x3d{left:421.409333pt;}
.x33{left:423.516000pt;}
.x24{left:424.476000pt;}
.x3e{left:429.613333pt;}
.x23{left:433.757333pt;}
.x34{left:436.800000pt;}
.x25{left:437.758667pt;}
.xa5{left:439.566667pt;}
.x18{left:441.404000pt;}
.x56{left:442.460000pt;}
.x96{left:444.206667pt;}
.xbc{left:447.146667pt;}
.x19{left:448.045333pt;}
.xb1{left:449.762667pt;}
.x1a{left:451.433333pt;}
.xa6{left:452.850667pt;}
.xa7{left:456.234667pt;}
.x1b{left:458.074667pt;}
.xb2{left:463.046667pt;}
.xa8{left:469.517333pt;}
.x1c{left:475.134667pt;}
.x88{left:476.080000pt;}
.x35{left:477.530667pt;}
.x1d{left:481.776000pt;}
.x2f{left:485.748000pt;}
.x36{left:488.456000pt;}
.x4a{left:490.125333pt;}
.x4b{left:496.176000pt;}
.x30{left:499.032000pt;}
.x31{left:502.418667pt;}
.xc1{left:503.801333pt;}
.x37{left:505.116000pt;}
.xac{left:506.544000pt;}
.x2b{left:509.969333pt;}
.x38{left:511.165333pt;}
.x32{left:515.702667pt;}
.x51{left:517.684000pt;}
.x16{left:520.573333pt;}
.x2c{left:523.252000pt;}
.xb{left:524.782667pt;}
.x17{left:527.216000pt;}
.xb7{left:528.805333pt;}
.xad{left:536.476000pt;}
.xc{left:537.597333pt;}
.xb8{left:542.089333pt;}
.x41{left:544.536000pt;}
.x94{left:547.725333pt;}
.x42{left:552.740000pt;}
.x95{left:557.558667pt;}
.xb3{left:562.458667pt;}
.x9{left:564.738667pt;}
.xc6{left:567.462667pt;}
.x7{left:570.261333pt;}
.x3f{left:571.944000pt;}
.xb4{left:575.742667pt;}
.x26{left:577.618667pt;}
.x40{left:580.149333pt;}
.x1e{left:588.857333pt;}
.xc7{left:591.373333pt;}
.x93{left:593.464000pt;}
.xa9{left:595.080000pt;}
.x12{left:596.768000pt;}
.x84{left:600.176000pt;}
.x1f{left:602.141333pt;}
.x13{left:603.409333pt;}
.xa{left:606.318667pt;}
.xaa{left:608.364000pt;}
.x8{left:611.500000pt;}
.x85{left:612.990667pt;}
.xa3{left:614.798667pt;}
.x45{left:616.194667pt;}
.x46{left:622.969333pt;}
.xab{left:624.901333pt;}
.x47{left:636.253333pt;}
.xbb{left:638.626667pt;}
.x60{left:640.361333pt;}
.x86{left:647.482667pt;}
.x61{left:648.566667pt;}
.x63{left:651.153333pt;}
.x4c{left:654.508000pt;}
.x87{left:655.457333pt;}
.xc2{left:656.748000pt;}
.x27{left:657.705333pt;}
.x64{left:659.357333pt;}
.xa4{left:662.188000pt;}
.x4d{left:663.536000pt;}
.xc9{left:665.650667pt;}
.x28{left:670.988000pt;}
.x89{left:672.093333pt;}
.xc4{left:677.608000pt;}
.xc3{left:680.658667pt;}
.x7d{left:685.805333pt;}
.xca{left:689.561333pt;}
.x5e{left:695.381333pt;}
.xb9{left:696.500000pt;}
.xb0{left:699.069333pt;}
.xc0{left:702.742667pt;}
.x5f{left:704.404000pt;}
.x9b{left:710.360000pt;}
.xba{left:720.410667pt;}
.x9c{left:723.644000pt;}
.xc5{left:726.068000pt;}
.x9d{left:726.974667pt;}
.xa1{left:727.905333pt;}
.x57{left:730.044000pt;}
.x58{left:736.094667pt;}
.x59{left:737.833333pt;}
.x9e{left:740.257333pt;}
.xa2{left:741.189333pt;}
.x8a{left:742.772000pt;}
.x7e{left:744.266667pt;}
}




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