
    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_e43e4753036042991becdb61.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.190918;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_9aea2875e7af2b22c87d20f8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.190918;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_5b68d25f5cd2df45b7ef8f80.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.191406;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_5693f0dcb0a7da60c52dcb90.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.203000;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_44ad14152377919c5c1817bf.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.191406;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_e91334fbafac84e57d1c08fd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.191406;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_a1f4055825399fcd0c76ee5f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958496;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_e8c23b8fafe6a8f2b2943b8b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.362000;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_aae7c837c130223ac14109b7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.349000;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_cca5d5e7dd62d412eeced457.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958496;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_7cd30954a6aa0aa348fe6616.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_9b75fd9b6340fa93b6c9d9bd.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.190918;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_2502f6c025e932d8e034a19f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.190918;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_9eacea1814c52651dfa249f6.woff2')format("woff");}.fff{font-family:fff;line-height:1.191406;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_ff4eb03b259e2749847a58a6.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.958496;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_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.203000;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_3c10f019a1e424d979b416ef.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.384000;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_c3b92c7fa02441b14614349c.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.200885;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_b651fa86f9db569d12bc1f30.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.896000;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_9b75fd9b6340fa93b6c9d9bd.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.190918;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_2502f6c025e932d8e034a19f.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.190918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_9eacea1814c52651dfa249f6.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.191406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_ff4eb03b259e2749847a58a6.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.203000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_2502f6c025e932d8e034a19f.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.190918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_9eacea1814c52651dfa249f6.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.191406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_ff4eb03b259e2749847a58a6.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.203000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_fc932fa6ec6fbc55f6ec3cd3.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.190918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_f687deb741cc78db749010ff.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.191406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_503635328a35bcd564256f9c.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.203000;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);}
