
    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_a442794a8b1c3caa24b6a82e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.154000;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_e4c3e66c71371a0efa453bb5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_583f731db487cb6d85cce87d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.722000;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_b688327b18f3cea4fc3be36e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.954000;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_e89f5c42df9e358685d66534.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.383000;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_ba3afa8f87e158cb474381b4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.392000;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_6ecb47dc2c07d70d04131007.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.929000;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_467370e2301668591fdc7e39.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a274dc88a2a5e0752eae7400.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938000;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_930ce258845370750cd547dc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.972000;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_d3710da1e444f4b71809b258.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.726000;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_a463463e0093e4c39e784753.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.969000;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_f0d6e984f418a47c542fda06.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.509000;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_533ae0e6e79246c8f6c3b59e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.964000;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_bd968dc962c3b6b4f94b6d1e.woff2')format("woff");}.fff{font-family:fff;line-height:0.052000;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_26163cc7b1c4dd59bc9c6166.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.050000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_8ac6a7158804d5829f0719cd.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.454000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_7ca5501fdfe5546c3b7460c8.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_7d58f0a6192241682a25ce89.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_bcf12f2e01eed30afcf4d7ff.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.998000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_c143a8f674ea45c162f14ab0.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.200000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_ac350f4d312e1a5ef577b1f1.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_cdadb6c6b553b9449af70b2c.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.927000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_8615118b5cb9dfa7246bd01a.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.674000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_b7c24e683188d23b407a7804.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.106000;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:ff1a;src:url('chunks/assets/font_835e93c0710fd3b62568d62f.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.542000;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:ff1b;src:url('chunks/assets/font_77ad44f08936cb5a36300b5e.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.714000;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:ff1c;src:url('chunks/assets/font_510b66c8a9adc306c2ea6e1b.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.727000;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:ff1d;src:url('chunks/assets/font_2b86553afc08e7497db2697b.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.748000;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:ff1e;src:url('chunks/assets/font_45fd90af2ca1f46028aed4eb.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.112000;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:ff1f;src:url('chunks/assets/font_cfd1edde7b71a673a7b2170b.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.728000;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:ff20;src:url('chunks/assets/font_e13849b3f24577250cb6859b.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.073000;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:ff21;src:url('chunks/assets/font_4a82180a6b1559b185398835.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_a09f6c9fe23c8a9533fe7930.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.941000;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:ff23;src:url('chunks/assets/font_ab5ea07addefe9286f3133e3.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.065000;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:ff24;src:url('chunks/assets/font_816fb715b643f99bb2030738.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.485000;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v9{vertical-align:-51.366514px;}
.va{vertical-align:-38.442384px;}
.v7{vertical-align:-14.964048px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:5.102336px;}
.v4{vertical-align:12.588126px;}
.vc{vertical-align:14.966362px;}
.v2{vertical-align:17.008107px;}
.v1{vertical-align:21.769986px;}
.v5{vertical-align:24.831550px;}
.vb{vertical-align:30.613762px;}
.v3{vertical-align:38.435919px;}
.v6{vertical-align:41.499417px;}
.v8{vertical-align:51.369465px;}
.ls3{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.000284px;}
.ls29{letter-spacing:0.004800px;}
.ls4{letter-spacing:0.012000px;}
.ls17{letter-spacing:0.030000px;}
.ls37{letter-spacing:0.033600px;}
.ls26{letter-spacing:0.038400px;}
.ls9{letter-spacing:0.066001px;}
.ls3b{letter-spacing:0.081599px;}
.lsb{letter-spacing:0.099990px;}
.ls23{letter-spacing:0.114001px;}
.ls28{letter-spacing:0.115199px;}
.ls34{letter-spacing:0.153598px;}
.lsa{letter-spacing:0.168002px;}
.ls5{letter-spacing:0.174002px;}
.ls3a{letter-spacing:0.191998px;}
.lsc{letter-spacing:0.208200px;}
.ls15{letter-spacing:0.215040px;}
.ls18{letter-spacing:0.215138px;}
.ls1c{letter-spacing:0.216274px;}
.ls25{letter-spacing:0.225597px;}
.ls8{letter-spacing:0.354004px;}
.lsd{letter-spacing:2.841212px;}
.ls16{letter-spacing:2.841812px;}
.ls2c{letter-spacing:2.867794px;}
.ls2e{letter-spacing:2.868394px;}
.ls12{letter-spacing:2.941884px;}
.ls2a{letter-spacing:3.197314px;}
.lse{letter-spacing:3.219686px;}
.ls1d{letter-spacing:3.598862px;}
.lsf{letter-spacing:3.939662px;}
.ls11{letter-spacing:5.778058px;}
.ls21{letter-spacing:7.080071px;}
.ls0{letter-spacing:10.243072px;}
.ls2{letter-spacing:10.550268px;}
.ls39{letter-spacing:10.579068px;}
.ls6{letter-spacing:13.110131px;}
.ls33{letter-spacing:13.300634px;}
.ls10{letter-spacing:13.302133px;}
.ls1a{letter-spacing:13.326133px;}
.ls27{letter-spacing:13.382233px;}
.ls7{letter-spacing:13.452135px;}
.ls31{letter-spacing:13.459032px;}
.ls19{letter-spacing:16.447412px;}
.ls1b{letter-spacing:16.485686px;}
.ls14{letter-spacing:16.728167px;}
.ls1e{letter-spacing:19.509212px;}
.ls13{letter-spacing:19.758000px;}
.ls1{letter-spacing:21.124536px;}
.ls20{letter-spacing:60.756608px;}
.ls1f{letter-spacing:76.938769px;}
.ls32{letter-spacing:358.560318px;}
.ls30{letter-spacing:363.293059px;}
.ls2b{letter-spacing:365.840250px;}
.ls2d{letter-spacing:366.761231px;}
.ls2f{letter-spacing:368.258800px;}
.ls36{letter-spacing:407.514906px;}
.ls35{letter-spacing:422.020325px;}
.ls24{letter-spacing:735.793358px;}
.ls22{letter-spacing:936.795368px;}
.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;}
}
.ws87{word-spacing:-735.853358px;}
.wse2{word-spacing:-393.057487px;}
.wsb3{word-spacing:-13.507031px;}
.ws7b{word-spacing:-13.362134px;}
.ws20{word-spacing:-10.598268px;}
.wsef{word-spacing:-0.071999px;}
.ws3d{word-spacing:-0.060001px;}
.ws7{word-spacing:-0.054000px;}
.wse{word-spacing:-0.047999px;}
.ws85{word-spacing:-0.035999px;}
.wsc1{word-spacing:-0.031995px;}
.ws3a{word-spacing:0.000000px;}
.ws128{word-spacing:9.691079px;}
.wsff{word-spacing:9.710279px;}
.ws33{word-spacing:9.715079px;}
.ws109{word-spacing:9.734278px;}
.ws2a{word-spacing:9.739078px;}
.ws125{word-spacing:9.777478px;}
.ws34{word-spacing:9.806277px;}
.wsdd{word-spacing:9.811077px;}
.ws11f{word-spacing:9.815877px;}
.ws36{word-spacing:9.820677px;}
.ws22{word-spacing:9.825477px;}
.ws2e{word-spacing:9.844677px;}
.ws2d{word-spacing:9.849477px;}
.ws24{word-spacing:9.854277px;}
.ws122{word-spacing:9.859077px;}
.ws105{word-spacing:9.863877px;}
.ws28{word-spacing:9.873477px;}
.wsfd{word-spacing:9.878277px;}
.ws2c{word-spacing:9.883076px;}
.ws10a{word-spacing:9.887876px;}
.wsfe{word-spacing:9.892676px;}
.ws124{word-spacing:9.897476px;}
.ws65{word-spacing:9.902276px;}
.ws35{word-spacing:9.916676px;}
.ws30{word-spacing:9.921476px;}
.ws39{word-spacing:9.926276px;}
.wsf6{word-spacing:9.935876px;}
.ws11d{word-spacing:9.940676px;}
.ws111{word-spacing:9.950276px;}
.ws123{word-spacing:9.964675px;}
.ws120{word-spacing:9.974275px;}
.ws32{word-spacing:9.979075px;}
.ws11a{word-spacing:9.988675px;}
.wsd{word-spacing:10.007875px;}
.ws126{word-spacing:10.012675px;}
.wsf9{word-spacing:10.027075px;}
.ws38{word-spacing:10.036675px;}
.ws114{word-spacing:10.041474px;}
.ws23{word-spacing:10.046274px;}
.ws102{word-spacing:10.051074px;}
.ws121{word-spacing:10.065474px;}
.ws11c{word-spacing:10.075074px;}
.ws27{word-spacing:10.079874px;}
.ws129{word-spacing:10.084674px;}
.ws113{word-spacing:10.089474px;}
.ws107{word-spacing:10.094274px;}
.wsf3{word-spacing:10.099074px;}
.ws26{word-spacing:10.113474px;}
.ws1f{word-spacing:10.118274px;}
.ws25{word-spacing:10.123073px;}
.ws10b{word-spacing:10.127873px;}
.ws104{word-spacing:10.132673px;}
.ws9a{word-spacing:10.137473px;}
.ws106{word-spacing:10.161473px;}
.ws101{word-spacing:10.166273px;}
.ws117{word-spacing:10.171073px;}
.ws21{word-spacing:10.180673px;}
.ws9b{word-spacing:10.190273px;}
.wsfa{word-spacing:10.195073px;}
.ws10e{word-spacing:10.199873px;}
.ws118{word-spacing:10.204672px;}
.ws37{word-spacing:10.209472px;}
.ws29{word-spacing:10.214272px;}
.ws119{word-spacing:10.228672px;}
.ws97{word-spacing:10.233472px;}
.ws112{word-spacing:10.238272px;}
.ws108{word-spacing:10.243072px;}
.ws11b{word-spacing:10.262272px;}
.wsf5{word-spacing:10.267072px;}
.wsfc{word-spacing:10.271872px;}
.wsf8{word-spacing:10.276672px;}
.ws0{word-spacing:10.281471px;}
.ws127{word-spacing:10.286271px;}
.ws100{word-spacing:10.300671px;}
.wsf4{word-spacing:10.310271px;}
.ws116{word-spacing:10.315071px;}
.ws10c{word-spacing:10.329471px;}
.ws115{word-spacing:10.343871px;}
.ws98{word-spacing:10.353471px;}
.ws11e{word-spacing:10.358271px;}
.wsf7{word-spacing:10.363070px;}
.ws12a{word-spacing:10.377470px;}
.ws10f{word-spacing:10.387070px;}
.wsde{word-spacing:10.420670px;}
.ws2f{word-spacing:10.425470px;}
.ws31{word-spacing:10.444669px;}
.ws2b{word-spacing:10.463869px;}
.ws110{word-spacing:10.468669px;}
.ws10d{word-spacing:10.478269px;}
.wsc{word-spacing:10.497469px;}
.ws99{word-spacing:10.531068px;}
.wsfb{word-spacing:10.535868px;}
.wsb{word-spacing:11.502000px;}
.ws8{word-spacing:11.734200px;}
.ws6{word-spacing:11.809800px;}
.ws9{word-spacing:11.815200px;}
.wsa{word-spacing:11.896200px;}
.ws11{word-spacing:11.935800px;}
.ws15{word-spacing:12.186600px;}
.ws1c{word-spacing:12.277800px;}
.ws1b{word-spacing:12.294900px;}
.ws1a{word-spacing:12.340500px;}
.ws19{word-spacing:12.357600px;}
.wsf{word-spacing:12.431700px;}
.ws10{word-spacing:12.448800px;}
.ws17{word-spacing:12.517200px;}
.ws12{word-spacing:12.528600px;}
.ws96{word-spacing:12.576126px;}
.ws14{word-spacing:12.614100px;}
.ws1e{word-spacing:12.636900px;}
.wsbc{word-spacing:12.642126px;}
.ws16{word-spacing:12.671100px;}
.wsd8{word-spacing:12.695841px;}
.ws1d{word-spacing:12.705300px;}
.wsb1{word-spacing:12.753441px;}
.ws5d{word-spacing:12.762128px;}
.wse0{word-spacing:12.767840px;}
.wse1{word-spacing:12.777440px;}
.ws18{word-spacing:12.779400px;}
.ws13{word-spacing:12.802200px;}
.wsaf{word-spacing:12.806240px;}
.wsa2{word-spacing:12.830240px;}
.ws6d{word-spacing:12.834128px;}
.wsc2{word-spacing:12.839840px;}
.wsc5{word-spacing:12.849439px;}
.wsc3{word-spacing:12.854239px;}
.wsdf{word-spacing:12.868639px;}
.ws94{word-spacing:12.888129px;}
.wsd0{word-spacing:12.897439px;}
.ws8d{word-spacing:12.900129px;}
.ws4e{word-spacing:12.906129px;}
.wsbe{word-spacing:12.911839px;}
.wsdb{word-spacing:12.916639px;}
.wse8{word-spacing:12.926238px;}
.wsac{word-spacing:12.936129px;}
.wseb{word-spacing:12.948129px;}
.wsc0{word-spacing:12.950238px;}
.wse6{word-spacing:12.955038px;}
.ws5c{word-spacing:12.960130px;}
.wse9{word-spacing:12.964638px;}
.ws91{word-spacing:12.966130px;}
.wsb0{word-spacing:12.969438px;}
.ws75{word-spacing:12.972130px;}
.ws80{word-spacing:12.978130px;}
.ws52{word-spacing:12.984130px;}
.ws74{word-spacing:12.990130px;}
.ws53{word-spacing:12.996130px;}
.wsa0{word-spacing:13.003037px;}
.ws3b{word-spacing:13.008130px;}
.ws5b{word-spacing:13.014130px;}
.wsae{word-spacing:13.020130px;}
.ws44{word-spacing:13.026130px;}
.wsb2{word-spacing:13.027037px;}
.wsbb{word-spacing:13.032130px;}
.wsda{word-spacing:13.036637px;}
.ws73{word-spacing:13.038130px;}
.ws54{word-spacing:13.044130px;}
.ws40{word-spacing:13.050130px;}
.ws92{word-spacing:13.056131px;}
.ws6e{word-spacing:13.062131px;}
.wsa1{word-spacing:13.065437px;}
.ws41{word-spacing:13.068131px;}
.ws4c{word-spacing:13.074131px;}
.ws58{word-spacing:13.080131px;}
.ws5e{word-spacing:13.086131px;}
.ws84{word-spacing:13.092131px;}
.wsec{word-spacing:13.098131px;}
.ws9f{word-spacing:13.099036px;}
.ws4d{word-spacing:13.104131px;}
.ws3c{word-spacing:13.110131px;}
.ws45{word-spacing:13.116131px;}
.ws90{word-spacing:13.122131px;}
.wsa7{word-spacing:13.127836px;}
.ws3e{word-spacing:13.128131px;}
.ws56{word-spacing:13.134131px;}
.ws93{word-spacing:13.146131px;}
.ws4a{word-spacing:13.152132px;}
.wsa9{word-spacing:13.156636px;}
.ws63{word-spacing:13.158132px;}
.ws5a{word-spacing:13.164132px;}
.ws4b{word-spacing:13.170132px;}
.ws62{word-spacing:13.176132px;}
.wsaa{word-spacing:13.180635px;}
.ws49{word-spacing:13.182132px;}
.wscf{word-spacing:13.185435px;}
.ws8c{word-spacing:13.188132px;}
.ws83{word-spacing:13.194132px;}
.wsa8{word-spacing:13.195035px;}
.wsed{word-spacing:13.200132px;}
.ws6a{word-spacing:13.206132px;}
.ws7d{word-spacing:13.212132px;}
.ws47{word-spacing:13.218132px;}
.wsa6{word-spacing:13.219035px;}
.wsd3{word-spacing:13.223835px;}
.ws50{word-spacing:13.224132px;}
.ws3f{word-spacing:13.230132px;}
.ws79{word-spacing:13.236132px;}
.ws7a{word-spacing:13.242132px;}
.ws46{word-spacing:13.248132px;}
.wsd4{word-spacing:13.252634px;}
.wsa5{word-spacing:13.257434px;}
.ws5f{word-spacing:13.260133px;}
.ws76{word-spacing:13.266133px;}
.ws72{word-spacing:13.272133px;}
.ws6b{word-spacing:13.290133px;}
.ws77{word-spacing:13.296133px;}
.wsdc{word-spacing:13.300634px;}
.ws67{word-spacing:13.302133px;}
.ws66{word-spacing:13.308133px;}
.ws8a{word-spacing:13.314133px;}
.wsbf{word-spacing:13.329433px;}
.ws8f{word-spacing:13.338133px;}
.ws4f{word-spacing:13.344133px;}
.wsf1{word-spacing:13.356134px;}
.wsb9{word-spacing:13.362134px;}
.wsc4{word-spacing:13.367833px;}
.ws43{word-spacing:13.368134px;}
.ws6f{word-spacing:13.374134px;}
.ws7f{word-spacing:13.380134px;}
.ws9c{word-spacing:13.386134px;}
.ws82{word-spacing:13.392134px;}
.wsee{word-spacing:13.398134px;}
.ws51{word-spacing:13.410134px;}
.wsa4{word-spacing:13.411032px;}
.ws9d{word-spacing:13.416134px;}
.ws69{word-spacing:13.422134px;}
.ws60{word-spacing:13.428134px;}
.ws6c{word-spacing:13.434134px;}
.ws68{word-spacing:13.440134px;}
.ws64{word-spacing:13.446134px;}
.ws95{word-spacing:13.452135px;}
.ws61{word-spacing:13.470135px;}
.ws88{word-spacing:13.476135px;}
.wsea{word-spacing:13.482135px;}
.ws42{word-spacing:13.506135px;}
.ws57{word-spacing:13.512135px;}
.ws7e{word-spacing:13.518135px;}
.wsb4{word-spacing:13.526231px;}
.ws8e{word-spacing:13.530135px;}
.ws7c{word-spacing:13.548135px;}
.wsad{word-spacing:13.554136px;}
.ws9e{word-spacing:13.578136px;}
.ws48{word-spacing:13.584136px;}
.wsba{word-spacing:13.596136px;}
.ws81{word-spacing:13.602136px;}
.ws8b{word-spacing:13.608136px;}
.ws89{word-spacing:13.644136px;}
.wsbd{word-spacing:13.650136px;}
.ws59{word-spacing:13.656137px;}
.ws55{word-spacing:13.674137px;}
.ws78{word-spacing:15.400672px;}
.wsf0{word-spacing:15.523071px;}
.ws71{word-spacing:15.631070px;}
.ws70{word-spacing:15.731869px;}
.ws86{word-spacing:18.190775px;}
.ws5{word-spacing:26.076130px;}
.ws4{word-spacing:26.220131px;}
.ws2{word-spacing:26.376132px;}
.ws3{word-spacing:26.460132px;}
.ws1{word-spacing:26.568133px;}
.wsf2{word-spacing:59.821652px;}
.ws103{word-spacing:59.860052px;}
.wsb8{word-spacing:302.804215px;}
.wsb7{word-spacing:303.145011px;}
.wsb5{word-spacing:316.550731px;}
.wse3{word-spacing:320.112799px;}
.wsd6{word-spacing:358.243522px;}
.wsd5{word-spacing:358.248322px;}
.wscb{word-spacing:358.550718px;}
.wsca{word-spacing:358.891514px;}
.wsd1{word-spacing:384.777590px;}
.wsc9{word-spacing:385.046387px;}
.wsc8{word-spacing:385.387183px;}
.wsb6{word-spacing:395.591855px;}
.wsc6{word-spacing:397.967825px;}
.wsd2{word-spacing:411.273259px;}
.wsab{word-spacing:532.711741px;}
.wsa3{word-spacing:583.907901px;}
.wse4{word-spacing:669.529231px;}
.wse7{word-spacing:692.948138px;}
.wscd{word-spacing:747.086661px;}
.wse5{word-spacing:750.931413px;}
.wsd9{word-spacing:759.062512px;}
.wsd7{word-spacing:770.505569px;}
.wsce{word-spacing:828.488844px;}
.wscc{word-spacing:916.423745px;}
.wsc7{word-spacing:921.367683px;}
._11{margin-left:-735.763358px;}
._e{margin-left:-13.302133px;}
._a{margin-left:-10.550268px;}
._1{margin-left:-4.908025px;}
._b{margin-left:-2.798365px;}
._3{margin-left:-1.223985px;}
._7{width:1.037400px;}
._f{width:4.960774px;}
._4{width:9.403082px;}
._5{width:11.059062px;}
._c{width:12.494073px;}
._6{width:13.816800px;}
._26{width:14.820111px;}
._d{width:16.473463px;}
._10{width:20.337490px;}
._3b{width:21.719584px;}
._0{width:25.668128px;}
._2{width:27.336137px;}
._8{width:46.717816px;}
._20{width:302.852214px;}
._24{width:312.502491px;}
._31{width:320.160798px;}
._25{width:329.347883px;}
._2f{width:348.341246px;}
._1f{width:368.764990px;}
._23{width:369.974746px;}
._32{width:381.883226px;}
._22{width:395.299059px;}
._27{width:401.087786px;}
._1e{width:403.315129px;}
._21{width:418.770936px;}
._34{width:442.760865px;}
._28{width:458.778265px;}
._1a{width:482.581168px;}
._35{width:486.459519px;}
._2d{width:507.646454px;}
._14{width:508.947238px;}
._1c{width:519.492706px;}
._33{width:523.054262px;}
._18{width:532.452544px;}
._17{width:535.476506px;}
._2a{width:556.730641px;}
._2b{width:563.719353px;}
._15{width:569.839277px;}
._29{width:572.719241px;}
._38{width:580.912738px;}
._12{width:595.739753px;}
._16{width:608.896389px;}
._1d{width:621.611430px;}
._13{width:627.328158px;}
._30{width:641.449582px;}
._37{width:655.979000px;}
._36{width:708.888739px;}
._1b{width:716.794240px;}
._2e{width:725.822927px;}
._19{width:729.466082px;}
._2c{width:885.075336px;}
._39{width:1325.004237px;}
._3a{width:1676.503843px;}
._9{width:1703.037912px;}
.fc1{color:rgb(66,93,177);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:28.799400px;}
.fsa{font-size:31.995000px;}
.fs3{font-size:35.995200px;}
.fs9{font-size:35.998800px;}
.fs8{font-size:39.996000px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs7{font-size:60.000600px;}
.fs6{font-size:71.999400px;}
.fs4{font-size:95.999400px;}
.fs1{font-size:120.000600px;}
.y0{bottom:0.000000px;}
.y23{bottom:54.000000px;}
.y139{bottom:119.649619px;}
.ye2{bottom:124.488825px;}
.y9d{bottom:124.489455px;}
.y182{bottom:124.493415px;}
.yee{bottom:124.495530px;}
.yaf{bottom:124.496860px;}
.y1db{bottom:124.498116px;}
.y3e{bottom:124.503513px;}
.y1b3{bottom:125.077560px;}
.y153{bottom:125.679375px;}
.y107{bottom:126.785505px;}
.y215{bottom:135.294872px;}
.y6e{bottom:136.652025px;}
.y1da{bottom:138.785138px;}
.y24a{bottom:140.570081px;}
.y3d{bottom:141.000907px;}
.y138{bottom:142.865729px;}
.ye1{bottom:143.963519px;}
.y9c{bottom:143.964150px;}
.yed{bottom:143.970225px;}
.yae{bottom:143.971555px;}
.y1b2{bottom:144.552255px;}
.y152{bottom:145.238070px;}
.y106{bottom:146.260200px;}
.y181{bottom:147.709525px;}
.y214{bottom:149.581894px;}
.y249{bottom:154.857103px;}
.y6d{bottom:156.126720px;}
.y137{bottom:157.152750px;}
.y1d9{bottom:158.258494px;}
.ye0{bottom:163.522215px;}
.y9b{bottom:163.522846px;}
.yec{bottom:163.528920px;}
.yad{bottom:163.530250px;}
.y213{bottom:163.868915px;}
.y1b1{bottom:164.110950px;}
.y151{bottom:164.712765px;}
.y105{bottom:165.734895px;}
.y180{bottom:166.503690px;}
.y3c{bottom:166.512588px;}
.y1d8{bottom:172.460317px;}
.y248{bottom:174.330459px;}
.y6c{bottom:175.601415px;}
.yac{bottom:179.348420px;}
.ydf{bottom:182.996910px;}
.y9a{bottom:182.997540px;}
.yeb{bottom:183.003615px;}
.y3b{bottom:183.009982px;}
.y212{bottom:183.343472px;}
.yab{bottom:183.514598px;}
.y1b0{bottom:183.585645px;}
.y150{bottom:184.187460px;}
.y17f{bottom:185.212656px;}
.y104{bottom:185.293590px;}
.y247{bottom:188.617481px;}
.y1d7{bottom:192.018872px;}
.y6b{bottom:195.076110px;}
.y211{bottom:197.545294px;}
.yaa{bottom:199.502273px;}
.y3a{bottom:199.507376px;}
.yde{bottom:202.471604px;}
.y99{bottom:202.472235px;}
.yea{bottom:202.478310px;}
.y1af{bottom:203.060340px;}
.y14f{bottom:203.746155px;}
.ya9{bottom:203.754254px;}
.y17e{bottom:204.005621px;}
.y103{bottom:204.768285px;}
.y1d6{bottom:206.220695px;}
.y246{bottom:208.090837px;}
.y210{bottom:211.832316px;}
.y6a{bottom:214.634805px;}
.y39{bottom:216.004769px;}
.y22{bottom:218.471400px;}
.ydd{bottom:222.030300px;}
.y98{bottom:222.030931px;}
.ye9{bottom:222.037005px;}
.y245{bottom:222.292660px;}
.y1ae{bottom:222.619035px;}
.y17d{bottom:222.714587px;}
.y14e{bottom:223.220850px;}
.ya7{bottom:223.398450px;}
.y102{bottom:224.242980px;}
.y1d5{bottom:225.779250px;}
.ya8{bottom:230.031450px;}
.y20f{bottom:231.305672px;}
.y69{bottom:234.109500px;}
.y244{bottom:236.579681px;}
.y21{bottom:239.475900px;}
.y1d4{bottom:239.981073px;}
.ydc{bottom:241.504995px;}
.y97{bottom:241.505625px;}
.y17c{bottom:241.508752px;}
.ye8{bottom:241.511700px;}
.y38{bottom:241.516450px;}
.y1ad{bottom:242.093730px;}
.y14d{bottom:242.695545px;}
.y101{bottom:243.801675px;}
.y20e{bottom:245.592694px;}
.ya6{bottom:248.910150px;}
.y68{bottom:253.584195px;}
.y1d3{bottom:254.268094px;}
.y243{bottom:256.053038px;}
.y37{bottom:258.013844px;}
.y20d{bottom:259.794516px;}
.y17b{bottom:260.217718px;}
.y20{bottom:260.480400px;}
.ydb{bottom:260.979690px;}
.y96{bottom:260.980320px;}
.y1ac{bottom:261.568425px;}
.y14c{bottom:262.254240px;}
.y100{bottom:263.276370px;}
.ye7{bottom:267.023550px;}
.y242{bottom:270.340059px;}
.y67{bottom:273.142890px;}
.y1d2{bottom:273.741451px;}
.y17a{bottom:279.011883px;}
.y20c{bottom:279.353072px;}
.yda{bottom:280.454384px;}
.y95{bottom:280.455015px;}
.y1ab{bottom:281.127120px;}
.y1f{bottom:281.484900px;}
.y14b{bottom:281.728935px;}
.yff{bottom:282.751065px;}
.y36{bottom:283.525525px;}
.y1d1{bottom:288.028472px;}
.y241{bottom:289.813416px;}
.y66{bottom:292.617585px;}
.y20b{bottom:293.554894px;}
.y179{bottom:297.720850px;}
.yd9{bottom:300.013080px;}
.y94{bottom:300.013711px;}
.y35{bottom:300.022919px;}
.y1aa{bottom:300.601815px;}
.y14a{bottom:301.203630px;}
.yfe{bottom:302.225760px;}
.y1e{bottom:302.489400px;}
.y240{bottom:304.100437px;}
.y1d0{bottom:307.501829px;}
.y65{bottom:312.092280px;}
.ya5{bottom:312.094110px;}
.y20a{bottom:313.113450px;}
.ye6{bottom:315.494865px;}
.y178{bottom:316.515015px;}
.y34{bottom:316.520313px;}
.yd8{bottom:319.487775px;}
.y93{bottom:319.488405px;}
.y1a9{bottom:320.076510px;}
.y149{bottom:320.762325px;}
.yfd{bottom:321.784455px;}
.y1cf{bottom:321.788850px;}
.y1d{bottom:323.493900px;}
.y23f{bottom:323.573794px;}
.y209{bottom:327.315272px;}
.y64{bottom:331.650975px;}
.ya4{bottom:331.652805px;}
.y33{bottom:333.017707px;}
.ye5{bottom:334.969560px;}
.y177{bottom:335.223981px;}
.y23e{bottom:337.860815px;}
.yd7{bottom:338.962469px;}
.y92{bottom:338.963100px;}
.y1a8{bottom:339.551205px;}
.y148{bottom:340.237020px;}
.yfc{bottom:341.259150px;}
.y208{bottom:341.602294px;}
.y1ce{bottom:342.028200px;}
.y1c{bottom:344.498400px;}
.y32{bottom:349.515100px;}
.ya1{bottom:351.114975px;}
.y63{bottom:351.125670px;}
.ya3{bottom:351.127500px;}
.y23d{bottom:352.062638px;}
.y176{bottom:354.016946px;}
.ye4{bottom:354.528255px;}
.ya2{bottom:357.760500px;}
.yd6{bottom:358.521165px;}
.y91{bottom:358.521796px;}
.y1a7{bottom:359.109900px;}
.y147{bottom:359.711715px;}
.yfb{bottom:360.733845px;}
.y207{bottom:361.075650px;}
.y1b{bottom:365.502900px;}
.y31{bottom:366.012494px;}
.ya0{bottom:370.589669px;}
.y62{bottom:370.600365px;}
.y23c{bottom:371.535994px;}
.y175{bottom:372.725912px;}
.ye3{bottom:374.002950px;}
.y206{bottom:375.362672px;}
.yd5{bottom:377.995860px;}
.y90{bottom:377.996490px;}
.y1a6{bottom:378.584595px;}
.y146{bottom:379.186410px;}
.yfa{bottom:380.292540px;}
.y1cd{bottom:381.146010px;}
.y23b{bottom:385.823016px;}
.y1a{bottom:386.421900px;}
.y205{bottom:389.564494px;}
.y9f{bottom:390.148365px;}
.y61{bottom:390.159061px;}
.y174{bottom:391.518877px;}
.y30{bottom:391.524175px;}
.yd4{bottom:397.470554px;}
.y8f{bottom:397.471185px;}
.y1a5{bottom:398.059290px;}
.y145{bottom:398.745105px;}
.yf9{bottom:399.767235px;}
.y23a{bottom:400.110037px;}
.y1cc{bottom:400.620704px;}
.yf1{bottom:405.977119px;}
.y19{bottom:407.426400px;}
.y204{bottom:409.037851px;}
.y9e{bottom:409.623060px;}
.y60{bottom:409.633755px;}
.y173{bottom:410.227843px;}
.yd3{bottom:417.029250px;}
.y8e{bottom:417.029881px;}
.y2f{bottom:417.035856px;}
.y1a4{bottom:417.617985px;}
.y144{bottom:418.219800px;}
.yf8{bottom:419.241930px;}
.y239{bottom:419.583394px;}
.y1cb{bottom:420.179400px;}
.y203{bottom:423.324872px;}
.y18{bottom:428.430900px;}
.y172{bottom:429.022008px;}
.y5f{bottom:429.097755px;}
.yf0{bottom:429.278428px;}
.y238{bottom:433.870415px;}
.yd2{bottom:436.503945px;}
.y8d{bottom:436.504575px;}
.y1a3{bottom:437.092680px;}
.y202{bottom:437.611893px;}
.y143{bottom:437.694495px;}
.yf7{bottom:438.800625px;}
.y2e{bottom:442.547537px;}
.yef{bottom:443.480250px;}
.y1ca{bottom:445.691100px;}
.y237{bottom:448.072237px;}
.y5e{bottom:448.572449px;}
.y17{bottom:449.435400px;}
.y171{bottom:451.472528px;}
.yd1{bottom:455.978640px;}
.y8c{bottom:455.979270px;}
.y1a2{bottom:456.567375px;}
.y201{bottom:457.088025px;}
.y142{bottom:457.253190px;}
.yf6{bottom:458.275320px;}
.y236{bottom:467.545594px;}
.y2d{bottom:467.974020px;}
.y5d{bottom:468.131145px;}
.y16{bottom:470.439900px;}
.y200{bottom:471.289847px;}
.yd0{bottom:475.537335px;}
.y8b{bottom:475.537966px;}
.y1a1{bottom:476.126070px;}
.y141{bottom:476.727885px;}
.y170{bottom:477.239806px;}
.yf5{bottom:477.750015px;}
.y235{bottom:481.832615px;}
.y2c{bottom:484.471413px;}
.y1c9{bottom:484.807230px;}
.y5c{bottom:487.605840px;}
.y1ff{bottom:490.848403px;}
.y15{bottom:491.444400px;}
.ycf{bottom:495.012030px;}
.y8a{bottom:495.012661px;}
.y1a0{bottom:495.600765px;}
.y140{bottom:496.202580px;}
.yf4{bottom:497.224710px;}
.y2b{bottom:500.968807px;}
.y234{bottom:501.307172px;}
.y16f{bottom:502.921885px;}
.y1c8{bottom:504.281925px;}
.y1fe{bottom:505.050225px;}
.y5b{bottom:507.080534px;}
.y14{bottom:512.448900px;}
.yce{bottom:514.486725px;}
.y89{bottom:514.487355px;}
.y19f{bottom:515.075460px;}
.y233{bottom:515.594193px;}
.y13f{bottom:515.761275px;}
.yf3{bottom:516.783405px;}
.y1fd{bottom:519.337247px;}
.y1c7{bottom:523.840620px;}
.y2a{bottom:526.480488px;}
.y5a{bottom:526.639230px;}
.y16e{bottom:529.199156px;}
.y13{bottom:533.453400px;}
.ycd{bottom:533.961419px;}
.y88{bottom:533.962050px;}
.y19e{bottom:534.634155px;}
.y232{bottom:535.063050px;}
.y13e{bottom:535.235970px;}
.yf2{bottom:536.258100px;}
.y1fc{bottom:538.810603px;}
.y29{bottom:542.977882px;}
.y1c6{bottom:543.315315px;}
.y16d{bottom:543.486178px;}
.y59{bottom:546.113925px;}
.y231{bottom:549.350072px;}
.y1fb{bottom:553.097625px;}
.ycc{bottom:553.520115px;}
.y19d{bottom:554.108850px;}
.y12{bottom:554.457900px;}
.y13d{bottom:554.710665px;}
.y16c{bottom:557.688000px;}
.y87{bottom:559.473375px;}
.y28{bottom:559.475276px;}
.y1c5{bottom:562.790010px;}
.y230{bottom:563.551894px;}
.y58{bottom:565.588619px;}
.y1fa{bottom:567.299447px;}
.ycb{bottom:572.994810px;}
.y19c{bottom:573.583545px;}
.y13c{bottom:574.185360px;}
.y11{bottom:575.462400px;}
.y27{bottom:575.972670px;}
.y1c4{bottom:582.264704px;}
.y22f{bottom:583.110450px;}
.y121{bottom:584.215801px;}
.y57{bottom:585.147315px;}
.y86{bottom:586.516350px;}
.y1f9{bottom:586.858003px;}
.yca{bottom:592.469504px;}
.y26{bottom:592.470063px;}
.y19b{bottom:593.058240px;}
.y13b{bottom:593.744055px;}
.y10{bottom:596.466900px;}
.y22e{bottom:597.312272px;}
.y1f8{bottom:601.059825px;}
.y1c3{bottom:601.823400px;}
.y56{bottom:604.622010px;}
.y120{bottom:607.517109px;}
.y25{bottom:608.967457px;}
.y22d{bottom:611.599294px;}
.yc9{bottom:612.028200px;}
.y19a{bottom:612.616935px;}
.y13a{bottom:613.218750px;}
.y1f7{bottom:615.346847px;}
.yf{bottom:617.471400px;}
.y55{bottom:624.096704px;}
.y11f{bottom:626.226076px;}
.y1c2{bottom:627.335250px;}
.y22c{bottom:631.072650px;}
.y199{bottom:632.091630px;}
.y24{bottom:633.543150px;}
.y1f6{bottom:634.820203px;}
.yc8{bottom:637.540050px;}
.ye{bottom:638.475900px;}
.y54{bottom:643.655400px;}
.y11e{bottom:645.020241px;}
.y22b{bottom:645.359672px;}
.y1f5{bottom:649.107225px;}
.y85{bottom:651.564254px;}
.y198{bottom:651.566325px;}
.yd{bottom:659.480400px;}
.y22a{bottom:659.561494px;}
.y53{bottom:663.130095px;}
.y11d{bottom:663.729207px;}
.y1f4{bottom:668.580581px;}
.y84{bottom:671.122950px;}
.y197{bottom:671.125020px;}
.y16b{bottom:673.085719px;}
.y168{bottom:673.845502px;}
.y1c1{bottom:675.465870px;}
.y229{bottom:679.034851px;}
.yc{bottom:680.484900px;}
.yc7{bottom:681.839811px;}
.y11c{bottom:682.523372px;}
.y52{bottom:682.604790px;}
.y1f3{bottom:682.867603px;}
.y83{bottom:690.597645px;}
.y196{bottom:690.599715px;}
.y228{bottom:693.321872px;}
.y1c0{bottom:694.940565px;}
.y16a{bottom:696.301829px;}
.y167{bottom:700.888364px;}
.y11b{bottom:701.232338px;}
.yc6{bottom:701.398507px;}
.y51{bottom:702.079484px;}
.y1f2{bottom:702.340959px;}
.y227{bottom:707.608893px;}
.y82{bottom:710.072340px;}
.y195{bottom:710.074410px;}
.y169{bottom:710.588850px;}
.yb{bottom:713.480100px;}
.y1bf{bottom:714.415260px;}
.y1f1{bottom:716.542782px;}
.y166{bottom:718.831739px;}
.y11a{bottom:720.026503px;}
.yc5{bottom:720.873201px;}
.y50{bottom:721.638180px;}
.y226{bottom:727.083450px;}
.y81{bottom:729.631035px;}
.y194{bottom:729.633105px;}
.y1be{bottom:733.973955px;}
.y1f0{bottom:736.101337px;}
.y119{bottom:738.735469px;}
.yc4{bottom:740.347896px;}
.y4f{bottom:741.112875px;}
.y225{bottom:741.285272px;}
.y165{bottom:747.745378px;}
.y80{bottom:749.105730px;}
.y193{bottom:749.107800px;}
.y1ef{bottom:750.303160px;}
.y1bb{bottom:753.447240px;}
.y1bd{bottom:753.448650px;}
.y224{bottom:755.572294px;}
.y118{bottom:757.529634px;}
.yc3{bottom:759.906592px;}
.y1bc{bottom:760.081650px;}
.y4e{bottom:760.587569px;}
.y164{bottom:766.454344px;}
.y7f{bottom:768.580425px;}
.y192{bottom:768.582495px;}
.y1ee{bottom:769.861715px;}
.y223{bottom:775.046850px;}
.y117{bottom:776.238600px;}
.ya{bottom:776.495062px;}
.y126{bottom:779.298870px;}
.yc2{bottom:779.381286px;}
.y4d{bottom:780.146265px;}
.y1ba{bottom:781.935525px;}
.y1ed{bottom:784.063538px;}
.y163{bottom:785.248509px;}
.y7e{bottom:788.055119px;}
.y191{bottom:788.057190px;}
.y222{bottom:789.333872px;}
.y24d{bottom:789.335072px;}
.y116{bottom:795.031565px;}
.y1ec{bottom:798.350559px;}
.y125{bottom:798.773565px;}
.yc1{bottom:798.855981px;}
.y4c{bottom:799.620960px;}
.y1b9{bottom:801.410219px;}
.y221{bottom:803.620893px;}
.y24c{bottom:803.622093px;}
.y162{bottom:803.957475px;}
.y9{bottom:806.428688px;}
.y7d{bottom:807.613815px;}
.y190{bottom:807.615885px;}
.y115{bottom:813.740532px;}
.y1eb{bottom:817.823916px;}
.y124{bottom:818.248260px;}
.yc0{bottom:818.414677px;}
.y4b{bottom:819.095654px;}
.y1b8{bottom:820.968915px;}
.y8{bottom:821.480100px;}
.y161{bottom:822.751640px;}
.y220{bottom:823.094250px;}
.y7c{bottom:827.088510px;}
.y18f{bottom:827.090580px;}
.y1ea{bottom:832.110937px;}
.y114{bottom:832.533497px;}
.y21f{bottom:837.296072px;}
.y24b{bottom:837.297272px;}
.y123{bottom:837.806955px;}
.ybf{bottom:837.889371px;}
.y4a{bottom:838.654350px;}
.y1b7{bottom:840.443610px;}
.y160{bottom:841.460607px;}
.y7b{bottom:846.563204px;}
.y18e{bottom:846.565275px;}
.y6{bottom:848.437650px;}
.y113{bottom:851.242463px;}
.y21e{bottom:851.583094px;}
.y1e9{bottom:851.584294px;}
.y7{bottom:854.475450px;}
.y122{bottom:857.281650px;}
.ybe{bottom:857.364066px;}
.y49{bottom:858.129045px;}
.y1b6{bottom:859.918304px;}
.y15f{bottom:860.254772px;}
.y1e8{bottom:865.871315px;}
.y7a{bottom:866.121900px;}
.y18d{bottom:866.123970px;}
.y112{bottom:870.036628px;}
.y21d{bottom:871.057650px;}
.ybd{bottom:876.838761px;}
.y48{bottom:877.603740px;}
.y15e{bottom:878.963738px;}
.y1b5{bottom:879.477000px;}
.y1e7{bottom:880.073138px;}
.y21c{bottom:885.344672px;}
.y79{bottom:885.596595px;}
.y18c{bottom:885.598665px;}
.y5{bottom:885.937387px;}
.y111{bottom:888.745594px;}
.ybc{bottom:896.397457px;}
.y47{bottom:897.078434px;}
.y15d{bottom:897.757903px;}
.y1e6{bottom:899.546494px;}
.y21b{bottom:904.818028px;}
.y136{bottom:904.903294px;}
.y1b4{bottom:904.988700px;}
.y78{bottom:905.071290px;}
.y18b{bottom:905.073360px;}
.y110{bottom:907.538559px;}
.y1e5{bottom:913.833516px;}
.ybb{bottom:915.872151px;}
.y15c{bottom:916.466869px;}
.y46{bottom:916.637130px;}
.y21a{bottom:919.105050px;}
.y4{bottom:923.440575px;}
.y77{bottom:924.629985px;}
.y18a{bottom:924.632055px;}
.y10f{bottom:926.247525px;}
.y135{bottom:928.203403px;}
.y1e4{bottom:933.306872px;}
.y15b{bottom:935.261034px;}
.yba{bottom:935.346846px;}
.y45{bottom:936.111825px;}
.y219{bottom:938.578406px;}
.y189{bottom:941.640750px;}
.y76{bottom:944.104680px;}
.y186{bottom:944.106105px;}
.y188{bottom:944.106750px;}
.y10e{bottom:944.956491px;}
.y134{bottom:946.912369px;}
.y1e3{bottom:947.593894px;}
.y187{bottom:950.739900px;}
.y218{bottom:952.865428px;}
.y15a{bottom:953.970000px;}
.yb9{bottom:954.905542px;}
.y44{bottom:955.586519px;}
.y3{bottom:960.943762px;}
.y185{bottom:961.114800px;}
.y75{bottom:963.579375px;}
.y184{bottom:963.580800px;}
.y10d{bottom:963.749456px;}
.y133{bottom:965.706534px;}
.y1e2{bottom:967.067250px;}
.y183{bottom:970.299000px;}
.y159{bottom:972.764165px;}
.y43{bottom:975.145215px;}
.y1e1{bottom:981.354272px;}
.y10c{bottom:982.458423px;}
.y74{bottom:983.138070px;}
.yb6{bottom:983.735383px;}
.y132{bottom:984.415500px;}
.y217{bottom:986.540607px;}
.yb4{bottom:987.901362px;}
.yb8{bottom:987.901372px;}
.yb5{bottom:987.902100px;}
.y42{bottom:994.619910px;}
.y158{bottom:995.214685px;}
.y2{bottom:998.446950px;}
.yb7{bottom:1000.743000px;}
.y1e0{bottom:1000.827628px;}
.y10b{bottom:1001.252588px;}
.y73{bottom:1002.612765px;}
.y12d{bottom:1004.484909px;}
.y131{bottom:1006.185600px;}
.y130{bottom:1006.950641px;}
.y12c{bottom:1007.801040px;}
.y12f{bottom:1010.267400px;}
.y12e{bottom:1013.584050px;}
.y41{bottom:1014.094604px;}
.y1df{bottom:1015.114650px;}
.y157{bottom:1021.491956px;}
.y72{bottom:1022.087460px;}
.y10a{bottom:1023.788306px;}
.yb3{bottom:1027.530346px;}
.y1de{bottom:1029.316472px;}
.yb2{bottom:1031.697313px;}
.y40{bottom:1033.653300px;}
.y12b{bottom:1034.503106px;}
.y216{bottom:1034.588006px;}
.y156{bottom:1035.778978px;}
.y1{bottom:1035.949350px;}
.y71{bottom:1041.562154px;}
.y12a{bottom:1048.704929px;}
.y1dd{bottom:1048.789829px;}
.y109{bottom:1049.980379px;}
.y155{bottom:1049.980800px;}
.y154{bottom:1055.338200px;}
.yb1{bottom:1057.889400px;}
.y3f{bottom:1059.079950px;}
.yb0{bottom:1060.440600px;}
.y129{bottom:1060.950900px;}
.y70{bottom:1061.120850px;}
.y127{bottom:1062.991950px;}
.y1dc{bottom:1063.076850px;}
.y108{bottom:1064.267400px;}
.y128{bottom:1068.264150px;}
.y6f{bottom:1118.692500px;}
.h1b{height:2.400024px;}
.h1f{height:23.388345px;}
.h21{height:23.580315px;}
.h1a{height:25.631146px;}
.h4{height:26.528462px;}
.hd{height:28.477152px;}
.h28{height:28.557144px;}
.h25{height:31.967600px;}
.h7{height:34.943563px;}
.h1e{height:35.087561px;}
.h1d{height:35.375558px;}
.h8{height:36.575543px;}
.h22{height:38.401602px;}
.h3{height:39.798000px;}
.h26{height:40.477894px;}
.h19{height:41.323601px;}
.ha{height:42.720427px;}
.hb{height:42.763209px;}
.h27{height:42.840428px;}
.h1{height:44.591443px;}
.h29{height:44.609442px;}
.h1c{height:45.000450px;}
.h20{height:45.234635px;}
.he{height:45.745187px;}
.h11{height:45.746410px;}
.h15{height:48.806751px;}
.h24{height:50.053924px;}
.h23{height:51.666124px;}
.h14{height:52.548525px;}
.h6{height:52.953000px;}
.h9{height:53.063558px;}
.h18{height:53.769489px;}
.h13{height:59.386546px;}
.h10{height:59.728535px;}
.h17{height:61.668267px;}
.h12{height:62.411120px;}
.hf{height:62.753108px;}
.h16{height:65.474617px;}
.hc{height:66.887443px;}
.h5{height:69.215567px;}
.h2{height:86.520433px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:54.000000px;}
.xc{left:71.433000px;}
.x2c{left:214.642020px;}
.x2d{left:223.313250px;}
.x25{left:239.811000px;}
.x26{left:244.743300px;}
.x39{left:284.202722px;}
.x37{left:290.495444px;}
.x1{left:300.018750px;}
.x40{left:306.651900px;}
.x15{left:308.267550px;}
.xd{left:317.957429px;}
.x17{left:324.595200px;}
.x2e{left:328.762050px;}
.x18{left:332.163600px;}
.x16{left:356.910150px;}
.x2{left:375.618750px;}
.x3{left:381.231450px;}
.x27{left:404.617200px;}
.x28{left:409.549500px;}
.x2f{left:434.210850px;}
.x4{left:463.124250px;}
.xf{left:465.250200px;}
.x5{left:468.736800px;}
.x10{left:480.387300px;}
.x11{left:495.354150px;}
.x12{left:500.626650px;}
.x24{left:508.447745px;}
.x1a{left:514.317900px;}
.x1f{left:517.718822px;}
.x29{left:524.692861px;}
.x38{left:528.009675px;}
.x30{left:533.111700px;}
.x3d{left:534.727350px;}
.x1b{left:542.721150px;}
.x36{left:549.610694px;}
.xe{left:556.327350px;}
.x22{left:563.810850px;}
.x6{left:567.467550px;}
.x7{left:572.995050px;}
.x1c{left:576.056550px;}
.x3a{left:577.842300px;}
.x20{left:578.863358px;}
.x21{left:587.111700px;}
.x35{left:589.152600px;}
.x23{left:601.483727px;}
.x1d{left:608.541600px;}
.x31{left:638.815500px;}
.x1e{left:649.615650px;}
.x8{left:650.636100px;}
.x9{left:656.248650px;}
.x3b{left:679.889550px;}
.x19{left:688.649665px;}
.x3c{left:691.114800px;}
.x33{left:735.505217px;}
.x32{left:736.866000px;}
.xa{left:738.481650px;}
.x13{left:785.678550px;}
.x2a{left:793.332150px;}
.x3e{left:795.628200px;}
.x2b{left:800.220300px;}
.x14{left:807.363600px;}
.x3f{left:811.020300px;}
.x34{left:850.903800px;}
@media print{
.v9{vertical-align:-45.659123pt;}
.va{vertical-align:-34.171008pt;}
.v7{vertical-align:-13.301376pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:4.535410pt;}
.v4{vertical-align:11.189445pt;}
.vc{vertical-align:13.303433pt;}
.v2{vertical-align:15.118318pt;}
.v1{vertical-align:19.351098pt;}
.v5{vertical-align:22.072489pt;}
.vb{vertical-align:27.212233pt;}
.v3{vertical-align:34.165261pt;}
.v6{vertical-align:36.888370pt;}
.v8{vertical-align:45.661747pt;}
.ls3{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.000252pt;}
.ls29{letter-spacing:0.004267pt;}
.ls4{letter-spacing:0.010667pt;}
.ls17{letter-spacing:0.026667pt;}
.ls37{letter-spacing:0.029866pt;}
.ls26{letter-spacing:0.034133pt;}
.ls9{letter-spacing:0.058667pt;}
.ls3b{letter-spacing:0.072532pt;}
.lsb{letter-spacing:0.088880pt;}
.ls23{letter-spacing:0.101334pt;}
.ls28{letter-spacing:0.102399pt;}
.ls34{letter-spacing:0.136532pt;}
.lsa{letter-spacing:0.149335pt;}
.ls5{letter-spacing:0.154668pt;}
.ls3a{letter-spacing:0.170665pt;}
.lsc{letter-spacing:0.185067pt;}
.ls15{letter-spacing:0.191146pt;}
.ls18{letter-spacing:0.191234pt;}
.ls1c{letter-spacing:0.192243pt;}
.ls25{letter-spacing:0.200531pt;}
.ls8{letter-spacing:0.314670pt;}
.lsd{letter-spacing:2.525522pt;}
.ls16{letter-spacing:2.526055pt;}
.ls2c{letter-spacing:2.549150pt;}
.ls2e{letter-spacing:2.549683pt;}
.ls12{letter-spacing:2.615008pt;}
.ls2a{letter-spacing:2.842057pt;}
.lse{letter-spacing:2.861943pt;}
.ls1d{letter-spacing:3.198989pt;}
.lsf{letter-spacing:3.501922pt;}
.ls11{letter-spacing:5.136051pt;}
.ls21{letter-spacing:6.293396pt;}
.ls0{letter-spacing:9.104953pt;}
.ls2{letter-spacing:9.378016pt;}
.ls39{letter-spacing:9.403616pt;}
.ls6{letter-spacing:11.653450pt;}
.ls33{letter-spacing:11.822786pt;}
.ls10{letter-spacing:11.824118pt;}
.ls1a{letter-spacing:11.845452pt;}
.ls27{letter-spacing:11.895318pt;}
.ls7{letter-spacing:11.957453pt;}
.ls31{letter-spacing:11.963584pt;}
.ls19{letter-spacing:14.619922pt;}
.ls1b{letter-spacing:14.653943pt;}
.ls14{letter-spacing:14.869482pt;}
.ls1e{letter-spacing:17.341522pt;}
.ls13{letter-spacing:17.562667pt;}
.ls1{letter-spacing:18.777365pt;}
.ls20{letter-spacing:54.005873pt;}
.ls1f{letter-spacing:68.390017pt;}
.ls32{letter-spacing:318.720283pt;}
.ls30{letter-spacing:322.927163pt;}
.ls2b{letter-spacing:325.191333pt;}
.ls2d{letter-spacing:326.009983pt;}
.ls2f{letter-spacing:327.341155pt;}
.ls36{letter-spacing:362.235472pt;}
.ls35{letter-spacing:375.129177pt;}
.ls24{letter-spacing:654.038540pt;}
.ls22{letter-spacing:832.706994pt;}
.ws87{word-spacing:-654.091874pt;}
.wse2{word-spacing:-349.384433pt;}
.wsb3{word-spacing:-12.006250pt;}
.ws7b{word-spacing:-11.877452pt;}
.ws20{word-spacing:-9.420682pt;}
.wsef{word-spacing:-0.063999pt;}
.ws3d{word-spacing:-0.053334pt;}
.ws7{word-spacing:-0.048000pt;}
.wse{word-spacing:-0.042666pt;}
.ws85{word-spacing:-0.031999pt;}
.wsc1{word-spacing:-0.028440pt;}
.ws3a{word-spacing:0.000000pt;}
.ws128{word-spacing:8.614292pt;}
.wsff{word-spacing:8.631359pt;}
.ws33{word-spacing:8.635625pt;}
.ws109{word-spacing:8.652692pt;}
.ws2a{word-spacing:8.656958pt;}
.ws125{word-spacing:8.691091pt;}
.ws34{word-spacing:8.716691pt;}
.wsdd{word-spacing:8.720958pt;}
.ws11f{word-spacing:8.725224pt;}
.ws36{word-spacing:8.729491pt;}
.ws22{word-spacing:8.733757pt;}
.ws2e{word-spacing:8.750824pt;}
.ws2d{word-spacing:8.755091pt;}
.ws24{word-spacing:8.759357pt;}
.ws122{word-spacing:8.763624pt;}
.ws105{word-spacing:8.767890pt;}
.ws28{word-spacing:8.776424pt;}
.wsfd{word-spacing:8.780690pt;}
.ws2c{word-spacing:8.784957pt;}
.ws10a{word-spacing:8.789223pt;}
.wsfe{word-spacing:8.793490pt;}
.ws124{word-spacing:8.797757pt;}
.ws65{word-spacing:8.802023pt;}
.ws35{word-spacing:8.814823pt;}
.ws30{word-spacing:8.819090pt;}
.ws39{word-spacing:8.823356pt;}
.wsf6{word-spacing:8.831890pt;}
.ws11d{word-spacing:8.836156pt;}
.ws111{word-spacing:8.844689pt;}
.ws123{word-spacing:8.857489pt;}
.ws120{word-spacing:8.866023pt;}
.ws32{word-spacing:8.870289pt;}
.ws11a{word-spacing:8.878822pt;}
.wsd{word-spacing:8.895889pt;}
.ws126{word-spacing:8.900155pt;}
.wsf9{word-spacing:8.912955pt;}
.ws38{word-spacing:8.921488pt;}
.ws114{word-spacing:8.925755pt;}
.ws23{word-spacing:8.930022pt;}
.ws102{word-spacing:8.934288pt;}
.ws121{word-spacing:8.947088pt;}
.ws11c{word-spacing:8.955621pt;}
.ws27{word-spacing:8.959888pt;}
.ws129{word-spacing:8.964155pt;}
.ws113{word-spacing:8.968421pt;}
.ws107{word-spacing:8.972688pt;}
.wsf3{word-spacing:8.976954pt;}
.ws26{word-spacing:8.989754pt;}
.ws1f{word-spacing:8.994021pt;}
.ws25{word-spacing:8.998288pt;}
.ws10b{word-spacing:9.002554pt;}
.ws104{word-spacing:9.006821pt;}
.ws9a{word-spacing:9.011087pt;}
.ws106{word-spacing:9.032420pt;}
.ws101{word-spacing:9.036687pt;}
.ws117{word-spacing:9.040954pt;}
.ws21{word-spacing:9.049487pt;}
.ws9b{word-spacing:9.058020pt;}
.wsfa{word-spacing:9.062287pt;}
.ws10e{word-spacing:9.066553pt;}
.ws118{word-spacing:9.070820pt;}
.ws37{word-spacing:9.075087pt;}
.ws29{word-spacing:9.079353pt;}
.ws119{word-spacing:9.092153pt;}
.ws97{word-spacing:9.096420pt;}
.ws112{word-spacing:9.100686pt;}
.ws108{word-spacing:9.104953pt;}
.ws11b{word-spacing:9.122019pt;}
.wsf5{word-spacing:9.126286pt;}
.wsfc{word-spacing:9.130553pt;}
.wsf8{word-spacing:9.134819pt;}
.ws0{word-spacing:9.139086pt;}
.ws127{word-spacing:9.143352pt;}
.ws100{word-spacing:9.156152pt;}
.wsf4{word-spacing:9.164685pt;}
.ws116{word-spacing:9.168952pt;}
.ws10c{word-spacing:9.181752pt;}
.ws115{word-spacing:9.194552pt;}
.ws98{word-spacing:9.203085pt;}
.ws11e{word-spacing:9.207352pt;}
.wsf7{word-spacing:9.211618pt;}
.ws12a{word-spacing:9.224418pt;}
.ws10f{word-spacing:9.232951pt;}
.wsde{word-spacing:9.262818pt;}
.ws2f{word-spacing:9.267084pt;}
.ws31{word-spacing:9.284151pt;}
.ws2b{word-spacing:9.301217pt;}
.ws110{word-spacing:9.305484pt;}
.ws10d{word-spacing:9.314017pt;}
.wsc{word-spacing:9.331083pt;}
.ws99{word-spacing:9.360950pt;}
.wsfb{word-spacing:9.365216pt;}
.wsb{word-spacing:10.224000pt;}
.ws8{word-spacing:10.430400pt;}
.ws6{word-spacing:10.497600pt;}
.ws9{word-spacing:10.502400pt;}
.wsa{word-spacing:10.574400pt;}
.ws11{word-spacing:10.609600pt;}
.ws15{word-spacing:10.832533pt;}
.ws1c{word-spacing:10.913600pt;}
.ws1b{word-spacing:10.928800pt;}
.ws1a{word-spacing:10.969333pt;}
.ws19{word-spacing:10.984533pt;}
.wsf{word-spacing:11.050400pt;}
.ws10{word-spacing:11.065600pt;}
.ws17{word-spacing:11.126400pt;}
.ws12{word-spacing:11.136533pt;}
.ws96{word-spacing:11.178778pt;}
.ws14{word-spacing:11.212533pt;}
.ws1e{word-spacing:11.232800pt;}
.wsbc{word-spacing:11.237446pt;}
.ws16{word-spacing:11.263200pt;}
.wsd8{word-spacing:11.285192pt;}
.ws1d{word-spacing:11.293600pt;}
.wsb1{word-spacing:11.336392pt;}
.ws5d{word-spacing:11.344113pt;}
.wse0{word-spacing:11.349191pt;}
.wse1{word-spacing:11.357725pt;}
.ws18{word-spacing:11.359467pt;}
.ws13{word-spacing:11.379733pt;}
.wsaf{word-spacing:11.383324pt;}
.wsa2{word-spacing:11.404657pt;}
.ws6d{word-spacing:11.408114pt;}
.wsc2{word-spacing:11.413191pt;}
.wsc5{word-spacing:11.421724pt;}
.wsc3{word-spacing:11.425991pt;}
.wsdf{word-spacing:11.438790pt;}
.ws94{word-spacing:11.456115pt;}
.wsd0{word-spacing:11.464390pt;}
.ws8d{word-spacing:11.466781pt;}
.ws4e{word-spacing:11.472115pt;}
.wsbe{word-spacing:11.477190pt;}
.wsdb{word-spacing:11.481456pt;}
.wse8{word-spacing:11.489990pt;}
.wsac{word-spacing:11.498782pt;}
.wseb{word-spacing:11.509448pt;}
.wsc0{word-spacing:11.511323pt;}
.wse6{word-spacing:11.515589pt;}
.ws5c{word-spacing:11.520115pt;}
.wse9{word-spacing:11.524123pt;}
.ws91{word-spacing:11.525449pt;}
.wsb0{word-spacing:11.528389pt;}
.ws75{word-spacing:11.530782pt;}
.ws80{word-spacing:11.536115pt;}
.ws52{word-spacing:11.541449pt;}
.ws74{word-spacing:11.546782pt;}
.ws53{word-spacing:11.552116pt;}
.wsa0{word-spacing:11.558256pt;}
.ws3b{word-spacing:11.562782pt;}
.ws5b{word-spacing:11.568116pt;}
.wsae{word-spacing:11.573449pt;}
.ws44{word-spacing:11.578782pt;}
.wsb2{word-spacing:11.579589pt;}
.wsbb{word-spacing:11.584116pt;}
.wsda{word-spacing:11.588122pt;}
.ws73{word-spacing:11.589449pt;}
.ws54{word-spacing:11.594783pt;}
.ws40{word-spacing:11.600116pt;}
.ws92{word-spacing:11.605449pt;}
.ws6e{word-spacing:11.610783pt;}
.wsa1{word-spacing:11.613721pt;}
.ws41{word-spacing:11.616116pt;}
.ws4c{word-spacing:11.621450pt;}
.ws58{word-spacing:11.626783pt;}
.ws5e{word-spacing:11.632116pt;}
.ws84{word-spacing:11.637450pt;}
.wsec{word-spacing:11.642783pt;}
.ws9f{word-spacing:11.643588pt;}
.ws4d{word-spacing:11.648116pt;}
.ws3c{word-spacing:11.653450pt;}
.ws45{word-spacing:11.658783pt;}
.ws90{word-spacing:11.664117pt;}
.wsa7{word-spacing:11.669187pt;}
.ws3e{word-spacing:11.669450pt;}
.ws56{word-spacing:11.674783pt;}
.ws93{word-spacing:11.685450pt;}
.ws4a{word-spacing:11.690784pt;}
.wsa9{word-spacing:11.694787pt;}
.ws63{word-spacing:11.696117pt;}
.ws5a{word-spacing:11.701450pt;}
.ws4b{word-spacing:11.706784pt;}
.ws62{word-spacing:11.712117pt;}
.wsaa{word-spacing:11.716120pt;}
.ws49{word-spacing:11.717451pt;}
.wscf{word-spacing:11.720387pt;}
.ws8c{word-spacing:11.722784pt;}
.ws83{word-spacing:11.728117pt;}
.wsa8{word-spacing:11.728920pt;}
.wsed{word-spacing:11.733451pt;}
.ws6a{word-spacing:11.738784pt;}
.ws7d{word-spacing:11.744117pt;}
.ws47{word-spacing:11.749451pt;}
.wsa6{word-spacing:11.750253pt;}
.wsd3{word-spacing:11.754520pt;}
.ws50{word-spacing:11.754784pt;}
.ws3f{word-spacing:11.760118pt;}
.ws79{word-spacing:11.765451pt;}
.ws7a{word-spacing:11.770784pt;}
.ws46{word-spacing:11.776118pt;}
.wsd4{word-spacing:11.780119pt;}
.wsa5{word-spacing:11.784386pt;}
.ws5f{word-spacing:11.786785pt;}
.ws76{word-spacing:11.792118pt;}
.ws72{word-spacing:11.797451pt;}
.ws6b{word-spacing:11.813451pt;}
.ws77{word-spacing:11.818785pt;}
.wsdc{word-spacing:11.822786pt;}
.ws67{word-spacing:11.824118pt;}
.ws66{word-spacing:11.829452pt;}
.ws8a{word-spacing:11.834785pt;}
.wsbf{word-spacing:11.848385pt;}
.ws8f{word-spacing:11.856119pt;}
.ws4f{word-spacing:11.861452pt;}
.wsf1{word-spacing:11.872119pt;}
.wsb9{word-spacing:11.877452pt;}
.wsc4{word-spacing:11.882518pt;}
.ws43{word-spacing:11.882785pt;}
.ws6f{word-spacing:11.888119pt;}
.ws7f{word-spacing:11.893452pt;}
.ws9c{word-spacing:11.898786pt;}
.ws82{word-spacing:11.904119pt;}
.wsee{word-spacing:11.909452pt;}
.ws51{word-spacing:11.920119pt;}
.wsa4{word-spacing:11.920918pt;}
.ws9d{word-spacing:11.925453pt;}
.ws69{word-spacing:11.930786pt;}
.ws60{word-spacing:11.936119pt;}
.ws6c{word-spacing:11.941453pt;}
.ws68{word-spacing:11.946786pt;}
.ws64{word-spacing:11.952120pt;}
.ws95{word-spacing:11.957453pt;}
.ws61{word-spacing:11.973453pt;}
.ws88{word-spacing:11.978786pt;}
.wsea{word-spacing:11.984120pt;}
.ws42{word-spacing:12.005453pt;}
.ws57{word-spacing:12.010787pt;}
.ws7e{word-spacing:12.016120pt;}
.wsb4{word-spacing:12.023316pt;}
.ws8e{word-spacing:12.026787pt;}
.ws7c{word-spacing:12.042787pt;}
.wsad{word-spacing:12.048120pt;}
.ws9e{word-spacing:12.069454pt;}
.ws48{word-spacing:12.074787pt;}
.wsba{word-spacing:12.085454pt;}
.ws81{word-spacing:12.090788pt;}
.ws8b{word-spacing:12.096121pt;}
.ws89{word-spacing:12.128121pt;}
.wsbd{word-spacing:12.133455pt;}
.ws59{word-spacing:12.138788pt;}
.ws55{word-spacing:12.154788pt;}
.ws78{word-spacing:13.689486pt;}
.wsf0{word-spacing:13.798285pt;}
.ws71{word-spacing:13.894284pt;}
.ws70{word-spacing:13.983883pt;}
.ws86{word-spacing:16.169578pt;}
.ws5{word-spacing:23.178783pt;}
.ws4{word-spacing:23.306783pt;}
.ws2{word-spacing:23.445451pt;}
.ws3{word-spacing:23.520118pt;}
.ws1{word-spacing:23.616118pt;}
.wsf2{word-spacing:53.174802pt;}
.ws103{word-spacing:53.208935pt;}
.wsb8{word-spacing:269.159302pt;}
.wsb7{word-spacing:269.462232pt;}
.wsb5{word-spacing:281.378428pt;}
.wse3{word-spacing:284.544710pt;}
.wsd6{word-spacing:318.438686pt;}
.wsd5{word-spacing:318.442953pt;}
.wscb{word-spacing:318.711749pt;}
.wsca{word-spacing:319.014679pt;}
.wsd1{word-spacing:342.024525pt;}
.wsc9{word-spacing:342.263455pt;}
.wsc8{word-spacing:342.566385pt;}
.wsb6{word-spacing:351.637204pt;}
.wsc6{word-spacing:353.749178pt;}
.wsd2{word-spacing:365.576230pt;}
.wsab{word-spacing:473.521548pt;}
.wsa3{word-spacing:519.029245pt;}
.wse4{word-spacing:595.137094pt;}
.wse7{word-spacing:615.953900pt;}
.wscd{word-spacing:664.077032pt;}
.wse5{word-spacing:667.494590pt;}
.wsd9{word-spacing:674.722233pt;}
.wsd7{word-spacing:684.893839pt;}
.wsce{word-spacing:736.434528pt;}
.wscc{word-spacing:814.598884pt;}
.wsc7{word-spacing:818.993496pt;}
._11{margin-left:-654.011873pt;}
._e{margin-left:-11.824118pt;}
._a{margin-left:-9.378016pt;}
._1{margin-left:-4.362688pt;}
._b{margin-left:-2.487436pt;}
._3{margin-left:-1.087986pt;}
._7{width:0.922133pt;}
._f{width:4.409577pt;}
._4{width:8.358296pt;}
._5{width:9.830277pt;}
._c{width:11.105843pt;}
._6{width:12.281600pt;}
._26{width:13.173432pt;}
._d{width:14.643078pt;}
._10{width:18.077769pt;}
._3b{width:19.306297pt;}
._0{width:22.816114pt;}
._2{width:24.298788pt;}
._8{width:41.526948pt;}
._20{width:269.201968pt;}
._24{width:277.779992pt;}
._31{width:284.587376pt;}
._25{width:292.753674pt;}
._2f{width:309.636663pt;}
._1f{width:327.791103pt;}
._23{width:328.866441pt;}
._32{width:339.451757pt;}
._22{width:351.376941pt;}
._27{width:356.522477pt;}
._1e{width:358.502337pt;}
._21{width:372.240832pt;}
._34{width:393.565214pt;}
._28{width:407.802902pt;}
._1a{width:428.961038pt;}
._35{width:432.408461pt;}
._2d{width:451.241293pt;}
._14{width:452.397545pt;}
._1c{width:461.771294pt;}
._33{width:464.937122pt;}
._18{width:473.291150pt;}
._17{width:475.979117pt;}
._2a{width:494.871681pt;}
._2b{width:501.083870pt;}
._15{width:506.523802pt;}
._29{width:509.083770pt;}
._38{width:516.366879pt;}
._12{width:529.546447pt;}
._16{width:541.241234pt;}
._1d{width:552.543493pt;}
._13{width:557.625030pt;}
._30{width:570.177406pt;}
._37{width:583.092445pt;}
._36{width:630.123323pt;}
._1b{width:637.150436pt;}
._2e{width:645.175935pt;}
._19{width:648.414295pt;}
._2c{width:786.733632pt;}
._39{width:1177.781544pt;}
._3a{width:1490.225639pt;}
._9{width:1513.811477pt;}
.fsb{font-size:25.599467pt;}
.fsa{font-size:28.440000pt;}
.fs3{font-size:31.995733pt;}
.fs9{font-size:31.998933pt;}
.fs8{font-size:35.552000pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs7{font-size:53.333867pt;}
.fs6{font-size:63.999467pt;}
.fs4{font-size:85.332800pt;}
.fs1{font-size:106.667200pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:48.000000pt;}
.y139{bottom:106.355217pt;}
.ye2{bottom:110.656733pt;}
.y9d{bottom:110.657294pt;}
.y182{bottom:110.660813pt;}
.yee{bottom:110.662693pt;}
.yaf{bottom:110.663875pt;}
.y1db{bottom:110.664992pt;}
.y3e{bottom:110.669789pt;}
.y1b3{bottom:111.180053pt;}
.y153{bottom:111.715000pt;}
.y107{bottom:112.698227pt;}
.y215{bottom:120.262109pt;}
.y6e{bottom:121.468467pt;}
.y1da{bottom:123.364567pt;}
.y24a{bottom:124.951183pt;}
.y3d{bottom:125.334139pt;}
.y138{bottom:126.991759pt;}
.ye1{bottom:127.967573pt;}
.y9c{bottom:127.968133pt;}
.yed{bottom:127.973533pt;}
.yae{bottom:127.974715pt;}
.y1b2{bottom:128.490893pt;}
.y152{bottom:129.100507pt;}
.y106{bottom:130.009067pt;}
.y181{bottom:131.297355pt;}
.y214{bottom:132.961683pt;}
.y249{bottom:137.650758pt;}
.y6d{bottom:138.779307pt;}
.y137{bottom:139.691333pt;}
.y1d9{bottom:140.674217pt;}
.ye0{bottom:145.353080pt;}
.y9b{bottom:145.353641pt;}
.yec{bottom:145.359040pt;}
.yad{bottom:145.360222pt;}
.y213{bottom:145.661258pt;}
.y1b1{bottom:145.876400pt;}
.y151{bottom:146.411347pt;}
.y105{bottom:147.319906pt;}
.y180{bottom:148.003280pt;}
.y3c{bottom:148.011189pt;}
.y1d8{bottom:153.298059pt;}
.y248{bottom:154.960408pt;}
.y6c{bottom:156.090147pt;}
.yac{bottom:159.420818pt;}
.ydf{bottom:162.663920pt;}
.y9a{bottom:162.664480pt;}
.yeb{bottom:162.669880pt;}
.y3b{bottom:162.675539pt;}
.y212{bottom:162.971975pt;}
.yab{bottom:163.124087pt;}
.y1b0{bottom:163.187240pt;}
.y150{bottom:163.722186pt;}
.y17f{bottom:164.633472pt;}
.y104{bottom:164.705414pt;}
.y247{bottom:167.659983pt;}
.y1d7{bottom:170.683442pt;}
.y6b{bottom:173.400986pt;}
.y211{bottom:175.595817pt;}
.yaa{bottom:177.335354pt;}
.y3a{bottom:177.339889pt;}
.yde{bottom:179.974760pt;}
.y99{bottom:179.975320pt;}
.yea{bottom:179.980720pt;}
.y1af{bottom:180.498080pt;}
.y14f{bottom:181.107694pt;}
.ya9{bottom:181.114892pt;}
.y17e{bottom:181.338330pt;}
.y103{bottom:182.016253pt;}
.y1d6{bottom:183.307284pt;}
.y246{bottom:184.969633pt;}
.y210{bottom:188.295392pt;}
.y6a{bottom:190.786494pt;}
.y39{bottom:192.004239pt;}
.y22{bottom:194.196800pt;}
.ydd{bottom:197.360267pt;}
.y98{bottom:197.360827pt;}
.ye9{bottom:197.366227pt;}
.y245{bottom:197.593475pt;}
.y1ae{bottom:197.883587pt;}
.y17d{bottom:197.968522pt;}
.y14e{bottom:198.418533pt;}
.ya7{bottom:198.576400pt;}
.y102{bottom:199.327093pt;}
.y1d5{bottom:200.692667pt;}
.ya8{bottom:204.472400pt;}
.y20f{bottom:205.605042pt;}
.y69{bottom:208.097333pt;}
.y244{bottom:210.293050pt;}
.y21{bottom:212.867467pt;}
.y1d4{bottom:213.316509pt;}
.ydc{bottom:214.671106pt;}
.y97{bottom:214.671667pt;}
.y17c{bottom:214.674446pt;}
.ye8{bottom:214.677067pt;}
.y38{bottom:214.681289pt;}
.y1ad{bottom:215.194427pt;}
.y14d{bottom:215.729373pt;}
.y101{bottom:216.712600pt;}
.y20e{bottom:218.304617pt;}
.ya6{bottom:221.253467pt;}
.y68{bottom:225.408173pt;}
.y1d3{bottom:226.016084pt;}
.y243{bottom:227.602700pt;}
.y37{bottom:229.345639pt;}
.y20d{bottom:230.928459pt;}
.y17b{bottom:231.304639pt;}
.y20{bottom:231.538133pt;}
.ydb{bottom:231.981946pt;}
.y96{bottom:231.982507pt;}
.y1ac{bottom:232.505266pt;}
.y14c{bottom:233.114880pt;}
.y100{bottom:234.023440pt;}
.ye7{bottom:237.354267pt;}
.y242{bottom:240.302275pt;}
.y67{bottom:242.793680pt;}
.y1d2{bottom:243.325734pt;}
.y17a{bottom:248.010563pt;}
.y20c{bottom:248.313842pt;}
.yda{bottom:249.292786pt;}
.y95{bottom:249.293347pt;}
.y1ab{bottom:249.890774pt;}
.y1f{bottom:250.208800pt;}
.y14b{bottom:250.425720pt;}
.yff{bottom:251.334280pt;}
.y36{bottom:252.022689pt;}
.y1d1{bottom:256.025308pt;}
.y241{bottom:257.611925pt;}
.y66{bottom:260.104520pt;}
.y20b{bottom:260.937684pt;}
.y179{bottom:264.640755pt;}
.yd9{bottom:266.678293pt;}
.y94{bottom:266.678854pt;}
.y35{bottom:266.687039pt;}
.y1aa{bottom:267.201613pt;}
.y14a{bottom:267.736560pt;}
.yfe{bottom:268.645120pt;}
.y1e{bottom:268.879467pt;}
.y240{bottom:270.311500pt;}
.y1d0{bottom:273.334959pt;}
.y65{bottom:277.415360pt;}
.ya5{bottom:277.416986pt;}
.y20a{bottom:278.323066pt;}
.ye6{bottom:280.439880pt;}
.y178{bottom:281.346680pt;}
.y34{bottom:281.351389pt;}
.yd8{bottom:283.989133pt;}
.y93{bottom:283.989694pt;}
.y1a9{bottom:284.512453pt;}
.y149{bottom:285.122067pt;}
.yfd{bottom:286.030627pt;}
.y1cf{bottom:286.034533pt;}
.y1d{bottom:287.550133pt;}
.y23f{bottom:287.621150pt;}
.y209{bottom:290.946909pt;}
.y64{bottom:294.800867pt;}
.ya4{bottom:294.802494pt;}
.y33{bottom:296.015739pt;}
.ye5{bottom:297.750720pt;}
.y177{bottom:297.976872pt;}
.y23e{bottom:300.320725pt;}
.yd7{bottom:301.299973pt;}
.y92{bottom:301.300533pt;}
.y1a8{bottom:301.823293pt;}
.y148{bottom:302.432907pt;}
.yfc{bottom:303.341467pt;}
.y208{bottom:303.646483pt;}
.y1ce{bottom:304.025067pt;}
.y1c{bottom:306.220800pt;}
.y32{bottom:310.680089pt;}
.ya1{bottom:312.102200pt;}
.y63{bottom:312.111707pt;}
.ya3{bottom:312.113333pt;}
.y23d{bottom:312.944567pt;}
.y176{bottom:314.681730pt;}
.ye4{bottom:315.136227pt;}
.ya2{bottom:318.009333pt;}
.yd6{bottom:318.685480pt;}
.y91{bottom:318.686041pt;}
.y1a7{bottom:319.208800pt;}
.y147{bottom:319.743747pt;}
.yfb{bottom:320.652306pt;}
.y207{bottom:320.956133pt;}
.y1b{bottom:324.891467pt;}
.y31{bottom:325.344439pt;}
.ya0{bottom:329.413039pt;}
.y62{bottom:329.422547pt;}
.y23c{bottom:330.254217pt;}
.y175{bottom:331.311922pt;}
.ye3{bottom:332.447067pt;}
.y206{bottom:333.655708pt;}
.yd5{bottom:335.996320pt;}
.y90{bottom:335.996880pt;}
.y1a6{bottom:336.519640pt;}
.y146{bottom:337.054586pt;}
.yfa{bottom:338.037814pt;}
.y1cd{bottom:338.796453pt;}
.y23b{bottom:342.953792pt;}
.y1a{bottom:343.486133pt;}
.y205{bottom:346.279550pt;}
.y9f{bottom:346.798547pt;}
.y61{bottom:346.808054pt;}
.y174{bottom:348.016780pt;}
.y30{bottom:348.021489pt;}
.yd4{bottom:353.307160pt;}
.y8f{bottom:353.307720pt;}
.y1a5{bottom:353.830480pt;}
.y145{bottom:354.440094pt;}
.yf9{bottom:355.348653pt;}
.y23a{bottom:355.653366pt;}
.y1cc{bottom:356.107293pt;}
.yf1{bottom:360.868550pt;}
.y19{bottom:362.156800pt;}
.y204{bottom:363.589201pt;}
.y9e{bottom:364.109386pt;}
.y60{bottom:364.118894pt;}
.y173{bottom:364.646972pt;}
.yd3{bottom:370.692667pt;}
.y8e{bottom:370.693227pt;}
.y2f{bottom:370.698539pt;}
.y1a4{bottom:371.215987pt;}
.y144{bottom:371.750933pt;}
.yf8{bottom:372.659493pt;}
.y239{bottom:372.963017pt;}
.y1cb{bottom:373.492800pt;}
.y203{bottom:376.288775pt;}
.y18{bottom:380.827467pt;}
.y172{bottom:381.352896pt;}
.y5f{bottom:381.420226pt;}
.yf0{bottom:381.580824pt;}
.y238{bottom:385.662591pt;}
.yd2{bottom:388.003506pt;}
.y8d{bottom:388.004067pt;}
.y1a3{bottom:388.526827pt;}
.y202{bottom:388.988350pt;}
.y143{bottom:389.061773pt;}
.yf7{bottom:390.045000pt;}
.y2e{bottom:393.375589pt;}
.yef{bottom:394.204667pt;}
.y1ca{bottom:396.169867pt;}
.y237{bottom:398.286433pt;}
.y5e{bottom:398.731066pt;}
.y17{bottom:399.498133pt;}
.y171{bottom:401.308914pt;}
.yd1{bottom:405.314346pt;}
.y8c{bottom:405.314907pt;}
.y1a2{bottom:405.837666pt;}
.y201{bottom:406.300467pt;}
.y142{bottom:406.447280pt;}
.yf6{bottom:407.355840pt;}
.y236{bottom:415.596084pt;}
.y2d{bottom:415.976906pt;}
.y5d{bottom:416.116573pt;}
.y16{bottom:418.168800pt;}
.y200{bottom:418.924309pt;}
.yd0{bottom:422.699853pt;}
.y8b{bottom:422.700414pt;}
.y1a1{bottom:423.223174pt;}
.y141{bottom:423.758120pt;}
.y170{bottom:424.213161pt;}
.yf5{bottom:424.666680pt;}
.y235{bottom:428.295658pt;}
.y2c{bottom:430.641256pt;}
.y1c9{bottom:430.939760pt;}
.y5c{bottom:433.427413pt;}
.y1ff{bottom:436.309692pt;}
.y15{bottom:436.839467pt;}
.ycf{bottom:440.010693pt;}
.y8a{bottom:440.011254pt;}
.y1a0{bottom:440.534013pt;}
.y140{bottom:441.068960pt;}
.yf4{bottom:441.977520pt;}
.y2b{bottom:445.305606pt;}
.y234{bottom:445.606375pt;}
.y16f{bottom:447.041675pt;}
.y1c8{bottom:448.250600pt;}
.y1fe{bottom:448.933534pt;}
.y5b{bottom:450.738253pt;}
.y14{bottom:455.510133pt;}
.yce{bottom:457.321533pt;}
.y89{bottom:457.322094pt;}
.y19f{bottom:457.844853pt;}
.y233{bottom:458.305950pt;}
.y13f{bottom:458.454467pt;}
.yf3{bottom:459.363027pt;}
.y1fd{bottom:461.633108pt;}
.y1c7{bottom:465.636107pt;}
.y2a{bottom:467.982656pt;}
.y5a{bottom:468.123760pt;}
.y16e{bottom:470.399250pt;}
.y13{bottom:474.180800pt;}
.ycd{bottom:474.632373pt;}
.y88{bottom:474.632933pt;}
.y19e{bottom:475.230360pt;}
.y232{bottom:475.611600pt;}
.y13e{bottom:475.765307pt;}
.yf2{bottom:476.673867pt;}
.y1fc{bottom:478.942759pt;}
.y29{bottom:482.647006pt;}
.y1c6{bottom:482.946947pt;}
.y16d{bottom:483.098824pt;}
.y59{bottom:485.434600pt;}
.y231{bottom:488.311175pt;}
.y1fb{bottom:491.642333pt;}
.ycc{bottom:492.017880pt;}
.y19d{bottom:492.541200pt;}
.y12{bottom:492.851467pt;}
.y13d{bottom:493.076147pt;}
.y16c{bottom:495.722667pt;}
.y87{bottom:497.309667pt;}
.y28{bottom:497.311356pt;}
.y1c5{bottom:500.257786pt;}
.y230{bottom:500.935017pt;}
.y58{bottom:502.745439pt;}
.y1fa{bottom:504.266175pt;}
.ycb{bottom:509.328720pt;}
.y19c{bottom:509.852040pt;}
.y13c{bottom:510.386986pt;}
.y11{bottom:511.522133pt;}
.y27{bottom:511.975706pt;}
.y1c4{bottom:517.568626pt;}
.y22f{bottom:518.320400pt;}
.y121{bottom:519.302934pt;}
.y57{bottom:520.130947pt;}
.y86{bottom:521.347867pt;}
.y1f9{bottom:521.651558pt;}
.yca{bottom:526.639559pt;}
.y26{bottom:526.640056pt;}
.y19b{bottom:527.162880pt;}
.y13b{bottom:527.772494pt;}
.y10{bottom:530.192800pt;}
.y22e{bottom:530.944242pt;}
.y1f8{bottom:534.275400pt;}
.y1c3{bottom:534.954133pt;}
.y56{bottom:537.441786pt;}
.y120{bottom:540.015208pt;}
.y25{bottom:541.304406pt;}
.y22d{bottom:543.643816pt;}
.yc9{bottom:544.025067pt;}
.y19a{bottom:544.548387pt;}
.y13a{bottom:545.083333pt;}
.y1f7{bottom:546.974975pt;}
.yf{bottom:548.863467pt;}
.y55{bottom:554.752626pt;}
.y11f{bottom:556.645401pt;}
.y1c2{bottom:557.631333pt;}
.y22c{bottom:560.953467pt;}
.y199{bottom:561.859227pt;}
.y24{bottom:563.149467pt;}
.y1f6{bottom:564.284625pt;}
.yc8{bottom:566.702267pt;}
.ye{bottom:567.534133pt;}
.y54{bottom:572.138133pt;}
.y11e{bottom:573.351325pt;}
.y22b{bottom:573.653041pt;}
.y1f5{bottom:576.984200pt;}
.y85{bottom:579.168226pt;}
.y198{bottom:579.170066pt;}
.yd{bottom:586.204800pt;}
.y22a{bottom:586.276884pt;}
.y53{bottom:589.448973pt;}
.y11d{bottom:589.981517pt;}
.y1f4{bottom:594.293850pt;}
.y84{bottom:596.553733pt;}
.y197{bottom:596.555574pt;}
.y16b{bottom:598.298417pt;}
.y168{bottom:598.973779pt;}
.y1c1{bottom:600.414107pt;}
.y229{bottom:603.586534pt;}
.yc{bottom:604.875467pt;}
.yc7{bottom:606.079832pt;}
.y11c{bottom:606.687442pt;}
.y52{bottom:606.759813pt;}
.y1f3{bottom:606.993425pt;}
.y83{bottom:613.864573pt;}
.y196{bottom:613.866413pt;}
.y228{bottom:616.286108pt;}
.y1c0{bottom:617.724947pt;}
.y16a{bottom:618.934959pt;}
.y167{bottom:623.011879pt;}
.y11b{bottom:623.317634pt;}
.yc6{bottom:623.465339pt;}
.y51{bottom:624.070653pt;}
.y1f2{bottom:624.303075pt;}
.y227{bottom:628.985683pt;}
.y82{bottom:631.175413pt;}
.y195{bottom:631.177253pt;}
.y169{bottom:631.634533pt;}
.yb{bottom:634.204533pt;}
.y1bf{bottom:635.035786pt;}
.y1f1{bottom:636.926917pt;}
.y166{bottom:638.961546pt;}
.y11a{bottom:640.023558pt;}
.yc5{bottom:640.776179pt;}
.y50{bottom:641.456160pt;}
.y226{bottom:646.296400pt;}
.y81{bottom:648.560920pt;}
.y194{bottom:648.562760pt;}
.y1be{bottom:652.421294pt;}
.y1f0{bottom:654.312300pt;}
.y119{bottom:656.653750pt;}
.yc4{bottom:658.087019pt;}
.y4f{bottom:658.767000pt;}
.y225{bottom:658.920242pt;}
.y165{bottom:664.662558pt;}
.y80{bottom:665.871760pt;}
.y193{bottom:665.873600pt;}
.y1ef{bottom:666.936142pt;}
.y1bb{bottom:669.730880pt;}
.y1bd{bottom:669.732133pt;}
.y224{bottom:671.619817pt;}
.y118{bottom:673.359675pt;}
.yc3{bottom:675.472526pt;}
.y1bc{bottom:675.628133pt;}
.y4e{bottom:676.077839pt;}
.y164{bottom:681.292750pt;}
.y7f{bottom:683.182600pt;}
.y192{bottom:683.184440pt;}
.y1ee{bottom:684.321525pt;}
.y223{bottom:688.930534pt;}
.y117{bottom:689.989867pt;}
.ya{bottom:690.217833pt;}
.y126{bottom:692.710107pt;}
.yc2{bottom:692.783366pt;}
.y4d{bottom:693.463347pt;}
.y1ba{bottom:695.053800pt;}
.y1ed{bottom:696.945367pt;}
.y163{bottom:697.998675pt;}
.y7e{bottom:700.493439pt;}
.y191{bottom:700.495280pt;}
.y222{bottom:701.630108pt;}
.y24d{bottom:701.631175pt;}
.y116{bottom:706.694725pt;}
.y1ec{bottom:709.644941pt;}
.y125{bottom:710.020947pt;}
.yc1{bottom:710.094205pt;}
.y4c{bottom:710.774186pt;}
.y1b9{bottom:712.364639pt;}
.y221{bottom:714.329683pt;}
.y24c{bottom:714.330750pt;}
.y162{bottom:714.628867pt;}
.y9{bottom:716.825501pt;}
.y7d{bottom:717.878947pt;}
.y190{bottom:717.880787pt;}
.y115{bottom:723.324917pt;}
.y1eb{bottom:726.954592pt;}
.y124{bottom:727.331786pt;}
.yc0{bottom:727.479713pt;}
.y4b{bottom:728.085026pt;}
.y1b8{bottom:729.750147pt;}
.y8{bottom:730.204533pt;}
.y161{bottom:731.334791pt;}
.y220{bottom:731.639333pt;}
.y7c{bottom:735.189786pt;}
.y18f{bottom:735.191627pt;}
.y1ea{bottom:739.654166pt;}
.y114{bottom:740.029775pt;}
.y21f{bottom:744.263175pt;}
.y24b{bottom:744.264242pt;}
.y123{bottom:744.717294pt;}
.ybf{bottom:744.790552pt;}
.y4a{bottom:745.470533pt;}
.y1b7{bottom:747.060986pt;}
.y160{bottom:747.964984pt;}
.y7b{bottom:752.500626pt;}
.y18e{bottom:752.502466pt;}
.y6{bottom:754.166800pt;}
.y113{bottom:756.659967pt;}
.y21e{bottom:756.962750pt;}
.y1e9{bottom:756.963817pt;}
.y7{bottom:759.533733pt;}
.y122{bottom:762.028133pt;}
.ybe{bottom:762.101392pt;}
.y49{bottom:762.781373pt;}
.y1b6{bottom:764.371826pt;}
.y15f{bottom:764.670908pt;}
.y1e8{bottom:769.663391pt;}
.y7a{bottom:769.886133pt;}
.y18d{bottom:769.887973pt;}
.y112{bottom:773.365891pt;}
.y21d{bottom:774.273467pt;}
.ybd{bottom:779.412232pt;}
.y48{bottom:780.092213pt;}
.y15e{bottom:781.301100pt;}
.y1b5{bottom:781.757333pt;}
.y1e7{bottom:782.287233pt;}
.y21c{bottom:786.973041pt;}
.y79{bottom:787.196973pt;}
.y18c{bottom:787.198813pt;}
.y5{bottom:787.499900pt;}
.y111{bottom:789.996084pt;}
.ybc{bottom:796.797739pt;}
.y47{bottom:797.403053pt;}
.y15d{bottom:798.007025pt;}
.y1e6{bottom:799.596884pt;}
.y21b{bottom:804.282692pt;}
.y136{bottom:804.358483pt;}
.y1b4{bottom:804.434400pt;}
.y78{bottom:804.507813pt;}
.y18b{bottom:804.509653pt;}
.y110{bottom:806.700941pt;}
.y1e5{bottom:812.296458pt;}
.ybb{bottom:814.108579pt;}
.y15c{bottom:814.637217pt;}
.y46{bottom:814.788560pt;}
.y21a{bottom:816.982266pt;}
.y4{bottom:820.836067pt;}
.y77{bottom:821.893320pt;}
.y18a{bottom:821.895160pt;}
.y10f{bottom:823.331134pt;}
.y135{bottom:825.069691pt;}
.y1e4{bottom:829.606109pt;}
.y15b{bottom:831.343141pt;}
.yba{bottom:831.419419pt;}
.y45{bottom:832.099400pt;}
.y219{bottom:834.291917pt;}
.y189{bottom:837.014000pt;}
.y76{bottom:839.204160pt;}
.y186{bottom:839.205427pt;}
.y188{bottom:839.206000pt;}
.y10e{bottom:839.961326pt;}
.y134{bottom:841.699883pt;}
.y1e3{bottom:842.305683pt;}
.y187{bottom:845.102133pt;}
.y218{bottom:846.991491pt;}
.y15a{bottom:847.973333pt;}
.yb9{bottom:848.804926pt;}
.y44{bottom:849.410239pt;}
.y3{bottom:854.172233pt;}
.y185{bottom:854.324267pt;}
.y75{bottom:856.515000pt;}
.y184{bottom:856.516267pt;}
.y10d{bottom:856.666184pt;}
.y133{bottom:858.405808pt;}
.y1e2{bottom:859.615333pt;}
.y183{bottom:862.488000pt;}
.y159{bottom:864.679258pt;}
.y43{bottom:866.795747pt;}
.y1e1{bottom:872.314908pt;}
.y10c{bottom:873.296376pt;}
.y74{bottom:873.900507pt;}
.yb6{bottom:874.431452pt;}
.y132{bottom:875.036000pt;}
.y217{bottom:876.924984pt;}
.yb4{bottom:878.134544pt;}
.yb8{bottom:878.134553pt;}
.yb5{bottom:878.135200pt;}
.y42{bottom:884.106586pt;}
.y158{bottom:884.635275pt;}
.y2{bottom:887.508400pt;}
.yb7{bottom:889.549333pt;}
.y1e0{bottom:889.624558pt;}
.y10b{bottom:890.002300pt;}
.y73{bottom:891.211347pt;}
.y12d{bottom:892.875475pt;}
.y131{bottom:894.387200pt;}
.y130{bottom:895.067237pt;}
.y12c{bottom:895.823147pt;}
.y12f{bottom:898.015467pt;}
.y12e{bottom:900.963600pt;}
.y41{bottom:901.417426pt;}
.y1df{bottom:902.324133pt;}
.y157{bottom:907.992850pt;}
.y72{bottom:908.522186pt;}
.y10a{bottom:910.034050pt;}
.yb3{bottom:913.360307pt;}
.y1de{bottom:914.947975pt;}
.yb2{bottom:917.064278pt;}
.y40{bottom:918.802933pt;}
.y12b{bottom:919.558317pt;}
.y216{bottom:919.633783pt;}
.y156{bottom:920.692424pt;}
.y1{bottom:920.843867pt;}
.y71{bottom:925.833026pt;}
.y12a{bottom:932.182159pt;}
.y1dd{bottom:932.257625pt;}
.y109{bottom:933.315892pt;}
.y155{bottom:933.316267pt;}
.y154{bottom:938.078400pt;}
.yb1{bottom:940.346133pt;}
.y3f{bottom:941.404400pt;}
.yb0{bottom:942.613867pt;}
.y129{bottom:943.067467pt;}
.y70{bottom:943.218533pt;}
.y127{bottom:944.881733pt;}
.y1dc{bottom:944.957200pt;}
.y108{bottom:946.015467pt;}
.y128{bottom:949.568133pt;}
.y6f{bottom:994.393333pt;}
.h1b{height:2.133355pt;}
.h1f{height:20.789640pt;}
.h21{height:20.960280pt;}
.h1a{height:22.783241pt;}
.h4{height:23.580855pt;}
.hd{height:25.313024pt;}
.h28{height:25.384128pt;}
.h25{height:28.415645pt;}
.h7{height:31.060945pt;}
.h1e{height:31.188943pt;}
.h1d{height:31.444940pt;}
.h8{height:32.511594pt;}
.h22{height:34.134757pt;}
.h3{height:35.376000pt;}
.h26{height:35.980350pt;}
.h19{height:36.732090pt;}
.ha{height:37.973713pt;}
.hb{height:38.011741pt;}
.h27{height:38.080381pt;}
.h1{height:39.636838pt;}
.h29{height:39.652837pt;}
.h1c{height:40.000400pt;}
.h20{height:40.208564pt;}
.he{height:40.662388pt;}
.h11{height:40.663476pt;}
.h15{height:43.383778pt;}
.h24{height:44.492377pt;}
.h23{height:45.925443pt;}
.h14{height:46.709800pt;}
.h6{height:47.069333pt;}
.h9{height:47.167607pt;}
.h18{height:47.795102pt;}
.h13{height:52.788041pt;}
.h10{height:53.092031pt;}
.h17{height:54.816237pt;}
.h12{height:55.476551pt;}
.hf{height:55.780541pt;}
.h16{height:58.199660pt;}
.hc{height:59.455505pt;}
.h5{height:61.524949pt;}
.h2{height:76.907051pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:48.000000pt;}
.xc{left:63.496000pt;}
.x2c{left:190.792907pt;}
.x2d{left:198.500667pt;}
.x25{left:213.165333pt;}
.x26{left:217.549600pt;}
.x39{left:252.624642pt;}
.x37{left:258.218172pt;}
.x1{left:266.683333pt;}
.x40{left:272.579467pt;}
.x15{left:274.015600pt;}
.xd{left:282.628826pt;}
.x17{left:288.529067pt;}
.x2e{left:292.232933pt;}
.x18{left:295.256533pt;}
.x16{left:317.253467pt;}
.x2{left:333.883333pt;}
.x3{left:338.872400pt;}
.x27{left:359.659733pt;}
.x28{left:364.044000pt;}
.x2f{left:385.965200pt;}
.x4{left:411.666000pt;}
.xf{left:413.555733pt;}
.x5{left:416.654933pt;}
.x10{left:427.010933pt;}
.x11{left:440.314800pt;}
.x12{left:445.001467pt;}
.x24{left:451.953551pt;}
.x1a{left:457.171467pt;}
.x1f{left:460.194509pt;}
.x29{left:466.393654pt;}
.x38{left:469.341933pt;}
.x30{left:473.877067pt;}
.x3d{left:475.313200pt;}
.x1b{left:482.418800pt;}
.x36{left:488.542839pt;}
.xe{left:494.513200pt;}
.x22{left:501.165200pt;}
.x6{left:504.415600pt;}
.x7{left:509.328933pt;}
.x1c{left:512.050267pt;}
.x3a{left:513.637600pt;}
.x20{left:514.545207pt;}
.x21{left:521.877067pt;}
.x35{left:523.691200pt;}
.x23{left:534.652202pt;}
.x1d{left:540.925867pt;}
.x31{left:567.836000pt;}
.x1e{left:577.436133pt;}
.x8{left:578.343200pt;}
.x9{left:583.332133pt;}
.x3b{left:604.346267pt;}
.x19{left:612.133035pt;}
.x3c{left:614.324267pt;}
.x33{left:653.782415pt;}
.x32{left:654.992000pt;}
.xa{left:656.428133pt;}
.x13{left:698.380933pt;}
.x2a{left:705.184133pt;}
.x3e{left:707.225067pt;}
.x2b{left:711.306933pt;}
.x14{left:717.656533pt;}
.x3f{left:720.906933pt;}
.x34{left:756.358933pt;}
}




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