
    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_4edc5cd3c4a4ee6a614e3df9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_3b94d56214e97058ae331b4c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_bf98bad7cb8b5c483ac31609.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_6eebe54af1b32c4d7b461ead.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_d77edc2cd88ea45a9a9323db.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.896484;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_09a50a63944cd3dcbfc852bc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.854980;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_df1ca280ddaf7aba861b4a32.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.096680;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_d39155b0a51b6584f9ae6d30.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_2b37fefb4eb8b112c83f52ad.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.088379;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_0b98b778b76e90688eabb73c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.096680;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_e009eedeec962525d313f130.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.401855;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_dd7bb6ceadb66b4521576ac5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls39{letter-spacing:-1.002000px;}
.ls36{letter-spacing:-0.960000px;}
.ls64{letter-spacing:-0.936000px;}
.ls3d{letter-spacing:-0.852000px;}
.lsc{letter-spacing:-0.834000px;}
.ls2a{letter-spacing:-0.792000px;}
.ls25{letter-spacing:-0.762000px;}
.ls37{letter-spacing:-0.750000px;}
.ls85{letter-spacing:-0.708000px;}
.ls7d{letter-spacing:-0.702000px;}
.ls6a{letter-spacing:-0.696000px;}
.ls27{letter-spacing:-0.672000px;}
.ls26{letter-spacing:-0.648000px;}
.ls8b{letter-spacing:-0.618000px;}
.ls82{letter-spacing:-0.612000px;}
.ls2e{letter-spacing:-0.564600px;}
.lsa{letter-spacing:-0.492000px;}
.ls6d{letter-spacing:-0.469200px;}
.ls46{letter-spacing:-0.454800px;}
.ls59{letter-spacing:-0.450000px;}
.ls8c{letter-spacing:-0.414600px;}
.ls40{letter-spacing:-0.411600px;}
.ls32{letter-spacing:-0.403200px;}
.ls80{letter-spacing:-0.400200px;}
.ls7e{letter-spacing:-0.370800px;}
.ls6b{letter-spacing:-0.363000px;}
.ls10{letter-spacing:-0.355200px;}
.ls1b{letter-spacing:-0.354000px;}
.ls60{letter-spacing:-0.324000px;}
.ls88{letter-spacing:-0.310800px;}
.ls1d{letter-spacing:-0.294600px;}
.ls15{letter-spacing:-0.291600px;}
.ls41{letter-spacing:-0.291000px;}
.ls8{letter-spacing:-0.288600px;}
.ls45{letter-spacing:-0.288000px;}
.ls8d{letter-spacing:-0.282000px;}
.ls51{letter-spacing:-0.270000px;}
.ls4c{letter-spacing:-0.265200px;}
.ls68{letter-spacing:-0.256800px;}
.ls5a{letter-spacing:-0.252000px;}
.ls33{letter-spacing:-0.241800px;}
.ls5f{letter-spacing:-0.234000px;}
.ls69{letter-spacing:-0.227400px;}
.ls47{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.186600px;}
.ls81{letter-spacing:-0.175800px;}
.ls3a{letter-spacing:-0.166800px;}
.ls86{letter-spacing:-0.152400px;}
.ls2f{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.115800px;}
.lse{letter-spacing:-0.115200px;}
.ls3c{letter-spacing:-0.112800px;}
.ls2b{letter-spacing:-0.109200px;}
.ls4e{letter-spacing:-0.106800px;}
.ls14{letter-spacing:-0.103800px;}
.ls4d{letter-spacing:-0.097800px;}
.ls65{letter-spacing:-0.072000px;}
.ls8a{letter-spacing:-0.069000px;}
.ls12{letter-spacing:-0.058200px;}
.ls55{letter-spacing:-0.052560px;}
.ls56{letter-spacing:-0.046800px;}
.ls35{letter-spacing:-0.043200px;}
.ls6c{letter-spacing:-0.040320px;}
.ls38{letter-spacing:-0.031680px;}
.ls50{letter-spacing:-0.010800px;}
.ls5{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.012960px;}
.ls87{letter-spacing:0.014400px;}
.ls52{letter-spacing:0.018720px;}
.ls2c{letter-spacing:0.023040px;}
.ls24{letter-spacing:0.046080px;}
.ls21{letter-spacing:0.048960px;}
.ls16{letter-spacing:0.049800px;}
.ls63{letter-spacing:0.054000px;}
.ls18{letter-spacing:0.055200px;}
.ls4{letter-spacing:0.069000px;}
.ls34{letter-spacing:0.072000px;}
.ls28{letter-spacing:0.075000px;}
.ls1{letter-spacing:0.089400px;}
.ls62{letter-spacing:0.093600px;}
.ls79{letter-spacing:0.094800px;}
.ls22{letter-spacing:0.100800px;}
.ls71{letter-spacing:0.106800px;}
.lsb{letter-spacing:0.107400px;}
.ls43{letter-spacing:0.118200px;}
.ls9{letter-spacing:0.123000px;}
.ls5b{letter-spacing:0.126000px;}
.ls5d{letter-spacing:0.132960px;}
.ls73{letter-spacing:0.138000px;}
.ls77{letter-spacing:0.147000px;}
.ls7{letter-spacing:0.151200px;}
.ls29{letter-spacing:0.155400px;}
.ls58{letter-spacing:0.162000px;}
.ls57{letter-spacing:0.180000px;}
.ls4a{letter-spacing:0.192000px;}
.ls89{letter-spacing:0.193200px;}
.ls3b{letter-spacing:0.219000px;}
.ls1f{letter-spacing:0.243600px;}
.ls13{letter-spacing:0.246000px;}
.ls31{letter-spacing:0.250800px;}
.ls66{letter-spacing:0.255600px;}
.ls83{letter-spacing:0.256200px;}
.lsf{letter-spacing:0.262800px;}
.ls44{letter-spacing:0.265200px;}
.ls49{letter-spacing:0.270000px;}
.ls1c{letter-spacing:0.274800px;}
.ls54{letter-spacing:0.303000px;}
.ls84{letter-spacing:0.305400px;}
.ls61{letter-spacing:0.313800px;}
.ls2d{letter-spacing:0.316800px;}
.ls4b{letter-spacing:0.319680px;}
.ls20{letter-spacing:0.323400px;}
.ls48{letter-spacing:0.324000px;}
.ls72{letter-spacing:0.328200px;}
.ls42{letter-spacing:0.328320px;}
.ls5e{letter-spacing:0.343200px;}
.ls7f{letter-spacing:0.349200px;}
.ls11{letter-spacing:0.364800px;}
.lsd{letter-spacing:0.371400px;}
.ls17{letter-spacing:0.428400px;}
.ls3{letter-spacing:0.433440px;}
.ls5c{letter-spacing:0.444000px;}
.ls67{letter-spacing:0.493800px;}
.ls0{letter-spacing:0.532800px;}
.ls76{letter-spacing:0.547200px;}
.ls23{letter-spacing:0.624000px;}
.ls53{letter-spacing:0.666000px;}
.ls4f{letter-spacing:0.672000px;}
.ls1a{letter-spacing:0.768000px;}
.ls70{letter-spacing:0.792000px;}
.ls1e{letter-spacing:0.930000px;}
.ls78{letter-spacing:1.987200px;}
.ls6e{letter-spacing:4.867200px;}
.ls3e{letter-spacing:6.307200px;}
.ls2{letter-spacing:7.012800px;}
.ls6f{letter-spacing:7.747200px;}
.ls7b{letter-spacing:8.647200px;}
.ls7a{letter-spacing:9.187200px;}
.ls74{letter-spacing:11.347200px;}
.ls3f{letter-spacing:14.947200px;}
.ls75{letter-spacing:19.267200px;}
.ls7c{letter-spacing:20.707200px;}
.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;}
}
.ws22{word-spacing:-62.092800px;}
.ws1c{word-spacing:-29.162880px;}
.ws2{word-spacing:-21.792960px;}
.ws0{word-spacing:-21.710760px;}
.ws3{word-spacing:-21.641760px;}
.ws1{word-spacing:-21.455160px;}
.ws5{word-spacing:-19.161240px;}
.ws4{word-spacing:-18.749640px;}
.ws6{word-spacing:-18.546240px;}
.ws23{word-spacing:-17.153280px;}
.ws24{word-spacing:-17.107200px;}
.ws49{word-spacing:-15.912000px;}
.ws43{word-spacing:-15.840000px;}
.ws47{word-spacing:-15.624000px;}
.ws44{word-spacing:-15.552000px;}
.ws70{word-spacing:-15.364800px;}
.ws8{word-spacing:-15.341640px;}
.ws72{word-spacing:-14.901000px;}
.ws2f{word-spacing:-14.889600px;}
.ws87{word-spacing:-14.886600px;}
.ws7b{word-spacing:-14.878200px;}
.ws9{word-spacing:-14.855040px;}
.ws48{word-spacing:-14.838000px;}
.ws7a{word-spacing:-14.829000px;}
.ws33{word-spacing:-14.823600px;}
.ws80{word-spacing:-14.766000px;}
.ws2a{word-spacing:-14.728200px;}
.ws81{word-spacing:-14.719800px;}
.ws76{word-spacing:-14.710800px;}
.ws46{word-spacing:-14.691000px;}
.ws71{word-spacing:-14.679600px;}
.ws86{word-spacing:-14.667600px;}
.ws83{word-spacing:-14.662200px;}
.ws29{word-spacing:-14.647800px;}
.ws36{word-spacing:-14.644800px;}
.ws2c{word-spacing:-14.641800px;}
.ws28{word-spacing:-14.621760px;}
.ws2e{word-spacing:-14.595840px;}
.ws7e{word-spacing:-14.587200px;}
.ws3c{word-spacing:-14.572800px;}
.ws3a{word-spacing:-14.541120px;}
.ws37{word-spacing:-14.529600px;}
.ws82{word-spacing:-14.503800px;}
.ws6e{word-spacing:-14.469000px;}
.ws2d{word-spacing:-14.463600px;}
.ws31{word-spacing:-14.428800px;}
.ws7d{word-spacing:-14.420400px;}
.ws78{word-spacing:-14.397000px;}
.ws6a{word-spacing:-14.345400px;}
.ws35{word-spacing:-14.331000px;}
.ws4a{word-spacing:-14.307600px;}
.ws85{word-spacing:-14.290800px;}
.ws42{word-spacing:-14.281800px;}
.ws7f{word-spacing:-14.262000px;}
.ws77{word-spacing:-14.172600px;}
.ws34{word-spacing:-14.169600px;}
.ws41{word-spacing:-14.161200px;}
.ws84{word-spacing:-14.158200px;}
.ws7{word-spacing:-14.136240px;}
.ws45{word-spacing:-14.118000px;}
.ws6f{word-spacing:-14.103600px;}
.ws19{word-spacing:-14.077200px;}
.ws30{word-spacing:-14.008200px;}
.ws79{word-spacing:-13.960800px;}
.ws26{word-spacing:-13.924800px;}
.ws16{word-spacing:-13.915200px;}
.ws27{word-spacing:-13.900800px;}
.ws6b{word-spacing:-13.876800px;}
.ws7c{word-spacing:-13.864800px;}
.ws39{word-spacing:-13.822800px;}
.ws4d{word-spacing:-13.819200px;}
.ws53{word-spacing:-13.813200px;}
.ws25{word-spacing:-13.810800px;}
.ws2b{word-spacing:-13.780800px;}
.ws21{word-spacing:-13.771200px;}
.ws1b{word-spacing:-13.749360px;}
.ws68{word-spacing:-13.641000px;}
.ws38{word-spacing:-13.612800px;}
.ws14{word-spacing:-13.575600px;}
.ws3b{word-spacing:-13.570800px;}
.wse{word-spacing:-13.512000px;}
.wsa{word-spacing:-13.505760px;}
.ws75{word-spacing:-13.496400px;}
.ws5e{word-spacing:-13.490400px;}
.ws20{word-spacing:-13.470600px;}
.ws61{word-spacing:-13.461000px;}
.ws54{word-spacing:-13.450200px;}
.ws1a{word-spacing:-13.447560px;}
.wsc{word-spacing:-13.410000px;}
.ws67{word-spacing:-13.402800px;}
.ws11{word-spacing:-13.393200px;}
.ws66{word-spacing:-13.339200px;}
.ws62{word-spacing:-13.240800px;}
.ws10{word-spacing:-13.236600px;}
.ws13{word-spacing:-13.197000px;}
.ws52{word-spacing:-13.165920px;}
.ws32{word-spacing:-13.160160px;}
.wsb{word-spacing:-13.147200px;}
.ws50{word-spacing:-13.136400px;}
.ws6d{word-spacing:-13.106880px;}
.ws57{word-spacing:-13.100400px;}
.ws56{word-spacing:-13.094640px;}
.wsf{word-spacing:-13.089000px;}
.ws4b{word-spacing:-13.049400px;}
.ws4c{word-spacing:-13.040400px;}
.ws15{word-spacing:-13.031400px;}
.ws69{word-spacing:-12.890400px;}
.ws12{word-spacing:-12.855600px;}
.ws18{word-spacing:-12.852600px;}
.ws17{word-spacing:-12.793200px;}
.wsd{word-spacing:-12.792000px;}
.ws6c{word-spacing:-12.784200px;}
.ws74{word-spacing:-12.776400px;}
.ws73{word-spacing:-12.445200px;}
.ws55{word-spacing:-12.204000px;}
.ws4e{word-spacing:-12.150000px;}
.ws5c{word-spacing:-12.060000px;}
.ws58{word-spacing:-12.042000px;}
.ws5b{word-spacing:-12.006000px;}
.ws63{word-spacing:-11.934000px;}
.ws4f{word-spacing:-11.880000px;}
.ws65{word-spacing:-11.808000px;}
.ws5d{word-spacing:-11.664000px;}
.ws5f{word-spacing:-11.646000px;}
.ws5a{word-spacing:-11.628000px;}
.ws51{word-spacing:-11.610000px;}
.ws60{word-spacing:-11.556000px;}
.ws59{word-spacing:-11.430000px;}
.ws64{word-spacing:-10.944000px;}
.ws3e{word-spacing:-10.831800px;}
.ws3f{word-spacing:-10.500000px;}
.ws3d{word-spacing:-10.446000px;}
.ws40{word-spacing:-9.760800px;}
.ws1d{word-spacing:0.000000px;}
.ws1f{word-spacing:0.690000px;}
.ws1e{word-spacing:0.780000px;}
._11{margin-left:-8.247227px;}
._b{margin-left:-6.546240px;}
._c{margin-left:-5.319628px;}
._0{margin-left:-3.921400px;}
._2{margin-left:-2.853319px;}
._3{margin-left:-1.132182px;}
._1{width:1.007136px;}
._4{width:2.074807px;}
._a{width:3.446419px;}
._7{width:5.231279px;}
._5{width:7.012776px;}
._6{width:8.271975px;}
._e{width:9.406080px;}
._8{width:10.458000px;}
._9{width:11.971176px;}
._10{width:13.563840px;}
._f{width:15.847089px;}
._15{width:19.814400px;}
._16{width:21.415098px;}
._17{width:22.566799px;}
._14{width:24.369360px;}
._13{width:25.445142px;}
._12{width:29.619840px;}
._d{width:30.795840px;}
._19{width:37.209120px;}
._18{width:41.131200px;}
.fc4{color:transparent;}
.fc3{color:rgb(132,79,35);}
.fc5{color:rgb(51,51,51);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsf{font-size:5.760000px;}
.fs7{font-size:38.880000px;}
.fsd{font-size:45.360000px;}
.fs9{font-size:48.240000px;}
.fsc{font-size:51.120000px;}
.fsb{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs8{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs10{font-size:74.880000px;}
.fs6{font-size:77.760000px;}
.fsa{font-size:81.360000px;}
.fs1{font-size:84.240000px;}
.fse{font-size:87.120000px;}
.fs0{font-size:95.760000px;}
.fs5{font-size:282.240000px;}
.y1b7{bottom:-15.840000px;}
.y0{bottom:0.000000px;}
.y1c5{bottom:2.880000px;}
.y1e7{bottom:3.060000px;}
.y139{bottom:3.240000px;}
.y121{bottom:3.585000px;}
.y135{bottom:3.600000px;}
.y13f{bottom:3.780000px;}
.yee{bottom:3.960000px;}
.y1ce{bottom:4.140000px;}
.y1c2{bottom:4.320000px;}
.yea{bottom:4.500000px;}
.y11d{bottom:4.665000px;}
.y2c{bottom:4.860000px;}
.y1f1{bottom:5.040000px;}
.y165{bottom:5.220000px;}
.y110{bottom:5.565000px;}
.ye7{bottom:5.580000px;}
.y10d{bottom:5.610000px;}
.y128{bottom:5.745000px;}
.ye4{bottom:5.760000px;}
.y14e{bottom:5.940000px;}
.y145{bottom:5.985000px;}
.y111{bottom:6.285000px;}
.yf6{bottom:6.300000px;}
.y102{bottom:6.480000px;}
.y13d{bottom:6.660000px;}
.y1dc{bottom:6.840000px;}
.y13c{bottom:7.020000px;}
.y1f4{bottom:7.050000px;}
.y127{bottom:7.185000px;}
.yf5{bottom:7.200000px;}
.ye9{bottom:7.380000px;}
.y1b0{bottom:7.560000px;}
.y11c{bottom:7.725000px;}
.y1a1{bottom:7.740000px;}
.y1f5{bottom:7.770000px;}
.y1b2{bottom:7.920000px;}
.y144{bottom:7.965000px;}
.y157{bottom:8.100000px;}
.y15c{bottom:8.280000px;}
.y1a4{bottom:9.000000px;}
.ye6{bottom:9.360000px;}
.y141{bottom:9.540000px;}
.y123{bottom:9.705000px;}
.yf0{bottom:9.720000px;}
.y147{bottom:9.900000px;}
.y1c6{bottom:10.080000px;}
.y1d1{bottom:10.260000px;}
.y19b{bottom:10.620000px;}
.y1be{bottom:10.800000px;}
.y1e1{bottom:10.980000px;}
.y206{bottom:11.880000px;}
.y1e4{bottom:12.060000px;}
.y20b{bottom:12.105000px;}
.y15a{bottom:12.240000px;}
.y19d{bottom:12.420000px;}
.y160{bottom:12.600000px;}
.y166{bottom:12.780000px;}
.y119{bottom:12.945000px;}
.y19e{bottom:12.960000px;}
.y10e{bottom:12.990000px;}
.yfa{bottom:13.140000px;}
.y1a0{bottom:13.320000px;}
.y1b4{bottom:13.350000px;}
.y142{bottom:13.500000px;}
.y13a{bottom:13.680000px;}
.y11a{bottom:13.845000px;}
.y1a7{bottom:13.860000px;}
.y10f{bottom:13.890000px;}
.yfb{bottom:14.040000px;}
.y109{bottom:14.205000px;}
.y2f{bottom:15.660000px;}
.y14c{bottom:15.840000px;}
.y137{bottom:16.920000px;}
.y124{bottom:17.265000px;}
.yf1{bottom:17.280000px;}
.y1c4{bottom:17.820000px;}
.y125{bottom:17.985000px;}
.y1d0{bottom:18.000000px;}
.yf3{bottom:18.180000px;}
.y138{bottom:18.360000px;}
.y120{bottom:18.705000px;}
.yed{bottom:18.900000px;}
.y15f{bottom:19.980000px;}
.y164{bottom:20.160000px;}
.y118{bottom:20.505000px;}
.y159{bottom:20.520000px;}
.y10c{bottom:20.550000px;}
.yf9{bottom:20.700000px;}
.y20d{bottom:21.420000px;}
.y101{bottom:21.780000px;}
.y199{bottom:22.680000px;}
.y122{bottom:24.645000px;}
.yef{bottom:24.840000px;}
.y200{bottom:29.010000px;}
.y115{bottom:29.145000px;}
.ye3{bottom:29.160000px;}
.y108{bottom:29.190000px;}
.y1bc{bottom:29.520000px;}
.y14b{bottom:30.780000px;}
.y1a6{bottom:31.140000px;}
.y132{bottom:32.940000px;}
.y1de{bottom:33.300000px;}
.y11f{bottom:33.645000px;}
.yf2{bottom:33.660000px;}
.yec{bottom:34.020000px;}
.y100{bottom:36.720000px;}
.y1df{bottom:37.080000px;}
.y114{bottom:44.085000px;}
.y107{bottom:44.130000px;}
.y28{bottom:45.570000px;}
.y14a{bottom:45.900000px;}
.yff{bottom:51.660000px;}
.y113{bottom:59.205000px;}
.y106{bottom:59.250000px;}
.y149{bottom:60.480000px;}
.y27{bottom:63.570000px;}
.yfe{bottom:66.600000px;}
.y298{bottom:83.880000px;}
.y12d{bottom:97.200000px;}
.y6a{bottom:97.920000px;}
.y297{bottom:101.700000px;}
.y22e{bottom:110.160000px;}
.y12c{bottom:115.200000px;}
.y69{bottom:117.900000px;}
.y296{bottom:119.700000px;}
.y22d{bottom:128.160000px;}
.y251{bottom:130.140000px;}
.y12b{bottom:133.200000px;}
.y295{bottom:137.700000px;}
.y68{bottom:137.880000px;}
.ya1{bottom:143.460000px;}
.y22c{bottom:146.160000px;}
.y250{bottom:148.140000px;}
.yd5{bottom:150.120000px;}
.y12a{bottom:151.200000px;}
.y294{bottom:155.700000px;}
.y67{bottom:156.240000px;}
.ya0{bottom:161.490000px;}
.y22b{bottom:164.010000px;}
.y24f{bottom:166.170000px;}
.yd4{bottom:168.150000px;}
.y293{bottom:173.730000px;}
.y66{bottom:174.270000px;}
.y129{bottom:177.510000px;}
.y9f{bottom:179.310000px;}
.y22a{bottom:182.010000px;}
.y24e{bottom:183.990000px;}
.yd3{bottom:186.150000px;}
.y292{bottom:191.550000px;}
.y25{bottom:192.090000px;}
.y65{bottom:192.270000px;}
.y9e{bottom:197.310000px;}
.y24d{bottom:201.990000px;}
.yd2{bottom:204.150000px;}
.y229{bottom:208.830000px;}
.y126{bottom:209.745000px;}
.y64{bottom:210.090000px;}
.y9d{bottom:215.310000px;}
.y24{bottom:216.570000px;}
.y24c{bottom:219.990000px;}
.yd1{bottom:222.150000px;}
.y63{bottom:228.090000px;}
.y170{bottom:228.990000px;}
.y11e{bottom:229.185000px;}
.y24b{bottom:237.990000px;}
.y228{bottom:238.530000px;}
.yd0{bottom:239.970000px;}
.y9c{bottom:242.130000px;}
.y291{bottom:245.730000px;}
.y62{bottom:246.090000px;}
.y16f{bottom:246.990000px;}
.y24a{bottom:255.990000px;}
.y227{bottom:256.530000px;}
.ycf{bottom:258.150000px;}
.y290{bottom:263.730000px;}
.y61{bottom:264.090000px;}
.y16e{bottom:264.990000px;}
.y9b{bottom:270.390000px;}
.y249{bottom:273.990000px;}
.y226{bottom:274.530000px;}
.y11b{bottom:274.905000px;}
.yce{bottom:276.150000px;}
.y28f{bottom:281.730000px;}
.y60{bottom:282.090000px;}
.y16d{bottom:282.990000px;}
.y9a{bottom:288.390000px;}
.y248{bottom:291.990000px;}
.y225{bottom:292.530000px;}
.ycd{bottom:294.150000px;}
.y112{bottom:295.605000px;}
.y28e{bottom:299.730000px;}
.y5f{bottom:300.090000px;}
.y16c{bottom:300.990000px;}
.y99{bottom:306.390000px;}
.y247{bottom:309.810000px;}
.y224{bottom:310.530000px;}
.ycc{bottom:312.150000px;}
.y28d{bottom:317.550000px;}
.y5e{bottom:318.090000px;}
.y16b{bottom:318.810000px;}
.y117{bottom:319.185000px;}
.y23{bottom:321.870000px;}
.y98{bottom:324.390000px;}
.y246{bottom:327.810000px;}
.y223{bottom:328.350000px;}
.ycb{bottom:329.970000px;}
.y28c{bottom:335.550000px;}
.y5d{bottom:335.910000px;}
.y16a{bottom:336.810000px;}
.y1d{bottom:339.330000px;}
.y22{bottom:339.870000px;}
.y97{bottom:342.210000px;}
.y245{bottom:345.810000px;}
.y222{bottom:346.530000px;}
.yca{bottom:347.970000px;}
.y28b{bottom:353.730000px;}
.y5c{bottom:353.910000px;}
.y169{bottom:354.630000px;}
.y1c{bottom:357.510000px;}
.y21{bottom:357.690000px;}
.y116{bottom:357.885000px;}
.y96{bottom:360.210000px;}
.y244{bottom:363.810000px;}
.y221{bottom:364.530000px;}
.yc9{bottom:365.970000px;}
.y28a{bottom:371.550000px;}
.y5b{bottom:371.910000px;}
.y1b{bottom:375.330000px;}
.y20{bottom:375.510000px;}
.y168{bottom:381.270000px;}
.y105{bottom:381.465000px;}
.y243{bottom:381.810000px;}
.y220{bottom:382.530000px;}
.y95{bottom:387.210000px;}
.y289{bottom:389.550000px;}
.y5a{bottom:389.910000px;}
.yc8{bottom:392.790000px;}
.y1a{bottom:393.150000px;}
.y1f{bottom:393.510000px;}
.y242{bottom:399.810000px;}
.y21f{bottom:400.350000px;}
.y10b{bottom:405.045000px;}
.y288{bottom:407.595000px;}
.y59{bottom:407.955000px;}
.y19{bottom:411.195000px;}
.y1e{bottom:411.375000px;}
.y167{bottom:412.455000px;}
.y241{bottom:417.675000px;}
.y21e{bottom:418.575000px;}
.yc7{bottom:421.095000px;}
.y94{bottom:424.155000px;}
.y287{bottom:425.595000px;}
.y58{bottom:425.955000px;}
.y18{bottom:429.195000px;}
.y163{bottom:434.955000px;}
.y240{bottom:435.675000px;}
.y21d{bottom:436.395000px;}
.y1fe{bottom:438.735000px;}
.yc6{bottom:439.095000px;}
.y286{bottom:443.595000px;}
.y10a{bottom:443.775000px;}
.y57{bottom:443.955000px;}
.y17{bottom:447.195000px;}
.y23f{bottom:453.675000px;}
.y93{bottom:453.855000px;}
.y21c{bottom:454.395000px;}
.y1fd{bottom:456.555000px;}
.yc5{bottom:457.095000px;}
.y285{bottom:461.415000px;}
.y56{bottom:461.955000px;}
.yfd{bottom:467.355000px;}
.y162{bottom:471.135000px;}
.y23e{bottom:471.675000px;}
.y92{bottom:471.855000px;}
.y1fc{bottom:474.555000px;}
.yc4{bottom:475.095000px;}
.y21b{bottom:475.635000px;}
.y16{bottom:477.435000px;}
.y284{bottom:479.595000px;}
.y55{bottom:479.955000px;}
.y197{bottom:480.855000px;}
.y91{bottom:489.675000px;}
.y104{bottom:490.935000px;}
.y1fb{bottom:492.555000px;}
.yc3{bottom:492.915000px;}
.y161{bottom:493.635000px;}
.y283{bottom:497.595000px;}
.y54{bottom:497.775000px;}
.y196{bottom:498.855000px;}
.y90{bottom:507.675000px;}
.y23d{bottom:507.855000px;}
.y1fa{bottom:510.555000px;}
.yc2{bottom:510.915000px;}
.y282{bottom:515.595000px;}
.y53{bottom:515.775000px;}
.y15e{bottom:516.135000px;}
.y195{bottom:516.855000px;}
.y21a{bottom:523.695000px;}
.y8f{bottom:525.675000px;}
.y1f9{bottom:528.555000px;}
.yc1{bottom:528.915000px;}
.y103{bottom:529.635000px;}
.y281{bottom:533.415000px;}
.y52{bottom:533.775000px;}
.y194{bottom:534.675000px;}
.y219{bottom:542.955000px;}
.y8e{bottom:543.675000px;}
.y1f8{bottom:546.375000px;}
.yc0{bottom:546.915000px;}
.y280{bottom:551.415000px;}
.y51{bottom:551.775000px;}
.y15d{bottom:552.315000px;}
.yfc{bottom:553.215000px;}
.y8d{bottom:561.675000px;}
.ybf{bottom:564.915000px;}
.y218{bottom:565.455000px;}
.y15{bottom:566.535000px;}
.y193{bottom:567.615000px;}
.y27f{bottom:569.415000px;}
.y50{bottom:569.955000px;}
.y1f7{bottom:572.835000px;}
.y1b6{bottom:573.915000px;}
.y1b5{bottom:574.455000px;}
.y268{bottom:574.635000px;}
.y15b{bottom:575.895000px;}
.yf8{bottom:576.795000px;}
.y8c{bottom:579.675000px;}
.y1da{bottom:582.375000px;}
.ybe{bottom:582.915000px;}
.yf{bottom:584.175000px;}
.y14{bottom:584.355000px;}
.y192{bottom:586.875000px;}
.y27e{bottom:587.415000px;}
.y4f{bottom:587.955000px;}
.y267{bottom:592.635000px;}
.y8b{bottom:597.495000px;}
.y23c{bottom:597.675000px;}
.y158{bottom:598.395000px;}
.y1d9{bottom:600.375000px;}
.ybd{bottom:600.915000px;}
.y1f6{bottom:601.455000px;}
.ye{bottom:601.995000px;}
.y13{bottom:602.175000px;}
.y27d{bottom:605.415000px;}
.y4e{bottom:605.775000px;}
.y191{bottom:605.955000px;}
.y217{bottom:610.455000px;}
.y266{bottom:610.635000px;}
.yf7{bottom:615.495000px;}
.y8a{bottom:615.675000px;}
.y1d8{bottom:618.375000px;}
.yd{bottom:619.815000px;}
.y12{bottom:620.175000px;}
.y27c{bottom:623.235000px;}
.y4d{bottom:623.775000px;}
.y190{bottom:625.575000px;}
.ybc{bottom:627.735000px;}
.y265{bottom:628.455000px;}
.y216{bottom:632.955000px;}
.y89{bottom:633.675000px;}
.y156{bottom:635.475000px;}
.y1d7{bottom:636.375000px;}
.yc{bottom:637.815000px;}
.y11{bottom:637.995000px;}
.yf4{bottom:639.075000px;}
.y1b3{bottom:639.435000px;}
.y4c{bottom:641.775000px;}
.y1f3{bottom:646.095000px;}
.y23b{bottom:651.525000px;}
.y88{bottom:651.705000px;}
.y18f{bottom:652.785000px;}
.y1d6{bottom:654.765000px;}
.y264{bottom:655.485000px;}
.yb{bottom:655.665000px;}
.y10{bottom:655.845000px;}
.y215{bottom:656.745000px;}
.y155{bottom:658.005000px;}
.yeb{bottom:658.545000px;}
.y27b{bottom:659.445000px;}
.y4b{bottom:659.805000px;}
.ybb{bottom:664.665000px;}
.y1b1{bottom:665.745000px;}
.y23a{bottom:669.525000px;}
.y87{bottom:669.705000px;}
.y18e{bottom:672.045000px;}
.y1f2{bottom:672.405000px;}
.y1d5{bottom:673.125000px;}
.ya{bottom:673.845000px;}
.y27a{bottom:677.445000px;}
.y4a{bottom:677.805000px;}
.y214{bottom:679.245000px;}
.y263{bottom:685.185000px;}
.y239{bottom:687.525000px;}
.y86{bottom:687.705000px;}
.y18d{bottom:691.125000px;}
.y9{bottom:691.665000px;}
.y1af{bottom:692.205000px;}
.yba{bottom:694.365000px;}
.y279{bottom:695.265000px;}
.y1d4{bottom:695.625000px;}
.y49{bottom:695.805000px;}
.y1f0{bottom:698.685000px;}
.y262{bottom:703.185000px;}
.ye8{bottom:704.625000px;}
.y154{bottom:705.345000px;}
.y85{bottom:705.705000px;}
.y18c{bottom:710.025000px;}
.yb9{bottom:712.365000px;}
.y278{bottom:713.445000px;}
.y48{bottom:713.805000px;}
.y1d3{bottom:718.125000px;}
.y1ae{bottom:718.485000px;}
.y261{bottom:721.185000px;}
.y8{bottom:721.905000px;}
.y1ef{bottom:722.445000px;}
.y84{bottom:723.525000px;}
.y238{bottom:723.705000px;}
.ye2{bottom:724.965000px;}
.y213{bottom:726.585000px;}
.y153{bottom:728.025000px;}
.yb8{bottom:730.185000px;}
.y277{bottom:731.445000px;}
.y47{bottom:731.625000px;}
.y18b{bottom:734.145000px;}
.y260{bottom:739.185000px;}
.y1d2{bottom:740.625000px;}
.y83{bottom:741.525000px;}
.y237{bottom:741.705000px;}
.y152{bottom:743.325000px;}
.y1ad{bottom:744.765000px;}
.yb7{bottom:748.365000px;}
.ye5{bottom:748.545000px;}
.y212{bottom:749.265000px;}
.y276{bottom:749.445000px;}
.y46{bottom:749.625000px;}
.y1ee{bottom:753.225000px;}
.y18a{bottom:753.405000px;}
.y25f{bottom:757.185000px;}
.y1cf{bottom:758.625000px;}
.y82{bottom:759.525000px;}
.y151{bottom:761.145000px;}
.y211{bottom:764.565000px;}
.yb6{bottom:766.365000px;}
.y45{bottom:767.625000px;}
.y275{bottom:767.805000px;}
.y1ac{bottom:771.045000px;}
.ye1{bottom:772.305000px;}
.y189{bottom:772.845000px;}
.y25e{bottom:775.005000px;}
.y81{bottom:777.525000px;}
.y150{bottom:779.145000px;}
.y210{bottom:782.385000px;}
.yb5{bottom:784.365000px;}
.y44{bottom:785.625000px;}
.y274{bottom:785.805000px;}
.y1cd{bottom:788.685000px;}
.y188{bottom:792.105000px;}
.y25d{bottom:793.005000px;}
.y80{bottom:795.525000px;}
.y1ab{bottom:797.325000px;}
.y14f{bottom:798.225000px;}
.y20f{bottom:800.925000px;}
.yb4{bottom:802.185000px;}
.y43{bottom:803.625000px;}
.y1ed{bottom:803.805000px;}
.ye0{bottom:805.065000px;}
.y1cc{bottom:808.125000px;}
.y25c{bottom:811.005000px;}
.y187{bottom:811.545000px;}
.y7f{bottom:813.345000px;}
.y236{bottom:813.525000px;}
.y148{bottom:818.385000px;}
.ydf{bottom:820.185000px;}
.y42{bottom:821.625000px;}
.y20e{bottom:821.805000px;}
.y1aa{bottom:823.605000px;}
.y25b{bottom:829.005000px;}
.yb3{bottom:829.185000px;}
.y1ec{bottom:830.085000px;}
.y7{bottom:830.265000px;}
.y1cb{bottom:830.625000px;}
.y186{bottom:830.805000px;}
.y235{bottom:831.525000px;}
.y7e{bottom:831.705000px;}
.yde{bottom:838.185000px;}
.y41{bottom:839.445000px;}
.y14d{bottom:842.685000px;}
.y25a{bottom:847.005000px;}
.y20c{bottom:848.085000px;}
.y6{bottom:848.985000px;}
.y234{bottom:849.525000px;}
.y7d{bottom:849.705000px;}
.y1a9{bottom:849.885000px;}
.y185{bottom:850.245000px;}
.y1ca{bottom:853.125000px;}
.ydd{bottom:856.185000px;}
.y1eb{bottom:856.365000px;}
.yb2{bottom:857.265000px;}
.y40{bottom:857.625000px;}
.y259{bottom:865.005000px;}
.y146{bottom:866.805000px;}
.y7c{bottom:867.525000px;}
.y184{bottom:869.505000px;}
.ydc{bottom:874.005000px;}
.yb1{bottom:875.265000px;}
.y273{bottom:875.445000px;}
.y3f{bottom:875.625000px;}
.y1a8{bottom:876.165000px;}
.y1ea{bottom:882.645000px;}
.y258{bottom:883.005000px;}
.y233{bottom:885.345000px;}
.y7b{bottom:885.525000px;}
.y20a{bottom:886.785000px;}
.y183{bottom:888.945000px;}
.y143{bottom:890.925000px;}
.ydb{bottom:892.185000px;}
.y5{bottom:892.905000px;}
.yb0{bottom:893.085000px;}
.y272{bottom:893.445000px;}
.y3e{bottom:893.625000px;}
.y1c9{bottom:898.170000px;}
.y257{bottom:900.870000px;}
.y1a5{bottom:902.490000px;}
.y232{bottom:903.390000px;}
.y7a{bottom:903.570000px;}
.y182{bottom:907.890000px;}
.y1e9{bottom:908.970000px;}
.yda{bottom:910.230000px;}
.y140{bottom:911.130000px;}
.yaf{bottom:911.310000px;}
.y3d{bottom:911.490000px;}
.y4{bottom:912.030000px;}
.y209{bottom:913.110000px;}
.y256{bottom:918.870000px;}
.y1c8{bottom:920.670000px;}
.y231{bottom:921.390000px;}
.y79{bottom:921.570000px;}
.y181{bottom:926.430000px;}
.yd9{bottom:928.230000px;}
.yae{bottom:929.310000px;}
.y3c{bottom:929.490000px;}
.y1e8{bottom:935.250000px;}
.y208{bottom:936.870000px;}
.y78{bottom:939.570000px;}
.y1a3{bottom:941.190000px;}
.y13e{bottom:942.090000px;}
.y1c7{bottom:943.170000px;}
.yd8{bottom:946.230000px;}
.yad{bottom:947.310000px;}
.y180{bottom:948.570000px;}
.y255{bottom:954.870000px;}
.y3b{bottom:956.130000px;}
.y77{bottom:957.570000px;}
.y1e6{bottom:959.010000px;}
.y1c3{bottom:961.170000px;}
.y13b{bottom:963.330000px;}
.yd7{bottom:964.050000px;}
.yac{bottom:965.310000px;}
.y1a2{bottom:967.470000px;}
.y207{bottom:967.650000px;}
.y17f{bottom:967.830000px;}
.y254{bottom:972.870000px;}
.y3a{bottom:973.950000px;}
.y230{bottom:975.390000px;}
.y76{bottom:975.570000px;}
.y3{bottom:980.970000px;}
.y136{bottom:982.590000px;}
.yab{bottom:983.130000px;}
.y17e{bottom:987.090000px;}
.y1e5{bottom:989.790000px;}
.y253{bottom:990.870000px;}
.yd6{bottom:991.050000px;}
.y39{bottom:991.950000px;}
.y205{bottom:992.130000px;}
.y75{bottom:993.390000px;}
.y19f{bottom:993.750000px;}
.yaa{bottom:1001.310000px;}
.y17d{bottom:1006.530000px;}
.y1c1{bottom:1010.490000px;}
.y74{bottom:1011.390000px;}
.y2{bottom:1011.750000px;}
.y134{bottom:1013.730000px;}
.y1e3{bottom:1014.090000px;}
.y252{bottom:1017.690000px;}
.y204{bottom:1018.230000px;}
.y38{bottom:1018.590000px;}
.ya9{bottom:1019.310000px;}
.y19c{bottom:1020.030000px;}
.y17c{bottom:1025.610000px;}
.y73{bottom:1029.390000px;}
.y1c0{bottom:1032.990000px;}
.y131{bottom:1034.070000px;}
.y37{bottom:1036.410000px;}
.ya8{bottom:1037.130000px;}
.y271{bottom:1037.310000px;}
.y1{bottom:1038.750000px;}
.y1e2{bottom:1040.370000px;}
.y203{bottom:1044.690000px;}
.y72{bottom:1047.390000px;}
.y17b{bottom:1050.990000px;}
.y36{bottom:1054.410000px;}
.ya7{bottom:1055.130000px;}
.y1bf{bottom:1055.490000px;}
.y270{bottom:1055.670000px;}
.y133{bottom:1057.650000px;}
.y19a{bottom:1058.730000px;}
.y71{bottom:1065.390000px;}
.y1e0{bottom:1066.650000px;}
.y201{bottom:1069.710000px;}
.y17a{bottom:1070.430000px;}
.y35{bottom:1072.410000px;}
.ya6{bottom:1073.130000px;}
.y26f{bottom:1073.670000px;}
.y2e{bottom:1074.570000px;}
.y1bb{bottom:1079.070000px;}
.y130{bottom:1081.230000px;}
.y198{bottom:1082.310000px;}
.y70{bottom:1083.390000px;}
.y179{bottom:1087.890000px;}
.y34{bottom:1090.410000px;}
.ya5{bottom:1091.130000px;}
.y26e{bottom:1091.310000px;}
.y1dd{bottom:1091.850000px;}
.y202{bottom:1095.990000px;}
.y22f{bottom:1101.210000px;}
.y6f{bottom:1101.390000px;}
.y1bd{bottom:1102.830000px;}
.y12f{bottom:1103.910000px;}
.y178{bottom:1104.990000px;}
.y33{bottom:1108.410000px;}
.ya4{bottom:1109.130000px;}
.y6e{bottom:1119.210000px;}
.y1ff{bottom:1121.190000px;}
.y1ba{bottom:1125.690000px;}
.y26{bottom:1125.870000px;}
.y32{bottom:1126.230000px;}
.y174{bottom:1126.410000px;}
.y177{bottom:1126.590000px;}
.ya3{bottom:1126.950000px;}
.y26d{bottom:1127.130000px;}
.y2a{bottom:1135.410000px;}
.y6d{bottom:1137.210000px;}
.y176{bottom:1143.360000px;}
.y1b9{bottom:1147.860000px;}
.y173{bottom:1150.200000px;}
.y175{bottom:1151.280000px;}
.y31{bottom:1152.900000px;}
.y29{bottom:1153.440000px;}
.y26c{bottom:1153.620000px;}
.ya2{bottom:1153.980000px;}
.y6c{bottom:1155.240000px;}
.y12e{bottom:1155.780000px;}
.y1db{bottom:1168.380000px;}
.y1b8{bottom:1172.880000px;}
.y172{bottom:1174.680000px;}
.y6b{bottom:1183.140000px;}
.y30{bottom:1184.220000px;}
.y26b{bottom:1188.180000px;}
.y171{bottom:1188.900000px;}
.y2b{bottom:1201.140000px;}
.y26a{bottom:1207.260000px;}
.y2d{bottom:1219.500000px;}
.y269{bottom:1263.060000px;}
.h3b{height:5.011875px;}
.h4d{height:17.985000px;}
.h53{height:18.000000px;}
.h48{height:18.345000px;}
.h64{height:18.525000px;}
.h51{height:18.540000px;}
.h4b{height:18.705000px;}
.h2e{height:19.245000px;}
.h29{height:19.425000px;}
.h20{height:19.470000px;}
.h2b{height:19.605000px;}
.h1b{height:19.620000px;}
.h35{height:19.800000px;}
.h27{height:19.965000px;}
.h31{height:20.182500px;}
.h2f{height:20.505000px;}
.hc{height:20.520000px;}
.h55{height:21.060000px;}
.h4e{height:21.585000px;}
.h50{height:21.600000px;}
.h4f{height:21.622500px;}
.h36{height:21.630000px;}
.h38{height:21.765000px;}
.h54{height:21.780000px;}
.h21{height:22.845000px;}
.h19{height:22.860000px;}
.h4a{height:23.025000px;}
.h63{height:23.070000px;}
.h32{height:23.400000px;}
.h59{height:23.565000px;}
.h5c{height:23.580000px;}
.h60{height:24.285000px;}
.h57{height:24.465000px;}
.h61{height:25.365000px;}
.h43{height:25.380000px;}
.h58{height:25.545000px;}
.h41{height:25.560000px;}
.h5b{height:25.582500px;}
.h5d{height:25.590000px;}
.h42{height:25.596000px;}
.h44{height:25.740000px;}
.h4c{height:29.865000px;}
.h17{height:29.880000px;}
.h5a{height:30.045000px;}
.h52{height:30.060000px;}
.h30{height:30.225000px;}
.h2c{height:30.405000px;}
.h3f{height:34.905000px;}
.h39{height:35.445000px;}
.h37{height:36.165000px;}
.h26{height:37.785000px;}
.h40{height:37.800000px;}
.h25{height:37.821000px;}
.h22{height:37.965000px;}
.h62{height:37.980000px;}
.h34{height:39.468516px;}
.h13{height:41.974453px;}
.h47{height:42.105000px;}
.h5e{height:43.230000px;}
.h1f{height:44.480391px;}
.hb{height:45.374414px;}
.h28{height:45.705000px;}
.h1e{height:46.080000px;}
.h2a{height:46.425000px;}
.h18{height:46.440000px;}
.h1d{height:46.986328px;}
.h2d{height:47.408203px;}
.h49{height:49.583118px;}
.h5f{height:50.565000px;}
.h56{height:50.610000px;}
.h8{height:51.998203px;}
.hd{height:52.465078px;}
.h1c{height:55.503491px;}
.h6{height:57.636562px;}
.h3d{height:58.154062px;}
.ha{height:59.439023px;}
.h12{height:60.142500px;}
.h7{height:61.189805px;}
.h1a{height:61.423863px;}
.h5{height:62.648438px;}
.h3c{height:65.154375px;}
.h4{height:65.884219px;}
.h46{height:67.660313px;}
.h65{height:68.267813px;}
.h16{height:70.792734px;}
.h33{height:71.820000px;}
.h15{height:72.562500px;}
.h14{height:73.298672px;}
.h3a{height:75.804609px;}
.h10{height:77.342344px;}
.h11{height:80.949375px;}
.he{height:82.650000px;}
.h3e{height:84.070547px;}
.h9{height:84.630000px;}
.h23{height:85.125000px;}
.h24{height:85.161000px;}
.h3{height:86.255508px;}
.h2{height:98.051133px;}
.hf{height:245.581875px;}
.h45{height:543.300000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:39.814500px;}
.w1a{width:68.256000px;}
.w1c{width:72.000000px;}
.w28{width:75.270000px;}
.w27{width:77.025000px;}
.w2c{width:78.681000px;}
.w22{width:79.230000px;}
.w16{width:81.705000px;}
.wa{width:81.930000px;}
.w33{width:85.125000px;}
.w21{width:87.465000px;}
.wf{width:87.681000px;}
.w17{width:89.130000px;}
.w2d{width:91.425000px;}
.w1d{width:92.196000px;}
.w10{width:92.370000px;}
.w11{width:93.240000px;}
.wc{width:94.714500px;}
.w9{width:97.905000px;}
.w2e{width:100.650000px;}
.w34{width:102.090000px;}
.w8{width:120.621000px;}
.w19{width:129.780000px;}
.w7{width:140.616000px;}
.w25{width:145.281000px;}
.w31{width:146.721000px;}
.w2b{width:148.716000px;}
.w20{width:148.896000px;}
.w26{width:152.310000px;}
.w1b{width:164.190000px;}
.w14{width:165.435000px;}
.we{width:170.130000px;}
.w15{width:170.850000px;}
.w32{width:187.230000px;}
.w6{width:222.679500px;}
.w3{width:228.493500px;}
.wd{width:231.135000px;}
.w2a{width:278.299500px;}
.w1f{width:278.479500px;}
.w30{width:310.204500px;}
.w18{width:315.255000px;}
.w24{width:353.044500px;}
.w13{width:354.484500px;}
.w2f{width:644.175000px;}
.w23{width:650.655000px;}
.w5{width:663.975000px;}
.w1e{width:679.455000px;}
.w12{width:690.795000px;}
.w29{width:697.995000px;}
.w2{width:711.675000px;}
.wb{width:769.318500px;}
.w1{width:893.250000px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.xf{left:1.438500px;}
.xd{left:6.103500px;}
.x3e{left:7.365000px;}
.x6d{left:9.165000px;}
.x57{left:10.260000px;}
.x58{left:12.060000px;}
.x3b{left:13.485000px;}
.x28{left:14.749500px;}
.x3f{left:16.725000px;}
.x5a{left:17.820000px;}
.x37{left:19.080000px;}
.x48{left:20.700000px;}
.x3c{left:21.810000px;}
.x7a{left:22.860000px;}
.x29{left:23.929500px;}
.x2b{left:25.009500px;}
.x3d{left:26.085000px;}
.x22{left:27.349500px;}
.x25{left:28.440000px;}
.x39{left:29.910000px;}
.x63{left:31.125000px;}
.x2c{left:32.209500px;}
.x78{left:33.465000px;}
.x21{left:34.549500px;}
.x20{left:36.180000px;}
.x3a{left:37.800000px;}
.x2e{left:39.090000px;}
.x10{left:40.500000px;}
.x2f{left:41.923500px;}
.x24{left:43.005000px;}
.x64{left:44.280000px;}
.x2d{left:46.080000px;}
.x26{left:47.520000px;}
.x11{left:48.961500px;}
.x1f{left:51.105000px;}
.x8{left:53.100000px;}
.x15{left:55.620000px;}
.x16{left:57.600000px;}
.x27{left:59.565000px;}
.x30{left:62.461500px;}
.x66{left:64.969500px;}
.x80{left:70.920000px;}
.x14{left:74.340000px;}
.x6f{left:76.663500px;}
.x6c{left:77.923500px;}
.x2a{left:79.003500px;}
.x23{left:83.683500px;}
.x40{left:85.845000px;}
.x12{left:88.776000px;}
.x13{left:95.616000px;}
.x71{left:98.146500px;}
.x65{left:99.883500px;}
.x41{left:101.746500px;}
.x7c{left:104.023500px;}
.x5b{left:106.786500px;}
.x52{left:108.396000px;}
.x79{left:112.123500px;}
.x17{left:115.066500px;}
.x84{left:116.856000px;}
.x59{left:117.894000px;}
.x33{left:120.270000px;}
.x47{left:122.203500px;}
.x7b{left:124.966500px;}
.x42{left:127.063500px;}
.x67{left:129.808500px;}
.x6e{left:137.008500px;}
.x70{left:139.708500px;}
.x82{left:140.968500px;}
.x1a{left:142.228500px;}
.xc{left:144.406500px;}
.x1{left:145.836000px;}
.x19{left:148.708500px;}
.x32{left:157.185000px;}
.x6{left:159.150000px;}
.x18{left:160.588500px;}
.x72{left:169.768500px;}
.x51{left:175.350000px;}
.x5e{left:178.588500px;}
.x73{left:180.568500px;}
.x5d{left:183.988500px;}
.x7d{left:195.328500px;}
.x53{left:202.719000px;}
.x3{left:207.570000px;}
.x69{left:216.028500px;}
.x68{left:223.228500px;}
.x43{left:226.828500px;}
.x4{left:235.110000px;}
.x49{left:242.670000px;}
.xe{left:258.555000px;}
.x31{left:262.333500px;}
.x5c{left:266.475000px;}
.x5{left:274.755000px;}
.x4a{left:303.555000px;}
.x9{left:318.855000px;}
.x7{left:326.415000px;}
.x1b{left:337.755000px;}
.x5f{left:361.335000px;}
.x83{left:369.075000px;}
.x74{left:376.455000px;}
.x34{left:388.335000px;}
.x2{left:409.605000px;}
.x54{left:423.645000px;}
.x7e{left:435.180000px;}
.x50{left:453.885000px;}
.x44{left:456.240000px;}
.x4f{left:465.225000px;}
.x6a{left:474.780000px;}
.x1c{left:478.380000px;}
.x60{left:510.240000px;}
.x75{left:525.360000px;}
.x4b{left:546.945000px;}
.x55{left:553.425000px;}
.x35{left:558.480000px;}
.x4e{left:560.445000px;}
.x7f{left:581.910000px;}
.x61{left:597.930000px;}
.x1d{left:599.190000px;}
.x76{left:604.050000px;}
.x6b{left:620.070000px;}
.x45{left:621.690000px;}
.x4d{left:643.110000px;}
.x36{left:646.170000px;}
.x81{left:667.050000px;}
.xb{left:681.270000px;}
.x62{left:685.410000px;}
.xa{left:687.570000px;}
.x56{left:693.690000px;}
.x77{left:695.490000px;}
.x1e{left:697.110000px;}
.x46{left:703.410000px;}
.x38{left:738.540000px;}
.x4c{left:787.680000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls39{letter-spacing:-0.890667pt;}
.ls36{letter-spacing:-0.853333pt;}
.ls64{letter-spacing:-0.832000pt;}
.ls3d{letter-spacing:-0.757333pt;}
.lsc{letter-spacing:-0.741333pt;}
.ls2a{letter-spacing:-0.704000pt;}
.ls25{letter-spacing:-0.677333pt;}
.ls37{letter-spacing:-0.666667pt;}
.ls85{letter-spacing:-0.629333pt;}
.ls7d{letter-spacing:-0.624000pt;}
.ls6a{letter-spacing:-0.618667pt;}
.ls27{letter-spacing:-0.597333pt;}
.ls26{letter-spacing:-0.576000pt;}
.ls8b{letter-spacing:-0.549333pt;}
.ls82{letter-spacing:-0.544000pt;}
.ls2e{letter-spacing:-0.501867pt;}
.lsa{letter-spacing:-0.437333pt;}
.ls6d{letter-spacing:-0.417067pt;}
.ls46{letter-spacing:-0.404267pt;}
.ls59{letter-spacing:-0.400000pt;}
.ls8c{letter-spacing:-0.368533pt;}
.ls40{letter-spacing:-0.365867pt;}
.ls32{letter-spacing:-0.358400pt;}
.ls80{letter-spacing:-0.355733pt;}
.ls7e{letter-spacing:-0.329600pt;}
.ls6b{letter-spacing:-0.322667pt;}
.ls10{letter-spacing:-0.315733pt;}
.ls1b{letter-spacing:-0.314667pt;}
.ls60{letter-spacing:-0.288000pt;}
.ls88{letter-spacing:-0.276267pt;}
.ls1d{letter-spacing:-0.261867pt;}
.ls15{letter-spacing:-0.259200pt;}
.ls41{letter-spacing:-0.258667pt;}
.ls8{letter-spacing:-0.256533pt;}
.ls45{letter-spacing:-0.256000pt;}
.ls8d{letter-spacing:-0.250667pt;}
.ls51{letter-spacing:-0.240000pt;}
.ls4c{letter-spacing:-0.235733pt;}
.ls68{letter-spacing:-0.228267pt;}
.ls5a{letter-spacing:-0.224000pt;}
.ls33{letter-spacing:-0.214933pt;}
.ls5f{letter-spacing:-0.208000pt;}
.ls69{letter-spacing:-0.202133pt;}
.ls47{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.165867pt;}
.ls81{letter-spacing:-0.156267pt;}
.ls3a{letter-spacing:-0.148267pt;}
.ls86{letter-spacing:-0.135467pt;}
.ls2f{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.102933pt;}
.lse{letter-spacing:-0.102400pt;}
.ls3c{letter-spacing:-0.100267pt;}
.ls2b{letter-spacing:-0.097067pt;}
.ls4e{letter-spacing:-0.094933pt;}
.ls14{letter-spacing:-0.092267pt;}
.ls4d{letter-spacing:-0.086933pt;}
.ls65{letter-spacing:-0.064000pt;}
.ls8a{letter-spacing:-0.061333pt;}
.ls12{letter-spacing:-0.051733pt;}
.ls55{letter-spacing:-0.046720pt;}
.ls56{letter-spacing:-0.041600pt;}
.ls35{letter-spacing:-0.038400pt;}
.ls6c{letter-spacing:-0.035840pt;}
.ls38{letter-spacing:-0.028160pt;}
.ls50{letter-spacing:-0.009600pt;}
.ls5{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.011520pt;}
.ls87{letter-spacing:0.012800pt;}
.ls52{letter-spacing:0.016640pt;}
.ls2c{letter-spacing:0.020480pt;}
.ls24{letter-spacing:0.040960pt;}
.ls21{letter-spacing:0.043520pt;}
.ls16{letter-spacing:0.044267pt;}
.ls63{letter-spacing:0.048000pt;}
.ls18{letter-spacing:0.049067pt;}
.ls4{letter-spacing:0.061333pt;}
.ls34{letter-spacing:0.064000pt;}
.ls28{letter-spacing:0.066667pt;}
.ls1{letter-spacing:0.079467pt;}
.ls62{letter-spacing:0.083200pt;}
.ls79{letter-spacing:0.084267pt;}
.ls22{letter-spacing:0.089600pt;}
.ls71{letter-spacing:0.094933pt;}
.lsb{letter-spacing:0.095467pt;}
.ls43{letter-spacing:0.105067pt;}
.ls9{letter-spacing:0.109333pt;}
.ls5b{letter-spacing:0.112000pt;}
.ls5d{letter-spacing:0.118187pt;}
.ls73{letter-spacing:0.122667pt;}
.ls77{letter-spacing:0.130667pt;}
.ls7{letter-spacing:0.134400pt;}
.ls29{letter-spacing:0.138133pt;}
.ls58{letter-spacing:0.144000pt;}
.ls57{letter-spacing:0.160000pt;}
.ls4a{letter-spacing:0.170667pt;}
.ls89{letter-spacing:0.171733pt;}
.ls3b{letter-spacing:0.194667pt;}
.ls1f{letter-spacing:0.216533pt;}
.ls13{letter-spacing:0.218667pt;}
.ls31{letter-spacing:0.222933pt;}
.ls66{letter-spacing:0.227200pt;}
.ls83{letter-spacing:0.227733pt;}
.lsf{letter-spacing:0.233600pt;}
.ls44{letter-spacing:0.235733pt;}
.ls49{letter-spacing:0.240000pt;}
.ls1c{letter-spacing:0.244267pt;}
.ls54{letter-spacing:0.269333pt;}
.ls84{letter-spacing:0.271467pt;}
.ls61{letter-spacing:0.278933pt;}
.ls2d{letter-spacing:0.281600pt;}
.ls4b{letter-spacing:0.284160pt;}
.ls20{letter-spacing:0.287467pt;}
.ls48{letter-spacing:0.288000pt;}
.ls72{letter-spacing:0.291733pt;}
.ls42{letter-spacing:0.291840pt;}
.ls5e{letter-spacing:0.305067pt;}
.ls7f{letter-spacing:0.310400pt;}
.ls11{letter-spacing:0.324267pt;}
.lsd{letter-spacing:0.330133pt;}
.ls17{letter-spacing:0.380800pt;}
.ls3{letter-spacing:0.385280pt;}
.ls5c{letter-spacing:0.394667pt;}
.ls67{letter-spacing:0.438933pt;}
.ls0{letter-spacing:0.473600pt;}
.ls76{letter-spacing:0.486400pt;}
.ls23{letter-spacing:0.554667pt;}
.ls53{letter-spacing:0.592000pt;}
.ls4f{letter-spacing:0.597333pt;}
.ls1a{letter-spacing:0.682667pt;}
.ls70{letter-spacing:0.704000pt;}
.ls1e{letter-spacing:0.826667pt;}
.ls78{letter-spacing:1.766400pt;}
.ls6e{letter-spacing:4.326400pt;}
.ls3e{letter-spacing:5.606400pt;}
.ls2{letter-spacing:6.233600pt;}
.ls6f{letter-spacing:6.886400pt;}
.ls7b{letter-spacing:7.686400pt;}
.ls7a{letter-spacing:8.166400pt;}
.ls74{letter-spacing:10.086400pt;}
.ls3f{letter-spacing:13.286400pt;}
.ls75{letter-spacing:17.126400pt;}
.ls7c{letter-spacing:18.406400pt;}
.ws22{word-spacing:-55.193600pt;}
.ws1c{word-spacing:-25.922560pt;}
.ws2{word-spacing:-19.371520pt;}
.ws0{word-spacing:-19.298453pt;}
.ws3{word-spacing:-19.237120pt;}
.ws1{word-spacing:-19.071253pt;}
.ws5{word-spacing:-17.032213pt;}
.ws4{word-spacing:-16.666347pt;}
.ws6{word-spacing:-16.485547pt;}
.ws23{word-spacing:-15.247360pt;}
.ws24{word-spacing:-15.206400pt;}
.ws49{word-spacing:-14.144000pt;}
.ws43{word-spacing:-14.080000pt;}
.ws47{word-spacing:-13.888000pt;}
.ws44{word-spacing:-13.824000pt;}
.ws70{word-spacing:-13.657600pt;}
.ws8{word-spacing:-13.637013pt;}
.ws72{word-spacing:-13.245333pt;}
.ws2f{word-spacing:-13.235200pt;}
.ws87{word-spacing:-13.232533pt;}
.ws7b{word-spacing:-13.225067pt;}
.ws9{word-spacing:-13.204480pt;}
.ws48{word-spacing:-13.189333pt;}
.ws7a{word-spacing:-13.181333pt;}
.ws33{word-spacing:-13.176533pt;}
.ws80{word-spacing:-13.125333pt;}
.ws2a{word-spacing:-13.091733pt;}
.ws81{word-spacing:-13.084267pt;}
.ws76{word-spacing:-13.076267pt;}
.ws46{word-spacing:-13.058667pt;}
.ws71{word-spacing:-13.048533pt;}
.ws86{word-spacing:-13.037867pt;}
.ws83{word-spacing:-13.033067pt;}
.ws29{word-spacing:-13.020267pt;}
.ws36{word-spacing:-13.017600pt;}
.ws2c{word-spacing:-13.014933pt;}
.ws28{word-spacing:-12.997120pt;}
.ws2e{word-spacing:-12.974080pt;}
.ws7e{word-spacing:-12.966400pt;}
.ws3c{word-spacing:-12.953600pt;}
.ws3a{word-spacing:-12.925440pt;}
.ws37{word-spacing:-12.915200pt;}
.ws82{word-spacing:-12.892267pt;}
.ws6e{word-spacing:-12.861333pt;}
.ws2d{word-spacing:-12.856533pt;}
.ws31{word-spacing:-12.825600pt;}
.ws7d{word-spacing:-12.818133pt;}
.ws78{word-spacing:-12.797333pt;}
.ws6a{word-spacing:-12.751467pt;}
.ws35{word-spacing:-12.738667pt;}
.ws4a{word-spacing:-12.717867pt;}
.ws85{word-spacing:-12.702933pt;}
.ws42{word-spacing:-12.694933pt;}
.ws7f{word-spacing:-12.677333pt;}
.ws77{word-spacing:-12.597867pt;}
.ws34{word-spacing:-12.595200pt;}
.ws41{word-spacing:-12.587733pt;}
.ws84{word-spacing:-12.585067pt;}
.ws7{word-spacing:-12.565547pt;}
.ws45{word-spacing:-12.549333pt;}
.ws6f{word-spacing:-12.536533pt;}
.ws19{word-spacing:-12.513067pt;}
.ws30{word-spacing:-12.451733pt;}
.ws79{word-spacing:-12.409600pt;}
.ws26{word-spacing:-12.377600pt;}
.ws16{word-spacing:-12.369067pt;}
.ws27{word-spacing:-12.356267pt;}
.ws6b{word-spacing:-12.334933pt;}
.ws7c{word-spacing:-12.324267pt;}
.ws39{word-spacing:-12.286933pt;}
.ws4d{word-spacing:-12.283733pt;}
.ws53{word-spacing:-12.278400pt;}
.ws25{word-spacing:-12.276267pt;}
.ws2b{word-spacing:-12.249600pt;}
.ws21{word-spacing:-12.241067pt;}
.ws1b{word-spacing:-12.221653pt;}
.ws68{word-spacing:-12.125333pt;}
.ws38{word-spacing:-12.100267pt;}
.ws14{word-spacing:-12.067200pt;}
.ws3b{word-spacing:-12.062933pt;}
.wse{word-spacing:-12.010667pt;}
.wsa{word-spacing:-12.005120pt;}
.ws75{word-spacing:-11.996800pt;}
.ws5e{word-spacing:-11.991467pt;}
.ws20{word-spacing:-11.973867pt;}
.ws61{word-spacing:-11.965333pt;}
.ws54{word-spacing:-11.955733pt;}
.ws1a{word-spacing:-11.953387pt;}
.wsc{word-spacing:-11.920000pt;}
.ws67{word-spacing:-11.913600pt;}
.ws11{word-spacing:-11.905067pt;}
.ws66{word-spacing:-11.857067pt;}
.ws62{word-spacing:-11.769600pt;}
.ws10{word-spacing:-11.765867pt;}
.ws13{word-spacing:-11.730667pt;}
.ws52{word-spacing:-11.703040pt;}
.ws32{word-spacing:-11.697920pt;}
.wsb{word-spacing:-11.686400pt;}
.ws50{word-spacing:-11.676800pt;}
.ws6d{word-spacing:-11.650560pt;}
.ws57{word-spacing:-11.644800pt;}
.ws56{word-spacing:-11.639680pt;}
.wsf{word-spacing:-11.634667pt;}
.ws4b{word-spacing:-11.599467pt;}
.ws4c{word-spacing:-11.591467pt;}
.ws15{word-spacing:-11.583467pt;}
.ws69{word-spacing:-11.458133pt;}
.ws12{word-spacing:-11.427200pt;}
.ws18{word-spacing:-11.424533pt;}
.ws17{word-spacing:-11.371733pt;}
.wsd{word-spacing:-11.370667pt;}
.ws6c{word-spacing:-11.363733pt;}
.ws74{word-spacing:-11.356800pt;}
.ws73{word-spacing:-11.062400pt;}
.ws55{word-spacing:-10.848000pt;}
.ws4e{word-spacing:-10.800000pt;}
.ws5c{word-spacing:-10.720000pt;}
.ws58{word-spacing:-10.704000pt;}
.ws5b{word-spacing:-10.672000pt;}
.ws63{word-spacing:-10.608000pt;}
.ws4f{word-spacing:-10.560000pt;}
.ws65{word-spacing:-10.496000pt;}
.ws5d{word-spacing:-10.368000pt;}
.ws5f{word-spacing:-10.352000pt;}
.ws5a{word-spacing:-10.336000pt;}
.ws51{word-spacing:-10.320000pt;}
.ws60{word-spacing:-10.272000pt;}
.ws59{word-spacing:-10.160000pt;}
.ws64{word-spacing:-9.728000pt;}
.ws3e{word-spacing:-9.628267pt;}
.ws3f{word-spacing:-9.333333pt;}
.ws3d{word-spacing:-9.285333pt;}
.ws40{word-spacing:-8.676267pt;}
.ws1d{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.613333pt;}
.ws1e{word-spacing:0.693333pt;}
._11{margin-left:-7.330868pt;}
._b{margin-left:-5.818880pt;}
._c{margin-left:-4.728558pt;}
._0{margin-left:-3.485689pt;}
._2{margin-left:-2.536284pt;}
._3{margin-left:-1.006384pt;}
._1{width:0.895232pt;}
._4{width:1.844273pt;}
._a{width:3.063484pt;}
._7{width:4.650026pt;}
._5{width:6.233579pt;}
._6{width:7.352867pt;}
._e{width:8.360960pt;}
._8{width:9.296000pt;}
._9{width:10.641046pt;}
._10{width:12.056747pt;}
._f{width:14.086301pt;}
._15{width:17.612800pt;}
._16{width:19.035642pt;}
._17{width:20.059377pt;}
._14{width:21.661653pt;}
._13{width:22.617904pt;}
._12{width:26.328747pt;}
._d{width:27.374080pt;}
._19{width:33.074773pt;}
._18{width:36.561067pt;}
.fsf{font-size:5.120000pt;}
.fs7{font-size:34.560000pt;}
.fsd{font-size:40.320000pt;}
.fs9{font-size:42.880000pt;}
.fsc{font-size:45.440000pt;}
.fsb{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs8{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs10{font-size:66.560000pt;}
.fs6{font-size:69.120000pt;}
.fsa{font-size:72.320000pt;}
.fs1{font-size:74.880000pt;}
.fse{font-size:77.440000pt;}
.fs0{font-size:85.120000pt;}
.fs5{font-size:250.880000pt;}
.y1b7{bottom:-14.080000pt;}
.y0{bottom:0.000000pt;}
.y1c5{bottom:2.560000pt;}
.y1e7{bottom:2.720000pt;}
.y139{bottom:2.880000pt;}
.y121{bottom:3.186667pt;}
.y135{bottom:3.200000pt;}
.y13f{bottom:3.360000pt;}
.yee{bottom:3.520000pt;}
.y1ce{bottom:3.680000pt;}
.y1c2{bottom:3.840000pt;}
.yea{bottom:4.000000pt;}
.y11d{bottom:4.146667pt;}
.y2c{bottom:4.320000pt;}
.y1f1{bottom:4.480000pt;}
.y165{bottom:4.640000pt;}
.y110{bottom:4.946667pt;}
.ye7{bottom:4.960000pt;}
.y10d{bottom:4.986667pt;}
.y128{bottom:5.106667pt;}
.ye4{bottom:5.120000pt;}
.y14e{bottom:5.280000pt;}
.y145{bottom:5.320000pt;}
.y111{bottom:5.586667pt;}
.yf6{bottom:5.600000pt;}
.y102{bottom:5.760000pt;}
.y13d{bottom:5.920000pt;}
.y1dc{bottom:6.080000pt;}
.y13c{bottom:6.240000pt;}
.y1f4{bottom:6.266667pt;}
.y127{bottom:6.386667pt;}
.yf5{bottom:6.400000pt;}
.ye9{bottom:6.560000pt;}
.y1b0{bottom:6.720000pt;}
.y11c{bottom:6.866667pt;}
.y1a1{bottom:6.880000pt;}
.y1f5{bottom:6.906667pt;}
.y1b2{bottom:7.040000pt;}
.y144{bottom:7.080000pt;}
.y157{bottom:7.200000pt;}
.y15c{bottom:7.360000pt;}
.y1a4{bottom:8.000000pt;}
.ye6{bottom:8.320000pt;}
.y141{bottom:8.480000pt;}
.y123{bottom:8.626667pt;}
.yf0{bottom:8.640000pt;}
.y147{bottom:8.800000pt;}
.y1c6{bottom:8.960000pt;}
.y1d1{bottom:9.120000pt;}
.y19b{bottom:9.440000pt;}
.y1be{bottom:9.600000pt;}
.y1e1{bottom:9.760000pt;}
.y206{bottom:10.560000pt;}
.y1e4{bottom:10.720000pt;}
.y20b{bottom:10.760000pt;}
.y15a{bottom:10.880000pt;}
.y19d{bottom:11.040000pt;}
.y160{bottom:11.200000pt;}
.y166{bottom:11.360000pt;}
.y119{bottom:11.506667pt;}
.y19e{bottom:11.520000pt;}
.y10e{bottom:11.546667pt;}
.yfa{bottom:11.680000pt;}
.y1a0{bottom:11.840000pt;}
.y1b4{bottom:11.866667pt;}
.y142{bottom:12.000000pt;}
.y13a{bottom:12.160000pt;}
.y11a{bottom:12.306667pt;}
.y1a7{bottom:12.320000pt;}
.y10f{bottom:12.346667pt;}
.yfb{bottom:12.480000pt;}
.y109{bottom:12.626667pt;}
.y2f{bottom:13.920000pt;}
.y14c{bottom:14.080000pt;}
.y137{bottom:15.040000pt;}
.y124{bottom:15.346667pt;}
.yf1{bottom:15.360000pt;}
.y1c4{bottom:15.840000pt;}
.y125{bottom:15.986667pt;}
.y1d0{bottom:16.000000pt;}
.yf3{bottom:16.160000pt;}
.y138{bottom:16.320000pt;}
.y120{bottom:16.626667pt;}
.yed{bottom:16.800000pt;}
.y15f{bottom:17.760000pt;}
.y164{bottom:17.920000pt;}
.y118{bottom:18.226667pt;}
.y159{bottom:18.240000pt;}
.y10c{bottom:18.266667pt;}
.yf9{bottom:18.400000pt;}
.y20d{bottom:19.040000pt;}
.y101{bottom:19.360000pt;}
.y199{bottom:20.160000pt;}
.y122{bottom:21.906667pt;}
.yef{bottom:22.080000pt;}
.y200{bottom:25.786667pt;}
.y115{bottom:25.906667pt;}
.ye3{bottom:25.920000pt;}
.y108{bottom:25.946667pt;}
.y1bc{bottom:26.240000pt;}
.y14b{bottom:27.360000pt;}
.y1a6{bottom:27.680000pt;}
.y132{bottom:29.280000pt;}
.y1de{bottom:29.600000pt;}
.y11f{bottom:29.906667pt;}
.yf2{bottom:29.920000pt;}
.yec{bottom:30.240000pt;}
.y100{bottom:32.640000pt;}
.y1df{bottom:32.960000pt;}
.y114{bottom:39.186667pt;}
.y107{bottom:39.226667pt;}
.y28{bottom:40.506667pt;}
.y14a{bottom:40.800000pt;}
.yff{bottom:45.920000pt;}
.y113{bottom:52.626667pt;}
.y106{bottom:52.666667pt;}
.y149{bottom:53.760000pt;}
.y27{bottom:56.506667pt;}
.yfe{bottom:59.200000pt;}
.y298{bottom:74.560000pt;}
.y12d{bottom:86.400000pt;}
.y6a{bottom:87.040000pt;}
.y297{bottom:90.400000pt;}
.y22e{bottom:97.920000pt;}
.y12c{bottom:102.400000pt;}
.y69{bottom:104.800000pt;}
.y296{bottom:106.400000pt;}
.y22d{bottom:113.920000pt;}
.y251{bottom:115.680000pt;}
.y12b{bottom:118.400000pt;}
.y295{bottom:122.400000pt;}
.y68{bottom:122.560000pt;}
.ya1{bottom:127.520000pt;}
.y22c{bottom:129.920000pt;}
.y250{bottom:131.680000pt;}
.yd5{bottom:133.440000pt;}
.y12a{bottom:134.400000pt;}
.y294{bottom:138.400000pt;}
.y67{bottom:138.880000pt;}
.ya0{bottom:143.546667pt;}
.y22b{bottom:145.786667pt;}
.y24f{bottom:147.706667pt;}
.yd4{bottom:149.466667pt;}
.y293{bottom:154.426667pt;}
.y66{bottom:154.906667pt;}
.y129{bottom:157.786667pt;}
.y9f{bottom:159.386667pt;}
.y22a{bottom:161.786667pt;}
.y24e{bottom:163.546667pt;}
.yd3{bottom:165.466667pt;}
.y292{bottom:170.266667pt;}
.y25{bottom:170.746667pt;}
.y65{bottom:170.906667pt;}
.y9e{bottom:175.386667pt;}
.y24d{bottom:179.546667pt;}
.yd2{bottom:181.466667pt;}
.y229{bottom:185.626667pt;}
.y126{bottom:186.440000pt;}
.y64{bottom:186.746667pt;}
.y9d{bottom:191.386667pt;}
.y24{bottom:192.506667pt;}
.y24c{bottom:195.546667pt;}
.yd1{bottom:197.466667pt;}
.y63{bottom:202.746667pt;}
.y170{bottom:203.546667pt;}
.y11e{bottom:203.720000pt;}
.y24b{bottom:211.546667pt;}
.y228{bottom:212.026667pt;}
.yd0{bottom:213.306667pt;}
.y9c{bottom:215.226667pt;}
.y291{bottom:218.426667pt;}
.y62{bottom:218.746667pt;}
.y16f{bottom:219.546667pt;}
.y24a{bottom:227.546667pt;}
.y227{bottom:228.026667pt;}
.ycf{bottom:229.466667pt;}
.y290{bottom:234.426667pt;}
.y61{bottom:234.746667pt;}
.y16e{bottom:235.546667pt;}
.y9b{bottom:240.346667pt;}
.y249{bottom:243.546667pt;}
.y226{bottom:244.026667pt;}
.y11b{bottom:244.360000pt;}
.yce{bottom:245.466667pt;}
.y28f{bottom:250.426667pt;}
.y60{bottom:250.746667pt;}
.y16d{bottom:251.546667pt;}
.y9a{bottom:256.346667pt;}
.y248{bottom:259.546667pt;}
.y225{bottom:260.026667pt;}
.ycd{bottom:261.466667pt;}
.y112{bottom:262.760000pt;}
.y28e{bottom:266.426667pt;}
.y5f{bottom:266.746667pt;}
.y16c{bottom:267.546667pt;}
.y99{bottom:272.346667pt;}
.y247{bottom:275.386667pt;}
.y224{bottom:276.026667pt;}
.ycc{bottom:277.466667pt;}
.y28d{bottom:282.266667pt;}
.y5e{bottom:282.746667pt;}
.y16b{bottom:283.386667pt;}
.y117{bottom:283.720000pt;}
.y23{bottom:286.106667pt;}
.y98{bottom:288.346667pt;}
.y246{bottom:291.386667pt;}
.y223{bottom:291.866667pt;}
.ycb{bottom:293.306667pt;}
.y28c{bottom:298.266667pt;}
.y5d{bottom:298.586667pt;}
.y16a{bottom:299.386667pt;}
.y1d{bottom:301.626667pt;}
.y22{bottom:302.106667pt;}
.y97{bottom:304.186667pt;}
.y245{bottom:307.386667pt;}
.y222{bottom:308.026667pt;}
.yca{bottom:309.306667pt;}
.y28b{bottom:314.426667pt;}
.y5c{bottom:314.586667pt;}
.y169{bottom:315.226667pt;}
.y1c{bottom:317.786667pt;}
.y21{bottom:317.946667pt;}
.y116{bottom:318.120000pt;}
.y96{bottom:320.186667pt;}
.y244{bottom:323.386667pt;}
.y221{bottom:324.026667pt;}
.yc9{bottom:325.306667pt;}
.y28a{bottom:330.266667pt;}
.y5b{bottom:330.586667pt;}
.y1b{bottom:333.626667pt;}
.y20{bottom:333.786667pt;}
.y168{bottom:338.906667pt;}
.y105{bottom:339.080000pt;}
.y243{bottom:339.386667pt;}
.y220{bottom:340.026667pt;}
.y95{bottom:344.186667pt;}
.y289{bottom:346.266667pt;}
.y5a{bottom:346.586667pt;}
.yc8{bottom:349.146667pt;}
.y1a{bottom:349.466667pt;}
.y1f{bottom:349.786667pt;}
.y242{bottom:355.386667pt;}
.y21f{bottom:355.866667pt;}
.y10b{bottom:360.040000pt;}
.y288{bottom:362.306667pt;}
.y59{bottom:362.626667pt;}
.y19{bottom:365.506667pt;}
.y1e{bottom:365.666667pt;}
.y167{bottom:366.626667pt;}
.y241{bottom:371.266667pt;}
.y21e{bottom:372.066667pt;}
.yc7{bottom:374.306667pt;}
.y94{bottom:377.026667pt;}
.y287{bottom:378.306667pt;}
.y58{bottom:378.626667pt;}
.y18{bottom:381.506667pt;}
.y163{bottom:386.626667pt;}
.y240{bottom:387.266667pt;}
.y21d{bottom:387.906667pt;}
.y1fe{bottom:389.986667pt;}
.yc6{bottom:390.306667pt;}
.y286{bottom:394.306667pt;}
.y10a{bottom:394.466667pt;}
.y57{bottom:394.626667pt;}
.y17{bottom:397.506667pt;}
.y23f{bottom:403.266667pt;}
.y93{bottom:403.426667pt;}
.y21c{bottom:403.906667pt;}
.y1fd{bottom:405.826667pt;}
.yc5{bottom:406.306667pt;}
.y285{bottom:410.146667pt;}
.y56{bottom:410.626667pt;}
.yfd{bottom:415.426667pt;}
.y162{bottom:418.786667pt;}
.y23e{bottom:419.266667pt;}
.y92{bottom:419.426667pt;}
.y1fc{bottom:421.826667pt;}
.yc4{bottom:422.306667pt;}
.y21b{bottom:422.786667pt;}
.y16{bottom:424.386667pt;}
.y284{bottom:426.306667pt;}
.y55{bottom:426.626667pt;}
.y197{bottom:427.426667pt;}
.y91{bottom:435.266667pt;}
.y104{bottom:436.386667pt;}
.y1fb{bottom:437.826667pt;}
.yc3{bottom:438.146667pt;}
.y161{bottom:438.786667pt;}
.y283{bottom:442.306667pt;}
.y54{bottom:442.466667pt;}
.y196{bottom:443.426667pt;}
.y90{bottom:451.266667pt;}
.y23d{bottom:451.426667pt;}
.y1fa{bottom:453.826667pt;}
.yc2{bottom:454.146667pt;}
.y282{bottom:458.306667pt;}
.y53{bottom:458.466667pt;}
.y15e{bottom:458.786667pt;}
.y195{bottom:459.426667pt;}
.y21a{bottom:465.506667pt;}
.y8f{bottom:467.266667pt;}
.y1f9{bottom:469.826667pt;}
.yc1{bottom:470.146667pt;}
.y103{bottom:470.786667pt;}
.y281{bottom:474.146667pt;}
.y52{bottom:474.466667pt;}
.y194{bottom:475.266667pt;}
.y219{bottom:482.626667pt;}
.y8e{bottom:483.266667pt;}
.y1f8{bottom:485.666667pt;}
.yc0{bottom:486.146667pt;}
.y280{bottom:490.146667pt;}
.y51{bottom:490.466667pt;}
.y15d{bottom:490.946667pt;}
.yfc{bottom:491.746667pt;}
.y8d{bottom:499.266667pt;}
.ybf{bottom:502.146667pt;}
.y218{bottom:502.626667pt;}
.y15{bottom:503.586667pt;}
.y193{bottom:504.546667pt;}
.y27f{bottom:506.146667pt;}
.y50{bottom:506.626667pt;}
.y1f7{bottom:509.186667pt;}
.y1b6{bottom:510.146667pt;}
.y1b5{bottom:510.626667pt;}
.y268{bottom:510.786667pt;}
.y15b{bottom:511.906667pt;}
.yf8{bottom:512.706667pt;}
.y8c{bottom:515.266667pt;}
.y1da{bottom:517.666667pt;}
.ybe{bottom:518.146667pt;}
.yf{bottom:519.266667pt;}
.y14{bottom:519.426667pt;}
.y192{bottom:521.666667pt;}
.y27e{bottom:522.146667pt;}
.y4f{bottom:522.626667pt;}
.y267{bottom:526.786667pt;}
.y8b{bottom:531.106667pt;}
.y23c{bottom:531.266667pt;}
.y158{bottom:531.906667pt;}
.y1d9{bottom:533.666667pt;}
.ybd{bottom:534.146667pt;}
.y1f6{bottom:534.626667pt;}
.ye{bottom:535.106667pt;}
.y13{bottom:535.266667pt;}
.y27d{bottom:538.146667pt;}
.y4e{bottom:538.466667pt;}
.y191{bottom:538.626667pt;}
.y217{bottom:542.626667pt;}
.y266{bottom:542.786667pt;}
.yf7{bottom:547.106667pt;}
.y8a{bottom:547.266667pt;}
.y1d8{bottom:549.666667pt;}
.yd{bottom:550.946667pt;}
.y12{bottom:551.266667pt;}
.y27c{bottom:553.986667pt;}
.y4d{bottom:554.466667pt;}
.y190{bottom:556.066667pt;}
.ybc{bottom:557.986667pt;}
.y265{bottom:558.626667pt;}
.y216{bottom:562.626667pt;}
.y89{bottom:563.266667pt;}
.y156{bottom:564.866667pt;}
.y1d7{bottom:565.666667pt;}
.yc{bottom:566.946667pt;}
.y11{bottom:567.106667pt;}
.yf4{bottom:568.066667pt;}
.y1b3{bottom:568.386667pt;}
.y4c{bottom:570.466667pt;}
.y1f3{bottom:574.306667pt;}
.y23b{bottom:579.133333pt;}
.y88{bottom:579.293333pt;}
.y18f{bottom:580.253333pt;}
.y1d6{bottom:582.013333pt;}
.y264{bottom:582.653333pt;}
.yb{bottom:582.813333pt;}
.y10{bottom:582.973333pt;}
.y215{bottom:583.773333pt;}
.y155{bottom:584.893333pt;}
.yeb{bottom:585.373333pt;}
.y27b{bottom:586.173333pt;}
.y4b{bottom:586.493333pt;}
.ybb{bottom:590.813333pt;}
.y1b1{bottom:591.773333pt;}
.y23a{bottom:595.133333pt;}
.y87{bottom:595.293333pt;}
.y18e{bottom:597.373333pt;}
.y1f2{bottom:597.693333pt;}
.y1d5{bottom:598.333333pt;}
.ya{bottom:598.973333pt;}
.y27a{bottom:602.173333pt;}
.y4a{bottom:602.493333pt;}
.y214{bottom:603.773333pt;}
.y263{bottom:609.053333pt;}
.y239{bottom:611.133333pt;}
.y86{bottom:611.293333pt;}
.y18d{bottom:614.333333pt;}
.y9{bottom:614.813333pt;}
.y1af{bottom:615.293333pt;}
.yba{bottom:617.213333pt;}
.y279{bottom:618.013333pt;}
.y1d4{bottom:618.333333pt;}
.y49{bottom:618.493333pt;}
.y1f0{bottom:621.053333pt;}
.y262{bottom:625.053333pt;}
.ye8{bottom:626.333333pt;}
.y154{bottom:626.973333pt;}
.y85{bottom:627.293333pt;}
.y18c{bottom:631.133333pt;}
.yb9{bottom:633.213333pt;}
.y278{bottom:634.173333pt;}
.y48{bottom:634.493333pt;}
.y1d3{bottom:638.333333pt;}
.y1ae{bottom:638.653333pt;}
.y261{bottom:641.053333pt;}
.y8{bottom:641.693333pt;}
.y1ef{bottom:642.173333pt;}
.y84{bottom:643.133333pt;}
.y238{bottom:643.293333pt;}
.ye2{bottom:644.413333pt;}
.y213{bottom:645.853333pt;}
.y153{bottom:647.133333pt;}
.yb8{bottom:649.053333pt;}
.y277{bottom:650.173333pt;}
.y47{bottom:650.333333pt;}
.y18b{bottom:652.573333pt;}
.y260{bottom:657.053333pt;}
.y1d2{bottom:658.333333pt;}
.y83{bottom:659.133333pt;}
.y237{bottom:659.293333pt;}
.y152{bottom:660.733333pt;}
.y1ad{bottom:662.013333pt;}
.yb7{bottom:665.213333pt;}
.ye5{bottom:665.373333pt;}
.y212{bottom:666.013333pt;}
.y276{bottom:666.173333pt;}
.y46{bottom:666.333333pt;}
.y1ee{bottom:669.533333pt;}
.y18a{bottom:669.693333pt;}
.y25f{bottom:673.053333pt;}
.y1cf{bottom:674.333333pt;}
.y82{bottom:675.133333pt;}
.y151{bottom:676.573333pt;}
.y211{bottom:679.613333pt;}
.yb6{bottom:681.213333pt;}
.y45{bottom:682.333333pt;}
.y275{bottom:682.493333pt;}
.y1ac{bottom:685.373333pt;}
.ye1{bottom:686.493333pt;}
.y189{bottom:686.973333pt;}
.y25e{bottom:688.893333pt;}
.y81{bottom:691.133333pt;}
.y150{bottom:692.573333pt;}
.y210{bottom:695.453333pt;}
.yb5{bottom:697.213333pt;}
.y44{bottom:698.333333pt;}
.y274{bottom:698.493333pt;}
.y1cd{bottom:701.053333pt;}
.y188{bottom:704.093333pt;}
.y25d{bottom:704.893333pt;}
.y80{bottom:707.133333pt;}
.y1ab{bottom:708.733333pt;}
.y14f{bottom:709.533333pt;}
.y20f{bottom:711.933333pt;}
.yb4{bottom:713.053333pt;}
.y43{bottom:714.333333pt;}
.y1ed{bottom:714.493333pt;}
.ye0{bottom:715.613333pt;}
.y1cc{bottom:718.333333pt;}
.y25c{bottom:720.893333pt;}
.y187{bottom:721.373333pt;}
.y7f{bottom:722.973333pt;}
.y236{bottom:723.133333pt;}
.y148{bottom:727.453333pt;}
.ydf{bottom:729.053333pt;}
.y42{bottom:730.333333pt;}
.y20e{bottom:730.493333pt;}
.y1aa{bottom:732.093333pt;}
.y25b{bottom:736.893333pt;}
.yb3{bottom:737.053333pt;}
.y1ec{bottom:737.853333pt;}
.y7{bottom:738.013333pt;}
.y1cb{bottom:738.333333pt;}
.y186{bottom:738.493333pt;}
.y235{bottom:739.133333pt;}
.y7e{bottom:739.293333pt;}
.yde{bottom:745.053333pt;}
.y41{bottom:746.173333pt;}
.y14d{bottom:749.053333pt;}
.y25a{bottom:752.893333pt;}
.y20c{bottom:753.853333pt;}
.y6{bottom:754.653333pt;}
.y234{bottom:755.133333pt;}
.y7d{bottom:755.293333pt;}
.y1a9{bottom:755.453333pt;}
.y185{bottom:755.773333pt;}
.y1ca{bottom:758.333333pt;}
.ydd{bottom:761.053333pt;}
.y1eb{bottom:761.213333pt;}
.yb2{bottom:762.013333pt;}
.y40{bottom:762.333333pt;}
.y259{bottom:768.893333pt;}
.y146{bottom:770.493333pt;}
.y7c{bottom:771.133333pt;}
.y184{bottom:772.893333pt;}
.ydc{bottom:776.893333pt;}
.yb1{bottom:778.013333pt;}
.y273{bottom:778.173333pt;}
.y3f{bottom:778.333333pt;}
.y1a8{bottom:778.813333pt;}
.y1ea{bottom:784.573333pt;}
.y258{bottom:784.893333pt;}
.y233{bottom:786.973333pt;}
.y7b{bottom:787.133333pt;}
.y20a{bottom:788.253333pt;}
.y183{bottom:790.173333pt;}
.y143{bottom:791.933333pt;}
.ydb{bottom:793.053333pt;}
.y5{bottom:793.693333pt;}
.yb0{bottom:793.853333pt;}
.y272{bottom:794.173333pt;}
.y3e{bottom:794.333333pt;}
.y1c9{bottom:798.373333pt;}
.y257{bottom:800.773333pt;}
.y1a5{bottom:802.213333pt;}
.y232{bottom:803.013333pt;}
.y7a{bottom:803.173333pt;}
.y182{bottom:807.013333pt;}
.y1e9{bottom:807.973333pt;}
.yda{bottom:809.093333pt;}
.y140{bottom:809.893333pt;}
.yaf{bottom:810.053333pt;}
.y3d{bottom:810.213333pt;}
.y4{bottom:810.693333pt;}
.y209{bottom:811.653333pt;}
.y256{bottom:816.773333pt;}
.y1c8{bottom:818.373333pt;}
.y231{bottom:819.013333pt;}
.y79{bottom:819.173333pt;}
.y181{bottom:823.493333pt;}
.yd9{bottom:825.093333pt;}
.yae{bottom:826.053333pt;}
.y3c{bottom:826.213333pt;}
.y1e8{bottom:831.333333pt;}
.y208{bottom:832.773333pt;}
.y78{bottom:835.173333pt;}
.y1a3{bottom:836.613333pt;}
.y13e{bottom:837.413333pt;}
.y1c7{bottom:838.373333pt;}
.yd8{bottom:841.093333pt;}
.yad{bottom:842.053333pt;}
.y180{bottom:843.173333pt;}
.y255{bottom:848.773333pt;}
.y3b{bottom:849.893333pt;}
.y77{bottom:851.173333pt;}
.y1e6{bottom:852.453333pt;}
.y1c3{bottom:854.373333pt;}
.y13b{bottom:856.293333pt;}
.yd7{bottom:856.933333pt;}
.yac{bottom:858.053333pt;}
.y1a2{bottom:859.973333pt;}
.y207{bottom:860.133333pt;}
.y17f{bottom:860.293333pt;}
.y254{bottom:864.773333pt;}
.y3a{bottom:865.733333pt;}
.y230{bottom:867.013333pt;}
.y76{bottom:867.173333pt;}
.y3{bottom:871.973333pt;}
.y136{bottom:873.413333pt;}
.yab{bottom:873.893333pt;}
.y17e{bottom:877.413333pt;}
.y1e5{bottom:879.813333pt;}
.y253{bottom:880.773333pt;}
.yd6{bottom:880.933333pt;}
.y39{bottom:881.733333pt;}
.y205{bottom:881.893333pt;}
.y75{bottom:883.013333pt;}
.y19f{bottom:883.333333pt;}
.yaa{bottom:890.053333pt;}
.y17d{bottom:894.693333pt;}
.y1c1{bottom:898.213333pt;}
.y74{bottom:899.013333pt;}
.y2{bottom:899.333333pt;}
.y134{bottom:901.093333pt;}
.y1e3{bottom:901.413333pt;}
.y252{bottom:904.613333pt;}
.y204{bottom:905.093333pt;}
.y38{bottom:905.413333pt;}
.ya9{bottom:906.053333pt;}
.y19c{bottom:906.693333pt;}
.y17c{bottom:911.653333pt;}
.y73{bottom:915.013333pt;}
.y1c0{bottom:918.213333pt;}
.y131{bottom:919.173333pt;}
.y37{bottom:921.253333pt;}
.ya8{bottom:921.893333pt;}
.y271{bottom:922.053333pt;}
.y1{bottom:923.333333pt;}
.y1e2{bottom:924.773333pt;}
.y203{bottom:928.613333pt;}
.y72{bottom:931.013333pt;}
.y17b{bottom:934.213333pt;}
.y36{bottom:937.253333pt;}
.ya7{bottom:937.893333pt;}
.y1bf{bottom:938.213333pt;}
.y270{bottom:938.373333pt;}
.y133{bottom:940.133333pt;}
.y19a{bottom:941.093333pt;}
.y71{bottom:947.013333pt;}
.y1e0{bottom:948.133333pt;}
.y201{bottom:950.853333pt;}
.y17a{bottom:951.493333pt;}
.y35{bottom:953.253333pt;}
.ya6{bottom:953.893333pt;}
.y26f{bottom:954.373333pt;}
.y2e{bottom:955.173333pt;}
.y1bb{bottom:959.173333pt;}
.y130{bottom:961.093333pt;}
.y198{bottom:962.053333pt;}
.y70{bottom:963.013333pt;}
.y179{bottom:967.013333pt;}
.y34{bottom:969.253333pt;}
.ya5{bottom:969.893333pt;}
.y26e{bottom:970.053333pt;}
.y1dd{bottom:970.533333pt;}
.y202{bottom:974.213333pt;}
.y22f{bottom:978.853333pt;}
.y6f{bottom:979.013333pt;}
.y1bd{bottom:980.293333pt;}
.y12f{bottom:981.253333pt;}
.y178{bottom:982.213333pt;}
.y33{bottom:985.253333pt;}
.ya4{bottom:985.893333pt;}
.y6e{bottom:994.853333pt;}
.y1ff{bottom:996.613333pt;}
.y1ba{bottom:1000.613333pt;}
.y26{bottom:1000.773333pt;}
.y32{bottom:1001.093333pt;}
.y174{bottom:1001.253333pt;}
.y177{bottom:1001.413333pt;}
.ya3{bottom:1001.733333pt;}
.y26d{bottom:1001.893333pt;}
.y2a{bottom:1009.253333pt;}
.y6d{bottom:1010.853333pt;}
.y176{bottom:1016.320000pt;}
.y1b9{bottom:1020.320000pt;}
.y173{bottom:1022.400000pt;}
.y175{bottom:1023.360000pt;}
.y31{bottom:1024.800000pt;}
.y29{bottom:1025.280000pt;}
.y26c{bottom:1025.440000pt;}
.ya2{bottom:1025.760000pt;}
.y6c{bottom:1026.880000pt;}
.y12e{bottom:1027.360000pt;}
.y1db{bottom:1038.560000pt;}
.y1b8{bottom:1042.560000pt;}
.y172{bottom:1044.160000pt;}
.y6b{bottom:1051.680000pt;}
.y30{bottom:1052.640000pt;}
.y26b{bottom:1056.160000pt;}
.y171{bottom:1056.800000pt;}
.y2b{bottom:1067.680000pt;}
.y26a{bottom:1073.120000pt;}
.y2d{bottom:1084.000000pt;}
.y269{bottom:1122.720000pt;}
.h3b{height:4.455000pt;}
.h4d{height:15.986667pt;}
.h53{height:16.000000pt;}
.h48{height:16.306667pt;}
.h64{height:16.466667pt;}
.h51{height:16.480000pt;}
.h4b{height:16.626667pt;}
.h2e{height:17.106667pt;}
.h29{height:17.266667pt;}
.h20{height:17.306667pt;}
.h2b{height:17.426667pt;}
.h1b{height:17.440000pt;}
.h35{height:17.600000pt;}
.h27{height:17.746667pt;}
.h31{height:17.940000pt;}
.h2f{height:18.226667pt;}
.hc{height:18.240000pt;}
.h55{height:18.720000pt;}
.h4e{height:19.186667pt;}
.h50{height:19.200000pt;}
.h4f{height:19.220000pt;}
.h36{height:19.226667pt;}
.h38{height:19.346667pt;}
.h54{height:19.360000pt;}
.h21{height:20.306667pt;}
.h19{height:20.320000pt;}
.h4a{height:20.466667pt;}
.h63{height:20.506667pt;}
.h32{height:20.800000pt;}
.h59{height:20.946667pt;}
.h5c{height:20.960000pt;}
.h60{height:21.586667pt;}
.h57{height:21.746667pt;}
.h61{height:22.546667pt;}
.h43{height:22.560000pt;}
.h58{height:22.706667pt;}
.h41{height:22.720000pt;}
.h5b{height:22.740000pt;}
.h5d{height:22.746667pt;}
.h42{height:22.752000pt;}
.h44{height:22.880000pt;}
.h4c{height:26.546667pt;}
.h17{height:26.560000pt;}
.h5a{height:26.706667pt;}
.h52{height:26.720000pt;}
.h30{height:26.866667pt;}
.h2c{height:27.026667pt;}
.h3f{height:31.026667pt;}
.h39{height:31.506667pt;}
.h37{height:32.146667pt;}
.h26{height:33.586667pt;}
.h40{height:33.600000pt;}
.h25{height:33.618667pt;}
.h22{height:33.746667pt;}
.h62{height:33.760000pt;}
.h34{height:35.083125pt;}
.h13{height:37.310625pt;}
.h47{height:37.426667pt;}
.h5e{height:38.426667pt;}
.h1f{height:39.538125pt;}
.hb{height:40.332812pt;}
.h28{height:40.626667pt;}
.h1e{height:40.960000pt;}
.h2a{height:41.266667pt;}
.h18{height:41.280000pt;}
.h1d{height:41.765625pt;}
.h2d{height:42.140625pt;}
.h49{height:44.073883pt;}
.h5f{height:44.946667pt;}
.h56{height:44.986667pt;}
.h8{height:46.220625pt;}
.hd{height:46.635625pt;}
.h1c{height:49.336436pt;}
.h6{height:51.232500pt;}
.h3d{height:51.692500pt;}
.ha{height:52.834688pt;}
.h12{height:53.460000pt;}
.h7{height:54.390938pt;}
.h1a{height:54.598989pt;}
.h5{height:55.687500pt;}
.h3c{height:57.915000pt;}
.h4{height:58.563750pt;}
.h46{height:60.142500pt;}
.h65{height:60.682500pt;}
.h16{height:62.926875pt;}
.h33{height:63.840000pt;}
.h15{height:64.500000pt;}
.h14{height:65.154375pt;}
.h3a{height:67.381875pt;}
.h10{height:68.748750pt;}
.h11{height:71.955000pt;}
.he{height:73.466667pt;}
.h3e{height:74.729375pt;}
.h9{height:75.226667pt;}
.h23{height:75.666667pt;}
.h24{height:75.698667pt;}
.h3{height:76.671562pt;}
.h2{height:87.156562pt;}
.hf{height:218.295000pt;}
.h45{height:482.933333pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:35.390667pt;}
.w1a{width:60.672000pt;}
.w1c{width:64.000000pt;}
.w28{width:66.906667pt;}
.w27{width:68.466667pt;}
.w2c{width:69.938667pt;}
.w22{width:70.426667pt;}
.w16{width:72.626667pt;}
.wa{width:72.826667pt;}
.w33{width:75.666667pt;}
.w21{width:77.746667pt;}
.wf{width:77.938667pt;}
.w17{width:79.226667pt;}
.w2d{width:81.266667pt;}
.w1d{width:81.952000pt;}
.w10{width:82.106667pt;}
.w11{width:82.880000pt;}
.wc{width:84.190667pt;}
.w9{width:87.026667pt;}
.w2e{width:89.466667pt;}
.w34{width:90.746667pt;}
.w8{width:107.218667pt;}
.w19{width:115.360000pt;}
.w7{width:124.992000pt;}
.w25{width:129.138667pt;}
.w31{width:130.418667pt;}
.w2b{width:132.192000pt;}
.w20{width:132.352000pt;}
.w26{width:135.386667pt;}
.w1b{width:145.946667pt;}
.w14{width:147.053333pt;}
.we{width:151.226667pt;}
.w15{width:151.866667pt;}
.w32{width:166.426667pt;}
.w6{width:197.937333pt;}
.w3{width:203.105333pt;}
.wd{width:205.453333pt;}
.w2a{width:247.377333pt;}
.w1f{width:247.537333pt;}
.w30{width:275.737333pt;}
.w18{width:280.226667pt;}
.w24{width:313.817333pt;}
.w13{width:315.097333pt;}
.w2f{width:572.600000pt;}
.w23{width:578.360000pt;}
.w5{width:590.200000pt;}
.w1e{width:603.960000pt;}
.w12{width:614.040000pt;}
.w29{width:620.440000pt;}
.w2{width:632.600000pt;}
.wb{width:683.838667pt;}
.w1{width:794.000000pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.xf{left:1.278667pt;}
.xd{left:5.425333pt;}
.x3e{left:6.546667pt;}
.x6d{left:8.146667pt;}
.x57{left:9.120000pt;}
.x58{left:10.720000pt;}
.x3b{left:11.986667pt;}
.x28{left:13.110667pt;}
.x3f{left:14.866667pt;}
.x5a{left:15.840000pt;}
.x37{left:16.960000pt;}
.x48{left:18.400000pt;}
.x3c{left:19.386667pt;}
.x7a{left:20.320000pt;}
.x29{left:21.270667pt;}
.x2b{left:22.230667pt;}
.x3d{left:23.186667pt;}
.x22{left:24.310667pt;}
.x25{left:25.280000pt;}
.x39{left:26.586667pt;}
.x63{left:27.666667pt;}
.x2c{left:28.630667pt;}
.x78{left:29.746667pt;}
.x21{left:30.710667pt;}
.x20{left:32.160000pt;}
.x3a{left:33.600000pt;}
.x2e{left:34.746667pt;}
.x10{left:36.000000pt;}
.x2f{left:37.265333pt;}
.x24{left:38.226667pt;}
.x64{left:39.360000pt;}
.x2d{left:40.960000pt;}
.x26{left:42.240000pt;}
.x11{left:43.521333pt;}
.x1f{left:45.426667pt;}
.x8{left:47.200000pt;}
.x15{left:49.440000pt;}
.x16{left:51.200000pt;}
.x27{left:52.946667pt;}
.x30{left:55.521333pt;}
.x66{left:57.750667pt;}
.x80{left:63.040000pt;}
.x14{left:66.080000pt;}
.x6f{left:68.145333pt;}
.x6c{left:69.265333pt;}
.x2a{left:70.225333pt;}
.x23{left:74.385333pt;}
.x40{left:76.306667pt;}
.x12{left:78.912000pt;}
.x13{left:84.992000pt;}
.x71{left:87.241333pt;}
.x65{left:88.785333pt;}
.x41{left:90.441333pt;}
.x7c{left:92.465333pt;}
.x5b{left:94.921333pt;}
.x52{left:96.352000pt;}
.x79{left:99.665333pt;}
.x17{left:102.281333pt;}
.x84{left:103.872000pt;}
.x59{left:104.794667pt;}
.x33{left:106.906667pt;}
.x47{left:108.625333pt;}
.x7b{left:111.081333pt;}
.x42{left:112.945333pt;}
.x67{left:115.385333pt;}
.x6e{left:121.785333pt;}
.x70{left:124.185333pt;}
.x82{left:125.305333pt;}
.x1a{left:126.425333pt;}
.xc{left:128.361333pt;}
.x1{left:129.632000pt;}
.x19{left:132.185333pt;}
.x32{left:139.720000pt;}
.x6{left:141.466667pt;}
.x18{left:142.745333pt;}
.x72{left:150.905333pt;}
.x51{left:155.866667pt;}
.x5e{left:158.745333pt;}
.x73{left:160.505333pt;}
.x5d{left:163.545333pt;}
.x7d{left:173.625333pt;}
.x53{left:180.194667pt;}
.x3{left:184.506667pt;}
.x69{left:192.025333pt;}
.x68{left:198.425333pt;}
.x43{left:201.625333pt;}
.x4{left:208.986667pt;}
.x49{left:215.706667pt;}
.xe{left:229.826667pt;}
.x31{left:233.185333pt;}
.x5c{left:236.866667pt;}
.x5{left:244.226667pt;}
.x4a{left:269.826667pt;}
.x9{left:283.426667pt;}
.x7{left:290.146667pt;}
.x1b{left:300.226667pt;}
.x5f{left:321.186667pt;}
.x83{left:328.066667pt;}
.x74{left:334.626667pt;}
.x34{left:345.186667pt;}
.x2{left:364.093333pt;}
.x54{left:376.573333pt;}
.x7e{left:386.826667pt;}
.x50{left:403.453333pt;}
.x44{left:405.546667pt;}
.x4f{left:413.533333pt;}
.x6a{left:422.026667pt;}
.x1c{left:425.226667pt;}
.x60{left:453.546667pt;}
.x75{left:466.986667pt;}
.x4b{left:486.173333pt;}
.x55{left:491.933333pt;}
.x35{left:496.426667pt;}
.x4e{left:498.173333pt;}
.x7f{left:517.253333pt;}
.x61{left:531.493333pt;}
.x1d{left:532.613333pt;}
.x76{left:536.933333pt;}
.x6b{left:551.173333pt;}
.x45{left:552.613333pt;}
.x4d{left:571.653333pt;}
.x36{left:574.373333pt;}
.x81{left:592.933333pt;}
.xb{left:605.573333pt;}
.x62{left:609.253333pt;}
.xa{left:611.173333pt;}
.x56{left:616.613333pt;}
.x77{left:618.213333pt;}
.x1e{left:619.653333pt;}
.x46{left:625.253333pt;}
.x38{left:656.480000pt;}
.x4c{left:700.160000pt;}
}




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