
    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_bdd72cc9f4d058ed6bfa8869.woff')format("woff");}.ff1{font-family:ff1;line-height:0.960000;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_249675ad767ceda0dbac3780.woff')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_49254f823daefdb2939e00ff.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893000;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_e4c9ff36a8578bb381675253.woff')format("woff");}.ff4{font-family:ff4;line-height:0.906000;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_a8d74a183edffae248072a67.woff')format("woff");}.ff5{font-family:ff5;line-height:0.906000;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_9285cca1ea56f3d2c2330808.woff')format("woff");}.ff6{font-family:ff6;line-height:0.890000;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_fd4cefb1b5a435abf5a725c3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.661000;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_c14dd68dadc2e05e6d0176e8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.676000;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_1e7ce13827de2ef58053fd89.woff')format("woff");}.ff9{font-family:ff9;line-height:0.671000;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_1802ea65a2f73b9be7302974.woff')format("woff");}.ffa{font-family:ffa;line-height:2.441000;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_0c6159f3734fe678d04c6333.woff')format("woff");}.ffb{font-family:ffb;line-height:0.686000;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_e2206c53c101af622358b669.woff')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_71a18d1577efe094a56a97b0.woff')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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_a6fd82eb790f961dbfb65aaf.woff')format("woff");}.ffe{font-family:ffe;line-height:0.959000;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_cedd794f639d1479e290b757.woff')format("woff");}.fff{font-family:fff;line-height:0.938965;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_4600c73d06435375c2e017cd.woff')format("woff");}.ff10{font-family:ff10;line-height:0.938965;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;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
.ff15{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff16;src:url('chunks/assets/font_6ad9066eda5853e775bb8408.woff')format("woff");}.ff16{font-family:ff16;line-height:0.897000;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;}
.m2a{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{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);}
.m14{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);}
.m1a{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);}
.m1c{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);}
.m8{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);}
.md{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);}
.me{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);}
.m29{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);}
.m21{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);}
.m26{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);}
.m12{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);}
.m0{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);}
.m9{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m20{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);}
.mf{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);}
.m13{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);}
.mc{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);}
.m25{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);}
.m27{transform:matrix(0.250000,0.000132,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000132,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000132,0.000000,0.250000,0,0);}
.m1{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);}
.m11{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);}
.m1e{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m23{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);}
.m28{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);}
.m1b{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m19{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);}
.mb{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);}
.m1f{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);}
.m5{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m2b{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);}
.m6{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);}
.ma{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);}
.m24{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);}
.m17{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);}
.m16{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);}
.m1d{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);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v14{vertical-align:-61.362000px;}
.va{vertical-align:-52.392000px;}
.v13{vertical-align:-21.696000px;}
.v2{vertical-align:-19.530000px;}
.v3{vertical-align:-17.358000px;}
.v18{vertical-align:-13.469591px;}
.v19{vertical-align:-10.335937px;}
.v5{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:8.964000px;}
.v1a{vertical-align:17.358000px;}
.v4{vertical-align:21.696000px;}
.v16{vertical-align:23.568000px;}
.v12{vertical-align:24.684000px;}
.v1{vertical-align:26.040000px;}
.v8{vertical-align:31.500000px;}
.vc{vertical-align:36.528000px;}
.v7{vertical-align:40.470000px;}
.vb{vertical-align:45.492000px;}
.vd{vertical-align:50.478000px;}
.v9{vertical-align:61.362000px;}
.v11{vertical-align:77.532000px;}
.vf{vertical-align:81.474000px;}
.v15{vertical-align:84.354000px;}
.v10{vertical-align:86.496000px;}
.ve{vertical-align:90.948000px;}
.v17{vertical-align:135.150000px;}
.ls17{letter-spacing:0.000000px;}
.ls7c{letter-spacing:0.000017px;}
.ls6b{letter-spacing:0.001224px;}
.lsa4{letter-spacing:0.003646px;}
.ls2d{letter-spacing:0.004200px;}
.ls19{letter-spacing:0.299108px;}
.ls30{letter-spacing:0.415224px;}
.ls2e{letter-spacing:0.416261px;}
.ls53{letter-spacing:0.596239px;}
.ls3e{letter-spacing:0.596383px;}
.ls4c{letter-spacing:0.602239px;}
.ls21{letter-spacing:0.602383px;}
.ls20{letter-spacing:0.772200px;}
.ls72{letter-spacing:0.775224px;}
.ls22{letter-spacing:0.778200px;}
.ls75{letter-spacing:0.952200px;}
.ls11{letter-spacing:0.958200px;}
.ls12{letter-spacing:1.016100px;}
.ls76{letter-spacing:1.192804px;}
.lsa5{letter-spacing:1.195155px;}
.ls4f{letter-spacing:1.372200px;}
.ls1d{letter-spacing:1.432200px;}
.ls36{letter-spacing:1.438200px;}
.ls83{letter-spacing:1.490026px;}
.ls0{letter-spacing:1.530259px;}
.ls2a{letter-spacing:1.743377px;}
.ls34{letter-spacing:1.749377px;}
.ls39{letter-spacing:1.792932px;}
.ls2b{letter-spacing:1.798932px;}
.ls6{letter-spacing:2.150237px;}
.ls5f{letter-spacing:2.181348px;}
.ls15{letter-spacing:2.212200px;}
.ls65{letter-spacing:2.388017px;}
.ls5b{letter-spacing:2.390725px;}
.ls2f{letter-spacing:2.394017px;}
.ls48{letter-spacing:2.685634px;}
.ls25{letter-spacing:2.691634px;}
.ls64{letter-spacing:2.810725px;}
.ls50{letter-spacing:2.866766px;}
.ls7e{letter-spacing:2.870725px;}
.ls10{letter-spacing:2.985600px;}
.lse{letter-spacing:2.985900px;}
.ls3c{letter-spacing:2.990725px;}
.lsf{letter-spacing:2.991900px;}
.lsb{letter-spacing:3.471772px;}
.ls16{letter-spacing:3.585900px;}
.ls82{letter-spacing:3.591900px;}
.ls1c{letter-spacing:3.736766px;}
.ls1b{letter-spacing:3.742766px;}
.ls5c{letter-spacing:3.777634px;}
.ls4{letter-spacing:4.100726px;}
.ls57{letter-spacing:4.664725px;}
.ls81{letter-spacing:4.691108px;}
.ls2{letter-spacing:4.705537px;}
.ls1{letter-spacing:4.730074px;}
.ls8{letter-spacing:4.730237px;}
.lsa{letter-spacing:4.730726px;}
.ls3{letter-spacing:4.733126px;}
.ls7{letter-spacing:4.733290px;}
.ls9{letter-spacing:4.735910px;}
.lsc{letter-spacing:4.736074px;}
.ls5d{letter-spacing:4.797377px;}
.ls58{letter-spacing:4.841675px;}
.ls5e{letter-spacing:4.934852px;}
.lsa6{letter-spacing:5.859600px;}
.ls7d{letter-spacing:5.973900px;}
.ls84{letter-spacing:5.977183px;}
.ls86{letter-spacing:5.979900px;}
.ls87{letter-spacing:6.044725px;}
.ls60{letter-spacing:6.503531px;}
.ls6c{letter-spacing:6.604718px;}
.ls8c{letter-spacing:6.640200px;}
.ls8d{letter-spacing:6.640718px;}
.ls4b{letter-spacing:7.570200px;}
.ls6f{letter-spacing:9.958200px;}
.ls6d{letter-spacing:9.964200px;}
.ls3b{letter-spacing:10.264200px;}
.ls67{letter-spacing:10.384200px;}
.ls24{letter-spacing:10.402200px;}
.ls46{letter-spacing:11.332200px;}
.ls78{letter-spacing:11.361900px;}
.ls38{letter-spacing:11.458200px;}
.ls96{letter-spacing:13.240718px;}
.ls95{letter-spacing:13.246200px;}
.ls59{letter-spacing:13.282200px;}
.ls6e{letter-spacing:13.282718px;}
.ls31{letter-spacing:13.284562px;}
.ls28{letter-spacing:13.288200px;}
.ls29{letter-spacing:13.294718px;}
.ls91{letter-spacing:13.336200px;}
.ls92{letter-spacing:13.336718px;}
.lsa8{letter-spacing:13.372205px;}
.ls13{letter-spacing:13.570200px;}
.ls14{letter-spacing:13.570718px;}
.ls93{letter-spacing:13.888200px;}
.ls94{letter-spacing:13.888718px;}
.ls73{letter-spacing:13.912718px;}
.ls1e{letter-spacing:14.632200px;}
.ls1f{letter-spacing:14.638718px;}
.ls66{letter-spacing:15.234562px;}
.lsa7{letter-spacing:15.313135px;}
.ls1a{letter-spacing:16.042718px;}
.ls71{letter-spacing:16.447145px;}
.ls41{letter-spacing:16.600200px;}
.ls6a{letter-spacing:16.600718px;}
.ls2c{letter-spacing:16.602845px;}
.ls33{letter-spacing:16.606718px;}
.ls9e{letter-spacing:16.608845px;}
.ls27{letter-spacing:16.624718px;}
.ls7a{letter-spacing:16.636718px;}
.ls9a{letter-spacing:16.878845px;}
.ls9b{letter-spacing:16.884845px;}
.ls8a{letter-spacing:16.944845px;}
.ls32{letter-spacing:17.380718px;}
.ls35{letter-spacing:17.931900px;}
.ls54{letter-spacing:17.968718px;}
.ls70{letter-spacing:18.172718px;}
.ls47{letter-spacing:18.213586px;}
.ls5a{letter-spacing:18.366562px;}
.ls43{letter-spacing:18.395450px;}
.ls42{letter-spacing:18.401450px;}
.ls44{letter-spacing:18.478718px;}
.ls40{letter-spacing:19.247450px;}
.ls7f{letter-spacing:19.293634px;}
.ls3d{letter-spacing:20.368200px;}
.ls8b{letter-spacing:20.433634px;}
.ls69{letter-spacing:20.734718px;}
.ls89{letter-spacing:20.769634px;}
.lsa0{letter-spacing:20.778845px;}
.ls18{letter-spacing:21.120845px;}
.ls9d{letter-spacing:21.144925px;}
.ls88{letter-spacing:21.443675px;}
.ls9c{letter-spacing:21.449675px;}
.ls99{letter-spacing:21.725675px;}
.ls74{letter-spacing:22.696718px;}
.ls62{letter-spacing:23.005390px;}
.ls98{letter-spacing:23.262845px;}
.ls63{letter-spacing:23.418845px;}
.ls45{letter-spacing:23.772845px;}
.ls37{letter-spacing:23.776718px;}
.ls68{letter-spacing:24.310718px;}
.lsd{letter-spacing:24.362726px;}
.ls51{letter-spacing:24.550718px;}
.ls80{letter-spacing:24.810845px;}
.ls55{letter-spacing:25.270718px;}
.ls9f{letter-spacing:25.619675px;}
.ls5{letter-spacing:27.350954px;}
.ls85{letter-spacing:27.501634px;}
.ls97{letter-spacing:28.103675px;}
.ls90{letter-spacing:30.339028px;}
.lsa3{letter-spacing:37.923785px;}
.ls8f{letter-spacing:40.156988px;}
.ls4e{letter-spacing:41.202845px;}
.ls4d{letter-spacing:44.188718px;}
.lsa2{letter-spacing:50.196234px;}
.ls77{letter-spacing:71.314718px;}
.ls4a{letter-spacing:90.636845px;}
.ls23{letter-spacing:104.046845px;}
.ls52{letter-spacing:437.354100px;}
.ls8e{letter-spacing:504.588764px;}
.ls79{letter-spacing:671.236804px;}
.ls61{letter-spacing:712.268100px;}
.ls49{letter-spacing:750.908100px;}
.ls3f{letter-spacing:805.484100px;}
.ls7b{letter-spacing:822.828622px;}
.ls26{letter-spacing:841.316100px;}
.ls56{letter-spacing:871.784100px;}
.ls3a{letter-spacing:876.068100px;}
.lsa1{letter-spacing:892.255041px;}
.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;}
}
.wsbc{word-spacing:-892.255041px;}
.wsb7{word-spacing:-504.588764px;}
.ws42{word-spacing:-61.210214px;}
.ws7d{word-spacing:-44.683469px;}
.ws8a{word-spacing:-44.617168px;}
.wsa1{word-spacing:-41.484266px;}
.ws30{word-spacing:-39.870325px;}
.wsdd{word-spacing:-35.913271px;}
.wsa3{word-spacing:-33.414560px;}
.ws39{word-spacing:-29.887800px;}
.wsa2{word-spacing:-27.676103px;}
.ws12{word-spacing:-26.899200px;}
.wsaf{word-spacing:-24.892085px;}
.ws14{word-spacing:-23.910300px;}
.ws36{word-spacing:-21.818100px;}
.wsc1{word-spacing:-19.307519px;}
.ws97{word-spacing:-19.128192px;}
.ws9f{word-spacing:-18.829314px;}
.wsad{word-spacing:-18.649987px;}
.ws90{word-spacing:-17.932680px;}
.ws1f{word-spacing:-17.693578px;}
.ws9d{word-spacing:-17.514251px;}
.ws2c{word-spacing:-17.394700px;}
.ws35{word-spacing:-17.036046px;}
.ws80{word-spacing:-16.916495px;}
.ws28{word-spacing:-16.737168px;}
.ws87{word-spacing:-16.677392px;}
.ws34{word-spacing:-16.557841px;}
.ws63{word-spacing:-16.378514px;}
.ws27{word-spacing:-16.318739px;}
.ws68{word-spacing:-16.258963px;}
.ws86{word-spacing:-16.199188px;}
.wsa0{word-spacing:-16.139412px;}
.ws69{word-spacing:-16.079636px;}
.ws9e{word-spacing:-16.019861px;}
.ws88{word-spacing:-15.900310px;}
.ws6a{word-spacing:-15.842420px;}
.ws16{word-spacing:-15.840534px;}
.wsb5{word-spacing:-15.780758px;}
.ws4f{word-spacing:-15.661207px;}
.ws65{word-spacing:-15.481880px;}
.ws99{word-spacing:-15.422105px;}
.ws52{word-spacing:-15.362329px;}
.ws64{word-spacing:-15.302554px;}
.ws3a{word-spacing:-15.242778px;}
.ws1a{word-spacing:-15.183002px;}
.ws21{word-spacing:-15.123227px;}
.ws2b{word-spacing:-15.063451px;}
.ws17{word-spacing:-15.003676px;}
.wsbe{word-spacing:-14.955955px;}
.ws76{word-spacing:-14.945383px;}
.ws19{word-spacing:-14.943900px;}
.ws1e{word-spacing:-14.884124px;}
.ws1d{word-spacing:-14.824349px;}
.ws20{word-spacing:-14.764573px;}
.ws18{word-spacing:-14.704798px;}
.ws37{word-spacing:-14.645022px;}
.wsb4{word-spacing:-14.585246px;}
.ws67{word-spacing:-14.405920px;}
.ws5a{word-spacing:-14.347909px;}
.ws5c{word-spacing:-14.347084px;}
.ws49{word-spacing:-14.346144px;}
.ws53{word-spacing:-14.286368px;}
.wsa6{word-spacing:-14.226593px;}
.ws46{word-spacing:-14.167766px;}
.ws7e{word-spacing:-14.166817px;}
.ws7b{word-spacing:-14.107042px;}
.ws75{word-spacing:-13.987490px;}
.wsb3{word-spacing:-13.879987px;}
.wsac{word-spacing:-13.808164px;}
.ws94{word-spacing:-13.718592px;}
.ws92{word-spacing:-13.664794px;}
.wsab{word-spacing:-13.610995px;}
.ws23{word-spacing:-13.569061px;}
.ws95{word-spacing:-13.503398px;}
.ws11{word-spacing:-13.449600px;}
.ws55{word-spacing:-13.449510px;}
.ws9c{word-spacing:-13.395802px;}
.ws1b{word-spacing:-13.389734px;}
.wsa9{word-spacing:-13.342003px;}
.ws71{word-spacing:-13.329959px;}
.ws50{word-spacing:-13.288102px;}
.ws4a{word-spacing:-13.282102px;}
.ws78{word-spacing:-13.278634px;}
.ws96{word-spacing:-13.270183px;}
.ws13{word-spacing:-13.180608px;}
.ws25{word-spacing:-13.090856px;}
.wsc9{word-spacing:-13.055024px;}
.ws98{word-spacing:-13.031081px;}
.ws33{word-spacing:-12.971305px;}
.ws38{word-spacing:-12.851754px;}
.ws4e{word-spacing:-12.791978px;}
.ws4c{word-spacing:-12.735196px;}
.ws5f{word-spacing:-12.732773px;}
.ws3c{word-spacing:-12.729196px;}
.wsc4{word-spacing:-12.696422px;}
.ws22{word-spacing:-12.672427px;}
.wsce{word-spacing:-12.576818px;}
.ws6e{word-spacing:-12.552876px;}
.ws40{word-spacing:-12.433325px;}
.ws4d{word-spacing:-12.430102px;}
.wsbb{word-spacing:-12.373549px;}
.ws70{word-spacing:-12.313774px;}
.ws9a{word-spacing:-12.266035px;}
.wsaa{word-spacing:-12.158438px;}
.wscd{word-spacing:-12.146432px;}
.wsdc{word-spacing:-12.098612px;}
.ws51{word-spacing:-12.074671px;}
.wsd6{word-spacing:-12.050791px;}
.ws3f{word-spacing:-12.014896px;}
.wsd3{word-spacing:-12.002971px;}
.wsd5{word-spacing:-11.955547px;}
.wsca{word-spacing:-11.955150px;}
.ws29{word-spacing:-11.955120px;}
.wsd7{word-spacing:-11.954437px;}
.wsde{word-spacing:-11.952384px;}
.wsdf{word-spacing:-11.951967px;}
.wscf{word-spacing:-11.907329px;}
.wsd8{word-spacing:-11.859509px;}
.ws8f{word-spacing:-11.775793px;}
.wsd2{word-spacing:-11.716047px;}
.wsd1{word-spacing:-11.668226px;}
.ws26{word-spacing:-11.656242px;}
.wscc{word-spacing:-11.620406px;}
.ws61{word-spacing:-11.536691px;}
.ws54{word-spacing:-11.476915px;}
.ws7a{word-spacing:-11.237813px;}
.ws2d{word-spacing:-11.118262px;}
.ws93{word-spacing:-10.921075px;}
.ws74{word-spacing:-10.909050px;}
.ws8e{word-spacing:-10.819384px;}
.ws9b{word-spacing:-10.705882px;}
.wsba{word-spacing:-10.580281px;}
.ws79{word-spacing:-10.520506px;}
.wsda{word-spacing:-10.281429px;}
.wsb0{word-spacing:-10.281403px;}
.ws2f{word-spacing:-10.102076px;}
.wsdb{word-spacing:-10.042326px;}
.ws62{word-spacing:-9.982525px;}
.wsd9{word-spacing:-9.803223px;}
.ws6f{word-spacing:-9.803198px;}
.wsae{word-spacing:-9.743423px;}
.wsb6{word-spacing:-9.683647px;}
.wsc5{word-spacing:-9.576115px;}
.wsd0{word-spacing:-9.564120px;}
.wsa5{word-spacing:-9.444545px;}
.wsb2{word-spacing:-9.199526px;}
.ws91{word-spacing:-9.038131px;}
.ws84{word-spacing:-8.863909px;}
.ws58{word-spacing:-8.568773px;}
.ws6d{word-spacing:-8.444420px;}
.ws5e{word-spacing:-8.425084px;}
.ws89{word-spacing:-8.249033px;}
.ws8c{word-spacing:-8.129482px;}
.ws4b{word-spacing:-8.089909px;}
.wse0{word-spacing:-8.081681px;}
.ws24{word-spacing:-7.950155px;}
.ws85{word-spacing:-7.684102px;}
.wsd4{word-spacing:-7.077449px;}
.wsc2{word-spacing:-6.336214px;}
.wsb9{word-spacing:-5.702630px;}
.ws82{word-spacing:-5.546420px;}
.ws43{word-spacing:-5.545909px;}
.ws32{word-spacing:-5.526773px;}
.ws6{word-spacing:-4.762922px;}
.ws8b{word-spacing:-4.081909px;}
.ws6c{word-spacing:-4.010420px;}
.ws45{word-spacing:-3.882573px;}
.ws10{word-spacing:-3.524374px;}
.wsc6{word-spacing:-2.313331px;}
.ws41{word-spacing:-2.228420px;}
.ws3b{word-spacing:-2.227909px;}
.ws44{word-spacing:-2.227084px;}
.ws5b{word-spacing:-2.226773px;}
.ws47{word-spacing:-2.226573px;}
.ws59{word-spacing:-2.223364px;}
.ws81{word-spacing:-2.222420px;}
.ws72{word-spacing:-2.221084px;}
.ws56{word-spacing:-2.220784px;}
.ws3d{word-spacing:-2.209909px;}
.ws31{word-spacing:-2.190773px;}
.ws77{word-spacing:-1.657500px;}
.ws1{word-spacing:-1.625900px;}
.ws7f{word-spacing:-1.033500px;}
.ws60{word-spacing:-0.918773px;}
.ws7c{word-spacing:-0.655918px;}
.ws57{word-spacing:-0.493500px;}
.wsb{word-spacing:-0.071731px;}
.wsc8{word-spacing:-0.059776px;}
.ws3{word-spacing:-0.057385px;}
.wscb{word-spacing:-0.047821px;}
.ws2a{word-spacing:0.000000px;}
.ws83{word-spacing:1.135736px;}
.ws73{word-spacing:2.040750px;}
.ws3e{word-spacing:2.046750px;}
.ws48{word-spacing:2.700750px;}
.wsa4{word-spacing:8.667462px;}
.ws66{word-spacing:10.633898px;}
.wsf{word-spacing:15.453423px;}
.ws9{word-spacing:15.466673px;}
.ws2{word-spacing:15.467732px;}
.ws7{word-spacing:15.469148px;}
.wsd{word-spacing:15.508078px;}
.ws5{word-spacing:15.512869px;}
.ws4{word-spacing:15.522849px;}
.ws2e{word-spacing:16.557841px;}
.wse{word-spacing:20.349108px;}
.ws8{word-spacing:20.354585px;}
.wsa{word-spacing:20.354697px;}
.wsc{word-spacing:24.924663px;}
.ws0{word-spacing:25.631842px;}
.ws15{word-spacing:42.789198px;}
.wsc7{word-spacing:46.268496px;}
.wsc3{word-spacing:48.381806px;}
.ws6b{word-spacing:57.172091px;}
.ws1c{word-spacing:59.715824px;}
.wsb1{word-spacing:121.450255px;}
.wsbf{word-spacing:155.806393px;}
.wsa7{word-spacing:156.839699px;}
.ws5d{word-spacing:172.283227px;}
.wsa8{word-spacing:219.946264px;}
.wsc0{word-spacing:299.638622px;}
.wsb8{word-spacing:434.469764px;}
.wsbd{word-spacing:827.329922px;}
.ws8d{word-spacing:857.410091px;}
._68{margin-left:-2379.121800px;}
._40{margin-left:-2377.049047px;}
._5b{margin-left:-2375.231983px;}
._1e{margin-left:-2362.928174px;}
._11{margin-left:-2327.647475px;}
._b{margin-left:-2322.497105px;}
._10{margin-left:-2298.861319px;}
._7{margin-left:-2262.446751px;}
._54{margin-left:-2251.813723px;}
._3b{margin-left:-2237.025245px;}
._37{margin-left:-2234.624657px;}
._6a{margin-left:-2194.421973px;}
._21{margin-left:-2177.748197px;}
._46{margin-left:-2150.791697px;}
._5{margin-left:-2120.118444px;}
._a{margin-left:-2006.725304px;}
._30{margin-left:-1991.875496px;}
._5a{margin-left:-1982.672894px;}
._70{margin-left:-1900.421601px;}
._2a{margin-left:-1864.055375px;}
._28{margin-left:-1850.247250px;}
._6f{margin-left:-1844.942746px;}
._55{margin-left:-1811.635769px;}
._81{margin-left:-1807.757270px;}
._2e{margin-left:-1804.038829px;}
._41{margin-left:-1784.284820px;}
._65{margin-left:-1752.685064px;}
._34{margin-left:-1741.021815px;}
._27{margin-left:-1701.229082px;}
._f{margin-left:-1693.894669px;}
._52{margin-left:-1602.186860px;}
._84{margin-left:-1540.904401px;}
._61{margin-left:-1517.389188px;}
._56{margin-left:-1512.956229px;}
._44{margin-left:-1510.586718px;}
._89{margin-left:-1502.155334px;}
._7c{margin-left:-1412.233546px;}
._7a{margin-left:-1410.641086px;}
._31{margin-left:-1407.011176px;}
._16{margin-left:-1376.791029px;}
._6e{margin-left:-1373.081325px;}
._d{margin-left:-1358.464747px;}
._85{margin-left:-1339.263280px;}
._7b{margin-left:-1334.907636px;}
._66{margin-left:-1325.737735px;}
._72{margin-left:-1324.643224px;}
._36{margin-left:-1285.914161px;}
._2c{margin-left:-1246.389376px;}
._50{margin-left:-1137.347891px;}
._78{margin-left:-1119.839275px;}
._4f{margin-left:-1067.238286px;}
._4c{margin-left:-1062.037808px;}
._12{margin-left:-1037.839545px;}
._79{margin-left:-1033.843456px;}
._7f{margin-left:-1028.113752px;}
._5f{margin-left:-1011.902810px;}
._4e{margin-left:-1006.334115px;}
._82{margin-left:-996.447746px;}
._60{margin-left:-959.814359px;}
._25{margin-left:-954.617498px;}
._76{margin-left:-945.877493px;}
._4d{margin-left:-928.934278px;}
._57{margin-left:-920.183136px;}
._42{margin-left:-897.204537px;}
._69{margin-left:-892.255041px;}
._3c{margin-left:-876.224500px;}
._2b{margin-left:-858.981674px;}
._7d{margin-left:-826.338146px;}
._32{margin-left:-816.600480px;}
._75{margin-left:-807.714218px;}
._86{margin-left:-806.628662px;}
._88{margin-left:-799.587899px;}
._77{margin-left:-750.425140px;}
._3e{margin-left:-747.932734px;}
._7e{margin-left:-717.366725px;}
._24{margin-left:-706.333560px;}
._87{margin-left:-689.360999px;}
._13{margin-left:-628.161696px;}
._6d{margin-left:-612.407927px;}
._80{margin-left:-580.155820px;}
._71{margin-left:-562.447133px;}
._17{margin-left:-550.106449px;}
._6c{margin-left:-543.527516px;}
._73{margin-left:-541.504710px;}
._63{margin-left:-504.588764px;}
._2f{margin-left:-498.912228px;}
._45{margin-left:-458.978510px;}
._74{margin-left:-431.876260px;}
._51{margin-left:-375.268766px;}
._83{margin-left:-361.997250px;}
._43{margin-left:-360.324866px;}
._3a{margin-left:-350.791848px;}
._1{margin-left:-332.327851px;}
._33{margin-left:-321.657227px;}
._35{margin-left:-195.941966px;}
._c{margin-left:-174.092467px;}
._2d{margin-left:-25.698831px;}
._47{margin-left:-24.568974px;}
._29{margin-left:-6.814418px;}
._8{margin-left:-5.236539px;}
._e{margin-left:-3.840028px;}
._0{margin-left:-2.486671px;}
._9{margin-left:-1.205077px;}
._3{width:1.262461px;}
._4{width:2.485093px;}
._6{width:3.585825px;}
._2{width:4.705537px;}
._3f{width:5.976679px;}
._19{width:7.232848px;}
._39{width:10.152338px;}
._20{width:11.417140px;}
._53{width:12.505258px;}
._18{width:14.030547px;}
._1a{width:16.005355px;}
._4a{width:17.074289px;}
._1c{width:18.267430px;}
._38{width:19.494038px;}
._1b{width:20.503031px;}
._14{width:21.832643px;}
._15{width:23.042304px;}
._1f{width:24.500822px;}
._3d{width:26.062162px;}
._4b{width:27.112037px;}
._1d{width:28.931390px;}
._23{width:30.963761px;}
._22{width:32.314696px;}
._49{width:34.490572px;}
._67{width:35.640616px;}
._62{width:38.588552px;}
._64{width:42.339341px;}
._5e{width:49.440730px;}
._48{width:59.775600px;}
._26{width:76.393217px;}
._5d{width:135.470511px;}
._5c{width:149.497855px;}
._58{width:172.620327px;}
._59{width:188.392982px;}
._6b{width:190.865893px;}
.fc4{color:transparent;}
.fc2{color:rgb(46,46,177);}
.fc3{color:rgb(89,89,89);}
.fc1{color:rgb(105,105,105);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:29.887800px;}
.fsb{font-size:34.364161px;}
.fs19{font-size:35.280000px;}
.fs7{font-size:37.060800px;}
.fs18{font-size:37.800000px;}
.fs14{font-size:39.689664px;}
.fsc{font-size:40.190401px;}
.fsd{font-size:40.190405px;}
.fs10{font-size:40.418641px;}
.fs15{font-size:42.524640px;}
.fs5{font-size:43.636200px;}
.fs1c{font-size:43.750080px;}
.fs16{font-size:44.100000px;}
.fsf{font-size:47.155080px;}
.fs1f{font-size:47.250000px;}
.fs8{font-size:47.820600px;}
.fs12{font-size:49.612080px;}
.fs17{font-size:50.400000px;}
.fs1a{font-size:51.041760px;}
.fsa{font-size:51.546242px;}
.fs4{font-size:52.602600px;}
.fs6{font-size:53.798400px;}
.fs1d{font-size:55.125000px;}
.fs13{font-size:56.699520px;}
.fs3{font-size:57.384600px;}
.fs1b{font-size:58.333440px;}
.fs9{font-size:59.775600px;}
.fse{font-size:60.285602px;}
.fs11{font-size:60.627962px;}
.fs1e{font-size:63.000000px;}
.fs2{font-size:71.731200px;}
.fs0{font-size:95.641200px;}
.y0{bottom:0.000000px;}
.yfc{bottom:4.058852px;}
.yfa{bottom:7.374176px;}
.y123{bottom:8.463201px;}
.y122{bottom:8.693019px;}
.y199{bottom:9.595965px;}
.y125{bottom:10.135781px;}
.yd3{bottom:11.239272px;}
.y144{bottom:11.673789px;}
.y1ac{bottom:12.970986px;}
.yf1{bottom:14.517839px;}
.yf7{bottom:19.159667px;}
.yf9{bottom:19.431297px;}
.yc9{bottom:22.608413px;}
.y165{bottom:23.748539px;}
.yfe{bottom:26.008475px;}
.y198{bottom:26.970671px;}
.y143{bottom:28.561829px;}
.y118{bottom:30.692254px;}
.yf6{bottom:31.216787px;}
.yf8{bottom:31.488418px;}
.y1ab{bottom:31.735635px;}
.yc8{bottom:32.917662px;}
.yc1{bottom:34.585059px;}
.y19a{bottom:35.244595px;}
.y164{bottom:38.760258px;}
.yd5{bottom:40.632942px;}
.ycc{bottom:41.733019px;}
.y119{bottom:41.897659px;}
.y121{bottom:42.108752px;}
.y1ad{bottom:47.649605px;}
.y18f{bottom:48.682345px;}
.yfd{bottom:49.115984px;}
.y145{bottom:50.153026px;}
.ybf{bottom:50.646836px;}
.y166{bottom:61.262662px;}
.yfb{bottom:61.336491px;}
.yd4{bottom:65.642078px;}
.y117{bottom:71.480170px;}
.yc0{bottom:73.675431px;}
.yf2{bottom:80.301181px;}
.y11c{bottom:84.205518px;}
.ycb{bottom:91.200041px;}
.y11b{bottom:96.331111px;}
.y146{bottom:99.691468px;}
.y14b{bottom:100.499899px;}
.yca{bottom:101.509290px;}
.y1ae{bottom:104.472894px;}
.y19b{bottom:105.978819px;}
.yd0{bottom:107.482624px;}
.yc4{bottom:112.285939px;}
.y190{bottom:115.940387px;}
.y116{bottom:116.953473px;}
.ycf{bottom:117.791872px;}
.y1b3{bottom:120.193295px;}
.y124{bottom:122.297366px;}
.y167{bottom:125.959940px;}
.yc3{bottom:134.137486px;}
.y5d{bottom:140.400000px;}
.y1a0{bottom:140.720025px;}
.y113{bottom:143.061000px;}
.y13e{bottom:145.200000px;}
.y18e{bottom:145.687500px;}
.y86{bottom:147.174000px;}
.y2f{bottom:147.979500px;}
.y147{bottom:149.229910px;}
.y16c{bottom:150.076336px;}
.y11e{bottom:150.955262px;}
.y162{bottom:152.151000px;}
.y87{bottom:157.425000px;}
.y5c{bottom:158.332500px;}
.y112{bottom:160.993500px;}
.y1af{bottom:161.296183px;}
.y11d{bottom:163.080855px;}
.y13d{bottom:163.134000px;}
.y18d{bottom:163.620000px;}
.yc7{bottom:164.073884px;}
.yd2{bottom:164.470242px;}
.y2e{bottom:165.912000px;}
.y85{bottom:167.542500px;}
.yb5{bottom:168.322500px;}
.y161{bottom:170.083500px;}
.yc6{bottom:174.383132px;}
.ye9{bottom:176.266500px;}
.y19c{bottom:176.713043px;}
.y111{bottom:178.926000px;}
.y13c{bottom:181.066500px;}
.y18c{bottom:181.552500px;}
.y11a{bottom:182.515015px;}
.y191{bottom:183.198429px;}
.y84{bottom:183.615000px;}
.y2d{bottom:183.844500px;}
.yb4{bottom:186.255000px;}
.y5b{bottom:187.672500px;}
.y160{bottom:188.016000px;}
.y120{bottom:189.292053px;}
.yc5{bottom:190.489685px;}
.y168{bottom:190.657218px;}
.y1f7{bottom:193.050000px;}
.ye8{bottom:194.199000px;}
.y110{bottom:196.858500px;}
.y5a{bottom:197.925000px;}
.y148{bottom:198.768353px;}
.y13b{bottom:198.999000px;}
.y18b{bottom:199.485000px;}
.y11f{bottom:201.417645px;}
.y83{bottom:201.547500px;}
.y2c{bottom:201.777000px;}
.yb3{bottom:204.187500px;}
.y15f{bottom:205.948500px;}
.y1f6{bottom:207.246000px;}
.ye7{bottom:212.131500px;}
.y10f{bottom:214.792500px;}
.y13a{bottom:216.931500px;}
.y18a{bottom:217.417500px;}
.yf5{bottom:217.708877px;}
.y1b0{bottom:218.119472px;}
.yc2{bottom:218.221503px;}
.yf3{bottom:219.419739px;}
.y82{bottom:219.481500px;}
.y2b{bottom:219.711000px;}
.y1f5{bottom:221.443500px;}
.yb2{bottom:223.324500px;}
.y15e{bottom:223.881000px;}
.ye6{bottom:230.064000px;}
.y178{bottom:230.800500px;}
.y10e{bottom:232.725000px;}
.y139{bottom:234.864000px;}
.y189{bottom:235.351500px;}
.y1f4{bottom:235.639500px;}
.yb1{bottom:236.023500px;}
.y81{bottom:237.414000px;}
.y2a{bottom:237.643500px;}
.y59{bottom:240.190500px;}
.y15d{bottom:241.813500px;}
.y177{bottom:244.680187px;}
.y19d{bottom:247.447268px;}
.ye5{bottom:247.996500px;}
.y149{bottom:248.306795px;}
.y1f3{bottom:249.837000px;}
.y192{bottom:250.456472px;}
.yce{bottom:250.629673px;}
.y10d{bottom:250.657500px;}
.y138{bottom:252.796500px;}
.y188{bottom:253.284000px;}
.yf4{bottom:254.559965px;}
.y80{bottom:255.346500px;}
.y169{bottom:255.354496px;}
.y29{bottom:255.576000px;}
.y58{bottom:258.123000px;}
.y176{bottom:258.559875px;}
.y15c{bottom:259.747500px;}
.ycd{bottom:260.938921px;}
.yb0{bottom:261.550500px;}
.y1f2{bottom:264.033000px;}
.ye4{bottom:265.929000px;}
.y10c{bottom:268.590000px;}
.y137{bottom:270.730500px;}
.y187{bottom:271.216500px;}
.y175{bottom:272.439562px;}
.y7f{bottom:273.279000px;}
.y28{bottom:273.508500px;}
.y1b1{bottom:274.942761px;}
.y126{bottom:276.214945px;}
.y15b{bottom:277.680000px;}
.y1f1{bottom:278.230500px;}
.yaf{bottom:279.483000px;}
.y14f{bottom:279.688101px;}
.y57{bottom:279.933000px;}
.ye3{bottom:283.863000px;}
.y174{bottom:286.319250px;}
.y10b{bottom:286.522500px;}
.y136{bottom:288.663000px;}
.y186{bottom:289.149000px;}
.y56{bottom:290.184000px;}
.y7e{bottom:291.211500px;}
.y27{bottom:291.441000px;}
.y1f0{bottom:292.426500px;}
.yf0{bottom:294.338310px;}
.y14e{bottom:295.302617px;}
.y15a{bottom:295.612500px;}
.yd1{bottom:296.204629px;}
.yae{bottom:297.417000px;}
.y14a{bottom:297.845237px;}
.y173{bottom:300.198938px;}
.ye2{bottom:301.795500px;}
.y10a{bottom:304.455000px;}
.y135{bottom:306.595500px;}
.y1ef{bottom:306.624000px;}
.y185{bottom:307.081500px;}
.y7d{bottom:309.144000px;}
.y26{bottom:309.373500px;}
.y14d{bottom:310.917133px;}
.y159{bottom:313.545000px;}
.y172{bottom:314.078625px;}
.yad{bottom:315.349500px;}
.y55{bottom:316.374000px;}
.y193{bottom:317.714514px;}
.y19e{bottom:318.181492px;}
.ye1{bottom:319.728000px;}
.y16a{bottom:320.051774px;}
.y1ee{bottom:320.820000px;}
.y109{bottom:322.389000px;}
.y134{bottom:324.528000px;}
.y184{bottom:325.015500px;}
.y14c{bottom:326.531650px;}
.y7c{bottom:327.078000px;}
.y25{bottom:327.307500px;}
.y171{bottom:327.958313px;}
.y158{bottom:331.477500px;}
.y1b2{bottom:331.766050px;}
.yac{bottom:333.282000px;}
.y54{bottom:334.306500px;}
.y1ed{bottom:335.017500px;}
.ye0{bottom:337.660500px;}
.y108{bottom:340.321500px;}
.y170{bottom:341.838000px;}
.y133{bottom:342.460500px;}
.y183{bottom:342.948000px;}
.y1b5{bottom:343.907156px;}
.y7b{bottom:345.010500px;}
.y24{bottom:345.240000px;}
.y1ec{bottom:349.215000px;}
.y157{bottom:349.410000px;}
.y141{bottom:349.859294px;}
.yab{bottom:351.214500px;}
.y53{bottom:352.239000px;}
.ydf{bottom:355.593000px;}
.y16f{bottom:355.717688px;}
.y107{bottom:358.254000px;}
.y132{bottom:360.393000px;}
.y182{bottom:360.880500px;}
.y1b4{bottom:361.256766px;}
.y142{bottom:362.829863px;}
.y7a{bottom:362.943000px;}
.y23{bottom:363.172500px;}
.y1eb{bottom:363.411000px;}
.y156{bottom:367.344000px;}
.y16e{bottom:369.597375px;}
.y52{bottom:370.173000px;}
.yaa{bottom:371.653500px;}
.yde{bottom:373.525500px;}
.y106{bottom:376.186500px;}
.y1ea{bottom:377.608500px;}
.y1a4{bottom:377.755736px;}
.y1b8{bottom:378.088500px;}
.y131{bottom:378.327000px;}
.y181{bottom:378.813000px;}
.y79{bottom:380.875500px;}
.y22{bottom:381.105000px;}
.ya9{bottom:381.904500px;}
.y16d{bottom:383.477063px;}
.y16b{bottom:384.749052px;}
.y194{bottom:384.972556px;}
.y155{bottom:385.276500px;}
.y1b6{bottom:387.176590px;}
.y51{bottom:388.105500px;}
.y19f{bottom:388.915716px;}
.ydd{bottom:391.459500px;}
.y1e9{bottom:391.804500px;}
.y1a3{bottom:393.820219px;}
.y105{bottom:394.119000px;}
.y130{bottom:396.259500px;}
.y180{bottom:396.745500px;}
.y21{bottom:399.037500px;}
.y1b7{bottom:401.911453px;}
.y154{bottom:403.209000px;}
.y195{bottom:404.212922px;}
.y1aa{bottom:404.538000px;}
.y1e8{bottom:406.002000px;}
.y50{bottom:407.607000px;}
.ydc{bottom:409.392000px;}
.y1a2{bottom:409.884701px;}
.y77{bottom:412.020000px;}
.y12f{bottom:414.192000px;}
.y17f{bottom:414.678000px;}
.y196{bottom:416.000813px;}
.y20{bottom:416.970000px;}
.ya8{bottom:417.771000px;}
.y1e7{bottom:420.198000px;}
.y76{bottom:422.271000px;}
.y4f{bottom:425.539500px;}
.y1a1{bottom:425.949184px;}
.ya7{bottom:430.548000px;}
.y104{bottom:431.680500px;}
.y12e{bottom:432.124500px;}
.y17e{bottom:432.612000px;}
.y78{bottom:433.644000px;}
.y1e6{bottom:434.395500px;}
.y1f{bottom:434.904000px;}
.ya5{bottom:435.703500px;}
.ya6{bottom:441.591000px;}
.y4e{bottom:443.472000px;}
.ydb{bottom:444.159000px;}
.y103{bottom:448.119000px;}
.y1e5{bottom:448.591500px;}
.y1a5{bottom:449.949065px;}
.y12d{bottom:450.057000px;}
.y17d{bottom:450.544500px;}
.y1e{bottom:452.836500px;}
.ya4{bottom:453.636000px;}
.y1a9{bottom:457.578000px;}
.y153{bottom:458.763000px;}
.yda{bottom:460.597500px;}
.y4d{bottom:461.406000px;}
.y1e4{bottom:462.789000px;}
.y1a6{bottom:463.293409px;}
.y75{bottom:463.405500px;}
.y102{bottom:464.557500px;}
.y12c{bottom:467.991000px;}
.y17c{bottom:468.477000px;}
.y1d{bottom:470.769000px;}
.ya3{bottom:471.568500px;}
.y152{bottom:475.201500px;}
.y1a8{bottom:475.510500px;}
.y1e3{bottom:476.985000px;}
.yd9{bottom:477.036000px;}
.y4c{bottom:479.338500px;}
.y101{bottom:480.996000px;}
.y74{bottom:481.338000px;}
.y12b{bottom:485.923500px;}
.y17b{bottom:486.409500px;}
.y1c{bottom:488.701500px;}
.ya2{bottom:489.501000px;}
.y1e2{bottom:491.182500px;}
.y151{bottom:491.640000px;}
.yd8{bottom:493.474500px;}
.y100{bottom:497.434500px;}
.y73{bottom:499.270500px;}
.y12a{bottom:503.856000px;}
.y1e1{bottom:505.378500px;}
.y1b{bottom:506.634000px;}
.ya0{bottom:507.433500px;}
.y150{bottom:508.078500px;}
.y4b{bottom:508.678500px;}
.yd7{bottom:509.913000px;}
.yff{bottom:513.873000px;}
.y4a{bottom:518.929500px;}
.y1e0{bottom:519.576000px;}
.ya1{bottom:520.533000px;}
.y129{bottom:521.788500px;}
.y72{bottom:524.436000px;}
.y1a{bottom:524.566500px;}
.yd6{bottom:526.350000px;}
.y9f{bottom:526.936500px;}
.y1df{bottom:533.772000px;}
.y140{bottom:534.529500px;}
.y71{bottom:534.688500px;}
.y128{bottom:539.721000px;}
.y1a7{bottom:540.217500px;}
.yef{bottom:540.324000px;}
.y1de{bottom:547.969500px;}
.y17a{bottom:551.116500px;}
.y19{bottom:551.242500px;}
.y9e{bottom:551.593500px;}
.ybe{bottom:552.801000px;}
.y70{bottom:556.506000px;}
.y49{bottom:557.004000px;}
.y1dd{bottom:562.165500px;}
.y197{bottom:566.668500px;}
.y179{bottom:567.555000px;}
.y48{bottom:574.936500px;}
.y1dc{bottom:576.363000px;}
.y127{bottom:577.372500px;}
.y9d{bottom:582.270000px;}
.y6f{bottom:585.375000px;}
.y18{bottom:585.987000px;}
.y1db{bottom:590.559000px;}
.y47{bottom:592.869000px;}
.y163{bottom:594.006000px;}
.y6e{bottom:595.627500px;}
.y9c{bottom:600.204000px;}
.y115{bottom:603.823500px;}
.y17{bottom:603.919500px;}
.y1da{bottom:604.756500px;}
.y46{bottom:610.801500px;}
.y9b{bottom:618.136500px;}
.y1d9{bottom:618.952500px;}
.y16{bottom:621.852000px;}
.y45{bottom:628.735500px;}
.y1d8{bottom:633.150000px;}
.y6d{bottom:635.707500px;}
.y9a{bottom:636.069000px;}
.y15{bottom:639.784500px;}
.y44{bottom:646.668000px;}
.y1d7{bottom:647.346000px;}
.y6c{bottom:653.640000px;}
.y99{bottom:654.001500px;}
.y14{bottom:657.718500px;}
.y1d6{bottom:661.543500px;}
.y43{bottom:671.325000px;}
.y6b{bottom:671.572500px;}
.y98{bottom:671.934000px;}
.y13{bottom:675.651000px;}
.y1d5{bottom:675.739500px;}
.y6a{bottom:689.505000px;}
.y97{bottom:689.866500px;}
.y1d4{bottom:689.937000px;}
.y12{bottom:693.583500px;}
.y42{bottom:702.570000px;}
.y1d3{bottom:704.133000px;}
.y69{bottom:707.437500px;}
.y96{bottom:707.800500px;}
.y11{bottom:711.516000px;}
.y1d2{bottom:718.330500px;}
.y40{bottom:720.502500px;}
.y68{bottom:725.370000px;}
.y94{bottom:725.733000px;}
.y41{bottom:725.926500px;}
.y95{bottom:731.157000px;}
.y1d1{bottom:732.526500px;}
.y1c0{bottom:736.989000px;}
.y3f{bottom:738.435000px;}
.y67{bottom:743.304000px;}
.y93{bottom:743.665500px;}
.y1d0{bottom:746.724000px;}
.y10{bottom:751.720500px;}
.y1bf{bottom:754.921500px;}
.y3e{bottom:756.367500px;}
.y1cf{bottom:760.920000px;}
.y66{bottom:761.236500px;}
.yf{bottom:761.578500px;}
.y92{bottom:761.598000px;}
.y1be{bottom:772.855500px;}
.y3d{bottom:774.300000px;}
.y1ce{bottom:775.117500px;}
.y65{bottom:779.169000px;}
.y91{bottom:779.530500px;}
.ye{bottom:782.899500px;}
.y1cd{bottom:789.313500px;}
.y1bd{bottom:790.788000px;}
.y3c{bottom:792.232500px;}
.y64{bottom:797.101500px;}
.y90{bottom:797.463000px;}
.yd{bottom:799.336500px;}
.y1cc{bottom:803.511000px;}
.y1bc{bottom:808.720500px;}
.y3b{bottom:810.166500px;}
.y63{bottom:815.034000px;}
.y8f{bottom:815.397000px;}
.yc{bottom:815.775000px;}
.y1cb{bottom:817.707000px;}
.y1bb{bottom:826.653000px;}
.y3a{bottom:828.099000px;}
.y1ca{bottom:831.904500px;}
.yb{bottom:832.213500px;}
.y62{bottom:832.966500px;}
.y8d{bottom:841.996500px;}
.ya{bottom:843.769500px;}
.y1ba{bottom:844.585500px;}
.y39{bottom:846.031500px;}
.y1c9{bottom:846.100500px;}
.y9{bottom:848.652000px;}
.y61{bottom:850.900500px;}
.y8e{bottom:852.249000px;}
.y8{bottom:860.208000px;}
.y8c{bottom:862.365000px;}
.y1b9{bottom:862.518000px;}
.y1c8{bottom:863.640000px;}
.y38{bottom:863.964000px;}
.yee{bottom:867.337500px;}
.y60{bottom:868.833000px;}
.ybd{bottom:880.452000px;}
.y7{bottom:881.529000px;}
.y37{bottom:881.896500px;}
.yed{bottom:885.271500px;}
.y5f{bottom:886.765500px;}
.y8b{bottom:887.656500px;}
.y1c7{bottom:890.314500px;}
.ybc{bottom:898.384500px;}
.y6{bottom:902.625000px;}
.yec{bottom:903.204000px;}
.y8a{bottom:905.590500px;}
.y36{bottom:908.572500px;}
.y5e{bottom:911.422500px;}
.ybb{bottom:916.317000px;}
.yeb{bottom:921.136500px;}
.y89{bottom:923.523000px;}
.y5{bottom:923.547000px;}
.y1c6{bottom:925.059000px;}
.y114{bottom:927.861000px;}
.yba{bottom:934.249500px;}
.y35{bottom:942.991500px;}
.y13f{bottom:944.113500px;}
.y4{bottom:944.469000px;}
.yea{bottom:945.793500px;}
.y88{bottom:948.180000px;}
.y1c5{bottom:950.464500px;}
.yb9{bottom:952.182000px;}
.y34{bottom:960.924000px;}
.y3{bottom:965.389500px;}
.y1c4{bottom:966.903000px;}
.yb8{bottom:970.114500px;}
.y33{bottom:978.858000px;}
.y1c3{bottom:983.340000px;}
.yb7{bottom:988.048500px;}
.y32{bottom:996.790500px;}
.y1c2{bottom:999.778500px;}
.y2{bottom:1002.510000px;}
.yb6{bottom:1005.981000px;}
.y31{bottom:1014.723000px;}
.y1c1{bottom:1016.217000px;}
.y1{bottom:1030.156500px;}
.y30{bottom:1032.655500px;}
.h1e{height:3.347434px;}
.h2{height:22.146860px;}
.h23{height:25.018049px;}
.h7{height:25.423709px;}
.h26{height:29.279335px;}
.h27{height:29.279338px;}
.h2b{height:29.445612px;}
.h5{height:29.934433px;}
.hd{height:30.021706px;}
.h43{height:31.226852px;}
.h1d{height:31.287155px;}
.h41{height:32.900573px;}
.h42{height:33.044035px;}
.h2a{height:34.353212px;}
.h37{height:35.116200px;}
.h6{height:36.905702px;}
.h24{height:37.013299px;}
.h40{height:37.174694px;}
.h22{height:37.527073px;}
.h33{height:39.505391px;}
.he{height:39.864614px;}
.h2e{height:40.408306px;}
.h3b{height:40.643824px;}
.hc{height:40.826735px;}
.h35{height:40.968900px;}
.h9{height:41.125613px;}
.h44{height:42.855830px;}
.hb{height:42.859105px;}
.h3f{height:43.895250px;}
.h28{height:43.919003px;}
.h2c{height:44.168418px;}
.h8{height:44.293720px;}
.h30{height:46.089622px;}
.h36{height:46.821600px;}
.h39{height:47.417795px;}
.h2d{height:50.196439px;}
.h3d{height:51.211125px;}
.ha{height:51.717706px;}
.hf{height:51.723706px;}
.h31{height:52.673854px;}
.h13{height:52.983155px;}
.h11{height:52.989155px;}
.h3a{height:54.191766px;}
.h12{height:55.739434px;}
.h1c{height:55.971155px;}
.h3e{height:58.527000px;}
.h32{height:58.576983px;}
.h4{height:65.012527px;}
.h3{height:65.018527px;}
.h1{height:70.870129px;}
.h18{height:81.296735px;}
.h17{height:81.589613px;}
.h10{height:81.595613px;}
.h14{height:86.617613px;}
.h1f{height:87.701434px;}
.h15{height:93.337105px;}
.h19{height:122.300735px;}
.h1b{height:124.333105px;}
.h1a{height:127.322735px;}
.h16{height:133.807105px;}
.h20{height:138.497434px;}
.h29{height:296.234949px;}
.h25{height:305.848944px;}
.h21{height:309.277440px;}
.h2f{height:382.721760px;}
.h3c{height:425.250000px;}
.h34{height:453.600000px;}
.h38{height:480.935857px;}
.h0{height:1188.000000px;}
.w4{width:510.295680px;}
.w5{width:567.000000px;}
.w1{width:567.008640px;}
.w2{width:567.011187px;}
.w3{width:567.014575px;}
.w6{width:567.022114px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa1{left:10.082526px;}
.x81{left:11.727788px;}
.x7d{left:14.877896px;}
.x7f{left:16.983280px;}
.x82{left:19.362404px;}
.xd5{left:21.495059px;}
.x80{left:22.709771px;}
.xb7{left:24.192201px;}
.x96{left:26.250926px;}
.x9e{left:27.294152px;}
.x8e{left:29.195286px;}
.xb6{left:31.182743px;}
.x7c{left:44.117185px;}
.x7e{left:48.346395px;}
.xd6{left:49.564542px;}
.xc1{left:50.584570px;}
.x94{left:55.493980px;}
.x9f{left:62.000098px;}
.xd2{left:70.924017px;}
.xd3{left:72.280713px;}
.x97{left:76.311805px;}
.xc6{left:78.574938px;}
.x9b{left:85.940876px;}
.xbf{left:87.342028px;}
.x95{left:89.187006px;}
.x93{left:90.708922px;}
.x9a{left:94.081839px;}
.x98{left:95.165586px;}
.xb5{left:97.978696px;}
.xc2{left:105.840000px;}
.x9d{left:114.690099px;}
.x92{left:121.484377px;}
.x9c{left:125.075993px;}
.x3b{left:148.093500px;}
.x5{left:152.247000px;}
.x2{left:156.402000px;}
.x8d{left:169.557099px;}
.x4{left:173.647500px;}
.x1{left:175.500000px;}
.x68{left:177.024000px;}
.x33{left:180.082500px;}
.x3{left:181.429500px;}
.x8{left:190.440000px;}
.xd7{left:194.179500px;}
.xba{left:196.818000px;}
.x69{left:198.718500px;}
.xd4{left:202.260305px;}
.xb4{left:203.851500px;}
.x5e{left:206.790000px;}
.x84{left:207.819133px;}
.xc0{left:210.324023px;}
.x83{left:214.740626px;}
.x22{left:216.175500px;}
.xce{left:218.115000px;}
.x34{left:222.912000px;}
.x35{left:224.529000px;}
.x99{left:227.336314px;}
.x85{left:228.996356px;}
.x39{left:230.739000px;}
.xcf{left:233.739000px;}
.x5f{left:234.966000px;}
.xbb{left:235.978500px;}
.x23{left:239.275500px;}
.x57{left:241.477500px;}
.x2f{left:243.001500px;}
.x1c{left:244.956000px;}
.x51{left:250.335000px;}
.x4b{left:252.670500px;}
.x61{left:257.290500px;}
.x4f{left:259.549500px;}
.xc3{left:261.453000px;}
.x7b{left:263.295000px;}
.x3a{left:264.783000px;}
.x1d{left:266.089500px;}
.x52{left:267.759000px;}
.xbc{left:269.319000px;}
.x67{left:273.865500px;}
.x12{left:275.352000px;}
.xaf{left:277.587000px;}
.x4c{left:280.762500px;}
.x56{left:283.348500px;}
.x6a{left:285.070500px;}
.x86{left:289.785221px;}
.x62{left:291.402000px;}
.xa2{left:294.922500px;}
.x91{left:296.382943px;}
.xaa{left:298.195500px;}
.x63{left:299.244000px;}
.x45{left:301.216500px;}
.x90{left:303.054928px;}
.x13{left:304.201500px;}
.x36{left:308.052000px;}
.x3e{left:309.064500px;}
.xb0{left:312.751500px;}
.xf{left:318.717000px;}
.xc7{left:323.053500px;}
.x8b{left:326.671003px;}
.x60{left:329.610000px;}
.x3f{left:340.894500px;}
.x70{left:343.630500px;}
.x46{left:345.400500px;}
.x74{left:347.532000px;}
.x10{left:348.738000px;}
.xb1{left:350.598000px;}
.xa0{left:353.137407px;}
.x6b{left:355.125000px;}
.xa7{left:360.880500px;}
.xca{left:362.793000px;}
.x75{left:364.486500px;}
.x77{left:366.129000px;}
.xbd{left:368.365500px;}
.x71{left:370.087500px;}
.x14{left:371.217000px;}
.x58{left:372.694500px;}
.x15{left:377.418000px;}
.x40{left:379.590000px;}
.x47{left:383.175000px;}
.xa4{left:384.517500px;}
.x59{left:387.255000px;}
.xc8{left:388.686000px;}
.x30{left:393.040500px;}
.xc9{left:397.273500px;}
.x26{left:398.398500px;}
.x1f{left:402.163500px;}
.xcc{left:403.735500px;}
.x9{left:409.006500px;}
.x2d{left:410.776500px;}
.x5c{left:413.158500px;}
.x54{left:415.593000px;}
.x48{left:417.811500px;}
.x5d{left:421.044000px;}
.x50{left:425.640000px;}
.xc5{left:429.984844px;}
.x6c{left:434.358000px;}
.xbe{left:435.805500px;}
.x31{left:436.962000px;}
.xa{left:437.988000px;}
.xcd{left:439.534500px;}
.x72{left:440.619000px;}
.xc4{left:442.354500px;}
.x20{left:443.359500px;}
.x27{left:445.665000px;}
.x76{left:447.637500px;}
.x43{left:451.122000px;}
.x41{left:455.533500px;}
.x28{left:460.101000px;}
.x73{left:461.128500px;}
.x2e{left:463.053000px;}
.x64{left:466.287000px;}
.x55{left:467.463000px;}
.x53{left:469.342500px;}
.x5a{left:472.677000px;}
.x87{left:482.689029px;}
.x8a{left:488.933289px;}
.x88{left:494.552047px;}
.x8f{left:495.857391px;}
.x89{left:498.281244px;}
.xb{left:499.768500px;}
.x24{left:504.141000px;}
.x5b{left:506.748000px;}
.x78{left:510.285000px;}
.x21{left:512.011500px;}
.x8c{left:514.257000px;}
.x6d{left:517.003500px;}
.x2b{left:518.383500px;}
.x32{left:520.969500px;}
.x6{left:526.965000px;}
.x65{left:528.000000px;}
.x42{left:534.613500px;}
.xd8{left:538.191000px;}
.xac{left:541.117500px;}
.x6e{left:542.901000px;}
.xad{left:548.709000px;}
.x49{left:557.124000px;}
.xa8{left:559.494000px;}
.x2c{left:562.972500px;}
.xae{left:567.199500px;}
.xa9{left:570.672000px;}
.x18{left:575.416500px;}
.xb8{left:580.618500px;}
.x11{left:581.935500px;}
.x7{left:592.894500px;}
.x3c{left:599.287500px;}
.xc{left:601.684500px;}
.x4a{left:613.002000px;}
.xb2{left:614.467500px;}
.xb9{left:620.088000px;}
.x3d{left:621.298500px;}
.x19{left:623.737500px;}
.x25{left:628.077000px;}
.x6f{left:633.973500px;}
.x79{left:635.908500px;}
.x16{left:645.549000px;}
.xd{left:649.981500px;}
.x29{left:653.344500px;}
.x1a{left:655.540500px;}
.x66{left:657.084000px;}
.x17{left:658.438500px;}
.xd9{left:660.645000px;}
.xa5{left:663.610500px;}
.x4d{left:666.373500px;}
.x2a{left:668.497500px;}
.xe{left:669.622500px;}
.xa6{left:671.979000px;}
.x37{left:678.229500px;}
.xa3{left:684.387000px;}
.xb3{left:687.151500px;}
.xd0{left:688.267500px;}
.x7a{left:689.322000px;}
.xcb{left:706.935000px;}
.xab{left:711.405000px;}
.x4e{left:716.710500px;}
.x1b{left:722.479500px;}
.x44{left:726.076500px;}
.xd1{left:730.641000px;}
.x38{left:735.577500px;}
.x1e{left:740.565000px;}
@media print{
.v14{vertical-align:-54.544000pt;}
.va{vertical-align:-46.570667pt;}
.v13{vertical-align:-19.285333pt;}
.v2{vertical-align:-17.360000pt;}
.v3{vertical-align:-15.429333pt;}
.v18{vertical-align:-11.972970pt;}
.v19{vertical-align:-9.187500pt;}
.v5{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:7.968000pt;}
.v1a{vertical-align:15.429333pt;}
.v4{vertical-align:19.285333pt;}
.v16{vertical-align:20.949333pt;}
.v12{vertical-align:21.941333pt;}
.v1{vertical-align:23.146667pt;}
.v8{vertical-align:28.000000pt;}
.vc{vertical-align:32.469333pt;}
.v7{vertical-align:35.973333pt;}
.vb{vertical-align:40.437333pt;}
.vd{vertical-align:44.869333pt;}
.v9{vertical-align:54.544000pt;}
.v11{vertical-align:68.917333pt;}
.vf{vertical-align:72.421333pt;}
.v15{vertical-align:74.981333pt;}
.v10{vertical-align:76.885333pt;}
.ve{vertical-align:80.842667pt;}
.v17{vertical-align:120.133333pt;}
.ls17{letter-spacing:0.000000pt;}
.ls7c{letter-spacing:0.000015pt;}
.ls6b{letter-spacing:0.001088pt;}
.lsa4{letter-spacing:0.003241pt;}
.ls2d{letter-spacing:0.003733pt;}
.ls19{letter-spacing:0.265874pt;}
.ls30{letter-spacing:0.369088pt;}
.ls2e{letter-spacing:0.370010pt;}
.ls53{letter-spacing:0.529990pt;}
.ls3e{letter-spacing:0.530118pt;}
.ls4c{letter-spacing:0.535324pt;}
.ls21{letter-spacing:0.535452pt;}
.ls20{letter-spacing:0.686400pt;}
.ls72{letter-spacing:0.689088pt;}
.ls22{letter-spacing:0.691733pt;}
.ls75{letter-spacing:0.846400pt;}
.ls11{letter-spacing:0.851733pt;}
.ls12{letter-spacing:0.903200pt;}
.ls76{letter-spacing:1.060270pt;}
.lsa5{letter-spacing:1.062360pt;}
.ls4f{letter-spacing:1.219733pt;}
.ls1d{letter-spacing:1.273067pt;}
.ls36{letter-spacing:1.278400pt;}
.ls83{letter-spacing:1.324467pt;}
.ls0{letter-spacing:1.360230pt;}
.ls2a{letter-spacing:1.549668pt;}
.ls34{letter-spacing:1.555002pt;}
.ls39{letter-spacing:1.593717pt;}
.ls2b{letter-spacing:1.599051pt;}
.ls6{letter-spacing:1.911322pt;}
.ls5f{letter-spacing:1.938976pt;}
.ls15{letter-spacing:1.966400pt;}
.ls65{letter-spacing:2.122682pt;}
.ls5b{letter-spacing:2.125089pt;}
.ls2f{letter-spacing:2.128015pt;}
.ls48{letter-spacing:2.387230pt;}
.ls25{letter-spacing:2.392563pt;}
.ls64{letter-spacing:2.498422pt;}
.ls50{letter-spacing:2.548237pt;}
.ls7e{letter-spacing:2.551756pt;}
.ls10{letter-spacing:2.653867pt;}
.lse{letter-spacing:2.654133pt;}
.ls3c{letter-spacing:2.658422pt;}
.lsf{letter-spacing:2.659467pt;}
.lsb{letter-spacing:3.086019pt;}
.ls16{letter-spacing:3.187467pt;}
.ls82{letter-spacing:3.192800pt;}
.ls1c{letter-spacing:3.321570pt;}
.ls1b{letter-spacing:3.326903pt;}
.ls5c{letter-spacing:3.357897pt;}
.ls4{letter-spacing:3.645090pt;}
.ls57{letter-spacing:4.146422pt;}
.ls81{letter-spacing:4.169874pt;}
.ls2{letter-spacing:4.182700pt;}
.ls1{letter-spacing:4.204510pt;}
.ls8{letter-spacing:4.204655pt;}
.lsa{letter-spacing:4.205090pt;}
.ls3{letter-spacing:4.207223pt;}
.ls7{letter-spacing:4.207369pt;}
.ls9{letter-spacing:4.209698pt;}
.lsc{letter-spacing:4.209843pt;}
.ls5d{letter-spacing:4.264335pt;}
.ls58{letter-spacing:4.303711pt;}
.ls5e{letter-spacing:4.386535pt;}
.lsa6{letter-spacing:5.208533pt;}
.ls7d{letter-spacing:5.310133pt;}
.ls84{letter-spacing:5.313052pt;}
.ls86{letter-spacing:5.315467pt;}
.ls87{letter-spacing:5.373089pt;}
.ls60{letter-spacing:5.780916pt;}
.ls6c{letter-spacing:5.870861pt;}
.ls8c{letter-spacing:5.902400pt;}
.ls8d{letter-spacing:5.902861pt;}
.ls4b{letter-spacing:6.729067pt;}
.ls6f{letter-spacing:8.851733pt;}
.ls6d{letter-spacing:8.857067pt;}
.ls3b{letter-spacing:9.123733pt;}
.ls67{letter-spacing:9.230400pt;}
.ls24{letter-spacing:9.246400pt;}
.ls46{letter-spacing:10.073067pt;}
.ls78{letter-spacing:10.099467pt;}
.ls38{letter-spacing:10.185067pt;}
.ls96{letter-spacing:11.769527pt;}
.ls95{letter-spacing:11.774400pt;}
.ls59{letter-spacing:11.806400pt;}
.ls6e{letter-spacing:11.806861pt;}
.ls31{letter-spacing:11.808499pt;}
.ls28{letter-spacing:11.811733pt;}
.ls29{letter-spacing:11.817527pt;}
.ls91{letter-spacing:11.854400pt;}
.ls92{letter-spacing:11.854861pt;}
.lsa8{letter-spacing:11.886404pt;}
.ls13{letter-spacing:12.062400pt;}
.ls14{letter-spacing:12.062861pt;}
.ls93{letter-spacing:12.345067pt;}
.ls94{letter-spacing:12.345527pt;}
.ls73{letter-spacing:12.366861pt;}
.ls1e{letter-spacing:13.006400pt;}
.ls1f{letter-spacing:13.012194pt;}
.ls66{letter-spacing:13.541833pt;}
.lsa7{letter-spacing:13.611676pt;}
.ls1a{letter-spacing:14.260194pt;}
.ls71{letter-spacing:14.619685pt;}
.ls41{letter-spacing:14.755733pt;}
.ls6a{letter-spacing:14.756194pt;}
.ls2c{letter-spacing:14.758084pt;}
.ls33{letter-spacing:14.761527pt;}
.ls9e{letter-spacing:14.763418pt;}
.ls27{letter-spacing:14.777527pt;}
.ls7a{letter-spacing:14.788194pt;}
.ls9a{letter-spacing:15.003418pt;}
.ls9b{letter-spacing:15.008751pt;}
.ls8a{letter-spacing:15.062084pt;}
.ls32{letter-spacing:15.449527pt;}
.ls35{letter-spacing:15.939467pt;}
.ls54{letter-spacing:15.972194pt;}
.ls70{letter-spacing:16.153527pt;}
.ls47{letter-spacing:16.189854pt;}
.ls5a{letter-spacing:16.325833pt;}
.ls43{letter-spacing:16.351511pt;}
.ls42{letter-spacing:16.356845pt;}
.ls44{letter-spacing:16.425527pt;}
.ls40{letter-spacing:17.108845pt;}
.ls7f{letter-spacing:17.149897pt;}
.ls3d{letter-spacing:18.105067pt;}
.ls8b{letter-spacing:18.163230pt;}
.ls69{letter-spacing:18.430861pt;}
.ls89{letter-spacing:18.461897pt;}
.lsa0{letter-spacing:18.470084pt;}
.ls18{letter-spacing:18.774084pt;}
.ls9d{letter-spacing:18.795489pt;}
.ls88{letter-spacing:19.061044pt;}
.ls9c{letter-spacing:19.066378pt;}
.ls99{letter-spacing:19.311711pt;}
.ls74{letter-spacing:20.174861pt;}
.ls62{letter-spacing:20.449235pt;}
.ls98{letter-spacing:20.678084pt;}
.ls63{letter-spacing:20.816751pt;}
.ls45{letter-spacing:21.131418pt;}
.ls37{letter-spacing:21.134861pt;}
.ls68{letter-spacing:21.609527pt;}
.lsd{letter-spacing:21.655757pt;}
.ls51{letter-spacing:21.822861pt;}
.ls80{letter-spacing:22.054084pt;}
.ls55{letter-spacing:22.462861pt;}
.ls9f{letter-spacing:22.773044pt;}
.ls5{letter-spacing:24.311959pt;}
.ls85{letter-spacing:24.445897pt;}
.ls97{letter-spacing:24.981044pt;}
.ls90{letter-spacing:26.968025pt;}
.lsa3{letter-spacing:33.710031pt;}
.ls8f{letter-spacing:35.695100pt;}
.ls4e{letter-spacing:36.624751pt;}
.ls4d{letter-spacing:39.278861pt;}
.lsa2{letter-spacing:44.618875pt;}
.ls77{letter-spacing:63.390861pt;}
.ls4a{letter-spacing:80.566084pt;}
.ls23{letter-spacing:92.486084pt;}
.ls52{letter-spacing:388.759200pt;}
.ls8e{letter-spacing:448.523345pt;}
.ls79{letter-spacing:596.654937pt;}
.ls61{letter-spacing:633.127200pt;}
.ls49{letter-spacing:667.473867pt;}
.ls3f{letter-spacing:715.985867pt;}
.ls7b{letter-spacing:731.403220pt;}
.ls26{letter-spacing:747.836533pt;}
.ls56{letter-spacing:774.919200pt;}
.ls3a{letter-spacing:778.727200pt;}
.lsa1{letter-spacing:793.115592pt;}
.wsbc{word-spacing:-793.115592pt;}
.wsb7{word-spacing:-448.523345pt;}
.ws42{word-spacing:-54.409079pt;}
.ws7d{word-spacing:-39.718639pt;}
.ws8a{word-spacing:-39.659705pt;}
.wsa1{word-spacing:-36.874903pt;}
.ws30{word-spacing:-35.440289pt;}
.wsdd{word-spacing:-31.922907pt;}
.wsa3{word-spacing:-29.701831pt;}
.ws39{word-spacing:-26.566933pt;}
.wsa2{word-spacing:-24.600980pt;}
.ws12{word-spacing:-23.910400pt;}
.wsaf{word-spacing:-22.126298pt;}
.ws14{word-spacing:-21.253600pt;}
.ws36{word-spacing:-19.393867pt;}
.wsc1{word-spacing:-17.162239pt;}
.ws97{word-spacing:-17.002837pt;}
.ws9f{word-spacing:-16.737168pt;}
.wsad{word-spacing:-16.577766pt;}
.ws90{word-spacing:-15.940160pt;}
.ws1f{word-spacing:-15.727625pt;}
.ws9d{word-spacing:-15.568223pt;}
.ws2c{word-spacing:-15.461955pt;}
.ws35{word-spacing:-15.143152pt;}
.ws80{word-spacing:-15.036884pt;}
.ws28{word-spacing:-14.877483pt;}
.ws87{word-spacing:-14.824349pt;}
.ws34{word-spacing:-14.718081pt;}
.ws63{word-spacing:-14.558679pt;}
.ws27{word-spacing:-14.505546pt;}
.ws68{word-spacing:-14.452412pt;}
.ws86{word-spacing:-14.399278pt;}
.wsa0{word-spacing:-14.346144pt;}
.ws69{word-spacing:-14.293010pt;}
.ws9e{word-spacing:-14.239876pt;}
.ws88{word-spacing:-14.133609pt;}
.ws6a{word-spacing:-14.082151pt;}
.ws16{word-spacing:-14.080475pt;}
.wsb5{word-spacing:-14.027341pt;}
.ws4f{word-spacing:-13.921073pt;}
.ws65{word-spacing:-13.761671pt;}
.ws99{word-spacing:-13.708538pt;}
.ws52{word-spacing:-13.655404pt;}
.ws64{word-spacing:-13.602270pt;}
.ws3a{word-spacing:-13.549136pt;}
.ws1a{word-spacing:-13.496002pt;}
.ws21{word-spacing:-13.442868pt;}
.ws2b{word-spacing:-13.389734pt;}
.ws17{word-spacing:-13.336601pt;}
.wsbe{word-spacing:-13.294182pt;}
.ws76{word-spacing:-13.284785pt;}
.ws19{word-spacing:-13.283467pt;}
.ws1e{word-spacing:-13.230333pt;}
.ws1d{word-spacing:-13.177199pt;}
.ws20{word-spacing:-13.124065pt;}
.ws18{word-spacing:-13.070931pt;}
.ws37{word-spacing:-13.017797pt;}
.wsb4{word-spacing:-12.964663pt;}
.ws67{word-spacing:-12.805262pt;}
.ws5a{word-spacing:-12.753697pt;}
.ws5c{word-spacing:-12.752963pt;}
.ws49{word-spacing:-12.752128pt;}
.ws53{word-spacing:-12.698994pt;}
.wsa6{word-spacing:-12.645860pt;}
.ws46{word-spacing:-12.593570pt;}
.ws7e{word-spacing:-12.592726pt;}
.ws7b{word-spacing:-12.539593pt;}
.ws75{word-spacing:-12.433325pt;}
.wsb3{word-spacing:-12.337766pt;}
.wsac{word-spacing:-12.273923pt;}
.ws94{word-spacing:-12.194304pt;}
.ws92{word-spacing:-12.146483pt;}
.wsab{word-spacing:-12.098662pt;}
.ws23{word-spacing:-12.061388pt;}
.ws95{word-spacing:-12.003021pt;}
.ws11{word-spacing:-11.955200pt;}
.ws55{word-spacing:-11.955120pt;}
.ws9c{word-spacing:-11.907379pt;}
.ws1b{word-spacing:-11.901986pt;}
.wsa9{word-spacing:-11.859558pt;}
.ws71{word-spacing:-11.848852pt;}
.ws50{word-spacing:-11.811646pt;}
.ws4a{word-spacing:-11.806313pt;}
.ws78{word-spacing:-11.803230pt;}
.ws96{word-spacing:-11.795718pt;}
.ws13{word-spacing:-11.716096pt;}
.ws25{word-spacing:-11.636317pt;}
.wsc9{word-spacing:-11.604466pt;}
.ws98{word-spacing:-11.583183pt;}
.ws33{word-spacing:-11.530049pt;}
.ws38{word-spacing:-11.423781pt;}
.ws4e{word-spacing:-11.370647pt;}
.ws4c{word-spacing:-11.320174pt;}
.ws5f{word-spacing:-11.318020pt;}
.ws3c{word-spacing:-11.314841pt;}
.wsc4{word-spacing:-11.285709pt;}
.ws22{word-spacing:-11.264380pt;}
.wsce{word-spacing:-11.179394pt;}
.ws6e{word-spacing:-11.158112pt;}
.ws40{word-spacing:-11.051844pt;}
.ws4d{word-spacing:-11.048979pt;}
.wsbb{word-spacing:-10.998710pt;}
.ws70{word-spacing:-10.945577pt;}
.ws9a{word-spacing:-10.903142pt;}
.wsaa{word-spacing:-10.807501pt;}
.wscd{word-spacing:-10.796829pt;}
.wsdc{word-spacing:-10.754322pt;}
.ws51{word-spacing:-10.733041pt;}
.wsd6{word-spacing:-10.711814pt;}
.ws3f{word-spacing:-10.679907pt;}
.wsd3{word-spacing:-10.669307pt;}
.wsd5{word-spacing:-10.627153pt;}
.wsca{word-spacing:-10.626800pt;}
.ws29{word-spacing:-10.626773pt;}
.wsd7{word-spacing:-10.626166pt;}
.wsde{word-spacing:-10.624341pt;}
.wsdf{word-spacing:-10.623971pt;}
.wscf{word-spacing:-10.584293pt;}
.wsd8{word-spacing:-10.541786pt;}
.ws8f{word-spacing:-10.467372pt;}
.wsd2{word-spacing:-10.414264pt;}
.wsd1{word-spacing:-10.371757pt;}
.ws26{word-spacing:-10.361104pt;}
.wscc{word-spacing:-10.329250pt;}
.ws61{word-spacing:-10.254836pt;}
.ws54{word-spacing:-10.201702pt;}
.ws7a{word-spacing:-9.989167pt;}
.ws2d{word-spacing:-9.882899pt;}
.ws93{word-spacing:-9.707622pt;}
.ws74{word-spacing:-9.696933pt;}
.ws8e{word-spacing:-9.617230pt;}
.ws9b{word-spacing:-9.516339pt;}
.wsba{word-spacing:-9.404694pt;}
.ws79{word-spacing:-9.351561pt;}
.wsda{word-spacing:-9.139048pt;}
.wsb0{word-spacing:-9.139025pt;}
.ws2f{word-spacing:-8.979623pt;}
.wsdb{word-spacing:-8.926512pt;}
.ws62{word-spacing:-8.873356pt;}
.wsd9{word-spacing:-8.713976pt;}
.ws6f{word-spacing:-8.713954pt;}
.wsae{word-spacing:-8.660820pt;}
.wsb6{word-spacing:-8.607686pt;}
.wsc5{word-spacing:-8.512102pt;}
.wsd0{word-spacing:-8.501440pt;}
.wsa5{word-spacing:-8.395151pt;}
.wsb2{word-spacing:-8.177357pt;}
.ws91{word-spacing:-8.033894pt;}
.ws84{word-spacing:-7.879030pt;}
.ws58{word-spacing:-7.616687pt;}
.ws6d{word-spacing:-7.506151pt;}
.ws5e{word-spacing:-7.488963pt;}
.ws89{word-spacing:-7.332474pt;}
.ws8c{word-spacing:-7.226206pt;}
.ws4b{word-spacing:-7.191030pt;}
.wse0{word-spacing:-7.183717pt;}
.ws24{word-spacing:-7.066804pt;}
.ws85{word-spacing:-6.830313pt;}
.wsd4{word-spacing:-6.291066pt;}
.wsc2{word-spacing:-5.632190pt;}
.wsb9{word-spacing:-5.069005pt;}
.ws82{word-spacing:-4.930151pt;}
.ws43{word-spacing:-4.929697pt;}
.ws32{word-spacing:-4.912687pt;}
.ws6{word-spacing:-4.233708pt;}
.ws8b{word-spacing:-3.628364pt;}
.ws6c{word-spacing:-3.564818pt;}
.ws45{word-spacing:-3.451176pt;}
.ws10{word-spacing:-3.132777pt;}
.wsc6{word-spacing:-2.056294pt;}
.ws41{word-spacing:-1.980818pt;}
.ws3b{word-spacing:-1.980364pt;}
.ws44{word-spacing:-1.979630pt;}
.ws5b{word-spacing:-1.979354pt;}
.ws47{word-spacing:-1.979176pt;}
.ws59{word-spacing:-1.976323pt;}
.ws81{word-spacing:-1.975484pt;}
.ws72{word-spacing:-1.974297pt;}
.ws56{word-spacing:-1.974030pt;}
.ws3d{word-spacing:-1.964364pt;}
.ws31{word-spacing:-1.947354pt;}
.ws77{word-spacing:-1.473333pt;}
.ws1{word-spacing:-1.445245pt;}
.ws7f{word-spacing:-0.918667pt;}
.ws60{word-spacing:-0.816687pt;}
.ws7c{word-spacing:-0.583038pt;}
.ws57{word-spacing:-0.438667pt;}
.wsb{word-spacing:-0.063761pt;}
.wsc8{word-spacing:-0.053134pt;}
.ws3{word-spacing:-0.051009pt;}
.wscb{word-spacing:-0.042507pt;}
.ws2a{word-spacing:0.000000pt;}
.ws83{word-spacing:1.009543pt;}
.ws73{word-spacing:1.814000pt;}
.ws3e{word-spacing:1.819333pt;}
.ws48{word-spacing:2.400667pt;}
.wsa4{word-spacing:7.704411pt;}
.ws66{word-spacing:9.452354pt;}
.wsf{word-spacing:13.736376pt;}
.ws9{word-spacing:13.748154pt;}
.ws2{word-spacing:13.749095pt;}
.ws7{word-spacing:13.750354pt;}
.wsd{word-spacing:13.784958pt;}
.ws5{word-spacing:13.789217pt;}
.ws4{word-spacing:13.798088pt;}
.ws2e{word-spacing:14.718081pt;}
.wse{word-spacing:18.088096pt;}
.ws8{word-spacing:18.092965pt;}
.wsa{word-spacing:18.093064pt;}
.wsc{word-spacing:22.155256pt;}
.ws0{word-spacing:22.783859pt;}
.ws15{word-spacing:38.034842pt;}
.wsc7{word-spacing:41.127552pt;}
.wsc3{word-spacing:43.006050pt;}
.ws6b{word-spacing:50.819636pt;}
.ws1c{word-spacing:53.080733pt;}
.wsb1{word-spacing:107.955782pt;}
.wsbf{word-spacing:138.494571pt;}
.wsa7{word-spacing:139.413066pt;}
.ws5d{word-spacing:153.140646pt;}
.wsa8{word-spacing:195.507791pt;}
.wsc0{word-spacing:266.345442pt;}
.wsb8{word-spacing:386.195345pt;}
.wsbd{word-spacing:735.404375pt;}
.ws8d{word-spacing:762.142303pt;}
._68{margin-left:-2114.774933pt;}
._40{margin-left:-2112.932486pt;}
._5b{margin-left:-2111.317318pt;}
._1e{margin-left:-2100.380599pt;}
._11{margin-left:-2069.019978pt;}
._b{margin-left:-2064.441871pt;}
._10{margin-left:-2043.432283pt;}
._7{margin-left:-2011.063779pt;}
._54{margin-left:-2001.612198pt;}
._3b{margin-left:-1988.466885pt;}
._37{margin-left:-1986.333028pt;}
._6a{margin-left:-1950.597309pt;}
._21{margin-left:-1935.776175pt;}
._46{margin-left:-1911.814842pt;}
._5{margin-left:-1884.549728pt;}
._a{margin-left:-1783.755826pt;}
._30{margin-left:-1770.555997pt;}
._5a{margin-left:-1762.375906pt;}
._70{margin-left:-1689.263645pt;}
._2a{margin-left:-1656.938111pt;}
._28{margin-left:-1644.664222pt;}
._6f{margin-left:-1639.949107pt;}
._55{margin-left:-1610.342906pt;}
._81{margin-left:-1606.895351pt;}
._2e{margin-left:-1603.590070pt;}
._41{margin-left:-1586.030951pt;}
._65{margin-left:-1557.942279pt;}
._34{margin-left:-1547.574947pt;}
._27{margin-left:-1512.203628pt;}
._f{margin-left:-1505.684150pt;}
._52{margin-left:-1424.166098pt;}
._84{margin-left:-1369.692801pt;}
._61{margin-left:-1348.790389pt;}
._56{margin-left:-1344.849981pt;}
._44{margin-left:-1342.743749pt;}
._89{margin-left:-1335.249186pt;}
._7c{margin-left:-1255.318708pt;}
._7a{margin-left:-1253.903188pt;}
._31{margin-left:-1250.676601pt;}
._16{margin-left:-1223.814248pt;}
._6e{margin-left:-1220.516733pt;}
._d{margin-left:-1207.524220pt;}
._85{margin-left:-1190.456249pt;}
._7b{margin-left:-1186.584565pt;}
._66{margin-left:-1178.433542pt;}
._72{margin-left:-1177.460644pt;}
._36{margin-left:-1143.034810pt;}
._2c{margin-left:-1107.901667pt;}
._50{margin-left:-1010.975903pt;}
._78{margin-left:-995.412689pt;}
._4f{margin-left:-948.656254pt;}
._4c{margin-left:-944.033607pt;}
._12{margin-left:-922.524040pt;}
._79{margin-left:-918.971961pt;}
._7f{margin-left:-913.878891pt;}
._5f{margin-left:-899.469165pt;}
._4e{margin-left:-894.519213pt;}
._82{margin-left:-885.731330pt;}
._60{margin-left:-853.168319pt;}
._25{margin-left:-848.548887pt;}
._76{margin-left:-840.779994pt;}
._4d{margin-left:-825.719358pt;}
._57{margin-left:-817.940565pt;}
._42{margin-left:-797.515144pt;}
._69{margin-left:-793.115592pt;}
._3c{margin-left:-778.866222pt;}
._2b{margin-left:-763.539266pt;}
._7d{margin-left:-734.522797pt;}
._32{margin-left:-725.867093pt;}
._75{margin-left:-717.968194pt;}
._86{margin-left:-717.003255pt;}
._88{margin-left:-710.744799pt;}
._77{margin-left:-667.044569pt;}
._3e{margin-left:-664.829097pt;}
._7e{margin-left:-637.659311pt;}
._24{margin-left:-627.852053pt;}
._87{margin-left:-612.765333pt;}
._13{margin-left:-558.365952pt;}
._6d{margin-left:-544.362602pt;}
._80{margin-left:-515.694062pt;}
._71{margin-left:-499.953007pt;}
._17{margin-left:-488.983510pt;}
._6c{margin-left:-483.135570pt;}
._73{margin-left:-481.337520pt;}
._63{margin-left:-448.523345pt;}
._2f{margin-left:-443.477536pt;}
._45{margin-left:-407.980898pt;}
._74{margin-left:-383.890009pt;}
._51{margin-left:-333.572237pt;}
._83{margin-left:-321.775333pt;}
._43{margin-left:-320.288770pt;}
._3a{margin-left:-311.814976pt;}
._1{margin-left:-295.402534pt;}
._33{margin-left:-285.917535pt;}
._35{margin-left:-174.170637pt;}
._c{margin-left:-154.748860pt;}
._2d{margin-left:-22.843405pt;}
._47{margin-left:-21.839088pt;}
._29{margin-left:-6.057261pt;}
._8{margin-left:-4.654701pt;}
._e{margin-left:-3.413358pt;}
._0{margin-left:-2.210374pt;}
._9{margin-left:-1.071179pt;}
._3{width:1.122188pt;}
._4{width:2.208972pt;}
._6{width:3.187400pt;}
._2{width:4.182700pt;}
._3f{width:5.312603pt;}
._19{width:6.429198pt;}
._39{width:9.024300pt;}
._20{width:10.148569pt;}
._53{width:11.115785pt;}
._18{width:12.471597pt;}
._1a{width:14.226982pt;}
._4a{width:15.177146pt;}
._1c{width:16.237715pt;}
._38{width:17.328034pt;}
._1b{width:18.224916pt;}
._14{width:19.406794pt;}
._15{width:20.482048pt;}
._1f{width:21.778509pt;}
._3d{width:23.166366pt;}
._4b{width:24.099588pt;}
._1d{width:25.716791pt;}
._23{width:27.523343pt;}
._22{width:28.724174pt;}
._49{width:30.658286pt;}
._67{width:31.680548pt;}
._62{width:34.300935pt;}
._64{width:37.634970pt;}
._5e{width:43.947315pt;}
._48{width:53.133867pt;}
._26{width:67.905082pt;}
._5d{width:120.418232pt;}
._5c{width:132.886982pt;}
._58{width:153.440291pt;}
._59{width:167.460428pt;}
._6b{width:169.658571pt;}
.fs1{font-size:26.566933pt;}
.fsb{font-size:30.545921pt;}
.fs19{font-size:31.360000pt;}
.fs7{font-size:32.942933pt;}
.fs18{font-size:33.600000pt;}
.fs14{font-size:35.279701pt;}
.fsc{font-size:35.724801pt;}
.fsd{font-size:35.724805pt;}
.fs10{font-size:35.927681pt;}
.fs15{font-size:37.799680pt;}
.fs5{font-size:38.787733pt;}
.fs1c{font-size:38.888960pt;}
.fs16{font-size:39.200000pt;}
.fsf{font-size:41.915627pt;}
.fs1f{font-size:42.000000pt;}
.fs8{font-size:42.507200pt;}
.fs12{font-size:44.099627pt;}
.fs17{font-size:44.800000pt;}
.fs1a{font-size:45.370453pt;}
.fsa{font-size:45.818881pt;}
.fs4{font-size:46.757867pt;}
.fs6{font-size:47.820800pt;}
.fs1d{font-size:49.000000pt;}
.fs13{font-size:50.399573pt;}
.fs3{font-size:51.008533pt;}
.fs1b{font-size:51.851947pt;}
.fs9{font-size:53.133867pt;}
.fse{font-size:53.587202pt;}
.fs11{font-size:53.891522pt;}
.fs1e{font-size:56.000000pt;}
.fs2{font-size:63.761067pt;}
.fs0{font-size:85.014400pt;}
.y0{bottom:0.000000pt;}
.yfc{bottom:3.607868pt;}
.yfa{bottom:6.554823pt;}
.y123{bottom:7.522845pt;}
.y122{bottom:7.727128pt;}
.y199{bottom:8.529747pt;}
.y125{bottom:9.009583pt;}
.yd3{bottom:9.990464pt;}
.y144{bottom:10.376701pt;}
.y1ac{bottom:11.529766pt;}
.yf1{bottom:12.904745pt;}
.yf7{bottom:17.030815pt;}
.yf9{bottom:17.272264pt;}
.yc9{bottom:20.096367pt;}
.y165{bottom:21.109812pt;}
.yfe{bottom:23.118645pt;}
.y198{bottom:23.973930pt;}
.y143{bottom:25.388293pt;}
.y118{bottom:27.282003pt;}
.yf6{bottom:27.748255pt;}
.yf8{bottom:27.989705pt;}
.y1ab{bottom:28.209453pt;}
.yc8{bottom:29.260144pt;}
.yc1{bottom:30.742275pt;}
.y19a{bottom:31.328529pt;}
.y164{bottom:34.453562pt;}
.yd5{bottom:36.118171pt;}
.ycc{bottom:37.096017pt;}
.y119{bottom:37.242364pt;}
.y121{bottom:37.430002pt;}
.y1ad{bottom:42.355204pt;}
.y18f{bottom:43.273195pt;}
.yfd{bottom:43.658653pt;}
.y145{bottom:44.580467pt;}
.ybf{bottom:45.019410pt;}
.y166{bottom:54.455700pt;}
.yfb{bottom:54.521325pt;}
.yd4{bottom:58.348514pt;}
.y117{bottom:63.537929pt;}
.yc0{bottom:65.489272pt;}
.yf2{bottom:71.378827pt;}
.y11c{bottom:74.849349pt;}
.ycb{bottom:81.066703pt;}
.y11b{bottom:85.627654pt;}
.y146{bottom:88.614638pt;}
.y14b{bottom:89.333244pt;}
.yca{bottom:90.230480pt;}
.y1ae{bottom:92.864795pt;}
.y19b{bottom:94.203395pt;}
.yd0{bottom:95.540110pt;}
.yc4{bottom:99.809723pt;}
.y190{bottom:103.058122pt;}
.y116{bottom:103.958643pt;}
.ycf{bottom:104.703886pt;}
.y1b3{bottom:106.838484pt;}
.y124{bottom:108.708769pt;}
.y167{bottom:111.964391pt;}
.yc3{bottom:119.233321pt;}
.y5d{bottom:124.800000pt;}
.y1a0{bottom:125.084466pt;}
.y113{bottom:127.165333pt;}
.y13e{bottom:129.066667pt;}
.y18e{bottom:129.500000pt;}
.y86{bottom:130.821333pt;}
.y2f{bottom:131.537333pt;}
.y147{bottom:132.648809pt;}
.y16c{bottom:133.401188pt;}
.y11e{bottom:134.182455pt;}
.y162{bottom:135.245333pt;}
.y87{bottom:139.933333pt;}
.y5c{bottom:140.740000pt;}
.y112{bottom:143.105333pt;}
.y1af{bottom:143.374385pt;}
.y11d{bottom:144.960760pt;}
.y13d{bottom:145.008000pt;}
.y18d{bottom:145.440000pt;}
.yc7{bottom:145.843453pt;}
.yd2{bottom:146.195771pt;}
.y2e{bottom:147.477333pt;}
.y85{bottom:148.926667pt;}
.yb5{bottom:149.620000pt;}
.y161{bottom:151.185333pt;}
.yc6{bottom:155.007229pt;}
.ye9{bottom:156.681333pt;}
.y19c{bottom:157.078261pt;}
.y111{bottom:159.045333pt;}
.y13c{bottom:160.948000pt;}
.y18c{bottom:161.380000pt;}
.y11a{bottom:162.235569pt;}
.y191{bottom:162.843048pt;}
.y84{bottom:163.213333pt;}
.y2d{bottom:163.417333pt;}
.yb4{bottom:165.560000pt;}
.y5b{bottom:166.820000pt;}
.y160{bottom:167.125333pt;}
.y120{bottom:168.259603pt;}
.yc5{bottom:169.324164pt;}
.y168{bottom:169.473083pt;}
.y1f7{bottom:171.600000pt;}
.ye8{bottom:172.621333pt;}
.y110{bottom:174.985333pt;}
.y5a{bottom:175.933333pt;}
.y148{bottom:176.682980pt;}
.y13b{bottom:176.888000pt;}
.y18b{bottom:177.320000pt;}
.y11f{bottom:179.037907pt;}
.y83{bottom:179.153333pt;}
.y2c{bottom:179.357333pt;}
.yb3{bottom:181.500000pt;}
.y15f{bottom:183.065333pt;}
.y1f6{bottom:184.218667pt;}
.ye7{bottom:188.561333pt;}
.y10f{bottom:190.926667pt;}
.y13a{bottom:192.828000pt;}
.y18a{bottom:193.260000pt;}
.yf5{bottom:193.519002pt;}
.y1b0{bottom:193.883975pt;}
.yc2{bottom:193.974670pt;}
.yf3{bottom:195.039768pt;}
.y82{bottom:195.094667pt;}
.y2b{bottom:195.298667pt;}
.y1f5{bottom:196.838667pt;}
.yb2{bottom:198.510667pt;}
.y15e{bottom:199.005333pt;}
.ye6{bottom:204.501333pt;}
.y178{bottom:205.156000pt;}
.y10e{bottom:206.866667pt;}
.y139{bottom:208.768000pt;}
.y189{bottom:209.201333pt;}
.y1f4{bottom:209.457333pt;}
.yb1{bottom:209.798667pt;}
.y81{bottom:211.034667pt;}
.y2a{bottom:211.238667pt;}
.y59{bottom:213.502667pt;}
.y15d{bottom:214.945333pt;}
.y177{bottom:217.493500pt;}
.y19d{bottom:219.953127pt;}
.ye5{bottom:220.441333pt;}
.y149{bottom:220.717151pt;}
.y1f3{bottom:222.077333pt;}
.y192{bottom:222.627975pt;}
.yce{bottom:222.781931pt;}
.y10d{bottom:222.806667pt;}
.y138{bottom:224.708000pt;}
.y188{bottom:225.141333pt;}
.yf4{bottom:226.275524pt;}
.y80{bottom:226.974667pt;}
.y169{bottom:226.981774pt;}
.y29{bottom:227.178667pt;}
.y58{bottom:229.442667pt;}
.y176{bottom:229.831000pt;}
.y15c{bottom:230.886667pt;}
.ycd{bottom:231.945708pt;}
.yb0{bottom:232.489333pt;}
.y1f2{bottom:234.696000pt;}
.ye4{bottom:236.381333pt;}
.y10c{bottom:238.746667pt;}
.y137{bottom:240.649333pt;}
.y187{bottom:241.081333pt;}
.y175{bottom:242.168500pt;}
.y7f{bottom:242.914667pt;}
.y28{bottom:243.118667pt;}
.y1b1{bottom:244.393565pt;}
.y126{bottom:245.524396pt;}
.y15b{bottom:246.826667pt;}
.y1f1{bottom:247.316000pt;}
.yaf{bottom:248.429333pt;}
.y14f{bottom:248.611645pt;}
.y57{bottom:248.829333pt;}
.ye3{bottom:252.322667pt;}
.y174{bottom:254.506000pt;}
.y10b{bottom:254.686667pt;}
.y136{bottom:256.589333pt;}
.y186{bottom:257.021333pt;}
.y56{bottom:257.941333pt;}
.y7e{bottom:258.854667pt;}
.y27{bottom:259.058667pt;}
.y1f0{bottom:259.934667pt;}
.yf0{bottom:261.634053pt;}
.y14e{bottom:262.491215pt;}
.y15a{bottom:262.766667pt;}
.yd1{bottom:263.293004pt;}
.yae{bottom:264.370667pt;}
.y14a{bottom:264.751322pt;}
.y173{bottom:266.843500pt;}
.ye2{bottom:268.262667pt;}
.y10a{bottom:270.626667pt;}
.y135{bottom:272.529333pt;}
.y1ef{bottom:272.554667pt;}
.y185{bottom:272.961333pt;}
.y7d{bottom:274.794667pt;}
.y26{bottom:274.998667pt;}
.y14d{bottom:276.370785pt;}
.y159{bottom:278.706667pt;}
.y172{bottom:279.181000pt;}
.yad{bottom:280.310667pt;}
.y55{bottom:281.221333pt;}
.y193{bottom:282.412901pt;}
.y19e{bottom:282.827993pt;}
.ye1{bottom:284.202667pt;}
.y16a{bottom:284.490466pt;}
.y1ee{bottom:285.173333pt;}
.y109{bottom:286.568000pt;}
.y134{bottom:288.469333pt;}
.y184{bottom:288.902667pt;}
.y14c{bottom:290.250355pt;}
.y7c{bottom:290.736000pt;}
.y25{bottom:290.940000pt;}
.y171{bottom:291.518500pt;}
.y158{bottom:294.646667pt;}
.y1b2{bottom:294.903155pt;}
.yac{bottom:296.250667pt;}
.y54{bottom:297.161333pt;}
.y1ed{bottom:297.793333pt;}
.ye0{bottom:300.142667pt;}
.y108{bottom:302.508000pt;}
.y170{bottom:303.856000pt;}
.y133{bottom:304.409333pt;}
.y183{bottom:304.842667pt;}
.y1b5{bottom:305.695250pt;}
.y7b{bottom:306.676000pt;}
.y24{bottom:306.880000pt;}
.y1ec{bottom:310.413333pt;}
.y157{bottom:310.586667pt;}
.y141{bottom:310.986039pt;}
.yab{bottom:312.190667pt;}
.y53{bottom:313.101333pt;}
.ydf{bottom:316.082667pt;}
.y16f{bottom:316.193500pt;}
.y107{bottom:318.448000pt;}
.y132{bottom:320.349333pt;}
.y182{bottom:320.782667pt;}
.y1b4{bottom:321.117125pt;}
.y142{bottom:322.515434pt;}
.y7a{bottom:322.616000pt;}
.y23{bottom:322.820000pt;}
.y1eb{bottom:323.032000pt;}
.y156{bottom:326.528000pt;}
.y16e{bottom:328.531000pt;}
.y52{bottom:329.042667pt;}
.yaa{bottom:330.358667pt;}
.yde{bottom:332.022667pt;}
.y106{bottom:334.388000pt;}
.y1ea{bottom:335.652000pt;}
.y1a4{bottom:335.782877pt;}
.y1b8{bottom:336.078667pt;}
.y131{bottom:336.290667pt;}
.y181{bottom:336.722667pt;}
.y79{bottom:338.556000pt;}
.y22{bottom:338.760000pt;}
.ya9{bottom:339.470667pt;}
.y16d{bottom:340.868500pt;}
.y16b{bottom:341.999157pt;}
.y194{bottom:342.197828pt;}
.y155{bottom:342.468000pt;}
.y1b6{bottom:344.156969pt;}
.y51{bottom:344.982667pt;}
.y19f{bottom:345.702859pt;}
.ydd{bottom:347.964000pt;}
.y1e9{bottom:348.270667pt;}
.y1a3{bottom:350.062417pt;}
.y105{bottom:350.328000pt;}
.y130{bottom:352.230667pt;}
.y180{bottom:352.662667pt;}
.y21{bottom:354.700000pt;}
.y1b7{bottom:357.254625pt;}
.y154{bottom:358.408000pt;}
.y195{bottom:359.300375pt;}
.y1aa{bottom:359.589333pt;}
.y1e8{bottom:360.890667pt;}
.y50{bottom:362.317333pt;}
.ydc{bottom:363.904000pt;}
.y1a2{bottom:364.341957pt;}
.y77{bottom:366.240000pt;}
.y12f{bottom:368.170667pt;}
.y17f{bottom:368.602667pt;}
.y196{bottom:369.778500pt;}
.y20{bottom:370.640000pt;}
.ya8{bottom:371.352000pt;}
.y1e7{bottom:373.509333pt;}
.y76{bottom:375.352000pt;}
.y4f{bottom:378.257333pt;}
.y1a1{bottom:378.621497pt;}
.ya7{bottom:382.709333pt;}
.y104{bottom:383.716000pt;}
.y12e{bottom:384.110667pt;}
.y17e{bottom:384.544000pt;}
.y78{bottom:385.461333pt;}
.y1e6{bottom:386.129333pt;}
.y1f{bottom:386.581333pt;}
.ya5{bottom:387.292000pt;}
.ya6{bottom:392.525333pt;}
.y4e{bottom:394.197333pt;}
.ydb{bottom:394.808000pt;}
.y103{bottom:398.328000pt;}
.y1e5{bottom:398.748000pt;}
.y1a5{bottom:399.954724pt;}
.y12d{bottom:400.050667pt;}
.y17d{bottom:400.484000pt;}
.y1e{bottom:402.521333pt;}
.ya4{bottom:403.232000pt;}
.y1a9{bottom:406.736000pt;}
.y153{bottom:407.789333pt;}
.yda{bottom:409.420000pt;}
.y4d{bottom:410.138667pt;}
.y1e4{bottom:411.368000pt;}
.y1a6{bottom:411.816364pt;}
.y75{bottom:411.916000pt;}
.y102{bottom:412.940000pt;}
.y12c{bottom:415.992000pt;}
.y17c{bottom:416.424000pt;}
.y1d{bottom:418.461333pt;}
.ya3{bottom:419.172000pt;}
.y152{bottom:422.401333pt;}
.y1a8{bottom:422.676000pt;}
.y1e3{bottom:423.986667pt;}
.yd9{bottom:424.032000pt;}
.y4c{bottom:426.078667pt;}
.y101{bottom:427.552000pt;}
.y74{bottom:427.856000pt;}
.y12b{bottom:431.932000pt;}
.y17b{bottom:432.364000pt;}
.y1c{bottom:434.401333pt;}
.ya2{bottom:435.112000pt;}
.y1e2{bottom:436.606667pt;}
.y151{bottom:437.013333pt;}
.yd8{bottom:438.644000pt;}
.y100{bottom:442.164000pt;}
.y73{bottom:443.796000pt;}
.y12a{bottom:447.872000pt;}
.y1e1{bottom:449.225333pt;}
.y1b{bottom:450.341333pt;}
.ya0{bottom:451.052000pt;}
.y150{bottom:451.625333pt;}
.y4b{bottom:452.158667pt;}
.yd7{bottom:453.256000pt;}
.yff{bottom:456.776000pt;}
.y4a{bottom:461.270667pt;}
.y1e0{bottom:461.845333pt;}
.ya1{bottom:462.696000pt;}
.y129{bottom:463.812000pt;}
.y72{bottom:466.165333pt;}
.y1a{bottom:466.281333pt;}
.yd6{bottom:467.866667pt;}
.y9f{bottom:468.388000pt;}
.y1df{bottom:474.464000pt;}
.y140{bottom:475.137333pt;}
.y71{bottom:475.278667pt;}
.y128{bottom:479.752000pt;}
.y1a7{bottom:480.193333pt;}
.yef{bottom:480.288000pt;}
.y1de{bottom:487.084000pt;}
.y17a{bottom:489.881333pt;}
.y19{bottom:489.993333pt;}
.y9e{bottom:490.305333pt;}
.ybe{bottom:491.378667pt;}
.y70{bottom:494.672000pt;}
.y49{bottom:495.114667pt;}
.y1dd{bottom:499.702667pt;}
.y197{bottom:503.705333pt;}
.y179{bottom:504.493333pt;}
.y48{bottom:511.054667pt;}
.y1dc{bottom:512.322667pt;}
.y127{bottom:513.220000pt;}
.y9d{bottom:517.573333pt;}
.y6f{bottom:520.333333pt;}
.y18{bottom:520.877333pt;}
.y1db{bottom:524.941333pt;}
.y47{bottom:526.994667pt;}
.y163{bottom:528.005333pt;}
.y6e{bottom:529.446667pt;}
.y9c{bottom:533.514667pt;}
.y115{bottom:536.732000pt;}
.y17{bottom:536.817333pt;}
.y1da{bottom:537.561333pt;}
.y46{bottom:542.934667pt;}
.y9b{bottom:549.454667pt;}
.y1d9{bottom:550.180000pt;}
.y16{bottom:552.757333pt;}
.y45{bottom:558.876000pt;}
.y1d8{bottom:562.800000pt;}
.y6d{bottom:565.073333pt;}
.y9a{bottom:565.394667pt;}
.y15{bottom:568.697333pt;}
.y44{bottom:574.816000pt;}
.y1d7{bottom:575.418667pt;}
.y6c{bottom:581.013333pt;}
.y99{bottom:581.334667pt;}
.y14{bottom:584.638667pt;}
.y1d6{bottom:588.038667pt;}
.y43{bottom:596.733333pt;}
.y6b{bottom:596.953333pt;}
.y98{bottom:597.274667pt;}
.y13{bottom:600.578667pt;}
.y1d5{bottom:600.657333pt;}
.y6a{bottom:612.893333pt;}
.y97{bottom:613.214667pt;}
.y1d4{bottom:613.277333pt;}
.y12{bottom:616.518667pt;}
.y42{bottom:624.506667pt;}
.y1d3{bottom:625.896000pt;}
.y69{bottom:628.833333pt;}
.y96{bottom:629.156000pt;}
.y11{bottom:632.458667pt;}
.y1d2{bottom:638.516000pt;}
.y40{bottom:640.446667pt;}
.y68{bottom:644.773333pt;}
.y94{bottom:645.096000pt;}
.y41{bottom:645.268000pt;}
.y95{bottom:649.917333pt;}
.y1d1{bottom:651.134667pt;}
.y1c0{bottom:655.101333pt;}
.y3f{bottom:656.386667pt;}
.y67{bottom:660.714667pt;}
.y93{bottom:661.036000pt;}
.y1d0{bottom:663.754667pt;}
.y10{bottom:668.196000pt;}
.y1bf{bottom:671.041333pt;}
.y3e{bottom:672.326667pt;}
.y1cf{bottom:676.373333pt;}
.y66{bottom:676.654667pt;}
.yf{bottom:676.958667pt;}
.y92{bottom:676.976000pt;}
.y1be{bottom:686.982667pt;}
.y3d{bottom:688.266667pt;}
.y1ce{bottom:688.993333pt;}
.y65{bottom:692.594667pt;}
.y91{bottom:692.916000pt;}
.ye{bottom:695.910667pt;}
.y1cd{bottom:701.612000pt;}
.y1bd{bottom:702.922667pt;}
.y3c{bottom:704.206667pt;}
.y64{bottom:708.534667pt;}
.y90{bottom:708.856000pt;}
.yd{bottom:710.521333pt;}
.y1cc{bottom:714.232000pt;}
.y1bc{bottom:718.862667pt;}
.y3b{bottom:720.148000pt;}
.y63{bottom:724.474667pt;}
.y8f{bottom:724.797333pt;}
.yc{bottom:725.133333pt;}
.y1cb{bottom:726.850667pt;}
.y1bb{bottom:734.802667pt;}
.y3a{bottom:736.088000pt;}
.y1ca{bottom:739.470667pt;}
.yb{bottom:739.745333pt;}
.y62{bottom:740.414667pt;}
.y8d{bottom:748.441333pt;}
.ya{bottom:750.017333pt;}
.y1ba{bottom:750.742667pt;}
.y39{bottom:752.028000pt;}
.y1c9{bottom:752.089333pt;}
.y9{bottom:754.357333pt;}
.y61{bottom:756.356000pt;}
.y8e{bottom:757.554667pt;}
.y8{bottom:764.629333pt;}
.y8c{bottom:766.546667pt;}
.y1b9{bottom:766.682667pt;}
.y1c8{bottom:767.680000pt;}
.y38{bottom:767.968000pt;}
.yee{bottom:770.966667pt;}
.y60{bottom:772.296000pt;}
.ybd{bottom:782.624000pt;}
.y7{bottom:783.581333pt;}
.y37{bottom:783.908000pt;}
.yed{bottom:786.908000pt;}
.y5f{bottom:788.236000pt;}
.y8b{bottom:789.028000pt;}
.y1c7{bottom:791.390667pt;}
.ybc{bottom:798.564000pt;}
.y6{bottom:802.333333pt;}
.yec{bottom:802.848000pt;}
.y8a{bottom:804.969333pt;}
.y36{bottom:807.620000pt;}
.y5e{bottom:810.153333pt;}
.ybb{bottom:814.504000pt;}
.yeb{bottom:818.788000pt;}
.y89{bottom:820.909333pt;}
.y5{bottom:820.930667pt;}
.y1c6{bottom:822.274667pt;}
.y114{bottom:824.765333pt;}
.yba{bottom:830.444000pt;}
.y35{bottom:838.214667pt;}
.y13f{bottom:839.212000pt;}
.y4{bottom:839.528000pt;}
.yea{bottom:840.705333pt;}
.y88{bottom:842.826667pt;}
.y1c5{bottom:844.857333pt;}
.yb9{bottom:846.384000pt;}
.y34{bottom:854.154667pt;}
.y3{bottom:858.124000pt;}
.y1c4{bottom:859.469333pt;}
.yb8{bottom:862.324000pt;}
.y33{bottom:870.096000pt;}
.y1c3{bottom:874.080000pt;}
.yb7{bottom:878.265333pt;}
.y32{bottom:886.036000pt;}
.y1c2{bottom:888.692000pt;}
.y2{bottom:891.120000pt;}
.yb6{bottom:894.205333pt;}
.y31{bottom:901.976000pt;}
.y1c1{bottom:903.304000pt;}
.y1{bottom:915.694667pt;}
.y30{bottom:917.916000pt;}
.h1e{height:2.975497pt;}
.h2{height:19.686098pt;}
.h23{height:22.238266pt;}
.h7{height:22.598852pt;}
.h26{height:26.026076pt;}
.h27{height:26.026078pt;}
.h2b{height:26.173877pt;}
.h5{height:26.608385pt;}
.hd{height:26.685961pt;}
.h43{height:27.757202pt;}
.h1d{height:27.810805pt;}
.h41{height:29.244954pt;}
.h42{height:29.372475pt;}
.h2a{height:30.536189pt;}
.h37{height:31.214400pt;}
.h6{height:32.805069pt;}
.h24{height:32.900710pt;}
.h40{height:33.044173pt;}
.h22{height:33.357399pt;}
.h33{height:35.115903pt;}
.he{height:35.435213pt;}
.h2e{height:35.918494pt;}
.h3b{height:36.127844pt;}
.hc{height:36.290431pt;}
.h35{height:36.416800pt;}
.h9{height:36.556100pt;}
.h44{height:38.094071pt;}
.hb{height:38.096982pt;}
.h3f{height:39.018000pt;}
.h28{height:39.039114pt;}
.h2c{height:39.260816pt;}
.h8{height:39.372195pt;}
.h30{height:40.968553pt;}
.h36{height:41.619200pt;}
.h39{height:42.149151pt;}
.h2d{height:44.619057pt;}
.h3d{height:45.521000pt;}
.ha{height:45.971294pt;}
.hf{height:45.976627pt;}
.h31{height:46.821204pt;}
.h13{height:47.096138pt;}
.h11{height:47.101471pt;}
.h3a{height:48.170458pt;}
.h12{height:49.546163pt;}
.h1c{height:49.752138pt;}
.h3e{height:52.024000pt;}
.h32{height:52.068429pt;}
.h4{height:57.788913pt;}
.h3{height:57.794246pt;}
.h1{height:62.995670pt;}
.h18{height:72.263764pt;}
.h17{height:72.524100pt;}
.h10{height:72.529434pt;}
.h14{height:76.993434pt;}
.h1f{height:77.956830pt;}
.h15{height:82.966316pt;}
.h19{height:108.711764pt;}
.h1b{height:110.518316pt;}
.h1a{height:113.175764pt;}
.h16{height:118.939649pt;}
.h20{height:123.108830pt;}
.h29{height:263.319955pt;}
.h25{height:271.865728pt;}
.h21{height:274.913280pt;}
.h2f{height:340.197120pt;}
.h3c{height:378.000000pt;}
.h34{height:403.200000pt;}
.h38{height:427.498539pt;}
.h0{height:1056.000000pt;}
.w4{width:453.596160pt;}
.w5{width:504.000000pt;}
.w1{width:504.007680pt;}
.w2{width:504.009944pt;}
.w3{width:504.012956pt;}
.w6{width:504.019657pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa1{left:8.962246pt;}
.x81{left:10.424701pt;}
.x7d{left:13.224797pt;}
.x7f{left:15.096249pt;}
.x82{left:17.211026pt;}
.xd5{left:19.106719pt;}
.x80{left:20.186463pt;}
.xb7{left:21.504179pt;}
.x96{left:23.334156pt;}
.x9e{left:24.261468pt;}
.x8e{left:25.951365pt;}
.xb6{left:27.717993pt;}
.x7c{left:39.215275pt;}
.x7e{left:42.974573pt;}
.xd6{left:44.057371pt;}
.xc1{left:44.964063pt;}
.x94{left:49.327982pt;}
.x9f{left:55.111198pt;}
.xd2{left:63.043571pt;}
.xd3{left:64.249523pt;}
.x97{left:67.832716pt;}
.xc6{left:69.844389pt;}
.x9b{left:76.391890pt;}
.xbf{left:77.637358pt;}
.x95{left:79.277339pt;}
.x93{left:80.630153pt;}
.x9a{left:83.628301pt;}
.x98{left:84.591632pt;}
.xb5{left:87.092174pt;}
.xc2{left:94.080000pt;}
.x9d{left:101.946755pt;}
.x92{left:107.986113pt;}
.x9c{left:111.178660pt;}
.x3b{left:131.638667pt;}
.x5{left:135.330667pt;}
.x2{left:139.024000pt;}
.x8d{left:150.717421pt;}
.x4{left:154.353333pt;}
.x1{left:156.000000pt;}
.x68{left:157.354667pt;}
.x33{left:160.073333pt;}
.x3{left:161.270667pt;}
.x8{left:169.280000pt;}
.xd7{left:172.604000pt;}
.xba{left:174.949333pt;}
.x69{left:176.638667pt;}
.xd4{left:179.786938pt;}
.xb4{left:181.201333pt;}
.x5e{left:183.813333pt;}
.x84{left:184.728119pt;}
.xc0{left:186.954687pt;}
.x83{left:190.880556pt;}
.x22{left:192.156000pt;}
.xce{left:193.880000pt;}
.x34{left:198.144000pt;}
.x35{left:199.581333pt;}
.x99{left:202.076724pt;}
.x85{left:203.552317pt;}
.x39{left:205.101333pt;}
.xcf{left:207.768000pt;}
.x5f{left:208.858667pt;}
.xbb{left:209.758667pt;}
.x23{left:212.689333pt;}
.x57{left:214.646667pt;}
.x2f{left:216.001333pt;}
.x1c{left:217.738667pt;}
.x51{left:222.520000pt;}
.x4b{left:224.596000pt;}
.x61{left:228.702667pt;}
.x4f{left:230.710667pt;}
.xc3{left:232.402667pt;}
.x7b{left:234.040000pt;}
.x3a{left:235.362667pt;}
.x1d{left:236.524000pt;}
.x52{left:238.008000pt;}
.xbc{left:239.394667pt;}
.x67{left:243.436000pt;}
.x12{left:244.757333pt;}
.xaf{left:246.744000pt;}
.x4c{left:249.566667pt;}
.x56{left:251.865333pt;}
.x6a{left:253.396000pt;}
.x86{left:257.586863pt;}
.x62{left:259.024000pt;}
.xa2{left:262.153333pt;}
.x91{left:263.451505pt;}
.xaa{left:265.062667pt;}
.x63{left:265.994667pt;}
.x45{left:267.748000pt;}
.x90{left:269.382158pt;}
.x13{left:270.401333pt;}
.x36{left:273.824000pt;}
.x3e{left:274.724000pt;}
.xb0{left:278.001333pt;}
.xf{left:283.304000pt;}
.xc7{left:287.158667pt;}
.x8b{left:290.374225pt;}
.x60{left:292.986667pt;}
.x3f{left:303.017333pt;}
.x70{left:305.449333pt;}
.x46{left:307.022667pt;}
.x74{left:308.917333pt;}
.x10{left:309.989333pt;}
.xb1{left:311.642667pt;}
.xa0{left:313.899918pt;}
.x6b{left:315.666667pt;}
.xa7{left:320.782667pt;}
.xca{left:322.482667pt;}
.x75{left:323.988000pt;}
.x77{left:325.448000pt;}
.xbd{left:327.436000pt;}
.x71{left:328.966667pt;}
.x14{left:329.970667pt;}
.x58{left:331.284000pt;}
.x15{left:335.482667pt;}
.x40{left:337.413333pt;}
.x47{left:340.600000pt;}
.xa4{left:341.793333pt;}
.x59{left:344.226667pt;}
.xc8{left:345.498667pt;}
.x30{left:349.369333pt;}
.xc9{left:353.132000pt;}
.x26{left:354.132000pt;}
.x1f{left:357.478667pt;}
.xcc{left:358.876000pt;}
.x9{left:363.561333pt;}
.x2d{left:365.134667pt;}
.x5c{left:367.252000pt;}
.x54{left:369.416000pt;}
.x48{left:371.388000pt;}
.x5d{left:374.261333pt;}
.x50{left:378.346667pt;}
.xc5{left:382.208750pt;}
.x6c{left:386.096000pt;}
.xbe{left:387.382667pt;}
.x31{left:388.410667pt;}
.xa{left:389.322667pt;}
.xcd{left:390.697333pt;}
.x72{left:391.661333pt;}
.xc4{left:393.204000pt;}
.x20{left:394.097333pt;}
.x27{left:396.146667pt;}
.x76{left:397.900000pt;}
.x43{left:400.997333pt;}
.x41{left:404.918667pt;}
.x28{left:408.978667pt;}
.x73{left:409.892000pt;}
.x2e{left:411.602667pt;}
.x64{left:414.477333pt;}
.x55{left:415.522667pt;}
.x53{left:417.193333pt;}
.x5a{left:420.157333pt;}
.x87{left:429.056914pt;}
.x8a{left:434.607368pt;}
.x88{left:439.601820pt;}
.x8f{left:440.762125pt;}
.x89{left:442.916661pt;}
.xb{left:444.238667pt;}
.x24{left:448.125333pt;}
.x5b{left:450.442667pt;}
.x78{left:453.586667pt;}
.x21{left:455.121333pt;}
.x8c{left:457.117333pt;}
.x6d{left:459.558667pt;}
.x2b{left:460.785333pt;}
.x32{left:463.084000pt;}
.x6{left:468.413333pt;}
.x65{left:469.333333pt;}
.x42{left:475.212000pt;}
.xd8{left:478.392000pt;}
.xac{left:480.993333pt;}
.x6e{left:482.578667pt;}
.xad{left:487.741333pt;}
.x49{left:495.221333pt;}
.xa8{left:497.328000pt;}
.x2c{left:500.420000pt;}
.xae{left:504.177333pt;}
.xa9{left:507.264000pt;}
.x18{left:511.481333pt;}
.xb8{left:516.105333pt;}
.x11{left:517.276000pt;}
.x7{left:527.017333pt;}
.x3c{left:532.700000pt;}
.xc{left:534.830667pt;}
.x4a{left:544.890667pt;}
.xb2{left:546.193333pt;}
.xb9{left:551.189333pt;}
.x3d{left:552.265333pt;}
.x19{left:554.433333pt;}
.x25{left:558.290667pt;}
.x6f{left:563.532000pt;}
.x79{left:565.252000pt;}
.x16{left:573.821333pt;}
.xd{left:577.761333pt;}
.x29{left:580.750667pt;}
.x1a{left:582.702667pt;}
.x66{left:584.074667pt;}
.x17{left:585.278667pt;}
.xd9{left:587.240000pt;}
.xa5{left:589.876000pt;}
.x4d{left:592.332000pt;}
.x2a{left:594.220000pt;}
.xe{left:595.220000pt;}
.xa6{left:597.314667pt;}
.x37{left:602.870667pt;}
.xa3{left:608.344000pt;}
.xb3{left:610.801333pt;}
.xd0{left:611.793333pt;}
.x7a{left:612.730667pt;}
.xcb{left:628.386667pt;}
.xab{left:632.360000pt;}
.x4e{left:637.076000pt;}
.x1b{left:642.204000pt;}
.x44{left:645.401333pt;}
.xd1{left:649.458667pt;}
.x38{left:653.846667pt;}
.x1e{left:658.280000pt;}
}




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