
    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_06bc6c94a623ca0f5d163612.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_2141124e3f58207cec841348.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_f6d0ad6996b0386e7e557cd0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_ef5bf898b62c2c8959cb13cb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_07759e3f756e12fb8787190d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_1866934d1df1d72a63710d49.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_a27f2d13b85d578a8ebe7d6f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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_1621fdb530a6eadb887613c7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.900879;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_fea4df574c73b56e85975ed9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_da89fcab91c8235b0f78ad92.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3aa29ee1e7c58c8ec552e08d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.112305;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_2437005e6a61a95fc4538b7d.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_7d3f43f1c754a79db2a65f27.woff2')format("woff");}.ffd{font-family:ffd;line-height:2.230469;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_e09fc130f9a50a4df8db67ac.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;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_276c744da9ab4e5bc0ae7f3e.woff2')format("woff");}.fff{font-family:fff;line-height:2.230469;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_8ec1e2e950c6e4cf32777bd9.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.900879;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_8d85b5fe4274f66a9813077a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.921875;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_4c15c6d9267b51a5ad9ddc61.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.927734;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_cf384f29e672ae762d05ec7e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.927734;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_821dd83e6d0af622659f2e14.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.739746;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_8f5f45ed4d69185a662ed91c.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.978027;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_abccd696f14ddc720272a192.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.152863,-0.197820,0.197820,0.152863,0,0);-ms-transform:matrix(0.152863,-0.197820,0.197820,0.152863,0,0);-webkit-transform:matrix(0.152863,-0.197820,0.197820,0.152863,0,0);}
