
    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_516cdf3f53931bd812ceaa8f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;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_8241fe780c6f8a5eaf11fe0c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.728000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_560166e735ea980d593c96e6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.727539;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_8d2f4b83513811d9db46ed42.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.675781;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_80dac979e0eec9e9ac9015f1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.675781;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_106cdca9aec0f0eb3727f2cb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d0248ecd9a07216ddaf452ce.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9a8dc63c2e4f55b090450c8a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_b58b2bbd38b16b41fb06cdc8.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ab08855ac91ff4ebf876ff4d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_171c0a9c2b9ad6803ca5167e.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_2b0a1f0851fa7e6b66917a4f.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_f434fd8a74891cbe95eb47e4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.727539;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_913beae337e0478145b856a3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.675781;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_d3aec2c3619538dff276003a.woff2')format("woff");}.fff{font-family:fff;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_33b5ddf9cf0157b3f4091314.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_2a385e6311c13b39d2947021.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.893555;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_510aeb21ea23b799b97eff17.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;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_e809cec9b5dadef4baad6e8a.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;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_ea2d4b8d0adc976c13723db7.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_17c8a67c31095ff0dc88e93c.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_510aeb21ea23b799b97eff17.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.666504;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_910cac32fc1ef9050635bc9a.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_510aeb21ea23b799b97eff17.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.666504;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_b753f2468defecfbe7a9130b.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.666504;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_510aeb21ea23b799b97eff17.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.666504;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_9fafcbf8f040f6e954fde6dd.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.666504;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_510aeb21ea23b799b97eff17.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.666504;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_510aeb21ea23b799b97eff17.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.666504;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_802285a8488bb495662e0482.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-17.999400px;}
