
    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_8e0a4c8ccc58e0f59e4b698b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.690918;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_a5e4e26597a1b44497328b31.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.708008;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_edafc7343fce29188133b1fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.966309;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_abc6a06ea37c206f1ac4fed3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.774902;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_6164c4533873d1b13098325f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.940430;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_47abba9c87706b1d8d07caa7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.207031;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_ffdb42a03a6872b901080c80.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.024902;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_2541b0a9d0b15c665c95f9b9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.024902;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_a67bd9682926364f31afd7c8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.207031;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003906;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_2b45c92c491cdd2ca3c95433.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d59c6a2ff6eb3b872ee72c91.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_f80dc73c613a9fb805caba3b.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_301e684c7d029d46c10c7260.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_c5966cd5ce06491f5864c77a.woff2')format("woff");}.fff{font-family:fff;line-height:0.688477;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_0dafbe970c10f7efa061d482.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_65fb7f761bfe6303a8c33ed1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.850586;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_81a971ff2337c2ce2a05e5a5.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_ffdd16a18ab0ee4ff6f5c0b6.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_a4ac296b45dd6fb823b39bf5.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_23fdb2f82f260b446b63647b.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_ef62557fb83ac4e856bec379.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.065430;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_da8efa3993b287a17c9efade.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.939941;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_f2c1e0c0bb8e119eff42d5c1.woff2')format("woff");}.ff19{font-family:ff19;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;}