.m5{transform:matrix(0.197820,-0.152863,0.152863,0.197820,0,0);-ms-transform:matrix(0.197820,-0.152863,0.152863,0.197820,0,0);-webkit-transform:matrix(0.197820,-0.152863,0.152863,0.197820,0,0);}
.m3{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.vf{vertical-align:-49.500000px;}
.vc{vertical-align:-45.000000px;}
.v2{vertical-align:-31.500000px;}
.vd{vertical-align:-27.000000px;}
.va{vertical-align:-22.500000px;}
.v9{vertical-align:-18.000000px;}
.v6{vertical-align:-9.000000px;}
.vb{vertical-align:-4.500000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:4.500000px;}
.v7{vertical-align:9.000000px;}
.v10{vertical-align:18.000000px;}
.ve{vertical-align:22.500000px;}
.v11{vertical-align:27.000000px;}
.v1{vertical-align:31.500000px;}
.v4{vertical-align:36.000000px;}
.v3{vertical-align:40.500000px;}
.v5{vertical-align:76.500000px;}
.ls8{letter-spacing:-6.540000px;}
.ls6e{letter-spacing:-5.976000px;}
.ls9f{letter-spacing:-5.034000px;}
.ls24{letter-spacing:-4.500000px;}
.lsa6{letter-spacing:-3.582000px;}
.lsb{letter-spacing:-3.492000px;}
.lsf{letter-spacing:-3.024000px;}
.ls84{letter-spacing:-2.988000px;}
.lsc{letter-spacing:-2.484000px;}
.ls8e{letter-spacing:-2.322000px;}
.ls8d{letter-spacing:-2.250000px;}
.ls4a{letter-spacing:-2.190000px;}
.ls93{letter-spacing:-2.172000px;}
.ls8f{letter-spacing:-2.100000px;}
.ls25{letter-spacing:-2.016000px;}
.ls5{letter-spacing:-1.758000px;}
.ls4d{letter-spacing:-1.728000px;}
.ls9e{letter-spacing:-1.524000px;}
.ls60{letter-spacing:-1.512000px;}
.ls11{letter-spacing:-1.476000px;}
.ls9a{letter-spacing:-1.056000px;}
.lse{letter-spacing:-1.008000px;}
.ls61{letter-spacing:-0.864000px;}
.ls23{letter-spacing:-0.858000px;}
.ls1b{letter-spacing:-0.624000px;}
.ls3{letter-spacing:-0.468000px;}
.ls4b{letter-spacing:-0.261000px;}
.ls63{letter-spacing:-0.252000px;}
.lsa0{letter-spacing:-0.192600px;}
.ls6a{letter-spacing:-0.108000px;}
.ls88{letter-spacing:-0.075000px;}
.ls9d{letter-spacing:-0.037500px;}
.ls0{letter-spacing:0.000000px;}
.ls97{letter-spacing:0.018000px;}
.ls8b{letter-spacing:0.072000px;}
.ls8a{letter-spacing:0.075000px;}
.ls82{letter-spacing:0.120000px;}
.ls99{letter-spacing:0.138000px;}
.ls87{letter-spacing:0.150000px;}
.ls4{letter-spacing:0.180000px;}
.ls96{letter-spacing:0.198000px;}
.ls5a{letter-spacing:0.216000px;}
.ls2c{letter-spacing:0.324000px;}
.ls15{letter-spacing:0.360000px;}
.ls9c{letter-spacing:0.384600px;}
.ls45{letter-spacing:0.396000px;}
.ls7{letter-spacing:0.468000px;}
.ls37{letter-spacing:0.522000px;}
.ls32{letter-spacing:0.540000px;}
.ls19{letter-spacing:0.612000px;}
.ls2e{letter-spacing:0.660000px;}
.ls67{letter-spacing:0.702000px;}
.ls55{letter-spacing:0.726000px;}
.ls57{letter-spacing:0.756000px;}
.lsa3{letter-spacing:0.776700px;}
.ls39{letter-spacing:0.936000px;}
.ls65{letter-spacing:0.972000px;}
.ls2{letter-spacing:1.008000px;}
.ls92{letter-spacing:1.056000px;}
.ls6f{letter-spacing:1.092000px;}
.ls83{letter-spacing:1.116000px;}
.ls98{letter-spacing:1.125000px;}
.ls64{letter-spacing:1.152000px;}
.ls3a{letter-spacing:1.192500px;}
.ls86{letter-spacing:1.260000px;}
.ls44{letter-spacing:1.312500px;}
.ls40{letter-spacing:1.372500px;}
.lsa2{letter-spacing:1.374000px;}
.ls94{letter-spacing:1.440000px;}
.lsa5{letter-spacing:1.464000px;}
.ls7b{letter-spacing:1.476000px;}
.ls90{letter-spacing:1.512000px;}
.ls7d{letter-spacing:1.516500px;}
.ls34{letter-spacing:1.620000px;}
.ls21{letter-spacing:1.626000px;}
.ls48{letter-spacing:1.692000px;}
.ls17{letter-spacing:1.740000px;}
.ls16{letter-spacing:1.770000px;}
.ls28{letter-spacing:1.800000px;}
.ls27{letter-spacing:1.836000px;}
.ls6b{letter-spacing:1.908000px;}
.lsa1{letter-spacing:1.967700px;}
.ls20{letter-spacing:1.986000px;}
.ls1a{letter-spacing:2.016000px;}
.ls5b{letter-spacing:2.043000px;}
.ls22{letter-spacing:2.136000px;}
.ls73{letter-spacing:2.160000px;}
.ls38{letter-spacing:2.178000px;}
.ls1e{letter-spacing:2.196000px;}
.ls7e{letter-spacing:2.220000px;}
.lsd{letter-spacing:2.250000px;}
.ls62{letter-spacing:2.268000px;}
.ls1f{letter-spacing:2.370000px;}
.ls66{letter-spacing:2.400000px;}
.ls1d{letter-spacing:2.430000px;}
.ls49{letter-spacing:2.839500px;}
.lsa4{letter-spacing:2.886000px;}
.ls46{letter-spacing:3.271500px;}
.ls14{letter-spacing:3.726000px;}
.ls9{letter-spacing:4.500000px;}
.ls8c{letter-spacing:4.752000px;}
.ls89{letter-spacing:4.785600px;}
.ls9b{letter-spacing:5.389650px;}
.ls5c{letter-spacing:5.472000px;}
.ls71{letter-spacing:5.592000px;}
.ls7f{letter-spacing:5.625000px;}
.ls7c{letter-spacing:5.652000px;}
.ls5e{letter-spacing:5.746500px;}
.ls10{letter-spacing:5.754000px;}
.ls4e{letter-spacing:5.755500px;}
.ls53{letter-spacing:5.844000px;}
.ls74{letter-spacing:5.874000px;}
.ls79{letter-spacing:5.875500px;}
.ls70{letter-spacing:5.935500px;}
.ls2d{letter-spacing:6.700500px;}
.ls1{letter-spacing:6.900000px;}
.ls69{letter-spacing:9.000000px;}
.ls7a{letter-spacing:9.180000px;}
.ls33{letter-spacing:11.839500px;}
.ls2b{letter-spacing:12.072000px;}
.ls30{letter-spacing:12.132000px;}
.ls3d{letter-spacing:12.697500px;}
.ls81{letter-spacing:13.500000px;}
.ls78{letter-spacing:13.620000px;}
.ls29{letter-spacing:15.300000px;}
.ls18{letter-spacing:15.876000px;}
.ls91{letter-spacing:16.104000px;}
.ls41{letter-spacing:16.339500px;}
.ls51{letter-spacing:16.519500px;}
.ls6d{letter-spacing:17.970000px;}
.lsa{letter-spacing:18.000000px;}
.ls68{letter-spacing:18.120000px;}
.ls6c{letter-spacing:18.180000px;}
.ls13{letter-spacing:18.216000px;}
.ls47{letter-spacing:18.336000px;}
.ls35{letter-spacing:19.800000px;}
.ls72{letter-spacing:20.839500px;}
.ls2a{letter-spacing:22.716000px;}
.ls50{letter-spacing:22.836000px;}
.ls80{letter-spacing:27.000000px;}
.ls5d{letter-spacing:27.019500px;}
.ls26{letter-spacing:29.484000px;}
.ls75{letter-spacing:31.878000px;}
.ls1c{letter-spacing:33.984000px;}
.ls12{letter-spacing:36.396000px;}
.ls52{letter-spacing:37.620000px;}
.ls4f{letter-spacing:43.339500px;}
.ls56{letter-spacing:43.519500px;}
.ls58{letter-spacing:45.742500px;}
.ls6{letter-spacing:51.954000px;}
.ls2f{letter-spacing:52.339500px;}
.ls76{letter-spacing:63.792000px;}
.ls54{letter-spacing:72.732000px;}
.ls59{letter-spacing:77.232000px;}
.ls3f{letter-spacing:93.211500px;}
.ls43{letter-spacing:93.271500px;}
.ls3c{letter-spacing:97.711500px;}
.ls4c{letter-spacing:104.472000px;}
.ls42{letter-spacing:142.891500px;}
.ls36{letter-spacing:144.912000px;}
.ls31{letter-spacing:144.972000px;}
.ls3b{letter-spacing:147.391500px;}
.ls3e{letter-spacing:147.451500px;}
.ls95{letter-spacing:382.650000px;}
.ls5f{letter-spacing:2009.400000px;}
.ls85{letter-spacing:2305.125000px;}
.ls77{letter-spacing:2351.820000px;}
.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;}
}
.ws55{word-spacing:-72.150000px;}
.ws19{word-spacing:-72.000000px;}
.ws5e{word-spacing:-67.650000px;}
.ws54{word-spacing:-67.500000px;}
.ws47{word-spacing:-21.412500px;}
.ws4b{word-spacing:-21.375000px;}
.ws1d{word-spacing:-20.016000px;}
.ws5b{word-spacing:-19.798500px;}
.ws3b{word-spacing:-19.476000px;}
.ws5a{word-spacing:-19.411500px;}
.ws10{word-spacing:-19.008000px;}
.ws3c{word-spacing:-18.765000px;}
.ws12{word-spacing:-18.468000px;}
.ws59{word-spacing:-18.422100px;}
.ws5c{word-spacing:-18.376500px;}
.ws11{word-spacing:-18.180000px;}
.ws18{word-spacing:-18.129000px;}
.ws32{word-spacing:-18.108000px;}
.ws3f{word-spacing:-18.037500px;}
.ws5{word-spacing:-18.000000px;}
.ws56{word-spacing:-17.962500px;}
.ws13{word-spacing:-17.532000px;}
.ws20{word-spacing:-17.142000px;}
.ws1a{word-spacing:-16.992000px;}
.ws52{word-spacing:-16.875000px;}
.ws39{word-spacing:-16.524000px;}
.ws57{word-spacing:-16.513500px;}
.ws1f{word-spacing:-16.452000px;}
.ws1b{word-spacing:-16.200000px;}
.ws22{word-spacing:-15.984000px;}
.ws23{word-spacing:-15.840000px;}
.ws38{word-spacing:-15.588000px;}
.ws15{word-spacing:-15.516000px;}
.ws17{word-spacing:-14.976000px;}
.ws26{word-spacing:-14.850000px;}
.ws53{word-spacing:-14.625000px;}
.ws5d{word-spacing:-14.590500px;}
.ws14{word-spacing:-14.508000px;}
.ws60{word-spacing:-14.455500px;}
.ws2c{word-spacing:-14.328000px;}
.ws2a{word-spacing:-14.112000px;}
.ws21{word-spacing:-13.500000px;}
.ws58{word-spacing:-13.003500px;}
.ws25{word-spacing:-12.375000px;}
.ws24{word-spacing:-12.114000px;}
.ws3a{word-spacing:-12.024000px;}
.ws16{word-spacing:-11.460000px;}
.ws27{word-spacing:-10.890000px;}
.ws1e{word-spacing:-10.266000px;}
.ws5f{word-spacing:-10.125000px;}
.wsc{word-spacing:-0.364200px;}
.ws34{word-spacing:-0.072000px;}
.wsf{word-spacing:0.000000px;}
.ws1{word-spacing:1.013400px;}
.wsd{word-spacing:2.022000px;}
.wsa{word-spacing:6.238800px;}
.wse{word-spacing:6.421800px;}
.ws9{word-spacing:8.170800px;}
.ws28{word-spacing:8.826000px;}
.wsb{word-spacing:10.768200px;}
.ws1c{word-spacing:11.016000px;}
.ws8{word-spacing:15.107400px;}
.ws6{word-spacing:17.290200px;}
.ws2{word-spacing:20.222400px;}
.ws7{word-spacing:20.547600px;}
.ws37{word-spacing:23.340000px;}
.ws33{word-spacing:24.264000px;}
.ws35{word-spacing:25.272000px;}
.ws2f{word-spacing:25.392000px;}
.ws30{word-spacing:25.452000px;}
.ws29{word-spacing:28.764000px;}
.ws31{word-spacing:52.452000px;}
.ws0{word-spacing:54.920400px;}
.ws2d{word-spacing:56.772000px;}
.ws2b{word-spacing:61.452000px;}
.ws2e{word-spacing:74.952000px;}
.ws3e{word-spacing:145.717500px;}
.ws36{word-spacing:157.332000px;}
.ws3d{word-spacing:181.507500px;}
.ws42{word-spacing:181.770000px;}
.ws41{word-spacing:218.400000px;}
.ws45{word-spacing:249.600000px;}
.ws43{word-spacing:249.900000px;}
.ws44{word-spacing:250.020000px;}
.ws46{word-spacing:250.200000px;}
.ws4d{word-spacing:256.003500px;}
.ws4a{word-spacing:257.205000px;}
.ws49{word-spacing:257.475000px;}
.ws4f{word-spacing:257.653500px;}
.ws50{word-spacing:257.923500px;}
.ws4c{word-spacing:270.802500px;}
.ws48{word-spacing:272.655000px;}
.ws4e{word-spacing:272.842500px;}
.ws40{word-spacing:306.420000px;}
.ws51{word-spacing:346.275000px;}
.ws4{word-spacing:491.697000px;}
.ws3{word-spacing:531.657000px;}
._3e{margin-left:-17.617800px;}
._3b{margin-left:-11.724000px;}
._30{margin-left:-9.011400px;}
._2{margin-left:-7.615800px;}
._11{margin-left:-6.109800px;}
._1{margin-left:-4.978200px;}
._b{margin-left:-3.024000px;}
._0{margin-left:-1.239600px;}
._13{width:1.872000px;}
._c{width:3.415200px;}
._d{width:4.633800px;}
._14{width:5.924400px;}
._31{width:8.003400px;}
._10{width:9.159000px;}
._23{width:10.944600px;}
._4d{width:11.970900px;}
._f{width:13.033800px;}
._12{width:14.224200px;}
._33{width:15.573000px;}
._25{width:16.969800px;}
._2b{width:18.358800px;}
._19{width:19.504800px;}
._2c{width:20.513400px;}
._15{width:22.203000px;}
._e{width:23.590200px;}
._9{width:25.287600px;}
._1c{width:27.180000px;}
._1b{width:28.474800px;}
._a{width:29.854800px;}
._17{width:31.633800px;}
._1a{width:33.105000px;}
._38{width:34.134000px;}
._16{width:35.356200px;}
._8{width:36.370200px;}
._39{width:37.418400px;}
._37{width:38.485800px;}
._18{width:39.712800px;}
._24{width:40.980600px;}
._40{width:42.254400px;}
._1f{width:44.479200px;}
._20{width:45.583800px;}
._1d{width:49.017600px;}
._1e{width:50.312400px;}
._21{width:53.275800px;}
._22{width:55.009200px;}
._27{width:58.294800px;}
._28{width:59.467800px;}
._29{width:62.419200px;}
._26{width:63.641400px;}
._43{width:65.438400px;}
._42{width:67.237800px;}
._2f{width:103.800000px;}
._2a{width:139.800000px;}
._3f{width:174.788400px;}
._45{width:181.665000px;}
._2e{width:193.740000px;}
._36{width:195.495300px;}
._2d{width:198.766200px;}
._7{width:228.393000px;}
._5{width:232.425000px;}
._47{width:254.580000px;}
._6{width:268.209000px;}
._4a{width:272.580000px;}
._4{width:279.091200px;}
._48{width:299.580000px;}
._49{width:308.520000px;}
._4c{width:313.275000px;}
._4b{width:314.790000px;}
._46{width:342.480000px;}
._3{width:346.257000px;}
._34{width:396.540000px;}
._35{width:527.220000px;}
._32{width:774.911100px;}
._4f{width:846.712500px;}
._44{width:848.145000px;}
._4e{width:850.125000px;}
._3c{width:1608.684000px;}
._3d{width:1748.028000px;}
._41{width:2131.983600px;}
._3a{width:2230.271400px;}
.fc4{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(216,216,216);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:40.500000px;}
.fs7{font-size:49.500000px;}
.fs6{font-size:54.000000px;}
.fs9{font-size:58.500000px;}
.fs4{font-size:67.500000px;}
.fsd{font-size:67.650000px;}
.fs1{font-size:72.000000px;}
.fsa{font-size:72.150000px;}
.fs3{font-size:75.893905px;}
.fsc{font-size:85.500000px;}
.fsb{font-size:85.650000px;}
.fs0{font-size:94.500000px;}
.fse{font-size:94.650000px;}
.fs5{font-size:120.000000px;}
.fs2{font-size:239.999417px;}
.y0{bottom:0.000000px;}
.y193{bottom:0.945000px;}
.y20e{bottom:4.485000px;}
.y1fe{bottom:4.500000px;}
.y1b6{bottom:5.595000px;}
.y1b4{bottom:5.610000px;}
.y21d{bottom:5.625000px;}
.y195{bottom:6.075000px;}
.y1e8{bottom:6.255000px;}
.y1d2{bottom:6.570000px;}
.y1f4{bottom:10.125000px;}
.y1f1{bottom:10.140000px;}
.y191{bottom:10.380000px;}
.y199{bottom:10.650000px;}
.y1ee{bottom:11.190000px;}
.y1f7{bottom:11.220000px;}
.y1ec{bottom:11.265000px;}
.y1ea{bottom:11.295000px;}
.y1dc{bottom:11.955000px;}
.y1f5{bottom:12.375000px;}
.y1f2{bottom:12.390000px;}
.y1f8{bottom:13.470000px;}
.y1ef{bottom:13.485000px;}
.y22d{bottom:13.515000px;}
.y222{bottom:13.530000px;}
.y1a7{bottom:14.370000px;}
.y206{bottom:14.595000px;}
.y217{bottom:14.610000px;}
.y201{bottom:15.735000px;}
.y219{bottom:15.750000px;}
.y20a{bottom:15.765000px;}
.y211{bottom:15.795000px;}
.y200{bottom:16.860000px;}
.y209{bottom:16.890000px;}
.y210{bottom:16.920000px;}
.y1c5{bottom:17.775000px;}
.y17c{bottom:17.970000px;}
.y18f{bottom:21.945000px;}
.y220{bottom:23.610000px;}
.y224{bottom:23.655000px;}
.y21f{bottom:24.735000px;}
.y226{bottom:24.750000px;}
.y229{bottom:24.765000px;}
.y22b{bottom:24.795000px;}
.y8e{bottom:25.875000px;}
.y8f{bottom:27.000000px;}
.y16a{bottom:30.405000px;}
.y1e6{bottom:33.570000px;}
.y1d0{bottom:36.030000px;}
.y1a5{bottom:42.195000px;}
.y205{bottom:46.125000px;}
.y214{bottom:47.325000px;}
.y179{bottom:48.075000px;}
.y208{bottom:48.435000px;}
.y1da{bottom:49.080000px;}
.y1b2{bottom:50.850000px;}
.y18d{bottom:51.975000px;}
.y1c3{bottom:53.070000px;}
.y1df{bottom:58.245000px;}
.y1ca{bottom:60.750000px;}
.y19f{bottom:63.345000px;}
.y168{bottom:68.445000px;}
.y16e{bottom:69.225000px;}
.y182{bottom:72.825000px;}
.y1d4{bottom:73.800000px;}
.y204{bottom:76.530000px;}
.y213{bottom:77.730000px;}
.y1bd{bottom:77.745000px;}
.y1b0{bottom:87.600000px;}
.y161{bottom:89.625000px;}
.y17b{bottom:92.655000px;}
.y183{bottom:101.850000px;}
.y203{bottom:108.075000px;}
.y1a9{bottom:108.750000px;}
.y1c8{bottom:111.487500px;}
.y1e0{bottom:112.005000px;}
.y1e7{bottom:113.070000px;}
.y6b{bottom:113.737500px;}
.y136{bottom:115.987500px;}
.y111{bottom:117.112500px;}
.y174{bottom:117.225000px;}
.y19d{bottom:118.237500px;}
.y1d1{bottom:118.650000px;}
.ydf{bottom:119.362500px;}
.y1db{bottom:119.925000px;}
.y58{bottom:120.487500px;}
.y56{bottom:123.900000px;}
.y9c{bottom:127.275000px;}
.y1a6{bottom:127.575000px;}
.y1cb{bottom:127.755000px;}
.y2f{bottom:128.400000px;}
.y1a0{bottom:130.200000px;}
.y109{bottom:130.650000px;}
.y184{bottom:130.830000px;}
.y1c7{bottom:132.900000px;}
.y122{bottom:135.150000px;}
.y1c4{bottom:135.225000px;}
.y16f{bottom:136.425000px;}
.yef{bottom:138.525000px;}
.y1d5{bottom:140.670000px;}
.y19c{bottom:140.775000px;}
.y1be{bottom:141.675000px;}
.y162{bottom:142.995000px;}
.y87{bottom:146.400000px;}
.y2e{bottom:148.650000px;}
.y45{bottom:149.775000px;}
.y17a{bottom:152.505000px;}
.y6a{bottom:154.275000px;}
.y135{bottom:156.525000px;}
.y1b1{bottom:158.325000px;}
.y185{bottom:159.870000px;}
.y110{bottom:159.900000px;}
.y1aa{bottom:160.545000px;}
.yde{bottom:161.025000px;}
.y57{bottom:163.305000px;}
.y55{bottom:164.430000px;}
.y175{bottom:165.255000px;}
.y1e1{bottom:165.750000px;}
.yae{bottom:166.680000px;}
.y18e{bottom:167.550000px;}
.yb9{bottom:167.805000px;}
.y9b{bottom:168.930000px;}
.y108{bottom:173.430000px;}
.y121{bottom:175.680000px;}
.yee{bottom:180.180000px;}
.y19b{bottom:184.680000px;}
.y143{bottom:188.055000px;}
.y186{bottom:188.880000px;}
.y76{bottom:190.305000px;}
.y44{bottom:191.430000px;}
.y13f{bottom:192.570000px;}
.y1cc{bottom:194.820000px;}
.y169{bottom:195.075000px;}
.y69{bottom:195.945000px;}
.y163{bottom:196.350000px;}
.y1a1{bottom:197.025000px;}
.y134{bottom:198.195000px;}
.y19a{bottom:200.445000px;}
.y1a8{bottom:201.375000px;}
.y146{bottom:201.570000px;}
.y10f{bottom:202.695000px;}
.y170{bottom:203.670000px;}
.y1d3{bottom:204.750000px;}
.y1c6{bottom:204.975000px;}
.y1bf{bottom:205.620000px;}
.y54{bottom:206.100000px;}
.y1d6{bottom:207.570000px;}
.yad{bottom:209.475000px;}
.y9a{bottom:210.600000px;}
.y85{bottom:211.725000px;}
.y1ab{bottom:212.295000px;}
.y15a{bottom:212.850000px;}
.y176{bottom:213.255000px;}
.y107{bottom:217.350000px;}
.y187{bottom:217.875000px;}
.y86{bottom:218.475000px;}
.y1e2{bottom:219.525000px;}
.ycc{bottom:221.850000px;}
.y2d{bottom:222.975000px;}
.y8b{bottom:228.600000px;}
.y8c{bottom:229.725000px;}
.y75{bottom:230.850000px;}
.y1fb{bottom:232.755000px;}
.y43{bottom:233.100000px;}
.y13e{bottom:235.350000px;}
.y68{bottom:237.600000px;}
.y133{bottom:239.850000px;}
.y145{bottom:243.225000px;}
.y10e{bottom:244.380000px;}
.y188{bottom:246.900000px;}
.y53{bottom:247.755000px;}
.y164{bottom:249.705000px;}
.yac{bottom:251.130000px;}
.ydd{bottom:253.380000px;}
.y159{bottom:256.755000px;}
.y120{bottom:259.005000px;}
.y106{bottom:260.130000px;}
.y98{bottom:261.255000px;}
.y1cd{bottom:261.870000px;}
.ycb{bottom:263.505000px;}
.y1a2{bottom:263.880000px;}
.y1ac{bottom:264.030000px;}
.y2c{bottom:264.630000px;}
.y99{bottom:265.755000px;}
.y1c0{bottom:269.505000px;}
.y171{bottom:270.870000px;}
.y74{bottom:271.380000px;}
.y1e3{bottom:273.255000px;}
.y42{bottom:273.630000px;}
.y1d7{bottom:274.425000px;}
.yf7{bottom:274.755000px;}
.y189{bottom:275.880000px;}
.y67{bottom:279.255000px;}
.y73{bottom:280.380000px;}
.y132{bottom:281.505000px;}
.y84{bottom:283.800000px;}
.y144{bottom:284.925000px;}
.y10d{bottom:286.050000px;}
.y52{bottom:289.425000px;}
.yab{bottom:292.800000px;}
.ydc{bottom:295.050000px;}
.y158{bottom:298.425000px;}
.y11f{bottom:300.675000px;}
.y19{bottom:301.215000px;}
.y105{bottom:301.800000px;}
.y165{bottom:303.075000px;}
.y18a{bottom:304.920000px;}
.yca{bottom:305.175000px;}
.y2b{bottom:306.300000px;}
.yed{bottom:307.425000px;}
.y177{bottom:309.255000px;}
.y197{bottom:309.450000px;}
.y97{bottom:313.050000px;}
.y41{bottom:315.300000px;}
.y1ad{bottom:315.825000px;}
.yf6{bottom:316.425000px;}
.y66{bottom:320.925000px;}
.y131{bottom:323.175000px;}
.y13d{bottom:324.330000px;}
.y83{bottom:325.455000px;}
.y10c{bottom:326.580000px;}
.y1e4{bottom:327.045000px;}
.y72{bottom:327.705000px;}
.y1ce{bottom:328.920000px;}
.y8a{bottom:329.955000px;}
.y1a3{bottom:330.705000px;}
.y51{bottom:331.080000px;}
.y1c1{bottom:333.450000px;}
.y18b{bottom:333.900000px;}
.yaa{bottom:334.455000px;}
.y18{bottom:334.576800px;}
.ydb{bottom:335.580000px;}
.y230{bottom:336.780000px;}
.y172{bottom:338.100000px;}
.y1d8{bottom:341.325000px;}
.y11e{bottom:342.330000px;}
.y104{bottom:343.455000px;}
.yc9{bottom:345.705000px;}
.y2a{bottom:347.955000px;}
.yec{bottom:350.205000px;}
.y142{bottom:353.580000px;}
.y96{bottom:354.705000px;}
.y17{bottom:356.176800px;}
.y166{bottom:356.445000px;}
.y40{bottom:356.955000px;}
.y22f{bottom:357.075000px;}
.y178{bottom:357.300000px;}
.yf5{bottom:358.080000px;}
.y65{bottom:361.455000px;}
.y18c{bottom:362.925000px;}
.y130{bottom:363.705000px;}
.y82{bottom:367.125000px;}
.y1ae{bottom:367.575000px;}
.y10b{bottom:368.250000px;}
.y71{bottom:369.375000px;}
.y21b{bottom:369.450000px;}
.y50{bottom:371.625000px;}
.ya9{bottom:375.000000px;}
.y16{bottom:377.776800px;}
.y11d{bottom:380.625000px;}
.y1e5{bottom:380.820000px;}
.y103{bottom:385.125000px;}
.yda{bottom:386.250000px;}
.y22e{bottom:386.370000px;}
.yc8{bottom:387.375000px;}
.y157{bottom:388.500000px;}
.y29{bottom:389.625000px;}
.yeb{bottom:394.125000px;}
.y141{bottom:395.250000px;}
.y22c{bottom:395.355000px;}
.y1cf{bottom:395.955000px;}
.y1c2{bottom:397.350000px;}
.y1a4{bottom:397.575000px;}
.y3f{bottom:398.625000px;}
.y15{bottom:399.376800px;}
.y64{bottom:403.125000px;}
.y173{bottom:405.300000px;}
.y12f{bottom:405.420000px;}
.y1d9{bottom:408.195000px;}
.y81{bottom:408.795000px;}
.y21a{bottom:408.870000px;}
.y167{bottom:409.800000px;}
.y70{bottom:411.045000px;}
.y10a{bottom:412.170000px;}
.y4f{bottom:413.295000px;}
.ya8{bottom:416.670000px;}
.y1af{bottom:419.370000px;}
.y14{bottom:420.976800px;}
.y89{bottom:422.280000px;}
.y22a{bottom:423.525000px;}
.y218{bottom:424.650000px;}
.y102{bottom:425.655000px;}
.yd9{bottom:427.905000px;}
.yc7{bottom:429.030000px;}
.y28{bottom:430.155000px;}
.yea{bottom:436.905000px;}
.y3e{bottom:440.280000px;}
.y94{bottom:442.530000px;}
.y13{bottom:442.576800px;}
.y95{bottom:443.655000px;}
.y63{bottom:444.825000px;}
.y12e{bottom:447.075000px;}
.y80{bottom:450.450000px;}
.y6f{bottom:452.700000px;}
.y4e{bottom:454.950000px;}
.yb8{bottom:458.325000px;}
.ya7{bottom:459.450000px;}
.y216{bottom:461.865000px;}
.y101{bottom:467.325000px;}
.y15f{bottom:468.450000px;}
.yd8{bottom:469.575000px;}
.yc6{bottom:470.700000px;}
.y27{bottom:471.825000px;}
.y156{bottom:474.075000px;}
.ye9{bottom:478.575000px;}
.y3d{bottom:480.825000px;}
.y11c{bottom:481.950000px;}
.yf4{bottom:483.075000px;}
.y62{bottom:486.495000px;}
.y12d{bottom:488.745000px;}
.y7f{bottom:492.120000px;}
.y6e{bottom:493.245000px;}
.y215{bottom:493.365000px;}
.y93{bottom:494.370000px;}
.y4d{bottom:496.620000px;}
.y228{bottom:498.990000px;}
.yb7{bottom:501.120000px;}
.ya6{bottom:502.245000px;}
.y207{bottom:503.490000px;}
.y1bb{bottom:506.745000px;}
.y15e{bottom:507.870000px;}
.y100{bottom:508.995000px;}
.yd7{bottom:511.245000px;}
.y12{bottom:511.426800px;}
.yc5{bottom:512.370000px;}
.y26{bottom:513.495000px;}
.y155{bottom:517.995000px;}
.ye8{bottom:520.245000px;}
.y3c{bottom:522.495000px;}
.y11b{bottom:524.775000px;}
.yf3{bottom:525.900000px;}
.y1ba{bottom:527.025000px;}
.y61{bottom:528.150000px;}
.y12c{bottom:530.400000px;}
.y7e{bottom:532.650000px;}
.y11{bottom:533.026800px;}
.y14e{bottom:533.775000px;}
.y6d{bottom:534.900000px;}
.y92{bottom:536.025000px;}
.y227{bottom:537.300000px;}
.y4c{bottom:538.275000px;}
.y16c{bottom:540.525000px;}
.y180{bottom:541.650000px;}
.yb6{bottom:543.900000px;}
.ya5{bottom:545.025000px;}
.y1b9{bottom:548.400000px;}
.yff{bottom:550.650000px;}
.yd6{bottom:551.775000px;}
.yc4{bottom:552.900000px;}
.y10{bottom:554.626800px;}
.y25{bottom:555.150000px;}
.y15d{bottom:556.275000px;}
.y212{bottom:557.550000px;}
.ye7{bottom:560.775000px;}
.y3b{bottom:564.150000px;}
.yf2{bottom:567.570000px;}
.y60{bottom:568.695000px;}
.y202{bottom:568.875000px;}
.y12b{bottom:570.945000px;}
.y7d{bottom:574.320000px;}
.y1b8{bottom:575.445000px;}
.y225{bottom:575.625000px;}
.yf{bottom:576.226800px;}
.y13c{bottom:576.570000px;}
.y6c{bottom:577.695000px;}
.y4b{bottom:578.820000px;}
.y235{bottom:580.095000px;}
.y17f{bottom:581.070000px;}
.y16b{bottom:582.195000px;}
.y15c{bottom:584.445000px;}
.ya4{bottom:587.820000px;}
.yfe{bottom:592.320000px;}
.yd5{bottom:593.445000px;}
.yc3{bottom:594.570000px;}
.y24{bottom:596.820000px;}
.ye{bottom:597.826800px;}
.yb5{bottom:599.070000px;}
.y154{bottom:601.320000px;}
.ye6{bottom:602.445000px;}
.y3a{bottom:605.850000px;}
.y11a{bottom:608.100000px;}
.yf1{bottom:609.225000px;}
.y5f{bottom:610.350000px;}
.y12a{bottom:612.600000px;}
.y1b7{bottom:613.725000px;}
.y223{bottom:613.875000px;}
.y1bc{bottom:614.250000px;}
.y7c{bottom:615.975000px;}
.y13b{bottom:618.225000px;}
.y91{bottom:619.350000px;}
.y234{bottom:619.500000px;}
.y4a{bottom:620.475000px;}
.y17e{bottom:622.725000px;}
.y1b3{bottom:626.115000px;}
.ya3{bottom:629.475000px;}
.yfd{bottom:632.850000px;}
.yd4{bottom:635.100000px;}
.yc2{bottom:636.225000px;}
.y23{bottom:637.350000px;}
.yb4{bottom:642.975000px;}
.y160{bottom:643.500000px;}
.ye5{bottom:644.100000px;}
.yd{bottom:644.176800px;}
.y153{bottom:645.225000px;}
.y39{bottom:647.505000px;}
.y119{bottom:649.755000px;}
.yf0{bottom:650.880000px;}
.y5e{bottom:652.005000px;}
.y20f{bottom:652.155000px;}
.y129{bottom:654.255000px;}
.y221{bottom:656.670000px;}
.y14d{bottom:657.630000px;}
.y233{bottom:657.780000px;}
.y79{bottom:659.880000px;}
.y7b{bottom:661.005000px;}
.y49{bottom:662.130000px;}
.y16d{bottom:662.625000px;}
.y1c9{bottom:663.750000px;}
.y7a{bottom:666.630000px;}
.y17d{bottom:667.755000px;}
.yc{bottom:668.026800px;}
.y19e{bottom:668.250000px;}
.ya2{bottom:671.130000px;}
.y1dd{bottom:673.380000px;}
.y1de{bottom:673.875000px;}
.yfc{bottom:674.505000px;}
.yd3{bottom:676.755000px;}
.yc1{bottom:677.880000px;}
.y22{bottom:679.005000px;}
.yb3{bottom:685.800000px;}
.y20d{bottom:686.010000px;}
.y38{bottom:688.050000px;}
.y152{bottom:689.175000px;}
.y21e{bottom:690.510000px;}
.y118{bottom:691.425000px;}
.yb{bottom:691.876800px;}
.y5d{bottom:693.675000px;}
.y1ff{bottom:693.885000px;}
.ye4{bottom:694.800000px;}
.y128{bottom:695.925000px;}
.y232{bottom:697.245000px;}
.y14c{bottom:699.300000px;}
.y13a{bottom:700.425000px;}
.y90{bottom:702.675000px;}
.y48{bottom:703.800000px;}
.y196{bottom:704.250000px;}
.y78{bottom:704.925000px;}
.y181{bottom:706.500000px;}
.y1fa{bottom:708.300000px;}
.y77{bottom:710.550000px;}
.ya1{bottom:711.675000px;}
.yd2{bottom:718.425000px;}
.yc0{bottom:719.550000px;}
.y21{bottom:720.675000px;}
.ya{bottom:726.976800px;}
.yb2{bottom:727.470000px;}
.y1fd{bottom:727.650000px;}
.y1f9{bottom:728.595000px;}
.y21c{bottom:728.775000px;}
.y37{bottom:729.720000px;}
.y116{bottom:733.095000px;}
.y20c{bottom:733.275000px;}
.yfb{bottom:734.220000px;}
.y5c{bottom:735.345000px;}
.y231{bottom:735.525000px;}
.ye3{bottom:736.470000px;}
.y127{bottom:737.595000px;}
.y117{bottom:739.845000px;}
.y14b{bottom:740.970000px;}
.y139{bottom:742.095000px;}
.y1f6{bottom:742.125000px;}
.y88{bottom:744.345000px;}
.y47{bottom:745.470000px;}
.ya0{bottom:755.595000px;}
.y8d{bottom:760.125000px;}
.y9{bottom:762.076800px;}
.y20{bottom:762.345000px;}
.yd1{bottom:768.000000px;}
.yb1{bottom:769.125000px;}
.y115{bottom:774.750000px;}
.y1fc{bottom:774.945000px;}
.y5b{bottom:775.875000px;}
.ye2{bottom:777.000000px;}
.y126{bottom:778.125000px;}
.y14a{bottom:781.500000px;}
.y138{bottom:783.750000px;}
.y36{bottom:784.875000px;}
.y8{bottom:785.926800px;}
.y46{bottom:786.000000px;}
.y1f3{bottom:787.125000px;}
.y9f{bottom:797.250000px;}
.y1f{bottom:804.000000px;}
.ybf{bottom:806.295000px;}
.yd0{bottom:809.670000px;}
.y7{bottom:809.776800px;}
.yb0{bottom:811.920000px;}
.y5a{bottom:815.295000px;}
.y114{bottom:817.545000px;}
.ye1{bottom:818.670000px;}
.y125{bottom:819.795000px;}
.y149{bottom:823.170000px;}
.y59{bottom:824.295000px;}
.y137{bottom:825.420000px;}
.y35{bottom:827.670000px;}
.y1f0{bottom:831.030000px;}
.ybe{bottom:849.075000px;}
.ycf{bottom:851.325000px;}
.y9e{bottom:853.575000px;}
.y6{bottom:857.701800px;}
.ye0{bottom:860.325000px;}
.y1e{bottom:862.575000px;}
.y194{bottom:862.875000px;}
.y148{bottom:864.825000px;}
.y190{bottom:865.125000px;}
.yaf{bottom:868.200000px;}
.y34{bottom:869.325000px;}
.y20b{bottom:873.000000px;}
.y1ed{bottom:875.010000px;}
.y5{bottom:877.951800px;}
.ybd{bottom:891.870000px;}
.yce{bottom:892.995000px;}
.y1d{bottom:904.245000px;}
.yfa{bottom:905.370000px;}
.y147{bottom:906.495000px;}
.y9d{bottom:909.870000px;}
.y33{bottom:910.995000px;}
.y192{bottom:911.250000px;}
.y1eb{bottom:920.010000px;}
.ycd{bottom:934.650000px;}
.ybc{bottom:935.775000px;}
.y124{bottom:947.025000px;}
.y4{bottom:947.701800px;}
.yf9{bottom:948.150000px;}
.y151{bottom:949.275000px;}
.y32{bottom:952.650000px;}
.y1e9{bottom:962.775000px;}
.y1c{bottom:965.025000px;}
.y3{bottom:967.951800px;}
.y140{bottom:975.195000px;}
.ybb{bottom:978.570000px;}
.y15b{bottom:987.570000px;}
.y2{bottom:988.201800px;}
.y123{bottom:989.820000px;}
.yf8{bottom:990.945000px;}
.y31{bottom:993.195000px;}
.y150{bottom:995.445000px;}
.y113{bottom:1032.600000px;}
.yba{bottom:1033.725000px;}
.y1b{bottom:1034.850000px;}
.y198{bottom:1035.000000px;}
.y14f{bottom:1037.100000px;}
.y1b5{bottom:1045.035000px;}
.y1{bottom:1060.103850px;}
.y112{bottom:1075.380000px;}
.y1a{bottom:1076.505000px;}
.y30{bottom:1143.000000px;}
.h4e{height:19.110000px;}
.h48{height:20.227500px;}
.h43{height:20.235000px;}
.h31{height:21.352500px;}
.h30{height:21.375000px;}
.h2b{height:22.500000px;}
.h2c{height:27.000000px;}
.h55{height:28.110000px;}
.h4c{height:30.367500px;}
.h29{height:31.500000px;}
.h45{height:32.625000px;}
.h49{height:32.662500px;}
.h51{height:32.700000px;}
.h4d{height:36.037500px;}
.h54{height:37.117500px;}
.h52{height:38.242500px;}
.h50{height:38.250000px;}
.h53{height:38.287500px;}
.h18{height:41.625000px;}
.h38{height:42.735000px;}
.h39{height:42.750000px;}
.h3e{height:43.875000px;}
.h3c{height:43.912500px;}
.h3b{height:44.977500px;}
.h40{height:45.000000px;}
.h56{height:48.581543px;}
.h2{height:50.027344px;}
.h8{height:51.251221px;}
.h2a{height:51.365112px;}
.h6{height:52.695866px;}
.h21{height:57.414551px;}
.h4b{height:64.125000px;}
.h47{height:64.222500px;}
.h20{height:64.546875px;}
.h1{height:65.660889px;}
.h9{height:66.247559px;}
.h4f{height:66.394775px;}
.h22{height:68.027344px;}
.h5{height:70.628906px;}
.h7{height:70.664062px;}
.h44{height:70.776050px;}
.h24{height:70.811279px;}
.h15{height:70.890381px;}
.h3a{height:71.248535px;}
.h3d{height:71.368535px;}
.h3f{height:71.428535px;}
.h4{height:72.562500px;}
.h42{height:72.713672px;}
.hb{height:74.953125px;}
.h1e{height:75.093750px;}
.h1d{height:76.113281px;}
.hc{height:80.081543px;}
.h1b{height:80.201543px;}
.h1c{height:80.231543px;}
.h1f{height:80.261543px;}
.h13{height:80.613281px;}
.h26{height:83.913574px;}
.h25{height:84.060791px;}
.h1a{height:85.113281px;}
.h37{height:92.746582px;}
.h34{height:92.893799px;}
.h17{height:93.390381px;}
.h4a{height:93.456000px;}
.h14{height:103.113281px;}
.h16{height:105.668701px;}
.hf{height:106.664062px;}
.h12{height:107.613281px;}
.hd{height:111.390381px;}
.h10{height:111.570381px;}
.h46{height:123.870000px;}
.ha{height:125.156250px;}
.h19{height:134.501221px;}
.h11{height:139.113281px;}
.he{height:147.390381px;}
.h3{height:250.311892px;}
.h28{height:385.875000px;}
.h2d{height:388.125000px;}
.h36{height:418.500000px;}
.h2e{height:424.125000px;}
.h33{height:428.625000px;}
.h27{height:429.750000px;}
.h35{height:437.625000px;}
.h32{height:438.750000px;}
.h23{height:448.875000px;}
.h2f{height:465.750000px;}
.h41{height:918.000000px;}
.h0{height:1188.000000px;}
.w26{width:20.190000px;}
.w31{width:21.345000px;}
.w36{width:21.367500px;}
.w35{width:21.375000px;}
.w8{width:48.375000px;}
.wd{width:48.450000px;}
.w24{width:52.852500px;}
.w6{width:55.125000px;}
.wa{width:57.375000px;}
.w7{width:60.750000px;}
.w25{width:64.125000px;}
.w19{width:72.000000px;}
.w2{width:73.237500px;}
.w39{width:74.250000px;}
.w3a{width:74.325000px;}
.w1d{width:75.450000px;}
.w2e{width:78.816000px;}
.w23{width:83.343000px;}
.w34{width:84.375000px;}
.w33{width:85.575000px;}
.w2f{width:85.612500px;}
.w2a{width:95.625000px;}
.w1e{width:95.700000px;}
.w32{width:95.707500px;}
.w22{width:95.737500px;}
.w38{width:104.718000px;}
.w20{width:105.750000px;}
.w37{width:105.825000px;}
.w21{width:106.950000px;}
.w2d{width:112.500000px;}
.w17{width:112.567500px;}
.w14{width:112.597500px;}
.w15{width:113.715000px;}
.w16{width:113.730000px;}
.w13{width:113.745000px;}
.w2c{width:127.260000px;}
.w2b{width:128.362500px;}
.w1f{width:138.465000px;}
.w29{width:138.525000px;}
.w12{width:146.437500px;}
.w1c{width:148.581000px;}
.w30{width:253.375500px;}
.w1a{width:319.800000px;}
.w27{width:362.595000px;}
.w28{width:404.265000px;}
.w1b{width:447.015000px;}
.wc{width:546.750000px;}
.wb{width:552.375000px;}
.w11{width:558.000000px;}
.w10{width:561.375000px;}
.we{width:572.625000px;}
.w3{width:574.875000px;}
.wf{width:586.125000px;}
.w1{width:639.780000px;}
.w4{width:654.750000px;}
.w5{width:662.625000px;}
.w9{width:664.875000px;}
.w0{width:918.000000px;}
.w18{width:1188.000000px;}
.x0{left:0.000000px;}
.x1c{left:1.125000px;}
.x62{left:7.875000px;}
.x65{left:8.970000px;}
.x85{left:10.125000px;}
.x4d{left:11.295000px;}
.x75{left:13.500000px;}
.x74{left:14.655000px;}
.x89{left:15.765000px;}
.x97{left:16.875000px;}
.x73{left:19.155000px;}
.x77{left:20.220000px;}
.x40{left:21.270000px;}
.x4a{left:23.220000px;}
.x2d{left:24.780000px;}
.x94{left:25.893000px;}
.x3e{left:27.150000px;}
.x86{left:28.170000px;}
.x6e{left:29.295000px;}
.x3a{left:31.230000px;}
.x53{left:33.525000px;}
.x58{left:35.850000px;}
.x48{left:37.530000px;}
.x44{left:38.820000px;}
.x76{left:40.515000px;}
.x80{left:41.670000px;}
.x5e{left:43.050000px;}
.x35{left:44.430000px;}
.x20{left:46.185000px;}
.x38{left:48.075000px;}
.x82{left:49.530000px;}
.x1d{left:50.700000px;}
.x2b{left:52.575000px;}
.x87{left:54.045000px;}
.x47{left:55.575000px;}
.x37{left:57.075000px;}
.x56{left:59.100000px;}
.x32{left:62.625000px;}
.x5d{left:64.050000px;}
.x39{left:65.655000px;}
.x52{left:67.125000px;}
.x49{left:68.655000px;}
.x45{left:69.945000px;}
.x31{left:71.625000px;}
.x51{left:77.625000px;}
.x59{left:80.025000px;}
.x2c{left:81.450000px;}
.x5f{left:87.225000px;}
.x88{left:95.715000px;}
.x6a{left:97.969500px;}
.x33{left:100.500000px;}
.x69{left:105.862500px;}
.x6b{left:112.620000px;}
.x61{left:119.400000px;}
.x9{left:127.275000px;}
.x2a{left:130.500000px;}
.x1{left:135.000000px;}
.x28{left:137.437500px;}
.x7d{left:149.760000px;}
.x29{left:163.305000px;}
.x1b{left:164.430000px;}
.x21{left:167.850000px;}
.xe{left:170.100000px;}
.x6c{left:171.120000px;}
.xb{left:174.600000px;}
.x41{left:177.870000px;}
.x1e{left:179.100000px;}
.x79{left:181.365000px;}
.x50{left:191.250000px;}
.x15{left:195.975000px;}
.x5c{left:199.125000px;}
.x3{left:200.520000px;}
.x95{left:202.740000px;}
.x46{left:204.750000px;}
.x7{left:212.895000px;}
.xc{left:216.270000px;}
.x4b{left:219.255000px;}
.x2{left:232.755000px;}
.x7a{left:234.240000px;}
.x25{left:244.425000px;}
.x57{left:250.770000px;}
.x22{left:253.425000px;}
.x5a{left:257.175000px;}
.x16{left:262.470000px;}
.x60{left:266.745000px;}
.x3f{left:267.750000px;}
.x2e{left:270.030000px;}
.xa{left:272.340000px;}
.x27{left:273.720000px;}
.x96{left:277.020000px;}
.xd{left:278.220000px;}
.x3b{left:281.625000px;}
.x7b{left:298.425000px;}
.x68{left:301.215000px;}
.x23{left:312.000000px;}
.x6d{left:318.675000px;}
.x26{left:322.155000px;}
.x17{left:342.405000px;}
.x8{left:350.325000px;}
.x8a{left:351.375000px;}
.x4{left:352.575000px;}
.x5{left:361.575000px;}
.x24{left:369.450000px;}
.x6{left:371.700000px;}
.x8b{left:372.750000px;}
.x63{left:379.635000px;}
.x6f{left:394.125000px;}
.x78{left:407.340000px;}
.x18{left:408.870000px;}
.x7e{left:457.260000px;}
.x8c{left:468.510000px;}
.x19{left:489.975000px;}
.x64{left:492.285000px;}
.x3d{left:541.125000px;}
.x7f{left:552.900000px;}
.x1a{left:556.425000px;}
.x30{left:566.370000px;}
.x8d{left:574.320000px;}
.x12{left:597.000000px;}
.x3c{left:598.500000px;}
.x66{left:606.045000px;}
.x13{left:607.125000px;}
.x34{left:625.875000px;}
.x70{left:628.410000px;}
.xf{left:629.655000px;}
.x10{left:639.780000px;}
.x8e{left:659.910000px;}
.x14{left:663.450000px;}
.x4e{left:678.075000px;}
.x7c{left:681.285000px;}
.x4c{left:682.575000px;}
.x55{left:689.370000px;}
.x11{left:696.120000px;}
.x54{left:715.275000px;}
.x67{left:719.820000px;}
.x71{left:734.220000px;}
.x8f{left:744.345000px;}
.x43{left:752.445000px;}
.x42{left:755.820000px;}
.x5b{left:758.070000px;}
.x4f{left:764.820000px;}
.x1f{left:767.070000px;}
.x2f{left:782.850000px;}
.x36{left:791.850000px;}
.x81{left:808.545000px;}
.x90{left:829.920000px;}
.x72{left:841.170000px;}
.x91{left:851.325000px;}
.x83{left:921.120000px;}
.x92{left:947.070000px;}
.x93{left:968.445000px;}
.x84{left:999.945000px;}
@media print{
.vf{vertical-align:-44.000000pt;}
.vc{vertical-align:-40.000000pt;}
.v2{vertical-align:-28.000000pt;}
.vd{vertical-align:-24.000000pt;}
.va{vertical-align:-20.000000pt;}
.v9{vertical-align:-16.000000pt;}
.v6{vertical-align:-8.000000pt;}
.vb{vertical-align:-4.000000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:4.000000pt;}
.v7{vertical-align:8.000000pt;}
.v10{vertical-align:16.000000pt;}
.ve{vertical-align:20.000000pt;}
.v11{vertical-align:24.000000pt;}
.v1{vertical-align:28.000000pt;}
.v4{vertical-align:32.000000pt;}
.v3{vertical-align:36.000000pt;}
.v5{vertical-align:68.000000pt;}
.ls8{letter-spacing:-5.813333pt;}
.ls6e{letter-spacing:-5.312000pt;}
.ls9f{letter-spacing:-4.474667pt;}
.ls24{letter-spacing:-4.000000pt;}
.lsa6{letter-spacing:-3.184000pt;}
.lsb{letter-spacing:-3.104000pt;}
.lsf{letter-spacing:-2.688000pt;}
.ls84{letter-spacing:-2.656000pt;}
.lsc{letter-spacing:-2.208000pt;}
.ls8e{letter-spacing:-2.064000pt;}
.ls8d{letter-spacing:-2.000000pt;}
.ls4a{letter-spacing:-1.946667pt;}
.ls93{letter-spacing:-1.930667pt;}
.ls8f{letter-spacing:-1.866667pt;}
.ls25{letter-spacing:-1.792000pt;}
.ls5{letter-spacing:-1.562667pt;}
.ls4d{letter-spacing:-1.536000pt;}
.ls9e{letter-spacing:-1.354667pt;}
.ls60{letter-spacing:-1.344000pt;}
.ls11{letter-spacing:-1.312000pt;}
.ls9a{letter-spacing:-0.938667pt;}
.lse{letter-spacing:-0.896000pt;}
.ls61{letter-spacing:-0.768000pt;}
.ls23{letter-spacing:-0.762667pt;}
.ls1b{letter-spacing:-0.554667pt;}
.ls3{letter-spacing:-0.416000pt;}
.ls4b{letter-spacing:-0.232000pt;}
.ls63{letter-spacing:-0.224000pt;}
.lsa0{letter-spacing:-0.171200pt;}
.ls6a{letter-spacing:-0.096000pt;}
.ls88{letter-spacing:-0.066667pt;}
.ls9d{letter-spacing:-0.033333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls97{letter-spacing:0.016000pt;}
.ls8b{letter-spacing:0.064000pt;}
.ls8a{letter-spacing:0.066667pt;}
.ls82{letter-spacing:0.106667pt;}
.ls99{letter-spacing:0.122667pt;}
.ls87{letter-spacing:0.133333pt;}
.ls4{letter-spacing:0.160000pt;}
.ls96{letter-spacing:0.176000pt;}
.ls5a{letter-spacing:0.192000pt;}
.ls2c{letter-spacing:0.288000pt;}
.ls15{letter-spacing:0.320000pt;}
.ls9c{letter-spacing:0.341867pt;}
.ls45{letter-spacing:0.352000pt;}
.ls7{letter-spacing:0.416000pt;}
.ls37{letter-spacing:0.464000pt;}
.ls32{letter-spacing:0.480000pt;}
.ls19{letter-spacing:0.544000pt;}
.ls2e{letter-spacing:0.586667pt;}
.ls67{letter-spacing:0.624000pt;}
.ls55{letter-spacing:0.645333pt;}
.ls57{letter-spacing:0.672000pt;}
.lsa3{letter-spacing:0.690400pt;}
.ls39{letter-spacing:0.832000pt;}
.ls65{letter-spacing:0.864000pt;}
.ls2{letter-spacing:0.896000pt;}
.ls92{letter-spacing:0.938667pt;}
.ls6f{letter-spacing:0.970667pt;}
.ls83{letter-spacing:0.992000pt;}
.ls98{letter-spacing:1.000000pt;}
.ls64{letter-spacing:1.024000pt;}
.ls3a{letter-spacing:1.060000pt;}
.ls86{letter-spacing:1.120000pt;}
.ls44{letter-spacing:1.166667pt;}
.ls40{letter-spacing:1.220000pt;}
.lsa2{letter-spacing:1.221333pt;}
.ls94{letter-spacing:1.280000pt;}
.lsa5{letter-spacing:1.301333pt;}
.ls7b{letter-spacing:1.312000pt;}
.ls90{letter-spacing:1.344000pt;}
.ls7d{letter-spacing:1.348000pt;}
.ls34{letter-spacing:1.440000pt;}
.ls21{letter-spacing:1.445333pt;}
.ls48{letter-spacing:1.504000pt;}
.ls17{letter-spacing:1.546667pt;}
.ls16{letter-spacing:1.573333pt;}
.ls28{letter-spacing:1.600000pt;}
.ls27{letter-spacing:1.632000pt;}
.ls6b{letter-spacing:1.696000pt;}
.lsa1{letter-spacing:1.749067pt;}
.ls20{letter-spacing:1.765333pt;}
.ls1a{letter-spacing:1.792000pt;}
.ls5b{letter-spacing:1.816000pt;}
.ls22{letter-spacing:1.898667pt;}
.ls73{letter-spacing:1.920000pt;}
.ls38{letter-spacing:1.936000pt;}
.ls1e{letter-spacing:1.952000pt;}
.ls7e{letter-spacing:1.973333pt;}
.lsd{letter-spacing:2.000000pt;}
.ls62{letter-spacing:2.016000pt;}
.ls1f{letter-spacing:2.106667pt;}
.ls66{letter-spacing:2.133333pt;}
.ls1d{letter-spacing:2.160000pt;}
.ls49{letter-spacing:2.524000pt;}
.lsa4{letter-spacing:2.565333pt;}
.ls46{letter-spacing:2.908000pt;}
.ls14{letter-spacing:3.312000pt;}
.ls9{letter-spacing:4.000000pt;}
.ls8c{letter-spacing:4.224000pt;}
.ls89{letter-spacing:4.253867pt;}
.ls9b{letter-spacing:4.790800pt;}
.ls5c{letter-spacing:4.864000pt;}
.ls71{letter-spacing:4.970667pt;}
.ls7f{letter-spacing:5.000000pt;}
.ls7c{letter-spacing:5.024000pt;}
.ls5e{letter-spacing:5.108000pt;}
.ls10{letter-spacing:5.114667pt;}
.ls4e{letter-spacing:5.116000pt;}
.ls53{letter-spacing:5.194667pt;}
.ls74{letter-spacing:5.221333pt;}
.ls79{letter-spacing:5.222667pt;}
.ls70{letter-spacing:5.276000pt;}
.ls2d{letter-spacing:5.956000pt;}
.ls1{letter-spacing:6.133333pt;}
.ls69{letter-spacing:8.000000pt;}
.ls7a{letter-spacing:8.160000pt;}
.ls33{letter-spacing:10.524000pt;}
.ls2b{letter-spacing:10.730667pt;}
.ls30{letter-spacing:10.784000pt;}
.ls3d{letter-spacing:11.286667pt;}
.ls81{letter-spacing:12.000000pt;}
.ls78{letter-spacing:12.106667pt;}
.ls29{letter-spacing:13.600000pt;}
.ls18{letter-spacing:14.112000pt;}
.ls91{letter-spacing:14.314667pt;}
.ls41{letter-spacing:14.524000pt;}
.ls51{letter-spacing:14.684000pt;}
.ls6d{letter-spacing:15.973333pt;}
.lsa{letter-spacing:16.000000pt;}
.ls68{letter-spacing:16.106667pt;}
.ls6c{letter-spacing:16.160000pt;}
.ls13{letter-spacing:16.192000pt;}
.ls47{letter-spacing:16.298667pt;}
.ls35{letter-spacing:17.600000pt;}
.ls72{letter-spacing:18.524000pt;}
.ls2a{letter-spacing:20.192000pt;}
.ls50{letter-spacing:20.298667pt;}
.ls80{letter-spacing:24.000000pt;}
.ls5d{letter-spacing:24.017333pt;}
.ls26{letter-spacing:26.208000pt;}
.ls75{letter-spacing:28.336000pt;}
.ls1c{letter-spacing:30.208000pt;}
.ls12{letter-spacing:32.352000pt;}
.ls52{letter-spacing:33.440000pt;}
.ls4f{letter-spacing:38.524000pt;}
.ls56{letter-spacing:38.684000pt;}
.ls58{letter-spacing:40.660000pt;}
.ls6{letter-spacing:46.181333pt;}
.ls2f{letter-spacing:46.524000pt;}
.ls76{letter-spacing:56.704000pt;}
.ls54{letter-spacing:64.650667pt;}
.ls59{letter-spacing:68.650667pt;}
.ls3f{letter-spacing:82.854667pt;}
.ls43{letter-spacing:82.908000pt;}
.ls3c{letter-spacing:86.854667pt;}
.ls4c{letter-spacing:92.864000pt;}
.ls42{letter-spacing:127.014667pt;}
.ls36{letter-spacing:128.810667pt;}
.ls31{letter-spacing:128.864000pt;}
.ls3b{letter-spacing:131.014667pt;}
.ls3e{letter-spacing:131.068000pt;}
.ls95{letter-spacing:340.133333pt;}
.ls5f{letter-spacing:1786.133333pt;}
.ls85{letter-spacing:2049.000000pt;}
.ls77{letter-spacing:2090.506667pt;}
.ws55{word-spacing:-64.133333pt;}
.ws19{word-spacing:-64.000000pt;}
.ws5e{word-spacing:-60.133333pt;}
.ws54{word-spacing:-60.000000pt;}
.ws47{word-spacing:-19.033333pt;}
.ws4b{word-spacing:-19.000000pt;}
.ws1d{word-spacing:-17.792000pt;}
.ws5b{word-spacing:-17.598667pt;}
.ws3b{word-spacing:-17.312000pt;}
.ws5a{word-spacing:-17.254667pt;}
.ws10{word-spacing:-16.896000pt;}
.ws3c{word-spacing:-16.680000pt;}
.ws12{word-spacing:-16.416000pt;}
.ws59{word-spacing:-16.375200pt;}
.ws5c{word-spacing:-16.334667pt;}
.ws11{word-spacing:-16.160000pt;}
.ws18{word-spacing:-16.114667pt;}
.ws32{word-spacing:-16.096000pt;}
.ws3f{word-spacing:-16.033333pt;}
.ws5{word-spacing:-16.000000pt;}
.ws56{word-spacing:-15.966667pt;}
.ws13{word-spacing:-15.584000pt;}
.ws20{word-spacing:-15.237333pt;}
.ws1a{word-spacing:-15.104000pt;}
.ws52{word-spacing:-15.000000pt;}
.ws39{word-spacing:-14.688000pt;}
.ws57{word-spacing:-14.678667pt;}
.ws1f{word-spacing:-14.624000pt;}
.ws1b{word-spacing:-14.400000pt;}
.ws22{word-spacing:-14.208000pt;}
.ws23{word-spacing:-14.080000pt;}
.ws38{word-spacing:-13.856000pt;}
.ws15{word-spacing:-13.792000pt;}
.ws17{word-spacing:-13.312000pt;}
.ws26{word-spacing:-13.200000pt;}
.ws53{word-spacing:-13.000000pt;}
.ws5d{word-spacing:-12.969333pt;}
.ws14{word-spacing:-12.896000pt;}
.ws60{word-spacing:-12.849333pt;}
.ws2c{word-spacing:-12.736000pt;}
.ws2a{word-spacing:-12.544000pt;}
.ws21{word-spacing:-12.000000pt;}
.ws58{word-spacing:-11.558667pt;}
.ws25{word-spacing:-11.000000pt;}
.ws24{word-spacing:-10.768000pt;}
.ws3a{word-spacing:-10.688000pt;}
.ws16{word-spacing:-10.186667pt;}
.ws27{word-spacing:-9.680000pt;}
.ws1e{word-spacing:-9.125333pt;}
.ws5f{word-spacing:-9.000000pt;}
.wsc{word-spacing:-0.323733pt;}
.ws34{word-spacing:-0.064000pt;}
.wsf{word-spacing:0.000000pt;}
.ws1{word-spacing:0.900800pt;}
.wsd{word-spacing:1.797333pt;}
.wsa{word-spacing:5.545600pt;}
.wse{word-spacing:5.708267pt;}
.ws9{word-spacing:7.262933pt;}
.ws28{word-spacing:7.845333pt;}
.wsb{word-spacing:9.571733pt;}
.ws1c{word-spacing:9.792000pt;}
.ws8{word-spacing:13.428800pt;}
.ws6{word-spacing:15.369067pt;}
.ws2{word-spacing:17.975467pt;}
.ws7{word-spacing:18.264533pt;}
.ws37{word-spacing:20.746667pt;}
.ws33{word-spacing:21.568000pt;}
.ws35{word-spacing:22.464000pt;}
.ws2f{word-spacing:22.570667pt;}
.ws30{word-spacing:22.624000pt;}
.ws29{word-spacing:25.568000pt;}
.ws31{word-spacing:46.624000pt;}
.ws0{word-spacing:48.818133pt;}
.ws2d{word-spacing:50.464000pt;}
.ws2b{word-spacing:54.624000pt;}
.ws2e{word-spacing:66.624000pt;}
.ws3e{word-spacing:129.526667pt;}
.ws36{word-spacing:139.850667pt;}
.ws3d{word-spacing:161.340000pt;}
.ws42{word-spacing:161.573333pt;}
.ws41{word-spacing:194.133333pt;}
.ws45{word-spacing:221.866667pt;}
.ws43{word-spacing:222.133333pt;}
.ws44{word-spacing:222.240000pt;}
.ws46{word-spacing:222.400000pt;}
.ws4d{word-spacing:227.558667pt;}
.ws4a{word-spacing:228.626667pt;}
.ws49{word-spacing:228.866667pt;}
.ws4f{word-spacing:229.025333pt;}
.ws50{word-spacing:229.265333pt;}
.ws4c{word-spacing:240.713333pt;}
.ws48{word-spacing:242.360000pt;}
.ws4e{word-spacing:242.526667pt;}
.ws40{word-spacing:272.373333pt;}
.ws51{word-spacing:307.800000pt;}
.ws4{word-spacing:437.064000pt;}
.ws3{word-spacing:472.584000pt;}
._3e{margin-left:-15.660267pt;}
._3b{margin-left:-10.421333pt;}
._30{margin-left:-8.010133pt;}
._2{margin-left:-6.769600pt;}
._11{margin-left:-5.430933pt;}
._1{margin-left:-4.425067pt;}
._b{margin-left:-2.688000pt;}
._0{margin-left:-1.101867pt;}
._13{width:1.664000pt;}
._c{width:3.035733pt;}
._d{width:4.118933pt;}
._14{width:5.266133pt;}
._31{width:7.114133pt;}
._10{width:8.141333pt;}
._23{width:9.728533pt;}
._4d{width:10.640800pt;}
._f{width:11.585600pt;}
._12{width:12.643733pt;}
._33{width:13.842667pt;}
._25{width:15.084267pt;}
._2b{width:16.318933pt;}
._19{width:17.337600pt;}
._2c{width:18.234133pt;}
._15{width:19.736000pt;}
._e{width:20.969067pt;}
._9{width:22.477867pt;}
._1c{width:24.160000pt;}
._1b{width:25.310933pt;}
._a{width:26.537600pt;}
._17{width:28.118933pt;}
._1a{width:29.426667pt;}
._38{width:30.341333pt;}
._16{width:31.427733pt;}
._8{width:32.329067pt;}
._39{width:33.260800pt;}
._37{width:34.209600pt;}
._18{width:35.300267pt;}
._24{width:36.427200pt;}
._40{width:37.559467pt;}
._1f{width:39.537067pt;}
._20{width:40.518933pt;}
._1d{width:43.571200pt;}
._1e{width:44.722133pt;}
._21{width:47.356267pt;}
._22{width:48.897067pt;}
._27{width:51.817600pt;}
._28{width:52.860267pt;}
._29{width:55.483733pt;}
._26{width:56.570133pt;}
._43{width:58.167467pt;}
._42{width:59.766933pt;}
._2f{width:92.266667pt;}
._2a{width:124.266667pt;}
._3f{width:155.367467pt;}
._45{width:161.480000pt;}
._2e{width:172.213333pt;}
._36{width:173.773600pt;}
._2d{width:176.681067pt;}
._7{width:203.016000pt;}
._5{width:206.600000pt;}
._47{width:226.293333pt;}
._6{width:238.408000pt;}
._4a{width:242.293333pt;}
._4{width:248.081067pt;}
._48{width:266.293333pt;}
._49{width:274.240000pt;}
._4c{width:278.466667pt;}
._4b{width:279.813333pt;}
._46{width:304.426667pt;}
._3{width:307.784000pt;}
._34{width:352.480000pt;}
._35{width:468.640000pt;}
._32{width:688.809867pt;}
._4f{width:752.633333pt;}
._44{width:753.906667pt;}
._4e{width:755.666667pt;}
._3c{width:1429.941333pt;}
._3d{width:1553.802667pt;}
._41{width:1895.096533pt;}
._3a{width:1982.463467pt;}
.fs8{font-size:36.000000pt;}
.fs7{font-size:44.000000pt;}
.fs6{font-size:48.000000pt;}
.fs9{font-size:52.000000pt;}
.fs4{font-size:60.000000pt;}
.fsd{font-size:60.133333pt;}
.fs1{font-size:64.000000pt;}
.fsa{font-size:64.133333pt;}
.fs3{font-size:67.461249pt;}
.fsc{font-size:76.000000pt;}
.fsb{font-size:76.133333pt;}
.fs0{font-size:84.000000pt;}
.fse{font-size:84.133333pt;}
.fs5{font-size:106.666667pt;}
.fs2{font-size:213.332815pt;}
.y0{bottom:0.000000pt;}
.y193{bottom:0.840000pt;}
.y20e{bottom:3.986667pt;}
.y1fe{bottom:4.000000pt;}
.y1b6{bottom:4.973333pt;}
.y1b4{bottom:4.986667pt;}
.y21d{bottom:5.000000pt;}
.y195{bottom:5.400000pt;}
.y1e8{bottom:5.560000pt;}
.y1d2{bottom:5.840000pt;}
.y1f4{bottom:9.000000pt;}
.y1f1{bottom:9.013333pt;}
.y191{bottom:9.226667pt;}
.y199{bottom:9.466667pt;}
.y1ee{bottom:9.946667pt;}
.y1f7{bottom:9.973333pt;}
.y1ec{bottom:10.013333pt;}
.y1ea{bottom:10.040000pt;}
.y1dc{bottom:10.626667pt;}
.y1f5{bottom:11.000000pt;}
.y1f2{bottom:11.013333pt;}
.y1f8{bottom:11.973333pt;}
.y1ef{bottom:11.986667pt;}
.y22d{bottom:12.013333pt;}
.y222{bottom:12.026667pt;}
.y1a7{bottom:12.773333pt;}
.y206{bottom:12.973333pt;}
.y217{bottom:12.986667pt;}
.y201{bottom:13.986667pt;}
.y219{bottom:14.000000pt;}
.y20a{bottom:14.013333pt;}
.y211{bottom:14.040000pt;}
.y200{bottom:14.986667pt;}
.y209{bottom:15.013333pt;}
.y210{bottom:15.040000pt;}
.y1c5{bottom:15.800000pt;}
.y17c{bottom:15.973333pt;}
.y18f{bottom:19.506667pt;}
.y220{bottom:20.986667pt;}
.y224{bottom:21.026667pt;}
.y21f{bottom:21.986667pt;}
.y226{bottom:22.000000pt;}
.y229{bottom:22.013333pt;}
.y22b{bottom:22.040000pt;}
.y8e{bottom:23.000000pt;}
.y8f{bottom:24.000000pt;}
.y16a{bottom:27.026667pt;}
.y1e6{bottom:29.840000pt;}
.y1d0{bottom:32.026667pt;}
.y1a5{bottom:37.506667pt;}
.y205{bottom:41.000000pt;}
.y214{bottom:42.066667pt;}
.y179{bottom:42.733333pt;}
.y208{bottom:43.053333pt;}
.y1da{bottom:43.626667pt;}
.y1b2{bottom:45.200000pt;}
.y18d{bottom:46.200000pt;}
.y1c3{bottom:47.173333pt;}
.y1df{bottom:51.773333pt;}
.y1ca{bottom:54.000000pt;}
.y19f{bottom:56.306667pt;}
.y168{bottom:60.840000pt;}
.y16e{bottom:61.533333pt;}
.y182{bottom:64.733333pt;}
.y1d4{bottom:65.600000pt;}
.y204{bottom:68.026667pt;}
.y213{bottom:69.093333pt;}
.y1bd{bottom:69.106667pt;}
.y1b0{bottom:77.866667pt;}
.y161{bottom:79.666667pt;}
.y17b{bottom:82.360000pt;}
.y183{bottom:90.533333pt;}
.y203{bottom:96.066667pt;}
.y1a9{bottom:96.666667pt;}
.y1c8{bottom:99.100000pt;}
.y1e0{bottom:99.560000pt;}
.y1e7{bottom:100.506667pt;}
.y6b{bottom:101.100000pt;}
.y136{bottom:103.100000pt;}
.y111{bottom:104.100000pt;}
.y174{bottom:104.200000pt;}
.y19d{bottom:105.100000pt;}
.y1d1{bottom:105.466667pt;}
.ydf{bottom:106.100000pt;}
.y1db{bottom:106.600000pt;}
.y58{bottom:107.100000pt;}
.y56{bottom:110.133333pt;}
.y9c{bottom:113.133333pt;}
.y1a6{bottom:113.400000pt;}
.y1cb{bottom:113.560000pt;}
.y2f{bottom:114.133333pt;}
.y1a0{bottom:115.733333pt;}
.y109{bottom:116.133333pt;}
.y184{bottom:116.293333pt;}
.y1c7{bottom:118.133333pt;}
.y122{bottom:120.133333pt;}
.y1c4{bottom:120.200000pt;}
.y16f{bottom:121.266667pt;}
.yef{bottom:123.133333pt;}
.y1d5{bottom:125.040000pt;}
.y19c{bottom:125.133333pt;}
.y1be{bottom:125.933333pt;}
.y162{bottom:127.106667pt;}
.y87{bottom:130.133333pt;}
.y2e{bottom:132.133333pt;}
.y45{bottom:133.133333pt;}
.y17a{bottom:135.560000pt;}
.y6a{bottom:137.133333pt;}
.y135{bottom:139.133333pt;}
.y1b1{bottom:140.733333pt;}
.y185{bottom:142.106667pt;}
.y110{bottom:142.133333pt;}
.y1aa{bottom:142.706667pt;}
.yde{bottom:143.133333pt;}
.y57{bottom:145.160000pt;}
.y55{bottom:146.160000pt;}
.y175{bottom:146.893333pt;}
.y1e1{bottom:147.333333pt;}
.yae{bottom:148.160000pt;}
.y18e{bottom:148.933333pt;}
.yb9{bottom:149.160000pt;}
.y9b{bottom:150.160000pt;}
.y108{bottom:154.160000pt;}
.y121{bottom:156.160000pt;}
.yee{bottom:160.160000pt;}
.y19b{bottom:164.160000pt;}
.y143{bottom:167.160000pt;}
.y186{bottom:167.893333pt;}
.y76{bottom:169.160000pt;}
.y44{bottom:170.160000pt;}
.y13f{bottom:171.173333pt;}
.y1cc{bottom:173.173333pt;}
.y169{bottom:173.400000pt;}
.y69{bottom:174.173333pt;}
.y163{bottom:174.533333pt;}
.y1a1{bottom:175.133333pt;}
.y134{bottom:176.173333pt;}
.y19a{bottom:178.173333pt;}
.y1a8{bottom:179.000000pt;}
.y146{bottom:179.173333pt;}
.y10f{bottom:180.173333pt;}
.y170{bottom:181.040000pt;}
.y1d3{bottom:182.000000pt;}
.y1c6{bottom:182.200000pt;}
.y1bf{bottom:182.773333pt;}
.y54{bottom:183.200000pt;}
.y1d6{bottom:184.506667pt;}
.yad{bottom:186.200000pt;}
.y9a{bottom:187.200000pt;}
.y85{bottom:188.200000pt;}
.y1ab{bottom:188.706667pt;}
.y15a{bottom:189.200000pt;}
.y176{bottom:189.560000pt;}
.y107{bottom:193.200000pt;}
.y187{bottom:193.666667pt;}
.y86{bottom:194.200000pt;}
.y1e2{bottom:195.133333pt;}
.ycc{bottom:197.200000pt;}
.y2d{bottom:198.200000pt;}
.y8b{bottom:203.200000pt;}
.y8c{bottom:204.200000pt;}
.y75{bottom:205.200000pt;}
.y1fb{bottom:206.893333pt;}
.y43{bottom:207.200000pt;}
.y13e{bottom:209.200000pt;}
.y68{bottom:211.200000pt;}
.y133{bottom:213.200000pt;}
.y145{bottom:216.200000pt;}
.y10e{bottom:217.226667pt;}
.y188{bottom:219.466667pt;}
.y53{bottom:220.226667pt;}
.y164{bottom:221.960000pt;}
.yac{bottom:223.226667pt;}
.ydd{bottom:225.226667pt;}
.y159{bottom:228.226667pt;}
.y120{bottom:230.226667pt;}
.y106{bottom:231.226667pt;}
.y98{bottom:232.226667pt;}
.y1cd{bottom:232.773333pt;}
.ycb{bottom:234.226667pt;}
.y1a2{bottom:234.560000pt;}
.y1ac{bottom:234.693333pt;}
.y2c{bottom:235.226667pt;}
.y99{bottom:236.226667pt;}
.y1c0{bottom:239.560000pt;}
.y171{bottom:240.773333pt;}
.y74{bottom:241.226667pt;}
.y1e3{bottom:242.893333pt;}
.y42{bottom:243.226667pt;}
.y1d7{bottom:243.933333pt;}
.yf7{bottom:244.226667pt;}
.y189{bottom:245.226667pt;}
.y67{bottom:248.226667pt;}
.y73{bottom:249.226667pt;}
.y132{bottom:250.226667pt;}
.y84{bottom:252.266667pt;}
.y144{bottom:253.266667pt;}
.y10d{bottom:254.266667pt;}
.y52{bottom:257.266667pt;}
.yab{bottom:260.266667pt;}
.ydc{bottom:262.266667pt;}
.y158{bottom:265.266667pt;}
.y11f{bottom:267.266667pt;}
.y19{bottom:267.746667pt;}
.y105{bottom:268.266667pt;}
.y165{bottom:269.400000pt;}
.y18a{bottom:271.040000pt;}
.yca{bottom:271.266667pt;}
.y2b{bottom:272.266667pt;}
.yed{bottom:273.266667pt;}
.y177{bottom:274.893333pt;}
.y197{bottom:275.066667pt;}
.y97{bottom:278.266667pt;}
.y41{bottom:280.266667pt;}
.y1ad{bottom:280.733333pt;}
.yf6{bottom:281.266667pt;}
.y66{bottom:285.266667pt;}
.y131{bottom:287.266667pt;}
.y13d{bottom:288.293333pt;}
.y83{bottom:289.293333pt;}
.y10c{bottom:290.293333pt;}
.y1e4{bottom:290.706667pt;}
.y72{bottom:291.293333pt;}
.y1ce{bottom:292.373333pt;}
.y8a{bottom:293.293333pt;}
.y1a3{bottom:293.960000pt;}
.y51{bottom:294.293333pt;}
.y1c1{bottom:296.400000pt;}
.y18b{bottom:296.800000pt;}
.yaa{bottom:297.293333pt;}
.y18{bottom:297.401600pt;}
.ydb{bottom:298.293333pt;}
.y230{bottom:299.360000pt;}
.y172{bottom:300.533333pt;}
.y1d8{bottom:303.400000pt;}
.y11e{bottom:304.293333pt;}
.y104{bottom:305.293333pt;}
.yc9{bottom:307.293333pt;}
.y2a{bottom:309.293333pt;}
.yec{bottom:311.293333pt;}
.y142{bottom:314.293333pt;}
.y96{bottom:315.293333pt;}
.y17{bottom:316.601600pt;}
.y166{bottom:316.840000pt;}
.y40{bottom:317.293333pt;}
.y22f{bottom:317.400000pt;}
.y178{bottom:317.600000pt;}
.yf5{bottom:318.293333pt;}
.y65{bottom:321.293333pt;}
.y18c{bottom:322.600000pt;}
.y130{bottom:323.293333pt;}
.y82{bottom:326.333333pt;}
.y1ae{bottom:326.733333pt;}
.y10b{bottom:327.333333pt;}
.y71{bottom:328.333333pt;}
.y21b{bottom:328.400000pt;}
.y50{bottom:330.333333pt;}
.ya9{bottom:333.333333pt;}
.y16{bottom:335.801600pt;}
.y11d{bottom:338.333333pt;}
.y1e5{bottom:338.506667pt;}
.y103{bottom:342.333333pt;}
.yda{bottom:343.333333pt;}
.y22e{bottom:343.440000pt;}
.yc8{bottom:344.333333pt;}
.y157{bottom:345.333333pt;}
.y29{bottom:346.333333pt;}
.yeb{bottom:350.333333pt;}
.y141{bottom:351.333333pt;}
.y22c{bottom:351.426667pt;}
.y1cf{bottom:351.960000pt;}
.y1c2{bottom:353.200000pt;}
.y1a4{bottom:353.400000pt;}
.y3f{bottom:354.333333pt;}
.y15{bottom:355.001600pt;}
.y64{bottom:358.333333pt;}
.y173{bottom:360.266667pt;}
.y12f{bottom:360.373333pt;}
.y1d9{bottom:362.840000pt;}
.y81{bottom:363.373333pt;}
.y21a{bottom:363.440000pt;}
.y167{bottom:364.266667pt;}
.y70{bottom:365.373333pt;}
.y10a{bottom:366.373333pt;}
.y4f{bottom:367.373333pt;}
.ya8{bottom:370.373333pt;}
.y1af{bottom:372.773333pt;}
.y14{bottom:374.201600pt;}
.y89{bottom:375.360000pt;}
.y22a{bottom:376.466667pt;}
.y218{bottom:377.466667pt;}
.y102{bottom:378.360000pt;}
.yd9{bottom:380.360000pt;}
.yc7{bottom:381.360000pt;}
.y28{bottom:382.360000pt;}
.yea{bottom:388.360000pt;}
.y3e{bottom:391.360000pt;}
.y94{bottom:393.360000pt;}
.y13{bottom:393.401600pt;}
.y95{bottom:394.360000pt;}
.y63{bottom:395.400000pt;}
.y12e{bottom:397.400000pt;}
.y80{bottom:400.400000pt;}
.y6f{bottom:402.400000pt;}
.y4e{bottom:404.400000pt;}
.yb8{bottom:407.400000pt;}
.ya7{bottom:408.400000pt;}
.y216{bottom:410.546667pt;}
.y101{bottom:415.400000pt;}
.y15f{bottom:416.400000pt;}
.yd8{bottom:417.400000pt;}
.yc6{bottom:418.400000pt;}
.y27{bottom:419.400000pt;}
.y156{bottom:421.400000pt;}
.ye9{bottom:425.400000pt;}
.y3d{bottom:427.400000pt;}
.y11c{bottom:428.400000pt;}
.yf4{bottom:429.400000pt;}
.y62{bottom:432.440000pt;}
.y12d{bottom:434.440000pt;}
.y7f{bottom:437.440000pt;}
.y6e{bottom:438.440000pt;}
.y215{bottom:438.546667pt;}
.y93{bottom:439.440000pt;}
.y4d{bottom:441.440000pt;}
.y228{bottom:443.546667pt;}
.yb7{bottom:445.440000pt;}
.ya6{bottom:446.440000pt;}
.y207{bottom:447.546667pt;}
.y1bb{bottom:450.440000pt;}
.y15e{bottom:451.440000pt;}
.y100{bottom:452.440000pt;}
.yd7{bottom:454.440000pt;}
.y12{bottom:454.601600pt;}
.yc5{bottom:455.440000pt;}
.y26{bottom:456.440000pt;}
.y155{bottom:460.440000pt;}
.ye8{bottom:462.440000pt;}
.y3c{bottom:464.440000pt;}
.y11b{bottom:466.466667pt;}
.yf3{bottom:467.466667pt;}
.y1ba{bottom:468.466667pt;}
.y61{bottom:469.466667pt;}
.y12c{bottom:471.466667pt;}
.y7e{bottom:473.466667pt;}
.y11{bottom:473.801600pt;}
.y14e{bottom:474.466667pt;}
.y6d{bottom:475.466667pt;}
.y92{bottom:476.466667pt;}
.y227{bottom:477.600000pt;}
.y4c{bottom:478.466667pt;}
.y16c{bottom:480.466667pt;}
.y180{bottom:481.466667pt;}
.yb6{bottom:483.466667pt;}
.ya5{bottom:484.466667pt;}
.y1b9{bottom:487.466667pt;}
.yff{bottom:489.466667pt;}
.yd6{bottom:490.466667pt;}
.yc4{bottom:491.466667pt;}
.y10{bottom:493.001600pt;}
.y25{bottom:493.466667pt;}
.y15d{bottom:494.466667pt;}
.y212{bottom:495.600000pt;}
.ye7{bottom:498.466667pt;}
.y3b{bottom:501.466667pt;}
.yf2{bottom:504.506667pt;}
.y60{bottom:505.506667pt;}
.y202{bottom:505.666667pt;}
.y12b{bottom:507.506667pt;}
.y7d{bottom:510.506667pt;}
.y1b8{bottom:511.506667pt;}
.y225{bottom:511.666667pt;}
.yf{bottom:512.201600pt;}
.y13c{bottom:512.506667pt;}
.y6c{bottom:513.506667pt;}
.y4b{bottom:514.506667pt;}
.y235{bottom:515.640000pt;}
.y17f{bottom:516.506667pt;}
.y16b{bottom:517.506667pt;}
.y15c{bottom:519.506667pt;}
.ya4{bottom:522.506667pt;}
.yfe{bottom:526.506667pt;}
.yd5{bottom:527.506667pt;}
.yc3{bottom:528.506667pt;}
.y24{bottom:530.506667pt;}
.ye{bottom:531.401600pt;}
.yb5{bottom:532.506667pt;}
.y154{bottom:534.506667pt;}
.ye6{bottom:535.506667pt;}
.y3a{bottom:538.533333pt;}
.y11a{bottom:540.533333pt;}
.yf1{bottom:541.533333pt;}
.y5f{bottom:542.533333pt;}
.y12a{bottom:544.533333pt;}
.y1b7{bottom:545.533333pt;}
.y223{bottom:545.666667pt;}
.y1bc{bottom:546.000000pt;}
.y7c{bottom:547.533333pt;}
.y13b{bottom:549.533333pt;}
.y91{bottom:550.533333pt;}
.y234{bottom:550.666667pt;}
.y4a{bottom:551.533333pt;}
.y17e{bottom:553.533333pt;}
.y1b3{bottom:556.546667pt;}
.ya3{bottom:559.533333pt;}
.yfd{bottom:562.533333pt;}
.yd4{bottom:564.533333pt;}
.yc2{bottom:565.533333pt;}
.y23{bottom:566.533333pt;}
.yb4{bottom:571.533333pt;}
.y160{bottom:572.000000pt;}
.ye5{bottom:572.533333pt;}
.yd{bottom:572.601600pt;}
.y153{bottom:573.533333pt;}
.y39{bottom:575.560000pt;}
.y119{bottom:577.560000pt;}
.yf0{bottom:578.560000pt;}
.y5e{bottom:579.560000pt;}
.y20f{bottom:579.693333pt;}
.y129{bottom:581.560000pt;}
.y221{bottom:583.706667pt;}
.y14d{bottom:584.560000pt;}
.y233{bottom:584.693333pt;}
.y79{bottom:586.560000pt;}
.y7b{bottom:587.560000pt;}
.y49{bottom:588.560000pt;}
.y16d{bottom:589.000000pt;}
.y1c9{bottom:590.000000pt;}
.y7a{bottom:592.560000pt;}
.y17d{bottom:593.560000pt;}
.yc{bottom:593.801600pt;}
.y19e{bottom:594.000000pt;}
.ya2{bottom:596.560000pt;}
.y1dd{bottom:598.560000pt;}
.y1de{bottom:599.000000pt;}
.yfc{bottom:599.560000pt;}
.yd3{bottom:601.560000pt;}
.yc1{bottom:602.560000pt;}
.y22{bottom:603.560000pt;}
.yb3{bottom:609.600000pt;}
.y20d{bottom:609.786667pt;}
.y38{bottom:611.600000pt;}
.y152{bottom:612.600000pt;}
.y21e{bottom:613.786667pt;}
.y118{bottom:614.600000pt;}
.yb{bottom:615.001600pt;}
.y5d{bottom:616.600000pt;}
.y1ff{bottom:616.786667pt;}
.ye4{bottom:617.600000pt;}
.y128{bottom:618.600000pt;}
.y232{bottom:619.773333pt;}
.y14c{bottom:621.600000pt;}
.y13a{bottom:622.600000pt;}
.y90{bottom:624.600000pt;}
.y48{bottom:625.600000pt;}
.y196{bottom:626.000000pt;}
.y78{bottom:626.600000pt;}
.y181{bottom:628.000000pt;}
.y1fa{bottom:629.600000pt;}
.y77{bottom:631.600000pt;}
.ya1{bottom:632.600000pt;}
.yd2{bottom:638.600000pt;}
.yc0{bottom:639.600000pt;}
.y21{bottom:640.600000pt;}
.ya{bottom:646.201600pt;}
.yb2{bottom:646.640000pt;}
.y1fd{bottom:646.800000pt;}
.y1f9{bottom:647.640000pt;}
.y21c{bottom:647.800000pt;}
.y37{bottom:648.640000pt;}
.y116{bottom:651.640000pt;}
.y20c{bottom:651.800000pt;}
.yfb{bottom:652.640000pt;}
.y5c{bottom:653.640000pt;}
.y231{bottom:653.800000pt;}
.ye3{bottom:654.640000pt;}
.y127{bottom:655.640000pt;}
.y117{bottom:657.640000pt;}
.y14b{bottom:658.640000pt;}
.y139{bottom:659.640000pt;}
.y1f6{bottom:659.666667pt;}
.y88{bottom:661.640000pt;}
.y47{bottom:662.640000pt;}
.ya0{bottom:671.640000pt;}
.y8d{bottom:675.666667pt;}
.y9{bottom:677.401600pt;}
.y20{bottom:677.640000pt;}
.yd1{bottom:682.666667pt;}
.yb1{bottom:683.666667pt;}
.y115{bottom:688.666667pt;}
.y1fc{bottom:688.840000pt;}
.y5b{bottom:689.666667pt;}
.ye2{bottom:690.666667pt;}
.y126{bottom:691.666667pt;}
.y14a{bottom:694.666667pt;}
.y138{bottom:696.666667pt;}
.y36{bottom:697.666667pt;}
.y8{bottom:698.601600pt;}
.y46{bottom:698.666667pt;}
.y1f3{bottom:699.666667pt;}
.y9f{bottom:708.666667pt;}
.y1f{bottom:714.666667pt;}
.ybf{bottom:716.706667pt;}
.yd0{bottom:719.706667pt;}
.y7{bottom:719.801600pt;}
.yb0{bottom:721.706667pt;}
.y5a{bottom:724.706667pt;}
.y114{bottom:726.706667pt;}
.ye1{bottom:727.706667pt;}
.y125{bottom:728.706667pt;}
.y149{bottom:731.706667pt;}
.y59{bottom:732.706667pt;}
.y137{bottom:733.706667pt;}
.y35{bottom:735.706667pt;}
.y1f0{bottom:738.693333pt;}
.ybe{bottom:754.733333pt;}
.ycf{bottom:756.733333pt;}
.y9e{bottom:758.733333pt;}
.y6{bottom:762.401600pt;}
.ye0{bottom:764.733333pt;}
.y1e{bottom:766.733333pt;}
.y194{bottom:767.000000pt;}
.y148{bottom:768.733333pt;}
.y190{bottom:769.000000pt;}
.yaf{bottom:771.733333pt;}
.y34{bottom:772.733333pt;}
.y20b{bottom:776.000000pt;}
.y1ed{bottom:777.786667pt;}
.y5{bottom:780.401600pt;}
.ybd{bottom:792.773333pt;}
.yce{bottom:793.773333pt;}
.y1d{bottom:803.773333pt;}
.yfa{bottom:804.773333pt;}
.y147{bottom:805.773333pt;}
.y9d{bottom:808.773333pt;}
.y33{bottom:809.773333pt;}
.y192{bottom:810.000000pt;}
.y1eb{bottom:817.786667pt;}
.ycd{bottom:830.800000pt;}
.ybc{bottom:831.800000pt;}
.y124{bottom:841.800000pt;}
.y4{bottom:842.401600pt;}
.yf9{bottom:842.800000pt;}
.y151{bottom:843.800000pt;}
.y32{bottom:846.800000pt;}
.y1e9{bottom:855.800000pt;}
.y1c{bottom:857.800000pt;}
.y3{bottom:860.401600pt;}
.y140{bottom:866.840000pt;}
.ybb{bottom:869.840000pt;}
.y15b{bottom:877.840000pt;}
.y2{bottom:878.401600pt;}
.y123{bottom:879.840000pt;}
.yf8{bottom:880.840000pt;}
.y31{bottom:882.840000pt;}
.y150{bottom:884.840000pt;}
.y113{bottom:917.866667pt;}
.yba{bottom:918.866667pt;}
.y1b{bottom:919.866667pt;}
.y198{bottom:920.000000pt;}
.y14f{bottom:921.866667pt;}
.y1b5{bottom:928.920000pt;}
.y1{bottom:942.314533pt;}
.y112{bottom:955.893333pt;}
.y1a{bottom:956.893333pt;}
.y30{bottom:1016.000000pt;}
.h4e{height:16.986667pt;}
.h48{height:17.980000pt;}
.h43{height:17.986667pt;}
.h31{height:18.980000pt;}
.h30{height:19.000000pt;}
.h2b{height:20.000000pt;}
.h2c{height:24.000000pt;}
.h55{height:24.986667pt;}
.h4c{height:26.993333pt;}
.h29{height:28.000000pt;}
.h45{height:29.000000pt;}
.h49{height:29.033333pt;}
.h51{height:29.066667pt;}
.h4d{height:32.033333pt;}
.h54{height:32.993333pt;}
.h52{height:33.993333pt;}
.h50{height:34.000000pt;}
.h53{height:34.033333pt;}
.h18{height:37.000000pt;}
.h38{height:37.986667pt;}
.h39{height:38.000000pt;}
.h3e{height:39.000000pt;}
.h3c{height:39.033333pt;}
.h3b{height:39.980000pt;}
.h40{height:40.000000pt;}
.h56{height:43.183594pt;}
.h2{height:44.468750pt;}
.h8{height:45.556641pt;}
.h2a{height:45.657878pt;}
.h6{height:46.840769pt;}
.h21{height:51.035156pt;}
.h4b{height:57.000000pt;}
.h47{height:57.086667pt;}
.h20{height:57.375000pt;}
.h1{height:58.365234pt;}
.h9{height:58.886719pt;}
.h4f{height:59.017578pt;}
.h22{height:60.468750pt;}
.h5{height:62.781250pt;}
.h7{height:62.812500pt;}
.h44{height:62.912044pt;}
.h24{height:62.943359pt;}
.h15{height:63.013672pt;}
.h3a{height:63.332031pt;}
.h3d{height:63.438698pt;}
.h3f{height:63.492031pt;}
.h4{height:64.500000pt;}
.h42{height:64.634375pt;}
.hb{height:66.625000pt;}
.h1e{height:66.750000pt;}
.h1d{height:67.656250pt;}
.hc{height:71.183594pt;}
.h1b{height:71.290260pt;}
.h1c{height:71.316927pt;}
.h1f{height:71.343594pt;}
.h13{height:71.656250pt;}
.h26{height:74.589844pt;}
.h25{height:74.720703pt;}
.h1a{height:75.656250pt;}
.h37{height:82.441406pt;}
.h34{height:82.572266pt;}
.h17{height:83.013672pt;}
.h4a{height:83.072000pt;}
.h14{height:91.656250pt;}
.h16{height:93.927734pt;}
.hf{height:94.812500pt;}
.h12{height:95.656250pt;}
.hd{height:99.013672pt;}
.h10{height:99.173672pt;}
.h46{height:110.106667pt;}
.ha{height:111.250000pt;}
.h19{height:119.556641pt;}
.h11{height:123.656250pt;}
.he{height:131.013672pt;}
.h3{height:222.499459pt;}
.h28{height:343.000000pt;}
.h2d{height:345.000000pt;}
.h36{height:372.000000pt;}
.h2e{height:377.000000pt;}
.h33{height:381.000000pt;}
.h27{height:382.000000pt;}
.h35{height:389.000000pt;}
.h32{height:390.000000pt;}
.h23{height:399.000000pt;}
.h2f{height:414.000000pt;}
.h41{height:816.000000pt;}
.h0{height:1056.000000pt;}
.w26{width:17.946667pt;}
.w31{width:18.973333pt;}
.w36{width:18.993333pt;}
.w35{width:19.000000pt;}
.w8{width:43.000000pt;}
.wd{width:43.066667pt;}
.w24{width:46.980000pt;}
.w6{width:49.000000pt;}
.wa{width:51.000000pt;}
.w7{width:54.000000pt;}
.w25{width:57.000000pt;}
.w19{width:64.000000pt;}
.w2{width:65.100000pt;}
.w39{width:66.000000pt;}
.w3a{width:66.066667pt;}
.w1d{width:67.066667pt;}
.w2e{width:70.058667pt;}
.w23{width:74.082667pt;}
.w34{width:75.000000pt;}
.w33{width:76.066667pt;}
.w2f{width:76.100000pt;}
.w2a{width:85.000000pt;}
.w1e{width:85.066667pt;}
.w32{width:85.073333pt;}
.w22{width:85.100000pt;}
.w38{width:93.082667pt;}
.w20{width:94.000000pt;}
.w37{width:94.066667pt;}
.w21{width:95.066667pt;}
.w2d{width:100.000000pt;}
.w17{width:100.060000pt;}
.w14{width:100.086667pt;}
.w15{width:101.080000pt;}
.w16{width:101.093333pt;}
.w13{width:101.106667pt;}
.w2c{width:113.120000pt;}
.w2b{width:114.100000pt;}
.w1f{width:123.080000pt;}
.w29{width:123.133333pt;}
.w12{width:130.166667pt;}
.w1c{width:132.072000pt;}
.w30{width:225.222667pt;}
.w1a{width:284.266667pt;}
.w27{width:322.306667pt;}
.w28{width:359.346667pt;}
.w1b{width:397.346667pt;}
.wc{width:486.000000pt;}
.wb{width:491.000000pt;}
.w11{width:496.000000pt;}
.w10{width:499.000000pt;}
.we{width:509.000000pt;}
.w3{width:511.000000pt;}
.wf{width:521.000000pt;}
.w1{width:568.693333pt;}
.w4{width:582.000000pt;}
.w5{width:589.000000pt;}
.w9{width:591.000000pt;}
.w0{width:816.000000pt;}
.w18{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:1.000000pt;}
.x62{left:7.000000pt;}
.x65{left:7.973333pt;}
.x85{left:9.000000pt;}
.x4d{left:10.040000pt;}
.x75{left:12.000000pt;}
.x74{left:13.026667pt;}
.x89{left:14.013333pt;}
.x97{left:15.000000pt;}
.x73{left:17.026667pt;}
.x77{left:17.973333pt;}
.x40{left:18.906667pt;}
.x4a{left:20.640000pt;}
.x2d{left:22.026667pt;}
.x94{left:23.016000pt;}
.x3e{left:24.133333pt;}
.x86{left:25.040000pt;}
.x6e{left:26.040000pt;}
.x3a{left:27.760000pt;}
.x53{left:29.800000pt;}
.x58{left:31.866667pt;}
.x48{left:33.360000pt;}
.x44{left:34.506667pt;}
.x76{left:36.013333pt;}
.x80{left:37.040000pt;}
.x5e{left:38.266667pt;}
.x35{left:39.493333pt;}
.x20{left:41.053333pt;}
.x38{left:42.733333pt;}
.x82{left:44.026667pt;}
.x1d{left:45.066667pt;}
.x2b{left:46.733333pt;}
.x87{left:48.040000pt;}
.x47{left:49.400000pt;}
.x37{left:50.733333pt;}
.x56{left:52.533333pt;}
.x32{left:55.666667pt;}
.x5d{left:56.933333pt;}
.x39{left:58.360000pt;}
.x52{left:59.666667pt;}
.x49{left:61.026667pt;}
.x45{left:62.173333pt;}
.x31{left:63.666667pt;}
.x51{left:69.000000pt;}
.x59{left:71.133333pt;}
.x2c{left:72.400000pt;}
.x5f{left:77.533333pt;}
.x88{left:85.080000pt;}
.x6a{left:87.084000pt;}
.x33{left:89.333333pt;}
.x69{left:94.100000pt;}
.x6b{left:100.106667pt;}
.x61{left:106.133333pt;}
.x9{left:113.133333pt;}
.x2a{left:116.000000pt;}
.x1{left:120.000000pt;}
.x28{left:122.166667pt;}
.x7d{left:133.120000pt;}
.x29{left:145.160000pt;}
.x1b{left:146.160000pt;}
.x21{left:149.200000pt;}
.xe{left:151.200000pt;}
.x6c{left:152.106667pt;}
.xb{left:155.200000pt;}
.x41{left:158.106667pt;}
.x1e{left:159.200000pt;}
.x79{left:161.213333pt;}
.x50{left:170.000000pt;}
.x15{left:174.200000pt;}
.x5c{left:177.000000pt;}
.x3{left:178.240000pt;}
.x95{left:180.213333pt;}
.x46{left:182.000000pt;}
.x7{left:189.240000pt;}
.xc{left:192.240000pt;}
.x4b{left:194.893333pt;}
.x2{left:206.893333pt;}
.x7a{left:208.213333pt;}
.x25{left:217.266667pt;}
.x57{left:222.906667pt;}
.x22{left:225.266667pt;}
.x5a{left:228.600000pt;}
.x16{left:233.306667pt;}
.x60{left:237.106667pt;}
.x3f{left:238.000000pt;}
.x2e{left:240.026667pt;}
.xa{left:242.080000pt;}
.x27{left:243.306667pt;}
.x96{left:246.240000pt;}
.xd{left:247.306667pt;}
.x3b{left:250.333333pt;}
.x7b{left:265.266667pt;}
.x68{left:267.746667pt;}
.x23{left:277.333333pt;}
.x6d{left:283.266667pt;}
.x26{left:286.360000pt;}
.x17{left:304.360000pt;}
.x8{left:311.400000pt;}
.x8a{left:312.333333pt;}
.x4{left:313.400000pt;}
.x5{left:321.400000pt;}
.x24{left:328.400000pt;}
.x6{left:330.400000pt;}
.x8b{left:331.333333pt;}
.x63{left:337.453333pt;}
.x6f{left:350.333333pt;}
.x78{left:362.080000pt;}
.x18{left:363.440000pt;}
.x7e{left:406.453333pt;}
.x8c{left:416.453333pt;}
.x19{left:435.533333pt;}
.x64{left:437.586667pt;}
.x3d{left:481.000000pt;}
.x7f{left:491.466667pt;}
.x1a{left:494.600000pt;}
.x30{left:503.440000pt;}
.x8d{left:510.506667pt;}
.x12{left:530.666667pt;}
.x3c{left:532.000000pt;}
.x66{left:538.706667pt;}
.x13{left:539.666667pt;}
.x34{left:556.333333pt;}
.x70{left:558.586667pt;}
.xf{left:559.693333pt;}
.x10{left:568.693333pt;}
.x8e{left:586.586667pt;}
.x14{left:589.733333pt;}
.x4e{left:602.733333pt;}
.x7c{left:605.586667pt;}
.x4c{left:606.733333pt;}
.x55{left:612.773333pt;}
.x11{left:618.773333pt;}
.x54{left:635.800000pt;}
.x67{left:639.840000pt;}
.x71{left:652.640000pt;}
.x8f{left:661.640000pt;}
.x43{left:668.840000pt;}
.x42{left:671.840000pt;}
.x5b{left:673.840000pt;}
.x4f{left:679.840000pt;}
.x1f{left:681.840000pt;}
.x2f{left:695.866667pt;}
.x36{left:703.866667pt;}
.x81{left:718.706667pt;}
.x90{left:737.706667pt;}
.x72{left:747.706667pt;}
.x91{left:756.733333pt;}
.x83{left:818.773333pt;}
.x92{left:841.840000pt;}
.x93{left:860.840000pt;}
.x84{left:888.840000pt;}
}




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