
    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_67c0ca5d96a7b8ddb9c56a17.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.998000;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_b46782d819977cbbe202e508.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.944000;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8a69bd822cc2951d45828964.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.100000;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_ef50372a8dd3f2d9824557db.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.115000;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_1cf81ce325f3d85c6178577d.woff2')format("woff");}.ff6{font-family:ff6;line-height:2.230469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_892313047f73af2278de546e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.023000;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_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_368d438b08ddcf11270357c3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.934000;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_a12926c207225281a226b5d2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7fd110d2cc29e79757666574.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.715820;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_c2afb5c9fb7b28ee71b0ac39.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.702148;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_d71c3ac72a95189acca2f46d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.931152;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_ed24d62b41eff65a07b21a96.woff2')format("woff");}.fff{font-family:fff;line-height:0.895996;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_c646b0e496875160cf53fc3a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.861816;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_9e088919be83dd1da9deb346.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_cf45aca3650cb0b55a7fb712.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.677734;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.va{vertical-align:-25.200000px;}
.v9{vertical-align:-18.000000px;}
.v3{vertical-align:-14.448000px;}
.v5{vertical-align:-13.200000px;}
.vd{vertical-align:-9.600000px;}
.v1{vertical-align:-6.048000px;}
.v7{vertical-align:-1.188000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.188000px;}
.v2{vertical-align:6.000000px;}
.vc{vertical-align:9.600000px;}
.v11{vertical-align:12.000000px;}
.v6{vertical-align:13.200000px;}
.v4{vertical-align:14.400000px;}
.vb{vertical-align:19.200000px;}
.ve{vertical-align:33.600000px;}
.vf{vertical-align:54.000000px;}
.v10{vertical-align:57.600000px;}
.ls9f{letter-spacing:-4.824000px;}
.ls3f{letter-spacing:-3.600000px;}
.lsb8{letter-spacing:-2.820000px;}
.ls4f{letter-spacing:-2.448000px;}
.ls4c{letter-spacing:-1.656000px;}
.lsb1{letter-spacing:-1.500000px;}
.ls20{letter-spacing:-1.440000px;}
.ls89{letter-spacing:-1.386000px;}
.lsb3{letter-spacing:-1.380000px;}
.ls1e{letter-spacing:-1.224000px;}
.ls6b{letter-spacing:-1.200000px;}
.ls3e{letter-spacing:-1.152000px;}
.lsb2{letter-spacing:-1.140000px;}
.lsb4{letter-spacing:-1.080000px;}
.ls14{letter-spacing:-0.864000px;}
.ls57{letter-spacing:-0.858000px;}
.ls9d{letter-spacing:-0.756000px;}
.ls55{letter-spacing:-0.726000px;}
.lsa6{letter-spacing:-0.660000px;}
.ls51{letter-spacing:-0.633600px;}
.ls87{letter-spacing:-0.594000px;}
.ls13{letter-spacing:-0.576000px;}
.ls33{letter-spacing:-0.540000px;}
.ls53{letter-spacing:-0.528000px;}
.ls2e{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.480000px;}
.ls1b{letter-spacing:-0.432000px;}
.ls16{letter-spacing:-0.420000px;}
.ls52{letter-spacing:-0.396000px;}
.ls18{letter-spacing:-0.378000px;}
.ls1a{letter-spacing:-0.360000px;}
.ls88{letter-spacing:-0.330000px;}
.ls19{letter-spacing:-0.300000px;}
.ls15{letter-spacing:-0.288000px;}
.ls4e{letter-spacing:-0.258000px;}
.ls9e{letter-spacing:-0.240000px;}
.ls2c{letter-spacing:-0.216000px;}
.ls4d{letter-spacing:-0.198000px;}
.lsa5{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.168000px;}
.ls1c{letter-spacing:-0.144000px;}
.lsba{letter-spacing:-0.132000px;}
.lsc{letter-spacing:-0.120000px;}
.ls1f{letter-spacing:-0.072000px;}
.ls86{letter-spacing:-0.066000px;}
.ls83{letter-spacing:-0.060000px;}
.ls50{letter-spacing:-0.051600px;}
.ls9c{letter-spacing:-0.036000px;}
.lse{letter-spacing:0.000000px;}
.ls41{letter-spacing:0.024000px;}
.ls47{letter-spacing:0.048000px;}
.ls82{letter-spacing:0.060000px;}
.ls84{letter-spacing:0.066000px;}
.ls12{letter-spacing:0.084000px;}
.lsf{letter-spacing:0.120000px;}
.ls40{letter-spacing:0.132000px;}
.ls21{letter-spacing:0.144000px;}
.ls5b{letter-spacing:0.180000px;}
.ls81{letter-spacing:0.191400px;}
.ls80{letter-spacing:0.210000px;}
.ls10{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.240000px;}
.ls8a{letter-spacing:0.259200px;}
.ls49{letter-spacing:0.264000px;}
.lsa{letter-spacing:0.288000px;}
.lsa8{letter-spacing:0.300000px;}
.ls56{letter-spacing:0.330000px;}
.ls29{letter-spacing:0.338400px;}
.ls5{letter-spacing:0.360000px;}
.ls5a{letter-spacing:0.374400px;}
.ls85{letter-spacing:0.396000px;}
.ls59{letter-spacing:0.410400px;}
.lsaa{letter-spacing:0.420000px;}
.ls8b{letter-spacing:0.432000px;}
.ls54{letter-spacing:0.462000px;}
.ls6{letter-spacing:0.468000px;}
.ls63{letter-spacing:0.480000px;}
.ls7{letter-spacing:0.482400px;}
.ls4{letter-spacing:0.504000px;}
.ls28{letter-spacing:0.511200px;}
.lsb7{letter-spacing:0.540000px;}
.ls8{letter-spacing:0.576000px;}
.ls6a{letter-spacing:0.600000px;}
.lsa2{letter-spacing:0.780000px;}
.ls2d{letter-spacing:0.864000px;}
.ls3b{letter-spacing:0.900000px;}
.ls5d{letter-spacing:0.960000px;}
.ls31{letter-spacing:1.110000px;}
.ls8c{letter-spacing:1.128000px;}
.ls30{letter-spacing:1.152000px;}
.lsad{letter-spacing:1.188000px;}
.lsa3{letter-spacing:1.194000px;}
.lsae{letter-spacing:1.200000px;}
.lsb6{letter-spacing:1.320000px;}
.ls34{letter-spacing:1.368000px;}
.lsb5{letter-spacing:1.440000px;}
.lsb9{letter-spacing:1.560000px;}
.ls4a{letter-spacing:1.584000px;}
.ls9b{letter-spacing:1.620000px;}
.ls26{letter-spacing:1.656000px;}
.ls2b{letter-spacing:2.376000px;}
.ls3c{letter-spacing:2.440800px;}
.lsa1{letter-spacing:3.180000px;}
.ls37{letter-spacing:3.600000px;}
.lsb0{letter-spacing:4.092000px;}
.ls43{letter-spacing:4.536000px;}
.ls48{letter-spacing:4.608000px;}
.ls9{letter-spacing:4.752000px;}
.lsa9{letter-spacing:5.580000px;}
.ls1d{letter-spacing:5.976000px;}
.lsa7{letter-spacing:6.780000px;}
.ls2a{letter-spacing:7.200000px;}
.ls35{letter-spacing:8.352000px;}
.lsa4{letter-spacing:9.180000px;}
.lsb{letter-spacing:9.576000px;}
.ls92{letter-spacing:10.020000px;}
.lsab{letter-spacing:10.380000px;}
.ls3d{letter-spacing:10.800000px;}
.ls6d{letter-spacing:11.580000px;}
.ls36{letter-spacing:11.952000px;}
.ls38{letter-spacing:13.176000px;}
.ls32{letter-spacing:14.400000px;}
.lsaf{letter-spacing:14.784000px;}
.lsac{letter-spacing:15.180000px;}
.ls27{letter-spacing:16.776000px;}
.ls44{letter-spacing:17.886000px;}
.ls58{letter-spacing:18.000000px;}
.ls91{letter-spacing:22.020000px;}
.ls3a{letter-spacing:22.752000px;}
.ls9a{letter-spacing:22.920000px;}
.ls4b{letter-spacing:23.976000px;}
.ls68{letter-spacing:26.352000px;}
.ls46{letter-spacing:27.480000px;}
.ls23{letter-spacing:29.160000px;}
.ls73{letter-spacing:29.580000px;}
.ls7c{letter-spacing:30.780000px;}
.ls7a{letter-spacing:33.180000px;}
.ls39{letter-spacing:35.208000px;}
.ls62{letter-spacing:35.220000px;}
.ls75{letter-spacing:35.580000px;}
.ls90{letter-spacing:37.620000px;}
.ls8d{letter-spacing:38.820000px;}
.ls99{letter-spacing:41.760000px;}
.ls69{letter-spacing:41.976000px;}
.ls7d{letter-spacing:43.980000px;}
.ls72{letter-spacing:46.380000px;}
.ls74{letter-spacing:48.780000px;}
.ls70{letter-spacing:51.180000px;}
.ls8f{letter-spacing:53.220000px;}
.ls8e{letter-spacing:54.420000px;}
.ls79{letter-spacing:54.780000px;}
.ls67{letter-spacing:55.980000px;}
.ls64{letter-spacing:56.820000px;}
.ls6f{letter-spacing:59.580000px;}
.ls71{letter-spacing:61.980000px;}
.ls24{letter-spacing:64.800000px;}
.ls7e{letter-spacing:65.580000px;}
.lsa0{letter-spacing:66.780000px;}
.ls7f{letter-spacing:67.980000px;}
.ls6c{letter-spacing:72.780000px;}
.ls7b{letter-spacing:77.580000px;}
.ls93{letter-spacing:81.180000px;}
.ls95{letter-spacing:85.980000px;}
.ls94{letter-spacing:87.180000px;}
.ls98{letter-spacing:93.180000px;}
.ls77{letter-spacing:94.380000px;}
.ls78{letter-spacing:97.980000px;}
.ls6e{letter-spacing:100.380000px;}
.ls76{letter-spacing:103.980000px;}
.ls66{letter-spacing:113.580000px;}
.ls96{letter-spacing:115.980000px;}
.ls97{letter-spacing:117.180000px;}
.ls65{letter-spacing:121.980000px;}
.ls25{letter-spacing:122.400000px;}
.ls5e{letter-spacing:128.820000px;}
.ls42{letter-spacing:177.408000px;}
.ls45{letter-spacing:200.208000px;}
.ls2f{letter-spacing:292.380000px;}
.ls5f{letter-spacing:331.620000px;}
.ls61{letter-spacing:371.220000px;}
.ls3{letter-spacing:474.780000px;}
.ls5c{letter-spacing:522.420000px;}
.ls60{letter-spacing:533.220000px;}
.ls2{letter-spacing:569.580000px;}
.ls22{letter-spacing:682.200000px;}
.ls1{letter-spacing:889.980000px;}
.ls0{letter-spacing:1156.380000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-72.000000px;}
.ws9a{word-spacing:-66.000000px;}
.wse5{word-spacing:-60.000000px;}
.ws96{word-spacing:-51.342000px;}
.ws9c{word-spacing:-48.048000px;}
.ws9e{word-spacing:-48.000000px;}
.wsc2{word-spacing:-41.976000px;}
.ws94{word-spacing:-39.528000px;}
.ws9f{word-spacing:-39.204000px;}
.ws9d{word-spacing:-38.966400px;}
.ws99{word-spacing:-29.055600px;}
.wsc0{word-spacing:-26.352000px;}
.wsa4{word-spacing:-23.976000px;}
.ws9b{word-spacing:-22.656000px;}
.ws2{word-spacing:-21.252000px;}
.ws1{word-spacing:-21.084000px;}
.ws5e{word-spacing:-20.592000px;}
.ws3b{word-spacing:-20.088000px;}
.wsb5{word-spacing:-19.800000px;}
.ws3{word-spacing:-19.584000px;}
.ws3d{word-spacing:-19.512000px;}
.ws38{word-spacing:-19.440000px;}
.ws3a{word-spacing:-19.368000px;}
.ws5{word-spacing:-19.224000px;}
.ws61{word-spacing:-19.152000px;}
.ws3e{word-spacing:-19.008000px;}
.wsc{word-spacing:-18.936000px;}
.ws5d{word-spacing:-18.864000px;}
.ws3c{word-spacing:-18.792000px;}
.ws60{word-spacing:-18.720000px;}
.ws5f{word-spacing:-18.648000px;}
.ws7b{word-spacing:-18.576000px;}
.ws4{word-spacing:-18.360000px;}
.ws37{word-spacing:-18.216000px;}
.ws115{word-spacing:-18.018000px;}
.ws7c{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.928000px;}
.ws8{word-spacing:-17.856000px;}
.ws7d{word-spacing:-17.712000px;}
.wsb{word-spacing:-17.640000px;}
.wscb{word-spacing:-17.292000px;}
.ws114{word-spacing:-17.094000px;}
.wse8{word-spacing:-16.920000px;}
.ws52{word-spacing:-16.776000px;}
.ws113{word-spacing:-16.368000px;}
.ws111{word-spacing:-16.260000px;}
.wscc{word-spacing:-16.236000px;}
.wsc9{word-spacing:-16.200000px;}
.wse9{word-spacing:-16.140000px;}
.wsf6{word-spacing:-16.080000px;}
.ws5c{word-spacing:-16.020000px;}
.ws10f{word-spacing:-15.960000px;}
.ws112{word-spacing:-15.900000px;}
.ws10e{word-spacing:-15.840000px;}
.wsb8{word-spacing:-15.780000px;}
.ws7{word-spacing:-15.720000px;}
.wsb9{word-spacing:-15.660000px;}
.wsca{word-spacing:-15.600000px;}
.ws0{word-spacing:-15.540000px;}
.wsf7{word-spacing:-15.480000px;}
.wsb7{word-spacing:-15.420000px;}
.wsc8{word-spacing:-15.360000px;}
.wsdc{word-spacing:-15.300000px;}
.wsda{word-spacing:-15.240000px;}
.wsbb{word-spacing:-15.180000px;}
.wsdb{word-spacing:-14.880000px;}
.wse6{word-spacing:-14.760000px;}
.wsb6{word-spacing:-14.700000px;}
.wsde{word-spacing:-14.640000px;}
.ws110{word-spacing:-14.520000px;}
.ws6{word-spacing:-14.040000px;}
.wsa1{word-spacing:-13.992000px;}
.wsba{word-spacing:-13.980000px;}
.wsaf{word-spacing:-13.536000px;}
.ws79{word-spacing:-13.176000px;}
.ws74{word-spacing:-11.952000px;}
.ws39{word-spacing:-11.214000px;}
.ws95{word-spacing:-11.046000px;}
.ws81{word-spacing:-10.800000px;}
.ws97{word-spacing:-10.794000px;}
.ws98{word-spacing:-10.710000px;}
.ws10b{word-spacing:-10.380000px;}
.wse7{word-spacing:-9.612000px;}
.ws30{word-spacing:-9.576000px;}
.wse3{word-spacing:-9.324000px;}
.wsf8{word-spacing:-9.180000px;}
.wsdd{word-spacing:-9.108000px;}
.wse4{word-spacing:-8.856000px;}
.ws6b{word-spacing:-8.352000px;}
.ws53{word-spacing:-7.200000px;}
.wsfa{word-spacing:-6.780000px;}
.ws20{word-spacing:-5.976000px;}
.wsff{word-spacing:-5.580000px;}
.ws66{word-spacing:-4.752000px;}
.ws73{word-spacing:-4.248000px;}
.ws117{word-spacing:-4.080000px;}
.ws49{word-spacing:-3.960000px;}
.wsc4{word-spacing:-3.816000px;}
.ws76{word-spacing:-3.600000px;}
.wsfe{word-spacing:-3.540000px;}
.ws40{word-spacing:-3.528000px;}
.ws48{word-spacing:-3.240000px;}
.ws87{word-spacing:-3.168000px;}
.ws86{word-spacing:-3.096000px;}
.ws47{word-spacing:-3.024000px;}
.ws118{word-spacing:-2.820000px;}
.wsbf{word-spacing:-2.664000px;}
.ws4f{word-spacing:-2.376000px;}
.ws11d{word-spacing:-2.340000px;}
.ws7a{word-spacing:-2.232000px;}
.ws28{word-spacing:-2.160000px;}
.ws104{word-spacing:-2.040000px;}
.ws8d{word-spacing:-1.944000px;}
.ws1b{word-spacing:-1.872000px;}
.ws126{word-spacing:-1.860000px;}
.ws129{word-spacing:-1.740000px;}
.wsb1{word-spacing:-1.584000px;}
.ws12e{word-spacing:-1.560000px;}
.ws5b{word-spacing:-1.440000px;}
.ws127{word-spacing:-1.200000px;}
.ws64{word-spacing:-1.152000px;}
.ws128{word-spacing:-1.140000px;}
.ws82{word-spacing:-1.008000px;}
.wsc1{word-spacing:-0.936000px;}
.wscd{word-spacing:-0.900000px;}
.wsae{word-spacing:-0.864000px;}
.ws25{word-spacing:-0.792000px;}
.ws116{word-spacing:-0.780000px;}
.ws6d{word-spacing:-0.720000px;}
.ws18{word-spacing:-0.660000px;}
.ws54{word-spacing:-0.648000px;}
.ws70{word-spacing:-0.576000px;}
.ws11{word-spacing:-0.540000px;}
.ws80{word-spacing:-0.504000px;}
.wscf{word-spacing:-0.480000px;}
.wsb0{word-spacing:-0.462000px;}
.ws10{word-spacing:-0.420000px;}
.wsd5{word-spacing:-0.396000px;}
.ws16{word-spacing:-0.360000px;}
.ws11b{word-spacing:-0.330000px;}
.wsd{word-spacing:-0.300000px;}
.ws27{word-spacing:-0.288000px;}
.wsd0{word-spacing:-0.240000px;}
.ws12{word-spacing:-0.216000px;}
.wsc6{word-spacing:-0.180000px;}
.ws2c{word-spacing:-0.144000px;}
.wsfd{word-spacing:-0.120000px;}
.wse1{word-spacing:-0.072000px;}
.wsce{word-spacing:-0.060000px;}
.wse{word-spacing:0.000000px;}
.wsea{word-spacing:0.036000px;}
.wsf{word-spacing:0.060000px;}
.wsd3{word-spacing:0.066000px;}
.ws33{word-spacing:0.072000px;}
.ws62{word-spacing:0.120000px;}
.ws1e{word-spacing:0.144000px;}
.wseb{word-spacing:0.180000px;}
.ws4e{word-spacing:0.216000px;}
.wsed{word-spacing:0.240000px;}
.ws14{word-spacing:0.252000px;}
.ws17{word-spacing:0.288000px;}
.ws1a{word-spacing:0.300000px;}
.wsac{word-spacing:0.330000px;}
.ws13{word-spacing:0.336000px;}
.ws36{word-spacing:0.360000px;}
.ws134{word-spacing:0.396000px;}
.ws3f{word-spacing:0.420000px;}
.ws1c{word-spacing:0.432000px;}
.ws133{word-spacing:0.462000px;}
.ws19{word-spacing:0.480000px;}
.ws83{word-spacing:0.504000px;}
.ws132{word-spacing:0.528000px;}
.ws108{word-spacing:0.540000px;}
.ws15{word-spacing:0.576000px;}
.wsd4{word-spacing:0.594000px;}
.wsf9{word-spacing:0.660000px;}
.ws103{word-spacing:0.720000px;}
.wsc7{word-spacing:0.840000px;}
.wsb4{word-spacing:0.858000px;}
.ws6c{word-spacing:0.864000px;}
.ws65{word-spacing:0.936000px;}
.wsec{word-spacing:0.960000px;}
.wsa0{word-spacing:0.990000px;}
.wsf3{word-spacing:1.080000px;}
.ws122{word-spacing:1.200000px;}
.ws24{word-spacing:1.224000px;}
.wsf2{word-spacing:1.260000px;}
.wse2{word-spacing:1.368000px;}
.ws11c{word-spacing:1.380000px;}
.ws2b{word-spacing:1.440000px;}
.wsab{word-spacing:1.656000px;}
.ws4a{word-spacing:1.728000px;}
.wsbc{word-spacing:2.016000px;}
.ws44{word-spacing:2.160000px;}
.wsb3{word-spacing:2.442000px;}
.ws4b{word-spacing:2.448000px;}
.ws67{word-spacing:2.592000px;}
.wsa5{word-spacing:2.664000px;}
.wsa3{word-spacing:2.808000px;}
.ws12a{word-spacing:2.820000px;}
.ws105{word-spacing:2.940000px;}
.ws43{word-spacing:2.952000px;}
.ws100{word-spacing:3.060000px;}
.ws10a{word-spacing:3.120000px;}
.wsd2{word-spacing:3.240000px;}
.ws68{word-spacing:3.384000px;}
.wsb2{word-spacing:3.498000px;}
.ws131{word-spacing:3.564000px;}
.ws93{word-spacing:3.600000px;}
.ws109{word-spacing:3.660000px;}
.wsc5{word-spacing:3.672000px;}
.ws56{word-spacing:3.816000px;}
.ws55{word-spacing:4.032000px;}
.wsa8{word-spacing:4.104000px;}
.ws11f{word-spacing:4.140000px;}
.ws1d{word-spacing:4.176000px;}
.ws120{word-spacing:4.560000px;}
.ws91{word-spacing:4.824000px;}
.ws11e{word-spacing:4.860000px;}
.ws90{word-spacing:5.112000px;}
.ws57{word-spacing:5.256000px;}
.ws42{word-spacing:5.328000px;}
.ws1f{word-spacing:5.760000px;}
.wsd8{word-spacing:6.048000px;}
.wsa9{word-spacing:6.408000px;}
.wsaa{word-spacing:6.480000px;}
.ws23{word-spacing:6.552000px;}
.ws58{word-spacing:6.840000px;}
.ws59{word-spacing:6.984000px;}
.wsf1{word-spacing:7.260000px;}
.wsdf{word-spacing:7.272000px;}
.ws5a{word-spacing:7.632000px;}
.ws107{word-spacing:7.740000px;}
.ws22{word-spacing:7.776000px;}
.ws32{word-spacing:8.064000px;}
.ws75{word-spacing:8.136000px;}
.ws106{word-spacing:8.460000px;}
.ws50{word-spacing:8.568000px;}
.wsc3{word-spacing:8.640000px;}
.ws46{word-spacing:8.784000px;}
.wsbe{word-spacing:8.928000px;}
.ws88{word-spacing:9.360000px;}
.ws2e{word-spacing:9.648000px;}
.ws89{word-spacing:9.792000px;}
.ws31{word-spacing:10.008000px;}
.ws2f{word-spacing:10.152000px;}
.ws102{word-spacing:10.320000px;}
.ws35{word-spacing:10.512000px;}
.ws6e{word-spacing:10.584000px;}
.ws8a{word-spacing:10.728000px;}
.ws101{word-spacing:10.860000px;}
.wsd9{word-spacing:10.872000px;}
.wsa2{word-spacing:11.232000px;}
.ws34{word-spacing:11.376000px;}
.ws2d{word-spacing:11.664000px;}
.wse0{word-spacing:12.024000px;}
.wsf5{word-spacing:12.720000px;}
.ws8c{word-spacing:12.816000px;}
.wsf4{word-spacing:12.840000px;}
.ws78{word-spacing:12.960000px;}
.wsd7{word-spacing:13.248000px;}
.ws77{word-spacing:13.320000px;}
.ws8f{word-spacing:13.536000px;}
.ws8b{word-spacing:13.608000px;}
.ws123{word-spacing:13.740000px;}
.ws71{word-spacing:13.752000px;}
.ws125{word-spacing:13.860000px;}
.ws4d{word-spacing:14.184000px;}
.ws130{word-spacing:14.322000px;}
.ws124{word-spacing:14.460000px;}
.ws6f{word-spacing:14.472000px;}
.wsee{word-spacing:14.760000px;}
.ws12f{word-spacing:14.850000px;}
.ws11a{word-spacing:14.940000px;}
.ws4c{word-spacing:14.976000px;}
.ws119{word-spacing:15.660000px;}
.ws69{word-spacing:15.984000px;}
.ws51{word-spacing:17.208000px;}
.ws6a{word-spacing:17.280000px;}
.wsd1{word-spacing:17.352000px;}
.wsbd{word-spacing:17.784000px;}
.ws26{word-spacing:18.072000px;}
.ws21{word-spacing:18.432000px;}
.ws92{word-spacing:18.576000px;}
.ws72{word-spacing:19.728000px;}
.wsd6{word-spacing:20.952000px;}
.ws63{word-spacing:22.824000px;}
.ws121{word-spacing:22.860000px;}
.ws84{word-spacing:23.040000px;}
.ws85{word-spacing:23.328000px;}
.ws12b{word-spacing:24.720000px;}
.ws12c{word-spacing:24.900000px;}
.ws12d{word-spacing:25.080000px;}
.wsad{word-spacing:25.776000px;}
.ws41{word-spacing:27.648000px;}
.wsef{word-spacing:28.152000px;}
.ws8e{word-spacing:32.976000px;}
.ws29{word-spacing:33.624000px;}
.ws2a{word-spacing:34.128000px;}
.ws7f{word-spacing:35.712000px;}
.ws7e{word-spacing:36.576000px;}
.wsf0{word-spacing:42.408000px;}
.ws45{word-spacing:43.272000px;}
.ws10c{word-spacing:43.860000px;}
.ws10d{word-spacing:44.280000px;}
.wsfc{word-spacing:66.900000px;}
.wsfb{word-spacing:67.260000px;}
.wsa7{word-spacing:77.040000px;}
.wsa6{word-spacing:77.328000px;}
._2c{margin-left:-42.357600px;}
._2d{margin-left:-40.615200px;}
._2b{margin-left:-27.696000px;}
._2a{margin-left:-26.517600px;}
._25{margin-left:-24.724800px;}
._23{margin-left:-23.616000px;}
._26{margin-left:-22.586400px;}
._27{margin-left:-21.513600px;}
._1b{margin-left:-17.352000px;}
._1a{margin-left:-15.978000px;}
._1d{margin-left:-14.938800px;}
._22{margin-left:-13.489200px;}
._20{margin-left:-12.434400px;}
._11{margin-left:-10.584000px;}
._10{margin-left:-9.288000px;}
._12{margin-left:-8.224800px;}
._7{margin-left:-6.477600px;}
._9{margin-left:-4.946400px;}
._19{margin-left:-3.789600px;}
._5{margin-left:-2.702400px;}
._2{margin-left:-1.200000px;}
._0{width:1.140000px;}
._6{width:2.286000px;}
._b{width:3.387600px;}
._c{width:4.927200px;}
._8{width:5.976000px;}
._1e{width:7.166400px;}
._14{width:8.263200px;}
._f{width:9.552000px;}
._e{width:11.083200px;}
._d{width:12.484800px;}
._21{width:13.759200px;}
._13{width:15.674400px;}
._1c{width:16.869600px;}
._a{width:18.193200px;}
._28{width:21.166800px;}
._17{width:22.874400px;}
._24{width:24.501600px;}
._29{width:26.678400px;}
._40{width:28.080000px;}
._41{width:29.166000px;}
._15{width:31.082400px;}
._30{width:35.580000px;}
._18{width:37.080000px;}
._2f{width:41.176800px;}
._2e{width:42.861600px;}
._31{width:45.000000px;}
._38{width:46.920000px;}
._42{width:67.014000px;}
._37{width:75.720000px;}
._32{width:79.680000px;}
._3e{width:82.080000px;}
._3f{width:95.760000px;}
._34{width:118.380000px;}
._3d{width:135.180000px;}
._39{width:138.420000px;}
._3c{width:147.180000px;}
._33{width:176.700000px;}
._35{width:184.800000px;}
._3a{width:217.200000px;}
._36{width:238.380000px;}
._3b{width:273.180000px;}
._1f{width:316.494000px;}
._3{width:643.980000px;}
._4{width:775.980000px;}
._16{width:787.980000px;}
._1{width:880.620000px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(82,82,84);}
.fc1{color:transparent;}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:24.000000px;}
.fsb{font-size:36.000000px;}
.fsa{font-size:39.600000px;}
.fs6{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs9{font-size:51.600000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:75.894664px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.300000px;}
.y155{bottom:4.200000px;}
.y7{bottom:5.100000px;}
.ya{bottom:5.700000px;}
.yf1{bottom:7.200000px;}
.yef{bottom:7.500000px;}
.yf6{bottom:7.501500px;}
.ye7{bottom:9.000000px;}
.yeb{bottom:10.200000px;}
.ye8{bottom:10.500000px;}
.yf7{bottom:10.501500px;}
.y163{bottom:14.100000px;}
.y160{bottom:23.700000px;}
.y11b{bottom:26.100000px;}
.ye3{bottom:33.000000px;}
.y119{bottom:47.400000px;}
.y124{bottom:51.600000px;}
.y134{bottom:51.900000px;}
.y117{bottom:59.700000px;}
.y114{bottom:61.200000px;}
.y112{bottom:61.500000px;}
.y4{bottom:67.800000px;}
.y131{bottom:76.800000px;}
.y120{bottom:90.300000px;}
.y122{bottom:92.400000px;}
.y68{bottom:97.212000px;}
.y13f{bottom:99.012000px;}
.yf3{bottom:100.800000px;}
.y11d{bottom:101.400000px;}
.y1a0{bottom:102.900000px;}
.ycf{bottom:103.500000px;}
.ybb{bottom:105.030000px;}
.y16c{bottom:107.400000px;}
.yf2{bottom:108.300000px;}
.y38{bottom:110.100000px;}
.y13e{bottom:117.012000px;}
.y118{bottom:119.400000px;}
.y67{bottom:120.612000px;}
.y90{bottom:120.618000px;}
.y19f{bottom:122.400000px;}
.y11c{bottom:124.200000px;}
.yce{bottom:124.801500px;}
.y1d4{bottom:125.700000px;}
.yf0{bottom:126.300000px;}
.yba{bottom:128.124000px;}
.y16b{bottom:130.800000px;}
.y12c{bottom:132.606000px;}
.y37{bottom:133.500000px;}
.y19e{bottom:141.900000px;}
.y66{bottom:143.706000px;}
.y8f{bottom:143.712000px;}
.y1d3{bottom:145.200000px;}
.y11a{bottom:145.500000px;}
.ycd{bottom:146.400000px;}
.y16a{bottom:149.700000px;}
.yee{bottom:151.500000px;}
.yb9{bottom:151.524000px;}
.y36{bottom:153.600000px;}
.y12b{bottom:156.006000px;}
.yed{bottom:159.000000px;}
.y19d{bottom:161.400000px;}
.y35{bottom:164.700000px;}
.y65{bottom:167.106000px;}
.y8e{bottom:167.112000px;}
.ycc{bottom:168.306000px;}
.y169{bottom:168.900000px;}
.yb8{bottom:174.924000px;}
.ye2{bottom:177.600000px;}
.y12a{bottom:179.406000px;}
.y19c{bottom:180.600000px;}
.y116{bottom:183.600000px;}
.y1d2{bottom:183.900000px;}
.yec{bottom:186.600000px;}
.y34{bottom:187.800000px;}
.y168{bottom:188.400000px;}
.y64{bottom:190.200000px;}
.y8d{bottom:190.206000px;}
.ycb{bottom:191.400000px;}
.yb7{bottom:198.018000px;}
.y19b{bottom:200.100000px;}
.y129{bottom:202.500000px;}
.yea{bottom:203.100000px;}
.y1d1{bottom:203.400000px;}
.y167{bottom:207.900000px;}
.y1fb{bottom:211.200000px;}
.y33{bottom:211.206000px;}
.ye9{bottom:211.800000px;}
.ye4{bottom:212.100000px;}
.y63{bottom:213.600000px;}
.y8c{bottom:213.606000px;}
.yca{bottom:215.100000px;}
.y19a{bottom:219.600000px;}
.yb6{bottom:221.418000px;}
.y1d0{bottom:222.900000px;}
.y128{bottom:225.900000px;}
.y166{bottom:227.400000px;}
.ye6{bottom:228.900000px;}
.yc9{bottom:230.400000px;}
.y1fa{bottom:231.000000px;}
.y32{bottom:234.306000px;}
.y62{bottom:235.200000px;}
.y8b{bottom:237.006000px;}
.ye5{bottom:237.900000px;}
.y199{bottom:238.800000px;}
.y1cf{bottom:242.400000px;}
.yb5{bottom:244.818000px;}
.yc8{bottom:245.400000px;}
.y165{bottom:246.600000px;}
.y127{bottom:249.300000px;}
.y1f9{bottom:251.100000px;}
.y61{bottom:252.630000px;}
.yc7{bottom:253.800000px;}
.y31{bottom:257.706000px;}
.y198{bottom:259.800000px;}
.y8a{bottom:260.100000px;}
.y1ce{bottom:261.600000px;}
.y164{bottom:266.100000px;}
.y1f8{bottom:267.892500px;}
.yb4{bottom:267.912000px;}
.y126{bottom:269.700000px;}
.y60{bottom:275.724000px;}
.y197{bottom:278.100000px;}
.y123{bottom:279.000000px;}
.y1cd{bottom:281.100000px;}
.y30{bottom:281.106000px;}
.yc6{bottom:283.200000px;}
.y89{bottom:283.500000px;}
.y15f{bottom:286.200000px;}
.y1f7{bottom:289.194000px;}
.y196{bottom:289.200000px;}
.y161{bottom:290.400000px;}
.yb3{bottom:291.312000px;}
.yc5{bottom:294.294000px;}
.y5f{bottom:299.124000px;}
.y162{bottom:300.300000px;}
.y1cc{bottom:300.600000px;}
.ye1{bottom:303.600000px;}
.y2f{bottom:304.200000px;}
.y88{bottom:306.900000px;}
.y125{bottom:307.500000px;}
.y195{bottom:309.000000px;}
.y1f6{bottom:310.495500px;}
.ye0{bottom:314.706000px;}
.yb2{bottom:314.712000px;}
.y115{bottom:316.200000px;}
.yc4{bottom:318.906000px;}
.y1cb{bottom:319.800000px;}
.y194{bottom:320.106000px;}
.y5e{bottom:322.218000px;}
.y15e{bottom:325.800000px;}
.y2e{bottom:327.600000px;}
.y87{bottom:330.000000px;}
.y1f5{bottom:336.598500px;}
.ydf{bottom:337.800000px;}
.yb1{bottom:337.806000px;}
.y1ca{bottom:339.300000px;}
.yc3{bottom:341.994000px;}
.y193{bottom:343.506000px;}
.y15d{bottom:345.300000px;}
.y5d{bottom:345.618000px;}
.y121{bottom:348.900000px;}
.y2d{bottom:351.000000px;}
.y86{bottom:351.600000px;}
.y1c9{bottom:358.800000px;}
.yb0{bottom:361.206000px;}
.yde{bottom:361.272000px;}
.y15c{bottom:364.500000px;}
.y192{bottom:366.600000px;}
.yc2{bottom:366.612000px;}
.y85{bottom:369.000000px;}
.y5c{bottom:369.018000px;}
.y2c{bottom:374.100000px;}
.y1c8{bottom:378.000000px;}
.y1f4{bottom:379.498500px;}
.y15b{bottom:384.000000px;}
.yaf{bottom:384.300000px;}
.ydd{bottom:384.366000px;}
.y15a{bottom:388.200000px;}
.yc1{bottom:389.706000px;}
.y191{bottom:390.000000px;}
.y84{bottom:392.100000px;}
.y5b{bottom:392.112000px;}
.y2b{bottom:397.500000px;}
.y1f3{bottom:400.800000px;}
.y159{bottom:403.500000px;}
.yae{bottom:405.900000px;}
.ydc{bottom:407.766000px;}
.y190{bottom:411.600000px;}
.yc0{bottom:413.106000px;}
.y83{bottom:415.500000px;}
.y5a{bottom:415.512000px;}
.y1c7{bottom:417.000000px;}
.y2a{bottom:420.900000px;}
.y158{bottom:423.000000px;}
.yad{bottom:423.306000px;}
.y18f{bottom:428.730000px;}
.ydb{bottom:431.166000px;}
.ybf{bottom:436.195500px;}
.y1c6{bottom:436.500000px;}
.y1f2{bottom:437.400000px;}
.y82{bottom:438.900000px;}
.y59{bottom:438.912000px;}
.y29{bottom:440.700000px;}
.y157{bottom:442.200000px;}
.yac{bottom:446.706000px;}
.y113{bottom:451.200000px;}
.y28{bottom:451.800000px;}
.y18e{bottom:452.130000px;}
.yda{bottom:454.260000px;}
.y13d{bottom:455.106000px;}
.y1c5{bottom:455.700000px;}
.y1f1{bottom:456.900000px;}
.y156{bottom:461.700000px;}
.y81{bottom:462.000000px;}
.y58{bottom:462.006000px;}
.ybe{bottom:462.298500px;}
.yab{bottom:469.800000px;}
.y27{bottom:471.900000px;}
.y1c4{bottom:475.200000px;}
.y18d{bottom:475.530000px;}
.y1f0{bottom:476.100000px;}
.yd9{bottom:477.660000px;}
.y13c{bottom:478.506000px;}
.y154{bottom:481.800000px;}
.y26{bottom:483.024000px;}
.y80{bottom:485.400000px;}
.y57{bottom:485.406000px;}
.ybd{bottom:486.900000px;}
.yaa{bottom:493.212000px;}
.y1c3{bottom:494.700000px;}
.y18c{bottom:498.624000px;}
.yd8{bottom:501.060000px;}
.y13b{bottom:501.906000px;}
.y25{bottom:506.118000px;}
.y7f{bottom:508.800000px;}
.y56{bottom:508.806000px;}
.ybc{bottom:508.818000px;}
.y1ef{bottom:513.600000px;}
.y1c2{bottom:513.900000px;}
.y153{bottom:516.000000px;}
.ya9{bottom:516.306000px;}
.y18b{bottom:522.024000px;}
.yd7{bottom:524.154000px;}
.y13a{bottom:525.000000px;}
.y24{bottom:529.518000px;}
.y7e{bottom:531.900000px;}
.y55{bottom:531.912000px;}
.y1ee{bottom:533.100000px;}
.y1c1{bottom:533.400000px;}
.y152{bottom:539.400000px;}
.ya8{bottom:539.706000px;}
.y18a{bottom:545.424000px;}
.y11f{bottom:546.900000px;}
.yd6{bottom:547.554000px;}
.y139{bottom:548.400000px;}
.y1ed{bottom:552.300000px;}
.y1c0{bottom:552.900000px;}
.y23{bottom:552.918000px;}
.y7d{bottom:555.300000px;}
.y54{bottom:555.312000px;}
.y151{bottom:562.800000px;}
.ya7{bottom:563.106000px;}
.y138{bottom:568.200000px;}
.y189{bottom:568.518000px;}
.yd5{bottom:570.954000px;}
.y1ec{bottom:571.800000px;}
.y1bf{bottom:572.100000px;}
.y133{bottom:574.200000px;}
.y22{bottom:576.012000px;}
.y7c{bottom:578.400000px;}
.y53{bottom:578.406000px;}
.y137{bottom:579.300000px;}
.y150{bottom:583.200000px;}
.ya6{bottom:586.200000px;}
.y1eb{bottom:591.300000px;}
.y1be{bottom:591.600000px;}
.y188{bottom:591.918000px;}
.yd4{bottom:594.048000px;}
.y14f{bottom:597.630000px;}
.y21{bottom:599.412000px;}
.y7b{bottom:601.800000px;}
.y52{bottom:601.806000px;}
.y136{bottom:602.700000px;}
.ya5{bottom:609.606000px;}
.y1ea{bottom:610.500000px;}
.y1bd{bottom:611.100000px;}
.y187{bottom:615.318000px;}
.yd3{bottom:617.448000px;}
.y14e{bottom:621.030000px;}
.y20{bottom:622.506000px;}
.y135{bottom:624.600000px;}
.y7a{bottom:625.200000px;}
.y51{bottom:625.206000px;}
.y1e9{bottom:630.000000px;}
.y1bc{bottom:630.600000px;}
.ya4{bottom:633.006000px;}
.y186{bottom:638.412000px;}
.yd2{bottom:640.848000px;}
.y132{bottom:644.100000px;}
.y14d{bottom:644.124000px;}
.y1f{bottom:645.906000px;}
.y50{bottom:648.300000px;}
.y1e8{bottom:649.500000px;}
.y1bb{bottom:649.800000px;}
.ya3{bottom:656.100000px;}
.y185{bottom:661.812000px;}
.yd1{bottom:663.942000px;}
.y14c{bottom:667.524000px;}
.y1e7{bottom:669.000000px;}
.y1ba{bottom:669.300000px;}
.y1e{bottom:669.306000px;}
.y4f{bottom:671.700000px;}
.ya2{bottom:679.506000px;}
.y184{bottom:684.906000px;}
.yd0{bottom:687.342000px;}
.y1e6{bottom:688.200000px;}
.y1b9{bottom:688.800000px;}
.y14b{bottom:690.924000px;}
.y1d{bottom:692.400000px;}
.y4e{bottom:693.300000px;}
.y79{bottom:695.100000px;}
.ya1{bottom:702.906000px;}
.y1e5{bottom:707.700000px;}
.y1b8{bottom:708.000000px;}
.y183{bottom:708.306000px;}
.y4d{bottom:710.436000px;}
.y14a{bottom:714.018000px;}
.y1c{bottom:715.800000px;}
.y78{bottom:718.200000px;}
.y111{bottom:725.400000px;}
.ya0{bottom:726.000000px;}
.y1e4{bottom:727.200000px;}
.y1b7{bottom:727.500000px;}
.y182{bottom:731.706000px;}
.y4c{bottom:733.836000px;}
.y149{bottom:737.418000px;}
.y1b{bottom:739.200000px;}
.y77{bottom:739.800000px;}
.y11e{bottom:742.800000px;}
.y110{bottom:742.812000px;}
.y1e3{bottom:746.400000px;}
.y1b6{bottom:747.000000px;}
.y9f{bottom:749.400000px;}
.y181{bottom:754.800000px;}
.y76{bottom:757.200000px;}
.y4b{bottom:757.236000px;}
.y1a{bottom:759.000000px;}
.y148{bottom:760.818000px;}
.y1e2{bottom:765.900000px;}
.y10f{bottom:765.906000px;}
.y1b5{bottom:766.200000px;}
.y19{bottom:769.200000px;}
.y9e{bottom:770.700000px;}
.y180{bottom:778.200000px;}
.y75{bottom:780.300000px;}
.y4a{bottom:780.330000px;}
.y147{bottom:783.912000px;}
.y1e1{bottom:785.400000px;}
.y1b4{bottom:785.700000px;}
.y9d{bottom:788.112000px;}
.y18{bottom:788.700000px;}
.y10e{bottom:789.306000px;}
.y17f{bottom:801.900000px;}
.y74{bottom:803.700000px;}
.y49{bottom:803.730000px;}
.y1e0{bottom:804.600000px;}
.y1b3{bottom:805.200000px;}
.y17{bottom:805.800000px;}
.y146{bottom:807.312000px;}
.y130{bottom:810.600000px;}
.y9c{bottom:811.512000px;}
.y10d{bottom:812.706000px;}
.y16{bottom:815.700000px;}
.y17e{bottom:819.306000px;}
.y1df{bottom:824.100000px;}
.y1b2{bottom:824.700000px;}
.y73{bottom:827.100000px;}
.y48{bottom:827.130000px;}
.y145{bottom:830.712000px;}
.y9b{bottom:834.912000px;}
.y15{bottom:835.200000px;}
.y10c{bottom:835.800000px;}
.y17d{bottom:842.706000px;}
.y1de{bottom:843.600000px;}
.y1b1{bottom:843.900000px;}
.y72{bottom:850.200000px;}
.y47{bottom:850.224000px;}
.y14{bottom:853.800000px;}
.y144{bottom:853.806000px;}
.y9a{bottom:858.006000px;}
.y10b{bottom:859.200000px;}
.y1dd{bottom:863.100000px;}
.y1b0{bottom:863.400000px;}
.y17c{bottom:865.800000px;}
.y13{bottom:871.212000px;}
.y71{bottom:873.600000px;}
.y46{bottom:873.624000px;}
.y143{bottom:877.206000px;}
.y99{bottom:881.406000px;}
.y1dc{bottom:882.300000px;}
.y1af{bottom:882.900000px;}
.y10a{bottom:886.200000px;}
.y17b{bottom:889.200000px;}
.y12{bottom:894.306000px;}
.y70{bottom:897.000000px;}
.y45{bottom:897.024000px;}
.y142{bottom:900.300000px;}
.y1db{bottom:901.800000px;}
.y1ae{bottom:902.100000px;}
.y98{bottom:904.500000px;}
.y109{bottom:908.400000px;}
.y17a{bottom:912.600000px;}
.y11{bottom:917.706000px;}
.y6f{bottom:920.100000px;}
.y44{bottom:920.118000px;}
.y1da{bottom:921.300000px;}
.y1ad{bottom:921.600000px;}
.y141{bottom:923.700000px;}
.y97{bottom:927.900000px;}
.y179{bottom:933.900000px;}
.y1d9{bottom:940.500000px;}
.y1ac{bottom:941.100000px;}
.y10{bottom:941.106000px;}
.y6e{bottom:943.500000px;}
.y43{bottom:943.518000px;}
.y108{bottom:947.100000px;}
.y178{bottom:950.400000px;}
.y96{bottom:951.312000px;}
.y1d8{bottom:960.000000px;}
.y1ab{bottom:960.300000px;}
.y106{bottom:963.000000px;}
.yf{bottom:964.200000px;}
.y140{bottom:965.400000px;}
.y6d{bottom:966.600000px;}
.y42{bottom:966.612000px;}
.y177{bottom:970.198500px;}
.y107{bottom:970.200000px;}
.y105{bottom:973.500000px;}
.y95{bottom:974.406000px;}
.y12f{bottom:978.900000px;}
.y1d7{bottom:979.500000px;}
.y1aa{bottom:981.300000px;}
.ye{bottom:987.600000px;}
.y6c{bottom:990.000000px;}
.y12e{bottom:990.006000px;}
.y41{bottom:990.012000px;}
.y103{bottom:991.500000px;}
.y94{bottom:997.806000px;}
.y104{bottom:998.700000px;}
.y1a9{bottom:1000.800000px;}
.y102{bottom:1001.700000px;}
.yd{bottom:1011.300000px;}
.y176{bottom:1012.500000px;}
.y6b{bottom:1013.400000px;}
.y12d{bottom:1013.406000px;}
.y40{bottom:1013.412000px;}
.y1d6{bottom:1018.200000px;}
.y1a8{bottom:1020.300000px;}
.yfe{bottom:1020.600000px;}
.y93{bottom:1021.206000px;}
.y101{bottom:1027.800000px;}
.y175{bottom:1028.400000px;}
.yfd{bottom:1030.800000px;}
.y6a{bottom:1036.500000px;}
.y3f{bottom:1036.506000px;}
.y1d5{bottom:1038.000000px;}
.yc{bottom:1038.600000px;}
.y1a7{bottom:1039.500000px;}
.y92{bottom:1044.300000px;}
.y174{bottom:1048.800000px;}
.y100{bottom:1050.000000px;}
.yff{bottom:1053.000000px;}
.yfc{bottom:1053.300000px;}
.y1a6{bottom:1059.000000px;}
.y69{bottom:1059.900000px;}
.y3e{bottom:1059.906000px;}
.yb{bottom:1065.300000px;}
.y91{bottom:1065.900000px;}
.y173{bottom:1068.000000px;}
.yfb{bottom:1071.900000px;}
.y172{bottom:1072.200000px;}
.y1a5{bottom:1078.500000px;}
.yfa{bottom:1079.400000px;}
.y8{bottom:1083.300000px;}
.y3d{bottom:1083.306000px;}
.y171{bottom:1088.400000px;}
.yf9{bottom:1097.400000px;}
.y1a4{bottom:1097.700000px;}
.yf8{bottom:1104.600000px;}
.y3c{bottom:1106.400000px;}
.y6{bottom:1107.300000px;}
.y16f{bottom:1108.500000px;}
.y170{bottom:1111.200000px;}
.y1a3{bottom:1117.200000px;}
.yf5{bottom:1122.598500px;}
.y16d{bottom:1127.700000px;}
.y3b{bottom:1129.800000px;}
.yf4{bottom:1130.100000px;}
.y16e{bottom:1130.400000px;}
.y5{bottom:1132.500000px;}
.y1a2{bottom:1136.700000px;}
.y3{bottom:1144.800000px;}
.y3a{bottom:1153.200000px;}
.y1a1{bottom:1156.200000px;}
.y2{bottom:1164.300000px;}
.y39{bottom:1183.500000px;}
.y1{bottom:1183.800000px;}
.h33{height:19.200000px;}
.h32{height:19.201500px;}
.h31{height:19.500000px;}
.h34{height:19.501500px;}
.h4{height:20.880000px;}
.h5{height:23.401500px;}
.h8{height:24.000000px;}
.h1f{height:25.198500px;}
.h1d{height:25.200000px;}
.h1b{height:25.498500px;}
.h1e{height:25.500000px;}
.h22{height:28.200000px;}
.h23{height:28.500000px;}
.h29{height:31.320000px;}
.h30{height:36.540000px;}
.h35{height:39.000000px;}
.h37{height:41.015625px;}
.hb{height:41.760000px;}
.h1a{height:42.840000px;}
.h36{height:43.066406px;}
.h2{height:46.680000px;}
.h13{height:47.124000px;}
.h7{height:47.401500px;}
.h20{height:50.700000px;}
.h6{height:51.408000px;}
.hc{height:52.200000px;}
.he{height:56.016000px;}
.h12{height:57.420000px;}
.hf{height:58.857422px;}
.ha{height:59.976000px;}
.h38{height:62.578125px;}
.h9{height:62.640000px;}
.h14{height:62.658000px;}
.h15{height:62.664000px;}
.h28{height:64.200000px;}
.h24{height:65.400000px;}
.h2c{height:69.898500px;}
.h2f{height:69.900000px;}
.h3{height:70.664062px;}
.h10{height:75.093750px;}
.h19{height:76.798500px;}
.h1c{height:85.927734px;}
.h17{height:87.942187px;}
.h16{height:94.520508px;}
.hd{height:103.113281px;}
.h11{height:108.690942px;}
.h21{height:115.800000px;}
.h18{height:122.742188px;}
.h27{height:132.600000px;}
.h26{height:135.000000px;}
.h25{height:135.900000px;}
.h2e{height:166.500000px;}
.h2d{height:166.501500px;}
.h2a{height:193.500000px;}
.h2b{height:198.000000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w5{width:20.700000px;}
.w19{width:39.000000px;}
.w12{width:42.000000px;}
.wf{width:42.300000px;}
.w14{width:42.900000px;}
.w17{width:72.000000px;}
.w18{width:72.298500px;}
.w16{width:72.300000px;}
.wa{width:82.200000px;}
.w9{width:82.500000px;}
.w8{width:83.700000px;}
.wd{width:84.000000px;}
.wc{width:84.001500px;}
.wb{width:84.300000px;}
.we{width:84.301500px;}
.w4{width:127.500000px;}
.w3{width:127.800000px;}
.w7{width:168.000000px;}
.w6{width:329.700000px;}
.w2{width:478.200000px;}
.w15{width:667.200000px;}
.w10{width:667.800000px;}
.w13{width:668.100000px;}
.w1a{width:689.400000px;}
.w11{width:710.100000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x46{left:1.200000px;}
.x30{left:2.400000px;}
.x5a{left:4.500000px;}
.x32{left:6.600000px;}
.x4{left:8.100000px;}
.x43{left:10.500000px;}
.x6b{left:12.900000px;}
.x59{left:14.100000px;}
.x68{left:17.100000px;}
.x34{left:18.300000px;}
.x56{left:20.700000px;}
.x50{left:22.800000px;}
.x69{left:25.200000px;}
.x3e{left:27.000000px;}
.x24{left:28.500000px;}
.x27{left:31.800000px;}
.x5b{left:36.000000px;}
.x60{left:37.500000px;}
.x62{left:42.300000px;}
.x64{left:61.200000px;}
.x5c{left:67.500000px;}
.x3{left:79.800000px;}
.x29{left:81.000000px;}
.x44{left:87.600000px;}
.x1{left:91.500000px;}
.x33{left:93.600000px;}
.x14{left:98.400000px;}
.x16{left:102.300000px;}
.x61{left:112.500000px;}
.x49{left:116.400000px;}
.x35{left:118.800000px;}
.x8{left:123.000000px;}
.x6{left:125.100000px;}
.x6a{left:127.500000px;}
.x1e{left:129.606000px;}
.x1c{left:132.000000px;}
.x3b{left:134.100000px;}
.x1f{left:135.300000px;}
.x17{left:144.600000px;}
.x67{left:146.100000px;}
.x63{left:154.500000px;}
.x22{left:168.000000px;}
.x10{left:172.500000px;}
.x4f{left:174.000000px;}
.x65{left:178.500000px;}
.x28{left:181.800000px;}
.x1b{left:184.800000px;}
.x25{left:189.900000px;}
.x36{left:192.000000px;}
.x20{left:198.600000px;}
.x9{left:200.700000px;}
.x48{left:226.200000px;}
.xa{left:237.597000px;}
.xd{left:245.736000px;}
.x37{left:248.400000px;}
.x38{left:255.900000px;}
.x11{left:258.300000px;}
.xc{left:265.230000px;}
.x4e{left:270.006000px;}
.xb{left:271.206000px;}
.xe{left:272.754000px;}
.xf{left:280.278000px;}
.x40{left:301.500000px;}
.x21{left:303.300000px;}
.x47{left:315.000000px;}
.x51{left:318.600000px;}
.x4a{left:328.524000px;}
.x12{left:374.100000px;}
.x2b{left:385.800000px;}
.x2a{left:387.300000px;}
.x52{left:390.600000px;}
.x5d{left:395.100000px;}
.x6c{left:442.200000px;}
.x2{left:446.400000px;}
.x15{left:450.000000px;}
.x13{left:451.800000px;}
.x53{left:462.900000px;}
.x4d{left:466.800000px;}
.x2c{left:468.300000px;}
.x19{left:470.100000px;}
.x18{left:473.100000px;}
.x39{left:477.900000px;}
.x1a{left:486.000000px;}
.x54{left:535.200000px;}
.x5e{left:539.700000px;}
.x2e{left:550.500000px;}
.x2d{left:552.000000px;}
.x5{left:558.000000px;}
.x55{left:607.500000px;}
.x3f{left:609.300000px;}
.x3c{left:628.800000px;}
.x3d{left:630.000000px;}
.x23{left:633.000000px;}
.x2f{left:635.400000px;}
.x41{left:636.900000px;}
.x45{left:638.100000px;}
.x42{left:639.300000px;}
.x5f{left:643.500000px;}
.x31{left:647.400000px;}
.x66{left:656.100000px;}
.x57{left:679.800000px;}
.x7{left:685.800000px;}
.x26{left:717.300000px;}
.x3a{left:727.800000px;}
.x1d{left:746.700000px;}
.x58{left:752.100000px;}
.x4b{left:802.536000px;}
.x4c{left:813.300000px;}
@media print{
.va{vertical-align:-22.400000pt;}
.v9{vertical-align:-16.000000pt;}
.v3{vertical-align:-12.842667pt;}
.v5{vertical-align:-11.733333pt;}
.vd{vertical-align:-8.533333pt;}
.v1{vertical-align:-5.376000pt;}
.v7{vertical-align:-1.056000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.056000pt;}
.v2{vertical-align:5.333333pt;}
.vc{vertical-align:8.533333pt;}
.v11{vertical-align:10.666667pt;}
.v6{vertical-align:11.733333pt;}
.v4{vertical-align:12.800000pt;}
.vb{vertical-align:17.066667pt;}
.ve{vertical-align:29.866667pt;}
.vf{vertical-align:48.000000pt;}
.v10{vertical-align:51.200000pt;}
.ls9f{letter-spacing:-4.288000pt;}
.ls3f{letter-spacing:-3.200000pt;}
.lsb8{letter-spacing:-2.506667pt;}
.ls4f{letter-spacing:-2.176000pt;}
.ls4c{letter-spacing:-1.472000pt;}
.lsb1{letter-spacing:-1.333333pt;}
.ls20{letter-spacing:-1.280000pt;}
.ls89{letter-spacing:-1.232000pt;}
.lsb3{letter-spacing:-1.226667pt;}
.ls1e{letter-spacing:-1.088000pt;}
.ls6b{letter-spacing:-1.066667pt;}
.ls3e{letter-spacing:-1.024000pt;}
.lsb2{letter-spacing:-1.013333pt;}
.lsb4{letter-spacing:-0.960000pt;}
.ls14{letter-spacing:-0.768000pt;}
.ls57{letter-spacing:-0.762667pt;}
.ls9d{letter-spacing:-0.672000pt;}
.ls55{letter-spacing:-0.645333pt;}
.lsa6{letter-spacing:-0.586667pt;}
.ls51{letter-spacing:-0.563200pt;}
.ls87{letter-spacing:-0.528000pt;}
.ls13{letter-spacing:-0.512000pt;}
.ls33{letter-spacing:-0.480000pt;}
.ls53{letter-spacing:-0.469333pt;}
.ls2e{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.426667pt;}
.ls1b{letter-spacing:-0.384000pt;}
.ls16{letter-spacing:-0.373333pt;}
.ls52{letter-spacing:-0.352000pt;}
.ls18{letter-spacing:-0.336000pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls88{letter-spacing:-0.293333pt;}
.ls19{letter-spacing:-0.266667pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls4e{letter-spacing:-0.229333pt;}
.ls9e{letter-spacing:-0.213333pt;}
.ls2c{letter-spacing:-0.192000pt;}
.ls4d{letter-spacing:-0.176000pt;}
.lsa5{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.149333pt;}
.ls1c{letter-spacing:-0.128000pt;}
.lsba{letter-spacing:-0.117333pt;}
.lsc{letter-spacing:-0.106667pt;}
.ls1f{letter-spacing:-0.064000pt;}
.ls86{letter-spacing:-0.058667pt;}
.ls83{letter-spacing:-0.053333pt;}
.ls50{letter-spacing:-0.045867pt;}
.ls9c{letter-spacing:-0.032000pt;}
.lse{letter-spacing:0.000000pt;}
.ls41{letter-spacing:0.021333pt;}
.ls47{letter-spacing:0.042667pt;}
.ls82{letter-spacing:0.053333pt;}
.ls84{letter-spacing:0.058667pt;}
.ls12{letter-spacing:0.074667pt;}
.lsf{letter-spacing:0.106667pt;}
.ls40{letter-spacing:0.117333pt;}
.ls21{letter-spacing:0.128000pt;}
.ls5b{letter-spacing:0.160000pt;}
.ls81{letter-spacing:0.170133pt;}
.ls80{letter-spacing:0.186667pt;}
.ls10{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.213333pt;}
.ls8a{letter-spacing:0.230400pt;}
.ls49{letter-spacing:0.234667pt;}
.lsa{letter-spacing:0.256000pt;}
.lsa8{letter-spacing:0.266667pt;}
.ls56{letter-spacing:0.293333pt;}
.ls29{letter-spacing:0.300800pt;}
.ls5{letter-spacing:0.320000pt;}
.ls5a{letter-spacing:0.332800pt;}
.ls85{letter-spacing:0.352000pt;}
.ls59{letter-spacing:0.364800pt;}
.lsaa{letter-spacing:0.373333pt;}
.ls8b{letter-spacing:0.384000pt;}
.ls54{letter-spacing:0.410667pt;}
.ls6{letter-spacing:0.416000pt;}
.ls63{letter-spacing:0.426667pt;}
.ls7{letter-spacing:0.428800pt;}
.ls4{letter-spacing:0.448000pt;}
.ls28{letter-spacing:0.454400pt;}
.lsb7{letter-spacing:0.480000pt;}
.ls8{letter-spacing:0.512000pt;}
.ls6a{letter-spacing:0.533333pt;}
.lsa2{letter-spacing:0.693333pt;}
.ls2d{letter-spacing:0.768000pt;}
.ls3b{letter-spacing:0.800000pt;}
.ls5d{letter-spacing:0.853333pt;}
.ls31{letter-spacing:0.986667pt;}
.ls8c{letter-spacing:1.002667pt;}
.ls30{letter-spacing:1.024000pt;}
.lsad{letter-spacing:1.056000pt;}
.lsa3{letter-spacing:1.061333pt;}
.lsae{letter-spacing:1.066667pt;}
.lsb6{letter-spacing:1.173333pt;}
.ls34{letter-spacing:1.216000pt;}
.lsb5{letter-spacing:1.280000pt;}
.lsb9{letter-spacing:1.386667pt;}
.ls4a{letter-spacing:1.408000pt;}
.ls9b{letter-spacing:1.440000pt;}
.ls26{letter-spacing:1.472000pt;}
.ls2b{letter-spacing:2.112000pt;}
.ls3c{letter-spacing:2.169600pt;}
.lsa1{letter-spacing:2.826667pt;}
.ls37{letter-spacing:3.200000pt;}
.lsb0{letter-spacing:3.637333pt;}
.ls43{letter-spacing:4.032000pt;}
.ls48{letter-spacing:4.096000pt;}
.ls9{letter-spacing:4.224000pt;}
.lsa9{letter-spacing:4.960000pt;}
.ls1d{letter-spacing:5.312000pt;}
.lsa7{letter-spacing:6.026667pt;}
.ls2a{letter-spacing:6.400000pt;}
.ls35{letter-spacing:7.424000pt;}
.lsa4{letter-spacing:8.160000pt;}
.lsb{letter-spacing:8.512000pt;}
.ls92{letter-spacing:8.906667pt;}
.lsab{letter-spacing:9.226667pt;}
.ls3d{letter-spacing:9.600000pt;}
.ls6d{letter-spacing:10.293333pt;}
.ls36{letter-spacing:10.624000pt;}
.ls38{letter-spacing:11.712000pt;}
.ls32{letter-spacing:12.800000pt;}
.lsaf{letter-spacing:13.141333pt;}
.lsac{letter-spacing:13.493333pt;}
.ls27{letter-spacing:14.912000pt;}
.ls44{letter-spacing:15.898667pt;}
.ls58{letter-spacing:16.000000pt;}
.ls91{letter-spacing:19.573333pt;}
.ls3a{letter-spacing:20.224000pt;}
.ls9a{letter-spacing:20.373333pt;}
.ls4b{letter-spacing:21.312000pt;}
.ls68{letter-spacing:23.424000pt;}
.ls46{letter-spacing:24.426667pt;}
.ls23{letter-spacing:25.920000pt;}
.ls73{letter-spacing:26.293333pt;}
.ls7c{letter-spacing:27.360000pt;}
.ls7a{letter-spacing:29.493333pt;}
.ls39{letter-spacing:31.296000pt;}
.ls62{letter-spacing:31.306667pt;}
.ls75{letter-spacing:31.626667pt;}
.ls90{letter-spacing:33.440000pt;}
.ls8d{letter-spacing:34.506667pt;}
.ls99{letter-spacing:37.120000pt;}
.ls69{letter-spacing:37.312000pt;}
.ls7d{letter-spacing:39.093333pt;}
.ls72{letter-spacing:41.226667pt;}
.ls74{letter-spacing:43.360000pt;}
.ls70{letter-spacing:45.493333pt;}
.ls8f{letter-spacing:47.306667pt;}
.ls8e{letter-spacing:48.373333pt;}
.ls79{letter-spacing:48.693333pt;}
.ls67{letter-spacing:49.760000pt;}
.ls64{letter-spacing:50.506667pt;}
.ls6f{letter-spacing:52.960000pt;}
.ls71{letter-spacing:55.093333pt;}
.ls24{letter-spacing:57.600000pt;}
.ls7e{letter-spacing:58.293333pt;}
.lsa0{letter-spacing:59.360000pt;}
.ls7f{letter-spacing:60.426667pt;}
.ls6c{letter-spacing:64.693333pt;}
.ls7b{letter-spacing:68.960000pt;}
.ls93{letter-spacing:72.160000pt;}
.ls95{letter-spacing:76.426667pt;}
.ls94{letter-spacing:77.493333pt;}
.ls98{letter-spacing:82.826667pt;}
.ls77{letter-spacing:83.893333pt;}
.ls78{letter-spacing:87.093333pt;}
.ls6e{letter-spacing:89.226667pt;}
.ls76{letter-spacing:92.426667pt;}
.ls66{letter-spacing:100.960000pt;}
.ls96{letter-spacing:103.093333pt;}
.ls97{letter-spacing:104.160000pt;}
.ls65{letter-spacing:108.426667pt;}
.ls25{letter-spacing:108.800000pt;}
.ls5e{letter-spacing:114.506667pt;}
.ls42{letter-spacing:157.696000pt;}
.ls45{letter-spacing:177.962667pt;}
.ls2f{letter-spacing:259.893333pt;}
.ls5f{letter-spacing:294.773333pt;}
.ls61{letter-spacing:329.973333pt;}
.ls3{letter-spacing:422.026667pt;}
.ls5c{letter-spacing:464.373333pt;}
.ls60{letter-spacing:473.973333pt;}
.ls2{letter-spacing:506.293333pt;}
.ls22{letter-spacing:606.400000pt;}
.ls1{letter-spacing:791.093333pt;}
.ls0{letter-spacing:1027.893333pt;}
.ws9{word-spacing:-64.000000pt;}
.ws9a{word-spacing:-58.666667pt;}
.wse5{word-spacing:-53.333333pt;}
.ws96{word-spacing:-45.637333pt;}
.ws9c{word-spacing:-42.709333pt;}
.ws9e{word-spacing:-42.666667pt;}
.wsc2{word-spacing:-37.312000pt;}
.ws94{word-spacing:-35.136000pt;}
.ws9f{word-spacing:-34.848000pt;}
.ws9d{word-spacing:-34.636800pt;}
.ws99{word-spacing:-25.827200pt;}
.wsc0{word-spacing:-23.424000pt;}
.wsa4{word-spacing:-21.312000pt;}
.ws9b{word-spacing:-20.138667pt;}
.ws2{word-spacing:-18.890667pt;}
.ws1{word-spacing:-18.741333pt;}
.ws5e{word-spacing:-18.304000pt;}
.ws3b{word-spacing:-17.856000pt;}
.wsb5{word-spacing:-17.600000pt;}
.ws3{word-spacing:-17.408000pt;}
.ws3d{word-spacing:-17.344000pt;}
.ws38{word-spacing:-17.280000pt;}
.ws3a{word-spacing:-17.216000pt;}
.ws5{word-spacing:-17.088000pt;}
.ws61{word-spacing:-17.024000pt;}
.ws3e{word-spacing:-16.896000pt;}
.wsc{word-spacing:-16.832000pt;}
.ws5d{word-spacing:-16.768000pt;}
.ws3c{word-spacing:-16.704000pt;}
.ws60{word-spacing:-16.640000pt;}
.ws5f{word-spacing:-16.576000pt;}
.ws7b{word-spacing:-16.512000pt;}
.ws4{word-spacing:-16.320000pt;}
.ws37{word-spacing:-16.192000pt;}
.ws115{word-spacing:-16.016000pt;}
.ws7c{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.936000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws7d{word-spacing:-15.744000pt;}
.wsb{word-spacing:-15.680000pt;}
.wscb{word-spacing:-15.370667pt;}
.ws114{word-spacing:-15.194667pt;}
.wse8{word-spacing:-15.040000pt;}
.ws52{word-spacing:-14.912000pt;}
.ws113{word-spacing:-14.549333pt;}
.ws111{word-spacing:-14.453333pt;}
.wscc{word-spacing:-14.432000pt;}
.wsc9{word-spacing:-14.400000pt;}
.wse9{word-spacing:-14.346667pt;}
.wsf6{word-spacing:-14.293333pt;}
.ws5c{word-spacing:-14.240000pt;}
.ws10f{word-spacing:-14.186667pt;}
.ws112{word-spacing:-14.133333pt;}
.ws10e{word-spacing:-14.080000pt;}
.wsb8{word-spacing:-14.026667pt;}
.ws7{word-spacing:-13.973333pt;}
.wsb9{word-spacing:-13.920000pt;}
.wsca{word-spacing:-13.866667pt;}
.ws0{word-spacing:-13.813333pt;}
.wsf7{word-spacing:-13.760000pt;}
.wsb7{word-spacing:-13.706667pt;}
.wsc8{word-spacing:-13.653333pt;}
.wsdc{word-spacing:-13.600000pt;}
.wsda{word-spacing:-13.546667pt;}
.wsbb{word-spacing:-13.493333pt;}
.wsdb{word-spacing:-13.226667pt;}
.wse6{word-spacing:-13.120000pt;}
.wsb6{word-spacing:-13.066667pt;}
.wsde{word-spacing:-13.013333pt;}
.ws110{word-spacing:-12.906667pt;}
.ws6{word-spacing:-12.480000pt;}
.wsa1{word-spacing:-12.437333pt;}
.wsba{word-spacing:-12.426667pt;}
.wsaf{word-spacing:-12.032000pt;}
.ws79{word-spacing:-11.712000pt;}
.ws74{word-spacing:-10.624000pt;}
.ws39{word-spacing:-9.968000pt;}
.ws95{word-spacing:-9.818667pt;}
.ws81{word-spacing:-9.600000pt;}
.ws97{word-spacing:-9.594667pt;}
.ws98{word-spacing:-9.520000pt;}
.ws10b{word-spacing:-9.226667pt;}
.wse7{word-spacing:-8.544000pt;}
.ws30{word-spacing:-8.512000pt;}
.wse3{word-spacing:-8.288000pt;}
.wsf8{word-spacing:-8.160000pt;}
.wsdd{word-spacing:-8.096000pt;}
.wse4{word-spacing:-7.872000pt;}
.ws6b{word-spacing:-7.424000pt;}
.ws53{word-spacing:-6.400000pt;}
.wsfa{word-spacing:-6.026667pt;}
.ws20{word-spacing:-5.312000pt;}
.wsff{word-spacing:-4.960000pt;}
.ws66{word-spacing:-4.224000pt;}
.ws73{word-spacing:-3.776000pt;}
.ws117{word-spacing:-3.626667pt;}
.ws49{word-spacing:-3.520000pt;}
.wsc4{word-spacing:-3.392000pt;}
.ws76{word-spacing:-3.200000pt;}
.wsfe{word-spacing:-3.146667pt;}
.ws40{word-spacing:-3.136000pt;}
.ws48{word-spacing:-2.880000pt;}
.ws87{word-spacing:-2.816000pt;}
.ws86{word-spacing:-2.752000pt;}
.ws47{word-spacing:-2.688000pt;}
.ws118{word-spacing:-2.506667pt;}
.wsbf{word-spacing:-2.368000pt;}
.ws4f{word-spacing:-2.112000pt;}
.ws11d{word-spacing:-2.080000pt;}
.ws7a{word-spacing:-1.984000pt;}
.ws28{word-spacing:-1.920000pt;}
.ws104{word-spacing:-1.813333pt;}
.ws8d{word-spacing:-1.728000pt;}
.ws1b{word-spacing:-1.664000pt;}
.ws126{word-spacing:-1.653333pt;}
.ws129{word-spacing:-1.546667pt;}
.wsb1{word-spacing:-1.408000pt;}
.ws12e{word-spacing:-1.386667pt;}
.ws5b{word-spacing:-1.280000pt;}
.ws127{word-spacing:-1.066667pt;}
.ws64{word-spacing:-1.024000pt;}
.ws128{word-spacing:-1.013333pt;}
.ws82{word-spacing:-0.896000pt;}
.wsc1{word-spacing:-0.832000pt;}
.wscd{word-spacing:-0.800000pt;}
.wsae{word-spacing:-0.768000pt;}
.ws25{word-spacing:-0.704000pt;}
.ws116{word-spacing:-0.693333pt;}
.ws6d{word-spacing:-0.640000pt;}
.ws18{word-spacing:-0.586667pt;}
.ws54{word-spacing:-0.576000pt;}
.ws70{word-spacing:-0.512000pt;}
.ws11{word-spacing:-0.480000pt;}
.ws80{word-spacing:-0.448000pt;}
.wscf{word-spacing:-0.426667pt;}
.wsb0{word-spacing:-0.410667pt;}
.ws10{word-spacing:-0.373333pt;}
.wsd5{word-spacing:-0.352000pt;}
.ws16{word-spacing:-0.320000pt;}
.ws11b{word-spacing:-0.293333pt;}
.wsd{word-spacing:-0.266667pt;}
.ws27{word-spacing:-0.256000pt;}
.wsd0{word-spacing:-0.213333pt;}
.ws12{word-spacing:-0.192000pt;}
.wsc6{word-spacing:-0.160000pt;}
.ws2c{word-spacing:-0.128000pt;}
.wsfd{word-spacing:-0.106667pt;}
.wse1{word-spacing:-0.064000pt;}
.wsce{word-spacing:-0.053333pt;}
.wse{word-spacing:0.000000pt;}
.wsea{word-spacing:0.032000pt;}
.wsf{word-spacing:0.053333pt;}
.wsd3{word-spacing:0.058667pt;}
.ws33{word-spacing:0.064000pt;}
.ws62{word-spacing:0.106667pt;}
.ws1e{word-spacing:0.128000pt;}
.wseb{word-spacing:0.160000pt;}
.ws4e{word-spacing:0.192000pt;}
.wsed{word-spacing:0.213333pt;}
.ws14{word-spacing:0.224000pt;}
.ws17{word-spacing:0.256000pt;}
.ws1a{word-spacing:0.266667pt;}
.wsac{word-spacing:0.293333pt;}
.ws13{word-spacing:0.298667pt;}
.ws36{word-spacing:0.320000pt;}
.ws134{word-spacing:0.352000pt;}
.ws3f{word-spacing:0.373333pt;}
.ws1c{word-spacing:0.384000pt;}
.ws133{word-spacing:0.410667pt;}
.ws19{word-spacing:0.426667pt;}
.ws83{word-spacing:0.448000pt;}
.ws132{word-spacing:0.469333pt;}
.ws108{word-spacing:0.480000pt;}
.ws15{word-spacing:0.512000pt;}
.wsd4{word-spacing:0.528000pt;}
.wsf9{word-spacing:0.586667pt;}
.ws103{word-spacing:0.640000pt;}
.wsc7{word-spacing:0.746667pt;}
.wsb4{word-spacing:0.762667pt;}
.ws6c{word-spacing:0.768000pt;}
.ws65{word-spacing:0.832000pt;}
.wsec{word-spacing:0.853333pt;}
.wsa0{word-spacing:0.880000pt;}
.wsf3{word-spacing:0.960000pt;}
.ws122{word-spacing:1.066667pt;}
.ws24{word-spacing:1.088000pt;}
.wsf2{word-spacing:1.120000pt;}
.wse2{word-spacing:1.216000pt;}
.ws11c{word-spacing:1.226667pt;}
.ws2b{word-spacing:1.280000pt;}
.wsab{word-spacing:1.472000pt;}
.ws4a{word-spacing:1.536000pt;}
.wsbc{word-spacing:1.792000pt;}
.ws44{word-spacing:1.920000pt;}
.wsb3{word-spacing:2.170667pt;}
.ws4b{word-spacing:2.176000pt;}
.ws67{word-spacing:2.304000pt;}
.wsa5{word-spacing:2.368000pt;}
.wsa3{word-spacing:2.496000pt;}
.ws12a{word-spacing:2.506667pt;}
.ws105{word-spacing:2.613333pt;}
.ws43{word-spacing:2.624000pt;}
.ws100{word-spacing:2.720000pt;}
.ws10a{word-spacing:2.773333pt;}
.wsd2{word-spacing:2.880000pt;}
.ws68{word-spacing:3.008000pt;}
.wsb2{word-spacing:3.109333pt;}
.ws131{word-spacing:3.168000pt;}
.ws93{word-spacing:3.200000pt;}
.ws109{word-spacing:3.253333pt;}
.wsc5{word-spacing:3.264000pt;}
.ws56{word-spacing:3.392000pt;}
.ws55{word-spacing:3.584000pt;}
.wsa8{word-spacing:3.648000pt;}
.ws11f{word-spacing:3.680000pt;}
.ws1d{word-spacing:3.712000pt;}
.ws120{word-spacing:4.053333pt;}
.ws91{word-spacing:4.288000pt;}
.ws11e{word-spacing:4.320000pt;}
.ws90{word-spacing:4.544000pt;}
.ws57{word-spacing:4.672000pt;}
.ws42{word-spacing:4.736000pt;}
.ws1f{word-spacing:5.120000pt;}
.wsd8{word-spacing:5.376000pt;}
.wsa9{word-spacing:5.696000pt;}
.wsaa{word-spacing:5.760000pt;}
.ws23{word-spacing:5.824000pt;}
.ws58{word-spacing:6.080000pt;}
.ws59{word-spacing:6.208000pt;}
.wsf1{word-spacing:6.453333pt;}
.wsdf{word-spacing:6.464000pt;}
.ws5a{word-spacing:6.784000pt;}
.ws107{word-spacing:6.880000pt;}
.ws22{word-spacing:6.912000pt;}
.ws32{word-spacing:7.168000pt;}
.ws75{word-spacing:7.232000pt;}
.ws106{word-spacing:7.520000pt;}
.ws50{word-spacing:7.616000pt;}
.wsc3{word-spacing:7.680000pt;}
.ws46{word-spacing:7.808000pt;}
.wsbe{word-spacing:7.936000pt;}
.ws88{word-spacing:8.320000pt;}
.ws2e{word-spacing:8.576000pt;}
.ws89{word-spacing:8.704000pt;}
.ws31{word-spacing:8.896000pt;}
.ws2f{word-spacing:9.024000pt;}
.ws102{word-spacing:9.173333pt;}
.ws35{word-spacing:9.344000pt;}
.ws6e{word-spacing:9.408000pt;}
.ws8a{word-spacing:9.536000pt;}
.ws101{word-spacing:9.653333pt;}
.wsd9{word-spacing:9.664000pt;}
.wsa2{word-spacing:9.984000pt;}
.ws34{word-spacing:10.112000pt;}
.ws2d{word-spacing:10.368000pt;}
.wse0{word-spacing:10.688000pt;}
.wsf5{word-spacing:11.306667pt;}
.ws8c{word-spacing:11.392000pt;}
.wsf4{word-spacing:11.413333pt;}
.ws78{word-spacing:11.520000pt;}
.wsd7{word-spacing:11.776000pt;}
.ws77{word-spacing:11.840000pt;}
.ws8f{word-spacing:12.032000pt;}
.ws8b{word-spacing:12.096000pt;}
.ws123{word-spacing:12.213333pt;}
.ws71{word-spacing:12.224000pt;}
.ws125{word-spacing:12.320000pt;}
.ws4d{word-spacing:12.608000pt;}
.ws130{word-spacing:12.730667pt;}
.ws124{word-spacing:12.853333pt;}
.ws6f{word-spacing:12.864000pt;}
.wsee{word-spacing:13.120000pt;}
.ws12f{word-spacing:13.200000pt;}
.ws11a{word-spacing:13.280000pt;}
.ws4c{word-spacing:13.312000pt;}
.ws119{word-spacing:13.920000pt;}
.ws69{word-spacing:14.208000pt;}
.ws51{word-spacing:15.296000pt;}
.ws6a{word-spacing:15.360000pt;}
.wsd1{word-spacing:15.424000pt;}
.wsbd{word-spacing:15.808000pt;}
.ws26{word-spacing:16.064000pt;}
.ws21{word-spacing:16.384000pt;}
.ws92{word-spacing:16.512000pt;}
.ws72{word-spacing:17.536000pt;}
.wsd6{word-spacing:18.624000pt;}
.ws63{word-spacing:20.288000pt;}
.ws121{word-spacing:20.320000pt;}
.ws84{word-spacing:20.480000pt;}
.ws85{word-spacing:20.736000pt;}
.ws12b{word-spacing:21.973333pt;}
.ws12c{word-spacing:22.133333pt;}
.ws12d{word-spacing:22.293333pt;}
.wsad{word-spacing:22.912000pt;}
.ws41{word-spacing:24.576000pt;}
.wsef{word-spacing:25.024000pt;}
.ws8e{word-spacing:29.312000pt;}
.ws29{word-spacing:29.888000pt;}
.ws2a{word-spacing:30.336000pt;}
.ws7f{word-spacing:31.744000pt;}
.ws7e{word-spacing:32.512000pt;}
.wsf0{word-spacing:37.696000pt;}
.ws45{word-spacing:38.464000pt;}
.ws10c{word-spacing:38.986667pt;}
.ws10d{word-spacing:39.360000pt;}
.wsfc{word-spacing:59.466667pt;}
.wsfb{word-spacing:59.786667pt;}
.wsa7{word-spacing:68.480000pt;}
.wsa6{word-spacing:68.736000pt;}
._2c{margin-left:-37.651200pt;}
._2d{margin-left:-36.102400pt;}
._2b{margin-left:-24.618667pt;}
._2a{margin-left:-23.571200pt;}
._25{margin-left:-21.977600pt;}
._23{margin-left:-20.992000pt;}
._26{margin-left:-20.076800pt;}
._27{margin-left:-19.123200pt;}
._1b{margin-left:-15.424000pt;}
._1a{margin-left:-14.202667pt;}
._1d{margin-left:-13.278933pt;}
._22{margin-left:-11.990400pt;}
._20{margin-left:-11.052800pt;}
._11{margin-left:-9.408000pt;}
._10{margin-left:-8.256000pt;}
._12{margin-left:-7.310933pt;}
._7{margin-left:-5.757867pt;}
._9{margin-left:-4.396800pt;}
._19{margin-left:-3.368533pt;}
._5{margin-left:-2.402133pt;}
._2{margin-left:-1.066667pt;}
._0{width:1.013333pt;}
._6{width:2.032000pt;}
._b{width:3.011200pt;}
._c{width:4.379733pt;}
._8{width:5.312000pt;}
._1e{width:6.370133pt;}
._14{width:7.345067pt;}
._f{width:8.490667pt;}
._e{width:9.851733pt;}
._d{width:11.097600pt;}
._21{width:12.230400pt;}
._13{width:13.932800pt;}
._1c{width:14.995200pt;}
._a{width:16.171733pt;}
._28{width:18.814933pt;}
._17{width:20.332800pt;}
._24{width:21.779200pt;}
._29{width:23.714133pt;}
._40{width:24.960000pt;}
._41{width:25.925333pt;}
._15{width:27.628800pt;}
._30{width:31.626667pt;}
._18{width:32.960000pt;}
._2f{width:36.601600pt;}
._2e{width:38.099200pt;}
._31{width:40.000000pt;}
._38{width:41.706667pt;}
._42{width:59.568000pt;}
._37{width:67.306667pt;}
._32{width:70.826667pt;}
._3e{width:72.960000pt;}
._3f{width:85.120000pt;}
._34{width:105.226667pt;}
._3d{width:120.160000pt;}
._39{width:123.040000pt;}
._3c{width:130.826667pt;}
._33{width:157.066667pt;}
._35{width:164.266667pt;}
._3a{width:193.066667pt;}
._36{width:211.893333pt;}
._3b{width:242.826667pt;}
._1f{width:281.328000pt;}
._3{width:572.426667pt;}
._4{width:689.760000pt;}
._16{width:700.426667pt;}
._1{width:782.773333pt;}
.fs2{font-size:21.333333pt;}
.fsb{font-size:32.000000pt;}
.fsa{font-size:35.200000pt;}
.fs6{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs9{font-size:45.866667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:67.461923pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.933333pt;}
.y155{bottom:3.733333pt;}
.y7{bottom:4.533333pt;}
.ya{bottom:5.066667pt;}
.yf1{bottom:6.400000pt;}
.yef{bottom:6.666667pt;}
.yf6{bottom:6.668000pt;}
.ye7{bottom:8.000000pt;}
.yeb{bottom:9.066667pt;}
.ye8{bottom:9.333333pt;}
.yf7{bottom:9.334667pt;}
.y163{bottom:12.533333pt;}
.y160{bottom:21.066667pt;}
.y11b{bottom:23.200000pt;}
.ye3{bottom:29.333333pt;}
.y119{bottom:42.133333pt;}
.y124{bottom:45.866667pt;}
.y134{bottom:46.133333pt;}
.y117{bottom:53.066667pt;}
.y114{bottom:54.400000pt;}
.y112{bottom:54.666667pt;}
.y4{bottom:60.266667pt;}
.y131{bottom:68.266667pt;}
.y120{bottom:80.266667pt;}
.y122{bottom:82.133333pt;}
.y68{bottom:86.410667pt;}
.y13f{bottom:88.010667pt;}
.yf3{bottom:89.600000pt;}
.y11d{bottom:90.133333pt;}
.y1a0{bottom:91.466667pt;}
.ycf{bottom:92.000000pt;}
.ybb{bottom:93.360000pt;}
.y16c{bottom:95.466667pt;}
.yf2{bottom:96.266667pt;}
.y38{bottom:97.866667pt;}
.y13e{bottom:104.010667pt;}
.y118{bottom:106.133333pt;}
.y67{bottom:107.210667pt;}
.y90{bottom:107.216000pt;}
.y19f{bottom:108.800000pt;}
.y11c{bottom:110.400000pt;}
.yce{bottom:110.934667pt;}
.y1d4{bottom:111.733333pt;}
.yf0{bottom:112.266667pt;}
.yba{bottom:113.888000pt;}
.y16b{bottom:116.266667pt;}
.y12c{bottom:117.872000pt;}
.y37{bottom:118.666667pt;}
.y19e{bottom:126.133333pt;}
.y66{bottom:127.738667pt;}
.y8f{bottom:127.744000pt;}
.y1d3{bottom:129.066667pt;}
.y11a{bottom:129.333333pt;}
.ycd{bottom:130.133333pt;}
.y16a{bottom:133.066667pt;}
.yee{bottom:134.666667pt;}
.yb9{bottom:134.688000pt;}
.y36{bottom:136.533333pt;}
.y12b{bottom:138.672000pt;}
.yed{bottom:141.333333pt;}
.y19d{bottom:143.466667pt;}
.y35{bottom:146.400000pt;}
.y65{bottom:148.538667pt;}
.y8e{bottom:148.544000pt;}
.ycc{bottom:149.605333pt;}
.y169{bottom:150.133333pt;}
.yb8{bottom:155.488000pt;}
.ye2{bottom:157.866667pt;}
.y12a{bottom:159.472000pt;}
.y19c{bottom:160.533333pt;}
.y116{bottom:163.200000pt;}
.y1d2{bottom:163.466667pt;}
.yec{bottom:165.866667pt;}
.y34{bottom:166.933333pt;}
.y168{bottom:167.466667pt;}
.y64{bottom:169.066667pt;}
.y8d{bottom:169.072000pt;}
.ycb{bottom:170.133333pt;}
.yb7{bottom:176.016000pt;}
.y19b{bottom:177.866667pt;}
.y129{bottom:180.000000pt;}
.yea{bottom:180.533333pt;}
.y1d1{bottom:180.800000pt;}
.y167{bottom:184.800000pt;}
.y1fb{bottom:187.733333pt;}
.y33{bottom:187.738667pt;}
.ye9{bottom:188.266667pt;}
.ye4{bottom:188.533333pt;}
.y63{bottom:189.866667pt;}
.y8c{bottom:189.872000pt;}
.yca{bottom:191.200000pt;}
.y19a{bottom:195.200000pt;}
.yb6{bottom:196.816000pt;}
.y1d0{bottom:198.133333pt;}
.y128{bottom:200.800000pt;}
.y166{bottom:202.133333pt;}
.ye6{bottom:203.466667pt;}
.yc9{bottom:204.800000pt;}
.y1fa{bottom:205.333333pt;}
.y32{bottom:208.272000pt;}
.y62{bottom:209.066667pt;}
.y8b{bottom:210.672000pt;}
.ye5{bottom:211.466667pt;}
.y199{bottom:212.266667pt;}
.y1cf{bottom:215.466667pt;}
.yb5{bottom:217.616000pt;}
.yc8{bottom:218.133333pt;}
.y165{bottom:219.200000pt;}
.y127{bottom:221.600000pt;}
.y1f9{bottom:223.200000pt;}
.y61{bottom:224.560000pt;}
.yc7{bottom:225.600000pt;}
.y31{bottom:229.072000pt;}
.y198{bottom:230.933333pt;}
.y8a{bottom:231.200000pt;}
.y1ce{bottom:232.533333pt;}
.y164{bottom:236.533333pt;}
.y1f8{bottom:238.126667pt;}
.yb4{bottom:238.144000pt;}
.y126{bottom:239.733333pt;}
.y60{bottom:245.088000pt;}
.y197{bottom:247.200000pt;}
.y123{bottom:248.000000pt;}
.y1cd{bottom:249.866667pt;}
.y30{bottom:249.872000pt;}
.yc6{bottom:251.733333pt;}
.y89{bottom:252.000000pt;}
.y15f{bottom:254.400000pt;}
.y1f7{bottom:257.061333pt;}
.y196{bottom:257.066667pt;}
.y161{bottom:258.133333pt;}
.yb3{bottom:258.944000pt;}
.yc5{bottom:261.594667pt;}
.y5f{bottom:265.888000pt;}
.y162{bottom:266.933333pt;}
.y1cc{bottom:267.200000pt;}
.ye1{bottom:269.866667pt;}
.y2f{bottom:270.400000pt;}
.y88{bottom:272.800000pt;}
.y125{bottom:273.333333pt;}
.y195{bottom:274.666667pt;}
.y1f6{bottom:275.996000pt;}
.ye0{bottom:279.738667pt;}
.yb2{bottom:279.744000pt;}
.y115{bottom:281.066667pt;}
.yc4{bottom:283.472000pt;}
.y1cb{bottom:284.266667pt;}
.y194{bottom:284.538667pt;}
.y5e{bottom:286.416000pt;}
.y15e{bottom:289.600000pt;}
.y2e{bottom:291.200000pt;}
.y87{bottom:293.333333pt;}
.y1f5{bottom:299.198667pt;}
.ydf{bottom:300.266667pt;}
.yb1{bottom:300.272000pt;}
.y1ca{bottom:301.600000pt;}
.yc3{bottom:303.994667pt;}
.y193{bottom:305.338667pt;}
.y15d{bottom:306.933333pt;}
.y5d{bottom:307.216000pt;}
.y121{bottom:310.133333pt;}
.y2d{bottom:312.000000pt;}
.y86{bottom:312.533333pt;}
.y1c9{bottom:318.933333pt;}
.yb0{bottom:321.072000pt;}
.yde{bottom:321.130667pt;}
.y15c{bottom:324.000000pt;}
.y192{bottom:325.866667pt;}
.yc2{bottom:325.877333pt;}
.y85{bottom:328.000000pt;}
.y5c{bottom:328.016000pt;}
.y2c{bottom:332.533333pt;}
.y1c8{bottom:336.000000pt;}
.y1f4{bottom:337.332000pt;}
.y15b{bottom:341.333333pt;}
.yaf{bottom:341.600000pt;}
.ydd{bottom:341.658667pt;}
.y15a{bottom:345.066667pt;}
.yc1{bottom:346.405333pt;}
.y191{bottom:346.666667pt;}
.y84{bottom:348.533333pt;}
.y5b{bottom:348.544000pt;}
.y2b{bottom:353.333333pt;}
.y1f3{bottom:356.266667pt;}
.y159{bottom:358.666667pt;}
.yae{bottom:360.800000pt;}
.ydc{bottom:362.458667pt;}
.y190{bottom:365.866667pt;}
.yc0{bottom:367.205333pt;}
.y83{bottom:369.333333pt;}
.y5a{bottom:369.344000pt;}
.y1c7{bottom:370.666667pt;}
.y2a{bottom:374.133333pt;}
.y158{bottom:376.000000pt;}
.yad{bottom:376.272000pt;}
.y18f{bottom:381.093333pt;}
.ydb{bottom:383.258667pt;}
.ybf{bottom:387.729333pt;}
.y1c6{bottom:388.000000pt;}
.y1f2{bottom:388.800000pt;}
.y82{bottom:390.133333pt;}
.y59{bottom:390.144000pt;}
.y29{bottom:391.733333pt;}
.y157{bottom:393.066667pt;}
.yac{bottom:397.072000pt;}
.y113{bottom:401.066667pt;}
.y28{bottom:401.600000pt;}
.y18e{bottom:401.893333pt;}
.yda{bottom:403.786667pt;}
.y13d{bottom:404.538667pt;}
.y1c5{bottom:405.066667pt;}
.y1f1{bottom:406.133333pt;}
.y156{bottom:410.400000pt;}
.y81{bottom:410.666667pt;}
.y58{bottom:410.672000pt;}
.ybe{bottom:410.932000pt;}
.yab{bottom:417.600000pt;}
.y27{bottom:419.466667pt;}
.y1c4{bottom:422.400000pt;}
.y18d{bottom:422.693333pt;}
.y1f0{bottom:423.200000pt;}
.yd9{bottom:424.586667pt;}
.y13c{bottom:425.338667pt;}
.y154{bottom:428.266667pt;}
.y26{bottom:429.354667pt;}
.y80{bottom:431.466667pt;}
.y57{bottom:431.472000pt;}
.ybd{bottom:432.800000pt;}
.yaa{bottom:438.410667pt;}
.y1c3{bottom:439.733333pt;}
.y18c{bottom:443.221333pt;}
.yd8{bottom:445.386667pt;}
.y13b{bottom:446.138667pt;}
.y25{bottom:449.882667pt;}
.y7f{bottom:452.266667pt;}
.y56{bottom:452.272000pt;}
.ybc{bottom:452.282667pt;}
.y1ef{bottom:456.533333pt;}
.y1c2{bottom:456.800000pt;}
.y153{bottom:458.666667pt;}
.ya9{bottom:458.938667pt;}
.y18b{bottom:464.021333pt;}
.yd7{bottom:465.914667pt;}
.y13a{bottom:466.666667pt;}
.y24{bottom:470.682667pt;}
.y7e{bottom:472.800000pt;}
.y55{bottom:472.810667pt;}
.y1ee{bottom:473.866667pt;}
.y1c1{bottom:474.133333pt;}
.y152{bottom:479.466667pt;}
.ya8{bottom:479.738667pt;}
.y18a{bottom:484.821333pt;}
.y11f{bottom:486.133333pt;}
.yd6{bottom:486.714667pt;}
.y139{bottom:487.466667pt;}
.y1ed{bottom:490.933333pt;}
.y1c0{bottom:491.466667pt;}
.y23{bottom:491.482667pt;}
.y7d{bottom:493.600000pt;}
.y54{bottom:493.610667pt;}
.y151{bottom:500.266667pt;}
.ya7{bottom:500.538667pt;}
.y138{bottom:505.066667pt;}
.y189{bottom:505.349333pt;}
.yd5{bottom:507.514667pt;}
.y1ec{bottom:508.266667pt;}
.y1bf{bottom:508.533333pt;}
.y133{bottom:510.400000pt;}
.y22{bottom:512.010667pt;}
.y7c{bottom:514.133333pt;}
.y53{bottom:514.138667pt;}
.y137{bottom:514.933333pt;}
.y150{bottom:518.400000pt;}
.ya6{bottom:521.066667pt;}
.y1eb{bottom:525.600000pt;}
.y1be{bottom:525.866667pt;}
.y188{bottom:526.149333pt;}
.yd4{bottom:528.042667pt;}
.y14f{bottom:531.226667pt;}
.y21{bottom:532.810667pt;}
.y7b{bottom:534.933333pt;}
.y52{bottom:534.938667pt;}
.y136{bottom:535.733333pt;}
.ya5{bottom:541.872000pt;}
.y1ea{bottom:542.666667pt;}
.y1bd{bottom:543.200000pt;}
.y187{bottom:546.949333pt;}
.yd3{bottom:548.842667pt;}
.y14e{bottom:552.026667pt;}
.y20{bottom:553.338667pt;}
.y135{bottom:555.200000pt;}
.y7a{bottom:555.733333pt;}
.y51{bottom:555.738667pt;}
.y1e9{bottom:560.000000pt;}
.y1bc{bottom:560.533333pt;}
.ya4{bottom:562.672000pt;}
.y186{bottom:567.477333pt;}
.yd2{bottom:569.642667pt;}
.y132{bottom:572.533333pt;}
.y14d{bottom:572.554667pt;}
.y1f{bottom:574.138667pt;}
.y50{bottom:576.266667pt;}
.y1e8{bottom:577.333333pt;}
.y1bb{bottom:577.600000pt;}
.ya3{bottom:583.200000pt;}
.y185{bottom:588.277333pt;}
.yd1{bottom:590.170667pt;}
.y14c{bottom:593.354667pt;}
.y1e7{bottom:594.666667pt;}
.y1ba{bottom:594.933333pt;}
.y1e{bottom:594.938667pt;}
.y4f{bottom:597.066667pt;}
.ya2{bottom:604.005333pt;}
.y184{bottom:608.805333pt;}
.yd0{bottom:610.970667pt;}
.y1e6{bottom:611.733333pt;}
.y1b9{bottom:612.266667pt;}
.y14b{bottom:614.154667pt;}
.y1d{bottom:615.466667pt;}
.y4e{bottom:616.266667pt;}
.y79{bottom:617.866667pt;}
.ya1{bottom:624.805333pt;}
.y1e5{bottom:629.066667pt;}
.y1b8{bottom:629.333333pt;}
.y183{bottom:629.605333pt;}
.y4d{bottom:631.498667pt;}
.y14a{bottom:634.682667pt;}
.y1c{bottom:636.266667pt;}
.y78{bottom:638.400000pt;}
.y111{bottom:644.800000pt;}
.ya0{bottom:645.333333pt;}
.y1e4{bottom:646.400000pt;}
.y1b7{bottom:646.666667pt;}
.y182{bottom:650.405333pt;}
.y4c{bottom:652.298667pt;}
.y149{bottom:655.482667pt;}
.y1b{bottom:657.066667pt;}
.y77{bottom:657.600000pt;}
.y11e{bottom:660.266667pt;}
.y110{bottom:660.277333pt;}
.y1e3{bottom:663.466667pt;}
.y1b6{bottom:664.000000pt;}
.y9f{bottom:666.133333pt;}
.y181{bottom:670.933333pt;}
.y76{bottom:673.066667pt;}
.y4b{bottom:673.098667pt;}
.y1a{bottom:674.666667pt;}
.y148{bottom:676.282667pt;}
.y1e2{bottom:680.800000pt;}
.y10f{bottom:680.805333pt;}
.y1b5{bottom:681.066667pt;}
.y19{bottom:683.733333pt;}
.y9e{bottom:685.066667pt;}
.y180{bottom:691.733333pt;}
.y75{bottom:693.600000pt;}
.y4a{bottom:693.626667pt;}
.y147{bottom:696.810667pt;}
.y1e1{bottom:698.133333pt;}
.y1b4{bottom:698.400000pt;}
.y9d{bottom:700.544000pt;}
.y18{bottom:701.066667pt;}
.y10e{bottom:701.605333pt;}
.y17f{bottom:712.800000pt;}
.y74{bottom:714.400000pt;}
.y49{bottom:714.426667pt;}
.y1e0{bottom:715.200000pt;}
.y1b3{bottom:715.733333pt;}
.y17{bottom:716.266667pt;}
.y146{bottom:717.610667pt;}
.y130{bottom:720.533333pt;}
.y9c{bottom:721.344000pt;}
.y10d{bottom:722.405333pt;}
.y16{bottom:725.066667pt;}
.y17e{bottom:728.272000pt;}
.y1df{bottom:732.533333pt;}
.y1b2{bottom:733.066667pt;}
.y73{bottom:735.200000pt;}
.y48{bottom:735.226667pt;}
.y145{bottom:738.410667pt;}
.y9b{bottom:742.144000pt;}
.y15{bottom:742.400000pt;}
.y10c{bottom:742.933333pt;}
.y17d{bottom:749.072000pt;}
.y1de{bottom:749.866667pt;}
.y1b1{bottom:750.133333pt;}
.y72{bottom:755.733333pt;}
.y47{bottom:755.754667pt;}
.y14{bottom:758.933333pt;}
.y144{bottom:758.938667pt;}
.y9a{bottom:762.672000pt;}
.y10b{bottom:763.733333pt;}
.y1dd{bottom:767.200000pt;}
.y1b0{bottom:767.466667pt;}
.y17c{bottom:769.600000pt;}
.y13{bottom:774.410667pt;}
.y71{bottom:776.533333pt;}
.y46{bottom:776.554667pt;}
.y143{bottom:779.738667pt;}
.y99{bottom:783.472000pt;}
.y1dc{bottom:784.266667pt;}
.y1af{bottom:784.800000pt;}
.y10a{bottom:787.733333pt;}
.y17b{bottom:790.400000pt;}
.y12{bottom:794.938667pt;}
.y70{bottom:797.333333pt;}
.y45{bottom:797.354667pt;}
.y142{bottom:800.266667pt;}
.y1db{bottom:801.600000pt;}
.y1ae{bottom:801.866667pt;}
.y98{bottom:804.000000pt;}
.y109{bottom:807.466667pt;}
.y17a{bottom:811.200000pt;}
.y11{bottom:815.738667pt;}
.y6f{bottom:817.866667pt;}
.y44{bottom:817.882667pt;}
.y1da{bottom:818.933333pt;}
.y1ad{bottom:819.200000pt;}
.y141{bottom:821.066667pt;}
.y97{bottom:824.800000pt;}
.y179{bottom:830.133333pt;}
.y1d9{bottom:836.000000pt;}
.y1ac{bottom:836.533333pt;}
.y10{bottom:836.538667pt;}
.y6e{bottom:838.666667pt;}
.y43{bottom:838.682667pt;}
.y108{bottom:841.866667pt;}
.y178{bottom:844.800000pt;}
.y96{bottom:845.610667pt;}
.y1d8{bottom:853.333333pt;}
.y1ab{bottom:853.600000pt;}
.y106{bottom:856.000000pt;}
.yf{bottom:857.066667pt;}
.y140{bottom:858.133333pt;}
.y6d{bottom:859.200000pt;}
.y42{bottom:859.210667pt;}
.y177{bottom:862.398667pt;}
.y107{bottom:862.400000pt;}
.y105{bottom:865.333333pt;}
.y95{bottom:866.138667pt;}
.y12f{bottom:870.133333pt;}
.y1d7{bottom:870.666667pt;}
.y1aa{bottom:872.266667pt;}
.ye{bottom:877.866667pt;}
.y6c{bottom:880.000000pt;}
.y12e{bottom:880.005333pt;}
.y41{bottom:880.010667pt;}
.y103{bottom:881.333333pt;}
.y94{bottom:886.938667pt;}
.y104{bottom:887.733333pt;}
.y1a9{bottom:889.600000pt;}
.y102{bottom:890.400000pt;}
.yd{bottom:898.933333pt;}
.y176{bottom:900.000000pt;}
.y6b{bottom:900.800000pt;}
.y12d{bottom:900.805333pt;}
.y40{bottom:900.810667pt;}
.y1d6{bottom:905.066667pt;}
.y1a8{bottom:906.933333pt;}
.yfe{bottom:907.200000pt;}
.y93{bottom:907.738667pt;}
.y101{bottom:913.600000pt;}
.y175{bottom:914.133333pt;}
.yfd{bottom:916.266667pt;}
.y6a{bottom:921.333333pt;}
.y3f{bottom:921.338667pt;}
.y1d5{bottom:922.666667pt;}
.yc{bottom:923.200000pt;}
.y1a7{bottom:924.000000pt;}
.y92{bottom:928.266667pt;}
.y174{bottom:932.266667pt;}
.y100{bottom:933.333333pt;}
.yff{bottom:936.000000pt;}
.yfc{bottom:936.266667pt;}
.y1a6{bottom:941.333333pt;}
.y69{bottom:942.133333pt;}
.y3e{bottom:942.138667pt;}
.yb{bottom:946.933333pt;}
.y91{bottom:947.466667pt;}
.y173{bottom:949.333333pt;}
.yfb{bottom:952.800000pt;}
.y172{bottom:953.066667pt;}
.y1a5{bottom:958.666667pt;}
.yfa{bottom:959.466667pt;}
.y8{bottom:962.933333pt;}
.y3d{bottom:962.938667pt;}
.y171{bottom:967.466667pt;}
.yf9{bottom:975.466667pt;}
.y1a4{bottom:975.733333pt;}
.yf8{bottom:981.866667pt;}
.y3c{bottom:983.466667pt;}
.y6{bottom:984.266667pt;}
.y16f{bottom:985.333333pt;}
.y170{bottom:987.733333pt;}
.y1a3{bottom:993.066667pt;}
.yf5{bottom:997.865333pt;}
.y16d{bottom:1002.400000pt;}
.y3b{bottom:1004.266667pt;}
.yf4{bottom:1004.533333pt;}
.y16e{bottom:1004.800000pt;}
.y5{bottom:1006.666667pt;}
.y1a2{bottom:1010.400000pt;}
.y3{bottom:1017.600000pt;}
.y3a{bottom:1025.066667pt;}
.y1a1{bottom:1027.733333pt;}
.y2{bottom:1034.933333pt;}
.y39{bottom:1052.000000pt;}
.y1{bottom:1052.266667pt;}
.h33{height:17.066667pt;}
.h32{height:17.068000pt;}
.h31{height:17.333333pt;}
.h34{height:17.334667pt;}
.h4{height:18.560000pt;}
.h5{height:20.801333pt;}
.h8{height:21.333333pt;}
.h1f{height:22.398667pt;}
.h1d{height:22.400000pt;}
.h1b{height:22.665333pt;}
.h1e{height:22.666667pt;}
.h22{height:25.066667pt;}
.h23{height:25.333333pt;}
.h29{height:27.840000pt;}
.h30{height:32.480000pt;}
.h35{height:34.666667pt;}
.h37{height:36.458333pt;}
.hb{height:37.120000pt;}
.h1a{height:38.080000pt;}
.h36{height:38.281250pt;}
.h2{height:41.493333pt;}
.h13{height:41.888000pt;}
.h7{height:42.134667pt;}
.h20{height:45.066667pt;}
.h6{height:45.696000pt;}
.hc{height:46.400000pt;}
.he{height:49.792000pt;}
.h12{height:51.040000pt;}
.hf{height:52.317708pt;}
.ha{height:53.312000pt;}
.h38{height:55.625000pt;}
.h9{height:55.680000pt;}
.h14{height:55.696000pt;}
.h15{height:55.701333pt;}
.h28{height:57.066667pt;}
.h24{height:58.133333pt;}
.h2c{height:62.132000pt;}
.h2f{height:62.133333pt;}
.h3{height:62.812500pt;}
.h10{height:66.750000pt;}
.h19{height:68.265333pt;}
.h1c{height:76.380208pt;}
.h17{height:78.170833pt;}
.h16{height:84.018229pt;}
.hd{height:91.656250pt;}
.h11{height:96.614171pt;}
.h21{height:102.933333pt;}
.h18{height:109.104167pt;}
.h27{height:117.866667pt;}
.h26{height:120.000000pt;}
.h25{height:120.800000pt;}
.h2e{height:148.000000pt;}
.h2d{height:148.001333pt;}
.h2a{height:172.000000pt;}
.h2b{height:176.000000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w5{width:18.400000pt;}
.w19{width:34.666667pt;}
.w12{width:37.333333pt;}
.wf{width:37.600000pt;}
.w14{width:38.133333pt;}
.w17{width:64.000000pt;}
.w18{width:64.265333pt;}
.w16{width:64.266667pt;}
.wa{width:73.066667pt;}
.w9{width:73.333333pt;}
.w8{width:74.400000pt;}
.wd{width:74.666667pt;}
.wc{width:74.668000pt;}
.wb{width:74.933333pt;}
.we{width:74.934667pt;}
.w4{width:113.333333pt;}
.w3{width:113.600000pt;}
.w7{width:149.333333pt;}
.w6{width:293.066667pt;}
.w2{width:425.066667pt;}
.w15{width:593.066667pt;}
.w10{width:593.600000pt;}
.w13{width:593.866667pt;}
.w1a{width:612.800000pt;}
.w11{width:631.200000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x46{left:1.066667pt;}
.x30{left:2.133333pt;}
.x5a{left:4.000000pt;}
.x32{left:5.866667pt;}
.x4{left:7.200000pt;}
.x43{left:9.333333pt;}
.x6b{left:11.466667pt;}
.x59{left:12.533333pt;}
.x68{left:15.200000pt;}
.x34{left:16.266667pt;}
.x56{left:18.400000pt;}
.x50{left:20.266667pt;}
.x69{left:22.400000pt;}
.x3e{left:24.000000pt;}
.x24{left:25.333333pt;}
.x27{left:28.266667pt;}
.x5b{left:32.000000pt;}
.x60{left:33.333333pt;}
.x62{left:37.600000pt;}
.x64{left:54.400000pt;}
.x5c{left:60.000000pt;}
.x3{left:70.933333pt;}
.x29{left:72.000000pt;}
.x44{left:77.866667pt;}
.x1{left:81.333333pt;}
.x33{left:83.200000pt;}
.x14{left:87.466667pt;}
.x16{left:90.933333pt;}
.x61{left:100.000000pt;}
.x49{left:103.466667pt;}
.x35{left:105.600000pt;}
.x8{left:109.333333pt;}
.x6{left:111.200000pt;}
.x6a{left:113.333333pt;}
.x1e{left:115.205333pt;}
.x1c{left:117.333333pt;}
.x3b{left:119.200000pt;}
.x1f{left:120.266667pt;}
.x17{left:128.533333pt;}
.x67{left:129.866667pt;}
.x63{left:137.333333pt;}
.x22{left:149.333333pt;}
.x10{left:153.333333pt;}
.x4f{left:154.666667pt;}
.x65{left:158.666667pt;}
.x28{left:161.600000pt;}
.x1b{left:164.266667pt;}
.x25{left:168.800000pt;}
.x36{left:170.666667pt;}
.x20{left:176.533333pt;}
.x9{left:178.400000pt;}
.x48{left:201.066667pt;}
.xa{left:211.197333pt;}
.xd{left:218.432000pt;}
.x37{left:220.800000pt;}
.x38{left:227.466667pt;}
.x11{left:229.600000pt;}
.xc{left:235.760000pt;}
.x4e{left:240.005333pt;}
.xb{left:241.072000pt;}
.xe{left:242.448000pt;}
.xf{left:249.136000pt;}
.x40{left:268.000000pt;}
.x21{left:269.600000pt;}
.x47{left:280.000000pt;}
.x51{left:283.200000pt;}
.x4a{left:292.021333pt;}
.x12{left:332.533333pt;}
.x2b{left:342.933333pt;}
.x2a{left:344.266667pt;}
.x52{left:347.200000pt;}
.x5d{left:351.200000pt;}
.x6c{left:393.066667pt;}
.x2{left:396.800000pt;}
.x15{left:400.000000pt;}
.x13{left:401.600000pt;}
.x53{left:411.466667pt;}
.x4d{left:414.933333pt;}
.x2c{left:416.266667pt;}
.x19{left:417.866667pt;}
.x18{left:420.533333pt;}
.x39{left:424.800000pt;}
.x1a{left:432.000000pt;}
.x54{left:475.733333pt;}
.x5e{left:479.733333pt;}
.x2e{left:489.333333pt;}
.x2d{left:490.666667pt;}
.x5{left:496.000000pt;}
.x55{left:540.000000pt;}
.x3f{left:541.600000pt;}
.x3c{left:558.933333pt;}
.x3d{left:560.000000pt;}
.x23{left:562.666667pt;}
.x2f{left:564.800000pt;}
.x41{left:566.133333pt;}
.x45{left:567.200000pt;}
.x42{left:568.266667pt;}
.x5f{left:572.000000pt;}
.x31{left:575.466667pt;}
.x66{left:583.200000pt;}
.x57{left:604.266667pt;}
.x7{left:609.600000pt;}
.x26{left:637.600000pt;}
.x3a{left:646.933333pt;}
.x1d{left:663.733333pt;}
.x58{left:668.533333pt;}
.x4b{left:713.365333pt;}
.x4c{left:722.933333pt;}
}




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