
    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_c81efd480eb705df34b4813a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;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_4617039123eba26410c77a6f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5a1640365da77999b03d1b31.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9acccc7b9fa38bf6157536b7.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cd14e21512e9770ccedb1724.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_33a6ca99048ff33ad2ac0f0a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9e5d3a66f10c4de827552d7a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ae7275f085a7758a9c7008c0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.738281;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_a6d61d013cf5e38c133c45e0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_69bed75dd945c9be629f51bc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_53f5d783db399dcbbefabad4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d667df1639c6f632edefbe2b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a6d61d013cf5e38c133c45e0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_89a5aa9403dc1a96e0574c6a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.738281;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_0611015020518b5ea04b9822.woff2')format("woff");}.fff{font-family:fff;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_dffbc3af55b47e3927cc7a2a.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_021a8018cdcee2a0c72fd56c.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_c18d537b8b0e372c898dfd7c.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_a6d61d013cf5e38c133c45e0.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_fe235fc7ec7246614201a89b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.738281;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_02dcbbc3ea14c66ffe09850a.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m1c{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);}
.m8{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);}
.m2{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);}
.m29{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);}
.m22{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);}
.m2a{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);}
.m20{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);}
.m7{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);}
.m1d{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);}
.m24{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);}
.m5{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);}
.m19{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m17{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.mf{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);}
.m25{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);}
.m27{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);}
.m26{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);}
.m16{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);}
.m28{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);}
.mc{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);}
.m9{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);}
.m1f{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);}
.m13{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);}
.md{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);}
.m3{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);}
.m1b{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);}
.m23{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);}
.m1e{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);}
.m1a{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);}
.m12{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.mb{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);}
.m10{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);}
.me{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.vb{vertical-align:-5.038200px;}
.v6{vertical-align:-1.248000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.248000px;}
.v7{vertical-align:18.276000px;}
.v4{vertical-align:19.524000px;}
.v1{vertical-align:21.696000px;}
.v9{vertical-align:30.054000px;}
.v8{vertical-align:31.302000px;}
.va{vertical-align:49.578000px;}
.ls8f{letter-spacing:-0.390780px;}
.ls93{letter-spacing:-0.342684px;}
.ls8b{letter-spacing:-0.252504px;}
.ls3b{letter-spacing:-0.246191px;}
.ls40{letter-spacing:-0.233566px;}
.ls2d{letter-spacing:-0.202003px;}
.ls8a{letter-spacing:-0.198396px;}
.ls94{letter-spacing:-0.192384px;}
.ls2b{letter-spacing:-0.170440px;}
.ls92{letter-spacing:-0.162324px;}
.ls27{letter-spacing:-0.157815px;}
.ls2c{letter-spacing:-0.145190px;}
.ls3a{letter-spacing:-0.138877px;}
.ls2a{letter-spacing:-0.132565px;}
.ls45{letter-spacing:-0.126252px;}
.ls3d{letter-spacing:-0.119939px;}
.ls24{letter-spacing:-0.113627px;}
.ls44{letter-spacing:-0.107314px;}
.ls42{letter-spacing:-0.102060px;}
.ls26{letter-spacing:-0.101002px;}
.ls1d{letter-spacing:-0.095521px;}
.ls39{letter-spacing:-0.094689px;}
.ls21{letter-spacing:-0.088376px;}
.ls83{letter-spacing:-0.086184px;}
.ls43{letter-spacing:-0.085050px;}
.ls87{letter-spacing:-0.084168px;}
.ls41{letter-spacing:-0.073710px;}
.ls8d{letter-spacing:-0.072144px;}
.ls3e{letter-spacing:-0.063126px;}
.ls8c{letter-spacing:-0.060120px;}
.ls20{letter-spacing:-0.050501px;}
.ls91{letter-spacing:-0.048096px;}
.ls1e{letter-spacing:-0.045247px;}
.ls46{letter-spacing:-0.044188px;}
.ls88{letter-spacing:-0.042084px;}
.ls3c{letter-spacing:-0.037876px;}
.ls1c{letter-spacing:-0.035192px;}
.ls84{letter-spacing:-0.033516px;}
.ls90{letter-spacing:-0.030060px;}
.ls1f{letter-spacing:-0.025250px;}
.ls86{letter-spacing:-0.024048px;}
.ls82{letter-spacing:-0.023940px;}
.ls23{letter-spacing:-0.018938px;}
.ls8e{letter-spacing:-0.018036px;}
.ls85{letter-spacing:-0.016200px;}
.ls22{letter-spacing:-0.012625px;}
.ls95{letter-spacing:-0.012024px;}
.ls28{letter-spacing:-0.006313px;}
.ls89{letter-spacing:-0.006012px;}
.lsc{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000455px;}
.ls1{letter-spacing:0.000600px;}
.ls61{letter-spacing:0.000689px;}
.ls98{letter-spacing:0.003646px;}
.ls74{letter-spacing:0.006012px;}
.ls16{letter-spacing:0.006313px;}
.ls6b{letter-spacing:0.010800px;}
.ls12{letter-spacing:0.011340px;}
.ls76{letter-spacing:0.012024px;}
.ls31{letter-spacing:0.012625px;}
.ls6d{letter-spacing:0.016200px;}
.ls7b{letter-spacing:0.018036px;}
.ls17{letter-spacing:0.018938px;}
.ls6f{letter-spacing:0.021600px;}
.ls75{letter-spacing:0.024048px;}
.ls2f{letter-spacing:0.025250px;}
.ls6a{letter-spacing:0.027000px;}
.ls73{letter-spacing:0.030060px;}
.ls15{letter-spacing:0.031563px;}
.ls38{letter-spacing:0.034020px;}
.ls71{letter-spacing:0.036072px;}
.ls70{letter-spacing:0.037800px;}
.ls18{letter-spacing:0.037876px;}
.ls7c{letter-spacing:0.042084px;}
.ls1a{letter-spacing:0.044188px;}
.ls77{letter-spacing:0.048096px;}
.lsf{letter-spacing:0.050501px;}
.ls81{letter-spacing:0.054108px;}
.ls13{letter-spacing:0.056700px;}
.ls25{letter-spacing:0.056813px;}
.ls78{letter-spacing:0.060120px;}
.ls10{letter-spacing:0.063126px;}
.ls7d{letter-spacing:0.066132px;}
.ls36{letter-spacing:0.068040px;}
.ls33{letter-spacing:0.069439px;}
.ls7e{letter-spacing:0.072144px;}
.ls29{letter-spacing:0.075751px;}
.ls72{letter-spacing:0.084168px;}
.ls34{letter-spacing:0.088376px;}
.ls7a{letter-spacing:0.090180px;}
.ls30{letter-spacing:0.094689px;}
.ls79{letter-spacing:0.096192px;}
.ls6e{letter-spacing:0.102600px;}
.ls14{letter-spacing:0.107314px;}
.ls11{letter-spacing:0.113627px;}
.ls7f{letter-spacing:0.120240px;}
.ls37{letter-spacing:0.130410px;}
.ls6c{letter-spacing:0.140400px;}
.ls35{letter-spacing:0.145190px;}
.ls1b{letter-spacing:0.176753px;}
.ls80{letter-spacing:0.180360px;}
.ls32{letter-spacing:0.189378px;}
.lse{letter-spacing:0.191041px;}
.ls68{letter-spacing:0.191520px;}
.ls49{letter-spacing:0.648088px;}
.ls9f{letter-spacing:0.806976px;}
.ls59{letter-spacing:0.896634px;}
.ls4d{letter-spacing:2.988600px;}
.ls2{letter-spacing:2.989200px;}
.ls19{letter-spacing:3.118424px;}
.ls5f{letter-spacing:3.507900px;}
.ls60{letter-spacing:3.513900px;}
.ls0{letter-spacing:10.461300px;}
.lsb{letter-spacing:11.954850px;}
.ls62{letter-spacing:12.530693px;}
.ls9d{letter-spacing:12.736114px;}
.ls97{letter-spacing:13.129399px;}
.lsa1{letter-spacing:13.140371px;}
.ls9{letter-spacing:13.258280px;}
.lsa{letter-spacing:13.337852px;}
.ls96{letter-spacing:13.448400px;}
.ls9a{letter-spacing:13.454400px;}
.ls7{letter-spacing:13.479832px;}
.ls6{letter-spacing:14.094088px;}
.ls48{letter-spacing:14.100088px;}
.ls52{letter-spacing:14.723476px;}
.ls53{letter-spacing:14.729411px;}
.ls47{letter-spacing:14.843276px;}
.ls4f{letter-spacing:14.941200px;}
.ls55{letter-spacing:14.944200px;}
.ls63{letter-spacing:14.947200px;}
.ls54{letter-spacing:15.172806px;}
.ls50{letter-spacing:15.204037px;}
.ls51{letter-spacing:15.210159px;}
.ls5b{letter-spacing:15.240771px;}
.ls9e{letter-spacing:15.362165px;}
.ls5c{letter-spacing:15.777225px;}
.ls5d{letter-spacing:16.066200px;}
.ls67{letter-spacing:16.193172px;}
.ls5a{letter-spacing:16.229253px;}
.ls4c{letter-spacing:16.434600px;}
.ls56{letter-spacing:16.440600px;}
.ls5e{letter-spacing:16.565141px;}
.ls99{letter-spacing:16.568047px;}
.ls66{letter-spacing:16.779483px;}
.ls64{letter-spacing:16.785483px;}
.lsa0{letter-spacing:17.279812px;}
.ls3{letter-spacing:17.929200px;}
.ls9c{letter-spacing:18.238635px;}
.ls65{letter-spacing:23.806318px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls58{letter-spacing:299.826600px;}
.ls57{letter-spacing:309.024600px;}
.ls4a{letter-spacing:341.316088px;}
.ls4b{letter-spacing:347.478088px;}
.ls4e{letter-spacing:479.521133px;}
.ls3f{letter-spacing:1271.307139px;}
.ls69{letter-spacing:1557.111600px;}
.lsd{letter-spacing:2653.583700px;}
.ls9b{letter-spacing:2654.783700px;}
.ls2e{letter-spacing:2655.977700px;}
.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;}
}
.ws81{word-spacing:-63.126000px;}
.ws86{word-spacing:-56.700000px;}
.wsf3{word-spacing:-15.840534px;}
.ws82{word-spacing:-15.781500px;}
.wsb1{word-spacing:-14.943900px;}
.ws171{word-spacing:-14.256576px;}
.ws85{word-spacing:-14.175000px;}
.ws83{word-spacing:-14.101290px;}
.ws87{word-spacing:-13.449600px;}
.ws45{word-spacing:-12.568500px;}
.ws44{word-spacing:-12.533308px;}
.wsf9{word-spacing:-11.970000px;}
.ws2c{word-spacing:-11.955150px;}
.wsf8{word-spacing:-11.946060px;}
.wsa{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws94{word-spacing:-3.591869px;}
.ws115{word-spacing:-3.541068px;}
.ws7a{word-spacing:-3.351991px;}
.ws60{word-spacing:-3.314115px;}
.wsf6{word-spacing:-3.227882px;}
.ws79{word-spacing:-3.175238px;}
.ws149{word-spacing:-3.168107px;}
.ws93{word-spacing:-3.061611px;}
.ws7b{word-spacing:-2.992172px;}
.ws3f{word-spacing:-2.988780px;}
.ws10b{word-spacing:-2.819628px;}
.ws14d{word-spacing:-2.743718px;}
.wsfd{word-spacing:-2.510575px;}
.ws10c{word-spacing:-2.507004px;}
.ws3b{word-spacing:-2.151922px;}
.ws10d{word-spacing:-2.092176px;}
.ws69{word-spacing:-2.083158px;}
.wsf7{word-spacing:-1.793268px;}
.ws124{word-spacing:-1.749492px;}
.ws74{word-spacing:-1.660214px;}
.ws75{word-spacing:-1.647589px;}
.ws48{word-spacing:-1.613941px;}
.ws76{word-spacing:-1.590775px;}
.wsd4{word-spacing:-1.494390px;}
.wsa6{word-spacing:-1.470836px;}
.ws11f{word-spacing:-1.382760px;}
.wsfc{word-spacing:-1.374839px;}
.ws12a{word-spacing:-1.358712px;}
.ws129{word-spacing:-1.328652px;}
.ws116{word-spacing:-1.322640px;}
.wsa5{word-spacing:-1.306708px;}
.ws117{word-spacing:-1.148292px;}
.ws153{word-spacing:-1.129766px;}
.ws154{word-spacing:-1.075968px;}
.wsad{word-spacing:-1.054204px;}
.ws16a{word-spacing:-0.968371px;}
.wsd5{word-spacing:-0.956410px;}
.wsce{word-spacing:-0.908591px;}
.wsf0{word-spacing:-0.896634px;}
.wscf{word-spacing:-0.836858px;}
.ws147{word-spacing:-0.777083px;}
.ws56{word-spacing:-0.725949px;}
.wsa3{word-spacing:-0.719636px;}
.wscd{word-spacing:-0.717309px;}
.wsd8{word-spacing:-0.717307px;}
.ws55{word-spacing:-0.713324px;}
.ws16b{word-spacing:-0.699379px;}
.ws121{word-spacing:-0.685368px;}
.ws95{word-spacing:-0.669136px;}
.wsd6{word-spacing:-0.657532px;}
.ws100{word-spacing:-0.597756px;}
.ws54{word-spacing:-0.574447px;}
.wsa7{word-spacing:-0.568134px;}
.ws120{word-spacing:-0.553104px;}
.wsd0{word-spacing:-0.537980px;}
.wsd1{word-spacing:-0.534165px;}
.wsd2{word-spacing:-0.478205px;}
.ws162{word-spacing:-0.430387px;}
.ws7d{word-spacing:-0.418429px;}
.ws8b{word-spacing:-0.378756px;}
.wsac{word-spacing:-0.372443px;}
.ws25{word-spacing:-0.358654px;}
.ws157{word-spacing:-0.322790px;}
.ws30{word-spacing:-0.298878px;}
.ws64{word-spacing:-0.290380px;}
.ws50{word-spacing:-0.286562px;}
.ws102{word-spacing:-0.277704px;}
.ws14f{word-spacing:-0.268992px;}
.ws141{word-spacing:-0.258516px;}
.ws10a{word-spacing:-0.240480px;}
.ws32{word-spacing:-0.239102px;}
.ws13f{word-spacing:-0.234468px;}
.ws19{word-spacing:-0.215194px;}
.ws26{word-spacing:-0.179327px;}
.wsd7{word-spacing:-0.175172px;}
.ws1b{word-spacing:-0.161395px;}
.ws28{word-spacing:-0.119551px;}
.ws12{word-spacing:-0.107597px;}
.ws9f{word-spacing:-0.102060px;}
.ws46{word-spacing:-0.063126px;}
.wsfa{word-spacing:-0.060120px;}
.ws29{word-spacing:-0.059776px;}
.ws84{word-spacing:-0.056700px;}
.wsbd{word-spacing:-0.053798px;}
.ws103{word-spacing:-0.052668px;}
.ws51{word-spacing:-0.050274px;}
.ws15f{word-spacing:-0.028118px;}
.ws155{word-spacing:-0.027590px;}
.wsab{word-spacing:-0.018938px;}
.wscb{word-spacing:-0.005050px;}
.ws2b{word-spacing:-0.003859px;}
.wsef{word-spacing:-0.003593px;}
.wsc7{word-spacing:-0.003562px;}
.ws161{word-spacing:-0.003408px;}
.ws163{word-spacing:-0.003149px;}
.ws174{word-spacing:-0.002304px;}
.wsc9{word-spacing:-0.001997px;}
.ws169{word-spacing:-0.001978px;}
.wsee{word-spacing:-0.001922px;}
.wsed{word-spacing:-0.001259px;}
.wsc4{word-spacing:-0.001114px;}
.wsc1{word-spacing:-0.000941px;}
.ws1{word-spacing:0.000000px;}
.wsba{word-spacing:0.000230px;}
.wsbe{word-spacing:0.000442px;}
.ws2{word-spacing:0.000913px;}
.wsdd{word-spacing:0.001200px;}
.ws6b{word-spacing:0.018938px;}
.ws12d{word-spacing:0.024048px;}
.ws11d{word-spacing:0.036072px;}
.ws13e{word-spacing:0.048096px;}
.ws18{word-spacing:0.053798px;}
.ws6a{word-spacing:0.056813px;}
.ws2f{word-spacing:0.059776px;}
.ws114{word-spacing:0.072144px;}
.wsf4{word-spacing:0.074064px;}
.wsa2{word-spacing:0.082064px;}
.ws13c{word-spacing:0.090180px;}
.ws9b{word-spacing:0.094689px;}
.wsaa{word-spacing:0.101002px;}
.ws13b{word-spacing:0.102204px;}
.ws160{word-spacing:0.107597px;}
.ws13d{word-spacing:0.108216px;}
.ws59{word-spacing:0.113627px;}
.ws9e{word-spacing:0.119070px;}
.ws3d{word-spacing:0.119551px;}
.ws5c{word-spacing:0.130410px;}
.ws107{word-spacing:0.145800px;}
.wsa0{word-spacing:0.153090px;}
.ws1a{word-spacing:0.161395px;}
.ws109{word-spacing:0.167400px;}
.ws5b{word-spacing:0.175770px;}
.ws3c{word-spacing:0.179327px;}
.ws61{word-spacing:0.183065px;}
.ws5a{word-spacing:0.187110px;}
.ws8a{word-spacing:0.189378px;}
.wse5{word-spacing:0.191282px;}
.ws62{word-spacing:0.195691px;}
.ws108{word-spacing:0.199800px;}
.wse6{word-spacing:0.201323px;}
.ws1c{word-spacing:0.215194px;}
.ws3e{word-spacing:0.239102px;}
.ws10{word-spacing:0.268992px;}
.ws9d{word-spacing:0.289170px;}
.ws2d{word-spacing:0.298878px;}
.ws150{word-spacing:0.322790px;}
.wsa4{word-spacing:0.328255px;}
.ws2e{word-spacing:0.358654px;}
.ws17{word-spacing:0.376589px;}
.ws10e{word-spacing:0.384768px;}
.ws77{word-spacing:0.429257px;}
.ws91{word-spacing:0.460820px;}
.ws4d{word-spacing:0.478205px;}
.ws78{word-spacing:0.498695px;}
.ws35{word-spacing:0.537980px;}
.ws10f{word-spacing:0.541080px;}
.ws16f{word-spacing:0.591782px;}
.wsec{word-spacing:0.596606px;}
.ws143{word-spacing:0.597756px;}
.ws90{word-spacing:0.618635px;}
.wsb9{word-spacing:0.655834px;}
.wsbc{word-spacing:0.658234px;}
.wseb{word-spacing:0.663389px;}
.wse1{word-spacing:0.667181px;}
.wsdb{word-spacing:0.668170px;}
.wsb2{word-spacing:0.669110px;}
.wsde{word-spacing:0.669581px;}
.wsd9{word-spacing:0.670570px;}
.ws15{word-spacing:0.672000px;}
.wse2{word-spacing:0.672970px;}
.wsbb{word-spacing:0.673200px;}
.wsb3{word-spacing:0.675110px;}
.wsca{word-spacing:0.685190px;}
.wsb4{word-spacing:0.687590px;}
.wse8{word-spacing:0.692611px;}
.wse9{word-spacing:0.696000px;}
.wse4{word-spacing:0.697757px;}
.wse0{word-spacing:0.700157px;}
.ws23{word-spacing:0.717307px;}
.ws122{word-spacing:0.727452px;}
.ws58{word-spacing:0.738574px;}
.ws101{word-spacing:0.777083px;}
.ws123{word-spacing:0.799596px;}
.ws37{word-spacing:0.836858px;}
.ws57{word-spacing:0.864826px;}
.ws148{word-spacing:0.896634px;}
.ws7c{word-spacing:0.965828px;}
.ws151{word-spacing:1.075968px;}
.ws12c{word-spacing:1.112220px;}
.ws7f{word-spacing:1.135736px;}
.ws7e{word-spacing:1.195512px;}
.ws12b{word-spacing:1.208412px;}
.wsaf{word-spacing:1.224644px;}
.ws13{word-spacing:1.237363px;}
.ws6f{word-spacing:1.243582px;}
.wsb0{word-spacing:1.275145px;}
.ws43{word-spacing:1.315063px;}
.ws170{word-spacing:1.345978px;}
.ws6e{word-spacing:1.363522px;}
.ws9{word-spacing:1.380812px;}
.ws70{word-spacing:1.401397px;}
.ws49{word-spacing:1.434614px;}
.ws16d{word-spacing:1.452557px;}
.ws145{word-spacing:1.494390px;}
.ws13a{word-spacing:1.509012px;}
.wsae{word-spacing:1.609713px;}
.ws14a{word-spacing:1.673717px;}
.ws164{word-spacing:1.721549px;}
.ws14{word-spacing:1.775347px;}
.ws135{word-spacing:1.863720px;}
.ws92{word-spacing:1.912718px;}
.ws16e{word-spacing:1.936742px;}
.ws159{word-spacing:1.990541px;}
.ws34{word-spacing:2.032370px;}
.ws97{word-spacing:2.045282px;}
.wsff{word-spacing:2.092146px;}
.ws96{word-spacing:2.102096px;}
.ws21{word-spacing:2.151922px;}
.ws15b{word-spacing:2.205734px;}
.ws119{word-spacing:2.242476px;}
.ws113{word-spacing:2.248488px;}
.ws112{word-spacing:2.260512px;}
.ws36{word-spacing:2.271473px;}
.ws24{word-spacing:2.391024px;}
.ws134{word-spacing:2.446884px;}
.ws14b{word-spacing:2.450800px;}
.ws15c{word-spacing:2.474726px;}
.ws118{word-spacing:2.507004px;}
.ws80{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws11c{word-spacing:2.519028px;}
.ws11b{word-spacing:2.555100px;}
.ws126{word-spacing:2.567124px;}
.wsb7{word-spacing:2.570351px;}
.ws127{word-spacing:2.585160px;}
.ws128{word-spacing:2.609208px;}
.ws4f{word-spacing:2.630126px;}
.ws125{word-spacing:2.633256px;}
.ws168{word-spacing:2.636122px;}
.ws106{word-spacing:2.683800px;}
.ws105{word-spacing:2.689200px;}
.ws1d{word-spacing:2.689920px;}
.ws71{word-spacing:2.708105px;}
.ws73{word-spacing:2.752294px;}
.ws4e{word-spacing:2.809453px;}
.wsb{word-spacing:2.869236px;}
.ws158{word-spacing:2.869467px;}
.ws72{word-spacing:2.872233px;}
.wsd3{word-spacing:2.929004px;}
.ws14e{word-spacing:2.958912px;}
.ws111{word-spacing:2.981952px;}
.ws38{word-spacing:2.988780px;}
.ws172{word-spacing:3.012710px;}
.ws110{word-spacing:3.018024px;}
.ws6d{word-spacing:3.074236px;}
.ws6c{word-spacing:3.080549px;}
.ws15e{word-spacing:3.120307px;}
.ws67{word-spacing:3.124737px;}
.ws68{word-spacing:3.131050px;}
.ws20{word-spacing:3.168107px;}
.ws1e{word-spacing:3.219667px;}
.ws176{word-spacing:3.221021px;}
.ws173{word-spacing:3.223584px;}
.ws167{word-spacing:3.224112px;}
.ws152{word-spacing:3.224822px;}
.ws165{word-spacing:3.225562px;}
.ws146{word-spacing:3.227882px;}
.ws156{word-spacing:3.227904px;}
.wsf{word-spacing:3.281702px;}
.ws131{word-spacing:3.288564px;}
.ws130{word-spacing:3.306600px;}
.wse{word-spacing:3.335501px;}
.ws33{word-spacing:3.347434px;}
.ws175{word-spacing:3.389299px;}
.ws16c{word-spacing:3.443098px;}
.ws9a{word-spacing:3.459305px;}
.ws3a{word-spacing:3.466985px;}
.ws177{word-spacing:3.496896px;}
.ws15a{word-spacing:3.550694px;}
.ws1f{word-spacing:3.586536px;}
.ws4b{word-spacing:3.646312px;}
.ws11a{word-spacing:3.649284px;}
.ws39{word-spacing:3.765863px;}
.ws166{word-spacing:3.765888px;}
.ws99{word-spacing:3.787560px;}
.ws63{word-spacing:4.033751px;}
.ws11{word-spacing:4.034880px;}
.wsf1{word-spacing:4.184292px;}
.wsa1{word-spacing:4.197879px;}
.ws2a{word-spacing:4.244068px;}
.ws52{word-spacing:4.279943px;}
.ws144{word-spacing:4.303843px;}
.ws53{word-spacing:4.305193px;}
.wsb8{word-spacing:4.542946px;}
.ws22{word-spacing:4.602721px;}
.ws4a{word-spacing:4.901599px;}
.ws16{word-spacing:4.949453px;}
.wsfe{word-spacing:5.021150px;}
.ws136{word-spacing:5.104188px;}
.ws142{word-spacing:5.140702px;}
.ws137{word-spacing:5.170320px;}
.ws11e{word-spacing:5.200380px;}
.wsd{word-spacing:5.272243px;}
.ws27{word-spacing:5.320028px;}
.ws41{word-spacing:5.379804px;}
.ws7{word-spacing:5.481407px;}
.ws12f{word-spacing:5.482944px;}
.ws12e{word-spacing:5.549076px;}
.ws31{word-spacing:5.618906px;}
.ws8d{word-spacing:5.693965px;}
.ws98{word-spacing:5.712903px;}
.ws14c{word-spacing:5.738458px;}
.ws138{word-spacing:5.795568px;}
.ws140{word-spacing:5.801580px;}
.ws4c{word-spacing:5.858009px;}
.ws8c{word-spacing:5.902281px;}
.ws40{word-spacing:6.635092px;}
.ws42{word-spacing:6.694867px;}
.ws47{word-spacing:6.754643px;}
.ws8e{word-spacing:6.849171px;}
.wsf5{word-spacing:7.053521px;}
.wsa9{word-spacing:7.297366px;}
.wsa8{word-spacing:7.404680px;}
.ws89{word-spacing:8.004377px;}
.ws88{word-spacing:8.054878px;}
.ws5e{word-spacing:9.134332px;}
.wsf2{word-spacing:9.444545px;}
.ws5d{word-spacing:9.658278px;}
.ws5{word-spacing:9.833058px;}
.ws15d{word-spacing:11.028672px;}
.ws65{word-spacing:11.034425px;}
.ws132{word-spacing:11.062080px;}
.ws133{word-spacing:11.242440px;}
.ws66{word-spacing:11.444744px;}
.ws8f{word-spacing:11.754061px;}
.ws6{word-spacing:11.841512px;}
.wsc{word-spacing:13.921802px;}
.ws5f{word-spacing:15.156553px;}
.ws139{word-spacing:15.510960px;}
.wsfb{word-spacing:18.112007px;}
.ws4{word-spacing:22.339429px;}
.ws8{word-spacing:22.720640px;}
.wsc5{word-spacing:236.285866px;}
.wsdf{word-spacing:243.631200px;}
.wsea{word-spacing:245.894400px;}
.wsda{word-spacing:257.077200px;}
.wsc2{word-spacing:267.010666px;}
.wsbf{word-spacing:274.030666px;}
.wsdc{word-spacing:275.623200px;}
.wse3{word-spacing:289.069200px;}
.wsc8{word-spacing:294.251866px;}
.wsc0{word-spacing:328.654426px;}
.wsb6{word-spacing:339.521702px;}
.wsc3{word-spacing:355.553626px;}
.wscc{word-spacing:358.404941px;}
.wsc6{word-spacing:369.003226px;}
.wse7{word-spacing:412.257139px;}
.wsb5{word-spacing:481.710874px;}
.ws9c{word-spacing:1194.811052px;}
.ws104{word-spacing:1473.530400px;}
._4{margin-left:-11.943245px;}
._f{margin-left:-6.635092px;}
._7{margin-left:-5.158676px;}
._0{margin-left:-3.849538px;}
._1a{margin-left:-2.708105px;}
._3{margin-left:-1.464498px;}
._18{width:1.206576px;}
._5{width:2.426850px;}
._8{width:11.094379px;}
._1{width:12.971268px;}
._12{width:14.465695px;}
._9{width:15.762931px;}
._d{width:17.376883px;}
._e{width:18.399044px;}
._14{width:19.785724px;}
._c{width:20.873779px;}
._48{width:22.104877px;}
._16{width:23.192933px;}
._2{width:25.314894px;}
._a{width:27.060595px;}
._b{width:29.051136px;}
._13{width:30.425780px;}
._23{width:32.069605px;}
._1b{width:33.892757px;}
._10{width:35.088277px;}
._17{width:38.286268px;}
._15{width:39.362228px;}
._46{width:42.595661px;}
._45{width:49.613748px;}
._6{width:54.976230px;}
._4a{width:61.868160px;}
._49{width:88.767360px;}
._1e{width:174.898598px;}
._42{width:176.447578px;}
._1d{width:181.838592px;}
._1c{width:202.281984px;}
._44{width:221.918400px;}
._2a{width:226.222272px;}
._36{width:241.730736px;}
._32{width:246.569357px;}
._1f{width:250.539149px;}
._3a{width:254.520230px;}
._3e{width:261.245030px;}
._40{width:267.969830px;}
._2c{width:275.394010px;}
._34{width:282.082944px;}
._43{width:286.637875px;}
._2f{width:288.848659px;}
._2d{width:302.293210px;}
._31{width:304.660339px;}
._3f{width:313.399363px;}
._2e{width:315.744806px;}
._20{width:329.855030px;}
._2b{width:337.063555px;}
._3b{width:340.167283px;}
._21{width:347.507837px;}
._41{width:353.616883px;}
._39{width:359.588506px;}
._3c{width:362.194032px;}
._3d{width:373.038106px;}
._38{width:407.124989px;}
._25{width:446.526720px;}
._24{width:468.207475px;}
._29{width:472.516915px;}
._11{width:491.265450px;}
._28{width:492.739546px;}
._22{width:495.214272px;}
._27{width:499.424112px;}
._26{width:513.021542px;}
._30{width:609.482074px;}
._35{width:988.491802px;}
._37{width:1013.400461px;}
._33{width:1042.021210px;}
._47{width:2232.649188px;}
._19{width:2343.386770px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fsd{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fsb{font-size:47.337600px;}
.fs5{font-size:47.820600px;}
.fsf{font-size:47.880000px;}
.fse{font-size:49.829400px;}
.fs8{font-size:50.274000px;}
.fs6{font-size:53.798400px;}
.fs11{font-size:54.000000px;}
.fs7{font-size:56.058000px;}
.fsa{font-size:56.700000px;}
.fs1{font-size:59.775600px;}
.fs10{font-size:60.120000px;}
.fsc{font-size:62.286600px;}
.fs9{font-size:63.126000px;}
.fs2{font-size:107.596800px;}
.y13c{bottom:-832.892550px;}
.y165{bottom:-769.872750px;}
.y164{bottom:-750.703488px;}
.y163{bottom:-731.444046px;}
.y162{bottom:-712.274784px;}
.y161{bottom:-693.015342px;}
.y160{bottom:-673.755900px;}
.y15f{bottom:-654.586638px;}
.y15e{bottom:-635.327196px;}
.y15d{bottom:-616.157934px;}
.y15c{bottom:-596.898492px;}
.y15b{bottom:-577.639050px;}
.y15a{bottom:-558.469788px;}
.y7b{bottom:-552.057503px;}
.y159{bottom:-539.210346px;}
.y158{bottom:-520.041084px;}
.y157{bottom:-500.781642px;}
.y96{bottom:-493.080015px;}
.y156{bottom:-481.522200px;}
.y95{bottom:-472.857601px;}
.y155{bottom:-462.352938px;}
.y94{bottom:-452.729876px;}
.y154{bottom:-443.093496px;}
.y93{bottom:-432.507461px;}
.y153{bottom:-423.834054px;}
.y92{bottom:-412.285047px;}
.y152{bottom:-404.664792px;}
.y91{bottom:-392.157322px;}
.y151{bottom:-385.405350px;}
.ybb{bottom:-372.830377px;}
.y90{bottom:-371.934908px;}
.y150{bottom:-366.236088px;}
.y8f{bottom:-351.712494px;}
.y14f{bottom:-346.976646px;}
.y14e{bottom:-327.717204px;}
.y8e{bottom:-326.858210px;}
.yd7{bottom:-309.133219px;}
.y14d{bottom:-308.547942px;}
.y14c{bottom:-289.288500px;}
.yd6{bottom:-288.910805px;}
.y8d{bottom:-287.735871px;}
.y14b{bottom:-270.119238px;}
.y8c{bottom:-267.608146px;}
.yd5{bottom:-264.056521px;}
.y14a{bottom:-250.859796px;}
.y8b{bottom:-247.385732px;}
.y149{bottom:-231.600354px;}
.y8a{bottom:-227.163318px;}
.yd4{bottom:-224.934183px;}
.y148{bottom:-212.431092px;}
.y89{bottom:-207.035593px;}
.yd3{bottom:-204.711768px;}
.y147{bottom:-193.171650px;}
.y88{bottom:-186.813179px;}
.yd2{bottom:-184.584043px;}
.y146{bottom:-174.000885px;}
.yd1{bottom:-164.361629px;}
.y87{bottom:-161.958894px;}
.y145{bottom:-154.741443px;}
.yd0{bottom:-144.139215px;}
.y144{bottom:-135.482001px;}
.ycf{bottom:-124.011490px;}
.y86{bottom:-122.836556px;}
.y143{bottom:-116.311236px;}
.yce{bottom:-103.789076px;}
.y85{bottom:-102.614142px;}
.y142{bottom:-97.051794px;}
.ycd{bottom:-83.566662px;}
.y84{bottom:-82.486417px;}
.y141{bottom:-73.382550px;}
.y83{bottom:-62.264002px;}
.ycc{bottom:-58.712377px;}
.y140{bottom:-36.571650px;}
.y82{bottom:-23.613502px;}
.ycb{bottom:-20.061877px;}
.y13f{bottom:-19.112100px;}
.y0{bottom:0.000000px;}
.y81{bottom:0.012509px;}
.y13e{bottom:7.347900px;}
.yca{bottom:8.294426px;}
.y13d{bottom:28.587450px;}
.yc9{bottom:29.556841px;}
.y42{bottom:31.890000px;}
.y15{bottom:104.646000px;}
.yac{bottom:112.081500px;}
.y41{bottom:115.605000px;}
.y77{bottom:118.699500px;}
.y19f{bottom:119.596500px;}
.y14{bottom:122.535000px;}
.yaa{bottom:130.911000px;}
.y40{bottom:134.434500px;}
.y10d{bottom:135.652500px;}
.y18b{bottom:136.018500px;}
.yab{bottom:136.336500px;}
.y76{bottom:137.529000px;}
.y19e{bottom:138.426000px;}
.y10e{bottom:139.992000px;}
.y13{bottom:140.422500px;}
.y1cc{bottom:149.185500px;}
.ya9{bottom:149.740500px;}
.y10c{bottom:149.848500px;}
.y3f{bottom:153.264000px;}
.y10b{bottom:154.189500px;}
.y18a{bottom:154.848000px;}
.y75{bottom:156.358500px;}
.y19d{bottom:157.255500px;}
.y12{bottom:158.310000px;}
.y1cb{bottom:166.446000px;}
.y1ff{bottom:168.238500px;}
.ya8{bottom:168.570000px;}
.y10a{bottom:170.596500px;}
.y3e{bottom:172.093500px;}
.ye1{bottom:172.207500px;}
.y189{bottom:173.677500px;}
.y74{bottom:175.188000px;}
.y19c{bottom:176.085000px;}
.y11{bottom:176.199000px;}
.y1ca{bottom:183.706500px;}
.y1fe{bottom:185.499000px;}
.ya7{bottom:187.399500px;}
.y109{bottom:187.659000px;}
.y3d{bottom:190.923000px;}
.ye0{bottom:191.037000px;}
.y188{bottom:192.507000px;}
.y73{bottom:194.017500px;}
.y10{bottom:194.086500px;}
.y19b{bottom:194.914500px;}
.y1c9{bottom:200.967000px;}
.y1fd{bottom:202.759500px;}
.y108{bottom:204.723000px;}
.ya6{bottom:206.229000px;}
.y3c{bottom:209.752500px;}
.ydf{bottom:209.866500px;}
.y187{bottom:211.336500px;}
.yf{bottom:211.974000px;}
.y72{bottom:212.847000px;}
.y19a{bottom:213.744000px;}
.y1c8{bottom:218.227500px;}
.y1fc{bottom:220.020000px;}
.y107{bottom:221.785500px;}
.ya5{bottom:225.058500px;}
.y3b{bottom:228.582000px;}
.yde{bottom:228.696000px;}
.ye{bottom:229.863000px;}
.y186{bottom:230.166000px;}
.y199{bottom:232.573500px;}
.y1c7{bottom:235.488000px;}
.y138{bottom:235.540500px;}
.y71{bottom:236.160000px;}
.y1fb{bottom:237.280500px;}
.y106{bottom:238.848000px;}
.ya4{bottom:243.888000px;}
.y3a{bottom:247.411500px;}
.ydd{bottom:247.525500px;}
.y185{bottom:248.995500px;}
.y198{bottom:251.403000px;}
.y1c6{bottom:252.748500px;}
.y137{bottom:254.370000px;}
.y1fa{bottom:254.541000px;}
.y105{bottom:255.912000px;}
.y39{bottom:266.241000px;}
.ydc{bottom:266.355000px;}
.ya3{bottom:267.201000px;}
.y184{bottom:267.825000px;}
.y70{bottom:269.784000px;}
.y1c5{bottom:270.007500px;}
.y197{bottom:270.232500px;}
.y1f9{bottom:271.801500px;}
.y136{bottom:273.199500px;}
.y104{bottom:280.177500px;}
.y38{bottom:285.070500px;}
.ydb{bottom:285.184500px;}
.y183{bottom:286.654500px;}
.y1c4{bottom:287.268000px;}
.y6f{bottom:288.613500px;}
.y196{bottom:289.062000px;}
.y135{bottom:292.029000px;}
.yd{bottom:299.892000px;}
.ya2{bottom:300.825000px;}
.y13b{bottom:301.197585px;}
.y37{bottom:303.900000px;}
.yda{bottom:304.014000px;}
.y1c3{bottom:304.528500px;}
.y182{bottom:305.484000px;}
.y1f8{bottom:306.321000px;}
.y6e{bottom:307.443000px;}
.y195{bottom:307.891500px;}
.y13a{bottom:310.827450px;}
.y134{bottom:310.858500px;}
.y103{bottom:311.796000px;}
.yc{bottom:317.779500px;}
.ya1{bottom:319.654500px;}
.y1c2{bottom:321.789000px;}
.y36{bottom:322.729500px;}
.y1f7{bottom:323.581500px;}
.y181{bottom:324.313500px;}
.y6d{bottom:326.272500px;}
.y194{bottom:326.719500px;}
.yd9{bottom:327.327000px;}
.y133{bottom:329.688000px;}
.yb{bottom:335.667000px;}
.ya0{bottom:338.484000px;}
.y1c1{bottom:339.049500px;}
.y1f6{bottom:340.842000px;}
.y180{bottom:343.143000px;}
.y6c{bottom:345.102000px;}
.y193{bottom:345.549000px;}
.y35{bottom:346.041000px;}
.y132{bottom:348.517500px;}
.y102{bottom:348.900000px;}
.ya{bottom:353.556000px;}
.y1c0{bottom:356.310000px;}
.y9f{bottom:357.312000px;}
.yd8{bottom:357.754500px;}
.y1f5{bottom:358.102500px;}
.y17f{bottom:361.972500px;}
.y6b{bottom:363.931500px;}
.y192{bottom:364.378500px;}
.y131{bottom:367.347000px;}
.y101{bottom:367.729500px;}
.y1bf{bottom:373.570500px;}
.y1f4{bottom:375.363000px;}
.y9e{bottom:376.141500px;}
.y17e{bottom:380.802000px;}
.y9{bottom:381.904500px;}
.y6a{bottom:382.761000px;}
.yb8{bottom:383.172000px;}
.y191{bottom:383.208000px;}
.y100{bottom:386.559000px;}
.y1be{bottom:390.831000px;}
.y1f3{bottom:392.623500px;}
.y9d{bottom:394.971000px;}
.y17d{bottom:399.631500px;}
.y69{bottom:401.589000px;}
.y190{bottom:402.037500px;}
.yff{bottom:405.388500px;}
.y130{bottom:407.481000px;}
.y1bc{bottom:408.090000px;}
.y1bd{bottom:408.091500px;}
.y8{bottom:408.759000px;}
.y1f2{bottom:409.884000px;}
.y9c{bottom:418.284000px;}
.y17c{bottom:418.461000px;}
.y68{bottom:420.418500px;}
.y18f{bottom:420.867000px;}
.y34{bottom:421.191000px;}
.y1bb{bottom:425.350500px;}
.y7{bottom:426.646500px;}
.y1f1{bottom:427.144500px;}
.y12f{bottom:428.539500px;}
.y12d{bottom:428.830500px;}
.y17b{bottom:437.290500px;}
.y67{bottom:439.248000px;}
.y18e{bottom:439.696500px;}
.y1ba{bottom:442.611000px;}
.y1f0{bottom:444.403500px;}
.y6{bottom:444.534000px;}
.y12c{bottom:445.269000px;}
.y12e{bottom:445.603500px;}
.yfe{bottom:449.862000px;}
.y9b{bottom:451.908000px;}
.y17a{bottom:456.120000px;}
.y18d{bottom:458.526000px;}
.y33{bottom:458.581500px;}
.y1b9{bottom:459.871500px;}
.y1ef{bottom:461.664000px;}
.y5{bottom:462.423000px;}
.y66{bottom:462.561000px;}
.y12b{bottom:462.666000px;}
.y129{bottom:463.162500px;}
.yfd{bottom:466.270500px;}
.y9a{bottom:470.737500px;}
.y179{bottom:474.949500px;}
.y1b8{bottom:477.132000px;}
.y18c{bottom:477.355500px;}
.y32{bottom:478.038000px;}
.y1ee{bottom:478.924500px;}
.y128{bottom:479.601000px;}
.y12a{bottom:479.728500px;}
.y4{bottom:480.310500px;}
.yfc{bottom:483.333000px;}
.y99{bottom:489.567000px;}
.y178{bottom:493.779000px;}
.y1b7{bottom:494.392500px;}
.yc8{bottom:494.591879px;}
.y65{bottom:496.185000px;}
.y127{bottom:496.792500px;}
.y125{bottom:497.083500px;}
.y31{bottom:497.496000px;}
.y3{bottom:498.198000px;}
.yfb{bottom:499.771500px;}
.y80{bottom:500.579595px;}
.y98{bottom:508.396500px;}
.y1b6{bottom:511.653000px;}
.y177{bottom:512.607000px;}
.y1ed{bottom:513.445500px;}
.y124{bottom:513.522000px;}
.y126{bottom:513.855000px;}
.yc7{bottom:514.814293px;}
.y64{bottom:515.014500px;}
.y2{bottom:516.087000px;}
.yfa{bottom:516.210000px;}
.y30{bottom:516.952500px;}
.y7f{bottom:520.707320px;}
.y1b5{bottom:528.913500px;}
.y1ec{bottom:530.706000px;}
.y176{bottom:531.436500px;}
.y63{bottom:533.844000px;}
.y1{bottom:533.974500px;}
.yc6{bottom:535.036707px;}
.y2f{bottom:536.410500px;}
.y123{bottom:537.808500px;}
.yf9{bottom:539.850000px;}
.y7e{bottom:540.929734px;}
.y97{bottom:541.962000px;}
.y1b4{bottom:546.174000px;}
.y1eb{bottom:547.966500px;}
.y175{bottom:550.266000px;}
.y62{bottom:552.673500px;}
.yc5{bottom:555.259122px;}
.y2e{bottom:555.867000px;}
.y7d{bottom:561.152148px;}
.y1b3{bottom:563.433000px;}
.y78{bottom:564.391500px;}
.y1ea{bottom:565.227000px;}
.y174{bottom:569.095500px;}
.y122{bottom:569.427000px;}
.yf8{bottom:571.470000px;}
.y61{bottom:571.503000px;}
.y2d{bottom:575.323500px;}
.yc4{bottom:575.386847px;}
.y1b2{bottom:580.693500px;}
.y7c{bottom:581.281451px;}
.y1e9{bottom:582.487500px;}
.y173{bottom:587.925000px;}
.y60{bottom:590.332500px;}
.y2c{bottom:594.781500px;}
.yc3{bottom:595.609261px;}
.y1e8{bottom:599.746500px;}
.y1b1{bottom:602.437500px;}
.y121{bottom:606.532500px;}
.y172{bottom:606.754500px;}
.yf7{bottom:608.574000px;}
.y5f{bottom:609.162000px;}
.y2b{bottom:614.238000px;}
.yc2{bottom:615.831675px;}
.y1e7{bottom:617.007000px;}
.y120{bottom:625.362000px;}
.y171{bottom:625.584000px;}
.yf6{bottom:627.403500px;}
.y5e{bottom:627.991500px;}
.y2a{bottom:633.694500px;}
.y1e6{bottom:634.267500px;}
.yc1{bottom:635.959400px;}
.y1b0{bottom:636.061500px;}
.y7a{bottom:638.737139px;}
.y11f{bottom:644.190000px;}
.y170{bottom:644.413500px;}
.yf5{bottom:646.233000px;}
.y5d{bottom:646.821000px;}
.y79{bottom:648.848498px;}
.y1e5{bottom:651.528000px;}
.y29{bottom:653.152500px;}
.yc0{bottom:656.181814px;}
.y1af{bottom:662.602500px;}
.y16f{bottom:663.243000px;}
.yf4{bottom:665.062500px;}
.y5c{bottom:665.650500px;}
.y1e4{bottom:668.788500px;}
.y28{bottom:672.609000px;}
.ybf{bottom:676.309539px;}
.y11e{bottom:681.210000px;}
.y16e{bottom:682.072500px;}
.y5b{bottom:684.480000px;}
.y1e3{bottom:686.049000px;}
.yf3{bottom:688.375500px;}
.y1ae{bottom:689.142000px;}
.y27{bottom:692.067000px;}
.y11c{bottom:695.406000px;}
.y11d{bottom:699.747000px;}
.y16d{bottom:700.902000px;}
.ybe{bottom:701.256934px;}
.y5a{bottom:703.309500px;}
.y26{bottom:711.523500px;}
.y1ad{bottom:715.683000px;}
.y11b{bottom:719.455500px;}
.y16c{bottom:719.731500px;}
.y1e2{bottom:720.570000px;}
.y59{bottom:722.139000px;}
.y11a{bottom:728.692500px;}
.yf2{bottom:730.699500px;}
.y25{bottom:730.980000px;}
.y1ac{bottom:733.257000px;}
.y1e1{bottom:737.829000px;}
.y16b{bottom:738.561000px;}
.ybd{bottom:740.379273px;}
.y58{bottom:740.968500px;}
.yf1{bottom:747.136500px;}
.y24{bottom:750.438000px;}
.y119{bottom:753.582000px;}
.y1e0{bottom:755.089500px;}
.y16a{bottom:757.390500px;}
.y57{bottom:759.798000px;}
.ybc{bottom:760.508576px;}
.y118{bottom:762.819000px;}
.yf0{bottom:763.575000px;}
.y23{bottom:769.894500px;}
.y1df{bottom:772.350000px;}
.y169{bottom:776.220000px;}
.y56{bottom:778.627500px;}
.yef{bottom:780.013500px;}
.y1ab{bottom:786.337500px;}
.y117{bottom:787.707000px;}
.y22{bottom:789.351000px;}
.y1de{bottom:789.610500px;}
.yee{bottom:796.452000px;}
.y116{bottom:796.944000px;}
.y55{bottom:797.457000px;}
.y168{bottom:799.533000px;}
.y1aa{bottom:803.913000px;}
.y1dd{bottom:806.871000px;}
.y21{bottom:808.809000px;}
.y54{bottom:816.286500px;}
.yba{bottom:817.964264px;}
.yed{bottom:820.093500px;}
.y1a9{bottom:821.487000px;}
.y115{bottom:821.833500px;}
.y1dc{bottom:824.131500px;}
.yb9{bottom:828.075623px;}
.y20{bottom:828.265500px;}
.y167{bottom:829.960500px;}
.y114{bottom:831.070500px;}
.y53{bottom:835.114500px;}
.y1a8{bottom:839.061000px;}
.y1db{bottom:841.392000px;}
.y166{bottom:849.193500px;}
.yec{bottom:851.712000px;}
.y52{bottom:853.944000px;}
.y113{bottom:855.960000px;}
.y1a7{bottom:856.635000px;}
.y1da{bottom:858.652500px;}
.y1f{bottom:866.851500px;}
.yeb{bottom:870.945000px;}
.yb7{bottom:872.326500px;}
.y51{bottom:872.773500px;}
.y112{bottom:873.022500px;}
.y1a6{bottom:874.209000px;}
.y139{bottom:874.611000px;}
.y1d9{bottom:875.913000px;}
.y1e{bottom:882.990000px;}
.y111{bottom:890.085000px;}
.yb6{bottom:891.156000px;}
.y50{bottom:891.603000px;}
.y1a5{bottom:891.783000px;}
.y1d8{bottom:893.172000px;}
.y1d{bottom:903.469500px;}
.yea{bottom:904.156500px;}
.y1a4{bottom:909.357000px;}
.yb5{bottom:909.984000px;}
.y4f{bottom:910.432500px;}
.y110{bottom:914.038500px;}
.y1c{bottom:915.270000px;}
.ye9{bottom:922.986000px;}
.y1a3{bottom:926.931000px;}
.y1d7{bottom:927.693000px;}
.yb4{bottom:928.813500px;}
.y4e{bottom:929.262000px;}
.y1b{bottom:931.410000px;}
.ye8{bottom:941.815500px;}
.y1d6{bottom:944.953500px;}
.yb3{bottom:947.643000px;}
.y4d{bottom:948.091500px;}
.y10f{bottom:948.646500px;}
.y1a{bottom:951.888000px;}
.y1d5{bottom:962.214000px;}
.y1a2{bottom:962.437500px;}
.ye7{bottom:965.128500px;}
.yb2{bottom:966.472500px;}
.y4c{bottom:966.921000px;}
.y202{bottom:974.916000px;}
.y1d4{bottom:979.474500px;}
.y1a1{bottom:981.267000px;}
.yb1{bottom:985.302000px;}
.y4b{bottom:985.750500px;}
.y201{bottom:992.176500px;}
.y19{bottom:996.565500px;}
.y1d3{bottom:996.735000px;}
.y1a0{bottom:1000.096500px;}
.yb0{bottom:1004.131500px;}
.y4a{bottom:1004.580000px;}
.y200{bottom:1009.437000px;}
.y1d2{bottom:1013.995500px;}
.ye6{bottom:1018.926000px;}
.yaf{bottom:1022.961000px;}
.y49{bottom:1023.409500px;}
.y1d1{bottom:1031.254500px;}
.y18{bottom:1036.485000px;}
.ye5{bottom:1037.755500px;}
.yae{bottom:1041.790500px;}
.y48{bottom:1042.239000px;}
.y1d0{bottom:1048.515000px;}
.ye4{bottom:1056.585000px;}
.y47{bottom:1061.068500px;}
.y17{bottom:1064.728500px;}
.yad{bottom:1065.103500px;}
.y1cf{bottom:1065.775500px;}
.ye3{bottom:1075.414500px;}
.y46{bottom:1079.898000px;}
.y1ce{bottom:1083.036000px;}
.y16{bottom:1092.972000px;}
.ye2{bottom:1094.244000px;}
.y45{bottom:1098.727500px;}
.y1cd{bottom:1100.296500px;}
.y44{bottom:1117.557000px;}
.y43{bottom:1177.662000px;}
.h7{height:26.217754px;}
.h2{height:30.587087px;}
.h3{height:30.670772px;}
.h15{height:31.526842px;}
.h1f{height:33.186380px;}
.h23{height:34.951465px;}
.h8{height:34.956859px;}
.hd{height:35.052500px;}
.h22{height:35.255391px;}
.h10{height:36.699038px;}
.hf{height:37.018160px;}
.h17{height:38.734848px;}
.h9{height:39.326630px;}
.h25{height:39.418945px;}
.ha{height:39.434227px;}
.h26{height:39.761719px;}
.h1a{height:41.482876px;}
.h12{height:41.749805px;}
.hb{height:43.038432px;}
.h20{height:43.575754px;}
.hc{height:43.695964px;}
.h4{height:43.815515px;}
.h24{height:43.886426px;}
.h27{height:44.268047px;}
.h13{height:45.803338px;}
.h11{height:46.080747px;}
.h14{height:46.481449px;}
.h1c{height:48.863087px;}
.h1b{height:48.869087px;}
.h18{height:50.111087px;}
.h19{height:50.117087px;}
.h6{height:54.405312px;}
.h5{height:77.469696px;}
.h1e{height:80.165087px;}
.h1d{height:80.171087px;}
.h21{height:257.890500px;}
.h16{height:469.405125px;}
.he{height:473.035500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:147.571200px;}
.w3{width:632.977538px;}
.w4{width:757.961700px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x35{left:-210.139650px;}
.x46{left:-95.874187px;}
.x7d{left:-16.690800px;}
.x36{left:-4.790772px;}
.x0{left:0.000000px;}
.x38{left:28.661850px;}
.x1{left:53.574000px;}
.x6f{left:62.727000px;}
.x7c{left:67.263300px;}
.x6e{left:73.714500px;}
.x6d{left:86.155500px;}
.x6b{left:97.143000px;}
.x47{left:109.474691px;}
.x45{left:129.755288px;}
.x6a{left:136.861500px;}
.x48{left:142.928314px;}
.x4a{left:146.143006px;}
.x37{left:151.133604px;}
.x7f{left:174.379409px;}
.x80{left:178.879808px;}
.x81{left:210.739094px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x7{left:253.714500px;}
.x56{left:257.266500px;}
.x3{left:269.914500px;}
.x4b{left:271.320000px;}
.x4d{left:272.860500px;}
.x4c{left:274.401000px;}
.x4e{left:275.940000px;}
.x52{left:277.870500px;}
.x9{left:281.479500px;}
.x53{left:283.671000px;}
.x54{left:285.366000px;}
.x55{left:288.310500px;}
.x76{left:293.007000px;}
.x64{left:295.231500px;}
.x51{left:303.765000px;}
.x49{left:307.737675px;}
.x65{left:311.262000px;}
.x4f{left:313.818000px;}
.x50{left:315.498000px;}
.x8a{left:318.598500px;}
.x39{left:327.690000px;}
.x79{left:342.984000px;}
.x60{left:346.024500px;}
.x69{left:351.325500px;}
.x8{left:360.490500px;}
.x57{left:362.455500px;}
.x7e{left:365.269200px;}
.x58{left:370.575000px;}
.x6c{left:371.790000px;}
.x82{left:375.820500px;}
.x78{left:377.383500px;}
.x3a{left:381.459000px;}
.xa{left:386.475000px;}
.x29{left:391.867500px;}
.xb{left:393.948000px;}
.x10{left:397.710000px;}
.x11{left:405.181500px;}
.x2a{left:406.812000px;}
.x12{left:408.993000px;}
.x2b{left:410.622000px;}
.x3e{left:413.487000px;}
.x13{left:416.464500px;}
.x2c{left:425.566500px;}
.x2d{left:433.188000px;}
.x2e{left:448.132500px;}
.x74{left:449.728500px;}
.x73{left:454.576500px;}
.x3b{left:459.706500px;}
.x25{left:464.469000px;}
.x3c{left:474.649500px;}
.x59{left:475.977000px;}
.x26{left:479.413500px;}
.x83{left:482.506500px;}
.x5a{left:484.096500px;}
.x66{left:490.189500px;}
.x5e{left:492.022500px;}
.x61{left:496.567500px;}
.x5f{left:500.029500px;}
.x7a{left:502.182000px;}
.x8d{left:506.499000px;}
.x92{left:510.543000px;}
.x7b{left:518.476500px;}
.x93{left:525.487500px;}
.x72{left:526.689000px;}
.x32{left:531.886500px;}
.x3f{left:533.029500px;}
.x88{left:536.811000px;}
.x40{left:539.835000px;}
.x89{left:544.282500px;}
.x33{left:553.803000px;}
.xc{left:558.468000px;}
.xd{left:565.939500px;}
.xe{left:573.561000px;}
.xf{left:581.034000px;}
.x27{left:585.451500px;}
.x28{left:600.394500px;}
.x34{left:602.041500px;}
.x84{left:606.769500px;}
.x5b{left:608.046000px;}
.x31{left:611.406000px;}
.x85{left:614.242500px;}
.x8e{left:621.501000px;}
.x8f{left:628.974000px;}
.x86{left:634.300500px;}
.x90{left:636.333000px;}
.x43{left:638.637000px;}
.x67{left:645.027000px;}
.x87{left:649.245000px;}
.x91{left:651.277500px;}
.x44{left:653.580000px;}
.x1c{left:657.165000px;}
.x68{left:661.320000px;}
.x1d{left:664.636500px;}
.x75{left:666.802500px;}
.x1e{left:668.313000px;}
.x77{left:671.862000px;}
.x1f{left:675.786000px;}
.x20{left:679.461000px;}
.x23{left:685.299000px;}
.x21{left:686.934000px;}
.x24{left:692.770500px;}
.x22{left:694.285500px;}
.x41{left:705.096000px;}
.x5{left:709.807500px;}
.x42{left:711.901500px;}
.x8b{left:720.339000px;}
.x5c{left:728.523000px;}
.x8c{left:735.283500px;}
.x5d{left:736.642500px;}
.x2f{left:740.892000px;}
.x70{left:749.509500px;}
.x6{left:753.222000px;}
.x30{left:755.835000px;}
.x71{left:757.738500px;}
.x3d{left:776.298000px;}
.x62{left:778.927500px;}
.x95{left:783.489000px;}
.x96{left:786.003000px;}
.x14{left:791.322000px;}
.x63{left:795.241500px;}
.x15{left:798.793500px;}
.x16{left:802.605000px;}
.x17{left:810.076500px;}
.x18{left:813.886500px;}
.x94{left:817.855500px;}
.x19{left:821.359500px;}
.x1a{left:825.169500px;}
.x1b{left:832.642500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.vb{vertical-align:-4.478400pt;}
.v6{vertical-align:-1.109333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.109333pt;}
.v7{vertical-align:16.245333pt;}
.v4{vertical-align:17.354667pt;}
.v1{vertical-align:19.285333pt;}
.v9{vertical-align:26.714667pt;}
.v8{vertical-align:27.824000pt;}
.va{vertical-align:44.069333pt;}
.ls8f{letter-spacing:-0.347360pt;}
.ls93{letter-spacing:-0.304608pt;}
.ls8b{letter-spacing:-0.224448pt;}
.ls3b{letter-spacing:-0.218837pt;}
.ls40{letter-spacing:-0.207614pt;}
.ls2d{letter-spacing:-0.179558pt;}
.ls8a{letter-spacing:-0.176352pt;}
.ls94{letter-spacing:-0.171008pt;}
.ls2b{letter-spacing:-0.151502pt;}
.ls92{letter-spacing:-0.144288pt;}
.ls27{letter-spacing:-0.140280pt;}
.ls2c{letter-spacing:-0.129058pt;}
.ls3a{letter-spacing:-0.123446pt;}
.ls2a{letter-spacing:-0.117835pt;}
.ls45{letter-spacing:-0.112224pt;}
.ls3d{letter-spacing:-0.106613pt;}
.ls24{letter-spacing:-0.101002pt;}
.ls44{letter-spacing:-0.095390pt;}
.ls42{letter-spacing:-0.090720pt;}
.ls26{letter-spacing:-0.089779pt;}
.ls1d{letter-spacing:-0.084907pt;}
.ls39{letter-spacing:-0.084168pt;}
.ls21{letter-spacing:-0.078557pt;}
.ls83{letter-spacing:-0.076608pt;}
.ls43{letter-spacing:-0.075600pt;}
.ls87{letter-spacing:-0.074816pt;}
.ls41{letter-spacing:-0.065520pt;}
.ls8d{letter-spacing:-0.064128pt;}
.ls3e{letter-spacing:-0.056112pt;}
.ls8c{letter-spacing:-0.053440pt;}
.ls20{letter-spacing:-0.044890pt;}
.ls91{letter-spacing:-0.042752pt;}
.ls1e{letter-spacing:-0.040219pt;}
.ls46{letter-spacing:-0.039278pt;}
.ls88{letter-spacing:-0.037408pt;}
.ls3c{letter-spacing:-0.033667pt;}
.ls1c{letter-spacing:-0.031282pt;}
.ls84{letter-spacing:-0.029792pt;}
.ls90{letter-spacing:-0.026720pt;}
.ls1f{letter-spacing:-0.022445pt;}
.ls86{letter-spacing:-0.021376pt;}
.ls82{letter-spacing:-0.021280pt;}
.ls23{letter-spacing:-0.016834pt;}
.ls8e{letter-spacing:-0.016032pt;}
.ls85{letter-spacing:-0.014400pt;}
.ls22{letter-spacing:-0.011222pt;}
.ls95{letter-spacing:-0.010688pt;}
.ls28{letter-spacing:-0.005611pt;}
.ls89{letter-spacing:-0.005344pt;}
.lsc{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000405pt;}
.ls1{letter-spacing:0.000533pt;}
.ls61{letter-spacing:0.000613pt;}
.ls98{letter-spacing:0.003241pt;}
.ls74{letter-spacing:0.005344pt;}
.ls16{letter-spacing:0.005611pt;}
.ls6b{letter-spacing:0.009600pt;}
.ls12{letter-spacing:0.010080pt;}
.ls76{letter-spacing:0.010688pt;}
.ls31{letter-spacing:0.011222pt;}
.ls6d{letter-spacing:0.014400pt;}
.ls7b{letter-spacing:0.016032pt;}
.ls17{letter-spacing:0.016834pt;}
.ls6f{letter-spacing:0.019200pt;}
.ls75{letter-spacing:0.021376pt;}
.ls2f{letter-spacing:0.022445pt;}
.ls6a{letter-spacing:0.024000pt;}
.ls73{letter-spacing:0.026720pt;}
.ls15{letter-spacing:0.028056pt;}
.ls38{letter-spacing:0.030240pt;}
.ls71{letter-spacing:0.032064pt;}
.ls70{letter-spacing:0.033600pt;}
.ls18{letter-spacing:0.033667pt;}
.ls7c{letter-spacing:0.037408pt;}
.ls1a{letter-spacing:0.039278pt;}
.ls77{letter-spacing:0.042752pt;}
.lsf{letter-spacing:0.044890pt;}
.ls81{letter-spacing:0.048096pt;}
.ls13{letter-spacing:0.050400pt;}
.ls25{letter-spacing:0.050501pt;}
.ls78{letter-spacing:0.053440pt;}
.ls10{letter-spacing:0.056112pt;}
.ls7d{letter-spacing:0.058784pt;}
.ls36{letter-spacing:0.060480pt;}
.ls33{letter-spacing:0.061723pt;}
.ls7e{letter-spacing:0.064128pt;}
.ls29{letter-spacing:0.067334pt;}
.ls72{letter-spacing:0.074816pt;}
.ls34{letter-spacing:0.078557pt;}
.ls7a{letter-spacing:0.080160pt;}
.ls30{letter-spacing:0.084168pt;}
.ls79{letter-spacing:0.085504pt;}
.ls6e{letter-spacing:0.091200pt;}
.ls14{letter-spacing:0.095390pt;}
.ls11{letter-spacing:0.101002pt;}
.ls7f{letter-spacing:0.106880pt;}
.ls37{letter-spacing:0.115920pt;}
.ls6c{letter-spacing:0.124800pt;}
.ls35{letter-spacing:0.129058pt;}
.ls1b{letter-spacing:0.157114pt;}
.ls80{letter-spacing:0.160320pt;}
.ls32{letter-spacing:0.168336pt;}
.lse{letter-spacing:0.169814pt;}
.ls68{letter-spacing:0.170240pt;}
.ls49{letter-spacing:0.576078pt;}
.ls9f{letter-spacing:0.717312pt;}
.ls59{letter-spacing:0.797008pt;}
.ls4d{letter-spacing:2.656533pt;}
.ls2{letter-spacing:2.657067pt;}
.ls19{letter-spacing:2.771933pt;}
.ls5f{letter-spacing:3.118133pt;}
.ls60{letter-spacing:3.123467pt;}
.ls0{letter-spacing:9.298933pt;}
.lsb{letter-spacing:10.626533pt;}
.ls62{letter-spacing:11.138393pt;}
.ls9d{letter-spacing:11.320990pt;}
.ls97{letter-spacing:11.670577pt;}
.lsa1{letter-spacing:11.680329pt;}
.ls9{letter-spacing:11.785138pt;}
.lsa{letter-spacing:11.855868pt;}
.ls96{letter-spacing:11.954133pt;}
.ls9a{letter-spacing:11.959467pt;}
.ls7{letter-spacing:11.982073pt;}
.ls6{letter-spacing:12.528078pt;}
.ls48{letter-spacing:12.533411pt;}
.ls52{letter-spacing:13.087534pt;}
.ls53{letter-spacing:13.092809pt;}
.ls47{letter-spacing:13.194023pt;}
.ls4f{letter-spacing:13.281067pt;}
.ls55{letter-spacing:13.283733pt;}
.ls63{letter-spacing:13.286400pt;}
.ls54{letter-spacing:13.486939pt;}
.ls50{letter-spacing:13.514699pt;}
.ls51{letter-spacing:13.520141pt;}
.ls5b{letter-spacing:13.547352pt;}
.ls9e{letter-spacing:13.655258pt;}
.ls5c{letter-spacing:14.024200pt;}
.ls5d{letter-spacing:14.281067pt;}
.ls67{letter-spacing:14.393930pt;}
.ls5a{letter-spacing:14.426003pt;}
.ls4c{letter-spacing:14.608533pt;}
.ls56{letter-spacing:14.613867pt;}
.ls5e{letter-spacing:14.724570pt;}
.ls99{letter-spacing:14.727153pt;}
.ls66{letter-spacing:14.915096pt;}
.ls64{letter-spacing:14.920429pt;}
.lsa0{letter-spacing:15.359833pt;}
.ls3{letter-spacing:15.937067pt;}
.ls9c{letter-spacing:16.212120pt;}
.ls65{letter-spacing:21.161171pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls58{letter-spacing:266.512533pt;}
.ls57{letter-spacing:274.688533pt;}
.ls4a{letter-spacing:303.392078pt;}
.ls4b{letter-spacing:308.869411pt;}
.ls4e{letter-spacing:426.241007pt;}
.ls3f{letter-spacing:1130.050790pt;}
.ls69{letter-spacing:1384.099200pt;}
.lsd{letter-spacing:2358.741067pt;}
.ls9b{letter-spacing:2359.807733pt;}
.ls2e{letter-spacing:2360.869067pt;}
.ws81{word-spacing:-56.112000pt;}
.ws86{word-spacing:-50.400000pt;}
.wsf3{word-spacing:-14.080475pt;}
.ws82{word-spacing:-14.028000pt;}
.wsb1{word-spacing:-13.283467pt;}
.ws171{word-spacing:-12.672512pt;}
.ws85{word-spacing:-12.600000pt;}
.ws83{word-spacing:-12.534480pt;}
.ws87{word-spacing:-11.955200pt;}
.ws45{word-spacing:-11.172000pt;}
.ws44{word-spacing:-11.140718pt;}
.wsf9{word-spacing:-10.640000pt;}
.ws2c{word-spacing:-10.626800pt;}
.wsf8{word-spacing:-10.618720pt;}
.wsa{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws94{word-spacing:-3.192773pt;}
.ws115{word-spacing:-3.147616pt;}
.ws7a{word-spacing:-2.979547pt;}
.ws60{word-spacing:-2.945880pt;}
.wsf6{word-spacing:-2.869229pt;}
.ws79{word-spacing:-2.822434pt;}
.ws149{word-spacing:-2.816095pt;}
.ws93{word-spacing:-2.721432pt;}
.ws7b{word-spacing:-2.659709pt;}
.ws3f{word-spacing:-2.656693pt;}
.ws10b{word-spacing:-2.506336pt;}
.ws14d{word-spacing:-2.438861pt;}
.wsfd{word-spacing:-2.231622pt;}
.ws10c{word-spacing:-2.228448pt;}
.ws3b{word-spacing:-1.912819pt;}
.ws10d{word-spacing:-1.859712pt;}
.ws69{word-spacing:-1.851696pt;}
.wsf7{word-spacing:-1.594016pt;}
.ws124{word-spacing:-1.555104pt;}
.ws74{word-spacing:-1.475746pt;}
.ws75{word-spacing:-1.464523pt;}
.ws48{word-spacing:-1.434614pt;}
.ws76{word-spacing:-1.414022pt;}
.wsd4{word-spacing:-1.328347pt;}
.wsa6{word-spacing:-1.307410pt;}
.ws11f{word-spacing:-1.229120pt;}
.wsfc{word-spacing:-1.222079pt;}
.ws12a{word-spacing:-1.207744pt;}
.ws129{word-spacing:-1.181024pt;}
.ws116{word-spacing:-1.175680pt;}
.wsa5{word-spacing:-1.161518pt;}
.ws117{word-spacing:-1.020704pt;}
.ws153{word-spacing:-1.004237pt;}
.ws154{word-spacing:-0.956416pt;}
.wsad{word-spacing:-0.937070pt;}
.ws16a{word-spacing:-0.860774pt;}
.wsd5{word-spacing:-0.850142pt;}
.wsce{word-spacing:-0.807637pt;}
.wsf0{word-spacing:-0.797008pt;}
.wscf{word-spacing:-0.743874pt;}
.ws147{word-spacing:-0.690740pt;}
.ws56{word-spacing:-0.645288pt;}
.wsa3{word-spacing:-0.639677pt;}
.wscd{word-spacing:-0.637608pt;}
.wsd8{word-spacing:-0.637606pt;}
.ws55{word-spacing:-0.634066pt;}
.ws16b{word-spacing:-0.621670pt;}
.ws121{word-spacing:-0.609216pt;}
.ws95{word-spacing:-0.594787pt;}
.wsd6{word-spacing:-0.584473pt;}
.ws100{word-spacing:-0.531339pt;}
.ws54{word-spacing:-0.510619pt;}
.wsa7{word-spacing:-0.505008pt;}
.ws120{word-spacing:-0.491648pt;}
.wsd0{word-spacing:-0.478205pt;}
.wsd1{word-spacing:-0.474813pt;}
.wsd2{word-spacing:-0.425071pt;}
.ws162{word-spacing:-0.382566pt;}
.ws7d{word-spacing:-0.371937pt;}
.ws8b{word-spacing:-0.336672pt;}
.wsac{word-spacing:-0.331061pt;}
.ws25{word-spacing:-0.318803pt;}
.ws157{word-spacing:-0.286925pt;}
.ws30{word-spacing:-0.265669pt;}
.ws64{word-spacing:-0.258115pt;}
.ws50{word-spacing:-0.254722pt;}
.ws102{word-spacing:-0.246848pt;}
.ws14f{word-spacing:-0.239104pt;}
.ws141{word-spacing:-0.229792pt;}
.ws10a{word-spacing:-0.213760pt;}
.ws32{word-spacing:-0.212535pt;}
.ws13f{word-spacing:-0.208416pt;}
.ws19{word-spacing:-0.191283pt;}
.ws26{word-spacing:-0.159402pt;}
.wsd7{word-spacing:-0.155708pt;}
.ws1b{word-spacing:-0.143462pt;}
.ws28{word-spacing:-0.106268pt;}
.ws12{word-spacing:-0.095642pt;}
.ws9f{word-spacing:-0.090720pt;}
.ws46{word-spacing:-0.056112pt;}
.wsfa{word-spacing:-0.053440pt;}
.ws29{word-spacing:-0.053134pt;}
.ws84{word-spacing:-0.050400pt;}
.wsbd{word-spacing:-0.047821pt;}
.ws103{word-spacing:-0.046816pt;}
.ws51{word-spacing:-0.044688pt;}
.ws15f{word-spacing:-0.024994pt;}
.ws155{word-spacing:-0.024525pt;}
.wsab{word-spacing:-0.016834pt;}
.wscb{word-spacing:-0.004489pt;}
.ws2b{word-spacing:-0.003430pt;}
.wsef{word-spacing:-0.003194pt;}
.wsc7{word-spacing:-0.003166pt;}
.ws161{word-spacing:-0.003029pt;}
.ws163{word-spacing:-0.002799pt;}
.ws174{word-spacing:-0.002048pt;}
.wsc9{word-spacing:-0.001775pt;}
.ws169{word-spacing:-0.001758pt;}
.wsee{word-spacing:-0.001709pt;}
.wsed{word-spacing:-0.001119pt;}
.wsc4{word-spacing:-0.000990pt;}
.wsc1{word-spacing:-0.000836pt;}
.ws1{word-spacing:0.000000pt;}
.wsba{word-spacing:0.000205pt;}
.wsbe{word-spacing:0.000393pt;}
.ws2{word-spacing:0.000812pt;}
.wsdd{word-spacing:0.001067pt;}
.ws6b{word-spacing:0.016834pt;}
.ws12d{word-spacing:0.021376pt;}
.ws11d{word-spacing:0.032064pt;}
.ws13e{word-spacing:0.042752pt;}
.ws18{word-spacing:0.047821pt;}
.ws6a{word-spacing:0.050501pt;}
.ws2f{word-spacing:0.053134pt;}
.ws114{word-spacing:0.064128pt;}
.wsf4{word-spacing:0.065835pt;}
.wsa2{word-spacing:0.072946pt;}
.ws13c{word-spacing:0.080160pt;}
.ws9b{word-spacing:0.084168pt;}
.wsaa{word-spacing:0.089779pt;}
.ws13b{word-spacing:0.090848pt;}
.ws160{word-spacing:0.095642pt;}
.ws13d{word-spacing:0.096192pt;}
.ws59{word-spacing:0.101002pt;}
.ws9e{word-spacing:0.105840pt;}
.ws3d{word-spacing:0.106268pt;}
.ws5c{word-spacing:0.115920pt;}
.ws107{word-spacing:0.129600pt;}
.wsa0{word-spacing:0.136080pt;}
.ws1a{word-spacing:0.143462pt;}
.ws109{word-spacing:0.148800pt;}
.ws5b{word-spacing:0.156240pt;}
.ws3c{word-spacing:0.159402pt;}
.ws61{word-spacing:0.162725pt;}
.ws5a{word-spacing:0.166320pt;}
.ws8a{word-spacing:0.168336pt;}
.wse5{word-spacing:0.170029pt;}
.ws62{word-spacing:0.173947pt;}
.ws108{word-spacing:0.177600pt;}
.wse6{word-spacing:0.178954pt;}
.ws1c{word-spacing:0.191283pt;}
.ws3e{word-spacing:0.212535pt;}
.ws10{word-spacing:0.239104pt;}
.ws9d{word-spacing:0.257040pt;}
.ws2d{word-spacing:0.265669pt;}
.ws150{word-spacing:0.286925pt;}
.wsa4{word-spacing:0.291782pt;}
.ws2e{word-spacing:0.318803pt;}
.ws17{word-spacing:0.334746pt;}
.ws10e{word-spacing:0.342016pt;}
.ws77{word-spacing:0.381562pt;}
.ws91{word-spacing:0.409618pt;}
.ws4d{word-spacing:0.425071pt;}
.ws78{word-spacing:0.443285pt;}
.ws35{word-spacing:0.478205pt;}
.ws10f{word-spacing:0.480960pt;}
.ws16f{word-spacing:0.526029pt;}
.wsec{word-spacing:0.530316pt;}
.ws143{word-spacing:0.531339pt;}
.ws90{word-spacing:0.549898pt;}
.wsb9{word-spacing:0.582963pt;}
.wsbc{word-spacing:0.585097pt;}
.wseb{word-spacing:0.589679pt;}
.wse1{word-spacing:0.593050pt;}
.wsdb{word-spacing:0.593929pt;}
.wsb2{word-spacing:0.594765pt;}
.wsde{word-spacing:0.595183pt;}
.wsd9{word-spacing:0.596062pt;}
.ws15{word-spacing:0.597333pt;}
.wse2{word-spacing:0.598195pt;}
.wsbb{word-spacing:0.598400pt;}
.wsb3{word-spacing:0.600098pt;}
.wsca{word-spacing:0.609058pt;}
.wsb4{word-spacing:0.611191pt;}
.wse8{word-spacing:0.615654pt;}
.wse9{word-spacing:0.618667pt;}
.wse4{word-spacing:0.620228pt;}
.wse0{word-spacing:0.622362pt;}
.ws23{word-spacing:0.637606pt;}
.ws122{word-spacing:0.646624pt;}
.ws58{word-spacing:0.656510pt;}
.ws101{word-spacing:0.690740pt;}
.ws123{word-spacing:0.710752pt;}
.ws37{word-spacing:0.743874pt;}
.ws57{word-spacing:0.768734pt;}
.ws148{word-spacing:0.797008pt;}
.ws7c{word-spacing:0.858514pt;}
.ws151{word-spacing:0.956416pt;}
.ws12c{word-spacing:0.988640pt;}
.ws7f{word-spacing:1.009543pt;}
.ws7e{word-spacing:1.062677pt;}
.ws12b{word-spacing:1.074144pt;}
.wsaf{word-spacing:1.088573pt;}
.ws13{word-spacing:1.099878pt;}
.ws6f{word-spacing:1.105406pt;}
.wsb0{word-spacing:1.133462pt;}
.ws43{word-spacing:1.168945pt;}
.ws170{word-spacing:1.196425pt;}
.ws6e{word-spacing:1.212019pt;}
.ws9{word-spacing:1.227389pt;}
.ws70{word-spacing:1.245686pt;}
.ws49{word-spacing:1.275213pt;}
.ws16d{word-spacing:1.291162pt;}
.ws145{word-spacing:1.328347pt;}
.ws13a{word-spacing:1.341344pt;}
.wsae{word-spacing:1.430856pt;}
.ws14a{word-spacing:1.487748pt;}
.ws164{word-spacing:1.530266pt;}
.ws14{word-spacing:1.578086pt;}
.ws135{word-spacing:1.656640pt;}
.ws92{word-spacing:1.700194pt;}
.ws16e{word-spacing:1.721549pt;}
.ws159{word-spacing:1.769370pt;}
.ws34{word-spacing:1.806551pt;}
.ws97{word-spacing:1.818029pt;}
.wsff{word-spacing:1.859685pt;}
.ws96{word-spacing:1.868530pt;}
.ws21{word-spacing:1.912819pt;}
.ws15b{word-spacing:1.960653pt;}
.ws119{word-spacing:1.993312pt;}
.ws113{word-spacing:1.998656pt;}
.ws112{word-spacing:2.009344pt;}
.ws36{word-spacing:2.019087pt;}
.ws24{word-spacing:2.125355pt;}
.ws134{word-spacing:2.175008pt;}
.ws14b{word-spacing:2.178489pt;}
.ws15c{word-spacing:2.199757pt;}
.ws118{word-spacing:2.228448pt;}
.ws80{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws11c{word-spacing:2.239136pt;}
.ws11b{word-spacing:2.271200pt;}
.ws126{word-spacing:2.281888pt;}
.wsb7{word-spacing:2.284756pt;}
.ws127{word-spacing:2.297920pt;}
.ws128{word-spacing:2.319296pt;}
.ws4f{word-spacing:2.337890pt;}
.ws125{word-spacing:2.340672pt;}
.ws168{word-spacing:2.343219pt;}
.ws106{word-spacing:2.385600pt;}
.ws105{word-spacing:2.390400pt;}
.ws1d{word-spacing:2.391040pt;}
.ws71{word-spacing:2.407205pt;}
.ws73{word-spacing:2.446483pt;}
.ws4e{word-spacing:2.497292pt;}
.wsb{word-spacing:2.550432pt;}
.ws158{word-spacing:2.550637pt;}
.ws72{word-spacing:2.553096pt;}
.wsd3{word-spacing:2.603559pt;}
.ws14e{word-spacing:2.630144pt;}
.ws111{word-spacing:2.650624pt;}
.ws38{word-spacing:2.656693pt;}
.ws172{word-spacing:2.677965pt;}
.ws110{word-spacing:2.682688pt;}
.ws6d{word-spacing:2.732654pt;}
.ws6c{word-spacing:2.738266pt;}
.ws15e{word-spacing:2.773606pt;}
.ws67{word-spacing:2.777544pt;}
.ws68{word-spacing:2.783155pt;}
.ws20{word-spacing:2.816095pt;}
.ws1e{word-spacing:2.861926pt;}
.ws176{word-spacing:2.863130pt;}
.ws173{word-spacing:2.865408pt;}
.ws167{word-spacing:2.865877pt;}
.ws152{word-spacing:2.866509pt;}
.ws165{word-spacing:2.867166pt;}
.ws146{word-spacing:2.869229pt;}
.ws156{word-spacing:2.869248pt;}
.wsf{word-spacing:2.917069pt;}
.ws131{word-spacing:2.923168pt;}
.ws130{word-spacing:2.939200pt;}
.wse{word-spacing:2.964890pt;}
.ws33{word-spacing:2.975497pt;}
.ws175{word-spacing:3.012710pt;}
.ws16c{word-spacing:3.060531pt;}
.ws9a{word-spacing:3.074938pt;}
.ws3a{word-spacing:3.081764pt;}
.ws177{word-spacing:3.108352pt;}
.ws15a{word-spacing:3.156173pt;}
.ws1f{word-spacing:3.188032pt;}
.ws4b{word-spacing:3.241166pt;}
.ws11a{word-spacing:3.243808pt;}
.ws39{word-spacing:3.347434pt;}
.ws166{word-spacing:3.347456pt;}
.ws99{word-spacing:3.366720pt;}
.ws63{word-spacing:3.585557pt;}
.ws11{word-spacing:3.586560pt;}
.wsf1{word-spacing:3.719371pt;}
.wsa1{word-spacing:3.731448pt;}
.ws2a{word-spacing:3.772505pt;}
.ws52{word-spacing:3.804394pt;}
.ws144{word-spacing:3.825638pt;}
.ws53{word-spacing:3.826838pt;}
.wsb8{word-spacing:4.038174pt;}
.ws22{word-spacing:4.091308pt;}
.ws4a{word-spacing:4.356977pt;}
.ws16{word-spacing:4.399514pt;}
.wsfe{word-spacing:4.463245pt;}
.ws136{word-spacing:4.537056pt;}
.ws142{word-spacing:4.569513pt;}
.ws137{word-spacing:4.595840pt;}
.ws11e{word-spacing:4.622560pt;}
.wsd{word-spacing:4.686438pt;}
.ws27{word-spacing:4.728914pt;}
.ws41{word-spacing:4.782048pt;}
.ws7{word-spacing:4.872362pt;}
.ws12f{word-spacing:4.873728pt;}
.ws12e{word-spacing:4.932512pt;}
.ws31{word-spacing:4.994583pt;}
.ws8d{word-spacing:5.061302pt;}
.ws98{word-spacing:5.078136pt;}
.ws14c{word-spacing:5.100851pt;}
.ws138{word-spacing:5.151616pt;}
.ws140{word-spacing:5.156960pt;}
.ws4c{word-spacing:5.207119pt;}
.ws8c{word-spacing:5.246472pt;}
.ws40{word-spacing:5.897859pt;}
.ws42{word-spacing:5.950993pt;}
.ws47{word-spacing:6.004127pt;}
.ws8e{word-spacing:6.088152pt;}
.wsf5{word-spacing:6.269796pt;}
.wsa9{word-spacing:6.486547pt;}
.wsa8{word-spacing:6.581938pt;}
.ws89{word-spacing:7.115002pt;}
.ws88{word-spacing:7.159891pt;}
.ws5e{word-spacing:8.119406pt;}
.wsf2{word-spacing:8.395151pt;}
.ws5d{word-spacing:8.585136pt;}
.ws5{word-spacing:8.740496pt;}
.ws15d{word-spacing:9.803264pt;}
.ws65{word-spacing:9.808378pt;}
.ws132{word-spacing:9.832960pt;}
.ws133{word-spacing:9.993280pt;}
.ws66{word-spacing:10.173106pt;}
.ws8f{word-spacing:10.448054pt;}
.ws6{word-spacing:10.525789pt;}
.wsc{word-spacing:12.374935pt;}
.ws5f{word-spacing:13.472491pt;}
.ws139{word-spacing:13.787520pt;}
.wsfb{word-spacing:16.099562pt;}
.ws4{word-spacing:19.857270pt;}
.ws8{word-spacing:20.196125pt;}
.wsc5{word-spacing:210.031881pt;}
.wsdf{word-spacing:216.561067pt;}
.wsea{word-spacing:218.572800pt;}
.wsda{word-spacing:228.513067pt;}
.wsc2{word-spacing:237.342814pt;}
.wsbf{word-spacing:243.582814pt;}
.wsdc{word-spacing:244.998400pt;}
.wse3{word-spacing:256.950400pt;}
.wsc8{word-spacing:261.557214pt;}
.wsc0{word-spacing:292.137267pt;}
.wsb6{word-spacing:301.797069pt;}
.wsc3{word-spacing:316.047667pt;}
.wscc{word-spacing:318.582170pt;}
.wsc6{word-spacing:328.002867pt;}
.wse7{word-spacing:366.450790pt;}
.wsb5{word-spacing:428.187443pt;}
.ws9c{word-spacing:1062.054269pt;}
.ws104{word-spacing:1309.804800pt;}
._4{margin-left:-10.616218pt;}
._f{margin-left:-5.897859pt;}
._7{margin-left:-4.585490pt;}
._0{margin-left:-3.421811pt;}
._1a{margin-left:-2.407205pt;}
._3{margin-left:-1.301776pt;}
._18{width:1.072512pt;}
._5{width:2.157200pt;}
._8{width:9.861670pt;}
._1{width:11.530016pt;}
._12{width:12.858396pt;}
._9{width:14.011494pt;}
._d{width:15.446118pt;}
._e{width:16.354706pt;}
._14{width:17.587310pt;}
._c{width:18.554470pt;}
._48{width:19.648780pt;}
._16{width:20.615940pt;}
._2{width:22.502128pt;}
._a{width:24.053862pt;}
._b{width:25.823232pt;}
._13{width:27.045138pt;}
._23{width:28.506316pt;}
._1b{width:30.126895pt;}
._10{width:31.189580pt;}
._17{width:34.032238pt;}
._15{width:34.988647pt;}
._46{width:37.862810pt;}
._45{width:44.101109pt;}
._6{width:48.867760pt;}
._4a{width:54.993920pt;}
._49{width:78.904320pt;}
._1e{width:155.465421pt;}
._42{width:156.842291pt;}
._1d{width:161.634304pt;}
._1c{width:179.806208pt;}
._44{width:197.260800pt;}
._2a{width:201.086464pt;}
._36{width:214.871765pt;}
._32{width:219.172762pt;}
._1f{width:222.701466pt;}
._3a{width:226.240205pt;}
._3e{width:232.217805pt;}
._40{width:238.195405pt;}
._2c{width:244.794675pt;}
._34{width:250.740395pt;}
._43{width:254.789222pt;}
._2f{width:256.754364pt;}
._2d{width:268.705075pt;}
._31{width:270.809190pt;}
._3f{width:278.577212pt;}
._2e{width:280.662050pt;}
._20{width:293.204471pt;}
._2b{width:299.612049pt;}
._3b{width:302.370918pt;}
._21{width:308.895855pt;}
._41{width:314.326118pt;}
._39{width:319.634227pt;}
._3c{width:321.950251pt;}
._3d{width:331.589427pt;}
._38{width:361.888879pt;}
._25{width:396.912640pt;}
._24{width:416.184422pt;}
._29{width:420.015036pt;}
._11{width:436.680400pt;}
._28{width:437.990707pt;}
._22{width:440.190464pt;}
._27{width:443.932544pt;}
._26{width:456.019149pt;}
._30{width:541.761843pt;}
._35{width:878.659379pt;}
._37{width:900.800410pt;}
._33{width:926.241075pt;}
._47{width:1984.577056pt;}
._19{width:2083.010462pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fsd{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fsb{font-size:42.077867pt;}
.fs5{font-size:42.507200pt;}
.fsf{font-size:42.560000pt;}
.fse{font-size:44.292800pt;}
.fs8{font-size:44.688000pt;}
.fs6{font-size:47.820800pt;}
.fs11{font-size:48.000000pt;}
.fs7{font-size:49.829333pt;}
.fsa{font-size:50.400000pt;}
.fs1{font-size:53.133867pt;}
.fs10{font-size:53.440000pt;}
.fsc{font-size:55.365867pt;}
.fs9{font-size:56.112000pt;}
.fs2{font-size:95.641600pt;}
.y13c{bottom:-740.348933pt;}
.y165{bottom:-684.331333pt;}
.y164{bottom:-667.291989pt;}
.y163{bottom:-650.172485pt;}
.y162{bottom:-633.133141pt;}
.y161{bottom:-616.013637pt;}
.y160{bottom:-598.894133pt;}
.y15f{bottom:-581.854789pt;}
.y15e{bottom:-564.735285pt;}
.y15d{bottom:-547.695941pt;}
.y15c{bottom:-530.576437pt;}
.y15b{bottom:-513.456933pt;}
.y15a{bottom:-496.417589pt;}
.y7b{bottom:-490.717780pt;}
.y159{bottom:-479.298085pt;}
.y158{bottom:-462.258741pt;}
.y157{bottom:-445.139237pt;}
.y96{bottom:-438.293346pt;}
.y156{bottom:-428.019733pt;}
.y95{bottom:-420.317867pt;}
.y155{bottom:-410.980389pt;}
.y94{bottom:-402.426556pt;}
.y154{bottom:-393.860885pt;}
.y93{bottom:-384.451077pt;}
.y153{bottom:-376.741381pt;}
.y92{bottom:-366.475598pt;}
.y152{bottom:-359.702037pt;}
.y91{bottom:-348.584286pt;}
.y151{bottom:-342.582533pt;}
.ybb{bottom:-331.404780pt;}
.y90{bottom:-330.608807pt;}
.y150{bottom:-325.543189pt;}
.y8f{bottom:-312.633328pt;}
.y14f{bottom:-308.423685pt;}
.y14e{bottom:-291.304181pt;}
.y8e{bottom:-290.540631pt;}
.yd7{bottom:-274.785084pt;}
.y14d{bottom:-274.264837pt;}
.y14c{bottom:-257.145333pt;}
.yd6{bottom:-256.809605pt;}
.y8d{bottom:-255.765219pt;}
.y14b{bottom:-240.105989pt;}
.y8c{bottom:-237.873908pt;}
.yd5{bottom:-234.716908pt;}
.y14a{bottom:-222.986485pt;}
.y8b{bottom:-219.898428pt;}
.y149{bottom:-205.866981pt;}
.y8a{bottom:-201.922949pt;}
.yd4{bottom:-199.941496pt;}
.y148{bottom:-188.827637pt;}
.y89{bottom:-184.031638pt;}
.yd3{bottom:-181.966016pt;}
.y147{bottom:-171.708133pt;}
.y88{bottom:-166.056159pt;}
.yd2{bottom:-164.074705pt;}
.y146{bottom:-154.667453pt;}
.yd1{bottom:-146.099226pt;}
.y87{bottom:-143.963462pt;}
.y145{bottom:-137.547949pt;}
.yd0{bottom:-128.123747pt;}
.y144{bottom:-120.428445pt;}
.ycf{bottom:-110.232436pt;}
.y86{bottom:-109.188050pt;}
.y143{bottom:-103.387765pt;}
.yce{bottom:-92.256956pt;}
.y85{bottom:-91.212570pt;}
.y142{bottom:-86.268261pt;}
.ycd{bottom:-74.281477pt;}
.y84{bottom:-73.321259pt;}
.y141{bottom:-65.228933pt;}
.y83{bottom:-55.345780pt;}
.ycc{bottom:-52.188780pt;}
.y140{bottom:-32.508133pt;}
.y82{bottom:-20.989780pt;}
.ycb{bottom:-17.832780pt;}
.y13f{bottom:-16.988533pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:0.011119pt;}
.y13e{bottom:6.531467pt;}
.yca{bottom:7.372823pt;}
.y13d{bottom:25.411067pt;}
.yc9{bottom:26.272747pt;}
.y42{bottom:28.346667pt;}
.y15{bottom:93.018667pt;}
.yac{bottom:99.628000pt;}
.y41{bottom:102.760000pt;}
.y77{bottom:105.510667pt;}
.y19f{bottom:106.308000pt;}
.y14{bottom:108.920000pt;}
.yaa{bottom:116.365333pt;}
.y40{bottom:119.497333pt;}
.y10d{bottom:120.580000pt;}
.y18b{bottom:120.905333pt;}
.yab{bottom:121.188000pt;}
.y76{bottom:122.248000pt;}
.y19e{bottom:123.045333pt;}
.y10e{bottom:124.437333pt;}
.y13{bottom:124.820000pt;}
.y1cc{bottom:132.609333pt;}
.ya9{bottom:133.102667pt;}
.y10c{bottom:133.198667pt;}
.y3f{bottom:136.234667pt;}
.y10b{bottom:137.057333pt;}
.y18a{bottom:137.642667pt;}
.y75{bottom:138.985333pt;}
.y19d{bottom:139.782667pt;}
.y12{bottom:140.720000pt;}
.y1cb{bottom:147.952000pt;}
.y1ff{bottom:149.545333pt;}
.ya8{bottom:149.840000pt;}
.y10a{bottom:151.641333pt;}
.y3e{bottom:152.972000pt;}
.ye1{bottom:153.073333pt;}
.y189{bottom:154.380000pt;}
.y74{bottom:155.722667pt;}
.y19c{bottom:156.520000pt;}
.y11{bottom:156.621333pt;}
.y1ca{bottom:163.294667pt;}
.y1fe{bottom:164.888000pt;}
.ya7{bottom:166.577333pt;}
.y109{bottom:166.808000pt;}
.y3d{bottom:169.709333pt;}
.ye0{bottom:169.810667pt;}
.y188{bottom:171.117333pt;}
.y73{bottom:172.460000pt;}
.y10{bottom:172.521333pt;}
.y19b{bottom:173.257333pt;}
.y1c9{bottom:178.637333pt;}
.y1fd{bottom:180.230667pt;}
.y108{bottom:181.976000pt;}
.ya6{bottom:183.314667pt;}
.y3c{bottom:186.446667pt;}
.ydf{bottom:186.548000pt;}
.y187{bottom:187.854667pt;}
.yf{bottom:188.421333pt;}
.y72{bottom:189.197333pt;}
.y19a{bottom:189.994667pt;}
.y1c8{bottom:193.980000pt;}
.y1fc{bottom:195.573333pt;}
.y107{bottom:197.142667pt;}
.ya5{bottom:200.052000pt;}
.y3b{bottom:203.184000pt;}
.yde{bottom:203.285333pt;}
.ye{bottom:204.322667pt;}
.y186{bottom:204.592000pt;}
.y199{bottom:206.732000pt;}
.y1c7{bottom:209.322667pt;}
.y138{bottom:209.369333pt;}
.y71{bottom:209.920000pt;}
.y1fb{bottom:210.916000pt;}
.y106{bottom:212.309333pt;}
.ya4{bottom:216.789333pt;}
.y3a{bottom:219.921333pt;}
.ydd{bottom:220.022667pt;}
.y185{bottom:221.329333pt;}
.y198{bottom:223.469333pt;}
.y1c6{bottom:224.665333pt;}
.y137{bottom:226.106667pt;}
.y1fa{bottom:226.258667pt;}
.y105{bottom:227.477333pt;}
.y39{bottom:236.658667pt;}
.ydc{bottom:236.760000pt;}
.ya3{bottom:237.512000pt;}
.y184{bottom:238.066667pt;}
.y70{bottom:239.808000pt;}
.y1c5{bottom:240.006667pt;}
.y197{bottom:240.206667pt;}
.y1f9{bottom:241.601333pt;}
.y136{bottom:242.844000pt;}
.y104{bottom:249.046667pt;}
.y38{bottom:253.396000pt;}
.ydb{bottom:253.497333pt;}
.y183{bottom:254.804000pt;}
.y1c4{bottom:255.349333pt;}
.y6f{bottom:256.545333pt;}
.y196{bottom:256.944000pt;}
.y135{bottom:259.581333pt;}
.yd{bottom:266.570667pt;}
.ya2{bottom:267.400000pt;}
.y13b{bottom:267.731187pt;}
.y37{bottom:270.133333pt;}
.yda{bottom:270.234667pt;}
.y1c3{bottom:270.692000pt;}
.y182{bottom:271.541333pt;}
.y1f8{bottom:272.285333pt;}
.y6e{bottom:273.282667pt;}
.y195{bottom:273.681333pt;}
.y13a{bottom:276.291067pt;}
.y134{bottom:276.318667pt;}
.y103{bottom:277.152000pt;}
.yc{bottom:282.470667pt;}
.ya1{bottom:284.137333pt;}
.y1c2{bottom:286.034667pt;}
.y36{bottom:286.870667pt;}
.y1f7{bottom:287.628000pt;}
.y181{bottom:288.278667pt;}
.y6d{bottom:290.020000pt;}
.y194{bottom:290.417333pt;}
.yd9{bottom:290.957333pt;}
.y133{bottom:293.056000pt;}
.yb{bottom:298.370667pt;}
.ya0{bottom:300.874667pt;}
.y1c1{bottom:301.377333pt;}
.y1f6{bottom:302.970667pt;}
.y180{bottom:305.016000pt;}
.y6c{bottom:306.757333pt;}
.y193{bottom:307.154667pt;}
.y35{bottom:307.592000pt;}
.y132{bottom:309.793333pt;}
.y102{bottom:310.133333pt;}
.ya{bottom:314.272000pt;}
.y1c0{bottom:316.720000pt;}
.y9f{bottom:317.610667pt;}
.yd8{bottom:318.004000pt;}
.y1f5{bottom:318.313333pt;}
.y17f{bottom:321.753333pt;}
.y6b{bottom:323.494667pt;}
.y192{bottom:323.892000pt;}
.y131{bottom:326.530667pt;}
.y101{bottom:326.870667pt;}
.y1bf{bottom:332.062667pt;}
.y1f4{bottom:333.656000pt;}
.y9e{bottom:334.348000pt;}
.y17e{bottom:338.490667pt;}
.y9{bottom:339.470667pt;}
.y6a{bottom:340.232000pt;}
.yb8{bottom:340.597333pt;}
.y191{bottom:340.629333pt;}
.y100{bottom:343.608000pt;}
.y1be{bottom:347.405333pt;}
.y1f3{bottom:348.998667pt;}
.y9d{bottom:351.085333pt;}
.y17d{bottom:355.228000pt;}
.y69{bottom:356.968000pt;}
.y190{bottom:357.366667pt;}
.yff{bottom:360.345333pt;}
.y130{bottom:362.205333pt;}
.y1bc{bottom:362.746667pt;}
.y1bd{bottom:362.748000pt;}
.y8{bottom:363.341333pt;}
.y1f2{bottom:364.341333pt;}
.y9c{bottom:371.808000pt;}
.y17c{bottom:371.965333pt;}
.y68{bottom:373.705333pt;}
.y18f{bottom:374.104000pt;}
.y34{bottom:374.392000pt;}
.y1bb{bottom:378.089333pt;}
.y7{bottom:379.241333pt;}
.y1f1{bottom:379.684000pt;}
.y12f{bottom:380.924000pt;}
.y12d{bottom:381.182667pt;}
.y17b{bottom:388.702667pt;}
.y67{bottom:390.442667pt;}
.y18e{bottom:390.841333pt;}
.y1ba{bottom:393.432000pt;}
.y1f0{bottom:395.025333pt;}
.y6{bottom:395.141333pt;}
.y12c{bottom:395.794667pt;}
.y12e{bottom:396.092000pt;}
.yfe{bottom:399.877333pt;}
.y9b{bottom:401.696000pt;}
.y17a{bottom:405.440000pt;}
.y18d{bottom:407.578667pt;}
.y33{bottom:407.628000pt;}
.y1b9{bottom:408.774667pt;}
.y1ef{bottom:410.368000pt;}
.y5{bottom:411.042667pt;}
.y66{bottom:411.165333pt;}
.y12b{bottom:411.258667pt;}
.y129{bottom:411.700000pt;}
.yfd{bottom:414.462667pt;}
.y9a{bottom:418.433333pt;}
.y179{bottom:422.177333pt;}
.y1b8{bottom:424.117333pt;}
.y18c{bottom:424.316000pt;}
.y32{bottom:424.922667pt;}
.y1ee{bottom:425.710667pt;}
.y128{bottom:426.312000pt;}
.y12a{bottom:426.425333pt;}
.y4{bottom:426.942667pt;}
.yfc{bottom:429.629333pt;}
.y99{bottom:435.170667pt;}
.y178{bottom:438.914667pt;}
.y1b7{bottom:439.460000pt;}
.yc8{bottom:439.637226pt;}
.y65{bottom:441.053333pt;}
.y127{bottom:441.593333pt;}
.y125{bottom:441.852000pt;}
.y31{bottom:442.218667pt;}
.y3{bottom:442.842667pt;}
.yfb{bottom:444.241333pt;}
.y80{bottom:444.959640pt;}
.y98{bottom:451.908000pt;}
.y1b6{bottom:454.802667pt;}
.y177{bottom:455.650667pt;}
.y1ed{bottom:456.396000pt;}
.y124{bottom:456.464000pt;}
.y126{bottom:456.760000pt;}
.yc7{bottom:457.612705pt;}
.y64{bottom:457.790667pt;}
.y2{bottom:458.744000pt;}
.yfa{bottom:458.853333pt;}
.y30{bottom:459.513333pt;}
.y7f{bottom:462.850951pt;}
.y1b5{bottom:470.145333pt;}
.y1ec{bottom:471.738667pt;}
.y176{bottom:472.388000pt;}
.y63{bottom:474.528000pt;}
.y1{bottom:474.644000pt;}
.yc6{bottom:475.588184pt;}
.y2f{bottom:476.809333pt;}
.y123{bottom:478.052000pt;}
.yf9{bottom:479.866667pt;}
.y7e{bottom:480.826430pt;}
.y97{bottom:481.744000pt;}
.y1b4{bottom:485.488000pt;}
.y1eb{bottom:487.081333pt;}
.y175{bottom:489.125333pt;}
.y62{bottom:491.265333pt;}
.yc5{bottom:493.563664pt;}
.y2e{bottom:494.104000pt;}
.y7d{bottom:498.801909pt;}
.y1b3{bottom:500.829333pt;}
.y78{bottom:501.681333pt;}
.y1ea{bottom:502.424000pt;}
.y174{bottom:505.862667pt;}
.y122{bottom:506.157333pt;}
.yf8{bottom:507.973333pt;}
.y61{bottom:508.002667pt;}
.y2d{bottom:511.398667pt;}
.yc4{bottom:511.454975pt;}
.y1b2{bottom:516.172000pt;}
.y7c{bottom:516.694623pt;}
.y1e9{bottom:517.766667pt;}
.y173{bottom:522.600000pt;}
.y60{bottom:524.740000pt;}
.y2c{bottom:528.694667pt;}
.yc3{bottom:529.430454pt;}
.y1e8{bottom:533.108000pt;}
.y1b1{bottom:535.500000pt;}
.y121{bottom:539.140000pt;}
.y172{bottom:539.337333pt;}
.yf7{bottom:540.954667pt;}
.y5f{bottom:541.477333pt;}
.y2b{bottom:545.989333pt;}
.yc2{bottom:547.405933pt;}
.y1e7{bottom:548.450667pt;}
.y120{bottom:555.877333pt;}
.y171{bottom:556.074667pt;}
.yf6{bottom:557.692000pt;}
.y5e{bottom:558.214667pt;}
.y2a{bottom:563.284000pt;}
.y1e6{bottom:563.793333pt;}
.yc1{bottom:565.297244pt;}
.y1b0{bottom:565.388000pt;}
.y7a{bottom:567.766346pt;}
.y11f{bottom:572.613333pt;}
.y170{bottom:572.812000pt;}
.yf5{bottom:574.429333pt;}
.y5d{bottom:574.952000pt;}
.y79{bottom:576.754220pt;}
.y1e5{bottom:579.136000pt;}
.y29{bottom:580.580000pt;}
.yc0{bottom:583.272724pt;}
.y1af{bottom:588.980000pt;}
.y16f{bottom:589.549333pt;}
.yf4{bottom:591.166667pt;}
.y5c{bottom:591.689333pt;}
.y1e4{bottom:594.478667pt;}
.y28{bottom:597.874667pt;}
.ybf{bottom:601.164035pt;}
.y11e{bottom:605.520000pt;}
.y16e{bottom:606.286667pt;}
.y5b{bottom:608.426667pt;}
.y1e3{bottom:609.821333pt;}
.yf3{bottom:611.889333pt;}
.y1ae{bottom:612.570667pt;}
.y27{bottom:615.170667pt;}
.y11c{bottom:618.138667pt;}
.y11d{bottom:621.997333pt;}
.y16d{bottom:623.024000pt;}
.ybe{bottom:623.339497pt;}
.y5a{bottom:625.164000pt;}
.y26{bottom:632.465333pt;}
.y1ad{bottom:636.162667pt;}
.y11b{bottom:639.516000pt;}
.y16c{bottom:639.761333pt;}
.y1e2{bottom:640.506667pt;}
.y59{bottom:641.901333pt;}
.y11a{bottom:647.726667pt;}
.yf2{bottom:649.510667pt;}
.y25{bottom:649.760000pt;}
.y1ac{bottom:651.784000pt;}
.y1e1{bottom:655.848000pt;}
.y16b{bottom:656.498667pt;}
.ybd{bottom:658.114909pt;}
.y58{bottom:658.638667pt;}
.yf1{bottom:664.121333pt;}
.y24{bottom:667.056000pt;}
.y119{bottom:669.850667pt;}
.y1e0{bottom:671.190667pt;}
.y16a{bottom:673.236000pt;}
.y57{bottom:675.376000pt;}
.ybc{bottom:676.007623pt;}
.y118{bottom:678.061333pt;}
.yf0{bottom:678.733333pt;}
.y23{bottom:684.350667pt;}
.y1df{bottom:686.533333pt;}
.y169{bottom:689.973333pt;}
.y56{bottom:692.113333pt;}
.yef{bottom:693.345333pt;}
.y1ab{bottom:698.966667pt;}
.y117{bottom:700.184000pt;}
.y22{bottom:701.645333pt;}
.y1de{bottom:701.876000pt;}
.yee{bottom:707.957333pt;}
.y116{bottom:708.394667pt;}
.y55{bottom:708.850667pt;}
.y168{bottom:710.696000pt;}
.y1aa{bottom:714.589333pt;}
.y1dd{bottom:717.218667pt;}
.y21{bottom:718.941333pt;}
.y54{bottom:725.588000pt;}
.yba{bottom:727.079346pt;}
.yed{bottom:728.972000pt;}
.y1a9{bottom:730.210667pt;}
.y115{bottom:730.518667pt;}
.y1dc{bottom:732.561333pt;}
.yb9{bottom:736.067220pt;}
.y20{bottom:736.236000pt;}
.y167{bottom:737.742667pt;}
.y114{bottom:738.729333pt;}
.y53{bottom:742.324000pt;}
.y1a8{bottom:745.832000pt;}
.y1db{bottom:747.904000pt;}
.y166{bottom:754.838667pt;}
.yec{bottom:757.077333pt;}
.y52{bottom:759.061333pt;}
.y113{bottom:760.853333pt;}
.y1a7{bottom:761.453333pt;}
.y1da{bottom:763.246667pt;}
.y1f{bottom:770.534667pt;}
.yeb{bottom:774.173333pt;}
.yb7{bottom:775.401333pt;}
.y51{bottom:775.798667pt;}
.y112{bottom:776.020000pt;}
.y1a6{bottom:777.074667pt;}
.y139{bottom:777.432000pt;}
.y1d9{bottom:778.589333pt;}
.y1e{bottom:784.880000pt;}
.y111{bottom:791.186667pt;}
.yb6{bottom:792.138667pt;}
.y50{bottom:792.536000pt;}
.y1a5{bottom:792.696000pt;}
.y1d8{bottom:793.930667pt;}
.y1d{bottom:803.084000pt;}
.yea{bottom:803.694667pt;}
.y1a4{bottom:808.317333pt;}
.yb5{bottom:808.874667pt;}
.y4f{bottom:809.273333pt;}
.y110{bottom:812.478667pt;}
.y1c{bottom:813.573333pt;}
.ye9{bottom:820.432000pt;}
.y1a3{bottom:823.938667pt;}
.y1d7{bottom:824.616000pt;}
.yb4{bottom:825.612000pt;}
.y4e{bottom:826.010667pt;}
.y1b{bottom:827.920000pt;}
.ye8{bottom:837.169333pt;}
.y1d6{bottom:839.958667pt;}
.yb3{bottom:842.349333pt;}
.y4d{bottom:842.748000pt;}
.y10f{bottom:843.241333pt;}
.y1a{bottom:846.122667pt;}
.y1d5{bottom:855.301333pt;}
.y1a2{bottom:855.500000pt;}
.ye7{bottom:857.892000pt;}
.yb2{bottom:859.086667pt;}
.y4c{bottom:859.485333pt;}
.y202{bottom:866.592000pt;}
.y1d4{bottom:870.644000pt;}
.y1a1{bottom:872.237333pt;}
.yb1{bottom:875.824000pt;}
.y4b{bottom:876.222667pt;}
.y201{bottom:881.934667pt;}
.y19{bottom:885.836000pt;}
.y1d3{bottom:885.986667pt;}
.y1a0{bottom:888.974667pt;}
.yb0{bottom:892.561333pt;}
.y4a{bottom:892.960000pt;}
.y200{bottom:897.277333pt;}
.y1d2{bottom:901.329333pt;}
.ye6{bottom:905.712000pt;}
.yaf{bottom:909.298667pt;}
.y49{bottom:909.697333pt;}
.y1d1{bottom:916.670667pt;}
.y18{bottom:921.320000pt;}
.ye5{bottom:922.449333pt;}
.yae{bottom:926.036000pt;}
.y48{bottom:926.434667pt;}
.y1d0{bottom:932.013333pt;}
.ye4{bottom:939.186667pt;}
.y47{bottom:943.172000pt;}
.y17{bottom:946.425333pt;}
.yad{bottom:946.758667pt;}
.y1cf{bottom:947.356000pt;}
.ye3{bottom:955.924000pt;}
.y46{bottom:959.909333pt;}
.y1ce{bottom:962.698667pt;}
.y16{bottom:971.530667pt;}
.ye2{bottom:972.661333pt;}
.y45{bottom:976.646667pt;}
.y1cd{bottom:978.041333pt;}
.y44{bottom:993.384000pt;}
.y43{bottom:1046.810667pt;}
.h7{height:23.304670pt;}
.h2{height:27.188522pt;}
.h3{height:27.262909pt;}
.h15{height:28.023859pt;}
.h1f{height:29.499005pt;}
.h23{height:31.067969pt;}
.h8{height:31.072763pt;}
.hd{height:31.157778pt;}
.h22{height:31.338125pt;}
.h10{height:32.621367pt;}
.hf{height:32.905031pt;}
.h17{height:34.430976pt;}
.h9{height:34.957005pt;}
.h25{height:35.039062pt;}
.ha{height:35.052646pt;}
.h26{height:35.343750pt;}
.h1a{height:36.873667pt;}
.h12{height:37.110937pt;}
.hb{height:38.256384pt;}
.h20{height:38.734003pt;}
.hc{height:38.840857pt;}
.h4{height:38.947124pt;}
.h24{height:39.010156pt;}
.h27{height:39.349375pt;}
.h13{height:40.714078pt;}
.h11{height:40.960664pt;}
.h14{height:41.316844pt;}
.h1c{height:43.433855pt;}
.h1b{height:43.439188pt;}
.h18{height:44.543188pt;}
.h19{height:44.548522pt;}
.h6{height:48.360277pt;}
.h5{height:68.861952pt;}
.h1e{height:71.257855pt;}
.h1d{height:71.263188pt;}
.h21{height:229.236000pt;}
.h16{height:417.249000pt;}
.he{height:420.476000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:131.174400pt;}
.w3{width:562.646700pt;}
.w4{width:673.743733pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x35{left:-186.790800pt;}
.x46{left:-85.221500pt;}
.x7d{left:-14.836267pt;}
.x36{left:-4.258464pt;}
.x0{left:0.000000pt;}
.x38{left:25.477200pt;}
.x1{left:47.621333pt;}
.x6f{left:55.757333pt;}
.x7c{left:59.789600pt;}
.x6e{left:65.524000pt;}
.x6d{left:76.582667pt;}
.x6b{left:86.349333pt;}
.x47{left:97.310836pt;}
.x45{left:115.338033pt;}
.x6a{left:121.654667pt;}
.x48{left:127.047390pt;}
.x4a{left:129.904894pt;}
.x37{left:134.340982pt;}
.x7f{left:155.003919pt;}
.x80{left:159.004274pt;}
.x81{left:187.323639pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x7{left:225.524000pt;}
.x56{left:228.681333pt;}
.x3{left:239.924000pt;}
.x4b{left:241.173333pt;}
.x4d{left:242.542667pt;}
.x4c{left:243.912000pt;}
.x4e{left:245.280000pt;}
.x52{left:246.996000pt;}
.x9{left:250.204000pt;}
.x53{left:252.152000pt;}
.x54{left:253.658667pt;}
.x55{left:256.276000pt;}
.x76{left:260.450667pt;}
.x64{left:262.428000pt;}
.x51{left:270.013333pt;}
.x49{left:273.544600pt;}
.x65{left:276.677333pt;}
.x4f{left:278.949333pt;}
.x50{left:280.442667pt;}
.x8a{left:283.198667pt;}
.x39{left:291.280000pt;}
.x79{left:304.874667pt;}
.x60{left:307.577333pt;}
.x69{left:312.289333pt;}
.x8{left:320.436000pt;}
.x57{left:322.182667pt;}
.x7e{left:324.683733pt;}
.x58{left:329.400000pt;}
.x6c{left:330.480000pt;}
.x82{left:334.062667pt;}
.x78{left:335.452000pt;}
.x3a{left:339.074667pt;}
.xa{left:343.533333pt;}
.x29{left:348.326667pt;}
.xb{left:350.176000pt;}
.x10{left:353.520000pt;}
.x11{left:360.161333pt;}
.x2a{left:361.610667pt;}
.x12{left:363.549333pt;}
.x2b{left:364.997333pt;}
.x3e{left:367.544000pt;}
.x13{left:370.190667pt;}
.x2c{left:378.281333pt;}
.x2d{left:385.056000pt;}
.x2e{left:398.340000pt;}
.x74{left:399.758667pt;}
.x73{left:404.068000pt;}
.x3b{left:408.628000pt;}
.x25{left:412.861333pt;}
.x3c{left:421.910667pt;}
.x59{left:423.090667pt;}
.x26{left:426.145333pt;}
.x83{left:428.894667pt;}
.x5a{left:430.308000pt;}
.x66{left:435.724000pt;}
.x5e{left:437.353333pt;}
.x61{left:441.393333pt;}
.x5f{left:444.470667pt;}
.x7a{left:446.384000pt;}
.x8d{left:450.221333pt;}
.x92{left:453.816000pt;}
.x7b{left:460.868000pt;}
.x93{left:467.100000pt;}
.x72{left:468.168000pt;}
.x32{left:472.788000pt;}
.x3f{left:473.804000pt;}
.x88{left:477.165333pt;}
.x40{left:479.853333pt;}
.x89{left:483.806667pt;}
.x33{left:492.269333pt;}
.xc{left:496.416000pt;}
.xd{left:503.057333pt;}
.xe{left:509.832000pt;}
.xf{left:516.474667pt;}
.x27{left:520.401333pt;}
.x28{left:533.684000pt;}
.x34{left:535.148000pt;}
.x84{left:539.350667pt;}
.x5b{left:540.485333pt;}
.x31{left:543.472000pt;}
.x85{left:545.993333pt;}
.x8e{left:552.445333pt;}
.x8f{left:559.088000pt;}
.x86{left:563.822667pt;}
.x90{left:565.629333pt;}
.x43{left:567.677333pt;}
.x67{left:573.357333pt;}
.x87{left:577.106667pt;}
.x91{left:578.913333pt;}
.x44{left:580.960000pt;}
.x1c{left:584.146667pt;}
.x68{left:587.840000pt;}
.x1d{left:590.788000pt;}
.x75{left:592.713333pt;}
.x1e{left:594.056000pt;}
.x77{left:597.210667pt;}
.x1f{left:600.698667pt;}
.x20{left:603.965333pt;}
.x23{left:609.154667pt;}
.x21{left:610.608000pt;}
.x24{left:615.796000pt;}
.x22{left:617.142667pt;}
.x41{left:626.752000pt;}
.x5{left:630.940000pt;}
.x42{left:632.801333pt;}
.x8b{left:640.301333pt;}
.x5c{left:647.576000pt;}
.x8c{left:653.585333pt;}
.x5d{left:654.793333pt;}
.x2f{left:658.570667pt;}
.x70{left:666.230667pt;}
.x6{left:669.530667pt;}
.x30{left:671.853333pt;}
.x71{left:673.545333pt;}
.x3d{left:690.042667pt;}
.x62{left:692.380000pt;}
.x95{left:696.434667pt;}
.x96{left:698.669333pt;}
.x14{left:703.397333pt;}
.x63{left:706.881333pt;}
.x15{left:710.038667pt;}
.x16{left:713.426667pt;}
.x17{left:720.068000pt;}
.x18{left:723.454667pt;}
.x94{left:726.982667pt;}
.x19{left:730.097333pt;}
.x1a{left:733.484000pt;}
.x1b{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; }
  