.m1{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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-51.120000px;}
.v1{vertical-align:-46.800000px;}
.v2{vertical-align:-44.640000px;}
.v5{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:20.880000px;}
.v4{vertical-align:23.760000px;}
.lsa2{letter-spacing:-1.008000px;}
.ls8e{letter-spacing:-0.990000px;}
.ls17{letter-spacing:-0.936000px;}
.ls40{letter-spacing:-0.774000px;}
.ls65{letter-spacing:-0.720000px;}
.ls9d{letter-spacing:-0.666000px;}
.lsa5{letter-spacing:-0.648000px;}
.ls6b{letter-spacing:-0.612000px;}
.ls66{letter-spacing:-0.576000px;}
.ls25{letter-spacing:-0.540000px;}
.ls44{letter-spacing:-0.513600px;}
.ls41{letter-spacing:-0.460200px;}
.ls5f{letter-spacing:-0.413400px;}
.ls24{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.288000px;}
.ls43{letter-spacing:-0.269400px;}
.lsc{letter-spacing:-0.263400px;}
.ls4e{letter-spacing:-0.259800px;}
.lsb{letter-spacing:-0.231600px;}
.ls7f{letter-spacing:-0.223800px;}
.ls5e{letter-spacing:-0.216000px;}
.ls3e{letter-spacing:-0.206400px;}
.ls56{letter-spacing:-0.144000px;}
.ls2b{letter-spacing:-0.106800px;}
.lsf{letter-spacing:-0.102000px;}
.ls9c{letter-spacing:-0.100200px;}
.ls4d{letter-spacing:-0.072000px;}
.ls29{letter-spacing:-0.053280px;}
.ls10{letter-spacing:-0.012960px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.007200px;}
.ls82{letter-spacing:0.013440px;}
.ls12{letter-spacing:0.024480px;}
.ls47{letter-spacing:0.029280px;}
.lsa4{letter-spacing:0.045360px;}
.ls23{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.067800px;}
.ls28{letter-spacing:0.072000px;}
.ls86{letter-spacing:0.073440px;}
.lsa{letter-spacing:0.087600px;}
.lsd{letter-spacing:0.099600px;}
.ls2a{letter-spacing:0.106800px;}
.ls1a{letter-spacing:0.119520px;}
.ls9f{letter-spacing:0.129360px;}
.ls1f{letter-spacing:0.144000px;}
.ls3b{letter-spacing:0.153360px;}
.ls42{letter-spacing:0.153600px;}
.ls18{letter-spacing:0.180000px;}
.ls92{letter-spacing:0.182640px;}
.ls3f{letter-spacing:0.206400px;}
.ls34{letter-spacing:0.206640px;}
.lsa6{letter-spacing:0.216000px;}
.ls63{letter-spacing:0.223920px;}
.ls98{letter-spacing:0.233280px;}
.ls2c{letter-spacing:0.259800px;}
.ls1b{letter-spacing:0.259920px;}
.ls1c{letter-spacing:0.288000px;}
.ls46{letter-spacing:0.298800px;}
.ls7b{letter-spacing:0.300000px;}
.ls50{letter-spacing:0.306600px;}
.ls19{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.371400px;}
.ls58{letter-spacing:0.432000px;}
.ls99{letter-spacing:0.439920px;}
.ls5b{letter-spacing:0.460080px;}
.ls13{letter-spacing:0.488400px;}
.ls3d{letter-spacing:0.504000px;}
.ls6a{letter-spacing:0.540000px;}
.ls26{letter-spacing:0.576000px;}
.ls38{letter-spacing:0.613440px;}
.ls15{letter-spacing:0.624000px;}
.ls90{letter-spacing:0.640080px;}
.ls75{letter-spacing:0.648000px;}
.ls45{letter-spacing:0.666000px;}
.ls1d{letter-spacing:0.720000px;}
.ls7d{letter-spacing:0.773280px;}
.ls57{letter-spacing:0.792000px;}
.lse{letter-spacing:0.822000px;}
.ls59{letter-spacing:0.828000px;}
.ls27{letter-spacing:0.864000px;}
.ls36{letter-spacing:0.900000px;}
.lsa1{letter-spacing:0.924000px;}
.lsa7{letter-spacing:1.080000px;}
.ls2d{letter-spacing:1.440000px;}
.ls33{letter-spacing:1.620000px;}
.ls62{letter-spacing:2.160000px;}
.ls3c{letter-spacing:2.340000px;}
.ls94{letter-spacing:2.520000px;}
.ls74{letter-spacing:2.880000px;}
.ls2f{letter-spacing:3.060000px;}
.ls73{letter-spacing:3.240000px;}
.ls81{letter-spacing:3.600000px;}
.ls4b{letter-spacing:3.780000px;}
.ls68{letter-spacing:4.320000px;}
.ls4a{letter-spacing:4.500000px;}
.ls21{letter-spacing:5.040000px;}
.ls35{letter-spacing:5.220000px;}
.lsa8{letter-spacing:5.400000px;}
.ls20{letter-spacing:5.760000px;}
.ls39{letter-spacing:5.940000px;}
.ls53{letter-spacing:6.480000px;}
.ls32{letter-spacing:6.660000px;}
.ls4f{letter-spacing:7.200000px;}
.ls2e{letter-spacing:7.380000px;}
.ls7e{letter-spacing:7.560000px;}
.ls83{letter-spacing:7.920000px;}
.ls37{letter-spacing:8.100000px;}
.ls54{letter-spacing:8.640000px;}
.ls31{letter-spacing:8.820000px;}
.ls70{letter-spacing:9.360000px;}
.ls48{letter-spacing:9.540000px;}
.ls71{letter-spacing:10.080000px;}
.ls52{letter-spacing:10.260000px;}
.ls88{letter-spacing:10.440000px;}
.ls6c{letter-spacing:10.800000px;}
.ls49{letter-spacing:10.980000px;}
.ls84{letter-spacing:11.520000px;}
.ls5a{letter-spacing:11.700000px;}
.ls3a{letter-spacing:12.420000px;}
.ls8f{letter-spacing:12.540000px;}
.ls95{letter-spacing:12.960000px;}
.ls5d{letter-spacing:13.140000px;}
.ls7c{letter-spacing:13.320000px;}
.ls8b{letter-spacing:13.680000px;}
.ls30{letter-spacing:13.860000px;}
.ls1e{letter-spacing:14.400000px;}
.ls22{letter-spacing:14.580000px;}
.ls5c{letter-spacing:14.760000px;}
.ls78{letter-spacing:15.120000px;}
.ls91{letter-spacing:15.300000px;}
.ls72{letter-spacing:16.020000px;}
.ls60{letter-spacing:16.560000px;}
.ls87{letter-spacing:16.740000px;}
.ls7a{letter-spacing:17.280000px;}
.ls4c{letter-spacing:17.460000px;}
.ls67{letter-spacing:18.000000px;}
.ls76{letter-spacing:18.180000px;}
.ls80{letter-spacing:18.900000px;}
.ls8c{letter-spacing:21.060000px;}
.ls93{letter-spacing:21.780000px;}
.ls55{letter-spacing:22.320000px;}
.ls6d{letter-spacing:23.040000px;}
.ls89{letter-spacing:23.940000px;}
.ls6f{letter-spacing:25.200000px;}
.ls6e{letter-spacing:25.380000px;}
.ls8a{letter-spacing:25.920000px;}
.ls9b{letter-spacing:26.820000px;}
.ls9e{letter-spacing:27.360000px;}
.ls69{letter-spacing:27.540000px;}
.ls51{letter-spacing:29.880000px;}
.lsa3{letter-spacing:30.240000px;}
.ls96{letter-spacing:32.040000px;}
.ls77{letter-spacing:32.400000px;}
.lsa0{letter-spacing:32.580000px;}
.ls61{letter-spacing:34.560000px;}
.ls9a{letter-spacing:34.740000px;}
.ls64{letter-spacing:39.060000px;}
.ls8d{letter-spacing:39.780000px;}
.ls79{letter-spacing:106.020000px;}
.ls97{letter-spacing:108.900000px;}
.ls85{letter-spacing:208.956000px;}
.ls9{letter-spacing:490.728000px;}
.ls5{letter-spacing:559.848000px;}
.ls7{letter-spacing:580.008000px;}
.ls2{letter-spacing:686.568000px;}
.ls6{letter-spacing:993.051120px;}
.ls8{letter-spacing:993.826560px;}
.ls4{letter-spacing:1017.586560px;}
.ls1{letter-spacing:1107.044160px;}
.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;}
}
.ws3d{word-spacing:-72.000000px;}
.ws23{word-spacing:-59.760000px;}
.ws49{word-spacing:-59.653200px;}
.ws17{word-spacing:-48.240000px;}
.ws27{word-spacing:-40.752000px;}
.ws16{word-spacing:-40.608000px;}
.ws3a{word-spacing:-40.536000px;}
.wsb{word-spacing:-38.880000px;}
.ws48{word-spacing:-33.964440px;}
.ws1f{word-spacing:-33.811440px;}
.ws1d{word-spacing:-33.704640px;}
.ws41{word-spacing:-33.651360px;}
.ws45{word-spacing:-32.930640px;}
.ws46{word-spacing:-27.207360px;}
.ws1a{word-spacing:-18.864000px;}
.ws36{word-spacing:-18.792000px;}
.ws26{word-spacing:-18.720000px;}
.ws42{word-spacing:-18.648000px;}
.ws15{word-spacing:-18.576000px;}
.ws25{word-spacing:-18.504000px;}
.ws37{word-spacing:-18.432000px;}
.ws43{word-spacing:-18.288000px;}
.ws50{word-spacing:-18.216000px;}
.ws19{word-spacing:-18.144000px;}
.ws1c{word-spacing:-18.072000px;}
.ws11{word-spacing:-18.000000px;}
.ws32{word-spacing:-17.928000px;}
.ws35{word-spacing:-17.856000px;}
.ws39{word-spacing:-17.784000px;}
.ws1b{word-spacing:-17.712000px;}
.ws3e{word-spacing:-17.424000px;}
.ws4f{word-spacing:-17.352000px;}
.ws3c{word-spacing:-17.280000px;}
.ws12{word-spacing:-17.064000px;}
.ws4e{word-spacing:-16.992000px;}
.ws51{word-spacing:-16.020000px;}
.ws4c{word-spacing:-15.864000px;}
.ws38{word-spacing:-15.768000px;}
.ws31{word-spacing:-15.606000px;}
.ws13{word-spacing:-15.300000px;}
.ws34{word-spacing:-15.246600px;}
.ws4d{word-spacing:-15.238800px;}
.ws24{word-spacing:-15.199800px;}
.ws2a{word-spacing:-15.146400px;}
.ws3f{word-spacing:-15.120000px;}
.ws2e{word-spacing:-15.093600px;}
.ws28{word-spacing:-15.046800px;}
.ws2b{word-spacing:-14.993280px;}
.ws20{word-spacing:-14.940000px;}
.ws1e{word-spacing:-14.886720px;}
.ws4a{word-spacing:-14.839800px;}
.ws21{word-spacing:-14.833200px;}
.ws29{word-spacing:-14.733600px;}
.ws33{word-spacing:-14.680200px;}
.ws14{word-spacing:-14.580000px;}
.ws3b{word-spacing:-14.526600px;}
.ws2d{word-spacing:-14.479800px;}
.ws30{word-spacing:-14.426400px;}
.ws40{word-spacing:-14.328000px;}
.ws4b{word-spacing:-14.274000px;}
.ws18{word-spacing:-14.220000px;}
.ws2c{word-spacing:-14.166000px;}
.ws6{word-spacing:-12.991440px;}
.ws10{word-spacing:-12.793440px;}
.wse{word-spacing:-12.657840px;}
.wsf{word-spacing:-12.540840px;}
.ws5{word-spacing:-12.269040px;}
.ws7{word-spacing:-12.169440px;}
.ws52{word-spacing:-12.105360px;}
.ws8{word-spacing:-12.067440px;}
.ws22{word-spacing:-12.060000px;}
.ws3{word-spacing:-11.937840px;}
.ws4{word-spacing:-11.906040px;}
.ws44{word-spacing:-11.836200px;}
.ws2f{word-spacing:-11.790600px;}
.ws2{word-spacing:-11.479440px;}
.ws9{word-spacing:-11.459640px;}
.wsd{word-spacing:-11.416320px;}
.wsc{word-spacing:-11.399040px;}
.ws1{word-spacing:-11.391840px;}
.wsa{word-spacing:-11.378880px;}
.ws47{word-spacing:-11.070000px;}
.ws0{word-spacing:0.000000px;}
._32{margin-left:-31.479600px;}
._47{margin-left:-20.753280px;}
._11{margin-left:-13.914000px;}
._43{margin-left:-9.660000px;}
._21{margin-left:-8.395200px;}
._37{margin-left:-6.740400px;}
._14{margin-left:-5.630640px;}
._d{margin-left:-4.200960px;}
._2{margin-left:-2.957760px;}
._0{margin-left:-1.296000px;}
._1{width:1.068000px;}
._3{width:2.282400px;}
._4{width:3.615840px;}
._6{width:5.400000px;}
._5{width:6.696000px;}
._c{width:7.769280px;}
._7{width:8.856000px;}
._8{width:9.864000px;}
._b{width:11.448000px;}
._13{width:12.586560px;}
._e{width:14.040000px;}
._f{width:15.084000px;}
._12{width:16.224000px;}
._19{width:17.760480px;}
._2c{width:19.044000px;}
._10{width:20.340000px;}
._1e{width:22.176000px;}
._1f{width:23.441760px;}
._15{width:24.534240px;}
._27{width:26.052000px;}
._22{width:27.768000px;}
._16{width:28.920000px;}
._1a{width:30.069120px;}
._23{width:32.088000px;}
._18{width:34.131600px;}
._17{width:35.141280px;}
._25{width:36.973200px;}
._39{width:38.045760px;}
._26{width:39.173040px;}
._3e{width:40.462560px;}
._3d{width:41.609280px;}
._28{width:42.861120px;}
._2f{width:44.270880px;}
._36{width:51.813600px;}
._35{width:53.362560px;}
._3c{width:61.321200px;}
._24{width:66.396000px;}
._1d{width:72.773280px;}
._38{width:78.651840px;}
._2e{width:82.207200px;}
._2d{width:83.369280px;}
._44{width:96.429360px;}
._34{width:106.515840px;}
._45{width:108.347280px;}
._46{width:109.482960px;}
._1c{width:110.508240px;}
._1b{width:111.706560px;}
._3f{width:116.867760px;}
._40{width:117.992640px;}
._a{width:131.400000px;}
._9{width:132.468000px;}
._2b{width:186.666480px;}
._2a{width:187.822560px;}
._3a{width:208.279680px;}
._3b{width:209.430960px;}
._42{width:286.494720px;}
._41{width:288.315840px;}
._29{width:310.056240px;}
._31{width:339.746400px;}
._30{width:340.914480px;}
._20{width:530.436000px;}
._48{width:543.547680px;}
._49{width:544.617360px;}
._33{width:637.867680px;}
.fc8{color:rgb(0,0,10);}
.fc7{color:rgb(31,78,121);}
.fc6{color:transparent;}
.fc5{color:rgb(0,86,150);}
.fc3{color:rgb(0,32,96);}
.fc9{color:rgb(33,33,33);}
.fc4{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(192,0,0);}
.fc0{color:rgb(0,102,204);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs8{font-size:48.240000px;}
.fsc{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs9{font-size:66.240000px;}
.fsb{font-size:69.822393px;}
.fsa{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs3{font-size:81.965417px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.yf6{bottom:3.240000px;}
.yaf{bottom:7.380000px;}
.y73{bottom:7.560000px;}
.y98{bottom:10.620000px;}
.y6e{bottom:24.120000px;}
.ybf{bottom:31.140000px;}
.y72{bottom:31.320000px;}
.y97{bottom:34.380000px;}
.y64{bottom:41.040000px;}
.y6d{bottom:47.880000px;}
.y63{bottom:52.740000px;}
.y71{bottom:55.080000px;}
.yae{bottom:55.116000px;}
.yc7{bottom:57.060000px;}
.y96{bottom:58.176000px;}
.y62{bottom:63.900000px;}
.yf5{bottom:73.440000px;}
.y61{bottom:75.780000px;}
.yf4{bottom:77.040000px;}
.yc6{bottom:77.760000px;}
.y6c{bottom:78.480000px;}
.y70{bottom:78.840000px;}
.yad{bottom:78.870000px;}
.y95{bottom:81.930000px;}
.y74{bottom:85.680000px;}
.y60{bottom:88.560000px;}
.yc5{bottom:97.740000px;}
.y6b{bottom:102.420000px;}
.yac{bottom:102.630000px;}
.y6f{bottom:102.780000px;}
.y94{bottom:102.810000px;}
.y5f{bottom:106.560000px;}
.yc4{bottom:115.020000px;}
.y5e{bottom:120.780000px;}
.y93{bottom:123.510000px;}
.ybe{bottom:126.390000px;}
.yab{bottom:126.570000px;}
.y173{bottom:130.680000px;}
.y131{bottom:131.400000px;}
.yc3{bottom:132.120000px;}
.y5d{bottom:132.480000px;}
.y1d4{bottom:135.900000px;}
.y5c{bottom:143.820000px;}
.y92{bottom:144.210000px;}
.y172{bottom:147.960000px;}
.yc2{bottom:150.120000px;}
.yaa{bottom:150.330000px;}
.y130{bottom:151.380000px;}
.y171{bottom:153.180000px;}
.y5b{bottom:155.880000px;}
.y91{bottom:164.910000px;}
.y170{bottom:165.240000px;}
.y1f7{bottom:165.960000px;}
.y5a{bottom:167.580000px;}
.y12f{bottom:168.660000px;}
.yf2{bottom:170.100000px;}
.y199{bottom:170.460000px;}
.y1a8{bottom:173.880000px;}
.ya9{bottom:174.090000px;}
.y59{bottom:179.310000px;}
.y16f{bottom:182.520000px;}
.y12e{bottom:185.940000px;}
.yf1{bottom:187.380000px;}
.y1a2{bottom:187.740000px;}
.y1e2{bottom:191.160000px;}
.y58{bottom:191.190000px;}
.y90{bottom:195.510000px;}
.ya8{bottom:197.850000px;}
.y16e{bottom:199.620000px;}
.y57{bottom:202.890000px;}
.y12d{bottom:203.220000px;}
.yf0{bottom:204.660000px;}
.y149{bottom:208.440000px;}
.yef{bottom:209.880000px;}
.y56{bottom:214.590000px;}
.y16d{bottom:216.900000px;}
.y8f{bottom:219.630000px;}
.y12c{bottom:220.320000px;}
.ya7{bottom:221.610000px;}
.yee{bottom:221.940000px;}
.y16c{bottom:222.120000px;}
.y1e1{bottom:225.540000px;}
.y16b{bottom:234.180000px;}
.y202{bottom:234.900000px;}
.y1f6{bottom:237.240000px;}
.y12b{bottom:237.600000px;}
.y55{bottom:237.630000px;}
.yed{bottom:239.040000px;}
.ybd{bottom:239.250000px;}
.y1f9{bottom:239.400000px;}
.y8e{bottom:240.510000px;}
.ya6{bottom:245.550000px;}
.y16a{bottom:251.490000px;}
.y12a{bottom:254.910000px;}
.yec{bottom:256.350000px;}
.y1b4{bottom:256.710000px;}
.y1d8{bottom:260.130000px;}
.y54{bottom:260.850000px;}
.y1f5{bottom:261.030000px;}
.y8d{bottom:261.210000px;}
.yeb{bottom:261.570000px;}
.y201{bottom:261.750000px;}
.y169{bottom:268.770000px;}
.ya5{bottom:269.310000px;}
.y129{bottom:272.190000px;}
.y53{bottom:273.270000px;}
.yea{bottom:273.630000px;}
.y1c0{bottom:273.990000px;}
.y1ed{bottom:277.410000px;}
.y8c{bottom:281.910000px;}
.ybc{bottom:284.070000px;}
.yc0{bottom:284.430000px;}
.y1f4{bottom:284.790000px;}
.y52{bottom:284.970000px;}
.y200{bottom:285.510000px;}
.y168{bottom:286.050000px;}
.y128{bottom:289.470000px;}
.ye9{bottom:290.910000px;}
.y186{bottom:291.270000px;}
.ya4{bottom:293.070000px;}
.y51{bottom:296.670000px;}
.y8b{bottom:302.655000px;}
.y167{bottom:303.150000px;}
.y1cb{bottom:303.870000px;}
.y127{bottom:306.750000px;}
.ybb{bottom:308.190000px;}
.y50{bottom:308.370000px;}
.y1f3{bottom:308.730000px;}
.y1ff{bottom:309.270000px;}
.y192{bottom:311.970000px;}
.ya3{bottom:316.875000px;}
.y4f{bottom:320.250000px;}
.y166{bottom:320.430000px;}
.y1c6{bottom:321.150000px;}
.y126{bottom:323.850000px;}
.y165{bottom:325.650000px;}
.y8a{bottom:326.235000px;}
.ye8{bottom:330.690000px;}
.y4e{bottom:331.950000px;}
.y1f2{bottom:332.490000px;}
.y1ca{bottom:333.030000px;}
.y164{bottom:337.710000px;}
.y1c4{bottom:338.430000px;}
.ya2{bottom:340.815000px;}
.y125{bottom:341.130000px;}
.y1bf{bottom:342.930000px;}
.y4d{bottom:343.650000px;}
.ye7{bottom:343.830000px;}
.y1ac{bottom:346.350000px;}
.y89{bottom:349.995000px;}
.y163{bottom:354.990000px;}
.y4c{bottom:355.350000px;}
.y1be{bottom:355.710000px;}
.yba{bottom:355.755000px;}
.y1f1{bottom:356.250000px;}
.y1c5{bottom:356.970000px;}
.y124{bottom:358.410000px;}
.y1a1{bottom:360.210000px;}
.ye6{bottom:361.830000px;}
.y9{bottom:362.160000px;}
.y1eb{bottom:363.630000px;}
.ya1{bottom:364.575000px;}
.y4b{bottom:367.050000px;}
.y162{bottom:372.270000px;}
.y1d3{bottom:372.990000px;}
.y88{bottom:373.935000px;}
.y123{bottom:375.690000px;}
.y161{bottom:377.490000px;}
.y4a{bottom:378.750000px;}
.yb9{bottom:379.695000px;}
.y1f0{bottom:380.010000px;}
.y1bd{bottom:380.730000px;}
.y122{bottom:380.910000px;}
.y8{bottom:385.590000px;}
.ya0{bottom:388.335000px;}
.y160{bottom:389.370000px;}
.y49{bottom:389.730000px;}
.y1ce{bottom:390.090000px;}
.y121{bottom:392.970000px;}
.y185{bottom:394.590000px;}
.y87{bottom:397.695000px;}
.y1ef{bottom:398.190000px;}
.y48{bottom:401.610000px;}
.yb8{bottom:403.455000px;}
.y1c3{bottom:403.950000px;}
.y1bc{bottom:404.490000px;}
.y15f{bottom:406.650000px;}
.y1a0{bottom:407.370000px;}
.y7{bottom:409.350000px;}
.y120{bottom:410.070000px;}
.y1d2{bottom:411.870000px;}
.y9f{bottom:412.095000px;}
.y47{bottom:413.310000px;}
.y1df{bottom:415.290000px;}
.y86{bottom:421.455000px;}
.y15e{bottom:423.930000px;}
.y1d1{bottom:424.650000px;}
.y46{bottom:425.415000px;}
.yb7{bottom:427.215000px;}
.y11f{bottom:427.350000px;}
.y1c2{bottom:427.710000px;}
.y1bb{bottom:428.250000px;}
.y1fd{bottom:429.150000px;}
.y6{bottom:434.550000px;}
.y1c9{bottom:435.090000px;}
.y9e{bottom:436.035000px;}
.y45{bottom:437.295000px;}
.y15d{bottom:441.210000px;}
.y11e{bottom:444.630000px;}
.y85{bottom:445.215000px;}
.y44{bottom:449.175000px;}
.y11d{bottom:449.850000px;}
.yb6{bottom:450.975000px;}
.y19f{bottom:451.470000px;}
.y1ba{bottom:452.190000px;}
.ye5{bottom:454.170000px;}
.y15c{bottom:458.490000px;}
.y9d{bottom:459.795000px;}
.y5{bottom:460.110000px;}
.y43{bottom:461.055000px;}
.y11c{bottom:461.910000px;}
.y1ab{bottom:462.630000px;}
.y184{bottom:463.710000px;}
.y84{bottom:466.095000px;}
.y191{bottom:467.130000px;}
.y42{bottom:472.035000px;}
.yb5{bottom:474.915000px;}
.y19e{bottom:475.230000px;}
.y15b{bottom:475.770000px;}
.y1b9{bottom:475.950000px;}
.y183{bottom:476.535000px;}
.ye4{bottom:478.155000px;}
.y11b{bottom:479.235000px;}
.y198{bottom:481.035000px;}
.y9c{bottom:483.555000px;}
.y41{bottom:483.735000px;}
.y83{bottom:486.795000px;}
.y15a{bottom:492.915000px;}
.y1fc{bottom:493.635000px;}
.y40{bottom:495.615000px;}
.y4{bottom:495.750000px;}
.y11a{bottom:496.515000px;}
.yb4{bottom:498.675000px;}
.y19d{bottom:499.215000px;}
.y1b8{bottom:499.755000px;}
.ye2{bottom:501.915000px;}
.y1aa{bottom:506.055000px;}
.y9b{bottom:507.315000px;}
.y82{bottom:507.495000px;}
.y3f{bottom:507.855000px;}
.ye3{bottom:508.755000px;}
.y159{bottom:510.195000px;}
.y119{bottom:513.615000px;}
.y1af{bottom:514.335000px;}
.y1b3{bottom:515.415000px;}
.y3e{bottom:519.915000px;}
.yb3{bottom:522.435000px;}
.y19c{bottom:522.975000px;}
.y1b7{bottom:523.515000px;}
.ye1{bottom:525.675000px;}
.y158{bottom:527.475000px;}
.y3{bottom:528.330000px;}
.y1fe{bottom:529.815000px;}
.y118{bottom:530.895000px;}
.y81{bottom:531.255000px;}
.y3d{bottom:531.615000px;}
.y1d6{bottom:532.695000px;}
.y3c{bottom:543.315000px;}
.y157{bottom:544.755000px;}
.y197{bottom:545.475000px;}
.yb2{bottom:546.195000px;}
.yb0{bottom:546.735000px;}
.y1ae{bottom:547.455000px;}
.y117{bottom:548.175000px;}
.ye0{bottom:549.435000px;}
.y1cf{bottom:549.975000px;}
.y18e{bottom:553.395000px;}
.y3b{bottom:554.295000px;}
.y80{bottom:555.045000px;}
.y2{bottom:558.930000px;}
.y156{bottom:562.035000px;}
.y1b2{bottom:562.755000px;}
.y116{bottom:565.455000px;}
.y3a{bottom:566.175000px;}
.yb1{bottom:570.135000px;}
.y18f{bottom:570.495000px;}
.y1c8{bottom:570.675000px;}
.y195{bottom:571.215000px;}
.yde{bottom:573.375000px;}
.y190{bottom:577.335000px;}
.y39{bottom:577.875000px;}
.y196{bottom:578.055000px;}
.y7f{bottom:578.805000px;}
.y155{bottom:579.315000px;}
.ydf{bottom:580.215000px;}
.y115{bottom:582.735000px;}
.y38{bottom:590.295000px;}
.y182{bottom:594.255000px;}
.y194{bottom:594.975000px;}
.y154{bottom:596.415000px;}
.ydd{bottom:597.135000px;}
.y114{bottom:600.015000px;}
.y1cd{bottom:601.095000px;}
.y1dd{bottom:601.635000px;}
.y37{bottom:602.175000px;}
.y7e{bottom:602.565000px;}
.y18d{bottom:605.235000px;}
.y1dc{bottom:613.695000px;}
.y36{bottom:613.875000px;}
.y153{bottom:614.415000px;}
.y113{bottom:617.115000px;}
.y1de{bottom:617.835000px;}
.y181{bottom:618.195000px;}
.y193{bottom:618.735000px;}
.ydc{bottom:620.895000px;}
.y148{bottom:622.335000px;}
.y1d5{bottom:625.035000px;}
.y35{bottom:625.575000px;}
.y7d{bottom:626.505000px;}
.y1db{bottom:630.975000px;}
.y112{bottom:634.395000px;}
.y34{bottom:637.275000px;}
.y1a7{bottom:639.615000px;}
.y180{bottom:641.955000px;}
.y152{bottom:642.495000px;}
.ydb{bottom:644.655000px;}
.y1da{bottom:648.255000px;}
.y33{bottom:648.975000px;}
.y1b6{bottom:649.335000px;}
.y7c{bottom:650.265000px;}
.y111{bottom:651.675000px;}
.y1c7{bottom:652.395000px;}
.y32{bottom:660.675000px;}
.y1e9{bottom:665.535000px;}
.y17f{bottom:665.715000px;}
.y1d9{bottom:666.255000px;}
.y150{bottom:666.435000px;}
.yda{bottom:668.595000px;}
.y110{bottom:668.955000px;}
.y1e8{bottom:670.755000px;}
.y31{bottom:672.405000px;}
.y1e0{bottom:672.555000px;}
.y151{bottom:673.275000px;}
.y7b{bottom:674.025000px;}
.y18c{bottom:674.175000px;}
.y1e7{bottom:682.635000px;}
.y30{bottom:683.925000px;}
.y10f{bottom:686.235000px;}
.y18b{bottom:686.955000px;}
.y17e{bottom:689.475000px;}
.y14f{bottom:690.195000px;}
.y10e{bottom:691.455000px;}
.yd9{bottom:692.355000px;}
.y2f{bottom:695.265000px;}
.y1b1{bottom:696.315000px;}
.y1d7{bottom:697.035000px;}
.y7a{bottom:697.785000px;}
.y1e6{bottom:699.915000px;}
.y10d{bottom:703.365000px;}
.y1a6{bottom:704.085000px;}
.y2e{bottom:706.965000px;}
.y17c{bottom:713.445000px;}
.y14e{bottom:713.985000px;}
.yd8{bottom:716.145000px;}
.y1e5{bottom:717.225000px;}
.y2d{bottom:718.665000px;}
.y17d{bottom:720.285000px;}
.y10c{bottom:720.645000px;}
.y18a{bottom:720.825000px;}
.y79{bottom:721.545000px;}
.y1ec{bottom:725.865000px;}
.y2c{bottom:730.725000px;}
.y1e4{bottom:735.225000px;}
.y17b{bottom:737.205000px;}
.y14d{bottom:737.745000px;}
.y10b{bottom:737.925000px;}
.yd7{bottom:739.905000px;}
.y2b{bottom:742.425000px;}
.y10a{bottom:743.145000px;}
.y1d0{bottom:744.045000px;}
.y1a5{bottom:744.585000px;}
.y78{bottom:745.485000px;}
.y2a{bottom:754.125000px;}
.y147{bottom:755.205000px;}
.y109{bottom:755.925000px;}
.y17a{bottom:760.965000px;}
.y14c{bottom:761.685000px;}
.yd6{bottom:763.845000px;}
.y189{bottom:768.525000px;}
.y77{bottom:769.245000px;}
.y146{bottom:772.485000px;}
.y29{bottom:777.885000px;}
.y179{bottom:784.725000px;}
.y107{bottom:785.445000px;}
.yd5{bottom:787.605000px;}
.y145{bottom:789.765000px;}
.y1ee{bottom:791.565000px;}
.y108{bottom:792.285000px;}
.y76{bottom:792.645000px;}
.y9a{bottom:793.005000px;}
.y28{bottom:802.365000px;}
.y144{bottom:806.865000px;}
.y178{bottom:808.665000px;}
.y106{bottom:809.205000px;}
.yd4{bottom:811.365000px;}
.y1ea{bottom:815.505000px;}
.y1ad{bottom:816.045000px;}
.y75{bottom:816.450000px;}
.y99{bottom:816.810000px;}
.y27{bottom:820.185000px;}
.y143{bottom:824.145000px;}
.y177{bottom:832.425000px;}
.y105{bottom:832.965000px;}
.y26{bottom:834.585000px;}
.yd3{bottom:835.125000px;}
.y19b{bottom:839.265000px;}
.y1b5{bottom:839.805000px;}
.y142{bottom:842.145000px;}
.y25{bottom:848.625000px;}
.y176{bottom:856.185000px;}
.y104{bottom:856.905000px;}
.yd2{bottom:859.065000px;}
.y24{bottom:860.685000px;}
.y1e3{bottom:863.745000px;}
.y23{bottom:872.385000px;}
.y140{bottom:879.945000px;}
.y103{bottom:880.665000px;}
.yd1{bottom:882.825000px;}
.y22{bottom:883.365000px;}
.y141{bottom:886.785000px;}
.y1a4{bottom:887.505000px;}
.y21{bottom:895.245000px;}
.y13e{bottom:903.885000px;}
.y101{bottom:904.425000px;}
.yd0{bottom:906.585000px;}
.y20{bottom:906.990000px;}
.y13f{bottom:910.725000px;}
.y102{bottom:911.265000px;}
.y6a{bottom:918.870000px;}
.y1f{bottom:919.230000px;}
.y13d{bottom:927.645000px;}
.y100{bottom:928.185000px;}
.ycf{bottom:930.390000px;}
.y1e{bottom:931.470000px;}
.y1a9{bottom:934.530000px;}
.y14b{bottom:935.070000px;}
.y13c{bottom:951.450000px;}
.yff{bottom:952.170000px;}
.y1d{bottom:954.150000px;}
.yce{bottom:954.330000px;}
.y1cc{bottom:958.290000px;}
.y1f8{bottom:959.010000px;}
.y13b{bottom:975.210000px;}
.yfe{bottom:975.930000px;}
.y1c{bottom:977.730000px;}
.ycd{bottom:979.530000px;}
.y1b0{bottom:982.050000px;}
.y1a3{bottom:982.770000px;}
.y1b{bottom:989.430000px;}
.y13a{bottom:999.150000px;}
.yfc{bottom:999.690000px;}
.y1a{bottom:1001.670000px;}
.ycc{bottom:1003.470000px;}
.y1c1{bottom:1005.990000px;}
.yfd{bottom:1006.530000px;}
.y19{bottom:1013.730000px;}
.y139{bottom:1022.910000px;}
.yfb{bottom:1023.450000px;}
.y18{bottom:1025.430000px;}
.ycb{bottom:1027.230000px;}
.y175{bottom:1029.750000px;}
.y14a{bottom:1030.290000px;}
.y17{bottom:1037.130000px;}
.y69{bottom:1045.050000px;}
.y138{bottom:1046.670000px;}
.yfa{bottom:1047.390000px;}
.y16{bottom:1048.830000px;}
.yca{bottom:1050.990000px;}
.y1fb{bottom:1053.510000px;}
.y188{bottom:1054.230000px;}
.y15{bottom:1060.530000px;}
.y68{bottom:1068.810000px;}
.y137{bottom:1070.430000px;}
.yf9{bottom:1071.150000px;}
.y14{bottom:1072.410000px;}
.yc9{bottom:1074.750000px;}
.y174{bottom:1077.270000px;}
.y13{bottom:1084.110000px;}
.y67{bottom:1092.570000px;}
.y136{bottom:1094.370000px;}
.yf8{bottom:1094.910000px;}
.y12{bottom:1095.810000px;}
.yc8{bottom:1098.690000px;}
.y19a{bottom:1101.210000px;}
.y187{bottom:1101.750000px;}
.yc1{bottom:1115.430000px;}
.y66{bottom:1116.510000px;}
.y135{bottom:1118.130000px;}
.y11{bottom:1118.670000px;}
.y1fa{bottom:1124.970000px;}
.yf7{bottom:1125.510000px;}
.y10{bottom:1130.370000px;}
.y65{bottom:1133.250000px;}
.y134{bottom:1138.830000px;}
.yf{bottom:1142.250000px;}
.ye{bottom:1154.520000px;}
.y1{bottom:1157.190000px;}
.y133{bottom:1158.840000px;}
.yd{bottom:1165.500000px;}
.y132{bottom:1176.120000px;}
.yc{bottom:1177.380000px;}
.yf3{bottom:1195.920000px;}
.yb{bottom:1200.960000px;}
.ya{bottom:1212.840000px;}
.h23{height:17.280000px;}
.h10{height:29.460938px;}
.hc{height:31.817813px;}
.hd{height:36.017578px;}
.h20{height:37.771172px;}
.h21{height:38.158594px;}
.hb{height:38.898984px;}
.he{height:39.477656px;}
.h2{height:40.472227px;}
.h3{height:41.493516px;}
.h18{height:47.286943px;}
.h26{height:47.321367px;}
.h1f{height:47.344922px;}
.hf{height:48.905156px;}
.h17{height:52.066406px;}
.h1b{height:55.825312px;}
.h22{height:58.621992px;}
.h1e{height:58.651172px;}
.h24{height:59.038594px;}
.h8{height:59.079375px;}
.h1d{height:60.226875px;}
.h6{height:62.274507px;}
.h7{height:64.002656px;}
.h25{height:64.546875px;}
.h11{height:65.884219px;}
.h15{height:70.628906px;}
.h14{height:70.664062px;}
.h12{height:72.562500px;}
.h1a{height:74.953125px;}
.h4{height:82.054688px;}
.h5{height:91.354219px;}
.h13{height:119.145000px;}
.h19{height:586.500000px;}
.h16{height:833.175000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.h1c{height:1263.060000px;}
.ha{height:1263.750000px;}
.h9{height:1263.780000px;}
.wb{width:19.440000px;}
.wa{width:19.620000px;}
.wc{width:27.000000px;}
.w5{width:69.330000px;}
.w4{width:701.730000px;}
.w9{width:892.439973px;}
.w8{width:892.439987px;}
.w6{width:892.440000px;}
.w7{width:892.500000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w3{width:894.000000px;}
.w2{width:894.060000px;}
.x0{left:0.000000px;}
.x53{left:2.340000px;}
.x40{left:8.091000px;}
.x42{left:61.230000px;}
.x1{left:90.756000px;}
.x3d{left:93.636000px;}
.x52{left:112.356000px;}
.x8{left:126.036000px;}
.x45{left:127.655987px;}
.x4f{left:132.515987px;}
.x50{left:134.495987px;}
.xf{left:135.756000px;}
.x6d{left:137.375987px;}
.x68{left:138.995987px;}
.x49{left:140.255987px;}
.x43{left:142.005000px;}
.xcb{left:144.035987px;}
.x9b{left:148.895987px;}
.x27{left:151.230000px;}
.x1e{left:153.570000px;}
.x5c{left:154.649987px;}
.x47{left:157.349987px;}
.x13{left:158.790000px;}
.xc4{left:163.649973px;}
.x7f{left:166.709973px;}
.x7b{left:174.629973px;}
.xc5{left:175.889987px;}
.x80{left:178.949987px;}
.xd5{left:180.749987px;}
.x97{left:182.549973px;}
.xbd{left:183.629973px;}
.xa2{left:185.609973px;}
.x7c{left:186.869987px;}
.x48{left:188.669987px;}
.x14{left:189.930000px;}
.x7d{left:191.549973px;}
.x98{left:194.789987px;}
.xbe{left:195.869987px;}
.x90{left:198.749973px;}
.x18{left:202.350000px;}
.x7e{left:204.689987px;}
.x33{left:208.650000px;}
.x2f{left:210.270000px;}
.x23{left:213.510000px;}
.x31{left:219.990000px;}
.xb8{left:222.149987px;}
.x1d{left:223.410000px;}
.x19{left:225.210000px;}
.x34{left:226.650000px;}
.x36{left:228.450000px;}
.x22{left:229.530000px;}
.x11{left:231.150000px;}
.xb{left:232.590000px;}
.x12{left:234.930000px;}
.x1a{left:236.730000px;}
.x1f{left:238.890000px;}
.x1b{left:240.555000px;}
.x28{left:244.335000px;}
.x2b{left:245.595000px;}
.x21{left:247.755000px;}
.x38{left:248.835000px;}
.x17{left:250.275000px;}
.x9{left:254.415000px;}
.x20{left:256.575000px;}
.x39{left:261.795000px;}
.xd{left:263.595000px;}
.x2e{left:264.855000px;}
.x2d{left:265.935000px;}
.x5b{left:267.554987px;}
.x35{left:268.635000px;}
.x94{left:270.074973px;}
.x24{left:271.515000px;}
.x32{left:273.495000px;}
.x3{left:275.295000px;}
.x30{left:277.455000px;}
.x2c{left:279.075000px;}
.x25{left:281.955000px;}
.x26{left:284.295000px;}
.xad{left:285.374987px;}
.xa{left:288.615000px;}
.x1c{left:290.595000px;}
.x69{left:294.194987px;}
.x6c{left:296.354987px;}
.x10{left:301.575000px;}
.xcd{left:302.834987px;}
.x2a{left:304.635000px;}
.x4{left:306.075000px;}
.xbc{left:307.154973px;}
.xae{left:311.114973px;}
.x64{left:313.814987px;}
.x3b{left:319.035000px;}
.xaf{left:321.014973px;}
.x29{left:322.635000px;}
.x15{left:323.895000px;}
.x79{left:325.514973px;}
.xe{left:327.675000px;}
.x5{left:330.405000px;}
.x70{left:331.994987px;}
.x16{left:333.975000px;}
.xb1{left:336.674973px;}
.xc3{left:337.934987px;}
.x7a{left:339.734987px;}
.xb4{left:340.814987px;}
.xbf{left:341.894987px;}
.x4e{left:343.694987px;}
.x89{left:345.134973px;}
.x37{left:347.475000px;}
.xb2{left:348.914987px;}
.x6a{left:356.114973px;}
.x8a{left:357.374987px;}
.x65{left:359.894987px;}
.x71{left:361.334973px;}
.x6b{left:368.354987px;}
.x72{left:373.574987px;}
.xce{left:375.914987px;}
.x46{left:377.534987px;}
.x3e{left:379.695000px;}
.xc{left:381.495000px;}
.xba{left:386.894973px;}
.x4a{left:388.154987px;}
.x5e{left:389.594973px;}
.x3a{left:392.835000px;}
.x4b{left:394.634987px;}
.x5f{left:395.714987px;}
.xbb{left:399.134987px;}
.x51{left:400.214987px;}
.x6{left:401.685000px;}
.x78{left:405.074973px;}
.xa1{left:406.874987px;}
.x3f{left:410.115000px;}
.x62{left:411.194973px;}
.x7{left:413.025000px;}
.x85{left:414.074973px;}
.x56{left:415.694987px;}
.x63{left:417.314987px;}
.xc2{left:422.354987px;}
.x86{left:426.314987px;}
.x8f{left:428.654987px;}
.x83{left:429.914987px;}
.x84{left:431.714973px;}
.xd3{left:437.144973px;}
.x59{left:443.084973px;}
.x2{left:445.785000px;}
.x5a{left:449.204987px;}
.xd4{left:455.504987px;}
.x87{left:464.684973px;}
.x88{left:476.924987px;}
.xa3{left:478.724973px;}
.x99{left:480.344973px;}
.xa4{left:490.964987px;}
.x9a{left:492.584987px;}
.x9c{left:501.404973px;}
.x3c{left:503.925000px;}
.x4c{left:506.624973px;}
.x4d{left:512.744987px;}
.x44{left:514.184987px;}
.x9e{left:518.504987px;}
.xa7{left:524.984973px;}
.xb9{left:526.964987px;}
.xca{left:533.084973px;}
.xa8{left:537.224987px;}
.xc9{left:541.904973px;}
.xcf{left:544.784987px;}
.x57{left:546.224973px;}
.x66{left:550.364973px;}
.x58{left:552.344987px;}
.x77{left:558.104987px;}
.x67{left:562.604987px;}
.x91{left:564.584973px;}
.xb7{left:571.784987px;}
.x92{left:576.824987px;}
.xb5{left:587.444973px;}
.x6e{left:591.224973px;}
.xb6{left:599.684987px;}
.x6f{left:603.464987px;}
.x75{left:609.629973px;}
.xc7{left:611.789973px;}
.x9f{left:618.089973px;}
.x76{left:624.389987px;}
.xc8{left:630.149987px;}
.xa0{left:632.489987px;}
.x73{left:640.589973px;}
.xa9{left:644.729973px;}
.x74{left:652.829987px;}
.xaa{left:656.969987px;}
.x9d{left:659.129973px;}
.xb0{left:664.889987px;}
.xb3{left:669.029987px;}
.x8b{left:671.549973px;}
.x8d{left:672.809973px;}
.xc6{left:678.389987px;}
.x8c{left:683.789987px;}
.x8e{left:685.049987px;}
.xab{left:688.289973px;}
.x95{left:693.329973px;}
.x81{left:695.129973px;}
.xac{left:700.529987px;}
.x60{left:702.689973px;}
.x96{left:705.569987px;}
.x82{left:707.369987px;}
.x61{left:708.809987px;}
.x54{left:710.609973px;}
.xc0{left:714.029973px;}
.x55{left:716.729987px;}
.xa5{left:723.749973px;}
.xc1{left:726.269987px;}
.xd1{left:733.109973px;}
.xa6{left:735.989987px;}
.xcc{left:740.310000px;}
.xd0{left:742.469973px;}
.x5d{left:747.870000px;}
.xd2{left:751.469987px;}
.x93{left:760.829987px;}
.x41{left:795.390000px;}
@media print{
.v3{vertical-align:-45.440000pt;}
.v1{vertical-align:-41.600000pt;}
.v2{vertical-align:-39.680000pt;}
.v5{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:18.560000pt;}
.v4{vertical-align:21.120000pt;}
.lsa2{letter-spacing:-0.896000pt;}
.ls8e{letter-spacing:-0.880000pt;}
.ls17{letter-spacing:-0.832000pt;}
.ls40{letter-spacing:-0.688000pt;}
.ls65{letter-spacing:-0.640000pt;}
.ls9d{letter-spacing:-0.592000pt;}
.lsa5{letter-spacing:-0.576000pt;}
.ls6b{letter-spacing:-0.544000pt;}
.ls66{letter-spacing:-0.512000pt;}
.ls25{letter-spacing:-0.480000pt;}
.ls44{letter-spacing:-0.456533pt;}
.ls41{letter-spacing:-0.409067pt;}
.ls5f{letter-spacing:-0.367467pt;}
.ls24{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls43{letter-spacing:-0.239467pt;}
.lsc{letter-spacing:-0.234133pt;}
.ls4e{letter-spacing:-0.230933pt;}
.lsb{letter-spacing:-0.205867pt;}
.ls7f{letter-spacing:-0.198933pt;}
.ls5e{letter-spacing:-0.192000pt;}
.ls3e{letter-spacing:-0.183467pt;}
.ls56{letter-spacing:-0.128000pt;}
.ls2b{letter-spacing:-0.094933pt;}
.lsf{letter-spacing:-0.090667pt;}
.ls9c{letter-spacing:-0.089067pt;}
.ls4d{letter-spacing:-0.064000pt;}
.ls29{letter-spacing:-0.047360pt;}
.ls10{letter-spacing:-0.011520pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.006400pt;}
.ls82{letter-spacing:0.011947pt;}
.ls12{letter-spacing:0.021760pt;}
.ls47{letter-spacing:0.026027pt;}
.lsa4{letter-spacing:0.040320pt;}
.ls23{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.060267pt;}
.ls28{letter-spacing:0.064000pt;}
.ls86{letter-spacing:0.065280pt;}
.lsa{letter-spacing:0.077867pt;}
.lsd{letter-spacing:0.088533pt;}
.ls2a{letter-spacing:0.094933pt;}
.ls1a{letter-spacing:0.106240pt;}
.ls9f{letter-spacing:0.114987pt;}
.ls1f{letter-spacing:0.128000pt;}
.ls3b{letter-spacing:0.136320pt;}
.ls42{letter-spacing:0.136533pt;}
.ls18{letter-spacing:0.160000pt;}
.ls92{letter-spacing:0.162347pt;}
.ls3f{letter-spacing:0.183467pt;}
.ls34{letter-spacing:0.183680pt;}
.lsa6{letter-spacing:0.192000pt;}
.ls63{letter-spacing:0.199040pt;}
.ls98{letter-spacing:0.207360pt;}
.ls2c{letter-spacing:0.230933pt;}
.ls1b{letter-spacing:0.231040pt;}
.ls1c{letter-spacing:0.256000pt;}
.ls46{letter-spacing:0.265600pt;}
.ls7b{letter-spacing:0.266667pt;}
.ls50{letter-spacing:0.272533pt;}
.ls19{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.330133pt;}
.ls58{letter-spacing:0.384000pt;}
.ls99{letter-spacing:0.391040pt;}
.ls5b{letter-spacing:0.408960pt;}
.ls13{letter-spacing:0.434133pt;}
.ls3d{letter-spacing:0.448000pt;}
.ls6a{letter-spacing:0.480000pt;}
.ls26{letter-spacing:0.512000pt;}
.ls38{letter-spacing:0.545280pt;}
.ls15{letter-spacing:0.554667pt;}
.ls90{letter-spacing:0.568960pt;}
.ls75{letter-spacing:0.576000pt;}
.ls45{letter-spacing:0.592000pt;}
.ls1d{letter-spacing:0.640000pt;}
.ls7d{letter-spacing:0.687360pt;}
.ls57{letter-spacing:0.704000pt;}
.lse{letter-spacing:0.730667pt;}
.ls59{letter-spacing:0.736000pt;}
.ls27{letter-spacing:0.768000pt;}
.ls36{letter-spacing:0.800000pt;}
.lsa1{letter-spacing:0.821333pt;}
.lsa7{letter-spacing:0.960000pt;}
.ls2d{letter-spacing:1.280000pt;}
.ls33{letter-spacing:1.440000pt;}
.ls62{letter-spacing:1.920000pt;}
.ls3c{letter-spacing:2.080000pt;}
.ls94{letter-spacing:2.240000pt;}
.ls74{letter-spacing:2.560000pt;}
.ls2f{letter-spacing:2.720000pt;}
.ls73{letter-spacing:2.880000pt;}
.ls81{letter-spacing:3.200000pt;}
.ls4b{letter-spacing:3.360000pt;}
.ls68{letter-spacing:3.840000pt;}
.ls4a{letter-spacing:4.000000pt;}
.ls21{letter-spacing:4.480000pt;}
.ls35{letter-spacing:4.640000pt;}
.lsa8{letter-spacing:4.800000pt;}
.ls20{letter-spacing:5.120000pt;}
.ls39{letter-spacing:5.280000pt;}
.ls53{letter-spacing:5.760000pt;}
.ls32{letter-spacing:5.920000pt;}
.ls4f{letter-spacing:6.400000pt;}
.ls2e{letter-spacing:6.560000pt;}
.ls7e{letter-spacing:6.720000pt;}
.ls83{letter-spacing:7.040000pt;}
.ls37{letter-spacing:7.200000pt;}
.ls54{letter-spacing:7.680000pt;}
.ls31{letter-spacing:7.840000pt;}
.ls70{letter-spacing:8.320000pt;}
.ls48{letter-spacing:8.480000pt;}
.ls71{letter-spacing:8.960000pt;}
.ls52{letter-spacing:9.120000pt;}
.ls88{letter-spacing:9.280000pt;}
.ls6c{letter-spacing:9.600000pt;}
.ls49{letter-spacing:9.760000pt;}
.ls84{letter-spacing:10.240000pt;}
.ls5a{letter-spacing:10.400000pt;}
.ls3a{letter-spacing:11.040000pt;}
.ls8f{letter-spacing:11.146667pt;}
.ls95{letter-spacing:11.520000pt;}
.ls5d{letter-spacing:11.680000pt;}
.ls7c{letter-spacing:11.840000pt;}
.ls8b{letter-spacing:12.160000pt;}
.ls30{letter-spacing:12.320000pt;}
.ls1e{letter-spacing:12.800000pt;}
.ls22{letter-spacing:12.960000pt;}
.ls5c{letter-spacing:13.120000pt;}
.ls78{letter-spacing:13.440000pt;}
.ls91{letter-spacing:13.600000pt;}
.ls72{letter-spacing:14.240000pt;}
.ls60{letter-spacing:14.720000pt;}
.ls87{letter-spacing:14.880000pt;}
.ls7a{letter-spacing:15.360000pt;}
.ls4c{letter-spacing:15.520000pt;}
.ls67{letter-spacing:16.000000pt;}
.ls76{letter-spacing:16.160000pt;}
.ls80{letter-spacing:16.800000pt;}
.ls8c{letter-spacing:18.720000pt;}
.ls93{letter-spacing:19.360000pt;}
.ls55{letter-spacing:19.840000pt;}
.ls6d{letter-spacing:20.480000pt;}
.ls89{letter-spacing:21.280000pt;}
.ls6f{letter-spacing:22.400000pt;}
.ls6e{letter-spacing:22.560000pt;}
.ls8a{letter-spacing:23.040000pt;}
.ls9b{letter-spacing:23.840000pt;}
.ls9e{letter-spacing:24.320000pt;}
.ls69{letter-spacing:24.480000pt;}
.ls51{letter-spacing:26.560000pt;}
.lsa3{letter-spacing:26.880000pt;}
.ls96{letter-spacing:28.480000pt;}
.ls77{letter-spacing:28.800000pt;}
.lsa0{letter-spacing:28.960000pt;}
.ls61{letter-spacing:30.720000pt;}
.ls9a{letter-spacing:30.880000pt;}
.ls64{letter-spacing:34.720000pt;}
.ls8d{letter-spacing:35.360000pt;}
.ls79{letter-spacing:94.240000pt;}
.ls97{letter-spacing:96.800000pt;}
.ls85{letter-spacing:185.738667pt;}
.ls9{letter-spacing:436.202667pt;}
.ls5{letter-spacing:497.642667pt;}
.ls7{letter-spacing:515.562667pt;}
.ls2{letter-spacing:610.282667pt;}
.ls6{letter-spacing:882.712107pt;}
.ls8{letter-spacing:883.401387pt;}
.ls4{letter-spacing:904.521387pt;}
.ls1{letter-spacing:984.039253pt;}
.ws3d{word-spacing:-64.000000pt;}
.ws23{word-spacing:-53.120000pt;}
.ws49{word-spacing:-53.025067pt;}
.ws17{word-spacing:-42.880000pt;}
.ws27{word-spacing:-36.224000pt;}
.ws16{word-spacing:-36.096000pt;}
.ws3a{word-spacing:-36.032000pt;}
.wsb{word-spacing:-34.560000pt;}
.ws48{word-spacing:-30.190613pt;}
.ws1f{word-spacing:-30.054613pt;}
.ws1d{word-spacing:-29.959680pt;}
.ws41{word-spacing:-29.912320pt;}
.ws45{word-spacing:-29.271680pt;}
.ws46{word-spacing:-24.184320pt;}
.ws1a{word-spacing:-16.768000pt;}
.ws36{word-spacing:-16.704000pt;}
.ws26{word-spacing:-16.640000pt;}
.ws42{word-spacing:-16.576000pt;}
.ws15{word-spacing:-16.512000pt;}
.ws25{word-spacing:-16.448000pt;}
.ws37{word-spacing:-16.384000pt;}
.ws43{word-spacing:-16.256000pt;}
.ws50{word-spacing:-16.192000pt;}
.ws19{word-spacing:-16.128000pt;}
.ws1c{word-spacing:-16.064000pt;}
.ws11{word-spacing:-16.000000pt;}
.ws32{word-spacing:-15.936000pt;}
.ws35{word-spacing:-15.872000pt;}
.ws39{word-spacing:-15.808000pt;}
.ws1b{word-spacing:-15.744000pt;}
.ws3e{word-spacing:-15.488000pt;}
.ws4f{word-spacing:-15.424000pt;}
.ws3c{word-spacing:-15.360000pt;}
.ws12{word-spacing:-15.168000pt;}
.ws4e{word-spacing:-15.104000pt;}
.ws51{word-spacing:-14.240000pt;}
.ws4c{word-spacing:-14.101333pt;}
.ws38{word-spacing:-14.016000pt;}
.ws31{word-spacing:-13.872000pt;}
.ws13{word-spacing:-13.600000pt;}
.ws34{word-spacing:-13.552533pt;}
.ws4d{word-spacing:-13.545600pt;}
.ws24{word-spacing:-13.510933pt;}
.ws2a{word-spacing:-13.463467pt;}
.ws3f{word-spacing:-13.440000pt;}
.ws2e{word-spacing:-13.416533pt;}
.ws28{word-spacing:-13.374933pt;}
.ws2b{word-spacing:-13.327360pt;}
.ws20{word-spacing:-13.280000pt;}
.ws1e{word-spacing:-13.232640pt;}
.ws4a{word-spacing:-13.190933pt;}
.ws21{word-spacing:-13.185067pt;}
.ws29{word-spacing:-13.096533pt;}
.ws33{word-spacing:-13.049067pt;}
.ws14{word-spacing:-12.960000pt;}
.ws3b{word-spacing:-12.912533pt;}
.ws2d{word-spacing:-12.870933pt;}
.ws30{word-spacing:-12.823467pt;}
.ws40{word-spacing:-12.736000pt;}
.ws4b{word-spacing:-12.688000pt;}
.ws18{word-spacing:-12.640000pt;}
.ws2c{word-spacing:-12.592000pt;}
.ws6{word-spacing:-11.547947pt;}
.ws10{word-spacing:-11.371947pt;}
.wse{word-spacing:-11.251413pt;}
.wsf{word-spacing:-11.147413pt;}
.ws5{word-spacing:-10.905813pt;}
.ws7{word-spacing:-10.817280pt;}
.ws52{word-spacing:-10.760320pt;}
.ws8{word-spacing:-10.726613pt;}
.ws22{word-spacing:-10.720000pt;}
.ws3{word-spacing:-10.611413pt;}
.ws4{word-spacing:-10.583147pt;}
.ws44{word-spacing:-10.521067pt;}
.ws2f{word-spacing:-10.480533pt;}
.ws2{word-spacing:-10.203947pt;}
.ws9{word-spacing:-10.186347pt;}
.wsd{word-spacing:-10.147840pt;}
.wsc{word-spacing:-10.132480pt;}
.ws1{word-spacing:-10.126080pt;}
.wsa{word-spacing:-10.114560pt;}
.ws47{word-spacing:-9.840000pt;}
.ws0{word-spacing:0.000000pt;}
._32{margin-left:-27.981867pt;}
._47{margin-left:-18.447360pt;}
._11{margin-left:-12.368000pt;}
._43{margin-left:-8.586667pt;}
._21{margin-left:-7.462400pt;}
._37{margin-left:-5.991467pt;}
._14{margin-left:-5.005013pt;}
._d{margin-left:-3.734187pt;}
._2{margin-left:-2.629120pt;}
._0{margin-left:-1.152000pt;}
._1{width:0.949333pt;}
._3{width:2.028800pt;}
._4{width:3.214080pt;}
._6{width:4.800000pt;}
._5{width:5.952000pt;}
._c{width:6.906027pt;}
._7{width:7.872000pt;}
._8{width:8.768000pt;}
._b{width:10.176000pt;}
._13{width:11.188053pt;}
._e{width:12.480000pt;}
._f{width:13.408000pt;}
._12{width:14.421333pt;}
._19{width:15.787093pt;}
._2c{width:16.928000pt;}
._10{width:18.080000pt;}
._1e{width:19.712000pt;}
._1f{width:20.837120pt;}
._15{width:21.808213pt;}
._27{width:23.157333pt;}
._22{width:24.682667pt;}
._16{width:25.706667pt;}
._1a{width:26.728107pt;}
._23{width:28.522667pt;}
._18{width:30.339200pt;}
._17{width:31.236693pt;}
._25{width:32.865067pt;}
._39{width:33.818453pt;}
._26{width:34.820480pt;}
._3e{width:35.966720pt;}
._3d{width:36.986027pt;}
._28{width:38.098773pt;}
._2f{width:39.351893pt;}
._36{width:46.056533pt;}
._35{width:47.433387pt;}
._3c{width:54.507733pt;}
._24{width:59.018667pt;}
._1d{width:64.687360pt;}
._38{width:69.912747pt;}
._2e{width:73.073067pt;}
._2d{width:74.106027pt;}
._44{width:85.714987pt;}
._34{width:94.680747pt;}
._45{width:96.308693pt;}
._46{width:97.318187pt;}
._1c{width:98.229547pt;}
._1b{width:99.294720pt;}
._3f{width:103.882453pt;}
._40{width:104.882347pt;}
._a{width:116.800000pt;}
._9{width:117.749333pt;}
._2b{width:165.925760pt;}
._2a{width:166.953387pt;}
._3a{width:185.137493pt;}
._3b{width:186.160853pt;}
._42{width:254.661973pt;}
._41{width:256.280747pt;}
._29{width:275.605547pt;}
._31{width:301.996800pt;}
._30{width:303.035093pt;}
._20{width:471.498667pt;}
._48{width:483.153493pt;}
._49{width:484.104320pt;}
._33{width:566.993493pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs8{font-size:42.880000pt;}
.fsc{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs9{font-size:58.880000pt;}
.fsb{font-size:62.064349pt;}
.fsa{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:72.858149pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.yf6{bottom:2.880000pt;}
.yaf{bottom:6.560000pt;}
.y73{bottom:6.720000pt;}
.y98{bottom:9.440000pt;}
.y6e{bottom:21.440000pt;}
.ybf{bottom:27.680000pt;}
.y72{bottom:27.840000pt;}
.y97{bottom:30.560000pt;}
.y64{bottom:36.480000pt;}
.y6d{bottom:42.560000pt;}
.y63{bottom:46.880000pt;}
.y71{bottom:48.960000pt;}
.yae{bottom:48.992000pt;}
.yc7{bottom:50.720000pt;}
.y96{bottom:51.712000pt;}
.y62{bottom:56.800000pt;}
.yf5{bottom:65.280000pt;}
.y61{bottom:67.360000pt;}
.yf4{bottom:68.480000pt;}
.yc6{bottom:69.120000pt;}
.y6c{bottom:69.760000pt;}
.y70{bottom:70.080000pt;}
.yad{bottom:70.106667pt;}
.y95{bottom:72.826667pt;}
.y74{bottom:76.160000pt;}
.y60{bottom:78.720000pt;}
.yc5{bottom:86.880000pt;}
.y6b{bottom:91.040000pt;}
.yac{bottom:91.226667pt;}
.y6f{bottom:91.360000pt;}
.y94{bottom:91.386667pt;}
.y5f{bottom:94.720000pt;}
.yc4{bottom:102.240000pt;}
.y5e{bottom:107.360000pt;}
.y93{bottom:109.786667pt;}
.ybe{bottom:112.346667pt;}
.yab{bottom:112.506667pt;}
.y173{bottom:116.160000pt;}
.y131{bottom:116.800000pt;}
.yc3{bottom:117.440000pt;}
.y5d{bottom:117.760000pt;}
.y1d4{bottom:120.800000pt;}
.y5c{bottom:127.840000pt;}
.y92{bottom:128.186667pt;}
.y172{bottom:131.520000pt;}
.yc2{bottom:133.440000pt;}
.yaa{bottom:133.626667pt;}
.y130{bottom:134.560000pt;}
.y171{bottom:136.160000pt;}
.y5b{bottom:138.560000pt;}
.y91{bottom:146.586667pt;}
.y170{bottom:146.880000pt;}
.y1f7{bottom:147.520000pt;}
.y5a{bottom:148.960000pt;}
.y12f{bottom:149.920000pt;}
.yf2{bottom:151.200000pt;}
.y199{bottom:151.520000pt;}
.y1a8{bottom:154.560000pt;}
.ya9{bottom:154.746667pt;}
.y59{bottom:159.386667pt;}
.y16f{bottom:162.240000pt;}
.y12e{bottom:165.280000pt;}
.yf1{bottom:166.560000pt;}
.y1a2{bottom:166.880000pt;}
.y1e2{bottom:169.920000pt;}
.y58{bottom:169.946667pt;}
.y90{bottom:173.786667pt;}
.ya8{bottom:175.866667pt;}
.y16e{bottom:177.440000pt;}
.y57{bottom:180.346667pt;}
.y12d{bottom:180.640000pt;}
.yf0{bottom:181.920000pt;}
.y149{bottom:185.280000pt;}
.yef{bottom:186.560000pt;}
.y56{bottom:190.746667pt;}
.y16d{bottom:192.800000pt;}
.y8f{bottom:195.226667pt;}
.y12c{bottom:195.840000pt;}
.ya7{bottom:196.986667pt;}
.yee{bottom:197.280000pt;}
.y16c{bottom:197.440000pt;}
.y1e1{bottom:200.480000pt;}
.y16b{bottom:208.160000pt;}
.y202{bottom:208.800000pt;}
.y1f6{bottom:210.880000pt;}
.y12b{bottom:211.200000pt;}
.y55{bottom:211.226667pt;}
.yed{bottom:212.480000pt;}
.ybd{bottom:212.666667pt;}
.y1f9{bottom:212.800000pt;}
.y8e{bottom:213.786667pt;}
.ya6{bottom:218.266667pt;}
.y16a{bottom:223.546667pt;}
.y12a{bottom:226.586667pt;}
.yec{bottom:227.866667pt;}
.y1b4{bottom:228.186667pt;}
.y1d8{bottom:231.226667pt;}
.y54{bottom:231.866667pt;}
.y1f5{bottom:232.026667pt;}
.y8d{bottom:232.186667pt;}
.yeb{bottom:232.506667pt;}
.y201{bottom:232.666667pt;}
.y169{bottom:238.906667pt;}
.ya5{bottom:239.386667pt;}
.y129{bottom:241.946667pt;}
.y53{bottom:242.906667pt;}
.yea{bottom:243.226667pt;}
.y1c0{bottom:243.546667pt;}
.y1ed{bottom:246.586667pt;}
.y8c{bottom:250.586667pt;}
.ybc{bottom:252.506667pt;}
.yc0{bottom:252.826667pt;}
.y1f4{bottom:253.146667pt;}
.y52{bottom:253.306667pt;}
.y200{bottom:253.786667pt;}
.y168{bottom:254.266667pt;}
.y128{bottom:257.306667pt;}
.ye9{bottom:258.586667pt;}
.y186{bottom:258.906667pt;}
.ya4{bottom:260.506667pt;}
.y51{bottom:263.706667pt;}
.y8b{bottom:269.026667pt;}
.y167{bottom:269.466667pt;}
.y1cb{bottom:270.106667pt;}
.y127{bottom:272.666667pt;}
.ybb{bottom:273.946667pt;}
.y50{bottom:274.106667pt;}
.y1f3{bottom:274.426667pt;}
.y1ff{bottom:274.906667pt;}
.y192{bottom:277.306667pt;}
.ya3{bottom:281.666667pt;}
.y4f{bottom:284.666667pt;}
.y166{bottom:284.826667pt;}
.y1c6{bottom:285.466667pt;}
.y126{bottom:287.866667pt;}
.y165{bottom:289.466667pt;}
.y8a{bottom:289.986667pt;}
.ye8{bottom:293.946667pt;}
.y4e{bottom:295.066667pt;}
.y1f2{bottom:295.546667pt;}
.y1ca{bottom:296.026667pt;}
.y164{bottom:300.186667pt;}
.y1c4{bottom:300.826667pt;}
.ya2{bottom:302.946667pt;}
.y125{bottom:303.226667pt;}
.y1bf{bottom:304.826667pt;}
.y4d{bottom:305.466667pt;}
.ye7{bottom:305.626667pt;}
.y1ac{bottom:307.866667pt;}
.y89{bottom:311.106667pt;}
.y163{bottom:315.546667pt;}
.y4c{bottom:315.866667pt;}
.y1be{bottom:316.186667pt;}
.yba{bottom:316.226667pt;}
.y1f1{bottom:316.666667pt;}
.y1c5{bottom:317.306667pt;}
.y124{bottom:318.586667pt;}
.y1a1{bottom:320.186667pt;}
.ye6{bottom:321.626667pt;}
.y9{bottom:321.920000pt;}
.y1eb{bottom:323.226667pt;}
.ya1{bottom:324.066667pt;}
.y4b{bottom:326.266667pt;}
.y162{bottom:330.906667pt;}
.y1d3{bottom:331.546667pt;}
.y88{bottom:332.386667pt;}
.y123{bottom:333.946667pt;}
.y161{bottom:335.546667pt;}
.y4a{bottom:336.666667pt;}
.yb9{bottom:337.506667pt;}
.y1f0{bottom:337.786667pt;}
.y1bd{bottom:338.426667pt;}
.y122{bottom:338.586667pt;}
.y8{bottom:342.746667pt;}
.ya0{bottom:345.186667pt;}
.y160{bottom:346.106667pt;}
.y49{bottom:346.426667pt;}
.y1ce{bottom:346.746667pt;}
.y121{bottom:349.306667pt;}
.y185{bottom:350.746667pt;}
.y87{bottom:353.506667pt;}
.y1ef{bottom:353.946667pt;}
.y48{bottom:356.986667pt;}
.yb8{bottom:358.626667pt;}
.y1c3{bottom:359.066667pt;}
.y1bc{bottom:359.546667pt;}
.y15f{bottom:361.466667pt;}
.y1a0{bottom:362.106667pt;}
.y7{bottom:363.866667pt;}
.y120{bottom:364.506667pt;}
.y1d2{bottom:366.106667pt;}
.y9f{bottom:366.306667pt;}
.y47{bottom:367.386667pt;}
.y1df{bottom:369.146667pt;}
.y86{bottom:374.626667pt;}
.y15e{bottom:376.826667pt;}
.y1d1{bottom:377.466667pt;}
.y46{bottom:378.146667pt;}
.yb7{bottom:379.746667pt;}
.y11f{bottom:379.866667pt;}
.y1c2{bottom:380.186667pt;}
.y1bb{bottom:380.666667pt;}
.y1fd{bottom:381.466667pt;}
.y6{bottom:386.266667pt;}
.y1c9{bottom:386.746667pt;}
.y9e{bottom:387.586667pt;}
.y45{bottom:388.706667pt;}
.y15d{bottom:392.186667pt;}
.y11e{bottom:395.226667pt;}
.y85{bottom:395.746667pt;}
.y44{bottom:399.266667pt;}
.y11d{bottom:399.866667pt;}
.yb6{bottom:400.866667pt;}
.y19f{bottom:401.306667pt;}
.y1ba{bottom:401.946667pt;}
.ye5{bottom:403.706667pt;}
.y15c{bottom:407.546667pt;}
.y9d{bottom:408.706667pt;}
.y5{bottom:408.986667pt;}
.y43{bottom:409.826667pt;}
.y11c{bottom:410.586667pt;}
.y1ab{bottom:411.226667pt;}
.y184{bottom:412.186667pt;}
.y84{bottom:414.306667pt;}
.y191{bottom:415.226667pt;}
.y42{bottom:419.586667pt;}
.yb5{bottom:422.146667pt;}
.y19e{bottom:422.426667pt;}
.y15b{bottom:422.906667pt;}
.y1b9{bottom:423.066667pt;}
.y183{bottom:423.586667pt;}
.ye4{bottom:425.026667pt;}
.y11b{bottom:425.986667pt;}
.y198{bottom:427.586667pt;}
.y9c{bottom:429.826667pt;}
.y41{bottom:429.986667pt;}
.y83{bottom:432.706667pt;}
.y15a{bottom:438.146667pt;}
.y1fc{bottom:438.786667pt;}
.y40{bottom:440.546667pt;}
.y4{bottom:440.666667pt;}
.y11a{bottom:441.346667pt;}
.yb4{bottom:443.266667pt;}
.y19d{bottom:443.746667pt;}
.y1b8{bottom:444.226667pt;}
.ye2{bottom:446.146667pt;}
.y1aa{bottom:449.826667pt;}
.y9b{bottom:450.946667pt;}
.y82{bottom:451.106667pt;}
.y3f{bottom:451.426667pt;}
.ye3{bottom:452.226667pt;}
.y159{bottom:453.506667pt;}
.y119{bottom:456.546667pt;}
.y1af{bottom:457.186667pt;}
.y1b3{bottom:458.146667pt;}
.y3e{bottom:462.146667pt;}
.yb3{bottom:464.386667pt;}
.y19c{bottom:464.866667pt;}
.y1b7{bottom:465.346667pt;}
.ye1{bottom:467.266667pt;}
.y158{bottom:468.866667pt;}
.y3{bottom:469.626667pt;}
.y1fe{bottom:470.946667pt;}
.y118{bottom:471.906667pt;}
.y81{bottom:472.226667pt;}
.y3d{bottom:472.546667pt;}
.y1d6{bottom:473.506667pt;}
.y3c{bottom:482.946667pt;}
.y157{bottom:484.226667pt;}
.y197{bottom:484.866667pt;}
.yb2{bottom:485.506667pt;}
.yb0{bottom:485.986667pt;}
.y1ae{bottom:486.626667pt;}
.y117{bottom:487.266667pt;}
.ye0{bottom:488.386667pt;}
.y1cf{bottom:488.866667pt;}
.y18e{bottom:491.906667pt;}
.y3b{bottom:492.706667pt;}
.y80{bottom:493.373333pt;}
.y2{bottom:496.826667pt;}
.y156{bottom:499.586667pt;}
.y1b2{bottom:500.226667pt;}
.y116{bottom:502.626667pt;}
.y3a{bottom:503.266667pt;}
.yb1{bottom:506.786667pt;}
.y18f{bottom:507.106667pt;}
.y1c8{bottom:507.266667pt;}
.y195{bottom:507.746667pt;}
.yde{bottom:509.666667pt;}
.y190{bottom:513.186667pt;}
.y39{bottom:513.666667pt;}
.y196{bottom:513.826667pt;}
.y7f{bottom:514.493333pt;}
.y155{bottom:514.946667pt;}
.ydf{bottom:515.746667pt;}
.y115{bottom:517.986667pt;}
.y38{bottom:524.706667pt;}
.y182{bottom:528.226667pt;}
.y194{bottom:528.866667pt;}
.y154{bottom:530.146667pt;}
.ydd{bottom:530.786667pt;}
.y114{bottom:533.346667pt;}
.y1cd{bottom:534.306667pt;}
.y1dd{bottom:534.786667pt;}
.y37{bottom:535.266667pt;}
.y7e{bottom:535.613333pt;}
.y18d{bottom:537.986667pt;}
.y1dc{bottom:545.506667pt;}
.y36{bottom:545.666667pt;}
.y153{bottom:546.146667pt;}
.y113{bottom:548.546667pt;}
.y1de{bottom:549.186667pt;}
.y181{bottom:549.506667pt;}
.y193{bottom:549.986667pt;}
.ydc{bottom:551.906667pt;}
.y148{bottom:553.186667pt;}
.y1d5{bottom:555.586667pt;}
.y35{bottom:556.066667pt;}
.y7d{bottom:556.893333pt;}
.y1db{bottom:560.866667pt;}
.y112{bottom:563.906667pt;}
.y34{bottom:566.466667pt;}
.y1a7{bottom:568.546667pt;}
.y180{bottom:570.626667pt;}
.y152{bottom:571.106667pt;}
.ydb{bottom:573.026667pt;}
.y1da{bottom:576.226667pt;}
.y33{bottom:576.866667pt;}
.y1b6{bottom:577.186667pt;}
.y7c{bottom:578.013333pt;}
.y111{bottom:579.266667pt;}
.y1c7{bottom:579.906667pt;}
.y32{bottom:587.266667pt;}
.y1e9{bottom:591.586667pt;}
.y17f{bottom:591.746667pt;}
.y1d9{bottom:592.226667pt;}
.y150{bottom:592.386667pt;}
.yda{bottom:594.306667pt;}
.y110{bottom:594.626667pt;}
.y1e8{bottom:596.226667pt;}
.y31{bottom:597.693333pt;}
.y1e0{bottom:597.826667pt;}
.y151{bottom:598.466667pt;}
.y7b{bottom:599.133333pt;}
.y18c{bottom:599.266667pt;}
.y1e7{bottom:606.786667pt;}
.y30{bottom:607.933333pt;}
.y10f{bottom:609.986667pt;}
.y18b{bottom:610.626667pt;}
.y17e{bottom:612.866667pt;}
.y14f{bottom:613.506667pt;}
.y10e{bottom:614.626667pt;}
.yd9{bottom:615.426667pt;}
.y2f{bottom:618.013333pt;}
.y1b1{bottom:618.946667pt;}
.y1d7{bottom:619.586667pt;}
.y7a{bottom:620.253333pt;}
.y1e6{bottom:622.146667pt;}
.y10d{bottom:625.213333pt;}
.y1a6{bottom:625.853333pt;}
.y2e{bottom:628.413333pt;}
.y17c{bottom:634.173333pt;}
.y14e{bottom:634.653333pt;}
.yd8{bottom:636.573333pt;}
.y1e5{bottom:637.533333pt;}
.y2d{bottom:638.813333pt;}
.y17d{bottom:640.253333pt;}
.y10c{bottom:640.573333pt;}
.y18a{bottom:640.733333pt;}
.y79{bottom:641.373333pt;}
.y1ec{bottom:645.213333pt;}
.y2c{bottom:649.533333pt;}
.y1e4{bottom:653.533333pt;}
.y17b{bottom:655.293333pt;}
.y14d{bottom:655.773333pt;}
.y10b{bottom:655.933333pt;}
.yd7{bottom:657.693333pt;}
.y2b{bottom:659.933333pt;}
.y10a{bottom:660.573333pt;}
.y1d0{bottom:661.373333pt;}
.y1a5{bottom:661.853333pt;}
.y78{bottom:662.653333pt;}
.y2a{bottom:670.333333pt;}
.y147{bottom:671.293333pt;}
.y109{bottom:671.933333pt;}
.y17a{bottom:676.413333pt;}
.y14c{bottom:677.053333pt;}
.yd6{bottom:678.973333pt;}
.y189{bottom:683.133333pt;}
.y77{bottom:683.773333pt;}
.y146{bottom:686.653333pt;}
.y29{bottom:691.453333pt;}
.y179{bottom:697.533333pt;}
.y107{bottom:698.173333pt;}
.yd5{bottom:700.093333pt;}
.y145{bottom:702.013333pt;}
.y1ee{bottom:703.613333pt;}
.y108{bottom:704.253333pt;}
.y76{bottom:704.573333pt;}
.y9a{bottom:704.893333pt;}
.y28{bottom:713.213333pt;}
.y144{bottom:717.213333pt;}
.y178{bottom:718.813333pt;}
.y106{bottom:719.293333pt;}
.yd4{bottom:721.213333pt;}
.y1ea{bottom:724.893333pt;}
.y1ad{bottom:725.373333pt;}
.y75{bottom:725.733333pt;}
.y99{bottom:726.053333pt;}
.y27{bottom:729.053333pt;}
.y143{bottom:732.573333pt;}
.y177{bottom:739.933333pt;}
.y105{bottom:740.413333pt;}
.y26{bottom:741.853333pt;}
.yd3{bottom:742.333333pt;}
.y19b{bottom:746.013333pt;}
.y1b5{bottom:746.493333pt;}
.y142{bottom:748.573333pt;}
.y25{bottom:754.333333pt;}
.y176{bottom:761.053333pt;}
.y104{bottom:761.693333pt;}
.yd2{bottom:763.613333pt;}
.y24{bottom:765.053333pt;}
.y1e3{bottom:767.773333pt;}
.y23{bottom:775.453333pt;}
.y140{bottom:782.173333pt;}
.y103{bottom:782.813333pt;}
.yd1{bottom:784.733333pt;}
.y22{bottom:785.213333pt;}
.y141{bottom:788.253333pt;}
.y1a4{bottom:788.893333pt;}
.y21{bottom:795.773333pt;}
.y13e{bottom:803.453333pt;}
.y101{bottom:803.933333pt;}
.yd0{bottom:805.853333pt;}
.y20{bottom:806.213333pt;}
.y13f{bottom:809.533333pt;}
.y102{bottom:810.013333pt;}
.y6a{bottom:816.773333pt;}
.y1f{bottom:817.093333pt;}
.y13d{bottom:824.573333pt;}
.y100{bottom:825.053333pt;}
.ycf{bottom:827.013333pt;}
.y1e{bottom:827.973333pt;}
.y1a9{bottom:830.693333pt;}
.y14b{bottom:831.173333pt;}
.y13c{bottom:845.733333pt;}
.yff{bottom:846.373333pt;}
.y1d{bottom:848.133333pt;}
.yce{bottom:848.293333pt;}
.y1cc{bottom:851.813333pt;}
.y1f8{bottom:852.453333pt;}
.y13b{bottom:866.853333pt;}
.yfe{bottom:867.493333pt;}
.y1c{bottom:869.093333pt;}
.ycd{bottom:870.693333pt;}
.y1b0{bottom:872.933333pt;}
.y1a3{bottom:873.573333pt;}
.y1b{bottom:879.493333pt;}
.y13a{bottom:888.133333pt;}
.yfc{bottom:888.613333pt;}
.y1a{bottom:890.373333pt;}
.ycc{bottom:891.973333pt;}
.y1c1{bottom:894.213333pt;}
.yfd{bottom:894.693333pt;}
.y19{bottom:901.093333pt;}
.y139{bottom:909.253333pt;}
.yfb{bottom:909.733333pt;}
.y18{bottom:911.493333pt;}
.ycb{bottom:913.093333pt;}
.y175{bottom:915.333333pt;}
.y14a{bottom:915.813333pt;}
.y17{bottom:921.893333pt;}
.y69{bottom:928.933333pt;}
.y138{bottom:930.373333pt;}
.yfa{bottom:931.013333pt;}
.y16{bottom:932.293333pt;}
.yca{bottom:934.213333pt;}
.y1fb{bottom:936.453333pt;}
.y188{bottom:937.093333pt;}
.y15{bottom:942.693333pt;}
.y68{bottom:950.053333pt;}
.y137{bottom:951.493333pt;}
.yf9{bottom:952.133333pt;}
.y14{bottom:953.253333pt;}
.yc9{bottom:955.333333pt;}
.y174{bottom:957.573333pt;}
.y13{bottom:963.653333pt;}
.y67{bottom:971.173333pt;}
.y136{bottom:972.773333pt;}
.yf8{bottom:973.253333pt;}
.y12{bottom:974.053333pt;}
.yc8{bottom:976.613333pt;}
.y19a{bottom:978.853333pt;}
.y187{bottom:979.333333pt;}
.yc1{bottom:991.493333pt;}
.y66{bottom:992.453333pt;}
.y135{bottom:993.893333pt;}
.y11{bottom:994.373333pt;}
.y1fa{bottom:999.973333pt;}
.yf7{bottom:1000.453333pt;}
.y10{bottom:1004.773333pt;}
.y65{bottom:1007.333333pt;}
.y134{bottom:1012.293333pt;}
.yf{bottom:1015.333333pt;}
.ye{bottom:1026.240000pt;}
.y1{bottom:1028.613333pt;}
.y133{bottom:1030.080000pt;}
.yd{bottom:1036.000000pt;}
.y132{bottom:1045.440000pt;}
.yc{bottom:1046.560000pt;}
.yf3{bottom:1063.040000pt;}
.yb{bottom:1067.520000pt;}
.ya{bottom:1078.080000pt;}
.h23{height:15.360000pt;}
.h10{height:26.187500pt;}
.hc{height:28.282500pt;}
.hd{height:32.015625pt;}
.h20{height:33.574375pt;}
.h21{height:33.918750pt;}
.hb{height:34.576875pt;}
.he{height:35.091250pt;}
.h2{height:35.975313pt;}
.h3{height:36.883125pt;}
.h18{height:42.032838pt;}
.h26{height:42.063437pt;}
.h1f{height:42.084375pt;}
.hf{height:43.471250pt;}
.h17{height:46.281250pt;}
.h1b{height:49.622500pt;}
.h22{height:52.108438pt;}
.h1e{height:52.134375pt;}
.h24{height:52.478750pt;}
.h8{height:52.515000pt;}
.h1d{height:53.535000pt;}
.h6{height:55.355117pt;}
.h7{height:56.891250pt;}
.h25{height:57.375000pt;}
.h11{height:58.563750pt;}
.h15{height:62.781250pt;}
.h14{height:62.812500pt;}
.h12{height:64.500000pt;}
.h1a{height:66.625000pt;}
.h4{height:72.937500pt;}
.h5{height:81.203750pt;}
.h13{height:105.906667pt;}
.h19{height:521.333333pt;}
.h16{height:740.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h1c{height:1122.720000pt;}
.ha{height:1123.333333pt;}
.h9{height:1123.360000pt;}
.wb{width:17.280000pt;}
.wa{width:17.440000pt;}
.wc{width:24.000000pt;}
.w5{width:61.626667pt;}
.w4{width:623.760000pt;}
.w9{width:793.279976pt;}
.w8{width:793.279988pt;}
.w6{width:793.280000pt;}
.w7{width:793.333333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w3{width:794.666667pt;}
.w2{width:794.720000pt;}
.x0{left:0.000000pt;}
.x53{left:2.080000pt;}
.x40{left:7.192000pt;}
.x42{left:54.426667pt;}
.x1{left:80.672000pt;}
.x3d{left:83.232000pt;}
.x52{left:99.872000pt;}
.x8{left:112.032000pt;}
.x45{left:113.471988pt;}
.x4f{left:117.791988pt;}
.x50{left:119.551988pt;}
.xf{left:120.672000pt;}
.x6d{left:122.111988pt;}
.x68{left:123.551988pt;}
.x49{left:124.671988pt;}
.x43{left:126.226667pt;}
.xcb{left:128.031988pt;}
.x9b{left:132.351988pt;}
.x27{left:134.426667pt;}
.x1e{left:136.506667pt;}
.x5c{left:137.466655pt;}
.x47{left:139.866655pt;}
.x13{left:141.146667pt;}
.xc4{left:145.466643pt;}
.x7f{left:148.186643pt;}
.x7b{left:155.226643pt;}
.xc5{left:156.346655pt;}
.x80{left:159.066655pt;}
.xd5{left:160.666655pt;}
.x97{left:162.266643pt;}
.xbd{left:163.226643pt;}
.xa2{left:164.986643pt;}
.x7c{left:166.106655pt;}
.x48{left:167.706655pt;}
.x14{left:168.826667pt;}
.x7d{left:170.266643pt;}
.x98{left:173.146655pt;}
.xbe{left:174.106655pt;}
.x90{left:176.666643pt;}
.x18{left:179.866667pt;}
.x7e{left:181.946655pt;}
.x33{left:185.466667pt;}
.x2f{left:186.906667pt;}
.x23{left:189.786667pt;}
.x31{left:195.546667pt;}
.xb8{left:197.466655pt;}
.x1d{left:198.586667pt;}
.x19{left:200.186667pt;}
.x34{left:201.466667pt;}
.x36{left:203.066667pt;}
.x22{left:204.026667pt;}
.x11{left:205.466667pt;}
.xb{left:206.746667pt;}
.x12{left:208.826667pt;}
.x1a{left:210.426667pt;}
.x1f{left:212.346667pt;}
.x1b{left:213.826667pt;}
.x28{left:217.186667pt;}
.x2b{left:218.306667pt;}
.x21{left:220.226667pt;}
.x38{left:221.186667pt;}
.x17{left:222.466667pt;}
.x9{left:226.146667pt;}
.x20{left:228.066667pt;}
.x39{left:232.706667pt;}
.xd{left:234.306667pt;}
.x2e{left:235.426667pt;}
.x2d{left:236.386667pt;}
.x5b{left:237.826655pt;}
.x35{left:238.786667pt;}
.x94{left:240.066643pt;}
.x24{left:241.346667pt;}
.x32{left:243.106667pt;}
.x3{left:244.706667pt;}
.x30{left:246.626667pt;}
.x2c{left:248.066667pt;}
.x25{left:250.626667pt;}
.x26{left:252.706667pt;}
.xad{left:253.666655pt;}
.xa{left:256.546667pt;}
.x1c{left:258.306667pt;}
.x69{left:261.506655pt;}
.x6c{left:263.426655pt;}
.x10{left:268.066667pt;}
.xcd{left:269.186655pt;}
.x2a{left:270.786667pt;}
.x4{left:272.066667pt;}
.xbc{left:273.026643pt;}
.xae{left:276.546643pt;}
.x64{left:278.946655pt;}
.x3b{left:283.586667pt;}
.xaf{left:285.346643pt;}
.x29{left:286.786667pt;}
.x15{left:287.906667pt;}
.x79{left:289.346643pt;}
.xe{left:291.266667pt;}
.x5{left:293.693333pt;}
.x70{left:295.106655pt;}
.x16{left:296.866667pt;}
.xb1{left:299.266643pt;}
.xc3{left:300.386655pt;}
.x7a{left:301.986655pt;}
.xb4{left:302.946655pt;}
.xbf{left:303.906655pt;}
.x4e{left:305.506655pt;}
.x89{left:306.786643pt;}
.x37{left:308.866667pt;}
.xb2{left:310.146655pt;}
.x6a{left:316.546643pt;}
.x8a{left:317.666655pt;}
.x65{left:319.906655pt;}
.x71{left:321.186643pt;}
.x6b{left:327.426655pt;}
.x72{left:332.066655pt;}
.xce{left:334.146655pt;}
.x46{left:335.586655pt;}
.x3e{left:337.506667pt;}
.xc{left:339.106667pt;}
.xba{left:343.906643pt;}
.x4a{left:345.026655pt;}
.x5e{left:346.306643pt;}
.x3a{left:349.186667pt;}
.x4b{left:350.786655pt;}
.x5f{left:351.746655pt;}
.xbb{left:354.786655pt;}
.x51{left:355.746655pt;}
.x6{left:357.053333pt;}
.x78{left:360.066643pt;}
.xa1{left:361.666655pt;}
.x3f{left:364.546667pt;}
.x62{left:365.506643pt;}
.x7{left:367.133333pt;}
.x85{left:368.066643pt;}
.x56{left:369.506655pt;}
.x63{left:370.946655pt;}
.xc2{left:375.426655pt;}
.x86{left:378.946655pt;}
.x8f{left:381.026655pt;}
.x83{left:382.146655pt;}
.x84{left:383.746643pt;}
.xd3{left:388.573310pt;}
.x59{left:393.853310pt;}
.x2{left:396.253333pt;}
.x5a{left:399.293322pt;}
.xd4{left:404.893322pt;}
.x87{left:413.053310pt;}
.x88{left:423.933322pt;}
.xa3{left:425.533310pt;}
.x99{left:426.973310pt;}
.xa4{left:436.413322pt;}
.x9a{left:437.853322pt;}
.x9c{left:445.693310pt;}
.x3c{left:447.933333pt;}
.x4c{left:450.333310pt;}
.x4d{left:455.773322pt;}
.x44{left:457.053322pt;}
.x9e{left:460.893322pt;}
.xa7{left:466.653310pt;}
.xb9{left:468.413322pt;}
.xca{left:473.853310pt;}
.xa8{left:477.533322pt;}
.xc9{left:481.693310pt;}
.xcf{left:484.253322pt;}
.x57{left:485.533310pt;}
.x66{left:489.213310pt;}
.x58{left:490.973322pt;}
.x77{left:496.093322pt;}
.x67{left:500.093322pt;}
.x91{left:501.853310pt;}
.xb7{left:508.253322pt;}
.x92{left:512.733322pt;}
.xb5{left:522.173310pt;}
.x6e{left:525.533310pt;}
.xb6{left:533.053322pt;}
.x6f{left:536.413322pt;}
.x75{left:541.893310pt;}
.xc7{left:543.813310pt;}
.x9f{left:549.413310pt;}
.x76{left:555.013322pt;}
.xc8{left:560.133322pt;}
.xa0{left:562.213322pt;}
.x73{left:569.413310pt;}
.xa9{left:573.093310pt;}
.x74{left:580.293322pt;}
.xaa{left:583.973322pt;}
.x9d{left:585.893310pt;}
.xb0{left:591.013322pt;}
.xb3{left:594.693322pt;}
.x8b{left:596.933310pt;}
.x8d{left:598.053310pt;}
.xc6{left:603.013322pt;}
.x8c{left:607.813322pt;}
.x8e{left:608.933322pt;}
.xab{left:611.813310pt;}
.x95{left:616.293310pt;}
.x81{left:617.893310pt;}
.xac{left:622.693322pt;}
.x60{left:624.613310pt;}
.x96{left:627.173322pt;}
.x82{left:628.773322pt;}
.x61{left:630.053322pt;}
.x54{left:631.653310pt;}
.xc0{left:634.693310pt;}
.x55{left:637.093322pt;}
.xa5{left:643.333310pt;}
.xc1{left:645.573322pt;}
.xd1{left:651.653310pt;}
.xa6{left:654.213322pt;}
.xcc{left:658.053333pt;}
.xd0{left:659.973310pt;}
.x5d{left:664.773333pt;}
.xd2{left:667.973322pt;}
.x93{left:676.293322pt;}
.x41{left:707.013333pt;}
}




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