.v3{vertical-align:-18.360000px;}
.v4{vertical-align:-17.340000px;}
.v6{vertical-align:-10.830000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:14.292000px;}
.v2{vertical-align:18.198000px;}
.v1{vertical-align:20.400600px;}
.ls61{letter-spacing:-3.564000px;}
.ls55{letter-spacing:-2.772000px;}
.ls7c{letter-spacing:-1.890000px;}
.ls93{letter-spacing:-1.755000px;}
.ls7f{letter-spacing:-1.710000px;}
.ls8f{letter-spacing:-1.665000px;}
.ls8a{letter-spacing:-1.305000px;}
.ls31{letter-spacing:-1.242000px;}
.ls4b{letter-spacing:-1.188000px;}
.ls2e{letter-spacing:-1.134000px;}
.ls51{letter-spacing:-1.080000px;}
.ls91{letter-spacing:-1.035000px;}
.ls4e{letter-spacing:-1.026000px;}
.ls2d{letter-spacing:-0.972000px;}
.ls19{letter-spacing:-0.960000px;}
.ls90{letter-spacing:-0.945000px;}
.ls32{letter-spacing:-0.918000px;}
.ls8e{letter-spacing:-0.900000px;}
.ls52{letter-spacing:-0.864000px;}
.ls89{letter-spacing:-0.855000px;}
.ls4c{letter-spacing:-0.810000px;}
.ls7d{letter-spacing:-0.765000px;}
.ls41{letter-spacing:-0.756000px;}
.ls88{letter-spacing:-0.720000px;}
.ls54{letter-spacing:-0.714000px;}
.ls2f{letter-spacing:-0.702000px;}
.ls94{letter-spacing:-0.675000px;}
.ls3c{letter-spacing:-0.648000px;}
.ls75{letter-spacing:-0.630000px;}
.ls2a{letter-spacing:-0.594000px;}
.ls77{letter-spacing:-0.585000px;}
.ls40{letter-spacing:-0.540000px;}
.ls56{letter-spacing:-0.504000px;}
.ls79{letter-spacing:-0.495000px;}
.ls2b{letter-spacing:-0.486000px;}
.ls78{letter-spacing:-0.450000px;}
.ls39{letter-spacing:-0.432000px;}
.ls92{letter-spacing:-0.405000px;}
.ls5f{letter-spacing:-0.386100px;}
.ls1d{letter-spacing:-0.378000px;}
.ls7a{letter-spacing:-0.360000px;}
.ls37{letter-spacing:-0.324000px;}
.ls8b{letter-spacing:-0.315000px;}
.ls42{letter-spacing:-0.270000px;}
.ls8d{letter-spacing:-0.225000px;}
.ls30{letter-spacing:-0.216000px;}
.ls53{letter-spacing:-0.210000px;}
.ls50{letter-spacing:-0.180000px;}
.ls1c{letter-spacing:-0.162000px;}
.ls7b{letter-spacing:-0.135000px;}
.ls1f{letter-spacing:-0.108000px;}
.ls64{letter-spacing:-0.105300px;}
.ls24{letter-spacing:-0.102000px;}
.ls8c{letter-spacing:-0.090000px;}
.ls74{letter-spacing:-0.060000px;}
.ls2c{letter-spacing:-0.054000px;}
.ls60{letter-spacing:-0.035100px;}
.ls18{letter-spacing:0.000000px;}
.ls5a{letter-spacing:0.002100px;}
.ls2{letter-spacing:0.013200px;}
.ls47{letter-spacing:0.024900px;}
.ls44{letter-spacing:0.035100px;}
.ls7e{letter-spacing:0.045000px;}
.ls28{letter-spacing:0.054000px;}
.ls63{letter-spacing:0.060000px;}
.ls6{letter-spacing:0.070200px;}
.ls70{letter-spacing:0.090000px;}
.ls7{letter-spacing:0.091800px;}
.ls58{letter-spacing:0.092700px;}
.ls62{letter-spacing:0.105300px;}
.ls1b{letter-spacing:0.108000px;}
.ls5e{letter-spacing:0.120000px;}
.ls6e{letter-spacing:0.135000px;}
.ls43{letter-spacing:0.140400px;}
.ls6d{letter-spacing:0.144000px;}
.ls38{letter-spacing:0.162000px;}
.ls12{letter-spacing:0.165450px;}
.ls25{letter-spacing:0.165750px;}
.ls5d{letter-spacing:0.175500px;}
.ls87{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.210600px;}
.ls1e{letter-spacing:0.216000px;}
.ls83{letter-spacing:0.225000px;}
.ls3e{letter-spacing:0.228150px;}
.ls9{letter-spacing:0.241800px;}
.ls35{letter-spacing:0.243000px;}
.ls23{letter-spacing:0.245700px;}
.ls11{letter-spacing:0.255000px;}
.ls4{letter-spacing:0.261600px;}
.ls59{letter-spacing:0.262800px;}
.ls27{letter-spacing:0.270000px;}
.ls3{letter-spacing:0.280800px;}
.ls6c{letter-spacing:0.287100px;}
.ls6f{letter-spacing:0.315000px;}
.ls6b{letter-spacing:0.315900px;}
.lsa{letter-spacing:0.324000px;}
.ls15{letter-spacing:0.344250px;}
.ls6a{letter-spacing:0.349200px;}
.ls3f{letter-spacing:0.351000px;}
.ls5c{letter-spacing:0.351600px;}
.ls57{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.378000px;}
.ls34{letter-spacing:0.420000px;}
.ls45{letter-spacing:0.421200px;}
.ls5{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.432450px;}
.ls5b{letter-spacing:0.433500px;}
.ls81{letter-spacing:0.450000px;}
.ls3d{letter-spacing:0.480000px;}
.ls29{letter-spacing:0.486000px;}
.ls33{letter-spacing:0.513000px;}
.ls21{letter-spacing:0.540000px;}
.ls16{letter-spacing:0.561000px;}
.ls96{letter-spacing:0.585000px;}
.ls36{letter-spacing:0.594000px;}
.ls3a{letter-spacing:0.648000px;}
.ls13{letter-spacing:0.663000px;}
.ls10{letter-spacing:0.671250px;}
.ls80{letter-spacing:0.675000px;}
.lse{letter-spacing:0.678450px;}
.ls1a{letter-spacing:0.702000px;}
.ls73{letter-spacing:0.720000px;}
.ls20{letter-spacing:0.756000px;}
.ls76{letter-spacing:0.765000px;}
.ls3b{letter-spacing:0.810000px;}
.ls17{letter-spacing:0.816000px;}
.ls95{letter-spacing:0.855000px;}
.ls46{letter-spacing:0.864000px;}
.lsc{letter-spacing:0.895050px;}
.ls4d{letter-spacing:0.918000px;}
.ls67{letter-spacing:0.945000px;}
.ls84{letter-spacing:0.972000px;}
.ls85{letter-spacing:1.026000px;}
.ls82{letter-spacing:1.035000px;}
.lsf{letter-spacing:1.071000px;}
.ls4f{letter-spacing:1.080000px;}
.ls66{letter-spacing:1.188000px;}
.ls65{letter-spacing:1.200000px;}
.ls22{letter-spacing:1.296000px;}
.lsd{letter-spacing:1.377000px;}
.ls68{letter-spacing:1.512000px;}
.ls69{letter-spacing:1.519200px;}
.ls71{letter-spacing:1.560000px;}
.ls72{letter-spacing:1.944000px;}
.ls0{letter-spacing:2.592000px;}
.ls26{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls86{letter-spacing:6.120000px;}
.ls4a{letter-spacing:14.742000px;}
.ls48{letter-spacing:84.840000px;}
.ls49{letter-spacing:110.495100px;}
.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;}
}
.ws6f{word-spacing:-21.792000px;}
.ws2{word-spacing:-15.067500px;}
.ws2e{word-spacing:-14.700000px;}
.ws2f{word-spacing:-13.596000px;}
.ws69{word-spacing:-13.500000px;}
.ws67{word-spacing:-13.068000px;}
.ws41{word-spacing:-12.771000px;}
.ws8c{word-spacing:-12.744000px;}
.ws8b{word-spacing:-12.582000px;}
.ws1{word-spacing:-12.480000px;}
.ws45{word-spacing:-12.474000px;}
.ws53{word-spacing:-12.420000px;}
.ws4b{word-spacing:-12.366000px;}
.ws4{word-spacing:-12.360000px;}
.ws31{word-spacing:-12.258000px;}
.ws8{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.192000px;}
.ws44{word-spacing:-12.150000px;}
.ws42{word-spacing:-12.042000px;}
.ws6{word-spacing:-11.988000px;}
.ws54{word-spacing:-11.934000px;}
.ws4c{word-spacing:-11.880000px;}
.ws68{word-spacing:-11.826000px;}
.ws32{word-spacing:-11.772000px;}
.ws34{word-spacing:-11.718000px;}
.ws6a{word-spacing:-11.664000px;}
.ws66{word-spacing:-11.610000px;}
.ws30{word-spacing:-11.232000px;}
.ws5{word-spacing:-11.124000px;}
.wsaa{word-spacing:-10.665000px;}
.wsc0{word-spacing:-10.530000px;}
.ws33{word-spacing:-10.476000px;}
.wsc{word-spacing:-10.200000px;}
.ws8e{word-spacing:-10.125000px;}
.wsab{word-spacing:-9.990000px;}
.wsc7{word-spacing:-9.945000px;}
.wsad{word-spacing:-9.855000px;}
.wsbf{word-spacing:-9.810000px;}
.wsb7{word-spacing:-9.765000px;}
.wsbc{word-spacing:-9.675000px;}
.wsac{word-spacing:-9.630000px;}
.ws8f{word-spacing:-9.540000px;}
.ws70{word-spacing:-9.534000px;}
.ws71{word-spacing:-9.030000px;}
.ws8d{word-spacing:-8.775000px;}
.ws5e{word-spacing:-8.388900px;}
.ws55{word-spacing:-8.318700px;}
.ws9{word-spacing:-8.213400px;}
.ws65{word-spacing:-8.178300px;}
.ws7d{word-spacing:-8.143200px;}
.ws5b{word-spacing:-8.108100px;}
.ws80{word-spacing:-8.073000px;}
.ws5c{word-spacing:-8.037900px;}
.ws3{word-spacing:-8.034000px;}
.ws5d{word-spacing:-8.002800px;}
.ws7{word-spacing:-7.967700px;}
.ws7f{word-spacing:-7.932600px;}
.wsb6{word-spacing:-7.875000px;}
.ws81{word-spacing:-7.862400px;}
.ws7e{word-spacing:-7.581600px;}
.wsb{word-spacing:-6.795750px;}
.ws6e{word-spacing:-6.762000px;}
.wsa{word-spacing:-6.630000px;}
.ws6d{word-spacing:-6.197100px;}
.wsae{word-spacing:-6.120000px;}
.ws64{word-spacing:-5.508000px;}
.wsf{word-spacing:-3.276000px;}
.ws46{word-spacing:-1.890000px;}
.ws38{word-spacing:-1.860000px;}
.ws19{word-spacing:-1.836000px;}
.ws37{word-spacing:-1.782000px;}
.ws1f{word-spacing:-1.674000px;}
.ws47{word-spacing:-1.620000px;}
.ws79{word-spacing:-1.566000px;}
.ws90{word-spacing:-1.560000px;}
.wsa4{word-spacing:-1.530000px;}
.ws3d{word-spacing:-1.512000px;}
.ws1a{word-spacing:-1.404000px;}
.ws24{word-spacing:-1.377000px;}
.ws3c{word-spacing:-1.350000px;}
.ws84{word-spacing:-1.296000px;}
.ws2d{word-spacing:-1.275000px;}
.ws1c{word-spacing:-1.242000px;}
.wsb1{word-spacing:-1.215000px;}
.ws89{word-spacing:-1.200000px;}
.ws3e{word-spacing:-1.188000px;}
.ws10{word-spacing:-1.134000px;}
.wsbe{word-spacing:-1.125000px;}
.ws78{word-spacing:-1.080000px;}
.ws25{word-spacing:-1.071000px;}
.ws9a{word-spacing:-1.035000px;}
.ws87{word-spacing:-1.026000px;}
.wsb5{word-spacing:-0.990000px;}
.ws59{word-spacing:-0.972000px;}
.ws7c{word-spacing:-0.966000px;}
.ws7a{word-spacing:-0.924000px;}
.ws5a{word-spacing:-0.918000px;}
.wsbb{word-spacing:-0.900000px;}
.ws5f{word-spacing:-0.864000px;}
.ws2c{word-spacing:-0.816000px;}
.ws73{word-spacing:-0.810000px;}
.wsb2{word-spacing:-0.765000px;}
.ws40{word-spacing:-0.756000px;}
.ws97{word-spacing:-0.720000px;}
.ws77{word-spacing:-0.702000px;}
.ws28{word-spacing:-0.663000px;}
.ws1e{word-spacing:-0.648000px;}
.ws15{word-spacing:-0.594000px;}
.wsa0{word-spacing:-0.585000px;}
.ws2a{word-spacing:-0.561000px;}
.ws49{word-spacing:-0.540000px;}
.wsa1{word-spacing:-0.495000px;}
.ws3a{word-spacing:-0.486000px;}
.ws56{word-spacing:-0.480000px;}
.ws9f{word-spacing:-0.450000px;}
.ws35{word-spacing:-0.432000px;}
.ws63{word-spacing:-0.421200px;}
.ws48{word-spacing:-0.420000px;}
.ws2b{word-spacing:-0.408000px;}
.ws99{word-spacing:-0.405000px;}
.ws17{word-spacing:-0.378000px;}
.ws83{word-spacing:-0.360000px;}
.ws1b{word-spacing:-0.324000px;}
.ws9d{word-spacing:-0.315000px;}
.ws14{word-spacing:-0.280800px;}
.ws4a{word-spacing:-0.270000px;}
.ws27{word-spacing:-0.255000px;}
.ws7b{word-spacing:-0.252000px;}
.ws23{word-spacing:-0.245700px;}
.wsbd{word-spacing:-0.225000px;}
.ws1d{word-spacing:-0.216000px;}
.ws18{word-spacing:-0.210600px;}
.ws9b{word-spacing:-0.180000px;}
.ws13{word-spacing:-0.162000px;}
.ws61{word-spacing:-0.140400px;}
.wsc5{word-spacing:-0.135000px;}
.ws82{word-spacing:-0.120000px;}
.ws57{word-spacing:-0.108000px;}
.wsa9{word-spacing:-0.090000px;}
.ws16{word-spacing:-0.070200px;}
.ws86{word-spacing:-0.060000px;}
.ws43{word-spacing:-0.054000px;}
.wsa3{word-spacing:-0.045000px;}
.ws62{word-spacing:-0.035100px;}
.wsd{word-spacing:0.000000px;}
.wsc4{word-spacing:0.045000px;}
.ws21{word-spacing:0.054000px;}
.ws98{word-spacing:0.060000px;}
.wsa2{word-spacing:0.090000px;}
.ws29{word-spacing:0.102000px;}
.ws3f{word-spacing:0.108000px;}
.wsa5{word-spacing:0.135000px;}
.ws50{word-spacing:0.162000px;}
.ws95{word-spacing:0.180000px;}
.ws39{word-spacing:0.216000px;}
.wsa6{word-spacing:0.225000px;}
.ws74{word-spacing:0.270000px;}
.ws9c{word-spacing:0.315000px;}
.ws52{word-spacing:0.324000px;}
.ws3b{word-spacing:0.378000px;}
.ws9e{word-spacing:0.405000px;}
.ws4d{word-spacing:0.432000px;}
.wsa7{word-spacing:0.450000px;}
.ws36{word-spacing:0.486000px;}
.ws12{word-spacing:0.540000px;}
.ws58{word-spacing:0.594000px;}
.wsaf{word-spacing:0.630000px;}
.ws20{word-spacing:0.648000px;}
.wsc6{word-spacing:0.675000px;}
.ws4e{word-spacing:0.702000px;}
.wsb3{word-spacing:0.720000px;}
.ws60{word-spacing:0.810000px;}
.ws93{word-spacing:0.864000px;}
.wsb4{word-spacing:0.900000px;}
.ws96{word-spacing:0.918000px;}
.wse{word-spacing:0.960000px;}
.ws75{word-spacing:0.972000px;}
.ws4f{word-spacing:1.080000px;}
.wsb0{word-spacing:1.125000px;}
.ws51{word-spacing:1.188000px;}
.wsa8{word-spacing:1.215000px;}
.ws11{word-spacing:1.242000px;}
.ws88{word-spacing:1.350000px;}
.wsc8{word-spacing:1.404000px;}
.ws76{word-spacing:1.458000px;}
.wsb8{word-spacing:1.575000px;}
.wsc1{word-spacing:1.620000px;}
.ws26{word-spacing:1.632000px;}
.ws8a{word-spacing:1.674000px;}
.wsc2{word-spacing:1.710000px;}
.ws22{word-spacing:1.998000px;}
.ws92{word-spacing:2.052000px;}
.wsb9{word-spacing:2.115000px;}
.wsba{word-spacing:2.205000px;}
.wsc3{word-spacing:2.250000px;}
.ws85{word-spacing:2.268000px;}
.ws91{word-spacing:2.592000px;}
.ws94{word-spacing:3.564000px;}
.ws72{word-spacing:55.146000px;}
.ws6b{word-spacing:58.212000px;}
.ws6c{word-spacing:271.152000px;}
._19{margin-left:-12.285000px;}
._17{margin-left:-9.585000px;}
._5{margin-left:-8.475600px;}
._11{margin-left:-7.318200px;}
._7{margin-left:-6.275400px;}
._2{margin-left:-4.579800px;}
._1{margin-left:-3.432000px;}
._0{margin-left:-1.776000px;}
._3{width:1.107000px;}
._4{width:2.134500px;}
._6{width:3.957600px;}
._15{width:6.456000px;}
._13{width:7.920000px;}
._1a{width:8.941500px;}
._14{width:10.350000px;}
._12{width:12.330000px;}
._16{width:13.590000px;}
._9{width:15.282000px;}
._18{width:17.190000px;}
._8{width:46.928400px;}
._a{width:48.628800px;}
._c{width:89.598000px;}
._d{width:154.383600px;}
._e{width:168.252000px;}
._10{width:176.525100px;}
._b{width:187.908000px;}
._f{width:189.760200px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fsc{font-size:27.300000px;}
.fs7{font-size:33.150000px;}
.fs6{font-size:35.100000px;}
.fs4{font-size:39.000000px;}
.fsb{font-size:42.000000px;}
.fse{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fsd{font-size:96.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:27.177600px;}
.y1{bottom:27.197850px;}
.y31{bottom:68.313900px;}
.y14c{bottom:68.551500px;}
.yaa{bottom:68.559000px;}
.y18b{bottom:68.591250px;}
.y87{bottom:71.055300px;}
.y79{bottom:75.555300px;}
.y49{bottom:76.305300px;}
.yc3{bottom:78.546300px;}
.yfe{bottom:80.046300px;}
.y18a{bottom:81.337500px;}
.y1d5{bottom:81.547800px;}
.y30{bottom:83.307900px;}
.y14b{bottom:83.550000px;}
.ya9{bottom:83.557500px;}
.y86{bottom:86.053800px;}
.y78{bottom:90.553800px;}
.y48{bottom:91.303800px;}
.yc2{bottom:93.544800px;}
.y189{bottom:94.083750px;}
.yfd{bottom:95.044800px;}
.y1d4{bottom:96.546300px;}
.y2f{bottom:98.307900px;}
.ya8{bottom:98.556000px;}
.y85{bottom:101.052300px;}
.y77{bottom:105.552300px;}
.y47{bottom:106.302300px;}
.y188{bottom:106.830000px;}
.yc1{bottom:108.547800px;}
.yfc{bottom:110.044800px;}
.y14a{bottom:111.099600px;}
.y1d3{bottom:111.544800px;}
.y2e{bottom:113.307900px;}
.ya7{bottom:113.554500px;}
.y84{bottom:116.050800px;}
.y187{bottom:119.576250px;}
.y76{bottom:120.550800px;}
.y46{bottom:121.300800px;}
.yc0{bottom:123.546300px;}
.yfb{bottom:125.043300px;}
.y149{bottom:126.098100px;}
.y1d2{bottom:126.543300px;}
.y2d{bottom:128.307900px;}
.ya6{bottom:128.553000px;}
.y83{bottom:131.049300px;}
.y186{bottom:132.322500px;}
.y75{bottom:135.549300px;}
.y45{bottom:136.299300px;}
.ybf{bottom:138.544800px;}
.yfa{bottom:140.043300px;}
.y148{bottom:141.096600px;}
.y1d1{bottom:141.543300px;}
.y2c{bottom:143.307900px;}
.ya5{bottom:143.551500px;}
.y185{bottom:145.068750px;}
.y82{bottom:146.047800px;}
.y74{bottom:150.547800px;}
.y44{bottom:151.297800px;}
.ybe{bottom:153.546300px;}
.y147{bottom:156.095100px;}
.y184{bottom:157.815000px;}
.y2b{bottom:158.307900px;}
.ya4{bottom:158.556000px;}
.y81{bottom:161.046300px;}
.y73{bottom:165.546300px;}
.y43{bottom:166.296300px;}
.ybd{bottom:168.544800px;}
.y183{bottom:170.561250px;}
.y146{bottom:171.093600px;}
.yf9{bottom:173.053800px;}
.y2a{bottom:173.307900px;}
.ya3{bottom:173.554500px;}
.y1d0{bottom:174.561300px;}
.y80{bottom:176.044800px;}
.y72{bottom:180.544800px;}
.y42{bottom:181.294800px;}
.y182{bottom:183.307500px;}
.ybc{bottom:183.544800px;}
.y145{bottom:186.092100px;}
.yf8{bottom:188.052300px;}
.y29{bottom:188.307900px;}
.ya2{bottom:188.553000px;}
.y1cf{bottom:189.559800px;}
.y7f{bottom:191.043300px;}
.y71{bottom:195.543300px;}
.y181{bottom:196.053750px;}
.y41{bottom:196.293300px;}
.ybb{bottom:198.553800px;}
.y144{bottom:201.090600px;}
.yf7{bottom:203.050800px;}
.ya1{bottom:203.551500px;}
.y1ce{bottom:204.558300px;}
.y28{bottom:207.636900px;}
.y180{bottom:208.800000px;}
.y40{bottom:211.293300px;}
.yba{bottom:213.552300px;}
.yf6{bottom:218.049300px;}
.ya0{bottom:218.551500px;}
.y1cd{bottom:219.556800px;}
.y17f{bottom:221.550000px;}
.yb9{bottom:228.550800px;}
.y70{bottom:228.586800px;}
.y143{bottom:228.643050px;}
.yf5{bottom:233.047800px;}
.y9f{bottom:233.550000px;}
.y1cc{bottom:234.555300px;}
.y27{bottom:240.696300px;}
.y90{bottom:243.007950px;}
.yb8{bottom:243.549300px;}
.y6f{bottom:243.585300px;}
.y142{bottom:243.641550px;}
.y3f{bottom:244.300800px;}
.yf4{bottom:248.046300px;}
.y9e{bottom:248.550000px;}
.y17e{bottom:249.016350px;}
.y1cb{bottom:249.553800px;}
.y26{bottom:255.694800px;}
.y8f{bottom:258.006450px;}
.yb7{bottom:258.547800px;}
.y6e{bottom:258.583800px;}
.y141{bottom:258.640050px;}
.y3e{bottom:259.299300px;}
.yf3{bottom:263.044800px;}
.y17d{bottom:264.014850px;}
.y1ca{bottom:264.552300px;}
.y25{bottom:270.693300px;}
.y8e{bottom:273.004950px;}
.yb6{bottom:273.546300px;}
.y6d{bottom:273.582300px;}
.y140{bottom:273.638550px;}
.y3d{bottom:274.297800px;}
.yf2{bottom:278.044800px;}
.y17c{bottom:279.014850px;}
.y9d{bottom:279.055650px;}
.y1c9{bottom:279.550800px;}
.y24{bottom:285.691800px;}
.y8d{bottom:288.003450px;}
.yb5{bottom:288.544800px;}
.y6c{bottom:288.580800px;}
.y13f{bottom:288.637050px;}
.y3c{bottom:289.296300px;}
.yf1{bottom:293.050800px;}
.y17b{bottom:294.016350px;}
.y9c{bottom:294.054150px;}
.y1c8{bottom:294.549300px;}
.y23{bottom:300.690300px;}
.y8c{bottom:303.001950px;}
.yb4{bottom:303.547800px;}
.y6b{bottom:303.579300px;}
.y13e{bottom:303.635550px;}
.y3b{bottom:304.294800px;}
.yf0{bottom:308.049300px;}
.y17a{bottom:309.014850px;}
.y9b{bottom:309.052650px;}
.y1c7{bottom:309.547800px;}
.y22{bottom:315.688800px;}
.y8b{bottom:318.000450px;}
.yb3{bottom:318.546300px;}
.y6a{bottom:318.577800px;}
.y13d{bottom:318.634050px;}
.y3a{bottom:319.297800px;}
.yef{bottom:323.047800px;}
.y179{bottom:324.022350px;}
.y9a{bottom:324.051150px;}
.y1c6{bottom:324.546300px;}
.y21{bottom:330.687300px;}
.y8a{bottom:333.001950px;}
.yb2{bottom:333.544800px;}
.y69{bottom:333.576300px;}
.y13c{bottom:333.632550px;}
.y39{bottom:334.296300px;}
.yee{bottom:338.046300px;}
.y178{bottom:339.020850px;}
.y99{bottom:339.049650px;}
.y1c5{bottom:339.544800px;}
.y20{bottom:345.685800px;}
.y89{bottom:348.000450px;}
.yb1{bottom:348.543300px;}
.y68{bottom:348.574800px;}
.y13b{bottom:348.632550px;}
.y38{bottom:349.294800px;}
.yed{bottom:353.044800px;}
.y177{bottom:354.019350px;}
.y98{bottom:354.048150px;}
.y1c4{bottom:354.543300px;}
.y1f{bottom:360.690300px;}
.y88{bottom:362.998950px;}
.y67{bottom:363.573300px;}
.y13a{bottom:363.632550px;}
.y37{bottom:364.293300px;}
.yec{bottom:368.049300px;}
.y176{bottom:369.017850px;}
.y97{bottom:369.046650px;}
.y1c3{bottom:369.543300px;}
.y1e{bottom:375.688800px;}
.y66{bottom:378.571800px;}
.y139{bottom:378.640050px;}
.yeb{bottom:383.047800px;}
.y175{bottom:384.016350px;}
.y1d{bottom:390.687300px;}
.y65{bottom:393.570300px;}
.y138{bottom:393.638550px;}
.yea{bottom:398.046300px;}
.y174{bottom:399.014850px;}
.y96{bottom:399.550800px;}
.y1c2{bottom:402.745800px;}
.yce{bottom:403.993950px;}
.y1c{bottom:405.685800px;}
.y64{bottom:408.568800px;}
.y137{bottom:408.637050px;}
.ye9{bottom:413.044800px;}
.y173{bottom:414.013350px;}
.y95{bottom:414.549300px;}
.y1c1{bottom:415.492050px;}
.ycd{bottom:418.992450px;}
.y1b{bottom:420.685800px;}
.y63{bottom:423.567300px;}
.y136{bottom:423.635550px;}
.y52{bottom:425.349450px;}
.ye8{bottom:428.044800px;}
.y1c0{bottom:428.238300px;}
.y94{bottom:429.547800px;}
.ycc{bottom:433.990950px;}
.y1a{bottom:435.685800px;}
.y62{bottom:438.565800px;}
.y135{bottom:438.634050px;}
.y51{bottom:440.347950px;}
.y1bf{bottom:440.984550px;}
.y172{bottom:441.481050px;}
.ye7{bottom:443.056800px;}
.y93{bottom:444.546300px;}
.ycb{bottom:448.989450px;}
.y19{bottom:450.724800px;}
.y61{bottom:453.564300px;}
.y134{bottom:453.632550px;}
.y1be{bottom:453.730800px;}
.y50{bottom:455.346450px;}
.y171{bottom:456.479550px;}
.ye6{bottom:458.055300px;}
.y92{bottom:459.544800px;}
.yca{bottom:463.987950px;}
.y18{bottom:465.723300px;}
.y1bd{bottom:466.477050px;}
.y60{bottom:468.562800px;}
.y133{bottom:468.632550px;}
.y4f{bottom:470.344950px;}
.y170{bottom:471.478050px;}
.ye5{bottom:473.053800px;}
.y91{bottom:474.543300px;}
.yc9{bottom:478.986450px;}
.y1bc{bottom:479.223300px;}
.y5f{bottom:483.561300px;}
.y132{bottom:483.631050px;}
.y4e{bottom:485.343450px;}
.y16f{bottom:486.476550px;}
.ye4{bottom:488.052300px;}
.y1bb{bottom:491.969550px;}
.yc8{bottom:493.984950px;}
.y5e{bottom:498.559800px;}
.y4d{bottom:500.341950px;}
.ye3{bottom:503.050800px;}
.y1ba{bottom:504.715800px;}
.yc7{bottom:508.983450px;}
.y131{bottom:511.173150px;}
.y17{bottom:512.973300px;}
.y5d{bottom:513.558300px;}
.y16e{bottom:513.944400px;}
.y4c{bottom:515.340450px;}
.y1b9{bottom:517.462050px;}
.ye2{bottom:518.049300px;}
.yc6{bottom:523.981950px;}
.y130{bottom:526.173150px;}
.y5c{bottom:528.556800px;}
.y16d{bottom:528.942900px;}
.y16{bottom:529.470300px;}
.y1b8{bottom:530.208300px;}
.y4b{bottom:530.340450px;}
.ye1{bottom:533.047800px;}
.yb0{bottom:534.243450px;}
.yc5{bottom:538.980450px;}
.y12f{bottom:541.171650px;}
.y1b7{bottom:542.954550px;}
.y5b{bottom:543.555300px;}
.y16c{bottom:543.941400px;}
.y4a{bottom:545.338950px;}
.y15{bottom:545.967300px;}
.ye0{bottom:548.046300px;}
.yaf{bottom:549.241950px;}
.yc4{bottom:553.978950px;}
.y1b6{bottom:555.700800px;}
.y5a{bottom:558.553800px;}
.y16b{bottom:558.944400px;}
.y14{bottom:562.464300px;}
.ydf{bottom:563.044800px;}
.yae{bottom:564.240450px;}
.y1b5{bottom:568.447050px;}
.y12e{bottom:568.721100px;}
.y59{bottom:573.552300px;}
.y16a{bottom:573.942900px;}
.yde{bottom:578.046300px;}
.y13{bottom:578.961300px;}
.yad{bottom:579.241950px;}
.y1b4{bottom:581.193300px;}
.y12d{bottom:583.719600px;}
.y58{bottom:588.550800px;}
.y169{bottom:588.941400px;}
.ydd{bottom:593.044800px;}
.y1b3{bottom:593.939550px;}
.yac{bottom:594.240450px;}
.y12{bottom:595.458300px;}
.y12c{bottom:598.718100px;}
.y57{bottom:603.549300px;}
.y168{bottom:603.939900px;}
.y1b2{bottom:606.685800px;}
.ydc{bottom:608.062800px;}
.yab{bottom:609.238950px;}
.y11{bottom:611.955300px;}
.y12b{bottom:613.716600px;}
.y56{bottom:618.547800px;}
.y1b1{bottom:619.432050px;}
.ydb{bottom:623.061300px;}
.y10{bottom:628.452300px;}
.y12a{bottom:628.715100px;}
.y167{bottom:631.407750px;}
.y1b0{bottom:632.178300px;}
.y55{bottom:633.546300px;}
.yda{bottom:638.059800px;}
.y129{bottom:643.713600px;}
.y1af{bottom:644.924550px;}
.yf{bottom:644.949300px;}
.y166{bottom:646.406250px;}
.y54{bottom:648.544800px;}
.yd9{bottom:653.058300px;}
.y1ae{bottom:657.670800px;}
.y128{bottom:658.713600px;}
.y165{bottom:661.404750px;}
.ye{bottom:661.446300px;}
.y53{bottom:663.543300px;}
.yd8{bottom:668.056800px;}
.y1ad{bottom:670.417050px;}
.y127{bottom:673.718100px;}
.y164{bottom:676.404750px;}
.yd{bottom:677.943300px;}
.yd7{bottom:683.055300px;}
.y1ac{bottom:683.163300px;}
.y126{bottom:688.716600px;}
.y163{bottom:691.409250px;}
.yc{bottom:694.440300px;}
.y1ab{bottom:695.909550px;}
.yd6{bottom:698.053800px;}
.y125{bottom:703.715100px;}
.y162{bottom:706.407750px;}
.y1aa{bottom:708.655800px;}
.yb{bottom:710.937300px;}
.yd5{bottom:713.052300px;}
.y7e{bottom:714.844950px;}
.y124{bottom:718.713600px;}
.y1a9{bottom:721.402050px;}
.y161{bottom:721.406250px;}
.ya{bottom:727.434300px;}
.yd4{bottom:728.050800px;}
.y7d{bottom:729.843450px;}
.y123{bottom:733.719750px;}
.y1a8{bottom:734.148300px;}
.y160{bottom:736.404750px;}
.yd3{bottom:743.049300px;}
.y7c{bottom:744.841950px;}
.y1a7{bottom:746.894550px;}
.y122{bottom:748.718250px;}
.y15f{bottom:751.403250px;}
.y34{bottom:757.145400px;}
.y9{bottom:757.434300px;}
.yd2{bottom:758.047800px;}
.y1a6{bottom:759.640800px;}
.y7b{bottom:759.840450px;}
.y121{bottom:763.716750px;}
.y1a5{bottom:772.387050px;}
.yd1{bottom:773.046300px;}
.y7a{bottom:774.838950px;}
.y8{bottom:775.434300px;}
.y33{bottom:778.144650px;}
.y120{bottom:778.715250px;}
.y15e{bottom:778.871100px;}
.y1a4{bottom:785.133300px;}
.yd0{bottom:788.044800px;}
.y7{bottom:793.434300px;}
.y11f{bottom:793.713750px;}
.y15d{bottom:793.869600px;}
.y1a3{bottom:797.879550px;}
.y32{bottom:799.143900px;}
.ycf{bottom:803.043300px;}
.y11e{bottom:808.712250px;}
.y15c{bottom:808.868100px;}
.y1a2{bottom:810.625800px;}
.y1a1{bottom:823.372050px;}
.y15b{bottom:823.866600px;}
.y6{bottom:826.422300px;}
.y1a0{bottom:836.118300px;}
.y11d{bottom:836.255700px;}
.y19f{bottom:848.864550px;}
.y11c{bottom:851.254200px;}
.y15a{bottom:851.340450px;}
.y10c{bottom:855.169800px;}
.y1e3{bottom:858.556800px;}
.y19e{bottom:861.610800px;}
.y11b{bottom:866.264700px;}
.y159{bottom:866.338950px;}
.y10b{bottom:870.168300px;}
.y5{bottom:871.428300px;}
.y1e2{bottom:873.555300px;}
.y19d{bottom:874.357050px;}
.y11a{bottom:881.263200px;}
.y158{bottom:881.337450px;}
.y19c{bottom:887.103300px;}
.y1e1{bottom:888.553800px;}
.y119{bottom:896.261700px;}
.y157{bottom:896.335950px;}
.y19b{bottom:899.849550px;}
.y10a{bottom:900.340800px;}
.y1e0{bottom:903.552300px;}
.y118{bottom:911.260200px;}
.y156{bottom:911.334450px;}
.y19a{bottom:912.595800px;}
.y4{bottom:916.434300px;}
.y109{bottom:917.781300px;}
.y1df{bottom:918.550800px;}
.y199{bottom:925.342050px;}
.y117{bottom:926.258700px;}
.y155{bottom:926.332950px;}
.y35{bottom:926.409600px;}
.y1de{bottom:933.549300px;}
.y108{bottom:935.221800px;}
.y198{bottom:938.088300px;}
.y116{bottom:941.257200px;}
.y154{bottom:941.331450px;}
.y1dd{bottom:948.547800px;}
.y197{bottom:950.834550px;}
.y107{bottom:952.662300px;}
.y115{bottom:956.255700px;}
.y153{bottom:956.329950px;}
.y1dc{bottom:963.546300px;}
.y196{bottom:963.580800px;}
.y106{bottom:970.102800px;}
.y114{bottom:971.254200px;}
.y195{bottom:976.327050px;}
.y1db{bottom:978.544800px;}
.y152{bottom:983.803800px;}
.y113{bottom:986.254200px;}
.y105{bottom:987.531300px;}
.y194{bottom:989.073300px;}
.y1da{bottom:993.543300px;}
.y151{bottom:998.802300px;}
.y112{bottom:1001.257200px;}
.y193{bottom:1001.819550px;}
.y104{bottom:1004.971800px;}
.y150{bottom:1013.800800px;}
.y192{bottom:1014.565800px;}
.y1d9{bottom:1015.297800px;}
.y111{bottom:1016.255700px;}
.y103{bottom:1022.412300px;}
.y191{bottom:1027.312050px;}
.y14f{bottom:1028.799300px;}
.y1d8{bottom:1030.296300px;}
.y110{bottom:1031.254200px;}
.y102{bottom:1039.852800px;}
.y190{bottom:1040.058300px;}
.y14e{bottom:1043.797800px;}
.y10f{bottom:1046.252700px;}
.y1d7{bottom:1052.044800px;}
.y18f{bottom:1052.804550px;}
.y101{bottom:1057.290300px;}
.y14d{bottom:1058.796300px;}
.y18e{bottom:1065.550800px;}
.y1d6{bottom:1073.793300px;}
.y10e{bottom:1073.794800px;}
.y100{bottom:1074.727800px;}
.y18d{bottom:1078.297050px;}
.y10d{bottom:1088.793300px;}
.y18c{bottom:1091.043300px;}
.yff{bottom:1092.168300px;}
.y36{bottom:1139.853000px;}
.y3{bottom:1140.126900px;}
.hb{height:23.842749px;}
.h10{height:35.411133px;}
.he{height:36.681152px;}
.h8{height:38.838867px;}
.hd{height:41.158749px;}
.h1a{height:42.084000px;}
.h18{height:43.008000px;}
.h4{height:44.233154px;}
.h1f{height:44.505000px;}
.h1d{height:45.090000px;}
.h3{height:45.744000px;}
.h1e{height:46.080000px;}
.h20{height:47.469727px;}
.hc{height:48.510668px;}
.hf{height:48.534668px;}
.h7{height:51.416016px;}
.ha{height:53.406000px;}
.h17{height:54.030000px;}
.h15{height:54.084000px;}
.h16{height:54.090000px;}
.h9{height:54.108000px;}
.h14{height:55.284000px;}
.h13{height:55.296000px;}
.h2{height:57.099609px;}
.h6{height:57.128906px;}
.h12{height:62.841797px;}
.h1c{height:76.920000px;}
.h1b{height:76.938000px;}
.h19{height:76.956000px;}
.h11{height:77.677734px;}
.h5{height:148.535156px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:14.083950px;}
.x2{left:61.191450px;}
.x7{left:140.952750px;}
.x4{left:233.456400px;}
.x9{left:238.143900px;}
.x5{left:251.453700px;}
.xb{left:300.594600px;}
.x3{left:584.586600px;}
.xa{left:816.003600px;}
.x8{left:824.207400px;}
.x1{left:825.232800px;}
@media print{
.v3{vertical-align:-16.320000pt;}
.v4{vertical-align:-15.413333pt;}
.v6{vertical-align:-9.626667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.704000pt;}
.v2{vertical-align:16.176000pt;}
.v1{vertical-align:18.133867pt;}
.ls61{letter-spacing:-3.168000pt;}
.ls55{letter-spacing:-2.464000pt;}
.ls7c{letter-spacing:-1.680000pt;}
.ls93{letter-spacing:-1.560000pt;}
.ls7f{letter-spacing:-1.520000pt;}
.ls8f{letter-spacing:-1.480000pt;}
.ls8a{letter-spacing:-1.160000pt;}
.ls31{letter-spacing:-1.104000pt;}
.ls4b{letter-spacing:-1.056000pt;}
.ls2e{letter-spacing:-1.008000pt;}
.ls51{letter-spacing:-0.960000pt;}
.ls91{letter-spacing:-0.920000pt;}
.ls4e{letter-spacing:-0.912000pt;}
.ls2d{letter-spacing:-0.864000pt;}
.ls19{letter-spacing:-0.853333pt;}
.ls90{letter-spacing:-0.840000pt;}
.ls32{letter-spacing:-0.816000pt;}
.ls8e{letter-spacing:-0.800000pt;}
.ls52{letter-spacing:-0.768000pt;}
.ls89{letter-spacing:-0.760000pt;}
.ls4c{letter-spacing:-0.720000pt;}
.ls7d{letter-spacing:-0.680000pt;}
.ls41{letter-spacing:-0.672000pt;}
.ls88{letter-spacing:-0.640000pt;}
.ls54{letter-spacing:-0.634667pt;}
.ls2f{letter-spacing:-0.624000pt;}
.ls94{letter-spacing:-0.600000pt;}
.ls3c{letter-spacing:-0.576000pt;}
.ls75{letter-spacing:-0.560000pt;}
.ls2a{letter-spacing:-0.528000pt;}
.ls77{letter-spacing:-0.520000pt;}
.ls40{letter-spacing:-0.480000pt;}
.ls56{letter-spacing:-0.448000pt;}
.ls79{letter-spacing:-0.440000pt;}
.ls2b{letter-spacing:-0.432000pt;}
.ls78{letter-spacing:-0.400000pt;}
.ls39{letter-spacing:-0.384000pt;}
.ls92{letter-spacing:-0.360000pt;}
.ls5f{letter-spacing:-0.343200pt;}
.ls1d{letter-spacing:-0.336000pt;}
.ls7a{letter-spacing:-0.320000pt;}
.ls37{letter-spacing:-0.288000pt;}
.ls8b{letter-spacing:-0.280000pt;}
.ls42{letter-spacing:-0.240000pt;}
.ls8d{letter-spacing:-0.200000pt;}
.ls30{letter-spacing:-0.192000pt;}
.ls53{letter-spacing:-0.186667pt;}
.ls50{letter-spacing:-0.160000pt;}
.ls1c{letter-spacing:-0.144000pt;}
.ls7b{letter-spacing:-0.120000pt;}
.ls1f{letter-spacing:-0.096000pt;}
.ls64{letter-spacing:-0.093600pt;}
.ls24{letter-spacing:-0.090667pt;}
.ls8c{letter-spacing:-0.080000pt;}
.ls74{letter-spacing:-0.053333pt;}
.ls2c{letter-spacing:-0.048000pt;}
.ls60{letter-spacing:-0.031200pt;}
.ls18{letter-spacing:0.000000pt;}
.ls5a{letter-spacing:0.001867pt;}
.ls2{letter-spacing:0.011733pt;}
.ls47{letter-spacing:0.022133pt;}
.ls44{letter-spacing:0.031200pt;}
.ls7e{letter-spacing:0.040000pt;}
.ls28{letter-spacing:0.048000pt;}
.ls63{letter-spacing:0.053333pt;}
.ls6{letter-spacing:0.062400pt;}
.ls70{letter-spacing:0.080000pt;}
.ls7{letter-spacing:0.081600pt;}
.ls58{letter-spacing:0.082400pt;}
.ls62{letter-spacing:0.093600pt;}
.ls1b{letter-spacing:0.096000pt;}
.ls5e{letter-spacing:0.106667pt;}
.ls6e{letter-spacing:0.120000pt;}
.ls43{letter-spacing:0.124800pt;}
.ls6d{letter-spacing:0.128000pt;}
.ls38{letter-spacing:0.144000pt;}
.ls12{letter-spacing:0.147067pt;}
.ls25{letter-spacing:0.147333pt;}
.ls5d{letter-spacing:0.156000pt;}
.ls87{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.187200pt;}
.ls1e{letter-spacing:0.192000pt;}
.ls83{letter-spacing:0.200000pt;}
.ls3e{letter-spacing:0.202800pt;}
.ls9{letter-spacing:0.214933pt;}
.ls35{letter-spacing:0.216000pt;}
.ls23{letter-spacing:0.218400pt;}
.ls11{letter-spacing:0.226667pt;}
.ls4{letter-spacing:0.232533pt;}
.ls59{letter-spacing:0.233600pt;}
.ls27{letter-spacing:0.240000pt;}
.ls3{letter-spacing:0.249600pt;}
.ls6c{letter-spacing:0.255200pt;}
.ls6f{letter-spacing:0.280000pt;}
.ls6b{letter-spacing:0.280800pt;}
.lsa{letter-spacing:0.288000pt;}
.ls15{letter-spacing:0.306000pt;}
.ls6a{letter-spacing:0.310400pt;}
.ls3f{letter-spacing:0.312000pt;}
.ls5c{letter-spacing:0.312533pt;}
.ls57{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.336000pt;}
.ls34{letter-spacing:0.373333pt;}
.ls45{letter-spacing:0.374400pt;}
.ls5{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.384400pt;}
.ls5b{letter-spacing:0.385333pt;}
.ls81{letter-spacing:0.400000pt;}
.ls3d{letter-spacing:0.426667pt;}
.ls29{letter-spacing:0.432000pt;}
.ls33{letter-spacing:0.456000pt;}
.ls21{letter-spacing:0.480000pt;}
.ls16{letter-spacing:0.498667pt;}
.ls96{letter-spacing:0.520000pt;}
.ls36{letter-spacing:0.528000pt;}
.ls3a{letter-spacing:0.576000pt;}
.ls13{letter-spacing:0.589333pt;}
.ls10{letter-spacing:0.596667pt;}
.ls80{letter-spacing:0.600000pt;}
.lse{letter-spacing:0.603067pt;}
.ls1a{letter-spacing:0.624000pt;}
.ls73{letter-spacing:0.640000pt;}
.ls20{letter-spacing:0.672000pt;}
.ls76{letter-spacing:0.680000pt;}
.ls3b{letter-spacing:0.720000pt;}
.ls17{letter-spacing:0.725333pt;}
.ls95{letter-spacing:0.760000pt;}
.ls46{letter-spacing:0.768000pt;}
.lsc{letter-spacing:0.795600pt;}
.ls4d{letter-spacing:0.816000pt;}
.ls67{letter-spacing:0.840000pt;}
.ls84{letter-spacing:0.864000pt;}
.ls85{letter-spacing:0.912000pt;}
.ls82{letter-spacing:0.920000pt;}
.lsf{letter-spacing:0.952000pt;}
.ls4f{letter-spacing:0.960000pt;}
.ls66{letter-spacing:1.056000pt;}
.ls65{letter-spacing:1.066667pt;}
.ls22{letter-spacing:1.152000pt;}
.lsd{letter-spacing:1.224000pt;}
.ls68{letter-spacing:1.344000pt;}
.ls69{letter-spacing:1.350400pt;}
.ls71{letter-spacing:1.386667pt;}
.ls72{letter-spacing:1.728000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls26{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls86{letter-spacing:5.440000pt;}
.ls4a{letter-spacing:13.104000pt;}
.ls48{letter-spacing:75.413333pt;}
.ls49{letter-spacing:98.217867pt;}
.ws6f{word-spacing:-19.370667pt;}
.ws2{word-spacing:-13.393333pt;}
.ws2e{word-spacing:-13.066667pt;}
.ws2f{word-spacing:-12.085333pt;}
.ws69{word-spacing:-12.000000pt;}
.ws67{word-spacing:-11.616000pt;}
.ws41{word-spacing:-11.352000pt;}
.ws8c{word-spacing:-11.328000pt;}
.ws8b{word-spacing:-11.184000pt;}
.ws1{word-spacing:-11.093333pt;}
.ws45{word-spacing:-11.088000pt;}
.ws53{word-spacing:-11.040000pt;}
.ws4b{word-spacing:-10.992000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws31{word-spacing:-10.896000pt;}
.ws8{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws44{word-spacing:-10.800000pt;}
.ws42{word-spacing:-10.704000pt;}
.ws6{word-spacing:-10.656000pt;}
.ws54{word-spacing:-10.608000pt;}
.ws4c{word-spacing:-10.560000pt;}
.ws68{word-spacing:-10.512000pt;}
.ws32{word-spacing:-10.464000pt;}
.ws34{word-spacing:-10.416000pt;}
.ws6a{word-spacing:-10.368000pt;}
.ws66{word-spacing:-10.320000pt;}
.ws30{word-spacing:-9.984000pt;}
.ws5{word-spacing:-9.888000pt;}
.wsaa{word-spacing:-9.480000pt;}
.wsc0{word-spacing:-9.360000pt;}
.ws33{word-spacing:-9.312000pt;}
.wsc{word-spacing:-9.066667pt;}
.ws8e{word-spacing:-9.000000pt;}
.wsab{word-spacing:-8.880000pt;}
.wsc7{word-spacing:-8.840000pt;}
.wsad{word-spacing:-8.760000pt;}
.wsbf{word-spacing:-8.720000pt;}
.wsb7{word-spacing:-8.680000pt;}
.wsbc{word-spacing:-8.600000pt;}
.wsac{word-spacing:-8.560000pt;}
.ws8f{word-spacing:-8.480000pt;}
.ws70{word-spacing:-8.474667pt;}
.ws71{word-spacing:-8.026667pt;}
.ws8d{word-spacing:-7.800000pt;}
.ws5e{word-spacing:-7.456800pt;}
.ws55{word-spacing:-7.394400pt;}
.ws9{word-spacing:-7.300800pt;}
.ws65{word-spacing:-7.269600pt;}
.ws7d{word-spacing:-7.238400pt;}
.ws5b{word-spacing:-7.207200pt;}
.ws80{word-spacing:-7.176000pt;}
.ws5c{word-spacing:-7.144800pt;}
.ws3{word-spacing:-7.141333pt;}
.ws5d{word-spacing:-7.113600pt;}
.ws7{word-spacing:-7.082400pt;}
.ws7f{word-spacing:-7.051200pt;}
.wsb6{word-spacing:-7.000000pt;}
.ws81{word-spacing:-6.988800pt;}
.ws7e{word-spacing:-6.739200pt;}
.wsb{word-spacing:-6.040667pt;}
.ws6e{word-spacing:-6.010667pt;}
.wsa{word-spacing:-5.893333pt;}
.ws6d{word-spacing:-5.508533pt;}
.wsae{word-spacing:-5.440000pt;}
.ws64{word-spacing:-4.896000pt;}
.wsf{word-spacing:-2.912000pt;}
.ws46{word-spacing:-1.680000pt;}
.ws38{word-spacing:-1.653333pt;}
.ws19{word-spacing:-1.632000pt;}
.ws37{word-spacing:-1.584000pt;}
.ws1f{word-spacing:-1.488000pt;}
.ws47{word-spacing:-1.440000pt;}
.ws79{word-spacing:-1.392000pt;}
.ws90{word-spacing:-1.386667pt;}
.wsa4{word-spacing:-1.360000pt;}
.ws3d{word-spacing:-1.344000pt;}
.ws1a{word-spacing:-1.248000pt;}
.ws24{word-spacing:-1.224000pt;}
.ws3c{word-spacing:-1.200000pt;}
.ws84{word-spacing:-1.152000pt;}
.ws2d{word-spacing:-1.133333pt;}
.ws1c{word-spacing:-1.104000pt;}
.wsb1{word-spacing:-1.080000pt;}
.ws89{word-spacing:-1.066667pt;}
.ws3e{word-spacing:-1.056000pt;}
.ws10{word-spacing:-1.008000pt;}
.wsbe{word-spacing:-1.000000pt;}
.ws78{word-spacing:-0.960000pt;}
.ws25{word-spacing:-0.952000pt;}
.ws9a{word-spacing:-0.920000pt;}
.ws87{word-spacing:-0.912000pt;}
.wsb5{word-spacing:-0.880000pt;}
.ws59{word-spacing:-0.864000pt;}
.ws7c{word-spacing:-0.858667pt;}
.ws7a{word-spacing:-0.821333pt;}
.ws5a{word-spacing:-0.816000pt;}
.wsbb{word-spacing:-0.800000pt;}
.ws5f{word-spacing:-0.768000pt;}
.ws2c{word-spacing:-0.725333pt;}
.ws73{word-spacing:-0.720000pt;}
.wsb2{word-spacing:-0.680000pt;}
.ws40{word-spacing:-0.672000pt;}
.ws97{word-spacing:-0.640000pt;}
.ws77{word-spacing:-0.624000pt;}
.ws28{word-spacing:-0.589333pt;}
.ws1e{word-spacing:-0.576000pt;}
.ws15{word-spacing:-0.528000pt;}
.wsa0{word-spacing:-0.520000pt;}
.ws2a{word-spacing:-0.498667pt;}
.ws49{word-spacing:-0.480000pt;}
.wsa1{word-spacing:-0.440000pt;}
.ws3a{word-spacing:-0.432000pt;}
.ws56{word-spacing:-0.426667pt;}
.ws9f{word-spacing:-0.400000pt;}
.ws35{word-spacing:-0.384000pt;}
.ws63{word-spacing:-0.374400pt;}
.ws48{word-spacing:-0.373333pt;}
.ws2b{word-spacing:-0.362667pt;}
.ws99{word-spacing:-0.360000pt;}
.ws17{word-spacing:-0.336000pt;}
.ws83{word-spacing:-0.320000pt;}
.ws1b{word-spacing:-0.288000pt;}
.ws9d{word-spacing:-0.280000pt;}
.ws14{word-spacing:-0.249600pt;}
.ws4a{word-spacing:-0.240000pt;}
.ws27{word-spacing:-0.226667pt;}
.ws7b{word-spacing:-0.224000pt;}
.ws23{word-spacing:-0.218400pt;}
.wsbd{word-spacing:-0.200000pt;}
.ws1d{word-spacing:-0.192000pt;}
.ws18{word-spacing:-0.187200pt;}
.ws9b{word-spacing:-0.160000pt;}
.ws13{word-spacing:-0.144000pt;}
.ws61{word-spacing:-0.124800pt;}
.wsc5{word-spacing:-0.120000pt;}
.ws82{word-spacing:-0.106667pt;}
.ws57{word-spacing:-0.096000pt;}
.wsa9{word-spacing:-0.080000pt;}
.ws16{word-spacing:-0.062400pt;}
.ws86{word-spacing:-0.053333pt;}
.ws43{word-spacing:-0.048000pt;}
.wsa3{word-spacing:-0.040000pt;}
.ws62{word-spacing:-0.031200pt;}
.wsd{word-spacing:0.000000pt;}
.wsc4{word-spacing:0.040000pt;}
.ws21{word-spacing:0.048000pt;}
.ws98{word-spacing:0.053333pt;}
.wsa2{word-spacing:0.080000pt;}
.ws29{word-spacing:0.090667pt;}
.ws3f{word-spacing:0.096000pt;}
.wsa5{word-spacing:0.120000pt;}
.ws50{word-spacing:0.144000pt;}
.ws95{word-spacing:0.160000pt;}
.ws39{word-spacing:0.192000pt;}
.wsa6{word-spacing:0.200000pt;}
.ws74{word-spacing:0.240000pt;}
.ws9c{word-spacing:0.280000pt;}
.ws52{word-spacing:0.288000pt;}
.ws3b{word-spacing:0.336000pt;}
.ws9e{word-spacing:0.360000pt;}
.ws4d{word-spacing:0.384000pt;}
.wsa7{word-spacing:0.400000pt;}
.ws36{word-spacing:0.432000pt;}
.ws12{word-spacing:0.480000pt;}
.ws58{word-spacing:0.528000pt;}
.wsaf{word-spacing:0.560000pt;}
.ws20{word-spacing:0.576000pt;}
.wsc6{word-spacing:0.600000pt;}
.ws4e{word-spacing:0.624000pt;}
.wsb3{word-spacing:0.640000pt;}
.ws60{word-spacing:0.720000pt;}
.ws93{word-spacing:0.768000pt;}
.wsb4{word-spacing:0.800000pt;}
.ws96{word-spacing:0.816000pt;}
.wse{word-spacing:0.853333pt;}
.ws75{word-spacing:0.864000pt;}
.ws4f{word-spacing:0.960000pt;}
.wsb0{word-spacing:1.000000pt;}
.ws51{word-spacing:1.056000pt;}
.wsa8{word-spacing:1.080000pt;}
.ws11{word-spacing:1.104000pt;}
.ws88{word-spacing:1.200000pt;}
.wsc8{word-spacing:1.248000pt;}
.ws76{word-spacing:1.296000pt;}
.wsb8{word-spacing:1.400000pt;}
.wsc1{word-spacing:1.440000pt;}
.ws26{word-spacing:1.450667pt;}
.ws8a{word-spacing:1.488000pt;}
.wsc2{word-spacing:1.520000pt;}
.ws22{word-spacing:1.776000pt;}
.ws92{word-spacing:1.824000pt;}
.wsb9{word-spacing:1.880000pt;}
.wsba{word-spacing:1.960000pt;}
.wsc3{word-spacing:2.000000pt;}
.ws85{word-spacing:2.016000pt;}
.ws91{word-spacing:2.304000pt;}
.ws94{word-spacing:3.168000pt;}
.ws72{word-spacing:49.018667pt;}
.ws6b{word-spacing:51.744000pt;}
.ws6c{word-spacing:241.024000pt;}
._19{margin-left:-10.920000pt;}
._17{margin-left:-8.520000pt;}
._5{margin-left:-7.533867pt;}
._11{margin-left:-6.505067pt;}
._7{margin-left:-5.578133pt;}
._2{margin-left:-4.070933pt;}
._1{margin-left:-3.050667pt;}
._0{margin-left:-1.578667pt;}
._3{width:0.984000pt;}
._4{width:1.897333pt;}
._6{width:3.517867pt;}
._15{width:5.738667pt;}
._13{width:7.040000pt;}
._1a{width:7.948000pt;}
._14{width:9.200000pt;}
._12{width:10.960000pt;}
._16{width:12.080000pt;}
._9{width:13.584000pt;}
._18{width:15.280000pt;}
._8{width:41.714133pt;}
._a{width:43.225600pt;}
._c{width:79.642667pt;}
._d{width:137.229867pt;}
._e{width:149.557333pt;}
._10{width:156.911200pt;}
._b{width:167.029333pt;}
._f{width:168.675733pt;}
.fsc{font-size:24.266667pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.200000pt;}
.fs4{font-size:34.666667pt;}
.fsb{font-size:37.333333pt;}
.fse{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fsd{font-size:85.333333pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175867pt;}
.y31{bottom:60.723467pt;}
.y14c{bottom:60.934667pt;}
.yaa{bottom:60.941333pt;}
.y18b{bottom:60.970000pt;}
.y87{bottom:63.160267pt;}
.y79{bottom:67.160267pt;}
.y49{bottom:67.826933pt;}
.yc3{bottom:69.818933pt;}
.yfe{bottom:71.152267pt;}
.y18a{bottom:72.300000pt;}
.y1d5{bottom:72.486933pt;}
.y30{bottom:74.051467pt;}
.y14b{bottom:74.266667pt;}
.ya9{bottom:74.273333pt;}
.y86{bottom:76.492267pt;}
.y78{bottom:80.492267pt;}
.y48{bottom:81.158933pt;}
.yc2{bottom:83.150933pt;}
.y189{bottom:83.630000pt;}
.yfd{bottom:84.484267pt;}
.y1d4{bottom:85.818933pt;}
.y2f{bottom:87.384800pt;}
.ya8{bottom:87.605333pt;}
.y85{bottom:89.824267pt;}
.y77{bottom:93.824267pt;}
.y47{bottom:94.490933pt;}
.y188{bottom:94.960000pt;}
.yc1{bottom:96.486933pt;}
.yfc{bottom:97.817600pt;}
.y14a{bottom:98.755200pt;}
.y1d3{bottom:99.150933pt;}
.y2e{bottom:100.718133pt;}
.ya7{bottom:100.937333pt;}
.y84{bottom:103.156267pt;}
.y187{bottom:106.290000pt;}
.y76{bottom:107.156267pt;}
.y46{bottom:107.822933pt;}
.yc0{bottom:109.818933pt;}
.yfb{bottom:111.149600pt;}
.y149{bottom:112.087200pt;}
.y1d2{bottom:112.482933pt;}
.y2d{bottom:114.051467pt;}
.ya6{bottom:114.269333pt;}
.y83{bottom:116.488267pt;}
.y186{bottom:117.620000pt;}
.y75{bottom:120.488267pt;}
.y45{bottom:121.154933pt;}
.ybf{bottom:123.150933pt;}
.yfa{bottom:124.482933pt;}
.y148{bottom:125.419200pt;}
.y1d1{bottom:125.816267pt;}
.y2c{bottom:127.384800pt;}
.ya5{bottom:127.601333pt;}
.y185{bottom:128.950000pt;}
.y82{bottom:129.820267pt;}
.y74{bottom:133.820267pt;}
.y44{bottom:134.486933pt;}
.ybe{bottom:136.485600pt;}
.y147{bottom:138.751200pt;}
.y184{bottom:140.280000pt;}
.y2b{bottom:140.718133pt;}
.ya4{bottom:140.938667pt;}
.y81{bottom:143.152267pt;}
.y73{bottom:147.152267pt;}
.y43{bottom:147.818933pt;}
.ybd{bottom:149.817600pt;}
.y183{bottom:151.610000pt;}
.y146{bottom:152.083200pt;}
.yf9{bottom:153.825600pt;}
.y2a{bottom:154.051467pt;}
.ya3{bottom:154.270667pt;}
.y1d0{bottom:155.165600pt;}
.y80{bottom:156.484267pt;}
.y72{bottom:160.484267pt;}
.y42{bottom:161.150933pt;}
.y182{bottom:162.940000pt;}
.ybc{bottom:163.150933pt;}
.y145{bottom:165.415200pt;}
.yf8{bottom:167.157600pt;}
.y29{bottom:167.384800pt;}
.ya2{bottom:167.602667pt;}
.y1cf{bottom:168.497600pt;}
.y7f{bottom:169.816267pt;}
.y71{bottom:173.816267pt;}
.y181{bottom:174.270000pt;}
.y41{bottom:174.482933pt;}
.ybb{bottom:176.492267pt;}
.y144{bottom:178.747200pt;}
.yf7{bottom:180.489600pt;}
.ya1{bottom:180.934667pt;}
.y1ce{bottom:181.829600pt;}
.y28{bottom:184.566133pt;}
.y180{bottom:185.600000pt;}
.y40{bottom:187.816267pt;}
.yba{bottom:189.824267pt;}
.yf6{bottom:193.821600pt;}
.ya0{bottom:194.268000pt;}
.y1cd{bottom:195.161600pt;}
.y17f{bottom:196.933333pt;}
.yb9{bottom:203.156267pt;}
.y70{bottom:203.188267pt;}
.y143{bottom:203.238267pt;}
.yf5{bottom:207.153600pt;}
.y9f{bottom:207.600000pt;}
.y1cc{bottom:208.493600pt;}
.y27{bottom:213.952267pt;}
.y90{bottom:216.007067pt;}
.yb8{bottom:216.488267pt;}
.y6f{bottom:216.520267pt;}
.y142{bottom:216.570267pt;}
.y3f{bottom:217.156267pt;}
.yf4{bottom:220.485600pt;}
.y9e{bottom:220.933333pt;}
.y17e{bottom:221.347867pt;}
.y1cb{bottom:221.825600pt;}
.y26{bottom:227.284267pt;}
.y8f{bottom:229.339067pt;}
.yb7{bottom:229.820267pt;}
.y6e{bottom:229.852267pt;}
.y141{bottom:229.902267pt;}
.y3e{bottom:230.488267pt;}
.yf3{bottom:233.817600pt;}
.y17d{bottom:234.679867pt;}
.y1ca{bottom:235.157600pt;}
.y25{bottom:240.616267pt;}
.y8e{bottom:242.671067pt;}
.yb6{bottom:243.152267pt;}
.y6d{bottom:243.184267pt;}
.y140{bottom:243.234267pt;}
.y3d{bottom:243.820267pt;}
.yf2{bottom:247.150933pt;}
.y17c{bottom:248.013200pt;}
.y9d{bottom:248.049467pt;}
.y1c9{bottom:248.489600pt;}
.y24{bottom:253.948267pt;}
.y8d{bottom:256.003067pt;}
.yb5{bottom:256.484267pt;}
.y6c{bottom:256.516267pt;}
.y13f{bottom:256.566267pt;}
.y3c{bottom:257.152267pt;}
.yf1{bottom:260.489600pt;}
.y17b{bottom:261.347867pt;}
.y9c{bottom:261.381467pt;}
.y1c8{bottom:261.821600pt;}
.y23{bottom:267.280267pt;}
.y8c{bottom:269.335067pt;}
.yb4{bottom:269.820267pt;}
.y6b{bottom:269.848267pt;}
.y13e{bottom:269.898267pt;}
.y3b{bottom:270.484267pt;}
.yf0{bottom:273.821600pt;}
.y17a{bottom:274.679867pt;}
.y9b{bottom:274.713467pt;}
.y1c7{bottom:275.153600pt;}
.y22{bottom:280.612267pt;}
.y8b{bottom:282.667067pt;}
.yb3{bottom:283.152267pt;}
.y6a{bottom:283.180267pt;}
.y13d{bottom:283.230267pt;}
.y3a{bottom:283.820267pt;}
.yef{bottom:287.153600pt;}
.y179{bottom:288.019867pt;}
.y9a{bottom:288.045467pt;}
.y1c6{bottom:288.485600pt;}
.y21{bottom:293.944267pt;}
.y8a{bottom:296.001733pt;}
.yb2{bottom:296.484267pt;}
.y69{bottom:296.512267pt;}
.y13c{bottom:296.562267pt;}
.y39{bottom:297.152267pt;}
.yee{bottom:300.485600pt;}
.y178{bottom:301.351867pt;}
.y99{bottom:301.377467pt;}
.y1c5{bottom:301.817600pt;}
.y20{bottom:307.276267pt;}
.y89{bottom:309.333733pt;}
.yb1{bottom:309.816267pt;}
.y68{bottom:309.844267pt;}
.y13b{bottom:309.895600pt;}
.y38{bottom:310.484267pt;}
.yed{bottom:313.817600pt;}
.y177{bottom:314.683867pt;}
.y98{bottom:314.709467pt;}
.y1c4{bottom:315.149600pt;}
.y1f{bottom:320.613600pt;}
.y88{bottom:322.665733pt;}
.y67{bottom:323.176267pt;}
.y13a{bottom:323.228933pt;}
.y37{bottom:323.816267pt;}
.yec{bottom:327.154933pt;}
.y176{bottom:328.015867pt;}
.y97{bottom:328.041467pt;}
.y1c3{bottom:328.482933pt;}
.y1e{bottom:333.945600pt;}
.y66{bottom:336.508267pt;}
.y139{bottom:336.568933pt;}
.yeb{bottom:340.486933pt;}
.y175{bottom:341.347867pt;}
.y1d{bottom:347.277600pt;}
.y65{bottom:349.840267pt;}
.y138{bottom:349.900933pt;}
.yea{bottom:353.818933pt;}
.y174{bottom:354.679867pt;}
.y96{bottom:355.156267pt;}
.y1c2{bottom:357.996267pt;}
.yce{bottom:359.105733pt;}
.y1c{bottom:360.609600pt;}
.y64{bottom:363.172267pt;}
.y137{bottom:363.232933pt;}
.ye9{bottom:367.150933pt;}
.y173{bottom:368.011867pt;}
.y95{bottom:368.488267pt;}
.y1c1{bottom:369.326267pt;}
.ycd{bottom:372.437733pt;}
.y1b{bottom:373.942933pt;}
.y63{bottom:376.504267pt;}
.y136{bottom:376.564933pt;}
.y52{bottom:378.088400pt;}
.ye8{bottom:380.484267pt;}
.y1c0{bottom:380.656267pt;}
.y94{bottom:381.820267pt;}
.ycc{bottom:385.769733pt;}
.y1a{bottom:387.276267pt;}
.y62{bottom:389.836267pt;}
.y135{bottom:389.896933pt;}
.y51{bottom:391.420400pt;}
.y1bf{bottom:391.986267pt;}
.y172{bottom:392.427600pt;}
.ye7{bottom:393.828267pt;}
.y93{bottom:395.152267pt;}
.ycb{bottom:399.101733pt;}
.y19{bottom:400.644267pt;}
.y61{bottom:403.168267pt;}
.y134{bottom:403.228933pt;}
.y1be{bottom:403.316267pt;}
.y50{bottom:404.752400pt;}
.y171{bottom:405.759600pt;}
.ye6{bottom:407.160267pt;}
.y92{bottom:408.484267pt;}
.yca{bottom:412.433733pt;}
.y18{bottom:413.976267pt;}
.y1bd{bottom:414.646267pt;}
.y60{bottom:416.500267pt;}
.y133{bottom:416.562267pt;}
.y4f{bottom:418.084400pt;}
.y170{bottom:419.091600pt;}
.ye5{bottom:420.492267pt;}
.y91{bottom:421.816267pt;}
.yc9{bottom:425.765733pt;}
.y1bc{bottom:425.976267pt;}
.y5f{bottom:429.832267pt;}
.y132{bottom:429.894267pt;}
.y4e{bottom:431.416400pt;}
.y16f{bottom:432.423600pt;}
.ye4{bottom:433.824267pt;}
.y1bb{bottom:437.306267pt;}
.yc8{bottom:439.097733pt;}
.y5e{bottom:443.164267pt;}
.y4d{bottom:444.748400pt;}
.ye3{bottom:447.156267pt;}
.y1ba{bottom:448.636267pt;}
.yc7{bottom:452.429733pt;}
.y131{bottom:454.376133pt;}
.y17{bottom:455.976267pt;}
.y5d{bottom:456.496267pt;}
.y16e{bottom:456.839467pt;}
.y4c{bottom:458.080400pt;}
.y1b9{bottom:459.966267pt;}
.ye2{bottom:460.488267pt;}
.yc6{bottom:465.761733pt;}
.y130{bottom:467.709467pt;}
.y5c{bottom:469.828267pt;}
.y16d{bottom:470.171467pt;}
.y16{bottom:470.640267pt;}
.y1b8{bottom:471.296267pt;}
.y4b{bottom:471.413733pt;}
.ye1{bottom:473.820267pt;}
.yb0{bottom:474.883067pt;}
.yc5{bottom:479.093733pt;}
.y12f{bottom:481.041467pt;}
.y1b7{bottom:482.626267pt;}
.y5b{bottom:483.160267pt;}
.y16c{bottom:483.503467pt;}
.y4a{bottom:484.745733pt;}
.y15{bottom:485.304267pt;}
.ye0{bottom:487.152267pt;}
.yaf{bottom:488.215067pt;}
.yc4{bottom:492.425733pt;}
.y1b6{bottom:493.956267pt;}
.y5a{bottom:496.492267pt;}
.y16b{bottom:496.839467pt;}
.y14{bottom:499.968267pt;}
.ydf{bottom:500.484267pt;}
.yae{bottom:501.547067pt;}
.y1b5{bottom:505.286267pt;}
.y12e{bottom:505.529867pt;}
.y59{bottom:509.824267pt;}
.y16a{bottom:510.171467pt;}
.yde{bottom:513.818933pt;}
.y13{bottom:514.632267pt;}
.yad{bottom:514.881733pt;}
.y1b4{bottom:516.616267pt;}
.y12d{bottom:518.861867pt;}
.y58{bottom:523.156267pt;}
.y169{bottom:523.503467pt;}
.ydd{bottom:527.150933pt;}
.y1b3{bottom:527.946267pt;}
.yac{bottom:528.213733pt;}
.y12{bottom:529.296267pt;}
.y12c{bottom:532.193867pt;}
.y57{bottom:536.488267pt;}
.y168{bottom:536.835467pt;}
.y1b2{bottom:539.276267pt;}
.ydc{bottom:540.500267pt;}
.yab{bottom:541.545733pt;}
.y11{bottom:543.960267pt;}
.y12b{bottom:545.525867pt;}
.y56{bottom:549.820267pt;}
.y1b1{bottom:550.606267pt;}
.ydb{bottom:553.832267pt;}
.y10{bottom:558.624267pt;}
.y12a{bottom:558.857867pt;}
.y167{bottom:561.251333pt;}
.y1b0{bottom:561.936267pt;}
.y55{bottom:563.152267pt;}
.yda{bottom:567.164267pt;}
.y129{bottom:572.189867pt;}
.y1af{bottom:573.266267pt;}
.yf{bottom:573.288267pt;}
.y166{bottom:574.583333pt;}
.y54{bottom:576.484267pt;}
.yd9{bottom:580.496267pt;}
.y1ae{bottom:584.596267pt;}
.y128{bottom:585.523200pt;}
.y165{bottom:587.915333pt;}
.ye{bottom:587.952267pt;}
.y53{bottom:589.816267pt;}
.yd8{bottom:593.828267pt;}
.y1ad{bottom:595.926267pt;}
.y127{bottom:598.860533pt;}
.y164{bottom:601.248667pt;}
.yd{bottom:602.616267pt;}
.yd7{bottom:607.160267pt;}
.y1ac{bottom:607.256267pt;}
.y126{bottom:612.192533pt;}
.y163{bottom:614.586000pt;}
.yc{bottom:617.280267pt;}
.y1ab{bottom:618.586267pt;}
.yd6{bottom:620.492267pt;}
.y125{bottom:625.524533pt;}
.y162{bottom:627.918000pt;}
.y1aa{bottom:629.916267pt;}
.yb{bottom:631.944267pt;}
.yd5{bottom:633.824267pt;}
.y7e{bottom:635.417733pt;}
.y124{bottom:638.856533pt;}
.y1a9{bottom:641.246267pt;}
.y161{bottom:641.250000pt;}
.ya{bottom:646.608267pt;}
.yd4{bottom:647.156267pt;}
.y7d{bottom:648.749733pt;}
.y123{bottom:652.195333pt;}
.y1a8{bottom:652.576267pt;}
.y160{bottom:654.582000pt;}
.yd3{bottom:660.488267pt;}
.y7c{bottom:662.081733pt;}
.y1a7{bottom:663.906267pt;}
.y122{bottom:665.527333pt;}
.y15f{bottom:667.914000pt;}
.y34{bottom:673.018133pt;}
.y9{bottom:673.274933pt;}
.yd2{bottom:673.820267pt;}
.y1a6{bottom:675.236267pt;}
.y7b{bottom:675.413733pt;}
.y121{bottom:678.859333pt;}
.y1a5{bottom:686.566267pt;}
.yd1{bottom:687.152267pt;}
.y7a{bottom:688.745733pt;}
.y8{bottom:689.274933pt;}
.y33{bottom:691.684133pt;}
.y120{bottom:692.191333pt;}
.y15e{bottom:692.329867pt;}
.y1a4{bottom:697.896267pt;}
.yd0{bottom:700.484267pt;}
.y7{bottom:705.274933pt;}
.y11f{bottom:705.523333pt;}
.y15d{bottom:705.661867pt;}
.y1a3{bottom:709.226267pt;}
.y32{bottom:710.350133pt;}
.ycf{bottom:713.816267pt;}
.y11e{bottom:718.855333pt;}
.y15c{bottom:718.993867pt;}
.y1a2{bottom:720.556267pt;}
.y1a1{bottom:731.886267pt;}
.y15b{bottom:732.325867pt;}
.y6{bottom:734.597600pt;}
.y1a0{bottom:743.216267pt;}
.y11d{bottom:743.338400pt;}
.y19f{bottom:754.546267pt;}
.y11c{bottom:756.670400pt;}
.y15a{bottom:756.747067pt;}
.y10c{bottom:760.150933pt;}
.y1e3{bottom:763.161600pt;}
.y19e{bottom:765.876267pt;}
.y11b{bottom:770.013067pt;}
.y159{bottom:770.079067pt;}
.y10b{bottom:773.482933pt;}
.y5{bottom:774.602933pt;}
.y1e2{bottom:776.493600pt;}
.y19d{bottom:777.206267pt;}
.y11a{bottom:783.345067pt;}
.y158{bottom:783.411067pt;}
.y19c{bottom:788.536267pt;}
.y1e1{bottom:789.825600pt;}
.y119{bottom:796.677067pt;}
.y157{bottom:796.743067pt;}
.y19b{bottom:799.866267pt;}
.y10a{bottom:800.302933pt;}
.y1e0{bottom:803.157600pt;}
.y118{bottom:810.009067pt;}
.y156{bottom:810.075067pt;}
.y19a{bottom:811.196267pt;}
.y4{bottom:814.608267pt;}
.y109{bottom:815.805600pt;}
.y1df{bottom:816.489600pt;}
.y199{bottom:822.526267pt;}
.y117{bottom:823.341067pt;}
.y155{bottom:823.407067pt;}
.y35{bottom:823.475200pt;}
.y1de{bottom:829.821600pt;}
.y108{bottom:831.308267pt;}
.y198{bottom:833.856267pt;}
.y116{bottom:836.673067pt;}
.y154{bottom:836.739067pt;}
.y1dd{bottom:843.153600pt;}
.y197{bottom:845.186267pt;}
.y107{bottom:846.810933pt;}
.y115{bottom:850.005067pt;}
.y153{bottom:850.071067pt;}
.y1dc{bottom:856.485600pt;}
.y196{bottom:856.516267pt;}
.y106{bottom:862.313600pt;}
.y114{bottom:863.337067pt;}
.y195{bottom:867.846267pt;}
.y1db{bottom:869.817600pt;}
.y152{bottom:874.492267pt;}
.y113{bottom:876.670400pt;}
.y105{bottom:877.805600pt;}
.y194{bottom:879.176267pt;}
.y1da{bottom:883.149600pt;}
.y151{bottom:887.824267pt;}
.y112{bottom:890.006400pt;}
.y193{bottom:890.506267pt;}
.y104{bottom:893.308267pt;}
.y150{bottom:901.156267pt;}
.y192{bottom:901.836267pt;}
.y1d9{bottom:902.486933pt;}
.y111{bottom:903.338400pt;}
.y103{bottom:908.810933pt;}
.y191{bottom:913.166267pt;}
.y14f{bottom:914.488267pt;}
.y1d8{bottom:915.818933pt;}
.y110{bottom:916.670400pt;}
.y102{bottom:924.313600pt;}
.y190{bottom:924.496267pt;}
.y14e{bottom:927.820267pt;}
.y10f{bottom:930.002400pt;}
.y1d7{bottom:935.150933pt;}
.y18f{bottom:935.826267pt;}
.y101{bottom:939.813600pt;}
.y14d{bottom:941.152267pt;}
.y18e{bottom:947.156267pt;}
.y1d6{bottom:954.482933pt;}
.y10e{bottom:954.484267pt;}
.y100{bottom:955.313600pt;}
.y18d{bottom:958.486267pt;}
.y10d{bottom:967.816267pt;}
.y18c{bottom:969.816267pt;}
.yff{bottom:970.816267pt;}
.y36{bottom:1013.202667pt;}
.y3{bottom:1013.446133pt;}
.hb{height:21.193555pt;}
.h10{height:31.476562pt;}
.he{height:32.605469pt;}
.h8{height:34.523438pt;}
.hd{height:36.585555pt;}
.h1a{height:37.408000pt;}
.h18{height:38.229333pt;}
.h4{height:39.318359pt;}
.h1f{height:39.560000pt;}
.h1d{height:40.080000pt;}
.h3{height:40.661333pt;}
.h1e{height:40.960000pt;}
.h20{height:42.195312pt;}
.hc{height:43.120594pt;}
.hf{height:43.141927pt;}
.h7{height:45.703125pt;}
.ha{height:47.472000pt;}
.h17{height:48.026667pt;}
.h15{height:48.074667pt;}
.h16{height:48.080000pt;}
.h9{height:48.096000pt;}
.h14{height:49.141333pt;}
.h13{height:49.152000pt;}
.h2{height:50.755208pt;}
.h6{height:50.781250pt;}
.h12{height:55.859375pt;}
.h1c{height:68.373333pt;}
.h1b{height:68.389333pt;}
.h19{height:68.405333pt;}
.h11{height:69.046875pt;}
.h5{height:132.031250pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:12.519067pt;}
.x2{left:54.392400pt;}
.x7{left:125.291333pt;}
.x4{left:207.516800pt;}
.x9{left:211.683467pt;}
.x5{left:223.514400pt;}
.xb{left:267.195200pt;}
.x3{left:519.632533pt;}
.xa{left:725.336533pt;}
.x8{left:732.628800pt;}
.x1{left:733.540267pt;}
}




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