.v3{vertical-align:-1.701000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.000000px;}
.ls30{letter-spacing:-1.398960px;}
.ls6d{letter-spacing:-1.374480px;}
.ls2b{letter-spacing:-1.344000px;}
.ls5e{letter-spacing:-1.254960px;}
.ls5b{letter-spacing:-1.135440px;}
.ls6a{letter-spacing:-0.916560px;}
.ls3b{letter-spacing:-0.657360px;}
.ls6b{letter-spacing:-0.578880px;}
.ls40{letter-spacing:-0.537840px;}
.ls31{letter-spacing:-0.530640px;}
.ls3a{letter-spacing:-0.478080px;}
.ls34{letter-spacing:-0.434160px;}
.ls5c{letter-spacing:-0.418320px;}
.ls37{letter-spacing:-0.378000px;}
.ls3c{letter-spacing:-0.358560px;}
.ls26{letter-spacing:-0.357840px;}
.ls2d{letter-spacing:-0.337680px;}
.ls32{letter-spacing:-0.289440px;}
.ls2e{letter-spacing:-0.241200px;}
.ls3d{letter-spacing:-0.239040px;}
.ls36{letter-spacing:-0.216000px;}
.ls3f{letter-spacing:-0.179280px;}
.ls27{letter-spacing:-0.120240px;}
.ls24{letter-spacing:-0.108000px;}
.ls25{letter-spacing:-0.078120px;}
.ls28{letter-spacing:-0.060120px;}
.ls29{letter-spacing:-0.054000px;}
.ls23{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000600px;}
.ls11{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.019152px;}
.ls3{letter-spacing:0.047880px;}
.lsb{letter-spacing:0.054000px;}
.ls9{letter-spacing:0.060120px;}
.ls6e{letter-spacing:0.090720px;}
.ls2{letter-spacing:0.095760px;}
.ls5{letter-spacing:0.101880px;}
.ls6{letter-spacing:0.102240px;}
.ls13{letter-spacing:0.108000px;}
.ls1e{letter-spacing:0.119520px;}
.lsa{letter-spacing:0.120240px;}
.ls0{letter-spacing:0.143640px;}
.ls2f{letter-spacing:0.144720px;}
.ls57{letter-spacing:0.156000px;}
.ls16{letter-spacing:0.162000px;}
.ls47{letter-spacing:0.179280px;}
.ls22{letter-spacing:0.179400px;}
.ls8{letter-spacing:0.180000px;}
.ls2a{letter-spacing:0.180360px;}
.ls52{letter-spacing:0.180600px;}
.ls4{letter-spacing:0.191520px;}
.ls15{letter-spacing:0.192960px;}
.ls41{letter-spacing:0.239040px;}
.ls6c{letter-spacing:0.241200px;}
.ls1c{letter-spacing:0.259320px;}
.ls1b{letter-spacing:0.259920px;}
.ls51{letter-spacing:0.260520px;}
.ls2c{letter-spacing:0.289440px;}
.ls1d{letter-spacing:0.298800px;}
.ls35{letter-spacing:0.324000px;}
.ls71{letter-spacing:0.337680px;}
.lse{letter-spacing:0.342720px;}
.ls39{letter-spacing:0.358560px;}
.ls42{letter-spacing:0.359400px;}
.lsd{letter-spacing:0.360000px;}
.ls72{letter-spacing:0.361800px;}
.ls38{letter-spacing:0.378000px;}
.ls33{letter-spacing:0.385920px;}
.ls73{letter-spacing:0.482400px;}
.lsf{letter-spacing:0.522720px;}
.ls4f{letter-spacing:0.593040px;}
.ls3e{letter-spacing:0.597600px;}
.ls5a{letter-spacing:0.836640px;}
.ls46{letter-spacing:0.896400px;}
.ls21{letter-spacing:0.900000px;}
.ls5d{letter-spacing:0.956160px;}
.lsc{letter-spacing:1.080000px;}
.ls67{letter-spacing:1.613520px;}
.ls12{letter-spacing:1.620000px;}
.ls58{letter-spacing:1.620600px;}
.ls45{letter-spacing:2.330640px;}
.ls20{letter-spacing:2.340000px;}
.ls4b{letter-spacing:3.047760px;}
.ls61{letter-spacing:3.060000px;}
.ls4c{letter-spacing:3.764880px;}
.ls53{letter-spacing:3.780000px;}
.ls62{letter-spacing:3.780600px;}
.ls17{letter-spacing:4.482000px;}
.ls10{letter-spacing:4.500000px;}
.ls44{letter-spacing:5.916240px;}
.ls1f{letter-spacing:5.940000px;}
.ls68{letter-spacing:6.633360px;}
.ls6f{letter-spacing:6.660000px;}
.ls49{letter-spacing:7.350480px;}
.ls5f{letter-spacing:7.380000px;}
.ls54{letter-spacing:8.100600px;}
.ls65{letter-spacing:8.127360px;}
.ls64{letter-spacing:8.819400px;}
.ls55{letter-spacing:8.820000px;}
.ls59{letter-spacing:8.820600px;}
.ls4d{letter-spacing:8.844480px;}
.ls63{letter-spacing:8.939400px;}
.ls4e{letter-spacing:8.964000px;}
.ls50{letter-spacing:9.539400px;}
.ls1a{letter-spacing:9.540000px;}
.ls43{letter-spacing:9.561600px;}
.ls56{letter-spacing:10.979400px;}
.ls66{letter-spacing:10.995840px;}
.ls60{letter-spacing:27.540600px;}
.ls4a{letter-spacing:27.549360px;}
.ls69{letter-spacing:64.002960px;}
.ls70{letter-spacing:64.026720px;}
.ls19{letter-spacing:798.960000px;}
.ls48{letter-spacing:829.200000px;}
.ls18{letter-spacing:849.360000px;}
.ls14{letter-spacing:849.368880px;}
.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;}
}
.wsd{word-spacing:-99.360000px;}
.ws2{word-spacing:-99.000000px;}
.wsb2{word-spacing:-59.760000px;}
.ws9{word-spacing:-15.984000px;}
.ws8c{word-spacing:-15.896160px;}
.ws88{word-spacing:-15.776640px;}
.ws22{word-spacing:-15.537600px;}
.ws1f{word-spacing:-15.298560px;}
.ws89{word-spacing:-15.238800px;}
.wsc{word-spacing:-15.174000px;}
.ws8b{word-spacing:-15.119280px;}
.ws8d{word-spacing:-15.059520px;}
.ws1{word-spacing:-15.012000px;}
.ws20{word-spacing:-14.940000px;}
.ws23{word-spacing:-14.760720px;}
.ws21{word-spacing:-14.700960px;}
.wsb6{word-spacing:-14.581440px;}
.ws8a{word-spacing:-14.521680px;}
.wsb1{word-spacing:-14.461920px;}
.wsb3{word-spacing:-14.282640px;}
.ws1e{word-spacing:-13.878000px;}
.ws19{word-spacing:-13.824000px;}
.ws8e{word-spacing:-13.804560px;}
.ws1a{word-spacing:-13.608000px;}
.wsb7{word-spacing:-13.565520px;}
.wsb{word-spacing:-13.500000px;}
.ws1d{word-spacing:-13.392000px;}
.ws1b{word-spacing:-13.284000px;}
.ws1c{word-spacing:-13.122000px;}
.ws5{word-spacing:-12.882240px;}
.ws4{word-spacing:-12.780000px;}
.wsc6{word-spacing:-12.542400px;}
.ws14{word-spacing:-12.445920px;}
.ws15{word-spacing:-12.349440px;}
.wsc7{word-spacing:-12.301200px;}
.ws10{word-spacing:-12.204720px;}
.ws6{word-spacing:-12.065760px;}
.ws11{word-spacing:-12.060000px;}
.ws8{word-spacing:-12.000000px;}
.ws13{word-spacing:-11.770560px;}
.wse{word-spacing:-11.722320px;}
.ws18{word-spacing:-11.625840px;}
.ws16{word-spacing:-11.529360px;}
.wsb5{word-spacing:-11.481120px;}
.wsb4{word-spacing:-11.143440px;}
.ws12{word-spacing:-10.661040px;}
.ws17{word-spacing:-7.560000px;}
.ws77{word-spacing:-3.406320px;}
.wsb0{word-spacing:-3.286800px;}
.ws9a{word-spacing:-2.988000px;}
.ws44{word-spacing:-2.885760px;}
.wsaf{word-spacing:-2.808720px;}
.wsae{word-spacing:-2.748960px;}
.ws9b{word-spacing:-2.689200px;}
.ws3b{word-spacing:-2.525040px;}
.ws3a{word-spacing:-2.464920px;}
.ws6f{word-spacing:-2.270880px;}
.ws6b{word-spacing:-1.972080px;}
.wsc5{word-spacing:-1.852560px;}
.ws43{word-spacing:-1.743480px;}
.ws42{word-spacing:-1.623240px;}
.ws80{word-spacing:-1.553760px;}
.wsba{word-spacing:-1.494000px;}
.wsa7{word-spacing:-1.434240px;}
.wsc4{word-spacing:-1.374480px;}
.ws6e{word-spacing:-1.254960px;}
.ws78{word-spacing:-1.195200px;}
.wsa5{word-spacing:-1.135440px;}
.ws48{word-spacing:-1.080000px;}
.ws96{word-spacing:-0.896400px;}
.ws60{word-spacing:-0.868320px;}
.ws33{word-spacing:-0.841680px;}
.ws9f{word-spacing:-0.836640px;}
.ws4a{word-spacing:-0.820080px;}
.wsbe{word-spacing:-0.776880px;}
.wsd2{word-spacing:-0.675360px;}
.ws9e{word-spacing:-0.597600px;}
.ws59{word-spacing:-0.540000px;}
.ws6d{word-spacing:-0.537840px;}
.ws5f{word-spacing:-0.530640px;}
.wsbb{word-spacing:-0.478080px;}
.wsa9{word-spacing:-0.418320px;}
.ws53{word-spacing:-0.408960px;}
.wsd1{word-spacing:-0.385920px;}
.ws3e{word-spacing:-0.360720px;}
.wsc8{word-spacing:-0.358560px;}
.ws50{word-spacing:-0.298800px;}
.ws61{word-spacing:-0.289440px;}
.ws26{word-spacing:-0.239400px;}
.ws83{word-spacing:-0.239040px;}
.ws2b{word-spacing:-0.203760px;}
.ws63{word-spacing:-0.192960px;}
.ws28{word-spacing:-0.191520px;}
.ws73{word-spacing:-0.179280px;}
.ws49{word-spacing:-0.162000px;}
.ws4d{word-spacing:-0.144720px;}
.ws27{word-spacing:-0.143640px;}
.wsac{word-spacing:-0.119520px;}
.ws2a{word-spacing:-0.101880px;}
.ws0{word-spacing:-0.099000px;}
.wsc2{word-spacing:-0.096480px;}
.ws2c{word-spacing:-0.078120px;}
.ws29{word-spacing:-0.072000px;}
.ws41{word-spacing:-0.060120px;}
.ws6c{word-spacing:-0.059760px;}
.wsf{word-spacing:-0.048240px;}
.ws24{word-spacing:0.000000px;}
.ws40{word-spacing:0.054000px;}
.ws3f{word-spacing:0.108000px;}
.ws51{word-spacing:0.119520px;}
.wscf{word-spacing:0.144720px;}
.ws7a{word-spacing:0.179280px;}
.ws62{word-spacing:0.192960px;}
.ws25{word-spacing:0.216000px;}
.ws85{word-spacing:0.239040px;}
.ws4c{word-spacing:0.241200px;}
.wsbc{word-spacing:0.298800px;}
.ws52{word-spacing:0.306720px;}
.ws5e{word-spacing:0.324000px;}
.wsc0{word-spacing:0.337680px;}
.ws2d{word-spacing:0.357840px;}
.wsa6{word-spacing:0.358560px;}
.wsd4{word-spacing:0.385920px;}
.ws4f{word-spacing:0.434160px;}
.ws93{word-spacing:0.478080px;}
.ws4b{word-spacing:0.482400px;}
.wsce{word-spacing:0.530640px;}
.ws7e{word-spacing:0.537840px;}
.wsc1{word-spacing:0.578880px;}
.wsa8{word-spacing:0.597600px;}
.wscd{word-spacing:0.657360px;}
.ws4e{word-spacing:0.675360px;}
.wsa4{word-spacing:0.717120px;}
.ws5d{word-spacing:0.756000px;}
.wsad{word-spacing:0.776880px;}
.ws74{word-spacing:0.836640px;}
.ws3{word-spacing:0.852264px;}
.ws5a{word-spacing:0.864000px;}
.wsa1{word-spacing:0.896400px;}
.ws7b{word-spacing:0.956160px;}
.wsd3{word-spacing:1.061280px;}
.ws9d{word-spacing:1.135440px;}
.wsaa{word-spacing:1.254960px;}
.ws7{word-spacing:1.262520px;}
.ws47{word-spacing:1.344000px;}
.wsd0{word-spacing:1.543680px;}
.ws71{word-spacing:1.553760px;}
.ws70{word-spacing:1.613520px;}
.wsc3{word-spacing:1.972080px;}
.ws99{word-spacing:2.151360px;}
.ws38{word-spacing:2.164320px;}
.ws76{word-spacing:2.211120px;}
.ws79{word-spacing:2.270880px;}
.ws98{word-spacing:2.629440px;}
.ws92{word-spacing:2.988000px;}
.ws7f{word-spacing:3.346560px;}
.ws39{word-spacing:3.547080px;}
.ws7c{word-spacing:3.585600px;}
.ws30{word-spacing:3.607200px;}
.ws65{word-spacing:3.705120px;}
.ws31{word-spacing:3.727440px;}
.ws32{word-spacing:3.787560px;}
.ws97{word-spacing:3.824640px;}
.wsa0{word-spacing:3.884400px;}
.ws58{word-spacing:3.996000px;}
.ws81{word-spacing:4.063680px;}
.ws72{word-spacing:4.123440px;}
.ws57{word-spacing:4.320000px;}
.ws67{word-spacing:4.422240px;}
.ws5b{word-spacing:4.428000px;}
.ws56{word-spacing:4.482000px;}
.ws5c{word-spacing:4.644000px;}
.ws54{word-spacing:4.860000px;}
.ws68{word-spacing:5.079600px;}
.ws64{word-spacing:5.139360px;}
.ws87{word-spacing:5.199120px;}
.ws69{word-spacing:5.258880px;}
.ws37{word-spacing:5.410800px;}
.ws86{word-spacing:5.497920px;}
.ws75{word-spacing:5.856480px;}
.ws82{word-spacing:5.916240px;}
.wscb{word-spacing:5.976000px;}
.ws84{word-spacing:6.215040px;}
.wscc{word-spacing:6.274800px;}
.ws66{word-spacing:6.573600px;}
.wsb8{word-spacing:6.693120px;}
.wsb9{word-spacing:6.812640px;}
.ws8f{word-spacing:7.290720px;}
.ws46{word-spacing:7.635240px;}
.ws45{word-spacing:7.755480px;}
.wsa2{word-spacing:7.888320px;}
.ws3c{word-spacing:7.995960px;}
.ws3d{word-spacing:8.056080px;}
.ws7d{word-spacing:8.067600px;}
.wsbd{word-spacing:8.127360px;}
.wsab{word-spacing:8.485920px;}
.ws94{word-spacing:8.784720px;}
.ws95{word-spacing:8.904240px;}
.wsa3{word-spacing:9.203040px;}
.ws9c{word-spacing:9.382320px;}
.ws6a{word-spacing:9.501840px;}
.ws55{word-spacing:9.504000px;}
.wsbf{word-spacing:9.561600px;}
.wsca{word-spacing:13.744800px;}
.wsc9{word-spacing:13.804560px;}
.ws2f{word-spacing:15.991920px;}
.ws2e{word-spacing:16.052040px;}
.ws34{word-spacing:19.418760px;}
.ws35{word-spacing:19.599120px;}
.ws36{word-spacing:19.659240px;}
.ws91{word-spacing:27.489600px;}
.ws90{word-spacing:27.848160px;}
.wsa{word-spacing:1322.935800px;}
._4{margin-left:-6.292800px;}
._3{margin-left:-4.680000px;}
._0{margin-left:-1.791900px;}
._1{width:1.015200px;}
._6{width:2.028720px;}
._7{width:3.731400px;}
._8{width:4.842300px;}
._5{width:6.280200px;}
._f{width:7.603920px;}
._e{width:9.290400px;}
._d{width:71.472960px;}
._a{width:541.559700px;}
._c{width:733.054200px;}
._b{width:847.760400px;}
._9{width:919.759800px;}
._2{width:1108.585980px;}
.fc6{color:transparent;}
.fc4{color:rgb(0,57,255);}
.fc3{color:rgb(0,158,227);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,150,189);}
.fc5{color:rgb(0,132,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:29.880000px;}
.fsa{font-size:30.240000px;}
.fs2{font-size:47.880000px;}
.fs9{font-size:48.000000px;}
.fsc{font-size:48.240000px;}
.fs6{font-size:51.120000px;}
.fs1{font-size:54.000000px;}
.fsd{font-size:59.760000px;}
.fs8{font-size:60.120000px;}
.fs3{font-size:72.000000px;}
.fsf{font-size:77.760000px;}
.fs5{font-size:78.120000px;}
.fs0{font-size:99.000000px;}
.fsb{font-size:99.360000px;}
.fs4{font-size:101.880000px;}
.fse{font-size:102.240000px;}
.yb{bottom:-823.800270px;}
.ya{bottom:-808.861710px;}
.y9{bottom:-775.836480px;}
.y8{bottom:-760.802160px;}
.y25{bottom:-743.170530px;}
.y24{bottom:-725.164590px;}
.y23{bottom:-707.158650px;}
.y22{bottom:-671.161800px;}
.y21{bottom:-620.041800px;}
.y20{bottom:-588.276300px;}
.y1f{bottom:-571.711800px;}
.y1e{bottom:-555.241800px;}
.y1d{bottom:-538.465260px;}
.y1c{bottom:-520.459320px;}
.y1b{bottom:-502.453380px;}
.y1a{bottom:-484.447440px;}
.y19{bottom:-466.441500px;}
.y18{bottom:-448.435560px;}
.y17{bottom:-430.429620px;}
.y16{bottom:-412.423680px;}
.y15{bottom:-394.417740px;}
.y14{bottom:-376.411800px;}
.y62{bottom:-361.564500px;}
.y61{bottom:-346.624500px;}
.y13{bottom:-342.211800px;}
.y60{bottom:-331.504500px;}
.y7d{bottom:-298.534500px;}
.y7c{bottom:-283.594500px;}
.y12{bottom:-275.791800px;}
.y7b{bottom:-268.294500px;}
.y11{bottom:-260.761800px;}
.y10{bottom:-236.821800px;}
.y7a{bottom:-236.254500px;}
.yf{bottom:-194.889990px;}
.ye{bottom:-164.911800px;}
.y79{bottom:-145.714500px;}
.yd{bottom:-119.281800px;}
.yc{bottom:-101.281800px;}
.y78{bottom:-98.014500px;}
.y77{bottom:-65.929500px;}
.y76{bottom:-49.549500px;}
.y3b{bottom:-48.336750px;}
.yb7{bottom:-48.336600px;}
.y3a{bottom:-33.396750px;}
.yb6{bottom:-33.396600px;}
.y75{bottom:-33.169500px;}
.y2b{bottom:-31.889700px;}
.y39{bottom:-18.276750px;}
.yb5{bottom:-18.276600px;}
.y74{bottom:-16.609500px;}
.y73{bottom:-0.049500px;}
.y0{bottom:0.000000px;}
.y7{bottom:2.668380px;}
.y36{bottom:12.779250px;}
.yb3{bottom:12.779400px;}
.y5d{bottom:12.780000px;}
.yd1{bottom:14.693400px;}
.ye1{bottom:16.330500px;}
.y6{bottom:19.498200px;}
.y31{bottom:24.659250px;}
.yaf{bottom:24.659400px;}
.y58{bottom:24.660000px;}
.y34{bottom:26.999250px;}
.yb2{bottom:26.999400px;}
.y5b{bottom:27.000000px;}
.yd0{bottom:29.633400px;}
.y35{bottom:30.059400px;}
.y5c{bottom:30.060000px;}
.ye0{bottom:32.890500px;}
.ycf{bottom:44.933400px;}
.ydf{bottom:49.450500px;}
.y5{bottom:53.248200px;}
.y33{bottom:60.659250px;}
.yb1{bottom:60.659400px;}
.y5a{bottom:60.660000px;}
.yde{bottom:65.830500px;}
.yce{bottom:76.973400px;}
.y2a{bottom:81.535950px;}
.ydd{bottom:82.390500px;}
.y17f{bottom:91.730700px;}
.y149{bottom:91.865250px;}
.y4{bottom:94.738200px;}
.y29{bottom:95.035950px;}
.y117{bottom:96.389700px;}
.y14f{bottom:96.397800px;}
.ydc{bottom:98.950500px;}
.y1e8{bottom:101.746800px;}
.y1b5{bottom:101.797800px;}
.y32{bottom:101.909250px;}
.yb0{bottom:101.909400px;}
.y59{bottom:101.910000px;}
.y1a0{bottom:106.566120px;}
.y1d5{bottom:106.625250px;}
.y28{bottom:108.535950px;}
.y17e{bottom:109.733400px;}
.y148{bottom:109.865250px;}
.y10f{bottom:109.946100px;}
.yad{bottom:110.077800px;}
.y116{bottom:114.392400px;}
.y14e{bottom:114.397800px;}
.ydb{bottom:115.360500px;}
.y1e7{bottom:119.749500px;}
.y1b4{bottom:119.797800px;}
.y27{bottom:122.035950px;}
.y19f{bottom:124.568820px;}
.y1d4{bottom:124.625250px;}
.y17d{bottom:127.736100px;}
.y147{bottom:127.865250px;}
.y10e{bottom:127.948800px;}
.yac{bottom:128.077800px;}
.y208{bottom:130.957800px;}
.yda{bottom:131.920500px;}
.y115{bottom:132.395100px;}
.y14d{bottom:132.397800px;}
.y1e6{bottom:137.752200px;}
.y1b3{bottom:137.797800px;}
.y19e{bottom:142.571520px;}
.y1d3{bottom:142.625250px;}
.y17c{bottom:145.738800px;}
.y146{bottom:145.865250px;}
.y10d{bottom:145.951500px;}
.yab{bottom:146.077800px;}
.y207{bottom:148.359180px;}
.y114{bottom:150.397800px;}
.y19d{bottom:160.574220px;}
.y1d2{bottom:160.625250px;}
.y206{bottom:163.325640px;}
.y17b{bottom:163.771380px;}
.y145{bottom:163.895250px;}
.y10c{bottom:163.984080px;}
.yaa{bottom:164.107800px;}
.yd9{bottom:165.040500px;}
.ycd{bottom:167.513400px;}
.y113{bottom:168.376440px;}
.y14c{bottom:168.427800px;}
.y1e5{bottom:173.787480px;}
.y1b2{bottom:173.827800px;}
.y205{bottom:178.267980px;}
.y19c{bottom:178.606800px;}
.y1d1{bottom:178.655250px;}
.y17a{bottom:181.774080px;}
.y144{bottom:181.895250px;}
.y112{bottom:182.957880px;}
.y14b{bottom:183.007800px;}
.y204{bottom:193.391220px;}
.y19b{bottom:196.609500px;}
.y1d0{bottom:196.655250px;}
.y179{bottom:199.776780px;}
.y143{bottom:199.895250px;}
.y10b{bottom:199.989480px;}
.ya9{bottom:200.107800px;}
.y203{bottom:208.333560px;}
.y1e4{bottom:209.792880px;}
.y1b1{bottom:209.827800px;}
.y19a{bottom:214.612200px;}
.y1cf{bottom:214.655250px;}
.ycc{bottom:215.213400px;}
.y178{bottom:217.779480px;}
.y142{bottom:217.895250px;}
.y37{bottom:218.268000px;}
.y202{bottom:223.275900px;}
.y1e3{bottom:227.795580px;}
.y1b0{bottom:227.827800px;}
.yd8{bottom:231.460500px;}
.y199{bottom:232.614900px;}
.y1ce{bottom:232.655250px;}
.y56{bottom:232.958910px;}
.y177{bottom:235.782180px;}
.y141{bottom:235.895250px;}
.y10a{bottom:235.994880px;}
.ya8{bottom:236.107800px;}
.y201{bottom:238.399140px;}
.y1e2{bottom:245.798280px;}
.y1af{bottom:245.827800px;}
.yd7{bottom:246.400500px;}
.y50{bottom:247.298250px;}
.ycb{bottom:247.298400px;}
.y55{bottom:247.901250px;}
.y198{bottom:250.617600px;}
.y1cd{bottom:250.655250px;}
.y200{bottom:253.341480px;}
.y176{bottom:253.784880px;}
.y140{bottom:253.895250px;}
.y109{bottom:253.997580px;}
.ya7{bottom:254.107800px;}
.y54{bottom:263.201250px;}
.y4f{bottom:263.678250px;}
.yca{bottom:263.678400px;}
.y1e1{bottom:263.800980px;}
.y1ae{bottom:263.827800px;}
.y1ff{bottom:268.283820px;}
.y197{bottom:268.620300px;}
.y1cc{bottom:268.655250px;}
.yd6{bottom:270.520500px;}
.y175{bottom:271.787580px;}
.y13f{bottom:271.895250px;}
.y108{bottom:272.000280px;}
.ya6{bottom:272.107800px;}
.y4e{bottom:280.058250px;}
.yc9{bottom:280.058400px;}
.y1e0{bottom:281.803680px;}
.y1ad{bottom:281.827800px;}
.y1fe{bottom:283.407060px;}
.y196{bottom:286.623000px;}
.y1cb{bottom:286.655250px;}
.y174{bottom:289.790280px;}
.y13e{bottom:289.895250px;}
.y107{bottom:290.002980px;}
.ya5{bottom:290.107800px;}
.y53{bottom:295.241250px;}
.y4d{bottom:296.618250px;}
.yc8{bottom:296.618400px;}
.y1fd{bottom:298.349400px;}
.y1df{bottom:299.806380px;}
.y1ac{bottom:299.827800px;}
.y195{bottom:304.625700px;}
.y1ca{bottom:304.655250px;}
.y173{bottom:307.792980px;}
.y13d{bottom:307.895250px;}
.y106{bottom:308.005680px;}
.ya4{bottom:308.107800px;}
.yd5{bottom:312.280500px;}
.y4c{bottom:313.178250px;}
.yc7{bottom:313.178400px;}
.y1fc{bottom:313.291740px;}
.y1de{bottom:317.809080px;}
.y1ab{bottom:317.827800px;}
.y194{bottom:322.628400px;}
.y1c9{bottom:322.655250px;}
.y172{bottom:325.795680px;}
.y13c{bottom:325.895250px;}
.y105{bottom:326.008380px;}
.ya3{bottom:326.107800px;}
.y1fb{bottom:328.414980px;}
.y4b{bottom:329.558250px;}
.yc6{bottom:329.558400px;}
.y1dd{bottom:335.811780px;}
.y1aa{bottom:335.827800px;}
.y193{bottom:340.631100px;}
.y1c8{bottom:340.655250px;}
.yd4{bottom:342.385500px;}
.y1fa{bottom:343.357320px;}
.y171{bottom:343.798380px;}
.y13b{bottom:343.895250px;}
.y104{bottom:344.011080px;}
.ya2{bottom:344.107800px;}
.y4a{bottom:346.118250px;}
.yc5{bottom:346.118400px;}
.y1dc{bottom:353.814480px;}
.y1a9{bottom:353.827800px;}
.y1f9{bottom:358.299660px;}
.y192{bottom:358.633800px;}
.y1c7{bottom:358.655250px;}
.y170{bottom:361.801080px;}
.y13a{bottom:361.895250px;}
.y103{bottom:362.013780px;}
.ya1{bottom:362.107800px;}
.y49{bottom:362.678250px;}
.yc4{bottom:362.678400px;}
.yd3{bottom:369.745500px;}
.y1db{bottom:371.817180px;}
.y1a8{bottom:371.827800px;}
.y1f8{bottom:373.459080px;}
.y48{bottom:379.058250px;}
.yc3{bottom:379.058400px;}
.y16f{bottom:379.848600px;}
.y139{bottom:379.940250px;}
.y102{bottom:380.061300px;}
.ya0{bottom:380.152800px;}
.y52{bottom:385.781400px;}
.yd2{bottom:387.025500px;}
.y1f7{bottom:388.401420px;}
.y191{bottom:389.634300px;}
.y1c6{bottom:389.660250px;}
.y1da{bottom:389.864700px;}
.y1a7{bottom:389.872800px;}
.y47{bottom:395.618250px;}
.yc2{bottom:395.618400px;}
.y16e{bottom:397.851300px;}
.y138{bottom:397.940250px;}
.y101{bottom:398.064000px;}
.y9f{bottom:398.152800px;}
.y1f6{bottom:403.343760px;}
.y1d9{bottom:407.867400px;}
.y1a6{bottom:407.872800px;}
.y190{bottom:409.250520px;}
.y1c5{bottom:409.280250px;}
.y46{bottom:412.178250px;}
.yc1{bottom:412.178400px;}
.y16d{bottom:415.854000px;}
.y137{bottom:415.940250px;}
.y100{bottom:416.066700px;}
.y9e{bottom:416.152800px;}
.y1f5{bottom:418.467000px;}
.y5f{bottom:421.585500px;}
.y1d8{bottom:425.870100px;}
.y1a5{bottom:425.872800px;}
.y45{bottom:428.588250px;}
.yc0{bottom:428.588400px;}
.y18f{bottom:429.046020px;}
.y1c4{bottom:429.080250px;}
.y1f4{bottom:433.409340px;}
.y51{bottom:433.481250px;}
.y16c{bottom:433.856700px;}
.y136{bottom:433.940250px;}
.yff{bottom:434.069400px;}
.y9d{bottom:434.152800px;}
.y1a4{bottom:443.872800px;}
.y44{bottom:445.148250px;}
.ybf{bottom:445.148400px;}
.y1f3{bottom:448.351680px;}
.y18e{bottom:448.662240px;}
.y1c3{bottom:448.700250px;}
.y16b{bottom:451.859400px;}
.y135{bottom:451.940250px;}
.yfe{bottom:452.072100px;}
.y9c{bottom:452.152800px;}
.y2f{bottom:458.915700px;}
.y1f2{bottom:463.474920px;}
.y18d{bottom:468.457740px;}
.y1c2{bottom:468.500250px;}
.y16a{bottom:469.862100px;}
.y134{bottom:469.940250px;}
.yfd{bottom:470.074800px;}
.y9b{bottom:470.152800px;}
.y2e{bottom:473.915700px;}
.y43{bottom:478.268250px;}
.ybe{bottom:478.268400px;}
.y1f1{bottom:478.417260px;}
.y1a3{bottom:479.332800px;}
.y18c{bottom:487.177560px;}
.y1c1{bottom:487.220100px;}
.y169{bottom:487.864800px;}
.y133{bottom:487.940250px;}
.yfc{bottom:488.077500px;}
.y9a{bottom:488.152800px;}
.y2d{bottom:488.915700px;}
.y1f0{bottom:493.359600px;}
.y2c{bottom:503.915700px;}
.y18b{bottom:505.180260px;}
.y1c0{bottom:505.220100px;}
.y168{bottom:505.867500px;}
.y132{bottom:505.940250px;}
.yfb{bottom:506.080200px;}
.y99{bottom:506.152800px;}
.y1d7{bottom:506.319240px;}
.y1a2{bottom:506.332800px;}
.y1ef{bottom:508.482840px;}
.y5e{bottom:514.488000px;}
.y18a{bottom:523.182960px;}
.y1bf{bottom:523.220100px;}
.y1ee{bottom:523.425180px;}
.y167{bottom:523.870200px;}
.y131{bottom:523.940250px;}
.yfa{bottom:524.082900px;}
.y98{bottom:524.152800px;}
.y72{bottom:530.794500px;}
.y1ed{bottom:538.367520px;}
.y189{bottom:541.185660px;}
.y1be{bottom:541.220100px;}
.y166{bottom:541.872900px;}
.y130{bottom:541.940250px;}
.yf9{bottom:542.085600px;}
.y97{bottom:542.152800px;}
.y42{bottom:544.688250px;}
.ybd{bottom:544.688400px;}
.y71{bottom:547.359000px;}
.y1ec{bottom:553.490760px;}
.y188{bottom:559.188360px;}
.y1bd{bottom:559.220100px;}
.y41{bottom:559.628250px;}
.ybc{bottom:559.628400px;}
.y165{bottom:559.875600px;}
.y12f{bottom:559.940250px;}
.yf8{bottom:560.088300px;}
.y96{bottom:560.152800px;}
.y70{bottom:563.923500px;}
.y1eb{bottom:568.433100px;}
.y187{bottom:577.191060px;}
.y1bc{bottom:577.220100px;}
.y164{bottom:577.878300px;}
.y12e{bottom:577.940250px;}
.yf7{bottom:578.091000px;}
.y95{bottom:578.152800px;}
.y6f{bottom:580.299000px;}
.y1ea{bottom:583.375440px;}
.y40{bottom:583.748400px;}
.y186{bottom:595.223640px;}
.y1bb{bottom:595.250250px;}
.y163{bottom:595.910880px;}
.y12d{bottom:595.970100px;}
.yf6{bottom:596.123580px;}
.y94{bottom:596.182800px;}
.y6e{bottom:596.863500px;}
.y1e9{bottom:598.522800px;}
.y6d{bottom:613.428000px;}
.y162{bottom:613.913580px;}
.y12c{bottom:613.970100px;}
.yf5{bottom:614.126280px;}
.y93{bottom:614.182800px;}
.y3f{bottom:625.508250px;}
.ybb{bottom:625.508400px;}
.y185{bottom:626.179320px;}
.y1ba{bottom:626.210100px;}
.y6c{bottom:629.844000px;}
.y161{bottom:631.916280px;}
.y12b{bottom:631.970100px;}
.yf4{bottom:632.128980px;}
.y92{bottom:632.182800px;}
.y184{bottom:645.795540px;}
.y1b9{bottom:645.830250px;}
.y6b{bottom:646.408500px;}
.y160{bottom:649.918980px;}
.y12a{bottom:649.970100px;}
.yf3{bottom:650.131680px;}
.y91{bottom:650.182800px;}
.y3e{bottom:655.613250px;}
.yba{bottom:655.613400px;}
.y183{bottom:665.411760px;}
.y1b8{bottom:665.450250px;}
.y15f{bottom:667.921680px;}
.y129{bottom:667.970100px;}
.yf2{bottom:668.134380px;}
.y90{bottom:668.182800px;}
.y6a{bottom:679.528500px;}
.y3d{bottom:682.973250px;}
.yb9{bottom:682.973400px;}
.y182{bottom:685.207260px;}
.y1b7{bottom:685.250250px;}
.yf1{bottom:686.137080px;}
.y8f{bottom:686.182800px;}
.y3c{bottom:700.253250px;}
.yb8{bottom:700.253400px;}
.y15e{bottom:703.927080px;}
.y128{bottom:703.970100px;}
.yf0{bottom:704.139780px;}
.y8e{bottom:704.182800px;}
.y181{bottom:721.929780px;}
.y1b6{bottom:721.970100px;}
.yef{bottom:722.142480px;}
.y8d{bottom:722.182800px;}
.y38{bottom:734.813250px;}
.yb4{bottom:734.813400px;}
.y15d{bottom:739.932480px;}
.y127{bottom:739.970100px;}
.yee{bottom:740.145180px;}
.y8c{bottom:740.182800px;}
.y69{bottom:745.948500px;}
.y15c{bottom:757.935180px;}
.y126{bottom:757.970100px;}
.yed{bottom:758.147880px;}
.y8b{bottom:758.182800px;}
.y68{bottom:760.888500px;}
.y15b{bottom:775.937880px;}
.y125{bottom:775.970250px;}
.yec{bottom:776.150580px;}
.y8a{bottom:776.182800px;}
.y67{bottom:785.008500px;}
.y15a{bottom:793.940580px;}
.y124{bottom:793.970250px;}
.yeb{bottom:794.153280px;}
.y89{bottom:794.182800px;}
.y159{bottom:811.988100px;}
.y123{bottom:812.015100px;}
.yea{bottom:812.200800px;}
.y88{bottom:812.227800px;}
.y66{bottom:826.763820px;}
.y158{bottom:829.990800px;}
.y122{bottom:830.015100px;}
.ye9{bottom:830.203500px;}
.y87{bottom:830.227800px;}
.y157{bottom:847.993500px;}
.y121{bottom:848.015100px;}
.ye8{bottom:848.206200px;}
.y86{bottom:848.227800px;}
.y65{bottom:856.873500px;}
.y156{bottom:865.996200px;}
.y120{bottom:866.015100px;}
.ye7{bottom:866.208900px;}
.y85{bottom:866.227800px;}
.y155{bottom:883.998900px;}
.y11f{bottom:884.015100px;}
.ye6{bottom:884.211600px;}
.y84{bottom:884.227800px;}
.y64{bottom:884.227920px;}
.y1d6{bottom:884.570160px;}
.y1a1{bottom:884.587800px;}
.y63{bottom:901.513500px;}
.y154{bottom:902.001600px;}
.y11e{bottom:902.015100px;}
.ye5{bottom:902.214300px;}
.y83{bottom:902.227800px;}
.y153{bottom:920.004300px;}
.y11d{bottom:920.015100px;}
.ye4{bottom:920.217000px;}
.y82{bottom:920.227800px;}
.y3{bottom:934.476000px;}
.y152{bottom:938.007000px;}
.y11c{bottom:938.015100px;}
.ye3{bottom:938.219700px;}
.y81{bottom:938.227800px;}
.y151{bottom:956.009700px;}
.y11b{bottom:956.015100px;}
.ye2{bottom:956.222400px;}
.y80{bottom:956.227800px;}
.y26{bottom:961.130850px;}
.y57{bottom:969.553500px;}
.y150{bottom:974.012400px;}
.y11a{bottom:974.015100px;}
.y111{bottom:974.225100px;}
.y14a{bottom:974.227800px;}
.y30{bottom:986.562000px;}
.y1{bottom:988.999500px;}
.y119{bottom:992.015100px;}
.y7f{bottom:992.227800px;}
.y180{bottom:1026.965100px;}
.y110{bottom:1027.177800px;}
.y118{bottom:1027.325250px;}
.y7e{bottom:1027.537800px;}
.y2{bottom:1033.378950px;}
.yae{bottom:1035.561750px;}
.h12{height:-535.854000px;}
.h1d{height:-44.751000px;}
.hb{height:20.746758px;}
.h13{height:20.996719px;}
.h7{height:33.244805px;}
.h10{height:33.328125px;}
.h16{height:33.494766px;}
.h15{height:33.518320px;}
.h18{height:34.531172px;}
.h11{height:36.000000px;}
.hc{height:36.597656px;}
.he{height:37.494141px;}
.h1c{height:37.520508px;}
.h5{height:38.654297px;}
.h3{height:38.664000px;}
.h21{height:40.501406px;}
.hf{height:40.745391px;}
.h25{height:41.493516px;}
.h19{height:41.522695px;}
.hd{height:41.743477px;}
.h23{height:42.777422px;}
.h8{height:49.992188px;}
.ha{height:62.494453px;}
.h1b{height:62.878814px;}
.h1f{height:62.879414px;}
.h6{height:65.983887px;}
.h14{height:66.223828px;}
.h9{height:70.738945px;}
.h1a{height:71.038828px;}
.h2{height:74.646000px;}
.h4{height:122.974500px;}
.h17{height:232.440000px;}
.h1e{height:410.314500px;}
.h24{height:1009.204500px;}
.h20{height:1009.842000px;}
.h22{height:1009.843500px;}
.h27{height:1011.967500px;}
.h26{height:1012.606500px;}
.h28{height:1013.244000px;}
.h1{height:1113.750000px;}
.h0{height:1114.015500px;}
.w8{width:-654.933000px;}
.w9{width:-227.694000px;}
.wa{width:-47.289000px;}
.w7{width:1.062000px;}
.we{width:2.227500px;}
.w10{width:3.078000px;}
.wb{width:3.291000px;}
.w3{width:94.896000px;}
.w2{width:174.636000px;}
.w5{width:180.390000px;}
.w4{width:427.245000px;}
.w6{width:813.189000px;}
.wf{width:813.400500px;}
.wd{width:814.251000px;}
.wc{width:815.418000px;}
.w0{width:816.378000px;}
.w1{width:816.750000px;}
.x43{left:-758.992050px;}
.x34{left:-757.929000px;}
.x35{left:-748.749000px;}
.x4a{left:-747.521550px;}
.x46{left:-741.172050px;}
.x3c{left:-739.929000px;}
.x44{left:-731.955900px;}
.x45{left:-704.955900px;}
.x39{left:-699.213000px;}
.x37{left:-692.553000px;}
.x2e{left:-665.193000px;}
.x47{left:-624.861900px;}
.x2f{left:-568.539000px;}
.x31{left:-547.074000px;}
.x3a{left:-539.694000px;}
.xa{left:-534.709320px;}
.x38{left:-530.694000px;}
.xc{left:-528.415800px;}
.x8{left:-525.719850px;}
.x11{left:-524.095800px;}
.x9{left:-516.718410px;}
.x3b{left:-510.894000px;}
.x30{left:-509.454000px;}
.xd{left:-434.889960px;}
.x36{left:-407.034000px;}
.xe{left:-373.975800px;}
.x4{left:-345.355800px;}
.x6{left:-323.845800px;}
.xf{left:-314.125800px;}
.xb{left:-297.565800px;}
.x10{left:-295.585800px;}
.x5{left:-286.315800px;}
.x33{left:-228.039000px;}
.x32{left:-82.599000px;}
.x7{left:-2.726610px;}
.x0{left:0.000000px;}
.x3d{left:2.125500px;}
.x1c{left:3.189000px;}
.x14{left:56.125950px;}
.x3e{left:57.385950px;}
.x13{left:58.677150px;}
.x1d{left:64.440000px;}
.x15{left:66.549000px;}
.x26{left:67.629000px;}
.x2c{left:73.260000px;}
.x40{left:75.104790px;}
.x25{left:76.433700px;}
.x16{left:84.636000px;}
.x18{left:86.400000px;}
.x1a{left:107.865000px;}
.x3f{left:111.394050px;}
.x21{left:113.976000px;}
.x29{left:117.165000px;}
.x1f{left:120.636000px;}
.x24{left:124.545000px;}
.x19{left:145.485000px;}
.x17{left:161.439000px;}
.x4c{left:183.107100px;}
.x49{left:184.170600px;}
.x42{left:191.412690px;}
.x2{left:236.123100px;}
.x12{left:265.767900px;}
.x22{left:273.495000px;}
.x2a{left:276.684000px;}
.x20{left:282.495000px;}
.x28{left:285.696480px;}
.x1{left:292.179600px;}
.x23{left:302.295000px;}
.x2b{left:305.484000px;}
.x1e{left:406.155000px;}
.x27{left:409.336680px;}
.x1b{left:588.699000px;}
.x3{left:590.931000px;}
.x4b{left:650.320380px;}
.x48{left:651.390450px;}
.x41{left:733.331310px;}
.x2d{left:815.314500px;}
@media print{
.v2{vertical-align:-15.999467pt;}
.v3{vertical-align:-1.512000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.000000pt;}
.ls30{letter-spacing:-1.243520pt;}
.ls6d{letter-spacing:-1.221760pt;}
.ls2b{letter-spacing:-1.194667pt;}
.ls5e{letter-spacing:-1.115520pt;}
.ls5b{letter-spacing:-1.009280pt;}
.ls6a{letter-spacing:-0.814720pt;}
.ls3b{letter-spacing:-0.584320pt;}
.ls6b{letter-spacing:-0.514560pt;}
.ls40{letter-spacing:-0.478080pt;}
.ls31{letter-spacing:-0.471680pt;}
.ls3a{letter-spacing:-0.424960pt;}
.ls34{letter-spacing:-0.385920pt;}
.ls5c{letter-spacing:-0.371840pt;}
.ls37{letter-spacing:-0.336000pt;}
.ls3c{letter-spacing:-0.318720pt;}
.ls26{letter-spacing:-0.318080pt;}
.ls2d{letter-spacing:-0.300160pt;}
.ls32{letter-spacing:-0.257280pt;}
.ls2e{letter-spacing:-0.214400pt;}
.ls3d{letter-spacing:-0.212480pt;}
.ls36{letter-spacing:-0.192000pt;}
.ls3f{letter-spacing:-0.159360pt;}
.ls27{letter-spacing:-0.106880pt;}
.ls24{letter-spacing:-0.096000pt;}
.ls25{letter-spacing:-0.069440pt;}
.ls28{letter-spacing:-0.053440pt;}
.ls29{letter-spacing:-0.048000pt;}
.ls23{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000533pt;}
.ls11{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.017024pt;}
.ls3{letter-spacing:0.042560pt;}
.lsb{letter-spacing:0.048000pt;}
.ls9{letter-spacing:0.053440pt;}
.ls6e{letter-spacing:0.080640pt;}
.ls2{letter-spacing:0.085120pt;}
.ls5{letter-spacing:0.090560pt;}
.ls6{letter-spacing:0.090880pt;}
.ls13{letter-spacing:0.096000pt;}
.ls1e{letter-spacing:0.106240pt;}
.lsa{letter-spacing:0.106880pt;}
.ls0{letter-spacing:0.127680pt;}
.ls2f{letter-spacing:0.128640pt;}
.ls57{letter-spacing:0.138667pt;}
.ls16{letter-spacing:0.144000pt;}
.ls47{letter-spacing:0.159360pt;}
.ls22{letter-spacing:0.159467pt;}
.ls8{letter-spacing:0.160000pt;}
.ls2a{letter-spacing:0.160320pt;}
.ls52{letter-spacing:0.160533pt;}
.ls4{letter-spacing:0.170240pt;}
.ls15{letter-spacing:0.171520pt;}
.ls41{letter-spacing:0.212480pt;}
.ls6c{letter-spacing:0.214400pt;}
.ls1c{letter-spacing:0.230507pt;}
.ls1b{letter-spacing:0.231040pt;}
.ls51{letter-spacing:0.231573pt;}
.ls2c{letter-spacing:0.257280pt;}
.ls1d{letter-spacing:0.265600pt;}
.ls35{letter-spacing:0.288000pt;}
.ls71{letter-spacing:0.300160pt;}
.lse{letter-spacing:0.304640pt;}
.ls39{letter-spacing:0.318720pt;}
.ls42{letter-spacing:0.319467pt;}
.lsd{letter-spacing:0.320000pt;}
.ls72{letter-spacing:0.321600pt;}
.ls38{letter-spacing:0.336000pt;}
.ls33{letter-spacing:0.343040pt;}
.ls73{letter-spacing:0.428800pt;}
.lsf{letter-spacing:0.464640pt;}
.ls4f{letter-spacing:0.527147pt;}
.ls3e{letter-spacing:0.531200pt;}
.ls5a{letter-spacing:0.743680pt;}
.ls46{letter-spacing:0.796800pt;}
.ls21{letter-spacing:0.800000pt;}
.ls5d{letter-spacing:0.849920pt;}
.lsc{letter-spacing:0.960000pt;}
.ls67{letter-spacing:1.434240pt;}
.ls12{letter-spacing:1.440000pt;}
.ls58{letter-spacing:1.440533pt;}
.ls45{letter-spacing:2.071680pt;}
.ls20{letter-spacing:2.080000pt;}
.ls4b{letter-spacing:2.709120pt;}
.ls61{letter-spacing:2.720000pt;}
.ls4c{letter-spacing:3.346560pt;}
.ls53{letter-spacing:3.360000pt;}
.ls62{letter-spacing:3.360533pt;}
.ls17{letter-spacing:3.984000pt;}
.ls10{letter-spacing:4.000000pt;}
.ls44{letter-spacing:5.258880pt;}
.ls1f{letter-spacing:5.280000pt;}
.ls68{letter-spacing:5.896320pt;}
.ls6f{letter-spacing:5.920000pt;}
.ls49{letter-spacing:6.533760pt;}
.ls5f{letter-spacing:6.560000pt;}
.ls54{letter-spacing:7.200533pt;}
.ls65{letter-spacing:7.224320pt;}
.ls64{letter-spacing:7.839467pt;}
.ls55{letter-spacing:7.840000pt;}
.ls59{letter-spacing:7.840533pt;}
.ls4d{letter-spacing:7.861760pt;}
.ls63{letter-spacing:7.946133pt;}
.ls4e{letter-spacing:7.968000pt;}
.ls50{letter-spacing:8.479467pt;}
.ls1a{letter-spacing:8.480000pt;}
.ls43{letter-spacing:8.499200pt;}
.ls56{letter-spacing:9.759467pt;}
.ls66{letter-spacing:9.774080pt;}
.ls60{letter-spacing:24.480533pt;}
.ls4a{letter-spacing:24.488320pt;}
.ls69{letter-spacing:56.891520pt;}
.ls70{letter-spacing:56.912640pt;}
.ls19{letter-spacing:710.186667pt;}
.ls48{letter-spacing:737.066667pt;}
.ls18{letter-spacing:754.986667pt;}
.ls14{letter-spacing:754.994560pt;}
.wsd{word-spacing:-88.320000pt;}
.ws2{word-spacing:-88.000000pt;}
.wsb2{word-spacing:-53.120000pt;}
.ws9{word-spacing:-14.208000pt;}
.ws8c{word-spacing:-14.129920pt;}
.ws88{word-spacing:-14.023680pt;}
.ws22{word-spacing:-13.811200pt;}
.ws1f{word-spacing:-13.598720pt;}
.ws89{word-spacing:-13.545600pt;}
.wsc{word-spacing:-13.488000pt;}
.ws8b{word-spacing:-13.439360pt;}
.ws8d{word-spacing:-13.386240pt;}
.ws1{word-spacing:-13.344000pt;}
.ws20{word-spacing:-13.280000pt;}
.ws23{word-spacing:-13.120640pt;}
.ws21{word-spacing:-13.067520pt;}
.wsb6{word-spacing:-12.961280pt;}
.ws8a{word-spacing:-12.908160pt;}
.wsb1{word-spacing:-12.855040pt;}
.wsb3{word-spacing:-12.695680pt;}
.ws1e{word-spacing:-12.336000pt;}
.ws19{word-spacing:-12.288000pt;}
.ws8e{word-spacing:-12.270720pt;}
.ws1a{word-spacing:-12.096000pt;}
.wsb7{word-spacing:-12.058240pt;}
.wsb{word-spacing:-12.000000pt;}
.ws1d{word-spacing:-11.904000pt;}
.ws1b{word-spacing:-11.808000pt;}
.ws1c{word-spacing:-11.664000pt;}
.ws5{word-spacing:-11.450880pt;}
.ws4{word-spacing:-11.360000pt;}
.wsc6{word-spacing:-11.148800pt;}
.ws14{word-spacing:-11.063040pt;}
.ws15{word-spacing:-10.977280pt;}
.wsc7{word-spacing:-10.934400pt;}
.ws10{word-spacing:-10.848640pt;}
.ws6{word-spacing:-10.725120pt;}
.ws11{word-spacing:-10.720000pt;}
.ws8{word-spacing:-10.666667pt;}
.ws13{word-spacing:-10.462720pt;}
.wse{word-spacing:-10.419840pt;}
.ws18{word-spacing:-10.334080pt;}
.ws16{word-spacing:-10.248320pt;}
.wsb5{word-spacing:-10.205440pt;}
.wsb4{word-spacing:-9.905280pt;}
.ws12{word-spacing:-9.476480pt;}
.ws17{word-spacing:-6.720000pt;}
.ws77{word-spacing:-3.027840pt;}
.wsb0{word-spacing:-2.921600pt;}
.ws9a{word-spacing:-2.656000pt;}
.ws44{word-spacing:-2.565120pt;}
.wsaf{word-spacing:-2.496640pt;}
.wsae{word-spacing:-2.443520pt;}
.ws9b{word-spacing:-2.390400pt;}
.ws3b{word-spacing:-2.244480pt;}
.ws3a{word-spacing:-2.191040pt;}
.ws6f{word-spacing:-2.018560pt;}
.ws6b{word-spacing:-1.752960pt;}
.wsc5{word-spacing:-1.646720pt;}
.ws43{word-spacing:-1.549760pt;}
.ws42{word-spacing:-1.442880pt;}
.ws80{word-spacing:-1.381120pt;}
.wsba{word-spacing:-1.328000pt;}
.wsa7{word-spacing:-1.274880pt;}
.wsc4{word-spacing:-1.221760pt;}
.ws6e{word-spacing:-1.115520pt;}
.ws78{word-spacing:-1.062400pt;}
.wsa5{word-spacing:-1.009280pt;}
.ws48{word-spacing:-0.960000pt;}
.ws96{word-spacing:-0.796800pt;}
.ws60{word-spacing:-0.771840pt;}
.ws33{word-spacing:-0.748160pt;}
.ws9f{word-spacing:-0.743680pt;}
.ws4a{word-spacing:-0.728960pt;}
.wsbe{word-spacing:-0.690560pt;}
.wsd2{word-spacing:-0.600320pt;}
.ws9e{word-spacing:-0.531200pt;}
.ws59{word-spacing:-0.480000pt;}
.ws6d{word-spacing:-0.478080pt;}
.ws5f{word-spacing:-0.471680pt;}
.wsbb{word-spacing:-0.424960pt;}
.wsa9{word-spacing:-0.371840pt;}
.ws53{word-spacing:-0.363520pt;}
.wsd1{word-spacing:-0.343040pt;}
.ws3e{word-spacing:-0.320640pt;}
.wsc8{word-spacing:-0.318720pt;}
.ws50{word-spacing:-0.265600pt;}
.ws61{word-spacing:-0.257280pt;}
.ws26{word-spacing:-0.212800pt;}
.ws83{word-spacing:-0.212480pt;}
.ws2b{word-spacing:-0.181120pt;}
.ws63{word-spacing:-0.171520pt;}
.ws28{word-spacing:-0.170240pt;}
.ws73{word-spacing:-0.159360pt;}
.ws49{word-spacing:-0.144000pt;}
.ws4d{word-spacing:-0.128640pt;}
.ws27{word-spacing:-0.127680pt;}
.wsac{word-spacing:-0.106240pt;}
.ws2a{word-spacing:-0.090560pt;}
.ws0{word-spacing:-0.088000pt;}
.wsc2{word-spacing:-0.085760pt;}
.ws2c{word-spacing:-0.069440pt;}
.ws29{word-spacing:-0.064000pt;}
.ws41{word-spacing:-0.053440pt;}
.ws6c{word-spacing:-0.053120pt;}
.wsf{word-spacing:-0.042880pt;}
.ws24{word-spacing:0.000000pt;}
.ws40{word-spacing:0.048000pt;}
.ws3f{word-spacing:0.096000pt;}
.ws51{word-spacing:0.106240pt;}
.wscf{word-spacing:0.128640pt;}
.ws7a{word-spacing:0.159360pt;}
.ws62{word-spacing:0.171520pt;}
.ws25{word-spacing:0.192000pt;}
.ws85{word-spacing:0.212480pt;}
.ws4c{word-spacing:0.214400pt;}
.wsbc{word-spacing:0.265600pt;}
.ws52{word-spacing:0.272640pt;}
.ws5e{word-spacing:0.288000pt;}
.wsc0{word-spacing:0.300160pt;}
.ws2d{word-spacing:0.318080pt;}
.wsa6{word-spacing:0.318720pt;}
.wsd4{word-spacing:0.343040pt;}
.ws4f{word-spacing:0.385920pt;}
.ws93{word-spacing:0.424960pt;}
.ws4b{word-spacing:0.428800pt;}
.wsce{word-spacing:0.471680pt;}
.ws7e{word-spacing:0.478080pt;}
.wsc1{word-spacing:0.514560pt;}
.wsa8{word-spacing:0.531200pt;}
.wscd{word-spacing:0.584320pt;}
.ws4e{word-spacing:0.600320pt;}
.wsa4{word-spacing:0.637440pt;}
.ws5d{word-spacing:0.672000pt;}
.wsad{word-spacing:0.690560pt;}
.ws74{word-spacing:0.743680pt;}
.ws3{word-spacing:0.757568pt;}
.ws5a{word-spacing:0.768000pt;}
.wsa1{word-spacing:0.796800pt;}
.ws7b{word-spacing:0.849920pt;}
.wsd3{word-spacing:0.943360pt;}
.ws9d{word-spacing:1.009280pt;}
.wsaa{word-spacing:1.115520pt;}
.ws7{word-spacing:1.122240pt;}
.ws47{word-spacing:1.194667pt;}
.wsd0{word-spacing:1.372160pt;}
.ws71{word-spacing:1.381120pt;}
.ws70{word-spacing:1.434240pt;}
.wsc3{word-spacing:1.752960pt;}
.ws99{word-spacing:1.912320pt;}
.ws38{word-spacing:1.923840pt;}
.ws76{word-spacing:1.965440pt;}
.ws79{word-spacing:2.018560pt;}
.ws98{word-spacing:2.337280pt;}
.ws92{word-spacing:2.656000pt;}
.ws7f{word-spacing:2.974720pt;}
.ws39{word-spacing:3.152960pt;}
.ws7c{word-spacing:3.187200pt;}
.ws30{word-spacing:3.206400pt;}
.ws65{word-spacing:3.293440pt;}
.ws31{word-spacing:3.313280pt;}
.ws32{word-spacing:3.366720pt;}
.ws97{word-spacing:3.399680pt;}
.wsa0{word-spacing:3.452800pt;}
.ws58{word-spacing:3.552000pt;}
.ws81{word-spacing:3.612160pt;}
.ws72{word-spacing:3.665280pt;}
.ws57{word-spacing:3.840000pt;}
.ws67{word-spacing:3.930880pt;}
.ws5b{word-spacing:3.936000pt;}
.ws56{word-spacing:3.984000pt;}
.ws5c{word-spacing:4.128000pt;}
.ws54{word-spacing:4.320000pt;}
.ws68{word-spacing:4.515200pt;}
.ws64{word-spacing:4.568320pt;}
.ws87{word-spacing:4.621440pt;}
.ws69{word-spacing:4.674560pt;}
.ws37{word-spacing:4.809600pt;}
.ws86{word-spacing:4.887040pt;}
.ws75{word-spacing:5.205760pt;}
.ws82{word-spacing:5.258880pt;}
.wscb{word-spacing:5.312000pt;}
.ws84{word-spacing:5.524480pt;}
.wscc{word-spacing:5.577600pt;}
.ws66{word-spacing:5.843200pt;}
.wsb8{word-spacing:5.949440pt;}
.wsb9{word-spacing:6.055680pt;}
.ws8f{word-spacing:6.480640pt;}
.ws46{word-spacing:6.786880pt;}
.ws45{word-spacing:6.893760pt;}
.wsa2{word-spacing:7.011840pt;}
.ws3c{word-spacing:7.107520pt;}
.ws3d{word-spacing:7.160960pt;}
.ws7d{word-spacing:7.171200pt;}
.wsbd{word-spacing:7.224320pt;}
.wsab{word-spacing:7.543040pt;}
.ws94{word-spacing:7.808640pt;}
.ws95{word-spacing:7.914880pt;}
.wsa3{word-spacing:8.180480pt;}
.ws9c{word-spacing:8.339840pt;}
.ws6a{word-spacing:8.446080pt;}
.ws55{word-spacing:8.448000pt;}
.wsbf{word-spacing:8.499200pt;}
.wsca{word-spacing:12.217600pt;}
.wsc9{word-spacing:12.270720pt;}
.ws2f{word-spacing:14.215040pt;}
.ws2e{word-spacing:14.268480pt;}
.ws34{word-spacing:17.261120pt;}
.ws35{word-spacing:17.421440pt;}
.ws36{word-spacing:17.474880pt;}
.ws91{word-spacing:24.435200pt;}
.ws90{word-spacing:24.753920pt;}
.wsa{word-spacing:1175.942933pt;}
._4{margin-left:-5.593600pt;}
._3{margin-left:-4.160000pt;}
._0{margin-left:-1.592800pt;}
._1{width:0.902400pt;}
._6{width:1.803307pt;}
._7{width:3.316800pt;}
._8{width:4.304267pt;}
._5{width:5.582400pt;}
._f{width:6.759040pt;}
._e{width:8.258133pt;}
._d{width:63.531520pt;}
._a{width:481.386400pt;}
._c{width:651.603733pt;}
._b{width:753.564800pt;}
._9{width:817.564267pt;}
._2{width:985.409760pt;}
.fs7{font-size:26.560000pt;}
.fsa{font-size:26.880000pt;}
.fs2{font-size:42.560000pt;}
.fs9{font-size:42.666667pt;}
.fsc{font-size:42.880000pt;}
.fs6{font-size:45.440000pt;}
.fs1{font-size:48.000000pt;}
.fsd{font-size:53.120000pt;}
.fs8{font-size:53.440000pt;}
.fs3{font-size:64.000000pt;}
.fsf{font-size:69.120000pt;}
.fs5{font-size:69.440000pt;}
.fs0{font-size:88.000000pt;}
.fsb{font-size:88.320000pt;}
.fs4{font-size:90.560000pt;}
.fse{font-size:90.880000pt;}
.yb{bottom:-732.266907pt;}
.ya{bottom:-718.988187pt;}
.y9{bottom:-689.632427pt;}
.y8{bottom:-676.268587pt;}
.y25{bottom:-660.596027pt;}
.y24{bottom:-644.590747pt;}
.y23{bottom:-628.585467pt;}
.y22{bottom:-596.588267pt;}
.y21{bottom:-551.148267pt;}
.y20{bottom:-522.912267pt;}
.y1f{bottom:-508.188267pt;}
.y1e{bottom:-493.548267pt;}
.y1d{bottom:-478.635787pt;}
.y1c{bottom:-462.630507pt;}
.y1b{bottom:-446.625227pt;}
.y1a{bottom:-430.619947pt;}
.y19{bottom:-414.614667pt;}
.y18{bottom:-398.609387pt;}
.y17{bottom:-382.604107pt;}
.y16{bottom:-366.598827pt;}
.y15{bottom:-350.593547pt;}
.y14{bottom:-334.588267pt;}
.y62{bottom:-321.390667pt;}
.y61{bottom:-308.110667pt;}
.y13{bottom:-304.188267pt;}
.y60{bottom:-294.670667pt;}
.y7d{bottom:-265.364000pt;}
.y7c{bottom:-252.084000pt;}
.y12{bottom:-245.148267pt;}
.y7b{bottom:-238.484000pt;}
.y11{bottom:-231.788267pt;}
.y10{bottom:-210.508267pt;}
.y7a{bottom:-210.004000pt;}
.yf{bottom:-173.235547pt;}
.ye{bottom:-146.588267pt;}
.y79{bottom:-129.524000pt;}
.yd{bottom:-106.028267pt;}
.yc{bottom:-90.028267pt;}
.y78{bottom:-87.124000pt;}
.y77{bottom:-58.604000pt;}
.y76{bottom:-44.044000pt;}
.y3b{bottom:-42.966000pt;}
.yb7{bottom:-42.965867pt;}
.y3a{bottom:-29.686000pt;}
.yb6{bottom:-29.685867pt;}
.y75{bottom:-29.484000pt;}
.y2b{bottom:-28.346400pt;}
.y39{bottom:-16.246000pt;}
.yb5{bottom:-16.245867pt;}
.y74{bottom:-14.764000pt;}
.y73{bottom:-0.044000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.371893pt;}
.y36{bottom:11.359333pt;}
.yb3{bottom:11.359467pt;}
.y5d{bottom:11.360000pt;}
.yd1{bottom:13.060800pt;}
.ye1{bottom:14.516000pt;}
.y6{bottom:17.331733pt;}
.y31{bottom:21.919333pt;}
.yaf{bottom:21.919467pt;}
.y58{bottom:21.920000pt;}
.y34{bottom:23.999333pt;}
.yb2{bottom:23.999467pt;}
.y5b{bottom:24.000000pt;}
.yd0{bottom:26.340800pt;}
.y35{bottom:26.719467pt;}
.y5c{bottom:26.720000pt;}
.ye0{bottom:29.236000pt;}
.ycf{bottom:39.940800pt;}
.ydf{bottom:43.956000pt;}
.y5{bottom:47.331733pt;}
.y33{bottom:53.919333pt;}
.yb1{bottom:53.919467pt;}
.y5a{bottom:53.920000pt;}
.yde{bottom:58.516000pt;}
.yce{bottom:68.420800pt;}
.y2a{bottom:72.476400pt;}
.ydd{bottom:73.236000pt;}
.y17f{bottom:81.538400pt;}
.y149{bottom:81.658000pt;}
.y4{bottom:84.211733pt;}
.y29{bottom:84.476400pt;}
.y117{bottom:85.679733pt;}
.y14f{bottom:85.686933pt;}
.ydc{bottom:87.956000pt;}
.y1e8{bottom:90.441600pt;}
.y1b5{bottom:90.486933pt;}
.y32{bottom:90.586000pt;}
.yb0{bottom:90.586133pt;}
.y59{bottom:90.586667pt;}
.y1a0{bottom:94.725440pt;}
.y1d5{bottom:94.778000pt;}
.y28{bottom:96.476400pt;}
.y17e{bottom:97.540800pt;}
.y148{bottom:97.658000pt;}
.y10f{bottom:97.729867pt;}
.yad{bottom:97.846933pt;}
.y116{bottom:101.682133pt;}
.y14e{bottom:101.686933pt;}
.ydb{bottom:102.542667pt;}
.y1e7{bottom:106.444000pt;}
.y1b4{bottom:106.486933pt;}
.y27{bottom:108.476400pt;}
.y19f{bottom:110.727840pt;}
.y1d4{bottom:110.778000pt;}
.y17d{bottom:113.543200pt;}
.y147{bottom:113.658000pt;}
.y10e{bottom:113.732267pt;}
.yac{bottom:113.846933pt;}
.y208{bottom:116.406933pt;}
.yda{bottom:117.262667pt;}
.y115{bottom:117.684533pt;}
.y14d{bottom:117.686933pt;}
.y1e6{bottom:122.446400pt;}
.y1b3{bottom:122.486933pt;}
.y19e{bottom:126.730240pt;}
.y1d3{bottom:126.778000pt;}
.y17c{bottom:129.545600pt;}
.y146{bottom:129.658000pt;}
.y10d{bottom:129.734667pt;}
.yab{bottom:129.846933pt;}
.y207{bottom:131.874827pt;}
.y114{bottom:133.686933pt;}
.y19d{bottom:142.732640pt;}
.y1d2{bottom:142.778000pt;}
.y206{bottom:145.178347pt;}
.y17b{bottom:145.574560pt;}
.y145{bottom:145.684667pt;}
.y10c{bottom:145.763627pt;}
.yaa{bottom:145.873600pt;}
.yd9{bottom:146.702667pt;}
.ycd{bottom:148.900800pt;}
.y113{bottom:149.667947pt;}
.y14c{bottom:149.713600pt;}
.y1e5{bottom:154.477760pt;}
.y1b2{bottom:154.513600pt;}
.y205{bottom:158.460427pt;}
.y19c{bottom:158.761600pt;}
.y1d1{bottom:158.804667pt;}
.y17a{bottom:161.576960pt;}
.y144{bottom:161.684667pt;}
.y112{bottom:162.629227pt;}
.y14b{bottom:162.673600pt;}
.y204{bottom:171.903307pt;}
.y19b{bottom:174.764000pt;}
.y1d0{bottom:174.804667pt;}
.y179{bottom:177.579360pt;}
.y143{bottom:177.684667pt;}
.y10b{bottom:177.768427pt;}
.ya9{bottom:177.873600pt;}
.y203{bottom:185.185387pt;}
.y1e4{bottom:186.482560pt;}
.y1b1{bottom:186.513600pt;}
.y19a{bottom:190.766400pt;}
.y1cf{bottom:190.804667pt;}
.ycc{bottom:191.300800pt;}
.y178{bottom:193.581760pt;}
.y142{bottom:193.684667pt;}
.y37{bottom:194.016000pt;}
.y202{bottom:198.467467pt;}
.y1e3{bottom:202.484960pt;}
.y1b0{bottom:202.513600pt;}
.yd8{bottom:205.742667pt;}
.y199{bottom:206.768800pt;}
.y1ce{bottom:206.804667pt;}
.y56{bottom:207.074587pt;}
.y177{bottom:209.584160pt;}
.y141{bottom:209.684667pt;}
.y10a{bottom:209.773227pt;}
.ya8{bottom:209.873600pt;}
.y201{bottom:211.910347pt;}
.y1e2{bottom:218.487360pt;}
.y1af{bottom:218.513600pt;}
.yd7{bottom:219.022667pt;}
.y50{bottom:219.820667pt;}
.ycb{bottom:219.820800pt;}
.y55{bottom:220.356667pt;}
.y198{bottom:222.771200pt;}
.y1cd{bottom:222.804667pt;}
.y200{bottom:225.192427pt;}
.y176{bottom:225.586560pt;}
.y140{bottom:225.684667pt;}
.y109{bottom:225.775627pt;}
.ya7{bottom:225.873600pt;}
.y54{bottom:233.956667pt;}
.y4f{bottom:234.380667pt;}
.yca{bottom:234.380800pt;}
.y1e1{bottom:234.489760pt;}
.y1ae{bottom:234.513600pt;}
.y1ff{bottom:238.474507pt;}
.y197{bottom:238.773600pt;}
.y1cc{bottom:238.804667pt;}
.yd6{bottom:240.462667pt;}
.y175{bottom:241.588960pt;}
.y13f{bottom:241.684667pt;}
.y108{bottom:241.778027pt;}
.ya6{bottom:241.873600pt;}
.y4e{bottom:248.940667pt;}
.yc9{bottom:248.940800pt;}
.y1e0{bottom:250.492160pt;}
.y1ad{bottom:250.513600pt;}
.y1fe{bottom:251.917387pt;}
.y196{bottom:254.776000pt;}
.y1cb{bottom:254.804667pt;}
.y174{bottom:257.591360pt;}
.y13e{bottom:257.684667pt;}
.y107{bottom:257.780427pt;}
.ya5{bottom:257.873600pt;}
.y53{bottom:262.436667pt;}
.y4d{bottom:263.660667pt;}
.yc8{bottom:263.660800pt;}
.y1fd{bottom:265.199467pt;}
.y1df{bottom:266.494560pt;}
.y1ac{bottom:266.513600pt;}
.y195{bottom:270.778400pt;}
.y1ca{bottom:270.804667pt;}
.y173{bottom:273.593760pt;}
.y13d{bottom:273.684667pt;}
.y106{bottom:273.782827pt;}
.ya4{bottom:273.873600pt;}
.yd5{bottom:277.582667pt;}
.y4c{bottom:278.380667pt;}
.yc7{bottom:278.380800pt;}
.y1fc{bottom:278.481547pt;}
.y1de{bottom:282.496960pt;}
.y1ab{bottom:282.513600pt;}
.y194{bottom:286.780800pt;}
.y1c9{bottom:286.804667pt;}
.y172{bottom:289.596160pt;}
.y13c{bottom:289.684667pt;}
.y105{bottom:289.785227pt;}
.ya3{bottom:289.873600pt;}
.y1fb{bottom:291.924427pt;}
.y4b{bottom:292.940667pt;}
.yc6{bottom:292.940800pt;}
.y1dd{bottom:298.499360pt;}
.y1aa{bottom:298.513600pt;}
.y193{bottom:302.783200pt;}
.y1c8{bottom:302.804667pt;}
.yd4{bottom:304.342667pt;}
.y1fa{bottom:305.206507pt;}
.y171{bottom:305.598560pt;}
.y13b{bottom:305.684667pt;}
.y104{bottom:305.787627pt;}
.ya2{bottom:305.873600pt;}
.y4a{bottom:307.660667pt;}
.yc5{bottom:307.660800pt;}
.y1dc{bottom:314.501760pt;}
.y1a9{bottom:314.513600pt;}
.y1f9{bottom:318.488587pt;}
.y192{bottom:318.785600pt;}
.y1c7{bottom:318.804667pt;}
.y170{bottom:321.600960pt;}
.y13a{bottom:321.684667pt;}
.y103{bottom:321.790027pt;}
.ya1{bottom:321.873600pt;}
.y49{bottom:322.380667pt;}
.yc4{bottom:322.380800pt;}
.yd3{bottom:328.662667pt;}
.y1db{bottom:330.504160pt;}
.y1a8{bottom:330.513600pt;}
.y1f8{bottom:331.963627pt;}
.y48{bottom:336.940667pt;}
.yc3{bottom:336.940800pt;}
.y16f{bottom:337.643200pt;}
.y139{bottom:337.724667pt;}
.y102{bottom:337.832267pt;}
.ya0{bottom:337.913600pt;}
.y52{bottom:342.916800pt;}
.yd2{bottom:344.022667pt;}
.y1f7{bottom:345.245707pt;}
.y191{bottom:346.341600pt;}
.y1c6{bottom:346.364667pt;}
.y1da{bottom:346.546400pt;}
.y1a7{bottom:346.553600pt;}
.y47{bottom:351.660667pt;}
.yc2{bottom:351.660800pt;}
.y16e{bottom:353.645600pt;}
.y138{bottom:353.724667pt;}
.y101{bottom:353.834667pt;}
.y9f{bottom:353.913600pt;}
.y1f6{bottom:358.527787pt;}
.y1d9{bottom:362.548800pt;}
.y1a6{bottom:362.553600pt;}
.y190{bottom:363.778240pt;}
.y1c5{bottom:363.804667pt;}
.y46{bottom:366.380667pt;}
.yc1{bottom:366.380800pt;}
.y16d{bottom:369.648000pt;}
.y137{bottom:369.724667pt;}
.y100{bottom:369.837067pt;}
.y9e{bottom:369.913600pt;}
.y1f5{bottom:371.970667pt;}
.y5f{bottom:374.742667pt;}
.y1d8{bottom:378.551200pt;}
.y1a5{bottom:378.553600pt;}
.y45{bottom:380.967333pt;}
.yc0{bottom:380.967467pt;}
.y18f{bottom:381.374240pt;}
.y1c4{bottom:381.404667pt;}
.y1f4{bottom:385.252747pt;}
.y51{bottom:385.316667pt;}
.y16c{bottom:385.650400pt;}
.y136{bottom:385.724667pt;}
.yff{bottom:385.839467pt;}
.y9d{bottom:385.913600pt;}
.y1a4{bottom:394.553600pt;}
.y44{bottom:395.687333pt;}
.ybf{bottom:395.687467pt;}
.y1f3{bottom:398.534827pt;}
.y18e{bottom:398.810880pt;}
.y1c3{bottom:398.844667pt;}
.y16b{bottom:401.652800pt;}
.y135{bottom:401.724667pt;}
.yfe{bottom:401.841867pt;}
.y9c{bottom:401.913600pt;}
.y2f{bottom:407.925067pt;}
.y1f2{bottom:411.977707pt;}
.y18d{bottom:416.406880pt;}
.y1c2{bottom:416.444667pt;}
.y16a{bottom:417.655200pt;}
.y134{bottom:417.724667pt;}
.yfd{bottom:417.844267pt;}
.y9b{bottom:417.913600pt;}
.y2e{bottom:421.258400pt;}
.y43{bottom:425.127333pt;}
.ybe{bottom:425.127467pt;}
.y1f1{bottom:425.259787pt;}
.y1a3{bottom:426.073600pt;}
.y18c{bottom:433.046720pt;}
.y1c1{bottom:433.084533pt;}
.y169{bottom:433.657600pt;}
.y133{bottom:433.724667pt;}
.yfc{bottom:433.846667pt;}
.y9a{bottom:433.913600pt;}
.y2d{bottom:434.591733pt;}
.y1f0{bottom:438.541867pt;}
.y2c{bottom:447.925067pt;}
.y18b{bottom:449.049120pt;}
.y1c0{bottom:449.084533pt;}
.y168{bottom:449.660000pt;}
.y132{bottom:449.724667pt;}
.yfb{bottom:449.849067pt;}
.y99{bottom:449.913600pt;}
.y1d7{bottom:450.061547pt;}
.y1a2{bottom:450.073600pt;}
.y1ef{bottom:451.984747pt;}
.y5e{bottom:457.322667pt;}
.y18a{bottom:465.051520pt;}
.y1bf{bottom:465.084533pt;}
.y1ee{bottom:465.266827pt;}
.y167{bottom:465.662400pt;}
.y131{bottom:465.724667pt;}
.yfa{bottom:465.851467pt;}
.y98{bottom:465.913600pt;}
.y72{bottom:471.817333pt;}
.y1ed{bottom:478.548907pt;}
.y189{bottom:481.053920pt;}
.y1be{bottom:481.084533pt;}
.y166{bottom:481.664800pt;}
.y130{bottom:481.724667pt;}
.yf9{bottom:481.853867pt;}
.y97{bottom:481.913600pt;}
.y42{bottom:484.167333pt;}
.ybd{bottom:484.167467pt;}
.y71{bottom:486.541333pt;}
.y1ec{bottom:491.991787pt;}
.y188{bottom:497.056320pt;}
.y1bd{bottom:497.084533pt;}
.y41{bottom:497.447333pt;}
.ybc{bottom:497.447467pt;}
.y165{bottom:497.667200pt;}
.y12f{bottom:497.724667pt;}
.yf8{bottom:497.856267pt;}
.y96{bottom:497.913600pt;}
.y70{bottom:501.265333pt;}
.y1eb{bottom:505.273867pt;}
.y187{bottom:513.058720pt;}
.y1bc{bottom:513.084533pt;}
.y164{bottom:513.669600pt;}
.y12e{bottom:513.724667pt;}
.yf7{bottom:513.858667pt;}
.y95{bottom:513.913600pt;}
.y6f{bottom:515.821333pt;}
.y1ea{bottom:518.555947pt;}
.y40{bottom:518.887467pt;}
.y186{bottom:529.087680pt;}
.y1bb{bottom:529.111333pt;}
.y163{bottom:529.698560pt;}
.y12d{bottom:529.751200pt;}
.yf6{bottom:529.887627pt;}
.y94{bottom:529.940267pt;}
.y6e{bottom:530.545333pt;}
.y1e9{bottom:532.020267pt;}
.y6d{bottom:545.269333pt;}
.y162{bottom:545.700960pt;}
.y12c{bottom:545.751200pt;}
.yf5{bottom:545.890027pt;}
.y93{bottom:545.940267pt;}
.y3f{bottom:556.007333pt;}
.ybb{bottom:556.007467pt;}
.y185{bottom:556.603840pt;}
.y1ba{bottom:556.631200pt;}
.y6c{bottom:559.861333pt;}
.y161{bottom:561.703360pt;}
.y12b{bottom:561.751200pt;}
.yf4{bottom:561.892427pt;}
.y92{bottom:561.940267pt;}
.y184{bottom:574.040480pt;}
.y1b9{bottom:574.071333pt;}
.y6b{bottom:574.585333pt;}
.y160{bottom:577.705760pt;}
.y12a{bottom:577.751200pt;}
.yf3{bottom:577.894827pt;}
.y91{bottom:577.940267pt;}
.y3e{bottom:582.767333pt;}
.yba{bottom:582.767467pt;}
.y183{bottom:591.477120pt;}
.y1b8{bottom:591.511333pt;}
.y15f{bottom:593.708160pt;}
.y129{bottom:593.751200pt;}
.yf2{bottom:593.897227pt;}
.y90{bottom:593.940267pt;}
.y6a{bottom:604.025333pt;}
.y3d{bottom:607.087333pt;}
.yb9{bottom:607.087467pt;}
.y182{bottom:609.073120pt;}
.y1b7{bottom:609.111333pt;}
.yf1{bottom:609.899627pt;}
.y8f{bottom:609.940267pt;}
.y3c{bottom:622.447333pt;}
.yb8{bottom:622.447467pt;}
.y15e{bottom:625.712960pt;}
.y128{bottom:625.751200pt;}
.yf0{bottom:625.902027pt;}
.y8e{bottom:625.940267pt;}
.y181{bottom:641.715360pt;}
.y1b6{bottom:641.751200pt;}
.yef{bottom:641.904427pt;}
.y8d{bottom:641.940267pt;}
.y38{bottom:653.167333pt;}
.yb4{bottom:653.167467pt;}
.y15d{bottom:657.717760pt;}
.y127{bottom:657.751200pt;}
.yee{bottom:657.906827pt;}
.y8c{bottom:657.940267pt;}
.y69{bottom:663.065333pt;}
.y15c{bottom:673.720160pt;}
.y126{bottom:673.751200pt;}
.yed{bottom:673.909227pt;}
.y8b{bottom:673.940267pt;}
.y68{bottom:676.345333pt;}
.y15b{bottom:689.722560pt;}
.y125{bottom:689.751333pt;}
.yec{bottom:689.911627pt;}
.y8a{bottom:689.940267pt;}
.y67{bottom:697.785333pt;}
.y15a{bottom:705.724960pt;}
.y124{bottom:705.751333pt;}
.yeb{bottom:705.914027pt;}
.y89{bottom:705.940267pt;}
.y159{bottom:721.767200pt;}
.y123{bottom:721.791200pt;}
.yea{bottom:721.956267pt;}
.y88{bottom:721.980267pt;}
.y66{bottom:734.901173pt;}
.y158{bottom:737.769600pt;}
.y122{bottom:737.791200pt;}
.ye9{bottom:737.958667pt;}
.y87{bottom:737.980267pt;}
.y157{bottom:753.772000pt;}
.y121{bottom:753.791200pt;}
.ye8{bottom:753.961067pt;}
.y86{bottom:753.980267pt;}
.y65{bottom:761.665333pt;}
.y156{bottom:769.774400pt;}
.y120{bottom:769.791200pt;}
.ye7{bottom:769.963467pt;}
.y85{bottom:769.980267pt;}
.y155{bottom:785.776800pt;}
.y11f{bottom:785.791200pt;}
.ye6{bottom:785.965867pt;}
.y84{bottom:785.980267pt;}
.y64{bottom:785.980373pt;}
.y1d6{bottom:786.284587pt;}
.y1a1{bottom:786.300267pt;}
.y63{bottom:801.345333pt;}
.y154{bottom:801.779200pt;}
.y11e{bottom:801.791200pt;}
.ye5{bottom:801.968267pt;}
.y83{bottom:801.980267pt;}
.y153{bottom:817.781600pt;}
.y11d{bottom:817.791200pt;}
.ye4{bottom:817.970667pt;}
.y82{bottom:817.980267pt;}
.y3{bottom:830.645333pt;}
.y152{bottom:833.784000pt;}
.y11c{bottom:833.791200pt;}
.ye3{bottom:833.973067pt;}
.y81{bottom:833.980267pt;}
.y151{bottom:849.786400pt;}
.y11b{bottom:849.791200pt;}
.ye2{bottom:849.975467pt;}
.y80{bottom:849.980267pt;}
.y26{bottom:854.338533pt;}
.y57{bottom:861.825333pt;}
.y150{bottom:865.788800pt;}
.y11a{bottom:865.791200pt;}
.y111{bottom:865.977867pt;}
.y14a{bottom:865.980267pt;}
.y30{bottom:876.944000pt;}
.y1{bottom:879.110667pt;}
.y119{bottom:881.791200pt;}
.y7f{bottom:881.980267pt;}
.y180{bottom:912.857867pt;}
.y110{bottom:913.046933pt;}
.y118{bottom:913.178000pt;}
.y7e{bottom:913.366933pt;}
.y2{bottom:918.559067pt;}
.yae{bottom:920.499333pt;}
.h12{height:-476.314667pt;}
.h1d{height:-39.778667pt;}
.hb{height:18.441562pt;}
.h13{height:18.663750pt;}
.h7{height:29.550937pt;}
.h10{height:29.625000pt;}
.h16{height:29.773125pt;}
.h15{height:29.794062pt;}
.h18{height:30.694375pt;}
.h11{height:32.000000pt;}
.hc{height:32.531250pt;}
.he{height:33.328125pt;}
.h1c{height:33.351562pt;}
.h5{height:34.359375pt;}
.h3{height:34.368000pt;}
.h21{height:36.001250pt;}
.hf{height:36.218125pt;}
.h25{height:36.883125pt;}
.h19{height:36.909063pt;}
.hd{height:37.105312pt;}
.h23{height:38.024375pt;}
.h8{height:44.437500pt;}
.ha{height:55.550625pt;}
.h1b{height:55.892279pt;}
.h1f{height:55.892813pt;}
.h6{height:58.652344pt;}
.h14{height:58.865625pt;}
.h9{height:62.879062pt;}
.h1a{height:63.145625pt;}
.h2{height:66.352000pt;}
.h4{height:109.310667pt;}
.h17{height:206.613333pt;}
.h1e{height:364.724000pt;}
.h24{height:897.070667pt;}
.h20{height:897.637333pt;}
.h22{height:897.638667pt;}
.h27{height:899.526667pt;}
.h26{height:900.094667pt;}
.h28{height:900.661333pt;}
.h1{height:990.000000pt;}
.h0{height:990.236000pt;}
.w8{width:-582.162667pt;}
.w9{width:-202.394667pt;}
.wa{width:-42.034667pt;}
.w7{width:0.944000pt;}
.we{width:1.980000pt;}
.w10{width:2.736000pt;}
.wb{width:2.925333pt;}
.w3{width:84.352000pt;}
.w2{width:155.232000pt;}
.w5{width:160.346667pt;}
.w4{width:379.773333pt;}
.w6{width:722.834667pt;}
.wf{width:723.022667pt;}
.wd{width:723.778667pt;}
.wc{width:724.816000pt;}
.w0{width:725.669333pt;}
.w1{width:726.000000pt;}
.x43{left:-674.659600pt;}
.x34{left:-673.714667pt;}
.x35{left:-665.554667pt;}
.x4a{left:-664.463600pt;}
.x46{left:-658.819600pt;}
.x3c{left:-657.714667pt;}
.x44{left:-650.627467pt;}
.x45{left:-626.627467pt;}
.x39{left:-621.522667pt;}
.x37{left:-615.602667pt;}
.x2e{left:-591.282667pt;}
.x47{left:-555.432800pt;}
.x2f{left:-505.368000pt;}
.x31{left:-486.288000pt;}
.x3a{left:-479.728000pt;}
.xa{left:-475.297173pt;}
.x38{left:-471.728000pt;}
.xc{left:-469.702933pt;}
.x8{left:-467.306533pt;}
.x11{left:-465.862933pt;}
.x9{left:-459.305253pt;}
.x3b{left:-454.128000pt;}
.x30{left:-452.848000pt;}
.xd{left:-386.568853pt;}
.x36{left:-361.808000pt;}
.xe{left:-332.422933pt;}
.x4{left:-306.982933pt;}
.x6{left:-287.862933pt;}
.xf{left:-279.222933pt;}
.xb{left:-264.502933pt;}
.x10{left:-262.742933pt;}
.x5{left:-254.502933pt;}
.x33{left:-202.701333pt;}
.x32{left:-73.421333pt;}
.x7{left:-2.423653pt;}
.x0{left:0.000000pt;}
.x3d{left:1.889333pt;}
.x1c{left:2.834667pt;}
.x14{left:49.889733pt;}
.x3e{left:51.009733pt;}
.x13{left:52.157467pt;}
.x1d{left:57.280000pt;}
.x15{left:59.154667pt;}
.x26{left:60.114667pt;}
.x2c{left:65.120000pt;}
.x40{left:66.759813pt;}
.x25{left:67.941067pt;}
.x16{left:75.232000pt;}
.x18{left:76.800000pt;}
.x1a{left:95.880000pt;}
.x3f{left:99.016933pt;}
.x21{left:101.312000pt;}
.x29{left:104.146667pt;}
.x1f{left:107.232000pt;}
.x24{left:110.706667pt;}
.x19{left:129.320000pt;}
.x17{left:143.501333pt;}
.x4c{left:162.761867pt;}
.x49{left:163.707200pt;}
.x42{left:170.144613pt;}
.x2{left:209.887200pt;}
.x12{left:236.238133pt;}
.x22{left:243.106667pt;}
.x2a{left:245.941333pt;}
.x20{left:251.106667pt;}
.x28{left:253.952427pt;}
.x1{left:259.715200pt;}
.x23{left:268.706667pt;}
.x2b{left:271.541333pt;}
.x1e{left:361.026667pt;}
.x27{left:363.854827pt;}
.x1b{left:523.288000pt;}
.x3{left:525.272000pt;}
.x4b{left:578.062560pt;}
.x48{left:579.013733pt;}
.x41{left:651.850053pt;}
.x2d{left:724.724000pt;}
}




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