
    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_5603699723265e0b11df0278.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.638000;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_5c92b7403e1f2ef44d41108e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f66c01e903550e6e6144f419.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4724a965f49415787cc499f9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.736000;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_673fe8c49f0b0680284419ed.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.660000;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_6f151561a78cb30e4e227b87.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.885000;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_82fa960228449074030168cf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.014000;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_e8c6d76df0b107e23b89daa8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666000;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_6e39d2bea956b0000e2a5d01.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1eacb26120e4824ab70d7fe3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000977;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_e243bf84caadff917cb738ea.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.008301;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_a63634d3d311a3225f343af6.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_12ae8ae485f70dea2f6e91cd.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000977;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_af1e8ef83fa11eb052dec6d8.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.008301;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_a63634d3d311a3225f343af6.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_7ce9115bacbe95faeca8b161.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000977;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_284f3e96e5b42ecc598ce86a.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.008301;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_a63634d3d311a3225f343af6.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_7ce9115bacbe95faeca8b161.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000977;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_284f3e96e5b42ecc598ce86a.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.008301;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_a63634d3d311a3225f343af6.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_f62114ddb5598d1549ca7fe8.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.000977;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_e018cfec5558cfd00124a76f.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.008301;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;}
.m6{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);}
.m1f{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);}
.m28{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);}
.m12{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);}
.m27{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);}
.m11{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);}
.m10{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);}
.ma{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);}
.me{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);}
.mf{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);}
.m2a{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);}
.m8{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);}
.m20{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.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);}
.m5{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);}
.m4{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);}
.m25{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);}
.m7{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);}
.m1a{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m16{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);}
.m29{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);}
.m18{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);}
.m26{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);}
.m2{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m13{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m2b{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);}
.m3{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);}
.m2c{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);}
.m24{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);}
.m19{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);}
.m9{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);}
.m17{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);}
.m14{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);}
.m1e{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);}
.m1{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);}
.mb{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;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls7b{letter-spacing:-0.243486px;}
.ls3b{letter-spacing:-0.183065px;}
.ls81{letter-spacing:-0.178556px;}
.ls31{letter-spacing:-0.150300px;}
.ls2d{letter-spacing:-0.120240px;}
.ls78{letter-spacing:-0.119038px;}
.ls84{letter-spacing:-0.108216px;}
.ls80{letter-spacing:-0.102805px;}
.ls7d{letter-spacing:-0.097394px;}
.ls53{letter-spacing:-0.094148px;}
.ls82{letter-spacing:-0.091984px;}
.ls26{letter-spacing:-0.090972px;}
.ls86{letter-spacing:-0.086573px;}
.ls2a{letter-spacing:-0.084168px;}
.ls6d{letter-spacing:-0.081875px;}
.ls75{letter-spacing:-0.081162px;}
.ls29{letter-spacing:-0.078156px;}
.ls76{letter-spacing:-0.075751px;}
.ls39{letter-spacing:-0.074980px;}
.ls7c{letter-spacing:-0.070340px;}
.ls50{letter-spacing:-0.067996px;}
.ls55{letter-spacing:-0.057535px;}
.ls74{letter-spacing:-0.054108px;}
.ls56{letter-spacing:-0.052304px;}
.ls2b{letter-spacing:-0.042084px;}
.ls77{letter-spacing:-0.037876px;}
.ls2e{letter-spacing:-0.036072px;}
.ls73{letter-spacing:-0.032465px;}
.ls7f{letter-spacing:-0.027054px;}
.ls2f{letter-spacing:-0.024048px;}
.ls7e{letter-spacing:-0.021643px;}
.ls51{letter-spacing:-0.020922px;}
.ls70{letter-spacing:-0.019440px;}
.ls7a{letter-spacing:-0.016232px;}
.ls54{letter-spacing:-0.015691px;}
.ls72{letter-spacing:-0.014580px;}
.ls27{letter-spacing:-0.014364px;}
.ls4f{letter-spacing:-0.014094px;}
.ls6e{letter-spacing:-0.012928px;}
.ls2c{letter-spacing:-0.012024px;}
.ls79{letter-spacing:-0.010822px;}
.ls6f{letter-spacing:-0.009720px;}
.ls83{letter-spacing:-0.005411px;}
.ls52{letter-spacing:-0.005230px;}
.ls71{letter-spacing:-0.004860px;}
.ls3a{letter-spacing:-0.004166px;}
.ls9{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000608px;}
.ls45{letter-spacing:0.004698px;}
.ls5a{letter-spacing:0.004860px;}
.ls69{letter-spacing:0.005411px;}
.ls3e{letter-spacing:0.009396px;}
.ls61{letter-spacing:0.009720px;}
.ls1f{letter-spacing:0.010800px;}
.ls68{letter-spacing:0.010822px;}
.ls4a{letter-spacing:0.015691px;}
.ls1e{letter-spacing:0.016200px;}
.ls64{letter-spacing:0.016232px;}
.ls41{letter-spacing:0.018792px;}
.ls5c{letter-spacing:0.019440px;}
.ls66{letter-spacing:0.021643px;}
.ls3d{letter-spacing:0.023490px;}
.ls60{letter-spacing:0.024300px;}
.ls49{letter-spacing:0.026152px;}
.ls5b{letter-spacing:0.029160px;}
.ls21{letter-spacing:0.030060px;}
.ls1c{letter-spacing:0.032400px;}
.ls67{letter-spacing:0.032465px;}
.ls3c{letter-spacing:0.032886px;}
.ls63{letter-spacing:0.034020px;}
.ls48{letter-spacing:0.036613px;}
.ls6c{letter-spacing:0.037876px;}
.ls5e{letter-spacing:0.038880px;}
.ls28{letter-spacing:0.042084px;}
.ls44{letter-spacing:0.042282px;}
.ls1d{letter-spacing:0.043200px;}
.ls6b{letter-spacing:0.043286px;}
.ls43{letter-spacing:0.046980px;}
.ls57{letter-spacing:0.047401px;}
.ls1b{letter-spacing:0.048600px;}
.ls18{letter-spacing:0.052668px;}
.ls20{letter-spacing:0.054108px;}
.ls35{letter-spacing:0.054152px;}
.ls47{letter-spacing:0.057535px;}
.ls6a{letter-spacing:0.059519px;}
.ls3f{letter-spacing:0.061074px;}
.ls4b{letter-spacing:0.062765px;}
.ls65{letter-spacing:0.064930px;}
.ls23{letter-spacing:0.072144px;}
.ls46{letter-spacing:0.078457px;}
.ls22{letter-spacing:0.084168px;}
.ls30{letter-spacing:0.096192px;}
.ls62{letter-spacing:0.102060px;}
.ls5d{letter-spacing:0.111780px;}
.ls40{letter-spacing:0.122148px;}
.ls38{letter-spacing:0.130761px;}
.ls5f{letter-spacing:0.131220px;}
.ls42{letter-spacing:0.136242px;}
.ls59{letter-spacing:0.155131px;}
.ls37{letter-spacing:0.158291px;}
.ls58{letter-spacing:0.163750px;}
.ls36{letter-spacing:0.166622px;}
.ls1a{letter-spacing:0.172368px;}
.ls19{letter-spacing:0.181944px;}
.ls85{letter-spacing:0.319237px;}
.lsa{letter-spacing:1.275394px;}
.ls4{letter-spacing:1.861130px;}
.ls2{letter-spacing:2.983200px;}
.ls1{letter-spacing:2.989200px;}
.ls5{letter-spacing:10.461300px;}
.ls8{letter-spacing:11.954850px;}
.ls95{letter-spacing:13.163969px;}
.ls8e{letter-spacing:13.240665px;}
.ls8d{letter-spacing:13.254542px;}
.ls8f{letter-spacing:13.262566px;}
.ls91{letter-spacing:13.289530px;}
.ls92{letter-spacing:13.359924px;}
.ls33{letter-spacing:13.444090px;}
.ls88{letter-spacing:13.448400px;}
.ls32{letter-spacing:13.450090px;}
.ls89{letter-spacing:13.454400px;}
.ls8b{letter-spacing:13.475023px;}
.ls87{letter-spacing:13.489916px;}
.ls96{letter-spacing:13.562472px;}
.ls93{letter-spacing:13.752029px;}
.lsc{letter-spacing:14.094088px;}
.ls13{letter-spacing:14.670464px;}
.ls17{letter-spacing:14.752873px;}
.ls8a{letter-spacing:14.768047px;}
.ls4d{letter-spacing:14.884124px;}
.ls12{letter-spacing:14.938766px;}
.ls15{letter-spacing:14.938941px;}
.ls4e{letter-spacing:14.943900px;}
.lsf{letter-spacing:14.944766px;}
.ls16{letter-spacing:14.944947px;}
.ls25{letter-spacing:15.063451px;}
.ls94{letter-spacing:15.926871px;}
.ls8c{letter-spacing:17.144518px;}
.lsb{letter-spacing:17.155597px;}
.ls90{letter-spacing:17.162165px;}
.lse{letter-spacing:17.900061px;}
.ls14{letter-spacing:17.923590px;}
.ls4c{letter-spacing:19.535355px;}
.ls24{letter-spacing:19.725948px;}
.ls11{letter-spacing:22.323590px;}
.ls10{letter-spacing:23.194178px;}
.ls0{letter-spacing:57.415200px;}
.ls6{letter-spacing:62.761200px;}
.ls7{letter-spacing:64.321654px;}
.ls3{letter-spacing:72.361200px;}
.ls34{letter-spacing:94.215000px;}
.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;}
}
.ws4d{word-spacing:-14.943900px;}
.ws11a{word-spacing:-13.449600px;}
.ws7f{word-spacing:-13.076100px;}
.ws56{word-spacing:-12.151944px;}
.wsa1{word-spacing:-12.150000px;}
.ws2c{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.wsa0{word-spacing:-10.936750px;}
.ws7e{word-spacing:-10.580522px;}
.ws7{word-spacing:-10.460700px;}
.wsfe{word-spacing:-3.287658px;}
.ws10b{word-spacing:-3.048556px;}
.ws118{word-spacing:-3.012710px;}
.ws74{word-spacing:-2.458908px;}
.ws115{word-spacing:-2.420928px;}
.ws78{word-spacing:-2.313331px;}
.ws4b{word-spacing:-2.211697px;}
.ws116{word-spacing:-2.205734px;}
.ws9b{word-spacing:-2.170633px;}
.ws134{word-spacing:-2.151936px;}
.ws31{word-spacing:-2.151922px;}
.ws79{word-spacing:-2.098138px;}
.ws30{word-spacing:-2.092146px;}
.ws9a{word-spacing:-2.039872px;}
.ws4{word-spacing:-1.908367px;}
.wsf0{word-spacing:-1.904602px;}
.wsa5{word-spacing:-1.853044px;}
.ws84{word-spacing:-1.793268px;}
.ws94{word-spacing:-1.788810px;}
.ws93{word-spacing:-1.778350px;}
.wsed{word-spacing:-1.753099px;}
.wsec{word-spacing:-1.742278px;}
.wsbe{word-spacing:-1.560060px;}
.ws32{word-spacing:-1.494390px;}
.wsc1{word-spacing:-1.492020px;}
.wsbf{word-spacing:-1.453140px;}
.wsc0{word-spacing:-1.443420px;}
.ws12f{word-spacing:-1.344960px;}
.ws3{word-spacing:-1.322630px;}
.ws100{word-spacing:-1.315063px;}
.wsc9{word-spacing:-1.276949px;}
.wsd7{word-spacing:-1.190376px;}
.ws88{word-spacing:-1.151010px;}
.ws8a{word-spacing:-1.136916px;}
.wsd8{word-spacing:-1.136268px;}
.ws1d{word-spacing:-1.129766px;}
.ws86{word-spacing:-1.122822px;}
.ws87{word-spacing:-1.113426px;}
.ws89{word-spacing:-1.108728px;}
.ws8e{word-spacing:-1.094634px;}
.ws23{word-spacing:-1.022170px;}
.wsa9{word-spacing:-0.956410px;}
.wse3{word-spacing:-0.903604px;}
.wsf7{word-spacing:-0.896634px;}
.wsda{word-spacing:-0.865728px;}
.wsc8{word-spacing:-0.811620px;}
.wsdb{word-spacing:-0.789977px;}
.wse6{word-spacing:-0.773744px;}
.ws96{word-spacing:-0.580579px;}
.wsb3{word-spacing:-0.534600px;}
.wsb6{word-spacing:-0.524880px;}
.wsb5{word-spacing:-0.515160px;}
.wsb4{word-spacing:-0.505440px;}
.wsb7{word-spacing:-0.486000px;}
.ws36{word-spacing:-0.478205px;}
.wsb8{word-spacing:-0.476280px;}
.ws7b{word-spacing:-0.418429px;}
.ws47{word-spacing:-0.358654px;}
.ws6b{word-spacing:-0.354708px;}
.ws62{word-spacing:-0.324648px;}
.ws120{word-spacing:-0.322790px;}
.ws90{word-spacing:-0.308596px;}
.ws54{word-spacing:-0.298878px;}
.wscc{word-spacing:-0.286772px;}
.ws24{word-spacing:-0.268992px;}
.ws5b{word-spacing:-0.263340px;}
.wsaa{word-spacing:-0.239102px;}
.wsaf{word-spacing:-0.237006px;}
.ws81{word-spacing:-0.233271px;}
.ws110{word-spacing:-0.215194px;}
.wsc5{word-spacing:-0.211021px;}
.wscd{word-spacing:-0.205610px;}
.ws34{word-spacing:-0.179327px;}
.wsc4{word-spacing:-0.165240px;}
.ws19{word-spacing:-0.161395px;}
.ws95{word-spacing:-0.135991px;}
.ws37{word-spacing:-0.119551px;}
.ws17{word-spacing:-0.107597px;}
.ws5a{word-spacing:-0.076608px;}
.ws80{word-spacing:-0.070815px;}
.wsae{word-spacing:-0.068947px;}
.ws33{word-spacing:-0.059776px;}
.ws21{word-spacing:-0.053798px;}
.ws2d{word-spacing:-0.047821px;}
.ws8{word-spacing:-0.041843px;}
.ws1{word-spacing:-0.001991px;}
.ws0{word-spacing:0.000000px;}
.ws6c{word-spacing:0.018036px;}
.ws75{word-spacing:0.036072px;}
.ws82{word-spacing:0.053798px;}
.ws40{word-spacing:0.059776px;}
.wsde{word-spacing:0.081162px;}
.wsee{word-spacing:0.086573px;}
.ws69{word-spacing:0.090180px;}
.ws9e{word-spacing:0.099378px;}
.ws6a{word-spacing:0.102204px;}
.ws83{word-spacing:0.107597px;}
.ws8f{word-spacing:0.112752px;}
.ws35{word-spacing:0.119551px;}
.ws5d{word-spacing:0.129600px;}
.ws68{word-spacing:0.132264px;}
.ws5f{word-spacing:0.135000px;}
.ws9f{word-spacing:0.135991px;}
.wsb9{word-spacing:0.136080px;}
.ws5e{word-spacing:0.145800px;}
.wsba{word-spacing:0.150660px;}
.ws22{word-spacing:0.161395px;}
.ws60{word-spacing:0.162000px;}
.ws61{word-spacing:0.167400px;}
.ws5c{word-spacing:0.178200px;}
.wsa4{word-spacing:0.179327px;}
.wsa{word-spacing:0.209214px;}
.wsa2{word-spacing:0.215194px;}
.ws2a{word-spacing:0.239102px;}
.ws12a{word-spacing:0.268992px;}
.wsc{word-spacing:0.292900px;}
.ws2e{word-spacing:0.298878px;}
.ws77{word-spacing:0.322790px;}
.wsef{word-spacing:0.346291px;}
.ws72{word-spacing:0.354708px;}
.wsa3{word-spacing:0.358654px;}
.ws2f{word-spacing:0.418429px;}
.ws109{word-spacing:0.478205px;}
.ws58{word-spacing:0.484186px;}
.wsab{word-spacing:0.537980px;}
.ws20{word-spacing:0.537984px;}
.ws132{word-spacing:0.591782px;}
.ws73{word-spacing:0.601200px;}
.ws76{word-spacing:0.645581px;}
.ws7c{word-spacing:0.657532px;}
.ws42{word-spacing:0.672307px;}
.wsff{word-spacing:0.717307px;}
.wsd0{word-spacing:0.719636px;}
.wsd1{word-spacing:0.741280px;}
.ws57{word-spacing:0.753178px;}
.wsc3{word-spacing:0.787320px;}
.wsc2{word-spacing:0.821340px;}
.ws71{word-spacing:0.835668px;}
.wsf8{word-spacing:0.836858px;}
.ws102{word-spacing:0.896634px;}
.ws1c{word-spacing:0.914573px;}
.ws29{word-spacing:0.956410px;}
.ws129{word-spacing:0.968371px;}
.ws11d{word-spacing:1.022170px;}
.ws7a{word-spacing:1.075961px;}
.ws18{word-spacing:1.075968px;}
.ws114{word-spacing:1.129766px;}
.ws107{word-spacing:1.255288px;}
.ws11e{word-spacing:1.344960px;}
.ws3e{word-spacing:1.374839px;}
.ws131{word-spacing:1.398758px;}
.wsb2{word-spacing:1.409400px;}
.wsb1{word-spacing:1.428840px;}
.wsb0{word-spacing:1.453140px;}
.ws67{word-spacing:1.472940px;}
.wsfc{word-spacing:1.613941px;}
.wscf{word-spacing:1.666526px;}
.ws1f{word-spacing:1.667750px;}
.ws92{word-spacing:1.668510px;}
.ws49{word-spacing:1.673717px;}
.ws91{word-spacing:1.715584px;}
.ws3f{word-spacing:1.733492px;}
.ws48{word-spacing:1.793268px;}
.wsce{word-spacing:1.818029px;}
.wsfa{word-spacing:1.912819px;}
.ws135{word-spacing:1.936742px;}
.ws3c{word-spacing:1.972595px;}
.ws1e{word-spacing:1.990541px;}
.wsb{word-spacing:2.008454px;}
.ws4a{word-spacing:2.032370px;}
.ws38{word-spacing:2.092146px;}
.ws41{word-spacing:2.151922px;}
.ws6f{word-spacing:2.176344px;}
.ws70{word-spacing:2.284560px;}
.wsa7{word-spacing:2.331248px;}
.wsdf{word-spacing:2.337466px;}
.wse0{word-spacing:2.359109px;}
.ws11b{word-spacing:2.474726px;}
.ws1a{word-spacing:2.582323px;}
.wsea{word-spacing:2.618827px;}
.ws8b{word-spacing:2.626182px;}
.wsfd{word-spacing:2.630126px;}
.wsc6{word-spacing:2.656703px;}
.ws8c{word-spacing:2.668464px;}
.ws8d{word-spacing:2.682558px;}
.ws106{word-spacing:2.689902px;}
.wseb{word-spacing:2.694578px;}
.wse2{word-spacing:2.791973px;}
.wse1{word-spacing:2.851492px;}
.ws14{word-spacing:2.869236px;}
.ws121{word-spacing:2.905114px;}
.ws4c{word-spacing:2.929004px;}
.ws55{word-spacing:2.988780px;}
.wsc7{word-spacing:3.051691px;}
.wse7{word-spacing:3.089567px;}
.wsac{word-spacing:3.108331px;}
.ws1b{word-spacing:3.120307px;}
.ws26{word-spacing:3.219667px;}
.ws113{word-spacing:3.224822px;}
.ws126{word-spacing:3.227904px;}
.ws9c{word-spacing:3.232412px;}
.ws9d{word-spacing:3.274255px;}
.wsd2{word-spacing:3.333053px;}
.ws112{word-spacing:3.335501px;}
.wsd3{word-spacing:3.338464px;}
.ws3a{word-spacing:3.347434px;}
.wsbc{word-spacing:3.353400px;}
.wsbd{word-spacing:3.363120px;}
.wsbb{word-spacing:3.421440px;}
.ws117{word-spacing:3.443098px;}
.ws108{word-spacing:3.466985px;}
.wsa8{word-spacing:3.526760px;}
.ws27{word-spacing:3.586536px;}
.ws25{word-spacing:3.658291px;}
.ws6e{word-spacing:3.691368px;}
.wsa6{word-spacing:3.706087px;}
.ws123{word-spacing:3.712090px;}
.wsd6{word-spacing:3.717220px;}
.ws6d{word-spacing:3.811608px;}
.wsd5{word-spacing:3.890365px;}
.ws65{word-spacing:4.022028px;}
.wsca{word-spacing:4.041868px;}
.ws4f{word-spacing:4.064741px;}
.ws66{word-spacing:4.136256px;}
.wsf3{word-spacing:4.285354px;}
.ws85{word-spacing:4.303843px;}
.ws7d{word-spacing:4.483170px;}
.ws10e{word-spacing:4.542946px;}
.wsf5{word-spacing:4.577537px;}
.ws3b{word-spacing:4.602721px;}
.wsf4{word-spacing:4.631645px;}
.ws16{word-spacing:4.734259px;}
.ws59{word-spacing:4.782048px;}
.ws101{word-spacing:4.841824px;}
.wscb{word-spacing:4.918417px;}
.wse8{word-spacing:4.945471px;}
.wse9{word-spacing:4.950882px;}
.ws53{word-spacing:5.021150px;}
.ws52{word-spacing:5.080926px;}
.ws15{word-spacing:5.110848px;}
.wsfb{word-spacing:5.140702px;}
.ws4e{word-spacing:5.200477px;}
.ws10a{word-spacing:5.260253px;}
.ws98{word-spacing:5.382123px;}
.ws99{word-spacing:5.392584px;}
.ws97{word-spacing:5.423966px;}
.ws63{word-spacing:5.446872px;}
.wsf9{word-spacing:5.499355px;}
.wsd4{word-spacing:5.556892px;}
.wsd9{word-spacing:5.583946px;}
.wse5{word-spacing:5.605589px;}
.ws10f{word-spacing:5.678682px;}
.wse4{word-spacing:5.681340px;}
.ws111{word-spacing:5.917824px;}
.wsf6{word-spacing:5.977560px;}
.ws12{word-spacing:6.067206px;}
.ws13{word-spacing:6.150892px;}
.wsdc{word-spacing:6.254885px;}
.ws64{word-spacing:6.288552px;}
.wsdd{word-spacing:6.336047px;}
.wsad{word-spacing:6.336214px;}
.ws28{word-spacing:7.113296px;}
.ws133{word-spacing:7.155187px;}
.wsf1{word-spacing:7.293758px;}
.wsf2{word-spacing:7.309991px;}
.ws51{word-spacing:7.412174px;}
.ws39{word-spacing:7.531726px;}
.ws10d{word-spacing:7.950155px;}
.ws10c{word-spacing:8.009930px;}
.ws50{word-spacing:8.249033px;}
.ws104{word-spacing:8.607686px;}
.ws10{word-spacing:8.661460px;}
.ws103{word-spacing:9.324994px;}
.ws105{word-spacing:9.564096px;}
.ws6{word-spacing:10.415642px;}
.ws2b{word-spacing:11.903615px;}
.ws127{word-spacing:13.180608px;}
.ws12b{word-spacing:13.234406px;}
.ws12c{word-spacing:13.288205px;}
.ws12e{word-spacing:13.390349px;}
.ws119{word-spacing:13.395802px;}
.ws12d{word-spacing:13.664794px;}
.ws46{word-spacing:14.884124px;}
.ws136{word-spacing:15.332544px;}
.ws9{word-spacing:15.481836px;}
.ws5{word-spacing:15.483541px;}
.wsd{word-spacing:16.142252px;}
.wse{word-spacing:16.151321px;}
.ws122{word-spacing:16.300915px;}
.ws125{word-spacing:16.354714px;}
.ws124{word-spacing:16.408512px;}
.ws128{word-spacing:16.569907px;}
.ws11c{word-spacing:16.621142px;}
.ws130{word-spacing:16.623706px;}
.ws11f{word-spacing:16.677504px;}
.wsf{word-spacing:17.699504px;}
.ws3d{word-spacing:18.470660px;}
.ws11{word-spacing:27.448877px;}
.ws43{word-spacing:1123.687181px;}
.ws44{word-spacing:1126.753690px;}
.ws45{word-spacing:1140.149491px;}
._0{margin-left:-13.879987px;}
._1{margin-left:-11.943245px;}
._16{margin-left:-7.652252px;}
._a{margin-left:-6.168857px;}
._7{margin-left:-4.698129px;}
._f{margin-left:-3.658291px;}
._5{margin-left:-2.247776px;}
._4{margin-left:-1.074985px;}
._6{width:1.091170px;}
._2{width:3.000344px;}
._45{width:5.140702px;}
._4c{width:11.154150px;}
._8{width:12.219264px;}
._46{width:13.276820px;}
._10{width:14.417971px;}
._b{width:15.912569px;}
._d{width:17.687916px;}
._e{width:19.517062px;}
._43{width:21.136865px;}
._11{width:22.307395px;}
._c{width:24.347161px;}
._48{width:25.822084px;}
._12{width:27.221990px;}
._9{width:32.637384px;}
._2e{width:34.885253px;}
._4a{width:36.164238px;}
._44{width:37.179448px;}
._15{width:40.598627px;}
._2d{width:43.813564px;}
._47{width:47.043397px;}
._3{width:54.402736px;}
._4b{width:61.868160px;}
._30{width:240.156058px;}
._31{width:322.736602px;}
._34{width:347.639136px;}
._32{width:362.776497px;}
._35{width:365.664528px;}
._37{width:374.538336px;}
._36{width:389.675697px;}
._33{width:392.945894px;}
._38{width:400.708152px;}
._39{width:456.856013px;}
._3b{width:468.691661px;}
._3f{width:515.765261px;}
._40{width:544.601203px;}
._3e{width:560.041344px;}
._3a{width:581.901163px;}
._3d{width:610.073856px;}
._1d{width:666.442822px;}
._3c{width:692.923392px;}
._1e{width:710.246477px;}
._17{width:791.266867px;}
._2a{width:842.213952px;}
._2c{width:844.742477px;}
._13{width:871.701947px;}
._2b{width:880.320888px;}
._1c{width:899.132659px;}
._1f{width:914.895590px;}
._1a{width:981.569476px;}
._1b{width:983.865139px;}
._18{width:991.665907px;}
._20{width:1001.188224px;}
._19{width:1017.811930px;}
._23{width:1047.454848px;}
._22{width:1060.904448px;}
._24{width:1063.970957px;}
._29{width:1070.695757px;}
._21{width:1074.354048px;}
._26{width:1075.968000px;}
._28{width:1077.420557px;}
._27{width:1078.926912px;}
._25{width:1090.870157px;}
._41{width:1883.295704px;}
._42{width:1947.434268px;}
._2f{width:2163.937094px;}
._49{width:2525.786700px;}
._14{width:2549.696700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(42,62,149);}
.fs7{font-size:35.865600px;}
.fsf{font-size:41.655600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs12{font-size:43.092000px;}
.fs3{font-size:45.429600px;}
.fs11{font-size:46.980000px;}
.fs4{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fsc{font-size:47.880000px;}
.fs14{font-size:48.600000px;}
.fs10{font-size:52.304400px;}
.fs9{font-size:53.798400px;}
.fse{font-size:54.000000px;}
.fs13{font-size:54.108000px;}
.fsb{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fsd{font-size:60.120000px;}
.fsa{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:148.440000px;}
.y14a{bottom:-692.459145px;}
.y172{bottom:-621.325796px;}
.y171{bottom:-603.992298px;}
.y170{bottom:-586.658800px;}
.y16f{bottom:-569.406464px;}
.y114{bottom:-562.604683px;}
.y16e{bottom:-552.072966px;}
.y16d{bottom:-534.820631px;}
.yba{bottom:-525.907050px;}
.y16c{bottom:-517.487133px;}
.y123{bottom:-505.286335px;}
.y16b{bottom:-500.153635px;}
.y16a{bottom:-482.901299px;}
.y169{bottom:-465.567801px;}
.y168{bottom:-448.315466px;}
.y167{bottom:-430.981968px;}
.y166{bottom:-413.648470px;}
.yce{bottom:-405.840273px;}
.y165{bottom:-396.396134px;}
.ycd{bottom:-386.580831px;}
.y164{bottom:-379.062636px;}
.ycc{bottom:-367.411569px;}
.y163{bottom:-361.810301px;}
.ycb{bottom:-348.152127px;}
.y162{bottom:-344.476803px;}
.yca{bottom:-328.982865px;}
.y161{bottom:-327.143305px;}
.y160{bottom:-309.890969px;}
.yc9{bottom:-309.723423px;}
.y15f{bottom:-292.557471px;}
.yc8{bottom:-285.963999px;}
.y15e{bottom:-275.223974px;}
.yc7{bottom:-262.293252px;}
.y15d{bottom:-257.971638px;}
.y15c{bottom:-240.638140px;}
.yc6{bottom:-225.033882px;}
.y15b{bottom:-223.385804px;}
.y122{bottom:-213.775607px;}
.y15a{bottom:-206.052306px;}
.yc5{bottom:-205.864620px;}
.y121{bottom:-197.098349px;}
.y159{bottom:-188.718809px;}
.yc4{bottom:-186.605178px;}
.y120{bottom:-180.342635px;}
.y10b{bottom:-172.320944px;}
.y158{bottom:-171.465120px;}
.yc3{bottom:-167.345736px;}
.y11f{bottom:-163.665377px;}
.y157{bottom:-154.131622px;}
.yc2{bottom:-148.176474px;}
.y11e{bottom:-146.909662px;}
.y156{bottom:-136.879286px;}
.y11d{bottom:-130.153948px;}
.yc1{bottom:-124.417050px;}
.y155{bottom:-119.545789px;}
.y11c{bottom:-113.475382px;}
.y154{bottom:-98.081145px;}
.y11b{bottom:-92.804684px;}
.yc0{bottom:-87.697950px;}
.ybf{bottom:-70.417950px;}
.y153{bottom:-65.114955px;}
.y11a{bottom:-60.859066px;}
.y133{bottom:-55.217943px;}
.ybe{bottom:-53.047500px;}
.y152{bottom:-49.481550px;}
.y119{bottom:-45.825466px;}
.ybd{bottom:-35.767500px;}
.y151{bottom:-33.929550px;}
.y118{bottom:-30.713175px;}
.ybc{bottom:-18.397050px;}
.y150{bottom:-18.296145px;}
.y117{bottom:-15.600884px;}
.y0{bottom:0.000000px;}
.y14f{bottom:1.872855px;}
.y142{bottom:2.100405px;}
.yb{bottom:3.425340px;}
.ybb{bottom:4.103355px;}
.y116{bottom:7.889868px;}
.y10f{bottom:7.926557px;}
.ya{bottom:14.151273px;}
.y2{bottom:16.661091px;}
.y115{bottom:21.513857px;}
.y10e{bottom:21.550546px;}
.y4d{bottom:31.890000px;}
.y19a{bottom:94.942500px;}
.y146{bottom:96.106500px;}
.y27{bottom:102.823500px;}
.y1ee{bottom:105.081000px;}
.y226{bottom:106.336500px;}
.y4c{bottom:113.176500px;}
.y199{bottom:113.772000px;}
.y145{bottom:115.339500px;}
.y26{bottom:120.711000px;}
.y1ed{bottom:122.656500px;}
.yac{bottom:122.800500px;}
.y225{bottom:123.597000px;}
.y1c5{bottom:125.524500px;}
.y4b{bottom:132.006000px;}
.y198{bottom:132.601500px;}
.y110{bottom:134.146500px;}
.y144{bottom:134.572500px;}
.y25{bottom:138.600000px;}
.y1ec{bottom:140.230500px;}
.y224{bottom:140.857500px;}
.yab{bottom:141.630000px;}
.y1c4{bottom:144.354000px;}
.y4a{bottom:150.835500px;}
.y197{bottom:151.431000px;}
.y143{bottom:153.805500px;}
.yd7{bottom:154.642500px;}
.y24{bottom:156.487500px;}
.y108{bottom:156.576000px;}
.y223{bottom:158.118000px;}
.yaa{bottom:160.459500px;}
.y1c3{bottom:163.183500px;}
.y100{bottom:164.944500px;}
.y1eb{bottom:166.770000px;}
.y196{bottom:170.260500px;}
.yd6{bottom:173.472000px;}
.y49{bottom:174.148500px;}
.y23{bottom:174.375000px;}
.y222{bottom:175.378500px;}
.y130{bottom:176.234870px;}
.ya9{bottom:179.289000px;}
.y1c2{bottom:182.013000px;}
.yff{bottom:183.774000px;}
.y195{bottom:189.090000px;}
.y22{bottom:192.264000px;}
.yd5{bottom:192.301500px;}
.y221{bottom:192.639000px;}
.y1ea{bottom:193.311000px;}
.y7b{bottom:198.219000px;}
.y1c1{bottom:200.842500px;}
.ya8{bottom:202.602000px;}
.yfe{bottom:202.603500px;}
.y194{bottom:207.919500px;}
.y220{bottom:209.898000px;}
.y21{bottom:210.151500px;}
.y1e9{bottom:210.885000px;}
.yd4{bottom:211.131000px;}
.y7a{bottom:214.657500px;}
.y1c0{bottom:219.672000px;}
.yfd{bottom:221.433000px;}
.y193{bottom:226.749000px;}
.y21f{bottom:227.158500px;}
.y20{bottom:228.039000px;}
.y1e8{bottom:228.459000px;}
.y14e{bottom:233.613045px;}
.ya7{bottom:236.226000px;}
.y79{bottom:238.297500px;}
.y1bf{bottom:238.501500px;}
.yfc{bottom:240.262500px;}
.y21e{bottom:244.419000px;}
.yd3{bottom:244.696500px;}
.y192{bottom:245.578500px;}
.y1e7{bottom:246.033000px;}
.y14d{bottom:249.246450px;}
.y48{bottom:249.298500px;}
.ya6{bottom:255.055500px;}
.y1be{bottom:257.331000px;}
.y21d{bottom:261.679500px;}
.y78{bottom:261.939000px;}
.yfb{bottom:263.575500px;}
.y1e6{bottom:263.607000px;}
.yd2{bottom:263.929500px;}
.y191{bottom:264.408000px;}
.y14c{bottom:264.879855px;}
.ya5{bottom:273.883500px;}
.y1bd{bottom:276.160500px;}
.y77{bottom:278.377500px;}
.y21c{bottom:278.940000px;}
.y14b{bottom:280.431855px;}
.y1e5{bottom:281.181000px;}
.yd1{bottom:283.162500px;}
.y190{bottom:283.237500px;}
.y47{bottom:286.687500px;}
.ya4{bottom:292.713000px;}
.y141{bottom:293.611133px;}
.y1bc{bottom:294.990000px;}
.y21b{bottom:296.200500px;}
.y1e4{bottom:298.756500px;}
.y76{bottom:302.017500px;}
.y18f{bottom:302.067000px;}
.yd0{bottom:302.395500px;}
.yfa{bottom:304.789500px;}
.y46{bottom:306.145500px;}
.y1f{bottom:307.299000px;}
.y140{bottom:310.288391px;}
.ya3{bottom:311.542500px;}
.y21a{bottom:313.461000px;}
.y1bb{bottom:313.819500px;}
.y1e3{bottom:316.330500px;}
.y18e{bottom:320.896500px;}
.ycf{bottom:321.628500px;}
.y1e{bottom:325.186500px;}
.yf9{bottom:325.263000px;}
.y45{bottom:325.602000px;}
.y75{bottom:325.659000px;}
.y13f{bottom:327.044106px;}
.y149{bottom:328.141381px;}
.ya2{bottom:330.372000px;}
.y219{bottom:330.721500px;}
.y1ba{bottom:332.649000px;}
.y1e2{bottom:333.904500px;}
.y148{bottom:336.969855px;}
.y18d{bottom:339.726000px;}
.y74{bottom:342.097500px;}
.y1d{bottom:343.074000px;}
.y13e{bottom:343.721363px;}
.yb7{bottom:344.058000px;}
.y44{bottom:345.060000px;}
.yf8{bottom:345.736500px;}
.y218{bottom:347.982000px;}
.ya1{bottom:349.201500px;}
.y1b9{bottom:351.478500px;}
.y18c{bottom:358.555500px;}
.y13d{bottom:360.477078px;}
.y1c{bottom:360.963000px;}
.y43{bottom:364.516500px;}
.y217{bottom:365.241000px;}
.y73{bottom:365.737500px;}
.ya0{bottom:368.031000px;}
.y1e1{bottom:369.411000px;}
.y1b8{bottom:370.308000px;}
.yf7{bottom:375.360000px;}
.y13c{bottom:377.232793px;}
.y18b{bottom:377.385000px;}
.y216{bottom:382.501500px;}
.y42{bottom:383.973000px;}
.y9f{bottom:386.860500px;}
.y1e0{bottom:388.240500px;}
.y1b7{bottom:389.137500px;}
.y72{bottom:389.377500px;}
.y13b{bottom:393.911358px;}
.y18a{bottom:396.214500px;}
.y1b{bottom:399.024000px;}
.y10d{bottom:399.426299px;}
.y215{bottom:399.762000px;}
.yf6{bottom:402.411000px;}
.y41{bottom:403.431000px;}
.y9e{bottom:405.690000px;}
.y71{bottom:405.816000px;}
.y1df{bottom:407.070000px;}
.y1b6{bottom:407.967000px;}
.y10c{bottom:413.050287px;}
.y13a{bottom:414.582057px;}
.y189{bottom:415.044000px;}
.y1a{bottom:416.913000px;}
.y214{bottom:417.022500px;}
.yf5{bottom:422.884500px;}
.y40{bottom:422.887500px;}
.y113{bottom:423.975825px;}
.y9d{bottom:424.519500px;}
.y1de{bottom:425.899500px;}
.y1b5{bottom:426.796500px;}
.y70{bottom:429.457500px;}
.y112{bottom:432.510017px;}
.y188{bottom:433.873500px;}
.y213{bottom:434.283000px;}
.y19{bottom:434.800500px;}
.y3f{bottom:442.344000px;}
.y9c{bottom:443.349000px;}
.yf4{bottom:443.356500px;}
.y1dd{bottom:444.729000px;}
.y1b4{bottom:445.626000px;}
.y139{bottom:446.527674px;}
.y249{bottom:448.764000px;}
.y212{bottom:451.543500px;}
.y187{bottom:452.703000px;}
.y6f{bottom:453.097500px;}
.yf3{bottom:459.795000px;}
.y138{bottom:461.561274px;}
.y3e{bottom:461.802000px;}
.y9b{bottom:462.178500px;}
.y1dc{bottom:463.558500px;}
.y1b3{bottom:464.454000px;}
.y248{bottom:466.024500px;}
.y211{bottom:468.804000px;}
.y18{bottom:470.622000px;}
.y186{bottom:471.532500px;}
.y12f{bottom:475.137000px;}
.y137{bottom:476.673566px;}
.yf2{bottom:480.268500px;}
.y3d{bottom:481.258500px;}
.y1db{bottom:482.388000px;}
.y1b2{bottom:483.283500px;}
.y6e{bottom:484.717500px;}
.y9a{bottom:485.491500px;}
.y210{bottom:486.064500px;}
.y185{bottom:490.362000px;}
.y136{bottom:491.785857px;}
.y12e{bottom:493.965000px;}
.y247{bottom:500.544000px;}
.y3c{bottom:500.716500px;}
.yf1{bottom:500.742000px;}
.y1b1{bottom:502.113000px;}
.y20f{bottom:503.325000px;}
.y1da{bottom:505.701000px;}
.y17{bottom:506.442000px;}
.y184{bottom:509.190000px;}
.y12d{bottom:512.794500px;}
.y135{bottom:515.276609px;}
.y246{bottom:517.804500px;}
.y3b{bottom:520.173000px;}
.y20e{bottom:520.584000px;}
.y1b0{bottom:520.942500px;}
.y6d{bottom:521.821500px;}
.y16{bottom:524.329500px;}
.y99{bottom:527.815500px;}
.y183{bottom:528.019500px;}
.y134{bottom:528.900597px;}
.yf0{bottom:530.365500px;}
.y12c{bottom:531.624000px;}
.y245{bottom:535.065000px;}
.y20d{bottom:537.844500px;}
.y1d9{bottom:539.323500px;}
.y3a{bottom:539.629500px;}
.y1af{bottom:539.772000px;}
.y6c{bottom:540.651000px;}
.y15{bottom:542.218500px;}
.y98{bottom:544.254000px;}
.y182{bottom:546.849000px;}
.y12b{bottom:550.453500px;}
.y244{bottom:552.325500px;}
.y20c{bottom:555.105000px;}
.y1d8{bottom:558.153000px;}
.y1ae{bottom:558.601500px;}
.y39{bottom:559.087500px;}
.y6b{bottom:559.480500px;}
.y14{bottom:560.106000px;}
.yef{bottom:560.196000px;}
.y97{bottom:560.692500px;}
.y181{bottom:565.678500px;}
.y12a{bottom:569.283000px;}
.y243{bottom:569.586000px;}
.y20b{bottom:572.365500px;}
.y1d7{bottom:576.982500px;}
.y1ad{bottom:577.431000px;}
.y13{bottom:577.993500px;}
.y6a{bottom:578.310000px;}
.y38{bottom:578.544000px;}
.yee{bottom:579.429000px;}
.y96{bottom:584.332500px;}
.y180{bottom:584.508000px;}
.y242{bottom:586.846500px;}
.y129{bottom:588.112500px;}
.y20a{bottom:589.626000px;}
.y1d6{bottom:595.812000px;}
.y12{bottom:595.882500px;}
.y1ac{bottom:596.260500px;}
.y69{bottom:597.139500px;}
.y17f{bottom:603.337500px;}
.y241{bottom:604.107000px;}
.y209{bottom:606.886500px;}
.y95{bottom:607.972500px;}
.yb9{bottom:608.093535px;}
.y128{bottom:611.425500px;}
.y11{bottom:613.770000px;}
.y1d5{bottom:614.641500px;}
.y1ab{bottom:615.090000px;}
.y37{bottom:615.934500px;}
.y68{bottom:615.969000px;}
.yb8{bottom:617.902950px;}
.y240{bottom:621.366000px;}
.y17e{bottom:622.167000px;}
.y208{bottom:624.147000px;}
.y94{bottom:624.411000px;}
.yed{bottom:626.995500px;}
.y10{bottom:631.657500px;}
.y1d4{bottom:633.471000px;}
.y1aa{bottom:633.919500px;}
.y67{bottom:634.798500px;}
.y36{bottom:635.391000px;}
.y23f{bottom:638.626500px;}
.y93{bottom:640.849500px;}
.y17d{bottom:640.996500px;}
.y207{bottom:641.407500px;}
.yec{bottom:643.434000px;}
.y127{bottom:644.842500px;}
.yf{bottom:649.546500px;}
.y1d3{bottom:652.300500px;}
.y1a9{bottom:652.749000px;}
.y35{bottom:654.847500px;}
.y23e{bottom:655.887000px;}
.y92{bottom:657.288000px;}
.y66{bottom:658.111500px;}
.y206{bottom:658.666500px;}
.y17c{bottom:659.826000px;}
.yeb{bottom:659.872500px;}
.y126{bottom:664.074000px;}
.ye{bottom:667.434000px;}
.y1d2{bottom:671.130000px;}
.y1a8{bottom:671.578500px;}
.y23d{bottom:673.147500px;}
.y34{bottom:674.305500px;}
.y205{bottom:675.927000px;}
.yea{bottom:676.311000px;}
.y65{bottom:678.285000px;}
.y17b{bottom:678.655500px;}
.y91{bottom:680.929500px;}
.y125{bottom:683.307000px;}
.yd{bottom:685.321500px;}
.y1d0{bottom:689.959500px;}
.y1a7{bottom:690.408000px;}
.ye9{bottom:692.749500px;}
.y204{bottom:693.187500px;}
.y33{bottom:693.762000px;}
.y1d1{bottom:695.385000px;}
.y17a{bottom:697.485000px;}
.y124{bottom:702.540000px;}
.yc{bottom:703.210500px;}
.y90{bottom:704.569500px;}
.y23c{bottom:707.668500px;}
.y1cf{bottom:708.789000px;}
.y1a6{bottom:709.237500px;}
.y203{bottom:710.448000px;}
.y64{bottom:711.909000px;}
.y32{bottom:713.220000px;}
.y179{bottom:716.314500px;}
.ye8{bottom:716.391000px;}
.y8f{bottom:721.008000px;}
.y23b{bottom:724.929000px;}
.y111{bottom:724.969500px;}
.y9{bottom:725.581464px;}
.y1ce{bottom:727.618500px;}
.y202{bottom:727.708500px;}
.y1a5{bottom:728.067000px;}
.y63{bottom:730.738500px;}
.y31{bottom:732.676500px;}
.y178{bottom:735.144000px;}
.y23a{bottom:742.189500px;}
.y8e{bottom:744.649500px;}
.y201{bottom:744.969000px;}
.y1cd{bottom:746.448000px;}
.y1a4{bottom:746.896500px;}
.ye7{bottom:748.009500px;}
.y62{bottom:749.568000px;}
.y30{bottom:752.133000px;}
.y177{bottom:758.457000px;}
.y239{bottom:759.450000px;}
.y200{bottom:762.229500px;}
.y1cc{bottom:765.277500px;}
.y1a3{bottom:765.726000px;}
.ye6{bottom:767.242500px;}
.y8d{bottom:768.289500px;}
.y61{bottom:768.397500px;}
.y238{bottom:776.709000px;}
.y1ff{bottom:779.490000px;}
.y1cb{bottom:784.107000px;}
.y1a2{bottom:784.555500px;}
.y8c{bottom:784.728000px;}
.y60{bottom:787.227000px;}
.y2f{bottom:790.719000px;}
.y176{bottom:791.872500px;}
.y237{bottom:793.969500px;}
.y1fd{bottom:796.749000px;}
.y1fe{bottom:796.750500px;}
.y8b{bottom:801.166500px;}
.y1ca{bottom:802.936500px;}
.y1a1{bottom:803.385000px;}
.y5f{bottom:806.056500px;}
.y2e{bottom:806.859000px;}
.y175{bottom:811.105500px;}
.y236{bottom:811.230000px;}
.y1fc{bottom:814.009500px;}
.y10a{bottom:814.259565px;}
.ye5{bottom:814.810500px;}
.y8a{bottom:817.605000px;}
.y1c9{bottom:821.766000px;}
.y1a0{bottom:822.214500px;}
.y109{bottom:822.793757px;}
.y5e{bottom:824.886000px;}
.y2d{bottom:827.337000px;}
.y235{bottom:828.490500px;}
.y174{bottom:830.338500px;}
.ye4{bottom:831.249000px;}
.y1fb{bottom:831.270000px;}
.y89{bottom:834.043500px;}
.y2c{bottom:839.137500px;}
.y1c8{bottom:840.595500px;}
.y19f{bottom:841.044000px;}
.y5d{bottom:843.715500px;}
.y234{bottom:845.751000px;}
.ye3{bottom:847.687500px;}
.y1fa{bottom:848.530500px;}
.y173{bottom:849.571500px;}
.y88{bottom:850.482000px;}
.y2b{bottom:855.277500px;}
.y1c7{bottom:859.425000px;}
.y19e{bottom:859.873500px;}
.y5c{bottom:862.545000px;}
.y233{bottom:863.011500px;}
.y1f9{bottom:865.791000px;}
.ye2{bottom:871.327500px;}
.y2a{bottom:871.416000px;}
.y147{bottom:872.001000px;}
.y87{bottom:874.122000px;}
.y19d{bottom:878.703000px;}
.y232{bottom:880.272000px;}
.y5b{bottom:881.374500px;}
.y1c6{bottom:882.738000px;}
.y1f8{bottom:883.051500px;}
.y29{bottom:887.556000px;}
.ye1{bottom:894.967500px;}
.y19c{bottom:897.532500px;}
.y86{bottom:897.762000px;}
.y5a{bottom:900.204000px;}
.y1f7{bottom:900.312000px;}
.y28{bottom:908.035500px;}
.ye0{bottom:911.406000px;}
.y85{bottom:914.200500px;}
.y231{bottom:914.793000px;}
.y19b{bottom:916.362000px;}
.y1f6{bottom:917.572500px;}
.y59{bottom:919.033500px;}
.y84{bottom:930.639000px;}
.y132{bottom:931.362566px;}
.y230{bottom:932.052000px;}
.y1f5{bottom:934.833000px;}
.ydf{bottom:935.047500px;}
.yb6{bottom:935.191500px;}
.y58{bottom:937.863000px;}
.y131{bottom:939.896757px;}
.y83{bottom:947.077500px;}
.y8{bottom:948.228000px;}
.y22f{bottom:949.312500px;}
.y1f4{bottom:952.092000px;}
.yb5{bottom:954.021000px;}
.y57{bottom:956.692500px;}
.yde{bottom:958.687500px;}
.y22e{bottom:966.573000px;}
.y107{bottom:967.021500px;}
.y7{bottom:967.057500px;}
.y82{bottom:970.719000px;}
.yb4{bottom:972.849000px;}
.y1f3{bottom:973.836000px;}
.ydd{bottom:975.126000px;}
.y56{bottom:975.522000px;}
.y22d{bottom:983.833500px;}
.y106{bottom:985.851000px;}
.ydc{bottom:991.564500px;}
.yb3{bottom:991.678500px;}
.y55{bottom:994.351500px;}
.y81{bottom:994.359000px;}
.y22c{bottom:1001.094000px;}
.y105{bottom:1004.680500px;}
.y1f2{bottom:1007.460000px;}
.ydb{bottom:1008.003000px;}
.yb2{bottom:1010.508000px;}
.y80{bottom:1010.797500px;}
.y6{bottom:1012.954500px;}
.y54{bottom:1013.181000px;}
.y22b{bottom:1018.354500px;}
.y104{bottom:1023.510000px;}
.y7f{bottom:1027.236000px;}
.yb1{bottom:1029.337500px;}
.yda{bottom:1031.644500px;}
.y53{bottom:1032.010500px;}
.y1f1{bottom:1034.001000px;}
.y22a{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.y103{bottom:1042.339500px;}
.yb0{bottom:1048.167000px;}
.y52{bottom:1050.840000px;}
.y7e{bottom:1050.876000px;}
.y229{bottom:1052.875500px;}
.yd9{bottom:1055.284500px;}
.y1f0{bottom:1060.540500px;}
.y102{bottom:1061.169000px;}
.yaf{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y51{bottom:1069.669500px;}
.y228{bottom:1070.134500px;}
.y7d{bottom:1074.517500px;}
.y1ef{bottom:1078.116000px;}
.y101{bottom:1084.482000px;}
.yae{bottom:1085.826000px;}
.yd8{bottom:1086.904500px;}
.y227{bottom:1087.395000px;}
.y50{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.yad{bottom:1104.655500px;}
.y7c{bottom:1106.137500px;}
.y4f{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4e{bottom:1173.397500px;}
.h7{height:25.508090px;}
.hc{height:26.217754px;}
.h1e{height:30.285737px;}
.h1d{height:30.428114px;}
.ha{height:30.587087px;}
.hb{height:30.670772px;}
.h27{height:31.330072px;}
.h26{height:31.477359px;}
.h9{height:33.112997px;}
.h2c{height:33.209038px;}
.h23{height:34.156846px;}
.h8{height:34.199443px;}
.h22{height:34.317422px;}
.h17{height:34.811191px;}
.hd{height:34.956859px;}
.h16{height:34.974844px;}
.h12{height:35.052500px;}
.h2a{height:35.334668px;}
.h29{height:35.500781px;}
.h1f{height:38.027955px;}
.h20{height:38.206730px;}
.he{height:38.896243px;}
.h1a{height:39.260742px;}
.hf{height:39.326630px;}
.h28{height:39.339264px;}
.h14{height:39.434227px;}
.h19{height:39.445312px;}
.h2b{height:39.524203px;}
.h13{height:41.482876px;}
.h10{height:43.217759px;}
.h1b{height:43.269961px;}
.h11{height:43.695964px;}
.h18{height:43.710293px;}
.h4{height:43.815515px;}
.h2{height:50.330809px;}
.h6{height:54.547601px;}
.h5{height:77.792486px;}
.h3{height:92.775000px;}
.h25{height:214.724250px;}
.h24{height:276.756701px;}
.h21{height:394.633305px;}
.h15{height:567.493500px;}
.h1c{height:788.304825px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:173.920654px;}
.w4{width:541.966500px;}
.w6{width:543.261713px;}
.w5{width:617.405418px;}
.w7{width:634.659997px;}
.w8{width:711.329850px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x26{left:-197.346000px;}
.x44{left:-33.313388px;}
.x40{left:-31.248747px;}
.x50{left:-23.917388px;}
.x46{left:-5.595188px;}
.x28{left:-1.776000px;}
.x0{left:0.000000px;}
.x52{left:3.800813px;}
.x3{left:29.274117px;}
.x5c{left:32.208300px;}
.x1{left:54.000000px;}
.x2{left:56.429652px;}
.x48{left:85.890000px;}
.x5b{left:90.795000px;}
.x60{left:96.582000px;}
.x4f{left:129.129652px;}
.x3f{left:137.756217px;}
.x49{left:143.169000px;}
.x53{left:146.228513px;}
.x62{left:157.251000px;}
.x63{left:163.222500px;}
.x47{left:164.550621px;}
.x43{left:174.828652px;}
.x5e{left:179.547300px;}
.x5f{left:208.221835px;}
.x55{left:218.262000px;}
.x56{left:224.986500px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.x37{left:260.031000px;}
.x5{left:271.221000px;}
.x2a{left:273.280500px;}
.x7c{left:278.289000px;}
.x9{left:282.786000px;}
.x2b{left:289.090500px;}
.x38{left:290.592000px;}
.x31{left:295.882500px;}
.x34{left:299.850000px;}
.x35{left:300.919500px;}
.x29{left:302.323500px;}
.x8{left:309.436500px;}
.x1c{left:322.329000px;}
.x23{left:323.445000px;}
.x32{left:325.605000px;}
.x61{left:327.000000px;}
.x33{left:330.111000px;}
.x1e{left:333.115500px;}
.x25{left:335.938500px;}
.x1a{left:340.048500px;}
.x4a{left:343.543500px;}
.xc{left:345.651000px;}
.xd{left:353.122500px;}
.x30{left:358.873500px;}
.xe{left:360.445500px;}
.x1d{left:366.880500px;}
.xf{left:367.917000px;}
.x7{left:369.486000px;}
.x24{left:372.327000px;}
.x7d{left:379.252500px;}
.x1b{left:380.337000px;}
.x18{left:388.722000px;}
.x22{left:390.141000px;}
.x80{left:392.058000px;}
.x12{left:393.894000px;}
.x19{left:401.001000px;}
.x13{left:402.649500px;}
.x14{left:409.999500px;}
.x15{left:412.708500px;}
.x71{left:415.837500px;}
.x1f{left:417.417000px;}
.x21{left:418.552500px;}
.x20{left:421.539000px;}
.x72{left:423.459000px;}
.x74{left:429.267000px;}
.x83{left:432.772500px;}
.x82{left:434.737500px;}
.x73{left:438.403500px;}
.x75{left:444.210000px;}
.xa{left:447.445500px;}
.xb{left:454.917000px;}
.x39{left:458.545500px;}
.x4b{left:463.822500px;}
.x36{left:467.503500px;}
.x6f{left:471.181500px;}
.x70{left:486.126000px;}
.x81{left:490.362000px;}
.x59{left:508.030500px;}
.x5a{left:514.002000px;}
.x3d{left:522.895500px;}
.x10{left:536.287500px;}
.x3e{left:539.157000px;}
.x27{left:546.684090px;}
.x2e{left:549.513000px;}
.x76{left:551.227500px;}
.x11{left:552.838500px;}
.x2f{left:554.017500px;}
.x2c{left:556.479000px;}
.x2d{left:560.836500px;}
.x77{left:566.172000px;}
.x78{left:569.901000px;}
.x3c{left:575.953500px;}
.x79{left:584.844000px;}
.x7a{left:588.573000px;}
.x7b{left:603.517500px;}
.x69{left:606.847500px;}
.x45{left:620.332565px;}
.x41{left:621.692685px;}
.x42{left:627.253038px;}
.x51{left:629.728565px;}
.x54{left:631.998618px;}
.x6a{left:644.232000px;}
.x85{left:646.422000px;}
.x16{left:653.302500px;}
.x4c{left:657.273000px;}
.x95{left:659.229000px;}
.x17{left:662.092500px;}
.x4d{left:663.244500px;}
.x3a{left:670.765500px;}
.x86{left:673.321500px;}
.x64{left:678.732000px;}
.x65{left:682.464000px;}
.x57{left:683.884500px;}
.x96{left:686.128500px;}
.x3b{left:687.138000px;}
.x58{left:692.103000px;}
.x66{left:697.408500px;}
.x7e{left:700.186500px;}
.x5d{left:710.097165px;}
.x87{left:714.235500px;}
.x7f{left:715.266000px;}
.x8a{left:719.881500px;}
.x91{left:722.575500px;}
.x67{left:727.293000px;}
.x89{left:730.716000px;}
.x8c{left:736.047000px;}
.x4e{left:738.355500px;}
.x88{left:741.135000px;}
.x68{left:742.236000px;}
.x8b{left:746.781000px;}
.x92{left:749.473500px;}
.x84{left:758.085000px;}
.x8d{left:762.946500px;}
.x93{left:765.175500px;}
.x8e{left:782.973000px;}
.x90{left:789.946500px;}
.x6b{left:798.943500px;}
.x8f{left:809.871000px;}
.x6c{left:813.886500px;}
.x94{left:815.955000px;}
.x6d{left:817.698000px;}
.x6e{left:832.642500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls7b{letter-spacing:-0.216432pt;}
.ls3b{letter-spacing:-0.162725pt;}
.ls81{letter-spacing:-0.158717pt;}
.ls31{letter-spacing:-0.133600pt;}
.ls2d{letter-spacing:-0.106880pt;}
.ls78{letter-spacing:-0.105811pt;}
.ls84{letter-spacing:-0.096192pt;}
.ls80{letter-spacing:-0.091382pt;}
.ls7d{letter-spacing:-0.086573pt;}
.ls53{letter-spacing:-0.083687pt;}
.ls82{letter-spacing:-0.081763pt;}
.ls26{letter-spacing:-0.080864pt;}
.ls86{letter-spacing:-0.076954pt;}
.ls2a{letter-spacing:-0.074816pt;}
.ls6d{letter-spacing:-0.072778pt;}
.ls75{letter-spacing:-0.072144pt;}
.ls29{letter-spacing:-0.069472pt;}
.ls76{letter-spacing:-0.067334pt;}
.ls39{letter-spacing:-0.066649pt;}
.ls7c{letter-spacing:-0.062525pt;}
.ls50{letter-spacing:-0.060441pt;}
.ls55{letter-spacing:-0.051142pt;}
.ls74{letter-spacing:-0.048096pt;}
.ls56{letter-spacing:-0.046493pt;}
.ls2b{letter-spacing:-0.037408pt;}
.ls77{letter-spacing:-0.033667pt;}
.ls2e{letter-spacing:-0.032064pt;}
.ls73{letter-spacing:-0.028858pt;}
.ls7f{letter-spacing:-0.024048pt;}
.ls2f{letter-spacing:-0.021376pt;}
.ls7e{letter-spacing:-0.019238pt;}
.ls51{letter-spacing:-0.018597pt;}
.ls70{letter-spacing:-0.017280pt;}
.ls7a{letter-spacing:-0.014429pt;}
.ls54{letter-spacing:-0.013948pt;}
.ls72{letter-spacing:-0.012960pt;}
.ls27{letter-spacing:-0.012768pt;}
.ls4f{letter-spacing:-0.012528pt;}
.ls6e{letter-spacing:-0.011491pt;}
.ls2c{letter-spacing:-0.010688pt;}
.ls79{letter-spacing:-0.009619pt;}
.ls6f{letter-spacing:-0.008640pt;}
.ls83{letter-spacing:-0.004810pt;}
.ls52{letter-spacing:-0.004649pt;}
.ls71{letter-spacing:-0.004320pt;}
.ls3a{letter-spacing:-0.003703pt;}
.ls9{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000540pt;}
.ls45{letter-spacing:0.004176pt;}
.ls5a{letter-spacing:0.004320pt;}
.ls69{letter-spacing:0.004810pt;}
.ls3e{letter-spacing:0.008352pt;}
.ls61{letter-spacing:0.008640pt;}
.ls1f{letter-spacing:0.009600pt;}
.ls68{letter-spacing:0.009619pt;}
.ls4a{letter-spacing:0.013948pt;}
.ls1e{letter-spacing:0.014400pt;}
.ls64{letter-spacing:0.014429pt;}
.ls41{letter-spacing:0.016704pt;}
.ls5c{letter-spacing:0.017280pt;}
.ls66{letter-spacing:0.019238pt;}
.ls3d{letter-spacing:0.020880pt;}
.ls60{letter-spacing:0.021600pt;}
.ls49{letter-spacing:0.023246pt;}
.ls5b{letter-spacing:0.025920pt;}
.ls21{letter-spacing:0.026720pt;}
.ls1c{letter-spacing:0.028800pt;}
.ls67{letter-spacing:0.028858pt;}
.ls3c{letter-spacing:0.029232pt;}
.ls63{letter-spacing:0.030240pt;}
.ls48{letter-spacing:0.032545pt;}
.ls6c{letter-spacing:0.033667pt;}
.ls5e{letter-spacing:0.034560pt;}
.ls28{letter-spacing:0.037408pt;}
.ls44{letter-spacing:0.037584pt;}
.ls1d{letter-spacing:0.038400pt;}
.ls6b{letter-spacing:0.038477pt;}
.ls43{letter-spacing:0.041760pt;}
.ls57{letter-spacing:0.042134pt;}
.ls1b{letter-spacing:0.043200pt;}
.ls18{letter-spacing:0.046816pt;}
.ls20{letter-spacing:0.048096pt;}
.ls35{letter-spacing:0.048135pt;}
.ls47{letter-spacing:0.051142pt;}
.ls6a{letter-spacing:0.052906pt;}
.ls3f{letter-spacing:0.054288pt;}
.ls4b{letter-spacing:0.055791pt;}
.ls65{letter-spacing:0.057715pt;}
.ls23{letter-spacing:0.064128pt;}
.ls46{letter-spacing:0.069739pt;}
.ls22{letter-spacing:0.074816pt;}
.ls30{letter-spacing:0.085504pt;}
.ls62{letter-spacing:0.090720pt;}
.ls5d{letter-spacing:0.099360pt;}
.ls40{letter-spacing:0.108576pt;}
.ls38{letter-spacing:0.116232pt;}
.ls5f{letter-spacing:0.116640pt;}
.ls42{letter-spacing:0.121104pt;}
.ls59{letter-spacing:0.137894pt;}
.ls37{letter-spacing:0.140703pt;}
.ls58{letter-spacing:0.145555pt;}
.ls36{letter-spacing:0.148109pt;}
.ls1a{letter-spacing:0.153216pt;}
.ls19{letter-spacing:0.161728pt;}
.ls85{letter-spacing:0.283766pt;}
.lsa{letter-spacing:1.133683pt;}
.ls4{letter-spacing:1.654338pt;}
.ls2{letter-spacing:2.651733pt;}
.ls1{letter-spacing:2.657067pt;}
.ls5{letter-spacing:9.298933pt;}
.ls8{letter-spacing:10.626533pt;}
.ls95{letter-spacing:11.701306pt;}
.ls8e{letter-spacing:11.769480pt;}
.ls8d{letter-spacing:11.781815pt;}
.ls8f{letter-spacing:11.788948pt;}
.ls91{letter-spacing:11.812916pt;}
.ls92{letter-spacing:11.875488pt;}
.ls33{letter-spacing:11.950302pt;}
.ls88{letter-spacing:11.954133pt;}
.ls32{letter-spacing:11.955635pt;}
.ls89{letter-spacing:11.959467pt;}
.ls8b{letter-spacing:11.977798pt;}
.ls87{letter-spacing:11.991037pt;}
.ls96{letter-spacing:12.055531pt;}
.ls93{letter-spacing:12.224026pt;}
.lsc{letter-spacing:12.528078pt;}
.ls13{letter-spacing:13.040412pt;}
.ls17{letter-spacing:13.113665pt;}
.ls8a{letter-spacing:13.127153pt;}
.ls4d{letter-spacing:13.230333pt;}
.ls12{letter-spacing:13.278903pt;}
.ls15{letter-spacing:13.279058pt;}
.ls4e{letter-spacing:13.283467pt;}
.lsf{letter-spacing:13.284237pt;}
.ls16{letter-spacing:13.284397pt;}
.ls25{letter-spacing:13.389734pt;}
.ls94{letter-spacing:14.157218pt;}
.ls8c{letter-spacing:15.239571pt;}
.lsb{letter-spacing:15.249420pt;}
.ls90{letter-spacing:15.255258pt;}
.lse{letter-spacing:15.911165pt;}
.ls14{letter-spacing:15.932080pt;}
.ls4c{letter-spacing:17.364760pt;}
.ls24{letter-spacing:17.534176pt;}
.ls11{letter-spacing:19.843191pt;}
.ls10{letter-spacing:20.617047pt;}
.ls0{letter-spacing:51.035733pt;}
.ls6{letter-spacing:55.787733pt;}
.ls7{letter-spacing:57.174803pt;}
.ls3{letter-spacing:64.321067pt;}
.ls34{letter-spacing:83.746667pt;}
.ws4d{word-spacing:-13.283467pt;}
.ws11a{word-spacing:-11.955200pt;}
.ws7f{word-spacing:-11.623200pt;}
.ws56{word-spacing:-10.801728pt;}
.wsa1{word-spacing:-10.800000pt;}
.ws2c{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.wsa0{word-spacing:-9.721555pt;}
.ws7e{word-spacing:-9.404909pt;}
.ws7{word-spacing:-9.298400pt;}
.wsfe{word-spacing:-2.922363pt;}
.ws10b{word-spacing:-2.709827pt;}
.ws118{word-spacing:-2.677965pt;}
.ws74{word-spacing:-2.185696pt;}
.ws115{word-spacing:-2.151936pt;}
.ws78{word-spacing:-2.056294pt;}
.ws4b{word-spacing:-1.965953pt;}
.ws116{word-spacing:-1.960653pt;}
.ws9b{word-spacing:-1.929451pt;}
.ws134{word-spacing:-1.912832pt;}
.ws31{word-spacing:-1.912819pt;}
.ws79{word-spacing:-1.865011pt;}
.ws30{word-spacing:-1.859685pt;}
.ws9a{word-spacing:-1.813219pt;}
.ws4{word-spacing:-1.696326pt;}
.wsf0{word-spacing:-1.692979pt;}
.wsa5{word-spacing:-1.647150pt;}
.ws84{word-spacing:-1.594016pt;}
.ws94{word-spacing:-1.590054pt;}
.ws93{word-spacing:-1.580755pt;}
.wsed{word-spacing:-1.558310pt;}
.wsec{word-spacing:-1.548691pt;}
.wsbe{word-spacing:-1.386720pt;}
.ws32{word-spacing:-1.328347pt;}
.wsc1{word-spacing:-1.326240pt;}
.wsbf{word-spacing:-1.291680pt;}
.wsc0{word-spacing:-1.283040pt;}
.ws12f{word-spacing:-1.195520pt;}
.ws3{word-spacing:-1.175671pt;}
.ws100{word-spacing:-1.168945pt;}
.wsc9{word-spacing:-1.135066pt;}
.wsd7{word-spacing:-1.058112pt;}
.ws88{word-spacing:-1.023120pt;}
.ws8a{word-spacing:-1.010592pt;}
.wsd8{word-spacing:-1.010016pt;}
.ws1d{word-spacing:-1.004237pt;}
.ws86{word-spacing:-0.998064pt;}
.ws87{word-spacing:-0.989712pt;}
.ws89{word-spacing:-0.985536pt;}
.ws8e{word-spacing:-0.973008pt;}
.ws23{word-spacing:-0.908595pt;}
.wsa9{word-spacing:-0.850142pt;}
.wse3{word-spacing:-0.803203pt;}
.wsf7{word-spacing:-0.797008pt;}
.wsda{word-spacing:-0.769536pt;}
.wsc8{word-spacing:-0.721440pt;}
.wsdb{word-spacing:-0.702202pt;}
.wse6{word-spacing:-0.687773pt;}
.ws96{word-spacing:-0.516070pt;}
.wsb3{word-spacing:-0.475200pt;}
.wsb6{word-spacing:-0.466560pt;}
.wsb5{word-spacing:-0.457920pt;}
.wsb4{word-spacing:-0.449280pt;}
.wsb7{word-spacing:-0.432000pt;}
.ws36{word-spacing:-0.425071pt;}
.wsb8{word-spacing:-0.423360pt;}
.ws7b{word-spacing:-0.371937pt;}
.ws47{word-spacing:-0.318803pt;}
.ws6b{word-spacing:-0.315296pt;}
.ws62{word-spacing:-0.288576pt;}
.ws120{word-spacing:-0.286925pt;}
.ws90{word-spacing:-0.274308pt;}
.ws54{word-spacing:-0.265669pt;}
.wscc{word-spacing:-0.254909pt;}
.ws24{word-spacing:-0.239104pt;}
.ws5b{word-spacing:-0.234080pt;}
.wsaa{word-spacing:-0.212535pt;}
.wsaf{word-spacing:-0.210672pt;}
.ws81{word-spacing:-0.207352pt;}
.ws110{word-spacing:-0.191283pt;}
.wsc5{word-spacing:-0.187574pt;}
.wscd{word-spacing:-0.182765pt;}
.ws34{word-spacing:-0.159402pt;}
.wsc4{word-spacing:-0.146880pt;}
.ws19{word-spacing:-0.143462pt;}
.ws95{word-spacing:-0.120881pt;}
.ws37{word-spacing:-0.106268pt;}
.ws17{word-spacing:-0.095642pt;}
.ws5a{word-spacing:-0.068096pt;}
.ws80{word-spacing:-0.062946pt;}
.wsae{word-spacing:-0.061286pt;}
.ws33{word-spacing:-0.053134pt;}
.ws21{word-spacing:-0.047821pt;}
.ws2d{word-spacing:-0.042507pt;}
.ws8{word-spacing:-0.037194pt;}
.ws1{word-spacing:-0.001770pt;}
.ws0{word-spacing:0.000000pt;}
.ws6c{word-spacing:0.016032pt;}
.ws75{word-spacing:0.032064pt;}
.ws82{word-spacing:0.047821pt;}
.ws40{word-spacing:0.053134pt;}
.wsde{word-spacing:0.072144pt;}
.wsee{word-spacing:0.076954pt;}
.ws69{word-spacing:0.080160pt;}
.ws9e{word-spacing:0.088336pt;}
.ws6a{word-spacing:0.090848pt;}
.ws83{word-spacing:0.095642pt;}
.ws8f{word-spacing:0.100224pt;}
.ws35{word-spacing:0.106268pt;}
.ws5d{word-spacing:0.115200pt;}
.ws68{word-spacing:0.117568pt;}
.ws5f{word-spacing:0.120000pt;}
.ws9f{word-spacing:0.120881pt;}
.wsb9{word-spacing:0.120960pt;}
.ws5e{word-spacing:0.129600pt;}
.wsba{word-spacing:0.133920pt;}
.ws22{word-spacing:0.143462pt;}
.ws60{word-spacing:0.144000pt;}
.ws61{word-spacing:0.148800pt;}
.ws5c{word-spacing:0.158400pt;}
.wsa4{word-spacing:0.159402pt;}
.wsa{word-spacing:0.185968pt;}
.wsa2{word-spacing:0.191283pt;}
.ws2a{word-spacing:0.212535pt;}
.ws12a{word-spacing:0.239104pt;}
.wsc{word-spacing:0.260355pt;}
.ws2e{word-spacing:0.265669pt;}
.ws77{word-spacing:0.286925pt;}
.wsef{word-spacing:0.307814pt;}
.ws72{word-spacing:0.315296pt;}
.wsa3{word-spacing:0.318803pt;}
.ws2f{word-spacing:0.371937pt;}
.ws109{word-spacing:0.425071pt;}
.ws58{word-spacing:0.430387pt;}
.wsab{word-spacing:0.478205pt;}
.ws20{word-spacing:0.478208pt;}
.ws132{word-spacing:0.526029pt;}
.ws73{word-spacing:0.534400pt;}
.ws76{word-spacing:0.573850pt;}
.ws7c{word-spacing:0.584473pt;}
.ws42{word-spacing:0.597606pt;}
.wsff{word-spacing:0.637606pt;}
.wsd0{word-spacing:0.639677pt;}
.wsd1{word-spacing:0.658915pt;}
.ws57{word-spacing:0.669491pt;}
.wsc3{word-spacing:0.699840pt;}
.wsc2{word-spacing:0.730080pt;}
.ws71{word-spacing:0.742816pt;}
.wsf8{word-spacing:0.743874pt;}
.ws102{word-spacing:0.797008pt;}
.ws1c{word-spacing:0.812954pt;}
.ws29{word-spacing:0.850142pt;}
.ws129{word-spacing:0.860774pt;}
.ws11d{word-spacing:0.908595pt;}
.ws7a{word-spacing:0.956410pt;}
.ws18{word-spacing:0.956416pt;}
.ws114{word-spacing:1.004237pt;}
.ws107{word-spacing:1.115811pt;}
.ws11e{word-spacing:1.195520pt;}
.ws3e{word-spacing:1.222079pt;}
.ws131{word-spacing:1.243341pt;}
.wsb2{word-spacing:1.252800pt;}
.wsb1{word-spacing:1.270080pt;}
.wsb0{word-spacing:1.291680pt;}
.ws67{word-spacing:1.309280pt;}
.wsfc{word-spacing:1.434614pt;}
.wscf{word-spacing:1.481357pt;}
.ws1f{word-spacing:1.482445pt;}
.ws92{word-spacing:1.483120pt;}
.ws49{word-spacing:1.487748pt;}
.ws91{word-spacing:1.524964pt;}
.ws3f{word-spacing:1.540882pt;}
.ws48{word-spacing:1.594016pt;}
.wsce{word-spacing:1.616026pt;}
.wsfa{word-spacing:1.700284pt;}
.ws135{word-spacing:1.721549pt;}
.ws3c{word-spacing:1.753418pt;}
.ws1e{word-spacing:1.769370pt;}
.wsb{word-spacing:1.785293pt;}
.ws4a{word-spacing:1.806551pt;}
.ws38{word-spacing:1.859685pt;}
.ws41{word-spacing:1.912819pt;}
.ws6f{word-spacing:1.934528pt;}
.ws70{word-spacing:2.030720pt;}
.wsa7{word-spacing:2.072221pt;}
.wsdf{word-spacing:2.077747pt;}
.wse0{word-spacing:2.096986pt;}
.ws11b{word-spacing:2.199757pt;}
.ws1a{word-spacing:2.295398pt;}
.wsea{word-spacing:2.327846pt;}
.ws8b{word-spacing:2.334384pt;}
.wsfd{word-spacing:2.337890pt;}
.wsc6{word-spacing:2.361514pt;}
.ws8c{word-spacing:2.371968pt;}
.ws8d{word-spacing:2.384496pt;}
.ws106{word-spacing:2.391024pt;}
.wseb{word-spacing:2.395181pt;}
.wse2{word-spacing:2.481754pt;}
.wse1{word-spacing:2.534659pt;}
.ws14{word-spacing:2.550432pt;}
.ws121{word-spacing:2.582323pt;}
.ws4c{word-spacing:2.603559pt;}
.ws55{word-spacing:2.656693pt;}
.wsc7{word-spacing:2.712614pt;}
.wse7{word-spacing:2.746282pt;}
.wsac{word-spacing:2.762961pt;}
.ws1b{word-spacing:2.773606pt;}
.ws26{word-spacing:2.861926pt;}
.ws113{word-spacing:2.866509pt;}
.ws126{word-spacing:2.869248pt;}
.ws9c{word-spacing:2.873255pt;}
.ws9d{word-spacing:2.910449pt;}
.wsd2{word-spacing:2.962714pt;}
.ws112{word-spacing:2.964890pt;}
.wsd3{word-spacing:2.967523pt;}
.ws3a{word-spacing:2.975497pt;}
.wsbc{word-spacing:2.980800pt;}
.wsbd{word-spacing:2.989440pt;}
.wsbb{word-spacing:3.041280pt;}
.ws117{word-spacing:3.060531pt;}
.ws108{word-spacing:3.081764pt;}
.wsa8{word-spacing:3.134898pt;}
.ws27{word-spacing:3.188032pt;}
.ws25{word-spacing:3.251814pt;}
.ws6e{word-spacing:3.281216pt;}
.wsa6{word-spacing:3.294300pt;}
.ws123{word-spacing:3.299635pt;}
.wsd6{word-spacing:3.304195pt;}
.ws6d{word-spacing:3.388096pt;}
.wsd5{word-spacing:3.458102pt;}
.ws65{word-spacing:3.575136pt;}
.wsca{word-spacing:3.592771pt;}
.ws4f{word-spacing:3.613103pt;}
.ws66{word-spacing:3.676672pt;}
.wsf3{word-spacing:3.809203pt;}
.ws85{word-spacing:3.825638pt;}
.ws7d{word-spacing:3.985040pt;}
.ws10e{word-spacing:4.038174pt;}
.wsf5{word-spacing:4.068922pt;}
.ws3b{word-spacing:4.091308pt;}
.wsf4{word-spacing:4.117018pt;}
.ws16{word-spacing:4.208230pt;}
.ws59{word-spacing:4.250709pt;}
.ws101{word-spacing:4.303843pt;}
.wscb{word-spacing:4.371926pt;}
.wse8{word-spacing:4.395974pt;}
.wse9{word-spacing:4.400784pt;}
.ws53{word-spacing:4.463245pt;}
.ws52{word-spacing:4.516379pt;}
.ws15{word-spacing:4.542976pt;}
.wsfb{word-spacing:4.569513pt;}
.ws4e{word-spacing:4.622646pt;}
.ws10a{word-spacing:4.675780pt;}
.ws98{word-spacing:4.784109pt;}
.ws99{word-spacing:4.793408pt;}
.ws97{word-spacing:4.821303pt;}
.ws63{word-spacing:4.841664pt;}
.wsf9{word-spacing:4.888316pt;}
.wsd4{word-spacing:4.939459pt;}
.wsd9{word-spacing:4.963507pt;}
.wse5{word-spacing:4.982746pt;}
.ws10f{word-spacing:5.047717pt;}
.wse4{word-spacing:5.050080pt;}
.ws111{word-spacing:5.260288pt;}
.wsf6{word-spacing:5.313387pt;}
.ws12{word-spacing:5.393072pt;}
.ws13{word-spacing:5.467459pt;}
.wsdc{word-spacing:5.559898pt;}
.ws64{word-spacing:5.589824pt;}
.wsdd{word-spacing:5.632042pt;}
.wsad{word-spacing:5.632190pt;}
.ws28{word-spacing:6.322930pt;}
.ws133{word-spacing:6.360166pt;}
.wsf1{word-spacing:6.483341pt;}
.wsf2{word-spacing:6.497770pt;}
.ws51{word-spacing:6.588599pt;}
.ws39{word-spacing:6.694867pt;}
.ws10d{word-spacing:7.066804pt;}
.ws10c{word-spacing:7.119938pt;}
.ws50{word-spacing:7.332474pt;}
.ws104{word-spacing:7.651277pt;}
.ws10{word-spacing:7.699075pt;}
.ws103{word-spacing:8.288883pt;}
.ws105{word-spacing:8.501419pt;}
.ws6{word-spacing:9.258349pt;}
.ws2b{word-spacing:10.580991pt;}
.ws127{word-spacing:11.716096pt;}
.ws12b{word-spacing:11.763917pt;}
.ws12c{word-spacing:11.811738pt;}
.ws12e{word-spacing:11.902532pt;}
.ws119{word-spacing:11.907379pt;}
.ws12d{word-spacing:12.146483pt;}
.ws46{word-spacing:13.230333pt;}
.ws136{word-spacing:13.628928pt;}
.ws9{word-spacing:13.761632pt;}
.ws5{word-spacing:13.763148pt;}
.wsd{word-spacing:14.348669pt;}
.wse{word-spacing:14.356730pt;}
.ws122{word-spacing:14.489702pt;}
.ws125{word-spacing:14.537523pt;}
.ws124{word-spacing:14.585344pt;}
.ws128{word-spacing:14.728806pt;}
.ws11c{word-spacing:14.774349pt;}
.ws130{word-spacing:14.776627pt;}
.ws11f{word-spacing:14.824448pt;}
.wsf{word-spacing:15.732893pt;}
.ws3d{word-spacing:16.418365pt;}
.ws11{word-spacing:24.399002pt;}
.ws43{word-spacing:998.833050pt;}
.ws44{word-spacing:1001.558835pt;}
.ws45{word-spacing:1013.466214pt;}
._0{margin-left:-12.337766pt;}
._1{margin-left:-10.616218pt;}
._16{margin-left:-6.802002pt;}
._a{margin-left:-5.483429pt;}
._7{margin-left:-4.176115pt;}
._f{margin-left:-3.251814pt;}
._5{margin-left:-1.998023pt;}
._4{margin-left:-0.955542pt;}
._6{width:0.969929pt;}
._2{width:2.666973pt;}
._45{width:4.569513pt;}
._4c{width:9.914800pt;}
._8{width:10.861568pt;}
._46{width:11.801618pt;}
._10{width:12.815974pt;}
._b{width:14.144506pt;}
._d{width:15.722592pt;}
._e{width:17.348500pt;}
._43{width:18.788325pt;}
._11{width:19.828795pt;}
._c{width:21.641921pt;}
._48{width:22.952963pt;}
._12{width:24.197325pt;}
._9{width:29.011008pt;}
._2e{width:31.009114pt;}
._4a{width:32.145989pt;}
._44{width:33.048398pt;}
._15{width:36.087669pt;}
._2d{width:38.945390pt;}
._47{width:41.816353pt;}
._3{width:48.357987pt;}
._4b{width:54.993920pt;}
._30{width:213.472051pt;}
._31{width:286.876979pt;}
._34{width:309.012565pt;}
._32{width:322.467997pt;}
._35{width:325.035136pt;}
._37{width:332.922965pt;}
._36{width:346.378397pt;}
._33{width:349.285239pt;}
._38{width:356.185024pt;}
._39{width:406.094234pt;}
._3b{width:416.614810pt;}
._3f{width:458.458010pt;}
._40{width:484.089958pt;}
._3e{width:497.814528pt;}
._3a{width:517.245478pt;}
._3d{width:542.287872pt;}
._1d{width:592.393620pt;}
._3c{width:615.931904pt;}
._1e{width:631.330202pt;}
._17{width:703.348326pt;}
._2a{width:748.634624pt;}
._2c{width:750.882202pt;}
._13{width:774.846175pt;}
._2b{width:782.507456pt;}
._1c{width:799.229030pt;}
._1f{width:813.240525pt;}
._1a{width:872.506201pt;}
._1b{width:874.546790pt;}
._18{width:881.480806pt;}
._20{width:889.945088pt;}
._19{width:904.721715pt;}
._23{width:931.070976pt;}
._22{width:943.026176pt;}
._24{width:945.751962pt;}
._29{width:951.729562pt;}
._21{width:954.981376pt;}
._26{width:956.416000pt;}
._28{width:957.707162pt;}
._27{width:959.046144pt;}
._25{width:969.662362pt;}
._41{width:1674.040626pt;}
._42{width:1731.052682pt;}
._2f{width:1923.499639pt;}
._49{width:2245.143733pt;}
._14{width:2266.397067pt;}
.fs7{font-size:31.880533pt;}
.fsf{font-size:37.027200pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs12{font-size:38.304000pt;}
.fs3{font-size:40.381867pt;}
.fs11{font-size:41.760000pt;}
.fs4{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fsc{font-size:42.560000pt;}
.fs14{font-size:43.200000pt;}
.fs10{font-size:46.492800pt;}
.fs9{font-size:47.820800pt;}
.fse{font-size:48.000000pt;}
.fs13{font-size:48.096000pt;}
.fsb{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fsd{font-size:53.440000pt;}
.fsa{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:131.946667pt;}
.y14a{bottom:-615.519240pt;}
.y172{bottom:-552.289596pt;}
.y171{bottom:-536.882042pt;}
.y170{bottom:-521.474489pt;}
.y16f{bottom:-506.139079pt;}
.y114{bottom:-500.093052pt;}
.y16e{bottom:-490.731526pt;}
.y16d{bottom:-475.396116pt;}
.yba{bottom:-467.472933pt;}
.y16c{bottom:-459.988562pt;}
.y123{bottom:-449.143409pt;}
.y16b{bottom:-444.581009pt;}
.y16a{bottom:-429.245599pt;}
.y169{bottom:-413.838046pt;}
.y168{bottom:-398.502636pt;}
.y167{bottom:-383.095082pt;}
.y166{bottom:-367.687529pt;}
.yce{bottom:-360.746909pt;}
.y165{bottom:-352.352119pt;}
.ycd{bottom:-343.627405pt;}
.y164{bottom:-336.944566pt;}
.ycc{bottom:-326.588061pt;}
.y163{bottom:-321.609156pt;}
.ycb{bottom:-309.468557pt;}
.y162{bottom:-306.201602pt;}
.yca{bottom:-292.429213pt;}
.y161{bottom:-290.794049pt;}
.y160{bottom:-275.458639pt;}
.yc9{bottom:-275.309709pt;}
.y15f{bottom:-260.051086pt;}
.yc8{bottom:-254.190221pt;}
.y15e{bottom:-244.643532pt;}
.yc7{bottom:-233.149557pt;}
.y15d{bottom:-229.308122pt;}
.y15c{bottom:-213.900569pt;}
.yc6{bottom:-200.030117pt;}
.y15b{bottom:-198.565159pt;}
.y122{bottom:-190.022762pt;}
.y15a{bottom:-183.157606pt;}
.yc5{bottom:-182.990773pt;}
.y121{bottom:-175.198533pt;}
.y159{bottom:-167.750052pt;}
.yc4{bottom:-165.871269pt;}
.y120{bottom:-160.304564pt;}
.y10b{bottom:-153.174172pt;}
.y158{bottom:-152.413440pt;}
.yc3{bottom:-148.751765pt;}
.y11f{bottom:-145.480335pt;}
.y157{bottom:-137.005886pt;}
.yc2{bottom:-131.712421pt;}
.y11e{bottom:-130.586367pt;}
.y156{bottom:-121.670477pt;}
.y11d{bottom:-115.692398pt;}
.yc1{bottom:-110.592933pt;}
.y155{bottom:-106.262923pt;}
.y11c{bottom:-100.867007pt;}
.y154{bottom:-87.183240pt;}
.y11b{bottom:-82.493052pt;}
.yc0{bottom:-77.953733pt;}
.ybf{bottom:-62.593733pt;}
.y153{bottom:-57.879960pt;}
.y11a{bottom:-54.096948pt;}
.y133{bottom:-49.082616pt;}
.ybe{bottom:-47.153333pt;}
.y152{bottom:-43.983600pt;}
.y119{bottom:-40.733748pt;}
.ybd{bottom:-31.793333pt;}
.y151{bottom:-30.159600pt;}
.y118{bottom:-27.300600pt;}
.ybc{bottom:-16.352933pt;}
.y150{bottom:-16.263240pt;}
.y117{bottom:-13.867452pt;}
.y0{bottom:0.000000pt;}
.y14f{bottom:1.664760pt;}
.y142{bottom:1.867027pt;}
.yb{bottom:3.044747pt;}
.ybb{bottom:3.647427pt;}
.y116{bottom:7.013216pt;}
.y10f{bottom:7.045828pt;}
.ya{bottom:12.578910pt;}
.y2{bottom:14.809859pt;}
.y115{bottom:19.123428pt;}
.y10e{bottom:19.156040pt;}
.y4d{bottom:28.346667pt;}
.y19a{bottom:84.393333pt;}
.y146{bottom:85.428000pt;}
.y27{bottom:91.398667pt;}
.y1ee{bottom:93.405333pt;}
.y226{bottom:94.521333pt;}
.y4c{bottom:100.601333pt;}
.y199{bottom:101.130667pt;}
.y145{bottom:102.524000pt;}
.y26{bottom:107.298667pt;}
.y1ed{bottom:109.028000pt;}
.yac{bottom:109.156000pt;}
.y225{bottom:109.864000pt;}
.y1c5{bottom:111.577333pt;}
.y4b{bottom:117.338667pt;}
.y198{bottom:117.868000pt;}
.y110{bottom:119.241333pt;}
.y144{bottom:119.620000pt;}
.y25{bottom:123.200000pt;}
.y1ec{bottom:124.649333pt;}
.y224{bottom:125.206667pt;}
.yab{bottom:125.893333pt;}
.y1c4{bottom:128.314667pt;}
.y4a{bottom:134.076000pt;}
.y197{bottom:134.605333pt;}
.y143{bottom:136.716000pt;}
.yd7{bottom:137.460000pt;}
.y24{bottom:139.100000pt;}
.y108{bottom:139.178667pt;}
.y223{bottom:140.549333pt;}
.yaa{bottom:142.630667pt;}
.y1c3{bottom:145.052000pt;}
.y100{bottom:146.617333pt;}
.y1eb{bottom:148.240000pt;}
.y196{bottom:151.342667pt;}
.yd6{bottom:154.197333pt;}
.y49{bottom:154.798667pt;}
.y23{bottom:155.000000pt;}
.y222{bottom:155.892000pt;}
.y130{bottom:156.653217pt;}
.ya9{bottom:159.368000pt;}
.y1c2{bottom:161.789333pt;}
.yff{bottom:163.354667pt;}
.y195{bottom:168.080000pt;}
.y22{bottom:170.901333pt;}
.yd5{bottom:170.934667pt;}
.y221{bottom:171.234667pt;}
.y1ea{bottom:171.832000pt;}
.y7b{bottom:176.194667pt;}
.y1c1{bottom:178.526667pt;}
.ya8{bottom:180.090667pt;}
.yfe{bottom:180.092000pt;}
.y194{bottom:184.817333pt;}
.y220{bottom:186.576000pt;}
.y21{bottom:186.801333pt;}
.y1e9{bottom:187.453333pt;}
.yd4{bottom:187.672000pt;}
.y7a{bottom:190.806667pt;}
.y1c0{bottom:195.264000pt;}
.yfd{bottom:196.829333pt;}
.y193{bottom:201.554667pt;}
.y21f{bottom:201.918667pt;}
.y20{bottom:202.701333pt;}
.y1e8{bottom:203.074667pt;}
.y14e{bottom:207.656040pt;}
.ya7{bottom:209.978667pt;}
.y79{bottom:211.820000pt;}
.y1bf{bottom:212.001333pt;}
.yfc{bottom:213.566667pt;}
.y21e{bottom:217.261333pt;}
.yd3{bottom:217.508000pt;}
.y192{bottom:218.292000pt;}
.y1e7{bottom:218.696000pt;}
.y14d{bottom:221.552400pt;}
.y48{bottom:221.598667pt;}
.ya6{bottom:226.716000pt;}
.y1be{bottom:228.738667pt;}
.y21d{bottom:232.604000pt;}
.y78{bottom:232.834667pt;}
.yfb{bottom:234.289333pt;}
.y1e6{bottom:234.317333pt;}
.yd2{bottom:234.604000pt;}
.y191{bottom:235.029333pt;}
.y14c{bottom:235.448760pt;}
.ya5{bottom:243.452000pt;}
.y1bd{bottom:245.476000pt;}
.y77{bottom:247.446667pt;}
.y21c{bottom:247.946667pt;}
.y14b{bottom:249.272760pt;}
.y1e5{bottom:249.938667pt;}
.yd1{bottom:251.700000pt;}
.y190{bottom:251.766667pt;}
.y47{bottom:254.833333pt;}
.ya4{bottom:260.189333pt;}
.y141{bottom:260.987674pt;}
.y1bc{bottom:262.213333pt;}
.y21b{bottom:263.289333pt;}
.y1e4{bottom:265.561333pt;}
.y76{bottom:268.460000pt;}
.y18f{bottom:268.504000pt;}
.yd0{bottom:268.796000pt;}
.yfa{bottom:270.924000pt;}
.y46{bottom:272.129333pt;}
.y1f{bottom:273.154667pt;}
.y140{bottom:275.811903pt;}
.ya3{bottom:276.926667pt;}
.y21a{bottom:278.632000pt;}
.y1bb{bottom:278.950667pt;}
.y1e3{bottom:281.182667pt;}
.y18e{bottom:285.241333pt;}
.ycf{bottom:285.892000pt;}
.y1e{bottom:289.054667pt;}
.yf9{bottom:289.122667pt;}
.y45{bottom:289.424000pt;}
.y75{bottom:289.474667pt;}
.y13f{bottom:290.705872pt;}
.y149{bottom:291.681228pt;}
.ya2{bottom:293.664000pt;}
.y219{bottom:293.974667pt;}
.y1ba{bottom:295.688000pt;}
.y1e2{bottom:296.804000pt;}
.y148{bottom:299.528760pt;}
.y18d{bottom:301.978667pt;}
.y74{bottom:304.086667pt;}
.y1d{bottom:304.954667pt;}
.y13e{bottom:305.530101pt;}
.yb7{bottom:305.829333pt;}
.y44{bottom:306.720000pt;}
.yf8{bottom:307.321333pt;}
.y218{bottom:309.317333pt;}
.ya1{bottom:310.401333pt;}
.y1b9{bottom:312.425333pt;}
.y18c{bottom:318.716000pt;}
.y13d{bottom:320.424069pt;}
.y1c{bottom:320.856000pt;}
.y43{bottom:324.014667pt;}
.y217{bottom:324.658667pt;}
.y73{bottom:325.100000pt;}
.ya0{bottom:327.138667pt;}
.y1e1{bottom:328.365333pt;}
.y1b8{bottom:329.162667pt;}
.yf7{bottom:333.653333pt;}
.y13c{bottom:335.318038pt;}
.y18b{bottom:335.453333pt;}
.y216{bottom:340.001333pt;}
.y42{bottom:341.309333pt;}
.y9f{bottom:343.876000pt;}
.y1e0{bottom:345.102667pt;}
.y1b7{bottom:345.900000pt;}
.y72{bottom:346.113333pt;}
.y13b{bottom:350.143429pt;}
.y18a{bottom:352.190667pt;}
.y1b{bottom:354.688000pt;}
.y10d{bottom:355.045599pt;}
.y215{bottom:355.344000pt;}
.yf6{bottom:357.698667pt;}
.y41{bottom:358.605333pt;}
.y9e{bottom:360.613333pt;}
.y71{bottom:360.725333pt;}
.y1df{bottom:361.840000pt;}
.y1b6{bottom:362.637333pt;}
.y10c{bottom:367.155811pt;}
.y13a{bottom:368.517384pt;}
.y189{bottom:368.928000pt;}
.y1a{bottom:370.589333pt;}
.y214{bottom:370.686667pt;}
.yf5{bottom:375.897333pt;}
.y40{bottom:375.900000pt;}
.y113{bottom:376.867400pt;}
.y9d{bottom:377.350667pt;}
.y1de{bottom:378.577333pt;}
.y1b5{bottom:379.374667pt;}
.y70{bottom:381.740000pt;}
.y112{bottom:384.453348pt;}
.y188{bottom:385.665333pt;}
.y213{bottom:386.029333pt;}
.y19{bottom:386.489333pt;}
.y3f{bottom:393.194667pt;}
.y9c{bottom:394.088000pt;}
.yf4{bottom:394.094667pt;}
.y1dd{bottom:395.314667pt;}
.y1b4{bottom:396.112000pt;}
.y139{bottom:396.913488pt;}
.y249{bottom:398.901333pt;}
.y212{bottom:401.372000pt;}
.y187{bottom:402.402667pt;}
.y6f{bottom:402.753333pt;}
.yf3{bottom:408.706667pt;}
.y138{bottom:410.276688pt;}
.y3e{bottom:410.490667pt;}
.y9b{bottom:410.825333pt;}
.y1dc{bottom:412.052000pt;}
.y1b3{bottom:412.848000pt;}
.y248{bottom:414.244000pt;}
.y211{bottom:416.714667pt;}
.y18{bottom:418.330667pt;}
.y186{bottom:419.140000pt;}
.y12f{bottom:422.344000pt;}
.y137{bottom:423.709836pt;}
.yf2{bottom:426.905333pt;}
.y3d{bottom:427.785333pt;}
.y1db{bottom:428.789333pt;}
.y1b2{bottom:429.585333pt;}
.y6e{bottom:430.860000pt;}
.y9a{bottom:431.548000pt;}
.y210{bottom:432.057333pt;}
.y185{bottom:435.877333pt;}
.y136{bottom:437.142984pt;}
.y12e{bottom:439.080000pt;}
.y247{bottom:444.928000pt;}
.y3c{bottom:445.081333pt;}
.yf1{bottom:445.104000pt;}
.y1b1{bottom:446.322667pt;}
.y20f{bottom:447.400000pt;}
.y1da{bottom:449.512000pt;}
.y17{bottom:450.170667pt;}
.y184{bottom:452.613333pt;}
.y12d{bottom:455.817333pt;}
.y135{bottom:458.023652pt;}
.y246{bottom:460.270667pt;}
.y3b{bottom:462.376000pt;}
.y20e{bottom:462.741333pt;}
.y1b0{bottom:463.060000pt;}
.y6d{bottom:463.841333pt;}
.y16{bottom:466.070667pt;}
.y99{bottom:469.169333pt;}
.y183{bottom:469.350667pt;}
.y134{bottom:470.133864pt;}
.yf0{bottom:471.436000pt;}
.y12c{bottom:472.554667pt;}
.y245{bottom:475.613333pt;}
.y20d{bottom:478.084000pt;}
.y1d9{bottom:479.398667pt;}
.y3a{bottom:479.670667pt;}
.y1af{bottom:479.797333pt;}
.y6c{bottom:480.578667pt;}
.y15{bottom:481.972000pt;}
.y98{bottom:483.781333pt;}
.y182{bottom:486.088000pt;}
.y12b{bottom:489.292000pt;}
.y244{bottom:490.956000pt;}
.y20c{bottom:493.426667pt;}
.y1d8{bottom:496.136000pt;}
.y1ae{bottom:496.534667pt;}
.y39{bottom:496.966667pt;}
.y6b{bottom:497.316000pt;}
.y14{bottom:497.872000pt;}
.yef{bottom:497.952000pt;}
.y97{bottom:498.393333pt;}
.y181{bottom:502.825333pt;}
.y12a{bottom:506.029333pt;}
.y243{bottom:506.298667pt;}
.y20b{bottom:508.769333pt;}
.y1d7{bottom:512.873333pt;}
.y1ad{bottom:513.272000pt;}
.y13{bottom:513.772000pt;}
.y6a{bottom:514.053333pt;}
.y38{bottom:514.261333pt;}
.yee{bottom:515.048000pt;}
.y96{bottom:519.406667pt;}
.y180{bottom:519.562667pt;}
.y242{bottom:521.641333pt;}
.y129{bottom:522.766667pt;}
.y20a{bottom:524.112000pt;}
.y1d6{bottom:529.610667pt;}
.y12{bottom:529.673333pt;}
.y1ac{bottom:530.009333pt;}
.y69{bottom:530.790667pt;}
.y17f{bottom:536.300000pt;}
.y241{bottom:536.984000pt;}
.y209{bottom:539.454667pt;}
.y95{bottom:540.420000pt;}
.yb9{bottom:540.527587pt;}
.y128{bottom:543.489333pt;}
.y11{bottom:545.573333pt;}
.y1d5{bottom:546.348000pt;}
.y1ab{bottom:546.746667pt;}
.y37{bottom:547.497333pt;}
.y68{bottom:547.528000pt;}
.yb8{bottom:549.247067pt;}
.y240{bottom:552.325333pt;}
.y17e{bottom:553.037333pt;}
.y208{bottom:554.797333pt;}
.y94{bottom:555.032000pt;}
.yed{bottom:557.329333pt;}
.y10{bottom:561.473333pt;}
.y1d4{bottom:563.085333pt;}
.y1aa{bottom:563.484000pt;}
.y67{bottom:564.265333pt;}
.y36{bottom:564.792000pt;}
.y23f{bottom:567.668000pt;}
.y93{bottom:569.644000pt;}
.y17d{bottom:569.774667pt;}
.y207{bottom:570.140000pt;}
.yec{bottom:571.941333pt;}
.y127{bottom:573.193333pt;}
.yf{bottom:577.374667pt;}
.y1d3{bottom:579.822667pt;}
.y1a9{bottom:580.221333pt;}
.y35{bottom:582.086667pt;}
.y23e{bottom:583.010667pt;}
.y92{bottom:584.256000pt;}
.y66{bottom:584.988000pt;}
.y206{bottom:585.481333pt;}
.y17c{bottom:586.512000pt;}
.yeb{bottom:586.553333pt;}
.y126{bottom:590.288000pt;}
.ye{bottom:593.274667pt;}
.y1d2{bottom:596.560000pt;}
.y1a8{bottom:596.958667pt;}
.y23d{bottom:598.353333pt;}
.y34{bottom:599.382667pt;}
.y205{bottom:600.824000pt;}
.yea{bottom:601.165333pt;}
.y65{bottom:602.920000pt;}
.y17b{bottom:603.249333pt;}
.y91{bottom:605.270667pt;}
.y125{bottom:607.384000pt;}
.yd{bottom:609.174667pt;}
.y1d0{bottom:613.297333pt;}
.y1a7{bottom:613.696000pt;}
.ye9{bottom:615.777333pt;}
.y204{bottom:616.166667pt;}
.y33{bottom:616.677333pt;}
.y1d1{bottom:618.120000pt;}
.y17a{bottom:619.986667pt;}
.y124{bottom:624.480000pt;}
.yc{bottom:625.076000pt;}
.y90{bottom:626.284000pt;}
.y23c{bottom:629.038667pt;}
.y1cf{bottom:630.034667pt;}
.y1a6{bottom:630.433333pt;}
.y203{bottom:631.509333pt;}
.y64{bottom:632.808000pt;}
.y32{bottom:633.973333pt;}
.y179{bottom:636.724000pt;}
.ye8{bottom:636.792000pt;}
.y8f{bottom:640.896000pt;}
.y23b{bottom:644.381333pt;}
.y111{bottom:644.417333pt;}
.y9{bottom:644.961301pt;}
.y1ce{bottom:646.772000pt;}
.y202{bottom:646.852000pt;}
.y1a5{bottom:647.170667pt;}
.y63{bottom:649.545333pt;}
.y31{bottom:651.268000pt;}
.y178{bottom:653.461333pt;}
.y23a{bottom:659.724000pt;}
.y8e{bottom:661.910667pt;}
.y201{bottom:662.194667pt;}
.y1cd{bottom:663.509333pt;}
.y1a4{bottom:663.908000pt;}
.ye7{bottom:664.897333pt;}
.y62{bottom:666.282667pt;}
.y30{bottom:668.562667pt;}
.y177{bottom:674.184000pt;}
.y239{bottom:675.066667pt;}
.y200{bottom:677.537333pt;}
.y1cc{bottom:680.246667pt;}
.y1a3{bottom:680.645333pt;}
.ye6{bottom:681.993333pt;}
.y8d{bottom:682.924000pt;}
.y61{bottom:683.020000pt;}
.y238{bottom:690.408000pt;}
.y1ff{bottom:692.880000pt;}
.y1cb{bottom:696.984000pt;}
.y1a2{bottom:697.382667pt;}
.y8c{bottom:697.536000pt;}
.y60{bottom:699.757333pt;}
.y2f{bottom:702.861333pt;}
.y176{bottom:703.886667pt;}
.y237{bottom:705.750667pt;}
.y1fd{bottom:708.221333pt;}
.y1fe{bottom:708.222667pt;}
.y8b{bottom:712.148000pt;}
.y1ca{bottom:713.721333pt;}
.y1a1{bottom:714.120000pt;}
.y5f{bottom:716.494667pt;}
.y2e{bottom:717.208000pt;}
.y175{bottom:720.982667pt;}
.y236{bottom:721.093333pt;}
.y1fc{bottom:723.564000pt;}
.y10a{bottom:723.786280pt;}
.ye5{bottom:724.276000pt;}
.y8a{bottom:726.760000pt;}
.y1c9{bottom:730.458667pt;}
.y1a0{bottom:730.857333pt;}
.y109{bottom:731.372228pt;}
.y5e{bottom:733.232000pt;}
.y2d{bottom:735.410667pt;}
.y235{bottom:736.436000pt;}
.y174{bottom:738.078667pt;}
.ye4{bottom:738.888000pt;}
.y1fb{bottom:738.906667pt;}
.y89{bottom:741.372000pt;}
.y2c{bottom:745.900000pt;}
.y1c8{bottom:747.196000pt;}
.y19f{bottom:747.594667pt;}
.y5d{bottom:749.969333pt;}
.y234{bottom:751.778667pt;}
.ye3{bottom:753.500000pt;}
.y1fa{bottom:754.249333pt;}
.y173{bottom:755.174667pt;}
.y88{bottom:755.984000pt;}
.y2b{bottom:760.246667pt;}
.y1c7{bottom:763.933333pt;}
.y19e{bottom:764.332000pt;}
.y5c{bottom:766.706667pt;}
.y233{bottom:767.121333pt;}
.y1f9{bottom:769.592000pt;}
.ye2{bottom:774.513333pt;}
.y2a{bottom:774.592000pt;}
.y147{bottom:775.112000pt;}
.y87{bottom:776.997333pt;}
.y19d{bottom:781.069333pt;}
.y232{bottom:782.464000pt;}
.y5b{bottom:783.444000pt;}
.y1c6{bottom:784.656000pt;}
.y1f8{bottom:784.934667pt;}
.y29{bottom:788.938667pt;}
.ye1{bottom:795.526667pt;}
.y19c{bottom:797.806667pt;}
.y86{bottom:798.010667pt;}
.y5a{bottom:800.181333pt;}
.y1f7{bottom:800.277333pt;}
.y28{bottom:807.142667pt;}
.ye0{bottom:810.138667pt;}
.y85{bottom:812.622667pt;}
.y231{bottom:813.149333pt;}
.y19b{bottom:814.544000pt;}
.y1f6{bottom:815.620000pt;}
.y59{bottom:816.918667pt;}
.y84{bottom:827.234667pt;}
.y132{bottom:827.877836pt;}
.y230{bottom:828.490667pt;}
.y1f5{bottom:830.962667pt;}
.ydf{bottom:831.153333pt;}
.yb6{bottom:831.281333pt;}
.y58{bottom:833.656000pt;}
.y131{bottom:835.463784pt;}
.y83{bottom:841.846667pt;}
.y8{bottom:842.869333pt;}
.y22f{bottom:843.833333pt;}
.y1f4{bottom:846.304000pt;}
.yb5{bottom:848.018667pt;}
.y57{bottom:850.393333pt;}
.yde{bottom:852.166667pt;}
.y22e{bottom:859.176000pt;}
.y107{bottom:859.574667pt;}
.y7{bottom:859.606667pt;}
.y82{bottom:862.861333pt;}
.yb4{bottom:864.754667pt;}
.y1f3{bottom:865.632000pt;}
.ydd{bottom:866.778667pt;}
.y56{bottom:867.130667pt;}
.y22d{bottom:874.518667pt;}
.y106{bottom:876.312000pt;}
.ydc{bottom:881.390667pt;}
.yb3{bottom:881.492000pt;}
.y55{bottom:883.868000pt;}
.y81{bottom:883.874667pt;}
.y22c{bottom:889.861333pt;}
.y105{bottom:893.049333pt;}
.y1f2{bottom:895.520000pt;}
.ydb{bottom:896.002667pt;}
.yb2{bottom:898.229333pt;}
.y80{bottom:898.486667pt;}
.y6{bottom:900.404000pt;}
.y54{bottom:900.605333pt;}
.y22b{bottom:905.204000pt;}
.y104{bottom:909.786667pt;}
.y7f{bottom:913.098667pt;}
.yb1{bottom:914.966667pt;}
.yda{bottom:917.017333pt;}
.y53{bottom:917.342667pt;}
.y1f1{bottom:919.112000pt;}
.y22a{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.y103{bottom:926.524000pt;}
.yb0{bottom:931.704000pt;}
.y52{bottom:934.080000pt;}
.y7e{bottom:934.112000pt;}
.y229{bottom:935.889333pt;}
.yd9{bottom:938.030667pt;}
.y1f0{bottom:942.702667pt;}
.y102{bottom:943.261333pt;}
.yaf{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y51{bottom:950.817333pt;}
.y228{bottom:951.230667pt;}
.y7d{bottom:955.126667pt;}
.y1ef{bottom:958.325333pt;}
.y101{bottom:963.984000pt;}
.yae{bottom:965.178667pt;}
.yd8{bottom:966.137333pt;}
.y227{bottom:966.573333pt;}
.y50{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.yad{bottom:981.916000pt;}
.y7c{bottom:983.233333pt;}
.y4f{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4e{bottom:1043.020000pt;}
.h7{height:22.673858pt;}
.hc{height:23.304670pt;}
.h1e{height:26.920655pt;}
.h1d{height:27.047213pt;}
.ha{height:27.188522pt;}
.hb{height:27.262909pt;}
.h27{height:27.848953pt;}
.h26{height:27.979875pt;}
.h9{height:29.433775pt;}
.h2c{height:29.519145pt;}
.h23{height:30.361641pt;}
.h8{height:30.399505pt;}
.h22{height:30.504375pt;}
.h17{height:30.943281pt;}
.hd{height:31.072763pt;}
.h16{height:31.088750pt;}
.h12{height:31.157778pt;}
.h2a{height:31.408594pt;}
.h29{height:31.556250pt;}
.h1f{height:33.802627pt;}
.h20{height:33.961537pt;}
.he{height:34.574438pt;}
.h1a{height:34.898438pt;}
.hf{height:34.957005pt;}
.h28{height:34.968234pt;}
.h14{height:35.052646pt;}
.h19{height:35.062500pt;}
.h2b{height:35.132625pt;}
.h13{height:36.873667pt;}
.h10{height:38.415786pt;}
.h1b{height:38.462187pt;}
.h11{height:38.840857pt;}
.h18{height:38.853594pt;}
.h4{height:38.947124pt;}
.h2{height:44.738497pt;}
.h6{height:48.486756pt;}
.h5{height:69.148877pt;}
.h3{height:82.466667pt;}
.h25{height:190.866000pt;}
.h24{height:246.005956pt;}
.h21{height:350.785160pt;}
.h15{height:504.438667pt;}
.h1c{height:700.715400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:154.596137pt;}
.w4{width:481.748000pt;}
.w6{width:482.899300pt;}
.w5{width:548.804816pt;}
.w7{width:564.142220pt;}
.w8{width:632.293200pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x26{left:-175.418667pt;}
.x44{left:-29.611900pt;}
.x40{left:-27.776664pt;}
.x50{left:-21.259900pt;}
.x46{left:-4.973500pt;}
.x28{left:-1.578667pt;}
.x0{left:0.000000pt;}
.x52{left:3.378500pt;}
.x3{left:26.021437pt;}
.x5c{left:28.629600pt;}
.x1{left:48.000000pt;}
.x2{left:50.159690pt;}
.x48{left:76.346667pt;}
.x5b{left:80.706667pt;}
.x60{left:85.850667pt;}
.x4f{left:114.781913pt;}
.x3f{left:122.449971pt;}
.x49{left:127.261333pt;}
.x53{left:129.980900pt;}
.x62{left:139.778667pt;}
.x63{left:145.086667pt;}
.x47{left:146.267218pt;}
.x43{left:155.403247pt;}
.x5e{left:159.597600pt;}
.x5f{left:185.086075pt;}
.x55{left:194.010667pt;}
.x56{left:199.988000pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.x37{left:231.138667pt;}
.x5{left:241.085333pt;}
.x2a{left:242.916000pt;}
.x7c{left:247.368000pt;}
.x9{left:251.365333pt;}
.x2b{left:256.969333pt;}
.x38{left:258.304000pt;}
.x31{left:263.006667pt;}
.x34{left:266.533333pt;}
.x35{left:267.484000pt;}
.x29{left:268.732000pt;}
.x8{left:275.054667pt;}
.x1c{left:286.514667pt;}
.x23{left:287.506667pt;}
.x32{left:289.426667pt;}
.x61{left:290.666667pt;}
.x33{left:293.432000pt;}
.x1e{left:296.102667pt;}
.x25{left:298.612000pt;}
.x1a{left:302.265333pt;}
.x4a{left:305.372000pt;}
.xc{left:307.245333pt;}
.xd{left:313.886667pt;}
.x30{left:318.998667pt;}
.xe{left:320.396000pt;}
.x1d{left:326.116000pt;}
.xf{left:327.037333pt;}
.x7{left:328.432000pt;}
.x24{left:330.957333pt;}
.x7d{left:337.113333pt;}
.x1b{left:338.077333pt;}
.x18{left:345.530667pt;}
.x22{left:346.792000pt;}
.x80{left:348.496000pt;}
.x12{left:350.128000pt;}
.x19{left:356.445333pt;}
.x13{left:357.910667pt;}
.x14{left:364.444000pt;}
.x15{left:366.852000pt;}
.x71{left:369.633333pt;}
.x1f{left:371.037333pt;}
.x21{left:372.046667pt;}
.x20{left:374.701333pt;}
.x72{left:376.408000pt;}
.x74{left:381.570667pt;}
.x83{left:384.686667pt;}
.x82{left:386.433333pt;}
.x73{left:389.692000pt;}
.x75{left:394.853333pt;}
.xa{left:397.729333pt;}
.xb{left:404.370667pt;}
.x39{left:407.596000pt;}
.x4b{left:412.286667pt;}
.x36{left:415.558667pt;}
.x6f{left:418.828000pt;}
.x70{left:432.112000pt;}
.x81{left:435.877333pt;}
.x59{left:451.582667pt;}
.x5a{left:456.890667pt;}
.x3d{left:464.796000pt;}
.x10{left:476.700000pt;}
.x3e{left:479.250667pt;}
.x27{left:485.941413pt;}
.x2e{left:488.456000pt;}
.x76{left:489.980000pt;}
.x11{left:491.412000pt;}
.x2f{left:492.460000pt;}
.x2c{left:494.648000pt;}
.x2d{left:498.521333pt;}
.x77{left:503.264000pt;}
.x78{left:506.578667pt;}
.x3c{left:511.958667pt;}
.x79{left:519.861333pt;}
.x7a{left:523.176000pt;}
.x7b{left:536.460000pt;}
.x69{left:539.420000pt;}
.x45{left:551.406725pt;}
.x41{left:552.615720pt;}
.x42{left:557.558256pt;}
.x51{left:559.758725pt;}
.x54{left:561.776549pt;}
.x6a{left:572.650667pt;}
.x85{left:574.597333pt;}
.x16{left:580.713333pt;}
.x4c{left:584.242667pt;}
.x95{left:585.981333pt;}
.x17{left:588.526667pt;}
.x4d{left:589.550667pt;}
.x3a{left:596.236000pt;}
.x86{left:598.508000pt;}
.x64{left:603.317333pt;}
.x65{left:606.634667pt;}
.x57{left:607.897333pt;}
.x96{left:609.892000pt;}
.x3b{left:610.789333pt;}
.x58{left:615.202667pt;}
.x66{left:619.918667pt;}
.x7e{left:622.388000pt;}
.x5d{left:631.197480pt;}
.x87{left:634.876000pt;}
.x7f{left:635.792000pt;}
.x8a{left:639.894667pt;}
.x91{left:642.289333pt;}
.x67{left:646.482667pt;}
.x89{left:649.525333pt;}
.x8c{left:654.264000pt;}
.x4e{left:656.316000pt;}
.x88{left:658.786667pt;}
.x68{left:659.765333pt;}
.x8b{left:663.805333pt;}
.x92{left:666.198667pt;}
.x84{left:673.853333pt;}
.x8d{left:678.174667pt;}
.x93{left:680.156000pt;}
.x8e{left:695.976000pt;}
.x90{left:702.174667pt;}
.x6b{left:710.172000pt;}
.x8f{left:719.885333pt;}
.x6c{left:723.454667pt;}
.x94{left:725.293333pt;}
.x6d{left:726.842667pt;}
.x6e{left:740.126667pt;}
}




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