
    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_61bb612a9d5254ddd0df5ce8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.123000;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_8dc210631ec4be118ade745a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.107000;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_e53bb833bf3cdffaa5ced3cf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.690000;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_cb63eefda533cf5a8e9bb73c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.589000;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_5e5d73f2f4c2cf0734f9d77b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_179e2b7d16e3d08a15999d1c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.064000;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_aac2531caf60030848833732.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.108000;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_87aa4b5a29d0ad9269ecf8fd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.475000;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_32650c24e1808efddc275144.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.683000;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_cf0119e927ad654f599cf7c6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.712000;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_ce8f8e9a2790434008f94f03.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.690000;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_803cf62a04a4f76f60583b13.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v0{vertical-align:0.000000px;}
.ls46{letter-spacing:-1.150200px;}
.ls2b{letter-spacing:-1.086011px;}
.ls38{letter-spacing:-0.939906px;}
.ls37{letter-spacing:-0.918009px;}
.ls3d{letter-spacing:-0.912009px;}
.ls3c{letter-spacing:-0.906009px;}
.ls2e{letter-spacing:-0.900009px;}
.ls26{letter-spacing:-0.894009px;}
.ls33{letter-spacing:-0.882009px;}
.ls39{letter-spacing:-0.864009px;}
.ls43{letter-spacing:-0.853200px;}
.ls36{letter-spacing:-0.840008px;}
.ls2f{letter-spacing:-0.834008px;}
.ls45{letter-spacing:-0.831600px;}
.ls31{letter-spacing:-0.828008px;}
.ls34{letter-spacing:-0.822008px;}
.ls25{letter-spacing:-0.816008px;}
.ls44{letter-spacing:-0.815400px;}
.ls35{letter-spacing:-0.810008px;}
.ls42{letter-spacing:-0.810000px;}
.ls47{letter-spacing:-0.799200px;}
.ls2c{letter-spacing:-0.798008px;}
.ls29{letter-spacing:-0.792008px;}
.ls28{letter-spacing:-0.780008px;}
.ls2d{letter-spacing:-0.768008px;}
.ls2a{letter-spacing:-0.732007px;}
.ls27{letter-spacing:-0.720007px;}
.ls30{letter-spacing:-0.708007px;}
.ls3b{letter-spacing:-0.647935px;}
.ls4{letter-spacing:-0.009600px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.066001px;}
.ls2{letter-spacing:0.088199px;}
.ls3e{letter-spacing:0.124200px;}
.ls3f{letter-spacing:0.138001px;}
.ls20{letter-spacing:0.158398px;}
.ls32{letter-spacing:0.178200px;}
.lse{letter-spacing:0.198002px;}
.ls0{letter-spacing:0.210600px;}
.lsa{letter-spacing:0.216002px;}
.ls41{letter-spacing:0.231600px;}
.ls1a{letter-spacing:0.522005px;}
.ls12{letter-spacing:0.546005px;}
.ls17{letter-spacing:0.552006px;}
.ls24{letter-spacing:0.558006px;}
.lsf{letter-spacing:0.570006px;}
.ls14{letter-spacing:0.582006px;}
.ls13{letter-spacing:0.588006px;}
.ls19{letter-spacing:0.594006px;}
.ls18{letter-spacing:0.618006px;}
.ls11{letter-spacing:0.630006px;}
.ls15{letter-spacing:0.654007px;}
.ls23{letter-spacing:0.666007px;}
.lsc{letter-spacing:0.891000px;}
.ls9{letter-spacing:1.236600px;}
.ls7{letter-spacing:1.506600px;}
.ls5{letter-spacing:1.517400px;}
.ls8{letter-spacing:1.571400px;}
.ls1f{letter-spacing:7.641504px;}
.ls1e{letter-spacing:7.982300px;}
.ls1d{letter-spacing:8.683200px;}
.ls1{letter-spacing:9.023400px;}
.ls21{letter-spacing:9.042090px;}
.ls1c{letter-spacing:9.055800px;}
.ls22{letter-spacing:9.384094px;}
.ls1b{letter-spacing:9.726097px;}
.ls16{letter-spacing:10.062101px;}
.ls6{letter-spacing:10.384200px;}
.ls10{letter-spacing:10.404104px;}
.ls40{letter-spacing:16.200000px;}
.ls3a{letter-spacing:27.810278px;}
.lsb{letter-spacing:1531.671317px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws15e{word-spacing:-27.870279px;}
.ws38{word-spacing:-0.945000px;}
.wsad{word-spacing:-0.714007px;}
.ws3b{word-spacing:-0.071999px;}
.ws39{word-spacing:-0.060001px;}
.ws34{word-spacing:-0.054000px;}
.wsdf{word-spacing:-0.047999px;}
.ws2e{word-spacing:-0.041999px;}
.ws26{word-spacing:-0.040501px;}
.ws4d{word-spacing:-0.039996px;}
.ws30{word-spacing:0.000000px;}
.ws10c{word-spacing:0.648006px;}
.ws136{word-spacing:0.762008px;}
.ws10b{word-spacing:0.774008px;}
.ws135{word-spacing:0.822008px;}
.ws134{word-spacing:0.834008px;}
.ws162{word-spacing:0.852009px;}
.ws15a{word-spacing:0.899910px;}
.ws1c4{word-spacing:1.096200px;}
.ws31{word-spacing:7.560000px;}
.wsf1{word-spacing:7.924701px;}
.wse6{word-spacing:8.025500px;}
.wsee{word-spacing:8.030300px;}
.ws128{word-spacing:8.035100px;}
.wse1{word-spacing:8.039900px;}
.wsd4{word-spacing:8.964000px;}
.wsd3{word-spacing:8.969400px;}
.wscd{word-spacing:9.001800px;}
.wsd1{word-spacing:9.093600px;}
.ws11b{word-spacing:9.109800px;}
.wsc0{word-spacing:9.912099px;}
.ws110{word-spacing:9.930099px;}
.wsc6{word-spacing:10.080101px;}
.wsc4{word-spacing:10.098101px;}
.wsc3{word-spacing:10.116101px;}
.wsaf{word-spacing:10.176102px;}
.wsbb{word-spacing:10.182102px;}
.wsc2{word-spacing:10.188102px;}
.wsb8{word-spacing:10.248102px;}
.wsc5{word-spacing:10.254103px;}
.ws112{word-spacing:10.260103px;}
.wsbf{word-spacing:10.320103px;}
.ws1c6{word-spacing:10.621800px;}
.ws1c5{word-spacing:10.724400px;}
.ws10a{word-spacing:10.860109px;}
.ws1db{word-spacing:10.886400px;}
.ws194{word-spacing:10.913400px;}
.ws100{word-spacing:10.956110px;}
.ws195{word-spacing:10.962000px;}
.ws102{word-spacing:11.028110px;}
.wsfe{word-spacing:11.094111px;}
.wsfd{word-spacing:11.178112px;}
.ws1e4{word-spacing:11.431800px;}
.ws1d6{word-spacing:11.610000px;}
.ws1e9{word-spacing:11.653200px;}
.ws1de{word-spacing:11.685600px;}
.ws1a2{word-spacing:11.777400px;}
.ws20f{word-spacing:11.809800px;}
.ws20e{word-spacing:11.836800px;}
.ws3e{word-spacing:12.000120px;}
.ws206{word-spacing:12.177000px;}
.ws114{word-spacing:12.246122px;}
.ws1fc{word-spacing:12.339000px;}
.ws1f2{word-spacing:12.403800px;}
.ws20d{word-spacing:12.452400px;}
.ws17f{word-spacing:12.468125px;}
.ws20c{word-spacing:12.484800px;}
.ws13{word-spacing:12.495600px;}
.ws7a{word-spacing:12.528125px;}
.ws1f1{word-spacing:12.549600px;}
.ws180{word-spacing:12.558126px;}
.ws9d{word-spacing:12.582126px;}
.ws42{word-spacing:12.618126px;}
.wsf6{word-spacing:12.643042px;}
.ws1f0{word-spacing:12.706200px;}
.ws41{word-spacing:12.708127px;}
.wsf7{word-spacing:12.767840px;}
.wsf8{word-spacing:12.787040px;}
.ws207{word-spacing:12.792600px;}
.ws1bc{word-spacing:12.841200px;}
.ws1c2{word-spacing:12.846600px;}
.ws63{word-spacing:12.870129px;}
.ws1ac{word-spacing:12.922200px;}
.ws52{word-spacing:12.930129px;}
.ws4c{word-spacing:12.936129px;}
.ws1f4{word-spacing:12.938400px;}
.ws1d1{word-spacing:12.965400px;}
.ws23{word-spacing:13.024993px;}
.ws142{word-spacing:13.026130px;}
.ws3c{word-spacing:13.044130px;}
.ws1c3{word-spacing:13.046400px;}
.ws1ad{word-spacing:13.084200px;}
.ws1c1{word-spacing:13.089600px;}
.ws1ab{word-spacing:13.132800px;}
.ws188{word-spacing:13.176132px;}
.ws6d{word-spacing:13.266133px;}
.ws1e0{word-spacing:13.294800px;}
.ws27{word-spacing:13.320647px;}
.ws1b9{word-spacing:13.321800px;}
.ws1e1{word-spacing:13.338000px;}
.ws25{word-spacing:13.340898px;}
.ws1d5{word-spacing:13.343400px;}
.ws24{word-spacing:13.361148px;}
.ws1e2{word-spacing:13.381200px;}
.ws204{word-spacing:13.386600px;}
.ws5d{word-spacing:13.416134px;}
.ws1df{word-spacing:13.435200px;}
.wsfb{word-spacing:13.452135px;}
.ws205{word-spacing:13.473000px;}
.ws141{word-spacing:13.518135px;}
.ws6c{word-spacing:13.560136px;}
.ws8e{word-spacing:13.578136px;}
.wsfc{word-spacing:13.608136px;}
.ws154{word-spacing:13.694229px;}
.ws22{word-spacing:13.705403px;}
.ws40{word-spacing:13.728137px;}
.ws2d{word-spacing:13.780003px;}
.ws3f{word-spacing:13.788138px;}
.wse{word-spacing:13.804627px;}
.ws17e{word-spacing:13.848138px;}
.wse5{word-spacing:13.867027px;}
.wsf9{word-spacing:13.876627px;}
.ws1ef{word-spacing:13.899600px;}
.ws133{word-spacing:13.934226px;}
.ws1ed{word-spacing:13.942800px;}
.ws2b{word-spacing:13.956401px;}
.ws155{word-spacing:13.967825px;}
.ws2c{word-spacing:13.985800px;}
.wse4{word-spacing:13.987025px;}
.ws2a{word-spacing:13.994200px;}
.ws1af{word-spacing:13.996800px;}
.ws129{word-spacing:14.006225px;}
.ws132{word-spacing:14.049424px;}
.ws104{word-spacing:14.148141px;}
.wsef{word-spacing:14.193423px;}
.ws44{word-spacing:14.196142px;}
.ws1b5{word-spacing:14.202000px;}
.wsf0{word-spacing:14.217422px;}
.ws16{word-spacing:14.218200px;}
.ws115{word-spacing:14.286143px;}
.ws2f{word-spacing:14.288196px;}
.ws1fd{word-spacing:14.326200px;}
.ws9f{word-spacing:14.328143px;}
.ws179{word-spacing:14.334143px;}
.ws43{word-spacing:14.388144px;}
.ws118{word-spacing:14.406144px;}
.ws20a{word-spacing:14.407200px;}
.ws189{word-spacing:14.430144px;}
.ws1a3{word-spacing:14.515200px;}
.ws86{word-spacing:14.538145px;}
.ws49{word-spacing:14.562146px;}
.ws9e{word-spacing:14.598146px;}
.ws164{word-spacing:14.628146px;}
.ws15{word-spacing:14.644800px;}
.ws171{word-spacing:14.688147px;}
.ws209{word-spacing:14.698800px;}
.ws9c{word-spacing:14.700147px;}
.ws178{word-spacing:14.742147px;}
.ws1a4{word-spacing:14.747400px;}
.ws170{word-spacing:14.748147px;}
.ws1b0{word-spacing:14.752800px;}
.ws158{word-spacing:14.772148px;}
.ws6e{word-spacing:14.808148px;}
.ws203{word-spacing:14.833800px;}
.wsa6{word-spacing:14.964150px;}
.ws173{word-spacing:15.000150px;}
.wsb9{word-spacing:15.018150px;}
.ws103{word-spacing:15.042150px;}
.ws137{word-spacing:15.102151px;}
.wsa8{word-spacing:15.108151px;}
.ws197{word-spacing:15.174000px;}
.ws174{word-spacing:15.222152px;}
.ws11{word-spacing:15.238800px;}
.ws186{word-spacing:15.288153px;}
.wsbc{word-spacing:15.294153px;}
.wsd{word-spacing:15.321408px;}
.ws105{word-spacing:15.354154px;}
.wsa1{word-spacing:15.366154px;}
.ws198{word-spacing:15.390000px;}
.wsa0{word-spacing:15.390154px;}
.wsb6{word-spacing:15.426154px;}
.ws1e8{word-spacing:15.465600px;}
.ws119{word-spacing:15.492600px;}
.ws187{word-spacing:15.516155px;}
.ws8a{word-spacing:15.528155px;}
.ws10e{word-spacing:15.552156px;}
.ws144{word-spacing:15.558156px;}
.wsb4{word-spacing:15.582156px;}
.wsf{word-spacing:15.599805px;}
.ws7d{word-spacing:15.624156px;}
.ws143{word-spacing:15.648156px;}
.wsb5{word-spacing:15.654157px;}
.ws175{word-spacing:15.684157px;}
.ws10{word-spacing:15.715004px;}
.ws1f7{word-spacing:15.724800px;}
.wsb{word-spacing:15.729403px;}
.wsff{word-spacing:15.744157px;}
.ws1bb{word-spacing:15.762600px;}
.ws15c{word-spacing:15.780158px;}
.wsc{word-spacing:15.796603px;}
.ws1f5{word-spacing:15.800400px;}
.ws1c0{word-spacing:15.811200px;}
.ws1a7{word-spacing:15.854400px;}
.ws1f6{word-spacing:15.865200px;}
.ws21{word-spacing:15.873402px;}
.ws1cc{word-spacing:15.876000px;}
.ws156{word-spacing:15.876159px;}
.ws12b{word-spacing:15.892200px;}
.wsc9{word-spacing:15.897600px;}
.ws1d3{word-spacing:15.903000px;}
.ws4f{word-spacing:15.912159px;}
.ws1fe{word-spacing:15.913800px;}
.ws157{word-spacing:15.924159px;}
.ws1a5{word-spacing:15.935400px;}
.ws1f{word-spacing:15.935801px;}
.ws10f{word-spacing:15.960160px;}
.wsd7{word-spacing:15.962400px;}
.ws1e6{word-spacing:15.973200px;}
.ws145{word-spacing:15.978600px;}
.ws1ce{word-spacing:15.984000px;}
.ws1ee{word-spacing:15.994800px;}
.wsf2{word-spacing:16.005600px;}
.ws1b1{word-spacing:16.011000px;}
.ws1a6{word-spacing:16.021800px;}
.ws20{word-spacing:16.022200px;}
.ws1dc{word-spacing:16.027200px;}
.wsde{word-spacing:16.048800px;}
.ws148{word-spacing:16.059600px;}
.wscb{word-spacing:16.065000px;}
.ws1e7{word-spacing:16.070400px;}
.wsca{word-spacing:16.081200px;}
.wsf4{word-spacing:16.097400px;}
.wsce{word-spacing:16.102800px;}
.ws196{word-spacing:16.108200px;}
.ws176{word-spacing:16.110161px;}
.ws1cf{word-spacing:16.113600px;}
.wsa5{word-spacing:16.116161px;}
.wsdd{word-spacing:16.119000px;}
.wsd5{word-spacing:16.124400px;}
.ws1c7{word-spacing:16.129800px;}
.ws92{word-spacing:16.134161px;}
.ws12a{word-spacing:16.146000px;}
.ws1a0{word-spacing:16.151400px;}
.ws19a{word-spacing:16.156800px;}
.ws1bf{word-spacing:16.167600px;}
.wsfa{word-spacing:16.170162px;}
.wse7{word-spacing:16.173000px;}
.ws1ae{word-spacing:16.194600px;}
.ws1d0{word-spacing:16.200000px;}
.ws93{word-spacing:16.200162px;}
.wsd8{word-spacing:16.227000px;}
.wsf5{word-spacing:16.232400px;}
.ws177{word-spacing:16.242162px;}
.ws1b8{word-spacing:16.243200px;}
.wsd0{word-spacing:16.254000px;}
.ws1e5{word-spacing:16.264800px;}
.ws94{word-spacing:16.266163px;}
.ws1ba{word-spacing:16.275600px;}
.ws19b{word-spacing:16.281000px;}
.wscf{word-spacing:16.291800px;}
.ws1aa{word-spacing:16.329600px;}
.ws101{word-spacing:16.332163px;}
.ws14{word-spacing:16.345800px;}
.wsa7{word-spacing:16.374164px;}
.ws1e3{word-spacing:16.405200px;}
.ws1d8{word-spacing:16.421400px;}
.ws17b{word-spacing:16.446164px;}
.ws163{word-spacing:16.536165px;}
.ws1b2{word-spacing:16.583400px;}
.ws6b{word-spacing:16.644166px;}
.ws111{word-spacing:16.650167px;}
.ws1b{word-spacing:16.686000px;}
.ws1eb{word-spacing:16.777800px;}
.ws17a{word-spacing:16.788168px;}
.ws1fa{word-spacing:16.875000px;}
.ws19f{word-spacing:16.891200px;}
.ws1ec{word-spacing:16.896600px;}
.ws19d{word-spacing:16.923600px;}
.ws18f{word-spacing:16.961400px;}
.ws1f9{word-spacing:16.966800px;}
.ws108{word-spacing:16.998170px;}
.ws109{word-spacing:17.010170px;}
.wsac{word-spacing:17.076171px;}
.ws19e{word-spacing:17.085600px;}
.ws1fb{word-spacing:17.091000px;}
.ws1ea{word-spacing:17.096400px;}
.wsae{word-spacing:17.196172px;}
.ws33{word-spacing:17.425800px;}
.ws90{word-spacing:17.664177px;}
.ws1ff{word-spacing:17.695800px;}
.wsa9{word-spacing:17.748177px;}
.ws200{word-spacing:17.803800px;}
.ws51{word-spacing:17.808178px;}
.ws32{word-spacing:17.895600px;}
.ws159{word-spacing:17.952180px;}
.ws84{word-spacing:17.964180px;}
.ws4e{word-spacing:17.970180px;}
.ws3a{word-spacing:17.982000px;}
.ws172{word-spacing:17.982180px;}
.ws80{word-spacing:18.000180px;}
.ws50{word-spacing:18.006180px;}
.ws7b{word-spacing:18.030180px;}
.wsb0{word-spacing:18.048180px;}
.ws185{word-spacing:18.114181px;}
.ws18e{word-spacing:18.132181px;}
.wsa2{word-spacing:18.144181px;}
.ws77{word-spacing:18.150182px;}
.wsa4{word-spacing:18.162182px;}
.ws7f{word-spacing:18.174182px;}
.wsb3{word-spacing:18.204182px;}
.ws13a{word-spacing:18.234182px;}
.ws1d9{word-spacing:18.273600px;}
.ws8c{word-spacing:18.282183px;}
.ws138{word-spacing:18.342183px;}
.ws1a{word-spacing:18.387000px;}
.ws1cb{word-spacing:18.484200px;}
.ws91{word-spacing:18.528185px;}
.ws16d{word-spacing:18.552186px;}
.ws168{word-spacing:18.576186px;}
.ws45{word-spacing:18.618186px;}
.wsc1{word-spacing:18.684187px;}
.ws18d{word-spacing:18.828188px;}
.ws1cd{word-spacing:18.954000px;}
.ws1da{word-spacing:19.008000px;}
.ws1a8{word-spacing:19.018800px;}
.ws113{word-spacing:19.026190px;}
.ws1a9{word-spacing:19.040400px;}
.ws72{word-spacing:19.056191px;}
.ws37{word-spacing:19.116000px;}
.ws1a1{word-spacing:19.180800px;}
.ws78{word-spacing:19.332193px;}
.ws7e{word-spacing:19.452195px;}
.ws13c{word-spacing:19.488195px;}
.ws88{word-spacing:19.554196px;}
.ws58{word-spacing:19.674197px;}
.ws8b{word-spacing:19.698197px;}
.ws68{word-spacing:19.728197px;}
.ws12{word-spacing:19.747800px;}
.ws208{word-spacing:19.758600px;}
.ws117{word-spacing:19.896199px;}
.ws191{word-spacing:19.936800px;}
.wsab{word-spacing:19.944199px;}
.ws15d{word-spacing:19.968200px;}
.ws116{word-spacing:20.010200px;}
.ws192{word-spacing:20.034200px;}
.ws59{word-spacing:20.046200px;}
.ws4a{word-spacing:20.070201px;}
.ws8f{word-spacing:20.112201px;}
.ws28{word-spacing:20.202202px;}
.ws6a{word-spacing:20.232202px;}
.ws3d{word-spacing:20.280203px;}
.ws106{word-spacing:20.322203px;}
.ws199{word-spacing:20.364204px;}
.ws8d{word-spacing:20.382204px;}
.ws167{word-spacing:20.412204px;}
.ws202{word-spacing:20.442204px;}
.wsb7{word-spacing:20.460205px;}
.ws1bd{word-spacing:20.525400px;}
.ws1be{word-spacing:20.536200px;}
.ws193{word-spacing:20.544205px;}
.ws99{word-spacing:20.562206px;}
.ws181{word-spacing:20.658207px;}
.ws60{word-spacing:20.694207px;}
.ws61{word-spacing:20.724207px;}
.ws16e{word-spacing:20.850208px;}
.ws1e{word-spacing:20.941200px;}
.ws1dd{word-spacing:20.973600px;}
.wsb1{word-spacing:21.030210px;}
.ws13b{word-spacing:21.060211px;}
.wsb2{word-spacing:21.096211px;}
.ws66{word-spacing:21.210212px;}
.ws18b{word-spacing:21.342213px;}
.ws18c{word-spacing:21.510215px;}
.ws165{word-spacing:22.020220px;}
.ws98{word-spacing:22.302223px;}
.ws16b{word-spacing:22.638226px;}
.ws87{word-spacing:22.656227px;}
.ws79{word-spacing:22.764228px;}
.ws1c8{word-spacing:22.960800px;}
.ws161{word-spacing:22.962230px;}
.ws73{word-spacing:23.052231px;}
.ws53{word-spacing:23.076231px;}
.ws13d{word-spacing:23.292233px;}
.ws18{word-spacing:23.301000px;}
.ws169{word-spacing:23.508235px;}
.ws97{word-spacing:23.580236px;}
.ws62{word-spacing:23.658237px;}
.ws35{word-spacing:23.765400px;}
.ws95{word-spacing:23.781402px;}
.ws75{word-spacing:23.784238px;}
.ws74{word-spacing:23.814238px;}
.ws16a{word-spacing:23.826238px;}
.ws8{word-spacing:23.853401px;}
.ws6{word-spacing:23.860601px;}
.ws29{word-spacing:23.868159px;}
.ws36{word-spacing:23.889600px;}
.ws47{word-spacing:23.892239px;}
.ws4{word-spacing:23.918201px;}
.ws6f{word-spacing:23.990200px;}
.ws9{word-spacing:23.997400px;}
.wsa{word-spacing:24.004600px;}
.ws7c{word-spacing:24.024240px;}
.ws5{word-spacing:24.026200px;}
.ws7{word-spacing:24.047800px;}
.ws85{word-spacing:24.090999px;}
.ws16c{word-spacing:24.096241px;}
.wsa3{word-spacing:24.112599px;}
.ws9b{word-spacing:24.184598px;}
.ws1f8{word-spacing:24.559200px;}
.ws1c{word-spacing:24.586200px;}
.ws1d{word-spacing:24.678000px;}
.ws1d4{word-spacing:24.786000px;}
.ws81{word-spacing:24.936249px;}
.ws1b7{word-spacing:24.985800px;}
.ws17{word-spacing:24.996600px;}
.ws10d{word-spacing:25.098251px;}
.ws19{word-spacing:25.115400px;}
.ws140{word-spacing:25.170252px;}
.ws107{word-spacing:25.176252px;}
.ws190{word-spacing:25.288200px;}
.ws1b6{word-spacing:25.353000px;}
.ws1ca{word-spacing:25.374600px;}
.ws1c9{word-spacing:25.417800px;}
.wsbd{word-spacing:25.422254px;}
.ws16f{word-spacing:25.464255px;}
.wsbe{word-spacing:25.518255px;}
.ws201{word-spacing:25.758000px;}
.ws182{word-spacing:25.854259px;}
.ws20b{word-spacing:25.930800px;}
.ws5c{word-spacing:25.932259px;}
.ws15b{word-spacing:25.962260px;}
.ws19c{word-spacing:26.055000px;}
.ws83{word-spacing:26.136261px;}
.ws67{word-spacing:26.532265px;}
.ws56{word-spacing:26.700267px;}
.ws76{word-spacing:26.718267px;}
.ws55{word-spacing:26.874269px;}
.ws70{word-spacing:26.892269px;}
.wse3{word-spacing:26.942063px;}
.ws54{word-spacing:26.988270px;}
.ws1{word-spacing:27.033431px;}
.ws1b4{word-spacing:27.043200px;}
.wse2{word-spacing:27.086061px;}
.wse0{word-spacing:27.119661px;}
.ws1b3{word-spacing:27.129600px;}
.ws17c{word-spacing:27.498275px;}
.ws64{word-spacing:27.564276px;}
.ws17d{word-spacing:27.570276px;}
.ws65{word-spacing:27.588276px;}
.ws69{word-spacing:27.672277px;}
.ws57{word-spacing:27.834278px;}
.ws46{word-spacing:27.894279px;}
.ws5e{word-spacing:28.176282px;}
.ws71{word-spacing:28.206282px;}
.ws5f{word-spacing:28.356284px;}
.ws15f{word-spacing:28.626286px;}
.ws160{word-spacing:28.698287px;}
.ws89{word-spacing:28.788288px;}
.ws184{word-spacing:28.824288px;}
.ws183{word-spacing:28.890289px;}
.ws5a{word-spacing:28.914289px;}
.ws5b{word-spacing:28.980290px;}
.ws96{word-spacing:29.316293px;}
.ws166{word-spacing:29.322293px;}
.ws139{word-spacing:29.538295px;}
.ws3{word-spacing:29.673415px;}
.ws18a{word-spacing:30.144301px;}
.ws48{word-spacing:30.276303px;}
.ws13f{word-spacing:30.900309px;}
.ws13e{word-spacing:30.924309px;}
.ws2{word-spacing:32.006200px;}
.ws0{word-spacing:32.188599px;}
.wsc8{word-spacing:32.562326px;}
.ws4b{word-spacing:32.940329px;}
.wsc7{word-spacing:33.588336px;}
.ws9a{word-spacing:34.134341px;}
.ws1d2{word-spacing:34.387200px;}
.wsba{word-spacing:34.476345px;}
.ws82{word-spacing:36.180362px;}
.ws12f{word-spacing:38.005925px;}
.ws131{word-spacing:38.010725px;}
.ws130{word-spacing:38.029925px;}
.ws1d7{word-spacing:40.170600px;}
.wsaa{word-spacing:40.614406px;}
.ws126{word-spacing:59.097600px;}
.ws124{word-spacing:59.929200px;}
.ws122{word-spacing:91.540800px;}
.ws127{word-spacing:102.762000px;}
.ws11e{word-spacing:103.231800px;}
.ws120{word-spacing:107.805600px;}
.ws12e{word-spacing:115.219800px;}
.ws11c{word-spacing:116.229600px;}
.ws11f{word-spacing:118.540800px;}
.ws123{word-spacing:125.247600px;}
.ws125{word-spacing:129.762000px;}
.ws121{word-spacing:129.978000px;}
.ws11d{word-spacing:183.848400px;}
.ws151{word-spacing:236.320200px;}
.ws150{word-spacing:236.401200px;}
.ws14d{word-spacing:236.444400px;}
.ws14a{word-spacing:236.660400px;}
.ws153{word-spacing:236.784600px;}
.wsd6{word-spacing:262.170000px;}
.ws14c{word-spacing:263.320200px;}
.ws152{word-spacing:263.660400px;}
.wsd2{word-spacing:289.170000px;}
.ws14e{word-spacing:300.056400px;}
.wsdb{word-spacing:316.040400px;}
.wsec{word-spacing:350.611200px;}
.wse8{word-spacing:358.371000px;}
.wsed{word-spacing:377.481600px;}
.wsea{word-spacing:377.611200px;}
.ws12d{word-spacing:377.800200px;}
.wseb{word-spacing:377.821800px;}
.wsf3{word-spacing:384.042600px;}
.wscc{word-spacing:384.501600px;}
.wse9{word-spacing:404.481600px;}
.wsd9{word-spacing:406.053000px;}
.wsdc{word-spacing:549.131400px;}
.ws14f{word-spacing:556.275600px;}
.wsda{word-spacing:566.519400px;}
.ws14b{word-spacing:638.960400px;}
.ws147{word-spacing:649.949400px;}
.ws149{word-spacing:690.098400px;}
.ws146{word-spacing:822.884400px;}
.ws11a{word-spacing:878.671800px;}
.ws12c{word-spacing:917.843400px;}
.ws1f3{word-spacing:1501.611016px;}
._57{margin-left:-29.652297px;}
._56{margin-left:-28.614286px;}
._58{margin-left:-27.138271px;}
._1f{margin-left:-8.494200px;}
._5{margin-left:-6.494319px;}
._c{margin-left:-4.935600px;}
._9{margin-left:-3.709800px;}
._2{margin-left:-2.671176px;}
._0{margin-left:-1.007994px;}
._8{width:1.504758px;}
._39{width:6.717908px;}
._2e{width:7.737503px;}
._d{width:9.018000px;}
._1b{width:10.182102px;}
._18{width:11.286113px;}
._e{width:12.745539px;}
._7{width:13.991400px;}
._4{width:14.999812px;}
._3{width:16.497394px;}
._6{width:18.190794px;}
._10{width:19.445400px;}
._17{width:20.539000px;}
._12{width:21.558216px;}
._14{width:22.608226px;}
._b{width:23.965200px;}
._11{width:24.975000px;}
._a{width:26.222400px;}
._16{width:27.786278px;}
._13{width:29.034290px;}
._1{width:30.787008px;}
._1d{width:32.819071px;}
._15{width:34.093598px;}
._1c{width:35.309433px;}
._19{width:37.758378px;}
._5b{width:41.337000px;}
._5a{width:81.025800px;}
._3e{width:86.022000px;}
._59{width:97.248600px;}
._3d{width:104.015497px;}
._3a{width:114.091897px;}
._43{width:121.554000px;}
._40{width:123.768000px;}
._3c{width:130.637497px;}
._42{width:132.786000px;}
._41{width:148.953600px;}
._3f{width:159.148800px;}
._3b{width:183.357000px;}
._20{width:213.510206px;}
._21{width:214.667588px;}
._2c{width:231.023794px;}
._2a{width:235.013400px;}
._51{width:236.838600px;}
._2d{width:241.164000px;}
._26{width:262.013400px;}
._4e{width:273.234600px;}
._24{width:288.678600px;}
._37{width:294.013800px;}
._4a{width:297.410400px;}
._4d{width:300.110400px;}
._38{width:320.959800px;}
._22{width:324.081000px;}
._32{width:350.114400px;}
._52{width:353.646000px;}
._4b{width:375.834600px;}
._25{width:380.375606px;}
._2f{width:384.858000px;}
._53{width:401.217800px;}
._27{width:412.840800px;}
._49{width:416.620800px;}
._23{width:419.007600px;}
._2b{width:421.005600px;}
._31{width:428.652000px;}
._34{width:433.798200px;}
._1e{width:434.818800px;}
._30{width:438.512400px;}
._29{width:446.633606px;}
._28{width:456.883200px;}
._33{width:463.989600px;}
._36{width:474.136200px;}
._35{width:489.666600px;}
._48{width:530.334000px;}
._55{width:595.841400px;}
._4f{width:625.422600px;}
._50{width:663.244200px;}
._44{width:690.152400px;}
._45{width:700.774200px;}
._46{width:718.124400px;}
._54{width:732.990600px;}
._4c{width:734.718600px;}
._47{width:822.960000px;}
._f{width:878.060803px;}
._5c{width:1705.187052px;}
._1a{width:1735.463354px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:31.995000px;}
.fsb{font-size:35.995200px;}
.fsa{font-size:39.996000px;}
.fs7{font-size:40.500600px;}
.fs9{font-size:41.999400px;}
.fs2{font-size:47.994600px;}
.fs4{font-size:47.999400px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:60.000600px;}
.fs1{font-size:71.999400px;}
.fs8{font-size:90.000600px;}
.fs0{font-size:95.999400px;}
.y0{bottom:0.000000px;}
.y34{bottom:32.995725px;}
.y33{bottom:46.516851px;}
.y32{bottom:60.037976px;}
.y31{bottom:73.474050px;}
.yab{bottom:100.939800px;}
.y184{bottom:100.940880px;}
.yd3{bottom:100.941420px;}
.y137{bottom:100.941750px;}
.y1a6{bottom:100.952400px;}
.y1d7{bottom:101.030400px;}
.y114{bottom:101.363820px;}
.yd9{bottom:102.556650px;}
.y30{bottom:107.403824px;}
.y82{bottom:109.784880px;}
.y1a5{bottom:117.449400px;}
.y1d6{bottom:117.528750px;}
.yaa{bottom:118.968480px;}
.y183{bottom:118.969560px;}
.y136{bottom:118.969681px;}
.yd1{bottom:118.970100px;}
.y113{bottom:119.392500px;}
.yd8{bottom:120.585331px;}
.y2f{bottom:122.371237px;}
.yd2{bottom:125.603100px;}
.y81{bottom:127.813560px;}
.y1a4{bottom:133.946400px;}
.y1d5{bottom:134.110800px;}
.ya9{bottom:136.911659px;}
.ycf{bottom:136.912320px;}
.y182{bottom:136.912739px;}
.y135{bottom:136.912860px;}
.y2e{bottom:137.338650px;}
.y112{bottom:137.421180px;}
.yd7{bottom:138.528510px;}
.yd0{bottom:143.631450px;}
.y80{bottom:145.842240px;}
.y1a3{bottom:150.528450px;}
.y1d4{bottom:150.607800px;}
.ya8{bottom:154.940340px;}
.yce{bottom:154.941000px;}
.y181{bottom:154.941420px;}
.y134{bottom:154.941540px;}
.y111{bottom:155.364360px;}
.yd6{bottom:156.557190px;}
.y7f{bottom:163.785420px;}
.y1a2{bottom:167.025450px;}
.y1d3{bottom:167.104800px;}
.ya7{bottom:172.969020px;}
.ycd{bottom:172.969681px;}
.y180{bottom:172.970100px;}
.y133{bottom:172.970221px;}
.y110{bottom:173.393040px;}
.yd5{bottom:174.585871px;}
.y2d{bottom:179.864550px;}
.y7c{bottom:181.813560px;}
.y7e{bottom:181.814100px;}
.y1a1{bottom:183.522450px;}
.y1d2{bottom:183.601800px;}
.y7d{bottom:188.447250px;}
.ya6{bottom:190.912199px;}
.y130{bottom:190.912320px;}
.ycc{bottom:190.912860px;}
.y132{bottom:190.913400px;}
.y10f{bottom:191.421720px;}
.yd4{bottom:192.529050px;}
.y2c{bottom:196.362900px;}
.y131{bottom:197.631450px;}
.y7b{bottom:199.842240px;}
.y17f{bottom:199.927500px;}
.y1a0{bottom:200.020800px;}
.y1d1{bottom:200.183850px;}
.ya5{bottom:208.940880px;}
.y12f{bottom:208.941000px;}
.ycb{bottom:208.941540px;}
.y10e{bottom:209.364900px;}
.y2b{bottom:212.859900px;}
.y19f{bottom:216.602850px;}
.y1d0{bottom:216.680850px;}
.y7a{bottom:217.785420px;}
.y1ea{bottom:223.233600px;}
.ya4{bottom:226.969560px;}
.y12e{bottom:226.969681px;}
.yca{bottom:226.970221px;}
.y10d{bottom:227.393580px;}
.y2a{bottom:229.356900px;}
.yf6{bottom:229.606200px;}
.y19e{bottom:233.099850px;}
.y1cf{bottom:233.200350px;}
.y77{bottom:235.813890px;}
.y79{bottom:235.814100px;}
.y1e9{bottom:239.730600px;}
.y78{bottom:242.447250px;}
.ya3{bottom:244.912739px;}
.y12d{bottom:244.912860px;}
.yc9{bottom:244.913400px;}
.y17e{bottom:244.998031px;}
.y10c{bottom:245.422260px;}
.y29{bottom:245.853900px;}
.y19d{bottom:249.596850px;}
.y1ce{bottom:249.698700px;}
.y76{bottom:253.842571px;}
.y1e8{bottom:256.227600px;}
.yf5{bottom:257.667750px;}
.y28{bottom:262.350900px;}
.y17d{bottom:262.941210px;}
.ya2{bottom:262.941420px;}
.y12c{bottom:262.941540px;}
.y10b{bottom:263.365440px;}
.y19c{bottom:266.093850px;}
.y1cd{bottom:266.280750px;}
.y73{bottom:271.785089px;}
.y75{bottom:271.785750px;}
.yc8{bottom:271.955850px;}
.yf4{bottom:272.635200px;}
.y74{bottom:278.503950px;}
.y27{bottom:278.847900px;}
.y17c{bottom:280.969890px;}
.ya1{bottom:280.970100px;}
.y12b{bottom:280.970221px;}
.y10a{bottom:281.394120px;}
.y19b{bottom:282.675900px;}
.y1cc{bottom:282.777750px;}
.yf3{bottom:287.687700px;}
.y72{bottom:289.813770px;}
.y1e7{bottom:290.753850px;}
.y26{bottom:295.344900px;}
.y12a{bottom:298.913400px;}
.y17b{bottom:298.998571px;}
.y19a{bottom:299.172900px;}
.y1cb{bottom:299.274750px;}
.y109{bottom:299.422800px;}
.yf0{bottom:302.654700px;}
.yf2{bottom:302.655150px;}
.y1e6{bottom:307.250850px;}
.y6f{bottom:307.842240px;}
.y71{bottom:307.842450px;}
.ya0{bottom:307.927500px;}
.yf1{bottom:308.692800px;}
.y25{bottom:311.841900px;}
.y70{bottom:314.475450px;}
.y199{bottom:315.669900px;}
.y1ca{bottom:315.771750px;}
.yc7{bottom:316.940310px;}
.y178{bottom:316.941060px;}
.y17a{bottom:316.941750px;}
.y108{bottom:317.365980px;}
.yef{bottom:317.707200px;}
.y179{bottom:323.659800px;}
.y6e{bottom:325.785420px;}
.y129{bottom:325.955850px;}
.y24{bottom:328.338900px;}
.y198{bottom:332.166900px;}
.y1c9{bottom:332.353800px;}
.yc6{bottom:334.968991px;}
.y177{bottom:334.969740px;}
.y107{bottom:335.394660px;}
.y1e5{bottom:341.777100px;}
.y6b{bottom:343.813890px;}
.y6d{bottom:343.814100px;}
.y23{bottom:344.835900px;}
.y197{bottom:348.748950px;}
.y1c8{bottom:348.850800px;}
.yee{bottom:349.086600px;}
.y6c{bottom:350.447100px;}
.yc5{bottom:352.912170px;}
.y176{bottom:352.998421px;}
.y106{bottom:353.423340px;}
.y9f{bottom:355.718641px;}
.y1e4{bottom:358.274100px;}
.y22{bottom:361.332900px;}
.y6a{bottom:361.842571px;}
.y196{bottom:365.245950px;}
.y1c7{bottom:365.347800px;}
.yc4{bottom:370.940850px;}
.y173{bottom:370.941270px;}
.y175{bottom:370.941600px;}
.y105{bottom:371.366520px;}
.y128{bottom:371.621790px;}
.y9e{bottom:373.661820px;}
.y1e3{bottom:374.771100px;}
.y174{bottom:377.659800px;}
.y21{bottom:377.829900px;}
.y67{bottom:379.785210px;}
.y69{bottom:379.785750px;}
.yed{bottom:380.551050px;}
.y195{bottom:381.742950px;}
.y1c6{bottom:381.844800px;}
.y68{bottom:386.503950px;}
.yc3{bottom:388.969531px;}
.y170{bottom:388.969620px;}
.y172{bottom:388.969950px;}
.y102{bottom:389.394990px;}
.y104{bottom:389.395200px;}
.y127{bottom:389.650471px;}
.y9d{bottom:391.690500px;}
.y20{bottom:394.327500px;}
.y171{bottom:395.603100px;}
.y103{bottom:396.028350px;}
.y66{bottom:397.813890px;}
.y194{bottom:398.239950px;}
.y1c5{bottom:398.426850px;}
.yc2{bottom:406.912710px;}
.y16d{bottom:406.997881px;}
.y16f{bottom:406.998300px;}
.y101{bottom:407.423671px;}
.y126{bottom:407.593650px;}
.y1e2{bottom:409.212300px;}
.y9c{bottom:409.719181px;}
.y16e{bottom:413.631450px;}
.y193{bottom:414.822000px;}
.y1c4{bottom:414.923850px;}
.y65{bottom:415.842571px;}
.y16c{bottom:424.941060px;}
.yc1{bottom:424.941390px;}
.y100{bottom:425.366850px;}
.y1e1{bottom:425.794350px;}
.yfe{bottom:426.301837px;}
.y9b{bottom:427.662360px;}
.y1c3{bottom:431.420850px;}
.yff{bottom:431.659800px;}
.y62{bottom:433.785210px;}
.y64{bottom:433.785750px;}
.y192{bottom:437.357400px;}
.y63{bottom:440.503950px;}
.yfd{bottom:441.269250px;}
.y1e0{bottom:442.291350px;}
.y16b{bottom:442.969740px;}
.yc0{bottom:442.970071px;}
.y148{bottom:444.670800px;}
.y9a{bottom:445.691040px;}
.y1c2{bottom:447.917850px;}
.y149{bottom:450.028350px;}
.y61{bottom:451.813890px;}
.y125{bottom:459.468337px;}
.ybf{bottom:460.913250px;}
.y16a{bottom:460.998421px;}
.y99{bottom:463.719721px;}
.y1c1{bottom:464.499900px;}
.y1f{bottom:465.591038px;}
.yfc{bottom:469.331250px;}
.y60{bottom:469.842571px;}
.y147{bottom:472.729800px;}
.y124{bottom:474.434550px;}
.y1df{bottom:476.732550px;}
.y167{bottom:478.941060px;}
.y169{bottom:478.941600px;}
.y191{bottom:479.877750px;}
.y1e{bottom:480.642450px;}
.y1c0{bottom:480.996900px;}
.y98{bottom:481.662900px;}
.yfb{bottom:484.383750px;}
.y168{bottom:485.659800px;}
.y1d{bottom:485.914800px;}
.y146{bottom:487.697250px;}
.y5d{bottom:487.784399px;}
.y5f{bottom:487.785750px;}
.ybe{bottom:487.955850px;}
.y1de{bottom:493.229550px;}
.y5e{bottom:494.503800px;}
.y1c{bottom:495.610575px;}
.y190{bottom:496.374750px;}
.y166{bottom:496.969740px;}
.y1bf{bottom:497.493900px;}
.yfa{bottom:499.351200px;}
.y123{bottom:502.496400px;}
.y145{bottom:502.749750px;}
.y5c{bottom:505.813080px;}
.y97{bottom:508.705350px;}
.y1dd{bottom:509.726550px;}
.y1b{bottom:510.576788px;}
.y1be{bottom:514.075950px;}
.y165{bottom:514.998421px;}
.y122{bottom:517.463850px;}
.y144{bottom:517.717200px;}
.y18f{bottom:518.825100px;}
.y5b{bottom:523.841760px;}
.y1a{bottom:525.628200px;}
.y1bd{bottom:530.572950px;}
.yf9{bottom:530.815650px;}
.y19{bottom:530.900700px;}
.y121{bottom:532.516350px;}
.y143{bottom:532.769700px;}
.y162{bottom:532.940730px;}
.ybc{bottom:532.940850px;}
.y164{bottom:532.941600px;}
.ybd{bottom:539.574600px;}
.y163{bottom:539.659800px;}
.y18{bottom:540.595200px;}
.y5a{bottom:541.784939px;}
.y1dc{bottom:544.252800px;}
.y17{bottom:545.952600px;}
.y1bc{bottom:547.069950px;}
.y120{bottom:547.483800px;}
.y142{bottom:547.737150px;}
.y161{bottom:550.969410px;}
.ybb{bottom:550.969531px;}
.y16{bottom:555.646687px;}
.y96{bottom:556.410119px;}
.y59{bottom:559.813620px;}
.y1db{bottom:560.749800px;}
.y18e{bottom:561.345300px;}
.yf7{bottom:562.195200px;}
.y141{bottom:562.704600px;}
.y1bb{bottom:563.566950px;}
.yf8{bottom:568.233000px;}
.yba{bottom:568.912710px;}
.y160{bottom:568.998090px;}
.y15{bottom:570.614100px;}
.y95{bottom:574.438800px;}
.y14{bottom:575.971500px;}
.y140{bottom:577.757100px;}
.y58{bottom:577.842300px;}
.y56{bottom:577.842571px;}
.y11f{bottom:578.948250px;}
.y1ba{bottom:580.149000px;}
.y57{bottom:584.475450px;}
.y12{bottom:585.580950px;}
.y15f{bottom:586.941270px;}
.yb9{bottom:586.941390px;}
.y94{bottom:592.467480px;}
.y13f{bottom:592.724550px;}
.y13{bottom:593.574600px;}
.y1da{bottom:595.276050px;}
.y53{bottom:595.785089px;}
.y55{bottom:595.785750px;}
.y1b9{bottom:596.646000px;}
.y18d{bottom:600.377850px;}
.y54{bottom:602.503800px;}
.y15c{bottom:604.969080px;}
.y15e{bottom:604.969950px;}
.yb8{bottom:604.970071px;}
.y10{bottom:606.586375px;}
.yec{bottom:607.691738px;}
.y11e{bottom:610.327650px;}
.y93{bottom:610.410659px;}
.y15d{bottom:611.603100px;}
.y1d9{bottom:611.773050px;}
.y1b8{bottom:613.143000px;}
.y52{bottom:613.813770px;}
.y11{bottom:614.579400px;}
.yeb{bottom:622.743150px;}
.yb7{bottom:622.913250px;}
.y15b{bottom:622.997760px;}
.y13e{bottom:624.189000px;}
.yf{bottom:627.590400px;}
.yd{bottom:627.591175px;}
.y92{bottom:628.439340px;}
.y1b7{bottom:629.640000px;}
.y51{bottom:631.842450px;}
.y4f{bottom:631.842571px;}
.y1d8{bottom:634.223550px;}
.ye{bottom:635.584050px;}
.y50{bottom:638.475450px;}
.y15a{bottom:640.940939px;}
.y11d{bottom:641.792100px;}
.y18c{bottom:642.898050px;}
.y1b6{bottom:646.222050px;}
.y91{bottom:646.468020px;}
.yc{bottom:648.595200px;}
.ya{bottom:648.595825px;}
.y4c{bottom:649.785420px;}
.y4e{bottom:649.785750px;}
.yb6{bottom:649.955700px;}
.yea{bottom:650.803500px;}
.y13d{bottom:655.568400px;}
.y4d{bottom:656.503800px;}
.yb{bottom:656.588850px;}
.y159{bottom:658.969620px;}
.y18b{bottom:659.395050px;}
.y1b5{bottom:662.719050px;}
.y90{bottom:664.411199px;}
.ye9{bottom:665.770950px;}
.y49{bottom:667.813740px;}
.y4b{bottom:667.814100px;}
.y9{bottom:669.599850px;}
.y7{bottom:669.600625px;}
.y11c{bottom:673.171500px;}
.y4a{bottom:674.447100px;}
.y156{bottom:676.997550px;}
.y158{bottom:676.998300px;}
.y8{bottom:677.593500px;}
.y1b4{bottom:679.216050px;}
.ye8{bottom:680.823450px;}
.y18a{bottom:681.930600px;}
.y8f{bottom:682.439880px;}
.y157{bottom:683.631300px;}
.y48{bottom:685.842421px;}
.y5{bottom:690.604650px;}
.y155{bottom:694.940730px;}
.yb5{bottom:694.940850px;}
.y1b3{bottom:695.713050px;}
.ye7{bottom:695.790900px;}
.y6{bottom:698.598300px;}
.y8e{bottom:700.468560px;}
.y45{bottom:703.785420px;}
.y47{bottom:703.785600px;}
.y46{bottom:710.503800px;}
.ye6{bottom:710.758350px;}
.y11b{bottom:711.269100px;}
.y1b2{bottom:712.295100px;}
.y154{bottom:712.969410px;}
.yb4{bottom:712.969531px;}
.y8d{bottom:718.411739px;}
.y44{bottom:721.814100px;}
.y189{bottom:724.452150px;}
.ye3{bottom:725.807400px;}
.ye5{bottom:725.810850px;}
.y1b1{bottom:728.792100px;}
.yb3{bottom:730.912710px;}
.y153{bottom:730.998090px;}
.ye4{bottom:731.763600px;}
.y8c{bottom:736.440420px;}
.y11a{bottom:739.330350px;}
.y13c{bottom:739.330650px;}
.ye2{bottom:740.774850px;}
.y188{bottom:740.949150px;}
.y1b0{bottom:745.289100px;}
.y43{bottom:748.771500px;}
.y152{bottom:748.941270px;}
.yb2{bottom:748.941390px;}
.y119{bottom:754.382850px;}
.y13b{bottom:754.383150px;}
.y8b{bottom:754.469100px;}
.ye1{bottom:755.742300px;}
.y187{bottom:757.446150px;}
.y1af{bottom:761.786100px;}
.y4{bottom:765.609057px;}
.y14f{bottom:766.969260px;}
.y151{bottom:766.969950px;}
.yb1{bottom:766.970071px;}
.y118{bottom:769.350300px;}
.y13a{bottom:769.350600px;}
.ye0{bottom:770.794800px;}
.y150{bottom:773.603100px;}
.y186{bottom:773.943150px;}
.y1ae{bottom:778.369500px;}
.y8a{bottom:781.426432px;}
.y117{bottom:784.317750px;}
.y139{bottom:784.318050px;}
.yb0{bottom:784.913250px;}
.y14e{bottom:784.997940px;}
.ydf{bottom:785.762250px;}
.y3c{bottom:788.312058px;}
.y138{bottom:790.355700px;}
.y3{bottom:792.652087px;}
.y1ad{bottom:794.866500px;}
.y185{bottom:796.392834px;}
.y42{bottom:799.029750px;}
.yde{bottom:800.814750px;}
.y3b{bottom:801.833765px;}
.y14d{bottom:802.941120px;}
.y89{bottom:809.234400px;}
.y1ac{bottom:811.363500px;}
.yaf{bottom:811.955700px;}
.y3a{bottom:815.355471px;}
.y41{bottom:815.527350px;}
.y116{bottom:815.782200px;}
.y2{bottom:819.608719px;}
.y14c{bottom:820.969800px;}
.y1ab{bottom:827.860500px;}
.y39{bottom:828.792130px;}
.y115{bottom:830.749650px;}
.ydd{bottom:832.194150px;}
.yda{bottom:832.195500px;}
.y14a{bottom:838.997760px;}
.y38{bottom:842.313836px;}
.y40{bottom:844.102500px;}
.y1aa{bottom:844.442550px;}
.y14b{bottom:845.631300px;}
.y1{bottom:846.651750px;}
.ydc{bottom:847.246650px;}
.y37{bottom:855.835543px;}
.yac{bottom:856.940939px;}
.y88{bottom:856.941120px;}
.yae{bottom:856.941600px;}
.y3f{bottom:860.599500px;}
.y1a9{bottom:860.939550px;}
.ydb{bottom:862.214100px;}
.yad{bottom:863.659650px;}
.y36{bottom:869.357250px;}
.y85{bottom:874.969620px;}
.y87{bottom:874.969800px;}
.y3e{bottom:877.096500px;}
.y1a8{bottom:877.436550px;}
.y86{bottom:881.602950px;}
.y84{bottom:892.998300px;}
.y3d{bottom:893.593500px;}
.y1a7{bottom:893.933550px;}
.y35{bottom:904.223400px;}
.y83{bottom:933.477000px;}
.h5{height:28.091610px;}
.h12{height:31.603786px;}
.ha{height:35.559527px;}
.he{height:35.596440px;}
.hc{height:36.875473px;}
.h6{height:42.143473px;}
.h4{height:42.907172px;}
.h9{height:42.911464px;}
.h8{height:47.412000px;}
.h13{height:48.060000px;}
.h11{height:48.276000px;}
.h10{height:49.679586px;}
.hf{height:52.680527px;}
.hd{height:53.400534px;}
.h7{height:53.640536px;}
.h3{height:64.367464px;}
.hb{height:79.020527px;}
.h2{height:85.823464px;}
.h0{height:994.960500px;}
.h1{height:995.250000px;}
.w1{width:663.000000px;}
.w0{width:663.307500px;}
.x0{left:0.000000px;}
.x16{left:63.779550px;}
.x61{left:70.497600px;}
.x1{left:72.283500px;}
.xe{left:76.790550px;}
.x5f{left:79.001550px;}
.x24{left:81.807372px;}
.x62{left:88.100250px;}
.x38{left:90.312180px;}
.x60{left:96.604200px;}
.x1f{left:98.050350px;}
.x42{left:100.687200px;}
.x20{left:110.636250px;}
.x2c{left:113.442450px;}
.x21{left:122.031450px;}
.x48{left:127.047300px;}
.x3a{left:128.069250px;}
.x3b{left:133.086600px;}
.x56{left:148.733850px;}
.xf{left:149.924400px;}
.x3f{left:151.114950px;}
.x57{left:163.700700px;}
.x30{left:171.609450px;}
.x6{left:181.133850px;}
.x43{left:206.647350px;}
.x31{left:208.771650px;}
.x7{left:211.662900px;}
.x47{left:217.444650px;}
.x55{left:223.058250px;}
.x3c{left:225.099450px;}
.x39{left:232.157250px;}
.x2e{left:234.028350px;}
.x32{left:239.725950px;}
.x33{left:245.338500px;}
.x4e{left:249.335400px;}
.x2{left:250.780950px;}
.x2f{left:252.141750px;}
.x4a{left:253.842450px;}
.x3e{left:256.733850px;}
.x3{left:258.094500px;}
.x52{left:264.047100px;}
.x49{left:273.401550px;}
.x8{left:276.122700px;}
.x4b{left:283.096050px;}
.xc{left:285.647250px;}
.xa{left:290.919600px;}
.x9{left:294.406200px;}
.x4d{left:299.934000px;}
.x44{left:305.973600px;}
.x53{left:307.247100px;}
.x2d{left:310.478700px;}
.x27{left:312.519600px;}
.x1b{left:326.125950px;}
.xb{left:332.418750px;}
.x1c{left:334.969950px;}
.x1d{left:339.136950px;}
.xd{left:342.028200px;}
.x28{left:344.494350px;}
.x37{left:346.280250px;}
.x1e{left:348.321150px;}
.x45{left:350.704500px;}
.x4f{left:351.892800px;}
.x22{left:354.529050px;}
.x58{left:356.229900px;}
.x50{left:358.355850px;}
.x2b{left:359.971500px;}
.x34{left:364.053450px;}
.x19{left:370.346400px;}
.x59{left:371.536950px;}
.x23{left:374.598300px;}
.x1a{left:379.445550px;}
.x3d{left:381.231450px;}
.x4{left:392.626650px;}
.x5{left:399.940050px;}
.x35{left:412.610850px;}
.x5d{left:429.958950px;}
.x29{left:433.190400px;}
.x5e{left:444.415650px;}
.x14{left:448.413094px;}
.x2a{left:449.432850px;}
.x54{left:453.004650px;}
.x13{left:455.981386px;}
.x25{left:467.291250px;}
.x15{left:469.247947px;}
.x26{left:483.023550px;}
.x5a{left:485.659650px;}
.x5b{left:495.864450px;}
.x12{left:497.395945px;}
.x11{left:501.307139px;}
.x40{left:503.773050px;}
.x41{left:509.215650px;}
.x5c{left:511.256550px;}
.x10{left:528.519600px;}
.x46{left:559.818150px;}
.x51{left:566.617200px;}
.x17{left:567.892800px;}
.x18{left:578.692800px;}
.x36{left:585.410850px;}
.x4c{left:588.302250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls46{letter-spacing:-1.022400pt;}
.ls2b{letter-spacing:-0.965343pt;}
.ls38{letter-spacing:-0.835472pt;}
.ls37{letter-spacing:-0.816008pt;}
.ls3d{letter-spacing:-0.810675pt;}
.ls3c{letter-spacing:-0.805341pt;}
.ls2e{letter-spacing:-0.800008pt;}
.ls26{letter-spacing:-0.794675pt;}
.ls33{letter-spacing:-0.784008pt;}
.ls39{letter-spacing:-0.768008pt;}
.ls43{letter-spacing:-0.758400pt;}
.ls36{letter-spacing:-0.746674pt;}
.ls2f{letter-spacing:-0.741341pt;}
.ls45{letter-spacing:-0.739200pt;}
.ls31{letter-spacing:-0.736007pt;}
.ls34{letter-spacing:-0.730674pt;}
.ls25{letter-spacing:-0.725341pt;}
.ls44{letter-spacing:-0.724800pt;}
.ls35{letter-spacing:-0.720007pt;}
.ls42{letter-spacing:-0.720000pt;}
.ls47{letter-spacing:-0.710400pt;}
.ls2c{letter-spacing:-0.709340pt;}
.ls29{letter-spacing:-0.704007pt;}
.ls28{letter-spacing:-0.693340pt;}
.ls2d{letter-spacing:-0.682673pt;}
.ls2a{letter-spacing:-0.650673pt;}
.ls27{letter-spacing:-0.640006pt;}
.ls30{letter-spacing:-0.629340pt;}
.ls3b{letter-spacing:-0.575942pt;}
.ls4{letter-spacing:-0.008533pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.058667pt;}
.ls2{letter-spacing:0.078399pt;}
.ls3e{letter-spacing:0.110400pt;}
.ls3f{letter-spacing:0.122668pt;}
.ls20{letter-spacing:0.140798pt;}
.ls32{letter-spacing:0.158400pt;}
.lse{letter-spacing:0.176002pt;}
.ls0{letter-spacing:0.187200pt;}
.lsa{letter-spacing:0.192002pt;}
.ls41{letter-spacing:0.205867pt;}
.ls1a{letter-spacing:0.464005pt;}
.ls12{letter-spacing:0.485338pt;}
.ls17{letter-spacing:0.490672pt;}
.ls24{letter-spacing:0.496005pt;}
.lsf{letter-spacing:0.506672pt;}
.ls14{letter-spacing:0.517339pt;}
.ls13{letter-spacing:0.522672pt;}
.ls19{letter-spacing:0.528005pt;}
.ls18{letter-spacing:0.549339pt;}
.ls11{letter-spacing:0.560006pt;}
.ls15{letter-spacing:0.581339pt;}
.ls23{letter-spacing:0.592006pt;}
.lsc{letter-spacing:0.792000pt;}
.ls9{letter-spacing:1.099200pt;}
.ls7{letter-spacing:1.339200pt;}
.ls5{letter-spacing:1.348800pt;}
.ls8{letter-spacing:1.396800pt;}
.ls1f{letter-spacing:6.792448pt;}
.ls1e{letter-spacing:7.095378pt;}
.ls1d{letter-spacing:7.718400pt;}
.ls1{letter-spacing:8.020800pt;}
.ls21{letter-spacing:8.037414pt;}
.ls1c{letter-spacing:8.049600pt;}
.ls22{letter-spacing:8.341417pt;}
.ls1b{letter-spacing:8.645420pt;}
.ls16{letter-spacing:8.944089pt;}
.ls6{letter-spacing:9.230400pt;}
.ls10{letter-spacing:9.248092pt;}
.ls40{letter-spacing:14.400000pt;}
.ls3a{letter-spacing:24.720247pt;}
.lsb{letter-spacing:1361.485615pt;}
.ws15e{word-spacing:-24.773581pt;}
.ws38{word-spacing:-0.840000pt;}
.wsad{word-spacing:-0.634673pt;}
.ws3b{word-spacing:-0.063999pt;}
.ws39{word-spacing:-0.053334pt;}
.ws34{word-spacing:-0.048000pt;}
.wsdf{word-spacing:-0.042666pt;}
.ws2e{word-spacing:-0.037333pt;}
.ws26{word-spacing:-0.036001pt;}
.ws4d{word-spacing:-0.035552pt;}
.ws30{word-spacing:0.000000pt;}
.ws10c{word-spacing:0.576006pt;}
.ws136{word-spacing:0.677340pt;}
.ws10b{word-spacing:0.688007pt;}
.ws135{word-spacing:0.730674pt;}
.ws134{word-spacing:0.741341pt;}
.ws162{word-spacing:0.757341pt;}
.ws15a{word-spacing:0.799920pt;}
.ws1c4{word-spacing:0.974400pt;}
.ws31{word-spacing:6.720000pt;}
.wsf1{word-spacing:7.044179pt;}
.wse6{word-spacing:7.133777pt;}
.wsee{word-spacing:7.138044pt;}
.ws128{word-spacing:7.142311pt;}
.wse1{word-spacing:7.146577pt;}
.wsd4{word-spacing:7.968000pt;}
.wsd3{word-spacing:7.972800pt;}
.wscd{word-spacing:8.001600pt;}
.wsd1{word-spacing:8.083200pt;}
.ws11b{word-spacing:8.097600pt;}
.wsc0{word-spacing:8.810755pt;}
.ws110{word-spacing:8.826755pt;}
.wsc6{word-spacing:8.960090pt;}
.wsc4{word-spacing:8.976090pt;}
.wsc3{word-spacing:8.992090pt;}
.wsaf{word-spacing:9.045424pt;}
.wsbb{word-spacing:9.050757pt;}
.wsc2{word-spacing:9.056091pt;}
.wsb8{word-spacing:9.109424pt;}
.wsc5{word-spacing:9.114758pt;}
.ws112{word-spacing:9.120091pt;}
.wsbf{word-spacing:9.173425pt;}
.ws1c6{word-spacing:9.441600pt;}
.ws1c5{word-spacing:9.532800pt;}
.ws10a{word-spacing:9.653430pt;}
.ws1db{word-spacing:9.676800pt;}
.ws194{word-spacing:9.700800pt;}
.ws100{word-spacing:9.738764pt;}
.ws195{word-spacing:9.744000pt;}
.ws102{word-spacing:9.802765pt;}
.wsfe{word-spacing:9.861432pt;}
.wsfd{word-spacing:9.936099pt;}
.ws1e4{word-spacing:10.161600pt;}
.ws1d6{word-spacing:10.320000pt;}
.ws1e9{word-spacing:10.358400pt;}
.ws1de{word-spacing:10.387200pt;}
.ws1a2{word-spacing:10.468800pt;}
.ws20f{word-spacing:10.497600pt;}
.ws20e{word-spacing:10.521600pt;}
.ws3e{word-spacing:10.666773pt;}
.ws206{word-spacing:10.824000pt;}
.ws114{word-spacing:10.885442pt;}
.ws1fc{word-spacing:10.968000pt;}
.ws1f2{word-spacing:11.025600pt;}
.ws20d{word-spacing:11.068800pt;}
.ws17f{word-spacing:11.082777pt;}
.ws20c{word-spacing:11.097600pt;}
.ws13{word-spacing:11.107200pt;}
.ws7a{word-spacing:11.136111pt;}
.ws1f1{word-spacing:11.155200pt;}
.ws180{word-spacing:11.162778pt;}
.ws9d{word-spacing:11.184112pt;}
.ws42{word-spacing:11.216112pt;}
.wsf6{word-spacing:11.238260pt;}
.ws1f0{word-spacing:11.294400pt;}
.ws41{word-spacing:11.296113pt;}
.wsf7{word-spacing:11.349191pt;}
.wsf8{word-spacing:11.366258pt;}
.ws207{word-spacing:11.371200pt;}
.ws1bc{word-spacing:11.414400pt;}
.ws1c2{word-spacing:11.419200pt;}
.ws63{word-spacing:11.440114pt;}
.ws1ac{word-spacing:11.486400pt;}
.ws52{word-spacing:11.493448pt;}
.ws4c{word-spacing:11.498782pt;}
.ws1f4{word-spacing:11.500800pt;}
.ws1d1{word-spacing:11.524800pt;}
.ws23{word-spacing:11.577772pt;}
.ws142{word-spacing:11.578782pt;}
.ws3c{word-spacing:11.594783pt;}
.ws1c3{word-spacing:11.596800pt;}
.ws1ad{word-spacing:11.630400pt;}
.ws1c1{word-spacing:11.635200pt;}
.ws1ab{word-spacing:11.673600pt;}
.ws188{word-spacing:11.712117pt;}
.ws6d{word-spacing:11.792118pt;}
.ws1e0{word-spacing:11.817600pt;}
.ws27{word-spacing:11.840575pt;}
.ws1b9{word-spacing:11.841600pt;}
.ws1e1{word-spacing:11.856000pt;}
.ws25{word-spacing:11.858576pt;}
.ws1d5{word-spacing:11.860800pt;}
.ws24{word-spacing:11.876576pt;}
.ws1e2{word-spacing:11.894400pt;}
.ws204{word-spacing:11.899200pt;}
.ws5d{word-spacing:11.925453pt;}
.ws1df{word-spacing:11.942400pt;}
.wsfb{word-spacing:11.957453pt;}
.ws205{word-spacing:11.976000pt;}
.ws141{word-spacing:12.016120pt;}
.ws6c{word-spacing:12.053454pt;}
.ws8e{word-spacing:12.069454pt;}
.wsfc{word-spacing:12.096121pt;}
.ws154{word-spacing:12.172648pt;}
.ws22{word-spacing:12.182580pt;}
.ws40{word-spacing:12.202789pt;}
.ws2d{word-spacing:12.248892pt;}
.ws3f{word-spacing:12.256123pt;}
.wse{word-spacing:12.270780pt;}
.ws17e{word-spacing:12.309456pt;}
.wse5{word-spacing:12.326246pt;}
.wsf9{word-spacing:12.334779pt;}
.ws1ef{word-spacing:12.355200pt;}
.ws133{word-spacing:12.385979pt;}
.ws1ed{word-spacing:12.393600pt;}
.ws2b{word-spacing:12.405689pt;}
.ws155{word-spacing:12.415845pt;}
.ws2c{word-spacing:12.431822pt;}
.wse4{word-spacing:12.432911pt;}
.ws2a{word-spacing:12.439289pt;}
.ws1af{word-spacing:12.441600pt;}
.ws129{word-spacing:12.449978pt;}
.ws132{word-spacing:12.488377pt;}
.ws104{word-spacing:12.576126pt;}
.wsef{word-spacing:12.616376pt;}
.ws44{word-spacing:12.618793pt;}
.ws1b5{word-spacing:12.624000pt;}
.wsf0{word-spacing:12.637709pt;}
.ws16{word-spacing:12.638400pt;}
.ws115{word-spacing:12.698794pt;}
.ws2f{word-spacing:12.700619pt;}
.ws1fd{word-spacing:12.734400pt;}
.ws9f{word-spacing:12.736127pt;}
.ws179{word-spacing:12.741461pt;}
.ws43{word-spacing:12.789461pt;}
.ws118{word-spacing:12.805461pt;}
.ws20a{word-spacing:12.806400pt;}
.ws189{word-spacing:12.826795pt;}
.ws1a3{word-spacing:12.902400pt;}
.ws86{word-spacing:12.922796pt;}
.ws49{word-spacing:12.944129pt;}
.ws9e{word-spacing:12.976130pt;}
.ws164{word-spacing:13.002797pt;}
.ws15{word-spacing:13.017600pt;}
.ws171{word-spacing:13.056131pt;}
.ws209{word-spacing:13.065600pt;}
.ws9c{word-spacing:13.066797pt;}
.ws178{word-spacing:13.104131pt;}
.ws1a4{word-spacing:13.108800pt;}
.ws170{word-spacing:13.109464pt;}
.ws1b0{word-spacing:13.113600pt;}
.ws158{word-spacing:13.130798pt;}
.ws6e{word-spacing:13.162798pt;}
.ws203{word-spacing:13.185600pt;}
.wsa6{word-spacing:13.301466pt;}
.ws173{word-spacing:13.333467pt;}
.wsb9{word-spacing:13.349467pt;}
.ws103{word-spacing:13.370800pt;}
.ws137{word-spacing:13.424134pt;}
.wsa8{word-spacing:13.429468pt;}
.ws197{word-spacing:13.488000pt;}
.ws174{word-spacing:13.530802pt;}
.ws11{word-spacing:13.545600pt;}
.ws186{word-spacing:13.589469pt;}
.wsbc{word-spacing:13.594803pt;}
.wsd{word-spacing:13.619030pt;}
.ws105{word-spacing:13.648136pt;}
.wsa1{word-spacing:13.658803pt;}
.ws198{word-spacing:13.680000pt;}
.wsa0{word-spacing:13.680137pt;}
.wsb6{word-spacing:13.712137pt;}
.ws1e8{word-spacing:13.747200pt;}
.ws119{word-spacing:13.771200pt;}
.ws187{word-spacing:13.792138pt;}
.ws8a{word-spacing:13.802805pt;}
.ws10e{word-spacing:13.824138pt;}
.ws144{word-spacing:13.829472pt;}
.wsb4{word-spacing:13.850805pt;}
.wsf{word-spacing:13.866493pt;}
.ws7d{word-spacing:13.888139pt;}
.ws143{word-spacing:13.909472pt;}
.wsb5{word-spacing:13.914806pt;}
.ws175{word-spacing:13.941473pt;}
.ws10{word-spacing:13.968892pt;}
.ws1f7{word-spacing:13.977600pt;}
.wsb{word-spacing:13.981692pt;}
.wsff{word-spacing:13.994807pt;}
.ws1bb{word-spacing:14.011200pt;}
.ws15c{word-spacing:14.026807pt;}
.wsc{word-spacing:14.041424pt;}
.ws1f5{word-spacing:14.044800pt;}
.ws1c0{word-spacing:14.054400pt;}
.ws1a7{word-spacing:14.092800pt;}
.ws1f6{word-spacing:14.102400pt;}
.ws21{word-spacing:14.109690pt;}
.ws1cc{word-spacing:14.112000pt;}
.ws156{word-spacing:14.112141pt;}
.ws12b{word-spacing:14.126400pt;}
.wsc9{word-spacing:14.131200pt;}
.ws1d3{word-spacing:14.136000pt;}
.ws4f{word-spacing:14.144141pt;}
.ws1fe{word-spacing:14.145600pt;}
.ws157{word-spacing:14.154808pt;}
.ws1a5{word-spacing:14.164800pt;}
.ws1f{word-spacing:14.165156pt;}
.ws10f{word-spacing:14.186809pt;}
.wsd7{word-spacing:14.188800pt;}
.ws1e6{word-spacing:14.198400pt;}
.ws145{word-spacing:14.203200pt;}
.ws1ce{word-spacing:14.208000pt;}
.ws1ee{word-spacing:14.217600pt;}
.wsf2{word-spacing:14.227200pt;}
.ws1b1{word-spacing:14.232000pt;}
.ws1a6{word-spacing:14.241600pt;}
.ws20{word-spacing:14.241955pt;}
.ws1dc{word-spacing:14.246400pt;}
.wsde{word-spacing:14.265600pt;}
.ws148{word-spacing:14.275200pt;}
.wscb{word-spacing:14.280000pt;}
.ws1e7{word-spacing:14.284800pt;}
.wsca{word-spacing:14.294400pt;}
.wsf4{word-spacing:14.308800pt;}
.wsce{word-spacing:14.313600pt;}
.ws196{word-spacing:14.318400pt;}
.ws176{word-spacing:14.320143pt;}
.ws1cf{word-spacing:14.323200pt;}
.wsa5{word-spacing:14.325477pt;}
.wsdd{word-spacing:14.328000pt;}
.wsd5{word-spacing:14.332800pt;}
.ws1c7{word-spacing:14.337600pt;}
.ws92{word-spacing:14.341477pt;}
.ws12a{word-spacing:14.352000pt;}
.ws1a0{word-spacing:14.356800pt;}
.ws19a{word-spacing:14.361600pt;}
.ws1bf{word-spacing:14.371200pt;}
.wsfa{word-spacing:14.373477pt;}
.wse7{word-spacing:14.376000pt;}
.ws1ae{word-spacing:14.395200pt;}
.ws1d0{word-spacing:14.400000pt;}
.ws93{word-spacing:14.400144pt;}
.wsd8{word-spacing:14.424000pt;}
.wsf5{word-spacing:14.428800pt;}
.ws177{word-spacing:14.437478pt;}
.ws1b8{word-spacing:14.438400pt;}
.wsd0{word-spacing:14.448000pt;}
.ws1e5{word-spacing:14.457600pt;}
.ws94{word-spacing:14.458811pt;}
.ws1ba{word-spacing:14.467200pt;}
.ws19b{word-spacing:14.472000pt;}
.wscf{word-spacing:14.481600pt;}
.ws1aa{word-spacing:14.515200pt;}
.ws101{word-spacing:14.517479pt;}
.ws14{word-spacing:14.529600pt;}
.wsa7{word-spacing:14.554812pt;}
.ws1e3{word-spacing:14.582400pt;}
.ws1d8{word-spacing:14.596800pt;}
.ws17b{word-spacing:14.618813pt;}
.ws163{word-spacing:14.698814pt;}
.ws1b2{word-spacing:14.740800pt;}
.ws6b{word-spacing:14.794815pt;}
.ws111{word-spacing:14.800148pt;}
.ws1b{word-spacing:14.832000pt;}
.ws1eb{word-spacing:14.913600pt;}
.ws17a{word-spacing:14.922816pt;}
.ws1fa{word-spacing:15.000000pt;}
.ws19f{word-spacing:15.014400pt;}
.ws1ec{word-spacing:15.019200pt;}
.ws19d{word-spacing:15.043200pt;}
.ws18f{word-spacing:15.076800pt;}
.ws1f9{word-spacing:15.081600pt;}
.ws108{word-spacing:15.109484pt;}
.ws109{word-spacing:15.120151pt;}
.wsac{word-spacing:15.178818pt;}
.ws19e{word-spacing:15.187200pt;}
.ws1fb{word-spacing:15.192000pt;}
.ws1ea{word-spacing:15.196800pt;}
.wsae{word-spacing:15.285486pt;}
.ws33{word-spacing:15.489600pt;}
.ws90{word-spacing:15.701490pt;}
.ws1ff{word-spacing:15.729600pt;}
.wsa9{word-spacing:15.776158pt;}
.ws200{word-spacing:15.825600pt;}
.ws51{word-spacing:15.829492pt;}
.ws32{word-spacing:15.907200pt;}
.ws159{word-spacing:15.957493pt;}
.ws84{word-spacing:15.968160pt;}
.ws4e{word-spacing:15.973493pt;}
.ws3a{word-spacing:15.984000pt;}
.ws172{word-spacing:15.984160pt;}
.ws80{word-spacing:16.000160pt;}
.ws50{word-spacing:16.005493pt;}
.ws7b{word-spacing:16.026827pt;}
.wsb0{word-spacing:16.042827pt;}
.ws185{word-spacing:16.101494pt;}
.ws18e{word-spacing:16.117495pt;}
.wsa2{word-spacing:16.128161pt;}
.ws77{word-spacing:16.133495pt;}
.wsa4{word-spacing:16.144161pt;}
.ws7f{word-spacing:16.154828pt;}
.wsb3{word-spacing:16.181495pt;}
.ws13a{word-spacing:16.208162pt;}
.ws1d9{word-spacing:16.243200pt;}
.ws8c{word-spacing:16.250829pt;}
.ws138{word-spacing:16.304163pt;}
.ws1a{word-spacing:16.344000pt;}
.ws1cb{word-spacing:16.430400pt;}
.ws91{word-spacing:16.469498pt;}
.ws16d{word-spacing:16.490832pt;}
.ws168{word-spacing:16.512165pt;}
.ws45{word-spacing:16.549499pt;}
.wsc1{word-spacing:16.608166pt;}
.ws18d{word-spacing:16.736167pt;}
.ws1cd{word-spacing:16.848000pt;}
.ws1da{word-spacing:16.896000pt;}
.ws1a8{word-spacing:16.905600pt;}
.ws113{word-spacing:16.912169pt;}
.ws1a9{word-spacing:16.924800pt;}
.ws72{word-spacing:16.938836pt;}
.ws37{word-spacing:16.992000pt;}
.ws1a1{word-spacing:17.049600pt;}
.ws78{word-spacing:17.184172pt;}
.ws7e{word-spacing:17.290840pt;}
.ws13c{word-spacing:17.322840pt;}
.ws88{word-spacing:17.381507pt;}
.ws58{word-spacing:17.488175pt;}
.ws8b{word-spacing:17.509508pt;}
.ws68{word-spacing:17.536175pt;}
.ws12{word-spacing:17.553600pt;}
.ws208{word-spacing:17.563200pt;}
.ws117{word-spacing:17.685510pt;}
.ws191{word-spacing:17.721600pt;}
.wsab{word-spacing:17.728177pt;}
.ws15d{word-spacing:17.749511pt;}
.ws116{word-spacing:17.786845pt;}
.ws192{word-spacing:17.808178pt;}
.ws59{word-spacing:17.818845pt;}
.ws4a{word-spacing:17.840178pt;}
.ws8f{word-spacing:17.877512pt;}
.ws28{word-spacing:17.957513pt;}
.ws6a{word-spacing:17.984180pt;}
.ws3d{word-spacing:18.026847pt;}
.ws106{word-spacing:18.064181pt;}
.ws199{word-spacing:18.101514pt;}
.ws8d{word-spacing:18.117515pt;}
.ws167{word-spacing:18.144181pt;}
.ws202{word-spacing:18.170848pt;}
.wsb7{word-spacing:18.186849pt;}
.ws1bd{word-spacing:18.244800pt;}
.ws1be{word-spacing:18.254400pt;}
.ws193{word-spacing:18.261516pt;}
.ws99{word-spacing:18.277516pt;}
.ws181{word-spacing:18.362850pt;}
.ws60{word-spacing:18.394851pt;}
.ws61{word-spacing:18.421518pt;}
.ws16e{word-spacing:18.533519pt;}
.ws1e{word-spacing:18.614400pt;}
.ws1dd{word-spacing:18.643200pt;}
.wsb1{word-spacing:18.693520pt;}
.ws13b{word-spacing:18.720187pt;}
.wsb2{word-spacing:18.752188pt;}
.ws66{word-spacing:18.853522pt;}
.ws18b{word-spacing:18.970856pt;}
.ws18c{word-spacing:19.120191pt;}
.ws165{word-spacing:19.573529pt;}
.ws98{word-spacing:19.824198pt;}
.ws16b{word-spacing:20.122868pt;}
.ws87{word-spacing:20.138868pt;}
.ws79{word-spacing:20.234869pt;}
.ws1c8{word-spacing:20.409600pt;}
.ws161{word-spacing:20.410871pt;}
.ws73{word-spacing:20.490872pt;}
.ws53{word-spacing:20.512205pt;}
.ws13d{word-spacing:20.704207pt;}
.ws18{word-spacing:20.712000pt;}
.ws169{word-spacing:20.896209pt;}
.ws97{word-spacing:20.960210pt;}
.ws62{word-spacing:21.029544pt;}
.ws35{word-spacing:21.124800pt;}
.ws95{word-spacing:21.139024pt;}
.ws75{word-spacing:21.141545pt;}
.ws74{word-spacing:21.168212pt;}
.ws16a{word-spacing:21.178878pt;}
.ws8{word-spacing:21.203023pt;}
.ws6{word-spacing:21.209423pt;}
.ws29{word-spacing:21.216141pt;}
.ws36{word-spacing:21.235200pt;}
.ws47{word-spacing:21.237546pt;}
.ws4{word-spacing:21.260623pt;}
.ws6f{word-spacing:21.324622pt;}
.ws9{word-spacing:21.331022pt;}
.wsa{word-spacing:21.337422pt;}
.ws7c{word-spacing:21.354880pt;}
.ws5{word-spacing:21.356622pt;}
.ws7{word-spacing:21.375822pt;}
.ws85{word-spacing:21.414222pt;}
.ws16c{word-spacing:21.418881pt;}
.wsa3{word-spacing:21.433421pt;}
.ws9b{word-spacing:21.497421pt;}
.ws1f8{word-spacing:21.830400pt;}
.ws1c{word-spacing:21.854400pt;}
.ws1d{word-spacing:21.936000pt;}
.ws1d4{word-spacing:22.032000pt;}
.ws81{word-spacing:22.165555pt;}
.ws1b7{word-spacing:22.209600pt;}
.ws17{word-spacing:22.219200pt;}
.ws10d{word-spacing:22.309556pt;}
.ws19{word-spacing:22.324800pt;}
.ws140{word-spacing:22.373557pt;}
.ws107{word-spacing:22.378890pt;}
.ws190{word-spacing:22.478400pt;}
.ws1b6{word-spacing:22.536000pt;}
.ws1ca{word-spacing:22.555200pt;}
.ws1c9{word-spacing:22.593600pt;}
.wsbd{word-spacing:22.597559pt;}
.ws16f{word-spacing:22.634893pt;}
.wsbe{word-spacing:22.682893pt;}
.ws201{word-spacing:22.896000pt;}
.ws182{word-spacing:22.981563pt;}
.ws20b{word-spacing:23.049600pt;}
.ws5c{word-spacing:23.050897pt;}
.ws15b{word-spacing:23.077564pt;}
.ws19c{word-spacing:23.160000pt;}
.ws83{word-spacing:23.232232pt;}
.ws67{word-spacing:23.584236pt;}
.ws56{word-spacing:23.733571pt;}
.ws76{word-spacing:23.749571pt;}
.ws55{word-spacing:23.888239pt;}
.ws70{word-spacing:23.904239pt;}
.wse3{word-spacing:23.948501pt;}
.ws54{word-spacing:23.989573pt;}
.ws1{word-spacing:24.029716pt;}
.ws1b4{word-spacing:24.038400pt;}
.wse2{word-spacing:24.076499pt;}
.wse0{word-spacing:24.106365pt;}
.ws1b3{word-spacing:24.115200pt;}
.ws17c{word-spacing:24.442911pt;}
.ws64{word-spacing:24.501578pt;}
.ws17d{word-spacing:24.506912pt;}
.ws65{word-spacing:24.522912pt;}
.ws69{word-spacing:24.597579pt;}
.ws57{word-spacing:24.741581pt;}
.ws46{word-spacing:24.794915pt;}
.ws5e{word-spacing:25.045584pt;}
.ws71{word-spacing:25.072251pt;}
.ws5f{word-spacing:25.205585pt;}
.ws15f{word-spacing:25.445588pt;}
.ws160{word-spacing:25.509588pt;}
.ws89{word-spacing:25.589589pt;}
.ws184{word-spacing:25.621590pt;}
.ws183{word-spacing:25.680257pt;}
.ws5a{word-spacing:25.701590pt;}
.ws5b{word-spacing:25.760258pt;}
.ws96{word-spacing:26.058927pt;}
.ws166{word-spacing:26.064261pt;}
.ws139{word-spacing:26.256263pt;}
.ws3{word-spacing:26.376368pt;}
.ws18a{word-spacing:26.794935pt;}
.ws48{word-spacing:26.912269pt;}
.ws13f{word-spacing:27.466941pt;}
.ws13e{word-spacing:27.488275pt;}
.ws2{word-spacing:28.449956pt;}
.ws0{word-spacing:28.612088pt;}
.wsc8{word-spacing:28.944289pt;}
.ws4b{word-spacing:29.280293pt;}
.wsc7{word-spacing:29.856299pt;}
.ws9a{word-spacing:30.341637pt;}
.ws1d2{word-spacing:30.566400pt;}
.wsba{word-spacing:30.645640pt;}
.ws82{word-spacing:32.160322pt;}
.ws12f{word-spacing:33.783044pt;}
.ws131{word-spacing:33.787311pt;}
.ws130{word-spacing:33.804377pt;}
.ws1d7{word-spacing:35.707200pt;}
.wsaa{word-spacing:36.101694pt;}
.ws126{word-spacing:52.531200pt;}
.ws124{word-spacing:53.270400pt;}
.ws122{word-spacing:81.369600pt;}
.ws127{word-spacing:91.344000pt;}
.ws11e{word-spacing:91.761600pt;}
.ws120{word-spacing:95.827200pt;}
.ws12e{word-spacing:102.417600pt;}
.ws11c{word-spacing:103.315200pt;}
.ws11f{word-spacing:105.369600pt;}
.ws123{word-spacing:111.331200pt;}
.ws125{word-spacing:115.344000pt;}
.ws121{word-spacing:115.536000pt;}
.ws11d{word-spacing:163.420800pt;}
.ws151{word-spacing:210.062400pt;}
.ws150{word-spacing:210.134400pt;}
.ws14d{word-spacing:210.172800pt;}
.ws14a{word-spacing:210.364800pt;}
.ws153{word-spacing:210.475200pt;}
.wsd6{word-spacing:233.040000pt;}
.ws14c{word-spacing:234.062400pt;}
.ws152{word-spacing:234.364800pt;}
.wsd2{word-spacing:257.040000pt;}
.ws14e{word-spacing:266.716800pt;}
.wsdb{word-spacing:280.924800pt;}
.wsec{word-spacing:311.654400pt;}
.wse8{word-spacing:318.552000pt;}
.wsed{word-spacing:335.539200pt;}
.wsea{word-spacing:335.654400pt;}
.ws12d{word-spacing:335.822400pt;}
.wseb{word-spacing:335.841600pt;}
.wsf3{word-spacing:341.371200pt;}
.wscc{word-spacing:341.779200pt;}
.wse9{word-spacing:359.539200pt;}
.wsd9{word-spacing:360.936000pt;}
.wsdc{word-spacing:488.116800pt;}
.ws14f{word-spacing:494.467200pt;}
.wsda{word-spacing:503.572800pt;}
.ws14b{word-spacing:567.964800pt;}
.ws147{word-spacing:577.732800pt;}
.ws149{word-spacing:613.420800pt;}
.ws146{word-spacing:731.452800pt;}
.ws11a{word-spacing:781.041600pt;}
.ws12c{word-spacing:815.860800pt;}
.ws1f3{word-spacing:1334.765348pt;}
._57{margin-left:-26.357597pt;}
._56{margin-left:-25.434921pt;}
._58{margin-left:-24.122908pt;}
._1f{margin-left:-7.550400pt;}
._5{margin-left:-5.772728pt;}
._c{margin-left:-4.387200pt;}
._9{margin-left:-3.297600pt;}
._2{margin-left:-2.374378pt;}
._0{margin-left:-0.895994pt;}
._8{width:1.337562pt;}
._39{width:5.971474pt;}
._2e{width:6.877781pt;}
._d{width:8.016000pt;}
._1b{width:9.050757pt;}
._18{width:10.032100pt;}
._e{width:11.329368pt;}
._7{width:12.436800pt;}
._4{width:13.333167pt;}
._3{width:14.664350pt;}
._6{width:16.169594pt;}
._10{width:17.284800pt;}
._17{width:18.256889pt;}
._12{width:19.162858pt;}
._14{width:20.096201pt;}
._b{width:21.302400pt;}
._11{width:22.200000pt;}
._a{width:23.308800pt;}
._16{width:24.698914pt;}
._13{width:25.808258pt;}
._1{width:27.366229pt;}
._1d{width:29.172507pt;}
._15{width:30.305421pt;}
._1c{width:31.386163pt;}
._19{width:33.563002pt;}
._5b{width:36.744000pt;}
._5a{width:72.022933pt;}
._3e{width:76.464000pt;}
._59{width:86.443200pt;}
._3d{width:92.458219pt;}
._3a{width:101.415019pt;}
._43{width:108.048000pt;}
._40{width:110.016000pt;}
._3c{width:116.122219pt;}
._42{width:118.032000pt;}
._41{width:132.403200pt;}
._3f{width:141.465600pt;}
._3b{width:162.984000pt;}
._20{width:189.786850pt;}
._21{width:190.815633pt;}
._2c{width:205.354483pt;}
._2a{width:208.900800pt;}
._51{width:210.523200pt;}
._2d{width:214.368000pt;}
._26{width:232.900800pt;}
._4e{width:242.875200pt;}
._24{width:256.603200pt;}
._37{width:261.345600pt;}
._4a{width:264.364800pt;}
._4d{width:266.764800pt;}
._38{width:285.297600pt;}
._22{width:288.072000pt;}
._32{width:311.212800pt;}
._52{width:314.352000pt;}
._4b{width:334.075200pt;}
._25{width:338.111650pt;}
._2f{width:342.096000pt;}
._53{width:356.638044pt;}
._27{width:366.969600pt;}
._49{width:370.329600pt;}
._23{width:372.451200pt;}
._2b{width:374.227200pt;}
._31{width:381.024000pt;}
._34{width:385.598400pt;}
._1e{width:386.505600pt;}
._30{width:389.788800pt;}
._29{width:397.007650pt;}
._28{width:406.118400pt;}
._33{width:412.435200pt;}
._36{width:421.454400pt;}
._35{width:435.259200pt;}
._48{width:471.408000pt;}
._55{width:529.636800pt;}
._4f{width:555.931200pt;}
._50{width:589.550400pt;}
._44{width:613.468800pt;}
._45{width:622.910400pt;}
._46{width:638.332800pt;}
._54{width:651.547200pt;}
._4c{width:653.083200pt;}
._47{width:731.520000pt;}
._f{width:780.498491pt;}
._5c{width:1515.721824pt;}
._1a{width:1542.634093pt;}
.fs3{font-size:28.440000pt;}
.fsb{font-size:31.995733pt;}
.fsa{font-size:35.552000pt;}
.fs7{font-size:36.000533pt;}
.fs9{font-size:37.332800pt;}
.fs2{font-size:42.661867pt;}
.fs4{font-size:42.666133pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.333867pt;}
.fs1{font-size:63.999467pt;}
.fs8{font-size:80.000533pt;}
.fs0{font-size:85.332800pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:29.329534pt;}
.y33{bottom:41.348312pt;}
.y32{bottom:53.367090pt;}
.y31{bottom:65.310267pt;}
.yab{bottom:89.724266pt;}
.y184{bottom:89.725226pt;}
.yd3{bottom:89.725706pt;}
.y137{bottom:89.726000pt;}
.y1a6{bottom:89.735467pt;}
.y1d7{bottom:89.804800pt;}
.y114{bottom:90.101173pt;}
.yd9{bottom:91.161467pt;}
.y30{bottom:95.470066pt;}
.y82{bottom:97.586560pt;}
.y1a5{bottom:104.399467pt;}
.y1d6{bottom:104.470000pt;}
.yaa{bottom:105.749760pt;}
.y183{bottom:105.750720pt;}
.y136{bottom:105.750827pt;}
.yd1{bottom:105.751200pt;}
.y113{bottom:106.126667pt;}
.yd8{bottom:107.186961pt;}
.y2f{bottom:108.774433pt;}
.yd2{bottom:111.647200pt;}
.y81{bottom:113.612053pt;}
.y1a4{bottom:119.063467pt;}
.y1d5{bottom:119.209600pt;}
.ya9{bottom:121.699253pt;}
.ycf{bottom:121.699840pt;}
.y182{bottom:121.700213pt;}
.y135{bottom:121.700320pt;}
.y2e{bottom:122.078800pt;}
.y112{bottom:122.152160pt;}
.yd7{bottom:123.136453pt;}
.yd0{bottom:127.672400pt;}
.y80{bottom:129.637547pt;}
.y1a3{bottom:133.803067pt;}
.y1d4{bottom:133.873600pt;}
.ya8{bottom:137.724746pt;}
.yce{bottom:137.725334pt;}
.y181{bottom:137.725706pt;}
.y134{bottom:137.725814pt;}
.y111{bottom:138.101653pt;}
.yd6{bottom:139.161947pt;}
.y7f{bottom:145.587040pt;}
.y1a2{bottom:148.467067pt;}
.y1d3{bottom:148.537600pt;}
.ya7{bottom:153.750240pt;}
.ycd{bottom:153.750827pt;}
.y180{bottom:153.751200pt;}
.y133{bottom:153.751307pt;}
.y110{bottom:154.127147pt;}
.yd5{bottom:155.187441pt;}
.y2d{bottom:159.879600pt;}
.y7c{bottom:161.612053pt;}
.y7e{bottom:161.612533pt;}
.y1a1{bottom:163.131067pt;}
.y1d2{bottom:163.201600pt;}
.y7d{bottom:167.508667pt;}
.ya6{bottom:169.699733pt;}
.y130{bottom:169.699840pt;}
.ycc{bottom:169.700320pt;}
.y132{bottom:169.700800pt;}
.y10f{bottom:170.152640pt;}
.yd4{bottom:171.136933pt;}
.y2c{bottom:174.544800pt;}
.y131{bottom:175.672400pt;}
.y7b{bottom:177.637547pt;}
.y17f{bottom:177.713333pt;}
.y1a0{bottom:177.796267pt;}
.y1d1{bottom:177.941200pt;}
.ya5{bottom:185.725226pt;}
.y12f{bottom:185.725334pt;}
.ycb{bottom:185.725814pt;}
.y10e{bottom:186.102133pt;}
.y2b{bottom:189.208800pt;}
.y19f{bottom:192.535867pt;}
.y1d0{bottom:192.605200pt;}
.y7a{bottom:193.587040pt;}
.y1ea{bottom:198.429867pt;}
.ya4{bottom:201.750720pt;}
.y12e{bottom:201.750827pt;}
.yca{bottom:201.751307pt;}
.y10d{bottom:202.127627pt;}
.y2a{bottom:203.872800pt;}
.yf6{bottom:204.094400pt;}
.y19e{bottom:207.199867pt;}
.y1cf{bottom:207.289200pt;}
.y77{bottom:209.612347pt;}
.y79{bottom:209.612533pt;}
.y1e9{bottom:213.093867pt;}
.y78{bottom:215.508667pt;}
.ya3{bottom:217.700213pt;}
.y12d{bottom:217.700320pt;}
.yc9{bottom:217.700800pt;}
.y17e{bottom:217.776027pt;}
.y10c{bottom:218.153120pt;}
.y29{bottom:218.536800pt;}
.y19d{bottom:221.863867pt;}
.y1ce{bottom:221.954400pt;}
.y76{bottom:225.637841pt;}
.y1e8{bottom:227.757867pt;}
.yf5{bottom:229.038000pt;}
.y28{bottom:233.200800pt;}
.y17d{bottom:233.725520pt;}
.ya2{bottom:233.725706pt;}
.y12c{bottom:233.725814pt;}
.y10b{bottom:234.102613pt;}
.y19c{bottom:236.527867pt;}
.y1cd{bottom:236.694000pt;}
.y73{bottom:241.586746pt;}
.y75{bottom:241.587333pt;}
.yc8{bottom:241.738533pt;}
.yf4{bottom:242.342400pt;}
.y74{bottom:247.559067pt;}
.y27{bottom:247.864800pt;}
.y17c{bottom:249.751014pt;}
.ya1{bottom:249.751200pt;}
.y12b{bottom:249.751307pt;}
.y10a{bottom:250.128107pt;}
.y19b{bottom:251.267467pt;}
.y1cc{bottom:251.358000pt;}
.yf3{bottom:255.722400pt;}
.y72{bottom:257.612240pt;}
.y1e7{bottom:258.447867pt;}
.y26{bottom:262.528800pt;}
.y12a{bottom:265.700800pt;}
.y17b{bottom:265.776507pt;}
.y19a{bottom:265.931467pt;}
.y1cb{bottom:266.022000pt;}
.y109{bottom:266.153600pt;}
.yf0{bottom:269.026400pt;}
.yf2{bottom:269.026800pt;}
.y1e6{bottom:273.111867pt;}
.y6f{bottom:273.637547pt;}
.y71{bottom:273.637733pt;}
.ya0{bottom:273.713333pt;}
.yf1{bottom:274.393600pt;}
.y25{bottom:277.192800pt;}
.y70{bottom:279.533733pt;}
.y199{bottom:280.595467pt;}
.y1ca{bottom:280.686000pt;}
.yc7{bottom:281.724720pt;}
.y178{bottom:281.725387pt;}
.y17a{bottom:281.726000pt;}
.y108{bottom:282.103093pt;}
.yef{bottom:282.406400pt;}
.y179{bottom:287.697600pt;}
.y6e{bottom:289.587040pt;}
.y129{bottom:289.738533pt;}
.y24{bottom:291.856800pt;}
.y198{bottom:295.259467pt;}
.y1c9{bottom:295.425600pt;}
.yc6{bottom:297.750214pt;}
.y177{bottom:297.750880pt;}
.y107{bottom:298.128587pt;}
.y1e5{bottom:303.801867pt;}
.y6b{bottom:305.612347pt;}
.y6d{bottom:305.612533pt;}
.y23{bottom:306.520800pt;}
.y197{bottom:309.999067pt;}
.y1c8{bottom:310.089600pt;}
.yee{bottom:310.299200pt;}
.y6c{bottom:311.508533pt;}
.yc5{bottom:313.699707pt;}
.y176{bottom:313.776374pt;}
.y106{bottom:314.154080pt;}
.y9f{bottom:316.194347pt;}
.y1e4{bottom:318.465867pt;}
.y22{bottom:321.184800pt;}
.y6a{bottom:321.637841pt;}
.y196{bottom:324.663067pt;}
.y1c7{bottom:324.753600pt;}
.yc4{bottom:329.725200pt;}
.y173{bottom:329.725573pt;}
.y175{bottom:329.725867pt;}
.y105{bottom:330.103573pt;}
.y128{bottom:330.330480pt;}
.y9e{bottom:332.143840pt;}
.y1e3{bottom:333.129867pt;}
.y174{bottom:335.697600pt;}
.y21{bottom:335.848800pt;}
.y67{bottom:337.586853pt;}
.y69{bottom:337.587333pt;}
.yed{bottom:338.267600pt;}
.y195{bottom:339.327067pt;}
.y1c6{bottom:339.417600pt;}
.y68{bottom:343.559067pt;}
.yc3{bottom:345.750694pt;}
.y170{bottom:345.750773pt;}
.y172{bottom:345.751067pt;}
.y102{bottom:346.128880pt;}
.y104{bottom:346.129067pt;}
.y127{bottom:346.355974pt;}
.y9d{bottom:348.169334pt;}
.y20{bottom:350.513333pt;}
.y171{bottom:351.647200pt;}
.y103{bottom:352.025200pt;}
.y66{bottom:353.612347pt;}
.y194{bottom:353.991067pt;}
.y1c5{bottom:354.157200pt;}
.yc2{bottom:361.700187pt;}
.y16d{bottom:361.775894pt;}
.y16f{bottom:361.776267pt;}
.y101{bottom:362.154374pt;}
.y126{bottom:362.305467pt;}
.y1e2{bottom:363.744267pt;}
.y9c{bottom:364.194827pt;}
.y16e{bottom:367.672400pt;}
.y193{bottom:368.730667pt;}
.y1c4{bottom:368.821200pt;}
.y65{bottom:369.637841pt;}
.y16c{bottom:377.725387pt;}
.yc1{bottom:377.725680pt;}
.y100{bottom:378.103867pt;}
.y1e1{bottom:378.483867pt;}
.yfe{bottom:378.934966pt;}
.y9b{bottom:380.144320pt;}
.y1c3{bottom:383.485200pt;}
.yff{bottom:383.697600pt;}
.y62{bottom:385.586853pt;}
.y64{bottom:385.587333pt;}
.y192{bottom:388.762133pt;}
.y63{bottom:391.559067pt;}
.yfd{bottom:392.239333pt;}
.y1e0{bottom:393.147867pt;}
.y16b{bottom:393.750880pt;}
.yc0{bottom:393.751174pt;}
.y148{bottom:395.262933pt;}
.y9a{bottom:396.169814pt;}
.y1c2{bottom:398.149200pt;}
.y149{bottom:400.025200pt;}
.y61{bottom:401.612347pt;}
.y125{bottom:408.416300pt;}
.ybf{bottom:409.700667pt;}
.y16a{bottom:409.776374pt;}
.y99{bottom:412.195307pt;}
.y1c1{bottom:412.888800pt;}
.y1f{bottom:413.858701pt;}
.yfc{bottom:417.183333pt;}
.y60{bottom:417.637841pt;}
.y147{bottom:420.204267pt;}
.y124{bottom:421.719600pt;}
.y1df{bottom:423.762267pt;}
.y167{bottom:425.725387pt;}
.y169{bottom:425.725867pt;}
.y191{bottom:426.558000pt;}
.y1e{bottom:427.237733pt;}
.y1c0{bottom:427.552800pt;}
.y98{bottom:428.144800pt;}
.yfb{bottom:430.563333pt;}
.y168{bottom:431.697600pt;}
.y1d{bottom:431.924267pt;}
.y146{bottom:433.508667pt;}
.y5d{bottom:433.586133pt;}
.y5f{bottom:433.587333pt;}
.ybe{bottom:433.738533pt;}
.y1de{bottom:438.426267pt;}
.y5e{bottom:439.558933pt;}
.y1c{bottom:440.542734pt;}
.y190{bottom:441.222000pt;}
.y166{bottom:441.750880pt;}
.y1bf{bottom:442.216800pt;}
.yfa{bottom:443.867733pt;}
.y123{bottom:446.663467pt;}
.y145{bottom:446.888667pt;}
.y5c{bottom:449.611626pt;}
.y97{bottom:452.182533pt;}
.y1dd{bottom:453.090267pt;}
.y1b{bottom:453.846034pt;}
.y1be{bottom:456.956400pt;}
.y165{bottom:457.776374pt;}
.y122{bottom:459.967867pt;}
.y144{bottom:460.193067pt;}
.y18f{bottom:461.177867pt;}
.y5b{bottom:465.637120pt;}
.y1a{bottom:467.225067pt;}
.y1bd{bottom:471.620400pt;}
.yf9{bottom:471.836133pt;}
.y19{bottom:471.911733pt;}
.y121{bottom:473.347867pt;}
.y143{bottom:473.573067pt;}
.y162{bottom:473.725093pt;}
.ybc{bottom:473.725200pt;}
.y164{bottom:473.725867pt;}
.ybd{bottom:479.621867pt;}
.y163{bottom:479.697600pt;}
.y18{bottom:480.529067pt;}
.y5a{bottom:481.586613pt;}
.y1dc{bottom:483.780267pt;}
.y17{bottom:485.291200pt;}
.y1bc{bottom:486.284400pt;}
.y120{bottom:486.652267pt;}
.y142{bottom:486.877467pt;}
.y161{bottom:489.750587pt;}
.ybb{bottom:489.750694pt;}
.y16{bottom:493.908166pt;}
.y96{bottom:494.586773pt;}
.y59{bottom:497.612106pt;}
.y1db{bottom:498.444267pt;}
.y18e{bottom:498.973600pt;}
.yf7{bottom:499.729067pt;}
.y141{bottom:500.181867pt;}
.y1bb{bottom:500.948400pt;}
.yf8{bottom:505.096000pt;}
.yba{bottom:505.700187pt;}
.y160{bottom:505.776080pt;}
.y15{bottom:507.212533pt;}
.y95{bottom:510.612266pt;}
.y14{bottom:511.974667pt;}
.y140{bottom:513.561867pt;}
.y58{bottom:513.637600pt;}
.y56{bottom:513.637841pt;}
.y11f{bottom:514.620667pt;}
.y1ba{bottom:515.688000pt;}
.y57{bottom:519.533733pt;}
.y12{bottom:520.516400pt;}
.y15f{bottom:521.725573pt;}
.yb9{bottom:521.725680pt;}
.y94{bottom:526.637760pt;}
.y13f{bottom:526.866267pt;}
.y13{bottom:527.621867pt;}
.y1da{bottom:529.134267pt;}
.y53{bottom:529.586746pt;}
.y55{bottom:529.587333pt;}
.y1b9{bottom:530.352000pt;}
.y18d{bottom:533.669200pt;}
.y54{bottom:535.558933pt;}
.y15c{bottom:537.750293pt;}
.y15e{bottom:537.751067pt;}
.yb8{bottom:537.751174pt;}
.y10{bottom:539.187889pt;}
.yec{bottom:540.170434pt;}
.y11e{bottom:542.513467pt;}
.y93{bottom:542.587253pt;}
.y15d{bottom:543.647200pt;}
.y1d9{bottom:543.798267pt;}
.y1b8{bottom:545.016000pt;}
.y52{bottom:545.612240pt;}
.y11{bottom:546.292800pt;}
.yeb{bottom:553.549467pt;}
.yb7{bottom:553.700667pt;}
.y15b{bottom:553.775787pt;}
.y13e{bottom:554.834667pt;}
.yf{bottom:557.858133pt;}
.yd{bottom:557.858822pt;}
.y92{bottom:558.612746pt;}
.y1b7{bottom:559.680000pt;}
.y51{bottom:561.637733pt;}
.y4f{bottom:561.637841pt;}
.y1d8{bottom:563.754267pt;}
.ye{bottom:564.963600pt;}
.y50{bottom:567.533733pt;}
.y15a{bottom:569.725279pt;}
.y11d{bottom:570.481867pt;}
.y18c{bottom:571.464933pt;}
.y1b6{bottom:574.419600pt;}
.y91{bottom:574.638240pt;}
.yc{bottom:576.529067pt;}
.ya{bottom:576.529622pt;}
.y4c{bottom:577.587040pt;}
.y4e{bottom:577.587333pt;}
.yb6{bottom:577.738400pt;}
.yea{bottom:578.492000pt;}
.y13d{bottom:582.727467pt;}
.y4d{bottom:583.558933pt;}
.yb{bottom:583.634533pt;}
.y159{bottom:585.750773pt;}
.y18b{bottom:586.128933pt;}
.y1b5{bottom:589.083600pt;}
.y90{bottom:590.587733pt;}
.ye9{bottom:591.796400pt;}
.y49{bottom:593.612214pt;}
.y4b{bottom:593.612533pt;}
.y9{bottom:595.199867pt;}
.y7{bottom:595.200556pt;}
.y11c{bottom:598.374667pt;}
.y4a{bottom:599.508533pt;}
.y156{bottom:601.775600pt;}
.y158{bottom:601.776267pt;}
.y8{bottom:602.305333pt;}
.y1b4{bottom:603.747600pt;}
.ye8{bottom:605.176400pt;}
.y18a{bottom:606.160533pt;}
.y8f{bottom:606.613226pt;}
.y157{bottom:607.672267pt;}
.y48{bottom:609.637707pt;}
.y5{bottom:613.870800pt;}
.y155{bottom:617.725093pt;}
.yb5{bottom:617.725200pt;}
.y1b3{bottom:618.411600pt;}
.ye7{bottom:618.480800pt;}
.y6{bottom:620.976267pt;}
.y8e{bottom:622.638720pt;}
.y45{bottom:625.587040pt;}
.y47{bottom:625.587200pt;}
.y46{bottom:631.558933pt;}
.ye6{bottom:631.785200pt;}
.y11b{bottom:632.239200pt;}
.y1b2{bottom:633.151200pt;}
.y154{bottom:633.750587pt;}
.yb4{bottom:633.750694pt;}
.y8d{bottom:638.588213pt;}
.y44{bottom:641.612533pt;}
.y189{bottom:643.957467pt;}
.ye3{bottom:645.162133pt;}
.ye5{bottom:645.165200pt;}
.y1b1{bottom:647.815200pt;}
.yb3{bottom:649.700187pt;}
.y153{bottom:649.776080pt;}
.ye4{bottom:650.456533pt;}
.y8c{bottom:654.613706pt;}
.y11a{bottom:657.182533pt;}
.y13c{bottom:657.182800pt;}
.ye2{bottom:658.466533pt;}
.y188{bottom:658.621467pt;}
.y1b0{bottom:662.479200pt;}
.y43{bottom:665.574667pt;}
.y152{bottom:665.725573pt;}
.yb2{bottom:665.725680pt;}
.y119{bottom:670.562533pt;}
.y13b{bottom:670.562800pt;}
.y8b{bottom:670.639200pt;}
.ye1{bottom:671.770933pt;}
.y187{bottom:673.285467pt;}
.y1af{bottom:677.143200pt;}
.y4{bottom:680.541384pt;}
.y14f{bottom:681.750453pt;}
.y151{bottom:681.751067pt;}
.yb1{bottom:681.751174pt;}
.y118{bottom:683.866933pt;}
.y13a{bottom:683.867200pt;}
.ye0{bottom:685.150933pt;}
.y150{bottom:687.647200pt;}
.y186{bottom:687.949467pt;}
.y1ae{bottom:691.884000pt;}
.y8a{bottom:694.601273pt;}
.y117{bottom:697.171333pt;}
.y139{bottom:697.171600pt;}
.yb0{bottom:697.700667pt;}
.y14e{bottom:697.775947pt;}
.ydf{bottom:698.455333pt;}
.y3c{bottom:700.721829pt;}
.y138{bottom:702.538400pt;}
.y3{bottom:704.579633pt;}
.y1ad{bottom:706.548000pt;}
.y185{bottom:707.904741pt;}
.y42{bottom:710.248667pt;}
.yde{bottom:711.835333pt;}
.y3b{bottom:712.741124pt;}
.y14d{bottom:713.725440pt;}
.y89{bottom:719.319467pt;}
.y1ac{bottom:721.212000pt;}
.yaf{bottom:721.738400pt;}
.y3a{bottom:724.760419pt;}
.y41{bottom:724.913200pt;}
.y116{bottom:725.139733pt;}
.y2{bottom:728.541084pt;}
.y14c{bottom:729.750933pt;}
.y1ab{bottom:735.876000pt;}
.y39{bottom:736.704115pt;}
.y115{bottom:738.444133pt;}
.ydd{bottom:739.728133pt;}
.yda{bottom:739.729333pt;}
.y14a{bottom:745.775787pt;}
.y38{bottom:748.723410pt;}
.y40{bottom:750.313333pt;}
.y1aa{bottom:750.615600pt;}
.y14b{bottom:751.672267pt;}
.y1{bottom:752.579333pt;}
.ydc{bottom:753.108133pt;}
.y37{bottom:760.742705pt;}
.yac{bottom:761.725279pt;}
.y88{bottom:761.725440pt;}
.yae{bottom:761.725867pt;}
.y3f{bottom:764.977333pt;}
.y1a9{bottom:765.279600pt;}
.ydb{bottom:766.412533pt;}
.yad{bottom:767.697467pt;}
.y36{bottom:772.762000pt;}
.y85{bottom:777.750773pt;}
.y87{bottom:777.750933pt;}
.y3e{bottom:779.641333pt;}
.y1a8{bottom:779.943600pt;}
.y86{bottom:783.647067pt;}
.y84{bottom:793.776267pt;}
.y3d{bottom:794.305333pt;}
.y1a7{bottom:794.607600pt;}
.y35{bottom:803.754133pt;}
.y83{bottom:829.757333pt;}
.h5{height:24.970320pt;}
.h12{height:28.092254pt;}
.ha{height:31.608468pt;}
.he{height:31.641280pt;}
.hc{height:32.778198pt;}
.h6{height:37.460865pt;}
.h4{height:38.139709pt;}
.h9{height:38.143523pt;}
.h8{height:42.144000pt;}
.h13{height:42.720000pt;}
.h11{height:42.912000pt;}
.h10{height:44.159632pt;}
.hf{height:46.827135pt;}
.hd{height:47.467141pt;}
.h7{height:47.680477pt;}
.h3{height:57.215523pt;}
.hb{height:70.240468pt;}
.h2{height:76.287523pt;}
.h0{height:884.409333pt;}
.h1{height:884.666667pt;}
.w1{width:589.333333pt;}
.w0{width:589.606667pt;}
.x0{left:0.000000pt;}
.x16{left:56.692933pt;}
.x61{left:62.664533pt;}
.x1{left:64.252000pt;}
.xe{left:68.258267pt;}
.x5f{left:70.223600pt;}
.x24{left:72.717664pt;}
.x62{left:78.311333pt;}
.x38{left:80.277494pt;}
.x60{left:85.870400pt;}
.x1f{left:87.155867pt;}
.x42{left:89.499733pt;}
.x20{left:98.343333pt;}
.x2c{left:100.837733pt;}
.x21{left:108.472400pt;}
.x48{left:112.930933pt;}
.x3a{left:113.839333pt;}
.x3b{left:118.299200pt;}
.x56{left:132.207867pt;}
.xf{left:133.266133pt;}
.x3f{left:134.324400pt;}
.x57{left:145.511733pt;}
.x30{left:152.541733pt;}
.x6{left:161.007867pt;}
.x43{left:183.686533pt;}
.x31{left:185.574800pt;}
.x7{left:188.144800pt;}
.x47{left:193.284133pt;}
.x55{left:198.274000pt;}
.x3c{left:200.088400pt;}
.x39{left:206.362000pt;}
.x2e{left:208.025200pt;}
.x32{left:213.089733pt;}
.x33{left:218.078667pt;}
.x4e{left:221.631467pt;}
.x2{left:222.916400pt;}
.x2f{left:224.126000pt;}
.x4a{left:225.637733pt;}
.x3e{left:228.207867pt;}
.x3{left:229.417333pt;}
.x52{left:234.708533pt;}
.x49{left:243.023600pt;}
.x8{left:245.442400pt;}
.x4b{left:251.640933pt;}
.xc{left:253.908667pt;}
.xa{left:258.595200pt;}
.x9{left:261.694400pt;}
.x4d{left:266.608000pt;}
.x44{left:271.976533pt;}
.x53{left:273.108533pt;}
.x2d{left:275.981067pt;}
.x27{left:277.795200pt;}
.x1b{left:289.889733pt;}
.xb{left:295.483333pt;}
.x1c{left:297.751067pt;}
.x1d{left:301.455067pt;}
.xd{left:304.025067pt;}
.x28{left:306.217200pt;}
.x37{left:307.804667pt;}
.x1e{left:309.618800pt;}
.x45{left:311.737333pt;}
.x4f{left:312.793600pt;}
.x22{left:315.136933pt;}
.x58{left:316.648800pt;}
.x50{left:318.538533pt;}
.x2b{left:319.974667pt;}
.x34{left:323.603067pt;}
.x19{left:329.196800pt;}
.x59{left:330.255067pt;}
.x23{left:332.976267pt;}
.x1a{left:337.284933pt;}
.x3d{left:338.872400pt;}
.x4{left:349.001467pt;}
.x5{left:355.502267pt;}
.x35{left:366.765200pt;}
.x5d{left:382.185733pt;}
.x29{left:385.058133pt;}
.x5e{left:395.036133pt;}
.x14{left:398.589417pt;}
.x2a{left:399.495867pt;}
.x54{left:402.670800pt;}
.x13{left:405.316788pt;}
.x25{left:415.370000pt;}
.x15{left:417.109286pt;}
.x26{left:429.354267pt;}
.x5a{left:431.697467pt;}
.x5b{left:440.768400pt;}
.x12{left:442.129729pt;}
.x11{left:445.606346pt;}
.x40{left:447.798267pt;}
.x41{left:452.636133pt;}
.x5c{left:454.450267pt;}
.x10{left:469.795200pt;}
.x46{left:497.616133pt;}
.x51{left:503.659733pt;}
.x17{left:504.793600pt;}
.x18{left:514.393600pt;}
.x36{left:520.365200pt;}
.x4c{left:522.935333pt;}
}




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