
    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_0f7a02cc50ee44b9a3d76d3f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.132000;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_5be2bc83caf758620531cd8b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.140000;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_049d82bde335b673111b3a30.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_b93f85481d21e076d23f424c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_94acc3639956a96f501559b0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.070312;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_d1e1c6af1cbe49a69dfd007e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.034180;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_64634bbf3471adf62efab5c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.147461;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_a0d470b5a59372e356e3c4e7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.135254;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_e4bc82bf8722b81562724817.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.118164;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_d9fdeb8d2f69645fba0cd7a0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.886230;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_c31ecd9938e138b689fb6dc8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.098633;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_2355655c070846f60d8f03b2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.049805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a8e923aa2f5b9f0bcaf656f9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_8f326954a534306e71137c02.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.928000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls52{letter-spacing:-5.696640px;}
.ls29{letter-spacing:-2.583360px;}
.ls34{letter-spacing:-1.987200px;}
.ls27{letter-spacing:-1.457280px;}
.ls58{letter-spacing:-0.728640px;}
.ls50{letter-spacing:-0.463680px;}
.ls20{letter-spacing:-0.264960px;}
.ls1a{letter-spacing:-0.198720px;}
.lsaf{letter-spacing:-0.144720px;}
.ls1c{letter-spacing:-0.132480px;}
.ls16{letter-spacing:-0.066240px;}
.ls26{letter-spacing:-0.048240px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.066240px;}
.ls13{letter-spacing:0.132480px;}
.ls1f{letter-spacing:0.331200px;}
.ls6{letter-spacing:0.336960px;}
.ls82{letter-spacing:0.372960px;}
.ls70{letter-spacing:0.385920px;}
.ls74{letter-spacing:0.388800px;}
.ls3f{letter-spacing:0.397440px;}
.ls80{letter-spacing:0.403920px;}
.ls7d{letter-spacing:0.405216px;}
.ls5e{letter-spacing:0.417600px;}
.ls84{letter-spacing:0.419040px;}
.ls4{letter-spacing:0.421200px;}
.ls73{letter-spacing:0.427680px;}
.ls7a{letter-spacing:0.432720px;}
.lsb{letter-spacing:0.434160px;}
.ls61{letter-spacing:0.461520px;}
.ls19{letter-spacing:0.463680px;}
.ls93{letter-spacing:0.466560px;}
.ls7b{letter-spacing:0.480960px;}
.lsc{letter-spacing:0.482400px;}
.ls63{letter-spacing:0.484560px;}
.ls9d{letter-spacing:0.492480px;}
.ls6c{letter-spacing:0.501840px;}
.ls6f{letter-spacing:0.505440px;}
.ls28{letter-spacing:0.529920px;}
.ls97{letter-spacing:0.530640px;}
.ls89{letter-spacing:0.532080px;}
.ls71{letter-spacing:0.544320px;}
.ls85{letter-spacing:0.546480px;}
.ls12{letter-spacing:0.578880px;}
.ls98{letter-spacing:0.583200px;}
.ls2e{letter-spacing:0.596160px;}
.ls66{letter-spacing:0.597600px;}
.lsae{letter-spacing:0.599040px;}
.ls9c{letter-spacing:0.617472px;}
.lsac{letter-spacing:0.627120px;}
.ls7c{letter-spacing:0.630000px;}
.lsa7{letter-spacing:0.630720px;}
.lsa9{letter-spacing:0.631440px;}
.lsa4{letter-spacing:0.650880px;}
.ls15{letter-spacing:0.662400px;}
.ls9{letter-spacing:0.675360px;}
.ls8d{letter-spacing:0.696960px;}
.ls79{letter-spacing:0.699480px;}
.ls8e{letter-spacing:0.699840px;}
.ls48{letter-spacing:0.708768px;}
.ls6b{letter-spacing:0.709128px;}
.ls10{letter-spacing:0.723600px;}
.ls1d{letter-spacing:0.728640px;}
.ls2d{letter-spacing:0.748512px;}
.ls5d{letter-spacing:0.754560px;}
.lsf{letter-spacing:0.771840px;}
.lsaa{letter-spacing:0.777600px;}
.ls9a{letter-spacing:0.779760px;}
.ls4f{letter-spacing:0.781632px;}
.ls9b{letter-spacing:0.786312px;}
.ls8b{letter-spacing:0.787680px;}
.ls1b{letter-spacing:0.794880px;}
.ls35{letter-spacing:0.814752px;}
.ls69{letter-spacing:0.815256px;}
.ls87{letter-spacing:0.820080px;}
.ls53{letter-spacing:0.821376px;}
.ls3d{letter-spacing:0.828000px;}
.ls78{letter-spacing:0.829728px;}
.ls65{letter-spacing:0.833040px;}
.ls57{letter-spacing:0.834624px;}
.lsa5{letter-spacing:0.839376px;}
.ls4c{letter-spacing:0.841248px;}
.ls86{letter-spacing:0.849024px;}
.ls14{letter-spacing:0.861120px;}
.ls55{letter-spacing:0.867744px;}
.ls99{letter-spacing:0.873144px;}
.ls31{letter-spacing:0.874368px;}
.ls7f{letter-spacing:0.888480px;}
.ls72{letter-spacing:0.894240px;}
.lsad{letter-spacing:0.897264px;}
.lsa2{letter-spacing:0.909360px;}
.ls67{letter-spacing:0.911520px;}
.ls11{letter-spacing:0.916560px;}
.ls6d{letter-spacing:0.923040px;}
.ls6a{letter-spacing:0.926208px;}
.ls5{letter-spacing:0.926640px;}
.ls33{letter-spacing:0.927360px;}
.lsa0{letter-spacing:0.938880px;}
.ls4b{letter-spacing:0.947232px;}
.ls2f{letter-spacing:0.960480px;}
.ls76{letter-spacing:0.964800px;}
.lsab{letter-spacing:0.972000px;}
.ls9f{letter-spacing:0.990000px;}
.ls90{letter-spacing:1.010880px;}
.lsa{letter-spacing:1.013040px;}
.ls47{letter-spacing:1.033344px;}
.ls8f{letter-spacing:1.049760px;}
.ls37{letter-spacing:1.059840px;}
.lsd{letter-spacing:1.061280px;}
.ls5f{letter-spacing:1.080000px;}
.ls68{letter-spacing:1.088640px;}
.ls75{letter-spacing:1.109520px;}
.ls83{letter-spacing:1.123920px;}
.ls1e{letter-spacing:1.149120px;}
.ls94{letter-spacing:1.157760px;}
.ls62{letter-spacing:1.181520px;}
.ls3a{letter-spacing:1.192320px;}
.ls91{letter-spacing:1.205280px;}
.ls18{letter-spacing:1.244880px;}
.ls81{letter-spacing:1.292400px;}
.ls96{letter-spacing:1.302480px;}
.ls8a{letter-spacing:1.317600px;}
.ls41{letter-spacing:1.324800px;}
.lsa6{letter-spacing:1.394136px;}
.ls77{letter-spacing:1.398960px;}
.lsa8{letter-spacing:1.416960px;}
.ls88{letter-spacing:1.447200px;}
.ls36{letter-spacing:1.457280px;}
.ls64{letter-spacing:1.472400px;}
.ls2a{letter-spacing:1.477152px;}
.ls92{letter-spacing:1.495440px;}
.ls7e{letter-spacing:1.505088px;}
.ls32{letter-spacing:1.523520px;}
.ls44{letter-spacing:1.530144px;}
.lsa1{letter-spacing:1.538856px;}
.lsa3{letter-spacing:1.553328px;}
.ls8c{letter-spacing:1.558152px;}
.ls7{letter-spacing:1.563120px;}
.ls9e{letter-spacing:1.572624px;}
.ls42{letter-spacing:1.589760px;}
.ls5a{letter-spacing:1.636128px;}
.ls95{letter-spacing:1.640160px;}
.ls25{letter-spacing:1.722240px;}
.ls60{letter-spacing:1.800000px;}
.ls46{letter-spacing:2.185920px;}
.ls30{letter-spacing:2.450880px;}
.ls3{letter-spacing:2.640000px;}
.lse{letter-spacing:2.797920px;}
.ls54{letter-spacing:2.848320px;}
.ls45{letter-spacing:3.113280px;}
.ls2{letter-spacing:3.120000px;}
.ls39{letter-spacing:3.576960px;}
.ls40{letter-spacing:3.908160px;}
.ls24{letter-spacing:3.974400px;}
.ls23{letter-spacing:4.212000px;}
.ls21{letter-spacing:4.305600px;}
.ls1{letter-spacing:4.320000px;}
.ls59{letter-spacing:5.034240px;}
.ls8{letter-spacing:5.724000px;}
.ls3c{letter-spacing:5.762880px;}
.ls6e{letter-spacing:6.160320px;}
.ls22{letter-spacing:6.491520px;}
.ls2b{letter-spacing:7.220160px;}
.ls3b{letter-spacing:8.611200px;}
.ls5b{letter-spacing:9.339840px;}
.ls56{letter-spacing:10.068480px;}
.ls4e{letter-spacing:10.797120px;}
.ls49{letter-spacing:11.525760px;}
.ls43{letter-spacing:12.254400px;}
.ls3e{letter-spacing:12.983040px;}
.ls38{letter-spacing:15.102720px;}
.ls2c{letter-spacing:15.831360px;}
.ls5c{letter-spacing:20.865600px;}
.ls51{letter-spacing:28.085760px;}
.ls4a{letter-spacing:35.305920px;}
.ls4d{letter-spacing:43.168608px;}
.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;}
}
.ws18{word-spacing:-33.804000px;}
.ws2b{word-spacing:-25.184880px;}
.wsbe{word-spacing:-23.382720px;}
.wsae{word-spacing:-22.322880px;}
.ws3{word-spacing:-22.239360px;}
.ws2c{word-spacing:-21.196800px;}
.ws9a{word-spacing:-18.017280px;}
.ws76{word-spacing:-17.752320px;}
.ws6d{word-spacing:-17.619840px;}
.ws60{word-spacing:-17.487360px;}
.wsbd{word-spacing:-17.421120px;}
.ws26{word-spacing:-17.354880px;}
.ws99{word-spacing:-17.288640px;}
.ws2d{word-spacing:-17.222400px;}
.ws9f{word-spacing:-17.156160px;}
.ws30{word-spacing:-17.089920px;}
.ws2f{word-spacing:-17.023680px;}
.ws8b{word-spacing:-16.957440px;}
.ws49{word-spacing:-16.626240px;}
.ws1b{word-spacing:-16.560000px;}
.ws19{word-spacing:-16.493760px;}
.ws1a{word-spacing:-16.361280px;}
.ws2a{word-spacing:-16.295040px;}
.wsa9{word-spacing:-16.096320px;}
.ws0{word-spacing:-15.567938px;}
.ws2e{word-spacing:-15.102720px;}
.ws5f{word-spacing:-14.572800px;}
.ws31{word-spacing:-13.976640px;}
.wsd7{word-spacing:-13.700160px;}
.ws7{word-spacing:-13.555440px;}
.wsca{word-spacing:-13.458960px;}
.wsd8{word-spacing:-13.362480px;}
.ws8{word-spacing:-13.314240px;}
.wsa{word-spacing:-13.266000px;}
.wsb{word-spacing:-13.217760px;}
.wsc7{word-spacing:-13.169520px;}
.wsc8{word-spacing:-13.121280px;}
.wsdc{word-spacing:-13.073040px;}
.ws9{word-spacing:-13.024800px;}
.wsd3{word-spacing:-12.976560px;}
.wsd9{word-spacing:-12.831840px;}
.wsda{word-spacing:-12.783600px;}
.wsc3{word-spacing:-12.735360px;}
.wsee{word-spacing:-12.687120px;}
.wsc9{word-spacing:-12.638880px;}
.wsec{word-spacing:-12.590640px;}
.wsc{word-spacing:-12.542400px;}
.wsc5{word-spacing:-12.494160px;}
.wsc0{word-spacing:-12.445920px;}
.wsef{word-spacing:-12.060000px;}
.wsf3{word-spacing:-11.915280px;}
.wsd6{word-spacing:-10.925280px;}
.wsaf{word-spacing:-10.863360px;}
.wsd4{word-spacing:-10.769760px;}
.wsd5{word-spacing:-10.730880px;}
.wsed{word-spacing:-10.692000px;}
.wsc2{word-spacing:-10.614240px;}
.wsd2{word-spacing:-10.419840px;}
.wsdb{word-spacing:-10.303200px;}
.wsc1{word-spacing:-10.264320px;}
.wsbf{word-spacing:-10.225440px;}
.wsc4{word-spacing:-10.147680px;}
.wsc6{word-spacing:-10.108800px;}
.ws6{word-spacing:-4.968000px;}
.ws58{word-spacing:-4.371840px;}
.ws2{word-spacing:-4.320000px;}
.ws94{word-spacing:-4.305600px;}
.ws6f{word-spacing:-4.239360px;}
.ws59{word-spacing:-4.040640px;}
.wsb9{word-spacing:-3.908160px;}
.ws67{word-spacing:-3.643200px;}
.ws8a{word-spacing:-3.510720px;}
.ws32{word-spacing:-3.456000px;}
.ws82{word-spacing:-3.378240px;}
.ws98{word-spacing:-3.312000px;}
.ws33{word-spacing:-3.179520px;}
.ws8d{word-spacing:-3.113280px;}
.ws36{word-spacing:-2.980800px;}
.wsba{word-spacing:-2.914560px;}
.ws65{word-spacing:-2.848320px;}
.ws83{word-spacing:-2.782080px;}
.ws37{word-spacing:-2.649600px;}
.wsd{word-spacing:-2.363760px;}
.ws8f{word-spacing:-2.252160px;}
.ws3a{word-spacing:-2.119680px;}
.ws71{word-spacing:-1.920960px;}
.ws55{word-spacing:-1.656000px;}
.ws6e{word-spacing:-1.523520px;}
.ws40{word-spacing:-1.391040px;}
.ws92{word-spacing:-1.324800px;}
.ws38{word-spacing:-1.192320px;}
.ws5{word-spacing:-1.082160px;}
.wsde{word-spacing:-1.061280px;}
.wsea{word-spacing:-1.049760px;}
.wseb{word-spacing:-1.013040px;}
.wsf0{word-spacing:-1.010880px;}
.wscf{word-spacing:-0.964800px;}
.ws34{word-spacing:-0.927360px;}
.wse4{word-spacing:-0.868320px;}
.wse2{word-spacing:-0.820080px;}
.ws21{word-spacing:-0.794880px;}
.wsdd{word-spacing:-0.771840px;}
.wsbc{word-spacing:-0.728640px;}
.ws15{word-spacing:-0.723600px;}
.ws11{word-spacing:-0.675360px;}
.ws1e{word-spacing:-0.670320px;}
.ws28{word-spacing:-0.662400px;}
.ws10{word-spacing:-0.578880px;}
.ws27{word-spacing:-0.574560px;}
.wsd1{word-spacing:-0.544320px;}
.ws24{word-spacing:-0.529920px;}
.ws4{word-spacing:-0.505440px;}
.ws14{word-spacing:-0.482400px;}
.wse7{word-spacing:-0.466560px;}
.ws69{word-spacing:-0.463680px;}
.wse1{word-spacing:-0.434160px;}
.wsf2{word-spacing:-0.427680px;}
.wscd{word-spacing:-0.388800px;}
.wse9{word-spacing:-0.385920px;}
.wse{word-spacing:-0.337680px;}
.ws4a{word-spacing:-0.334080px;}
.ws29{word-spacing:-0.331200px;}
.wsf{word-spacing:-0.289440px;}
.ws12{word-spacing:-0.241200px;}
.ws16{word-spacing:-0.144720px;}
.ws95{word-spacing:-0.132480px;}
.wsce{word-spacing:-0.096480px;}
.ws1d{word-spacing:-0.066240px;}
.ws13{word-spacing:-0.048240px;}
.ws1{word-spacing:0.000000px;}
.wse6{word-spacing:0.038880px;}
.ws1c{word-spacing:0.066240px;}
.ws23{word-spacing:0.132480px;}
.wse0{word-spacing:0.144720px;}
.ws20{word-spacing:0.198720px;}
.ws1f{word-spacing:0.264960px;}
.wsd0{word-spacing:0.337680px;}
.wse8{word-spacing:0.385920px;}
.wsdf{word-spacing:0.434160px;}
.wse3{word-spacing:0.482400px;}
.ws22{word-spacing:0.662400px;}
.ws17{word-spacing:0.675360px;}
.wsbb{word-spacing:0.728640px;}
.wsf1{word-spacing:0.738720px;}
.ws25{word-spacing:0.794880px;}
.ws4d{word-spacing:0.993600px;}
.wsaa{word-spacing:1.192320px;}
.wsb7{word-spacing:1.258560px;}
.wse5{word-spacing:1.360800px;}
.ws66{word-spacing:1.391040px;}
.ws4b{word-spacing:1.523520px;}
.ws35{word-spacing:1.722240px;}
.ws75{word-spacing:2.119680px;}
.ws52{word-spacing:2.252160px;}
.ws4c{word-spacing:2.450880px;}
.ws61{word-spacing:2.782080px;}
.ws6b{word-spacing:2.914560px;}
.ws86{word-spacing:2.980800px;}
.ws5c{word-spacing:3.113280px;}
.ws5a{word-spacing:3.510720px;}
.ws7c{word-spacing:3.643200px;}
.ws3f{word-spacing:3.841920px;}
.ws6a{word-spacing:4.106880px;}
.ws43{word-spacing:4.239360px;}
.ws57{word-spacing:4.371840px;}
.ws44{word-spacing:4.570560px;}
.ws85{word-spacing:4.968000px;}
.ws3d{word-spacing:5.100480px;}
.ws3e{word-spacing:5.299200px;}
.ws46{word-spacing:5.696640px;}
.ws47{word-spacing:5.829120px;}
.ws56{word-spacing:6.027840px;}
.ws4f{word-spacing:6.425280px;}
.ws88{word-spacing:6.557760px;}
.ws3c{word-spacing:6.756480px;}
.wsad{word-spacing:7.021440px;}
.ws79{word-spacing:7.153920px;}
.ws39{word-spacing:7.286400px;}
.ws48{word-spacing:7.485120px;}
.ws8e{word-spacing:7.816320px;}
.ws53{word-spacing:7.948800px;}
.ws87{word-spacing:8.015040px;}
.ws54{word-spacing:8.147520px;}
.wsa7{word-spacing:8.412480px;}
.ws5e{word-spacing:8.544960px;}
.ws63{word-spacing:8.677440px;}
.ws84{word-spacing:8.809920px;}
.ws41{word-spacing:8.876160px;}
.ws4e{word-spacing:9.273600px;}
.wsb0{word-spacing:9.406080px;}
.ws3b{word-spacing:9.604800px;}
.ws8c{word-spacing:10.002240px;}
.wsa2{word-spacing:10.134720px;}
.ws73{word-spacing:10.333440px;}
.ws70{word-spacing:10.730880px;}
.ws45{word-spacing:10.863360px;}
.ws72{word-spacing:11.062080px;}
.ws7a{word-spacing:11.459520px;}
.ws7b{word-spacing:11.592000px;}
.ws96{word-spacing:11.790720px;}
.ws91{word-spacing:11.923200px;}
.ws42{word-spacing:12.188160px;}
.ws93{word-spacing:12.320640px;}
.ws90{word-spacing:12.519360px;}
.ws62{word-spacing:13.049280px;}
.ws68{word-spacing:13.248000px;}
.wsa0{word-spacing:13.579200px;}
.ws5b{word-spacing:13.910400px;}
.ws77{word-spacing:14.440320px;}
.ws78{word-spacing:14.639040px;}
.ws9b{word-spacing:15.036480px;}
.ws51{word-spacing:15.168960px;}
.ws50{word-spacing:15.367680px;}
.ws7d{word-spacing:15.765120px;}
.wsb3{word-spacing:16.096320px;}
.ws6c{word-spacing:17.354880px;}
.ws74{word-spacing:17.553600px;}
.ws9c{word-spacing:17.951040px;}
.ws89{word-spacing:18.083520px;}
.ws9d{word-spacing:18.282240px;}
.wsa4{word-spacing:19.010880px;}
.wscb{word-spacing:19.408320px;}
.ws97{word-spacing:19.673280px;}
.wscc{word-spacing:20.070720px;}
.ws81{word-spacing:20.203200px;}
.ws80{word-spacing:20.401920px;}
.wsa3{word-spacing:20.799360px;}
.ws64{word-spacing:20.931840px;}
.wsac{word-spacing:21.130560px;}
.wsb6{word-spacing:21.660480px;}
.ws9e{word-spacing:22.389120px;}
.wsb8{word-spacing:22.985280px;}
.ws7e{word-spacing:23.117760px;}
.ws7f{word-spacing:23.316480px;}
.wsa1{word-spacing:24.508800px;}
.wsb2{word-spacing:26.429760px;}
.wsb1{word-spacing:26.893440px;}
.ws5d{word-spacing:29.609280px;}
.wsb4{word-spacing:30.006720px;}
.wsb5{word-spacing:30.470400px;}
.wsa6{word-spacing:34.643520px;}
.wsa5{word-spacing:34.842240px;}
.wsab{word-spacing:42.724800px;}
.wsa8{word-spacing:45.639360px;}
._f{margin-left:-25.185600px;}
._1a{margin-left:-17.005054px;}
._17{margin-left:-15.774720px;}
._16{margin-left:-14.312640px;}
._14{margin-left:-12.528960px;}
._15{margin-left:-10.536960px;}
._12{margin-left:-8.846627px;}
._c{margin-left:-7.691787px;}
._13{margin-left:-6.157192px;}
._10{margin-left:-4.568400px;}
._e{margin-left:-2.917200px;}
._d{margin-left:-1.320000px;}
._7{width:1.049996px;}
._a{width:2.214991px;}
._1{width:3.354987px;}
._4{width:4.834981px;}
._5{width:6.574974px;}
._18{width:8.457268px;}
._0{width:10.449958px;}
._19{width:11.800564px;}
._1b{width:12.916800px;}
._8{width:14.069944px;}
._6{width:20.439918px;}
._9{width:26.529894px;}
._3{width:30.029880px;}
._b{width:47.949808px;}
._11{width:849.960000px;}
._2{width:870.626517px;}
.fc4{color:rgb(118,113,113);}
.fc3{color:rgb(245,240,240);}
.fc2{color:rgb(65,160,17);}
.fc1{color:rgb(255,101,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:34.999860px;}
.fs15{font-size:38.880000px;}
.fs3{font-size:39.999840px;}
.fsb{font-size:41.760000px;}
.fs6{font-size:43.999824px;}
.fs7{font-size:44.999820px;}
.fs12{font-size:48.240000px;}
.fs2{font-size:49.999800px;}
.fs11{font-size:54.000000px;}
.fs1{font-size:54.999780px;}
.fs5{font-size:55.999776px;}
.fs10{font-size:59.760000px;}
.fsc{font-size:66.240000px;}
.fs0{font-size:69.999720px;}
.fs13{font-size:72.000000px;}
.fsd{font-size:84.240000px;}
.fs14{font-size:95.760000px;}
.fsf{font-size:108.000000px;}
.fse{font-size:120.240000px;}
.fs16{font-size:131.760000px;}
.fsa{font-size:132.000000px;}
.fs9{font-size:156.000000px;}
.fs8{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.316455px;}
.y20{bottom:53.312287px;}
.y75{bottom:57.598560px;}
.y26{bottom:57.600000px;}
.y1f{bottom:67.487230px;}
.y1e{bottom:81.662173px;}
.y1d{bottom:95.837117px;}
.y1c{bottom:107.949568px;}
.y1b{bottom:130.899476px;}
.y12a{bottom:148.729680px;}
.y15c{bottom:153.234000px;}
.yd5{bottom:156.339360px;}
.y73{bottom:156.600000px;}
.y91{bottom:160.925610px;}
.y10d{bottom:162.226080px;}
.y145{bottom:163.882080px;}
.y182{bottom:165.306240px;}
.y18b{bottom:168.353280px;}
.y129{bottom:169.794000px;}
.y33{bottom:171.180000px;}
.y16f{bottom:172.857600px;}
.y17a{bottom:172.874160px;}
.y15b{bottom:174.298320px;}
.yd4{bottom:177.403680px;}
.yad{bottom:180.540000px;}
.y10c{bottom:183.290400px;}
.y1cf{bottom:183.427380px;}
.y1b8{bottom:183.430620px;}
.y144{bottom:184.764240px;}
.y181{bottom:186.370560px;}
.y18a{bottom:189.235440px;}
.y195{bottom:189.370620px;}
.y72{bottom:189.720000px;}
.y128{bottom:190.858320px;}
.yf5{bottom:192.299040px;}
.y16e{bottom:193.739760px;}
.y179{bottom:193.756320px;}
.y90{bottom:194.045610px;}
.y15a{bottom:195.362640px;}
.y1a{bottom:197.574210px;}
.yd3{bottom:198.285840px;}
.yac{bottom:200.520000px;}
.y32{bottom:203.765580px;}
.y10b{bottom:204.354720px;}
.y1ce{bottom:204.484140px;}
.y1b7{bottom:204.487380px;}
.y143{bottom:205.828560px;}
.y58{bottom:205.890660px;}
.y180{bottom:207.252720px;}
.y19{bottom:208.199167px;}
.y71{bottom:209.700000px;}
.y189{bottom:210.299760px;}
.y194{bottom:210.427380px;}
.y127{bottom:211.740480px;}
.y22{bottom:212.791350px;}
.yf4{bottom:213.363360px;}
.y16d{bottom:214.804080px;}
.y178{bottom:214.820640px;}
.y8f{bottom:215.639850px;}
.y159{bottom:216.244800px;}
.y18{bottom:217.949128px;}
.yd2{bottom:219.350160px;}
.y10a{bottom:225.236880px;}
.y1b6{bottom:225.363240px;}
.y1cd{bottom:225.370620px;}
.y57{bottom:225.512280px;}
.y17{bottom:226.799093px;}
.y142{bottom:226.892880px;}
.yab{bottom:231.120000px;}
.y188{bottom:231.364080px;}
.y193{bottom:231.484140px;}
.y126{bottom:232.804800px;}
.yf3{bottom:234.245520px;}
.y8e{bottom:235.620000px;}
.y16{bottom:235.661557px;}
.y16c{bottom:235.868400px;}
.y177{bottom:235.884960px;}
.y158{bottom:237.309120px;}
.y70{bottom:240.300000px;}
.yd1{bottom:240.414480px;}
.y15{bottom:244.524022px;}
.y56{bottom:244.953000px;}
.y109{bottom:246.301200px;}
.y1b5{bottom:246.427380px;}
.y141{bottom:247.775040px;}
.yaa{bottom:251.092080px;}
.y187{bottom:252.246240px;}
.y192{bottom:252.373860px;}
.y31{bottom:252.723960px;}
.y14{bottom:253.373986px;}
.y125{bottom:253.869120px;}
.yf2{bottom:255.309840px;}
.y16b{bottom:256.750560px;}
.y176{bottom:256.767120px;}
.y157{bottom:258.373440px;}
.y6f{bottom:260.280000px;}
.yd0{bottom:261.296640px;}
.y13{bottom:262.236451px;}
.y21{bottom:262.513950px;}
.y55{bottom:264.393720px;}
.y8d{bottom:266.220000px;}
.y108{bottom:267.365520px;}
.y1b4{bottom:267.484140px;}
.y140{bottom:268.839360px;}
.ya9{bottom:271.080000px;}
.y186{bottom:273.310560px;}
.y191{bottom:273.430620px;}
.y124{bottom:274.751280px;}
.yf1{bottom:276.374160px;}
.y16a{bottom:277.814880px;}
.y175{bottom:277.831440px;}
.y156{bottom:279.255600px;}
.y12{bottom:280.461378px;}
.ycf{bottom:282.360960px;}
.y54{bottom:284.015340px;}
.y8c{bottom:286.200000px;}
.y107{bottom:288.247680px;}
.y1cc{bottom:288.360000px;}
.y1b3{bottom:288.366480px;}
.y13f{bottom:289.903680px;}
.y6e{bottom:290.700000px;}
.y185{bottom:294.374880px;}
.y190{bottom:294.487380px;}
.y123{bottom:295.815600px;}
.yf0{bottom:297.256320px;}
.y169{bottom:298.879200px;}
.y174{bottom:298.895760px;}
.y155{bottom:300.319920px;}
.ya8{bottom:301.680000px;}
.y30{bottom:301.861620px;}
.yce{bottom:303.425280px;}
.y53{bottom:303.456060px;}
.y106{bottom:309.312000px;}
.y1b2{bottom:309.423240px;}
.y1cb{bottom:309.427380px;}
.y13e{bottom:310.785840px;}
.y6d{bottom:310.860000px;}
.y184{bottom:315.257040px;}
.y18f{bottom:315.363240px;}
.y8b{bottom:316.625760px;}
.y122{bottom:316.879920px;}
.yef{bottom:318.320640px;}
.y168{bottom:319.761360px;}
.y173{bottom:319.777920px;}
.y154{bottom:321.384240px;}
.ya7{bottom:321.660000px;}
.y52{bottom:322.896780px;}
.ycd{bottom:324.307440px;}
.y105{bottom:330.376320px;}
.y1ca{bottom:330.484140px;}
.y1b1{bottom:330.487380px;}
.y13d{bottom:331.850160px;}
.y18e{bottom:336.420000px;}
.y121{bottom:337.762080px;}
.y8a{bottom:338.220000px;}
.yee{bottom:339.384960px;}
.y167{bottom:340.825680px;}
.y172{bottom:340.842240px;}
.y6c{bottom:341.280000px;}
.y153{bottom:342.266400px;}
.y51{bottom:342.518400px;}
.ycc{bottom:345.371760px;}
.y2f{bottom:350.820000px;}
.y104{bottom:351.258480px;}
.y1b0{bottom:351.363240px;}
.y1c9{bottom:351.373860px;}
.ya6{bottom:352.260000px;}
.y18d{bottom:357.480000px;}
.y89{bottom:358.200000px;}
.y183{bottom:358.462080px;}
.y120{bottom:358.826400px;}
.yed{bottom:360.267120px;}
.y6b{bottom:361.260000px;}
.y166{bottom:361.890000px;}
.y13c{bottom:361.906560px;}
.y50{bottom:361.959120px;}
.y152{bottom:363.330720px;}
.ycb{bottom:366.436080px;}
.ya5{bottom:372.240000px;}
.y103{bottom:372.322800px;}
.y1af{bottom:372.427380px;}
.y1c8{bottom:372.430620px;}
.y11f{bottom:379.890720px;}
.yec{bottom:381.331440px;}
.y4f{bottom:381.399840px;}
.y165{bottom:382.772160px;}
.y13b{bottom:382.788720px;}
.y151{bottom:384.395040px;}
.y88{bottom:385.560000px;}
.yca{bottom:387.318240px;}
.y6a{bottom:388.620000px;}
.y102{bottom:393.387120px;}
.y1ae{bottom:393.484140px;}
.y1c7{bottom:393.487380px;}
.ya4{bottom:399.600000px;}
.y18c{bottom:400.590720px;}
.y11e{bottom:400.772880px;}
.y4e{bottom:401.021460px;}
.yeb{bottom:402.395760px;}
.y164{bottom:403.836480px;}
.y13a{bottom:403.853040px;}
.y150{bottom:405.277200px;}
.y2e{bottom:405.924300px;}
.yc9{bottom:408.382560px;}
.y101{bottom:414.269280px;}
.y1c6{bottom:414.363240px;}
.y1ad{bottom:414.370620px;}
.y4d{bottom:420.462180px;}
.y11d{bottom:421.837200px;}
.yea{bottom:423.277920px;}
.y163{bottom:424.900800px;}
.y139{bottom:424.917360px;}
.y14f{bottom:426.341520px;}
.yc8{bottom:429.446880px;}
.y100{bottom:435.333600px;}
.y1ac{bottom:435.427380px;}
.y1c5{bottom:435.430620px;}
.y87{bottom:436.680000px;}
.y69{bottom:439.740000px;}
.y4c{bottom:439.902900px;}
.y11c{bottom:442.901520px;}
.ye9{bottom:444.342240px;}
.y162{bottom:445.782960px;}
.y138{bottom:445.799520px;}
.y14e{bottom:447.405840px;}
.yc7{bottom:450.329040px;}
.ya3{bottom:450.720000px;}
.yff{bottom:456.397920px;}
.y1ab{bottom:456.484140px;}
.y1c4{bottom:456.487380px;}
.y86{bottom:456.840000px;}
.y4b{bottom:459.524520px;}
.y68{bottom:459.900000px;}
.y11b{bottom:463.783680px;}
.ye8{bottom:465.406560px;}
.y161{bottom:466.847280px;}
.y137{bottom:466.863840px;}
.y14d{bottom:468.288000px;}
.ya2{bottom:470.706480px;}
.yc6{bottom:471.393360px;}
.y2d{bottom:477.016200px;}
.yfe{bottom:477.280080px;}
.y1c3{bottom:477.363240px;}
.y1aa{bottom:477.377100px;}
.y4a{bottom:478.965240px;}
.y11a{bottom:484.848000px;}
.ye7{bottom:486.288720px;}
.y85{bottom:487.260000px;}
.y160{bottom:487.911600px;}
.y136{bottom:487.928160px;}
.y14c{bottom:489.352320px;}
.y67{bottom:490.325760px;}
.ya1{bottom:490.860000px;}
.yc5{bottom:492.457680px;}
.yfd{bottom:498.344400px;}
.y49{bottom:498.405960px;}
.y1c2{bottom:498.430620px;}
.y1a9{bottom:498.433860px;}
.y119{bottom:505.912320px;}
.y84{bottom:507.240000px;}
.ye6{bottom:507.353040px;}
.y135{bottom:508.810320px;}
.y14b{bottom:510.416640px;}
.y66{bottom:511.920000px;}
.yc4{bottom:513.339840px;}
.y15f{bottom:517.785840px;}
.y48{bottom:518.027580px;}
.yfc{bottom:519.408720px;}
.y1c1{bottom:519.487380px;}
.y1a8{bottom:519.490620px;}
.ya0{bottom:521.280000px;}
.y118{bottom:526.794480px;}
.ye5{bottom:528.417360px;}
.y134{bottom:529.874640px;}
.y11{bottom:530.260379px;}
.y14a{bottom:531.298800px;}
.y65{bottom:531.900000px;}
.yc3{bottom:534.404160px;}
.y47{bottom:537.468300px;}
.y83{bottom:537.840000px;}
.y15e{bottom:538.850160px;}
.yfb{bottom:540.290880px;}
.y1c0{bottom:540.363240px;}
.y1a7{bottom:540.366480px;}
.y9f{bottom:541.260000px;}
.y10{bottom:544.435322px;}
.y117{bottom:547.858800px;}
.y2c{bottom:548.108100px;}
.y133{bottom:550.938960px;}
.y149{bottom:552.363120px;}
.yc2{bottom:555.468480px;}
.y46{bottom:556.909020px;}
.y82{bottom:557.812080px;}
.y15d{bottom:559.914480px;}
.yfa{bottom:561.355200px;}
.y1a6{bottom:561.423240px;}
.y1bf{bottom:561.441240px;}
.y64{bottom:562.325760px;}
.y116{bottom:568.923120px;}
.ye4{bottom:571.622400px;}
.y132{bottom:571.821120px;}
.y9e{bottom:571.867920px;}
.yf{bottom:572.035212px;}
.y148{bottom:573.427440px;}
.yc1{bottom:576.350640px;}
.y45{bottom:576.530640px;}
.y81{bottom:577.800000px;}
.yf9{bottom:582.419520px;}
.y1a5{bottom:582.494760px;}
.y1be{bottom:582.498000px;}
.y63{bottom:583.920000px;}
.ye{bottom:586.210155px;}
.y115{bottom:589.805280px;}
.ye3{bottom:591.063840px;}
.y131{bottom:592.885440px;}
.y9d{bottom:593.280000px;}
.y147{bottom:594.309600px;}
.y44{bottom:595.971360px;}
.yc0{bottom:597.414960px;}
.yd{bottom:600.385098px;}
.yf8{bottom:603.301680px;}
.y1a4{bottom:603.370620px;}
.y1bd{bottom:603.373860px;}
.y62{bottom:603.900000px;}
.y80{bottom:608.400000px;}
.ye2{bottom:610.687440px;}
.y114{bottom:610.869600px;}
.y9c{bottom:613.440000px;}
.y130{bottom:613.949760px;}
.yc{bottom:614.560042px;}
.y146{bottom:615.373920px;}
.y43{bottom:615.412080px;}
.y2b{bottom:619.200000px;}
.yf7{bottom:624.366000px;}
.y1a3{bottom:624.427380px;}
.y1bc{bottom:624.430620px;}
.yb8{bottom:627.480000px;}
.y7f{bottom:628.380000px;}
.yb{bottom:628.722485px;}
.y113{bottom:631.933920px;}
.y61{bottom:634.500000px;}
.y12f{bottom:634.831920px;}
.y42{bottom:635.033700px;}
.y17f{bottom:636.438240px;}
.ybf{bottom:640.620000px;}
.ya{bottom:642.897428px;}
.y171{bottom:643.824000px;}
.y9b{bottom:643.867920px;}
.yf6{bottom:645.430320px;}
.y1a2{bottom:645.484140px;}
.y1bb{bottom:645.487380px;}
.y112{bottom:652.816080px;}
.y41{bottom:654.474420px;}
.y60{bottom:654.479850px;}
.y12e{bottom:655.896240px;}
.y9{bottom:657.072372px;}
.y17e{bottom:657.320400px;}
.yb7{bottom:657.900000px;}
.y7e{bottom:658.979850px;}
.y170{bottom:664.888320px;}
.y9a{bottom:665.280000px;}
.ye1{bottom:666.312480px;}
.y1ba{bottom:666.363240px;}
.y1a1{bottom:666.366330px;}
.y111{bottom:673.880400px;}
.y40{bottom:673.915140px;}
.y17d{bottom:678.384720px;}
.y7d{bottom:678.960000px;}
.y2a{bottom:684.180000px;}
.y5f{bottom:684.900000px;}
.y99{bottom:685.440000px;}
.y12d{bottom:685.952640px;}
.ye0{bottom:687.376800px;}
.y1a0{bottom:687.423090px;}
.y1b9{bottom:687.433710px;}
.yb6{bottom:688.507920px;}
.y3f{bottom:693.536760px;}
.y110{bottom:694.944720px;}
.ybe{bottom:696.780000px;}
.y17c{bottom:699.449040px;}
.y5e{bottom:705.060000px;}
.y12c{bottom:706.834800px;}
.ydf{bottom:708.441120px;}
.y19f{bottom:708.490470px;}
.y7c{bottom:709.380000px;}
.yb5{bottom:709.920000px;}
.y3e{bottom:712.977480px;}
.y98{bottom:715.860000px;}
.y17b{bottom:720.331200px;}
.y8{bottom:723.134607px;}
.y12b{bottom:727.899120px;}
.yde{bottom:729.323280px;}
.y19e{bottom:729.366330px;}
.y7b{bottom:729.540000px;}
.yb4{bottom:729.900000px;}
.y5d{bottom:732.240000px;}
.y3d{bottom:732.418200px;}
.y97{bottom:735.846480px;}
.y10f{bottom:738.149760px;}
.ybd{bottom:741.052800px;}
.y7{bottom:742.622030px;}
.ydd{bottom:750.387600px;}
.y19d{bottom:750.423090px;}
.y3c{bottom:752.039820px;}
.y96{bottom:756.000000px;}
.y7a{bottom:756.720000px;}
.yb3{bottom:757.260000px;}
.y10e{bottom:757.773360px;}
.ybc{bottom:760.676400px;}
.y6{bottom:762.109452px;}
.y29{bottom:765.180000px;}
.ydc{bottom:771.451920px;}
.y3b{bottom:771.480540px;}
.y19c{bottom:771.490470px;}
.ybb{bottom:780.300000px;}
.y5{bottom:783.134367px;}
.y5c{bottom:783.547920px;}
.y95{bottom:786.425610px;}
.y3a{bottom:790.921260px;}
.ydb{bottom:792.334080px;}
.y19b{bottom:792.366330px;}
.y1d1{bottom:795.060000px;}
.y5b{bottom:804.960000px;}
.y4{bottom:807.934268px;}
.y94{bottom:808.019850px;}
.y79{bottom:808.027920px;}
.yb2{bottom:808.380000px;}
.y39{bottom:810.542880px;}
.yda{bottom:813.398400px;}
.y19a{bottom:813.423090px;}
.y5a{bottom:825.120000px;}
.y93{bottom:828.000000px;}
.y28{bottom:828.360000px;}
.yb1{bottom:828.540000px;}
.y78{bottom:829.440000px;}
.y38{bottom:829.983600px;}
.y3{bottom:832.734169px;}
.yd9{bottom:834.462720px;}
.y1d0{bottom:834.484140px;}
.y199{bottom:834.490470px;}
.yba{bottom:837.729000px;}
.y27{bottom:849.420000px;}
.y37{bottom:849.424320px;}
.yd8{bottom:855.344880px;}
.y198{bottom:855.366330px;}
.y2{bottom:857.546570px;}
.y92{bottom:858.425610px;}
.yb0{bottom:858.960000px;}
.y59{bottom:867.600000px;}
.yb9{bottom:867.780000px;}
.y36{bottom:869.045940px;}
.yd7{bottom:876.409200px;}
.y197{bottom:876.423090px;}
.yaf{bottom:879.107040px;}
.y77{bottom:880.019850px;}
.y24{bottom:882.981150px;}
.yae{bottom:897.472080px;}
.yd6{bottom:897.473520px;}
.y196{bottom:897.479850px;}
.y76{bottom:900.005760px;}
.y35{bottom:901.620000px;}
.y23{bottom:920.469150px;}
.y34{bottom:947.700000px;}
.y74{bottom:950.580000px;}
.y25{bottom:956.700000px;}
.h7{height:29.639881px;}
.h9{height:31.989872px;}
.h14{height:35.907891px;}
.h8{height:36.879852px;}
.h2d{height:37.192852px;}
.h5{height:40.754837px;}
.h2b{height:40.914492px;}
.hc{height:41.129835px;}
.h33{height:41.489063px;}
.h31{height:41.505623px;}
.h30{height:41.514983px;}
.h34{height:41.518583px;}
.h2e{height:41.531543px;}
.h32{height:41.544503px;}
.h2f{height:41.548703px;}
.h2c{height:41.574023px;}
.h1c{height:43.741055px;}
.h6{height:45.699817px;}
.ha{height:46.099816px;}
.h1a{height:48.225586px;}
.h15{height:51.070781px;}
.hb{height:51.183795px;}
.h23{height:51.647408px;}
.h1f{height:51.648007px;}
.h26{height:51.653767px;}
.h22{height:51.656048px;}
.h21{height:51.656647px;}
.h25{height:51.657247px;}
.h1e{height:51.679688px;}
.h24{height:51.711368px;}
.h27{height:51.731528px;}
.h19{height:53.369648px;}
.h29{height:55.243125px;}
.h2a{height:56.181094px;}
.h1b{height:57.086719px;}
.h28{height:59.156719px;}
.h3{height:63.979744px;}
.h4{height:64.539742px;}
.h16{height:76.383633px;}
.h20{height:81.218320px;}
.h11{height:92.532000px;}
.h1d{height:92.821930px;}
.h18{height:96.451172px;}
.h17{height:107.382305px;}
.h10{height:109.356000px;}
.h35{height:117.670430px;}
.hf{height:169.416000px;}
.h12{height:1020.600000px;}
.h13{height:1020.750000px;}
.hd{height:1045.984500px;}
.he{height:1046.250000px;}
.h2{height:1052.358291px;}
.h0{height:1052.985000px;}
.h1{height:1053.000000px;}
.w3{width:722.880000px;}
.w4{width:723.000000px;}
.w1{width:744.000000px;}
.w0{width:744.090000px;}
.w2{width:744.094500px;}
.x0{left:0.000000px;}
.x3{left:38.974844px;}
.x1{left:46.062316px;}
.x7{left:64.138350px;}
.x5{left:68.406150px;}
.xa{left:106.380000px;}
.x2{left:124.012004px;}
.x8{left:127.620000px;}
.x29{left:130.673520px;}
.x1b{left:131.948640px;}
.x10{left:143.982000px;}
.x18{left:149.237280px;}
.x16{left:153.185040px;}
.xb{left:159.487920px;}
.x20{left:161.640720px;}
.x1f{left:164.141280px;}
.x11{left:165.240000px;}
.x2c{left:166.525920px;}
.x17{left:169.225200px;}
.x12{left:170.638560px;}
.x27{left:178.747200px;}
.x23{left:186.662880px;}
.x1c{left:191.129040px;}
.x21{left:192.801600px;}
.xf{left:199.440000px;}
.x1e{left:200.871360px;}
.xc{left:214.558200px;}
.x6{left:224.532900px;}
.x25{left:227.880720px;}
.x26{left:232.926480px;}
.x19{left:238.500000px;}
.x1d{left:241.377120px;}
.xd{left:246.960000px;}
.x14{left:253.980000px;}
.x22{left:260.321760px;}
.x24{left:271.632240px;}
.x2a{left:281.513520px;}
.x13{left:284.935680px;}
.x28{left:306.320400px;}
.x2b{left:308.522880px;}
.x2d{left:312.651360px;}
.x15{left:329.400000px;}
.x4{left:364.961040px;}
.x9{left:502.374960px;}
.x1a{left:592.560000px;}
.xe{left:616.504320px;}
@media print{
.v2{vertical-align:-15.936000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls52{letter-spacing:-5.063680pt;}
.ls29{letter-spacing:-2.296320pt;}
.ls34{letter-spacing:-1.766400pt;}
.ls27{letter-spacing:-1.295360pt;}
.ls58{letter-spacing:-0.647680pt;}
.ls50{letter-spacing:-0.412160pt;}
.ls20{letter-spacing:-0.235520pt;}
.ls1a{letter-spacing:-0.176640pt;}
.lsaf{letter-spacing:-0.128640pt;}
.ls1c{letter-spacing:-0.117760pt;}
.ls16{letter-spacing:-0.058880pt;}
.ls26{letter-spacing:-0.042880pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.058880pt;}
.ls13{letter-spacing:0.117760pt;}
.ls1f{letter-spacing:0.294400pt;}
.ls6{letter-spacing:0.299520pt;}
.ls82{letter-spacing:0.331520pt;}
.ls70{letter-spacing:0.343040pt;}
.ls74{letter-spacing:0.345600pt;}
.ls3f{letter-spacing:0.353280pt;}
.ls80{letter-spacing:0.359040pt;}
.ls7d{letter-spacing:0.360192pt;}
.ls5e{letter-spacing:0.371200pt;}
.ls84{letter-spacing:0.372480pt;}
.ls4{letter-spacing:0.374400pt;}
.ls73{letter-spacing:0.380160pt;}
.ls7a{letter-spacing:0.384640pt;}
.lsb{letter-spacing:0.385920pt;}
.ls61{letter-spacing:0.410240pt;}
.ls19{letter-spacing:0.412160pt;}
.ls93{letter-spacing:0.414720pt;}
.ls7b{letter-spacing:0.427520pt;}
.lsc{letter-spacing:0.428800pt;}
.ls63{letter-spacing:0.430720pt;}
.ls9d{letter-spacing:0.437760pt;}
.ls6c{letter-spacing:0.446080pt;}
.ls6f{letter-spacing:0.449280pt;}
.ls28{letter-spacing:0.471040pt;}
.ls97{letter-spacing:0.471680pt;}
.ls89{letter-spacing:0.472960pt;}
.ls71{letter-spacing:0.483840pt;}
.ls85{letter-spacing:0.485760pt;}
.ls12{letter-spacing:0.514560pt;}
.ls98{letter-spacing:0.518400pt;}
.ls2e{letter-spacing:0.529920pt;}
.ls66{letter-spacing:0.531200pt;}
.lsae{letter-spacing:0.532480pt;}
.ls9c{letter-spacing:0.548864pt;}
.lsac{letter-spacing:0.557440pt;}
.ls7c{letter-spacing:0.560000pt;}
.lsa7{letter-spacing:0.560640pt;}
.lsa9{letter-spacing:0.561280pt;}
.lsa4{letter-spacing:0.578560pt;}
.ls15{letter-spacing:0.588800pt;}
.ls9{letter-spacing:0.600320pt;}
.ls8d{letter-spacing:0.619520pt;}
.ls79{letter-spacing:0.621760pt;}
.ls8e{letter-spacing:0.622080pt;}
.ls48{letter-spacing:0.630016pt;}
.ls6b{letter-spacing:0.630336pt;}
.ls10{letter-spacing:0.643200pt;}
.ls1d{letter-spacing:0.647680pt;}
.ls2d{letter-spacing:0.665344pt;}
.ls5d{letter-spacing:0.670720pt;}
.lsf{letter-spacing:0.686080pt;}
.lsaa{letter-spacing:0.691200pt;}
.ls9a{letter-spacing:0.693120pt;}
.ls4f{letter-spacing:0.694784pt;}
.ls9b{letter-spacing:0.698944pt;}
.ls8b{letter-spacing:0.700160pt;}
.ls1b{letter-spacing:0.706560pt;}
.ls35{letter-spacing:0.724224pt;}
.ls69{letter-spacing:0.724672pt;}
.ls87{letter-spacing:0.728960pt;}
.ls53{letter-spacing:0.730112pt;}
.ls3d{letter-spacing:0.736000pt;}
.ls78{letter-spacing:0.737536pt;}
.ls65{letter-spacing:0.740480pt;}
.ls57{letter-spacing:0.741888pt;}
.lsa5{letter-spacing:0.746112pt;}
.ls4c{letter-spacing:0.747776pt;}
.ls86{letter-spacing:0.754688pt;}
.ls14{letter-spacing:0.765440pt;}
.ls55{letter-spacing:0.771328pt;}
.ls99{letter-spacing:0.776128pt;}
.ls31{letter-spacing:0.777216pt;}
.ls7f{letter-spacing:0.789760pt;}
.ls72{letter-spacing:0.794880pt;}
.lsad{letter-spacing:0.797568pt;}
.lsa2{letter-spacing:0.808320pt;}
.ls67{letter-spacing:0.810240pt;}
.ls11{letter-spacing:0.814720pt;}
.ls6d{letter-spacing:0.820480pt;}
.ls6a{letter-spacing:0.823296pt;}
.ls5{letter-spacing:0.823680pt;}
.ls33{letter-spacing:0.824320pt;}
.lsa0{letter-spacing:0.834560pt;}
.ls4b{letter-spacing:0.841984pt;}
.ls2f{letter-spacing:0.853760pt;}
.ls76{letter-spacing:0.857600pt;}
.lsab{letter-spacing:0.864000pt;}
.ls9f{letter-spacing:0.880000pt;}
.ls90{letter-spacing:0.898560pt;}
.lsa{letter-spacing:0.900480pt;}
.ls47{letter-spacing:0.918528pt;}
.ls8f{letter-spacing:0.933120pt;}
.ls37{letter-spacing:0.942080pt;}
.lsd{letter-spacing:0.943360pt;}
.ls5f{letter-spacing:0.960000pt;}
.ls68{letter-spacing:0.967680pt;}
.ls75{letter-spacing:0.986240pt;}
.ls83{letter-spacing:0.999040pt;}
.ls1e{letter-spacing:1.021440pt;}
.ls94{letter-spacing:1.029120pt;}
.ls62{letter-spacing:1.050240pt;}
.ls3a{letter-spacing:1.059840pt;}
.ls91{letter-spacing:1.071360pt;}
.ls18{letter-spacing:1.106560pt;}
.ls81{letter-spacing:1.148800pt;}
.ls96{letter-spacing:1.157760pt;}
.ls8a{letter-spacing:1.171200pt;}
.ls41{letter-spacing:1.177600pt;}
.lsa6{letter-spacing:1.239232pt;}
.ls77{letter-spacing:1.243520pt;}
.lsa8{letter-spacing:1.259520pt;}
.ls88{letter-spacing:1.286400pt;}
.ls36{letter-spacing:1.295360pt;}
.ls64{letter-spacing:1.308800pt;}
.ls2a{letter-spacing:1.313024pt;}
.ls92{letter-spacing:1.329280pt;}
.ls7e{letter-spacing:1.337856pt;}
.ls32{letter-spacing:1.354240pt;}
.ls44{letter-spacing:1.360128pt;}
.lsa1{letter-spacing:1.367872pt;}
.lsa3{letter-spacing:1.380736pt;}
.ls8c{letter-spacing:1.385024pt;}
.ls7{letter-spacing:1.389440pt;}
.ls9e{letter-spacing:1.397888pt;}
.ls42{letter-spacing:1.413120pt;}
.ls5a{letter-spacing:1.454336pt;}
.ls95{letter-spacing:1.457920pt;}
.ls25{letter-spacing:1.530880pt;}
.ls60{letter-spacing:1.600000pt;}
.ls46{letter-spacing:1.943040pt;}
.ls30{letter-spacing:2.178560pt;}
.ls3{letter-spacing:2.346667pt;}
.lse{letter-spacing:2.487040pt;}
.ls54{letter-spacing:2.531840pt;}
.ls45{letter-spacing:2.767360pt;}
.ls2{letter-spacing:2.773333pt;}
.ls39{letter-spacing:3.179520pt;}
.ls40{letter-spacing:3.473920pt;}
.ls24{letter-spacing:3.532800pt;}
.ls23{letter-spacing:3.744000pt;}
.ls21{letter-spacing:3.827200pt;}
.ls1{letter-spacing:3.840000pt;}
.ls59{letter-spacing:4.474880pt;}
.ls8{letter-spacing:5.088000pt;}
.ls3c{letter-spacing:5.122560pt;}
.ls6e{letter-spacing:5.475840pt;}
.ls22{letter-spacing:5.770240pt;}
.ls2b{letter-spacing:6.417920pt;}
.ls3b{letter-spacing:7.654400pt;}
.ls5b{letter-spacing:8.302080pt;}
.ls56{letter-spacing:8.949760pt;}
.ls4e{letter-spacing:9.597440pt;}
.ls49{letter-spacing:10.245120pt;}
.ls43{letter-spacing:10.892800pt;}
.ls3e{letter-spacing:11.540480pt;}
.ls38{letter-spacing:13.424640pt;}
.ls2c{letter-spacing:14.072320pt;}
.ls5c{letter-spacing:18.547200pt;}
.ls51{letter-spacing:24.965120pt;}
.ls4a{letter-spacing:31.383040pt;}
.ls4d{letter-spacing:38.372096pt;}
.ws18{word-spacing:-30.048000pt;}
.ws2b{word-spacing:-22.386560pt;}
.wsbe{word-spacing:-20.784640pt;}
.wsae{word-spacing:-19.842560pt;}
.ws3{word-spacing:-19.768320pt;}
.ws2c{word-spacing:-18.841600pt;}
.ws9a{word-spacing:-16.015360pt;}
.ws76{word-spacing:-15.779840pt;}
.ws6d{word-spacing:-15.662080pt;}
.ws60{word-spacing:-15.544320pt;}
.wsbd{word-spacing:-15.485440pt;}
.ws26{word-spacing:-15.426560pt;}
.ws99{word-spacing:-15.367680pt;}
.ws2d{word-spacing:-15.308800pt;}
.ws9f{word-spacing:-15.249920pt;}
.ws30{word-spacing:-15.191040pt;}
.ws2f{word-spacing:-15.132160pt;}
.ws8b{word-spacing:-15.073280pt;}
.ws49{word-spacing:-14.778880pt;}
.ws1b{word-spacing:-14.720000pt;}
.ws19{word-spacing:-14.661120pt;}
.ws1a{word-spacing:-14.543360pt;}
.ws2a{word-spacing:-14.484480pt;}
.wsa9{word-spacing:-14.307840pt;}
.ws0{word-spacing:-13.838167pt;}
.ws2e{word-spacing:-13.424640pt;}
.ws5f{word-spacing:-12.953600pt;}
.ws31{word-spacing:-12.423680pt;}
.wsd7{word-spacing:-12.177920pt;}
.ws7{word-spacing:-12.049280pt;}
.wsca{word-spacing:-11.963520pt;}
.wsd8{word-spacing:-11.877760pt;}
.ws8{word-spacing:-11.834880pt;}
.wsa{word-spacing:-11.792000pt;}
.wsb{word-spacing:-11.749120pt;}
.wsc7{word-spacing:-11.706240pt;}
.wsc8{word-spacing:-11.663360pt;}
.wsdc{word-spacing:-11.620480pt;}
.ws9{word-spacing:-11.577600pt;}
.wsd3{word-spacing:-11.534720pt;}
.wsd9{word-spacing:-11.406080pt;}
.wsda{word-spacing:-11.363200pt;}
.wsc3{word-spacing:-11.320320pt;}
.wsee{word-spacing:-11.277440pt;}
.wsc9{word-spacing:-11.234560pt;}
.wsec{word-spacing:-11.191680pt;}
.wsc{word-spacing:-11.148800pt;}
.wsc5{word-spacing:-11.105920pt;}
.wsc0{word-spacing:-11.063040pt;}
.wsef{word-spacing:-10.720000pt;}
.wsf3{word-spacing:-10.591360pt;}
.wsd6{word-spacing:-9.711360pt;}
.wsaf{word-spacing:-9.656320pt;}
.wsd4{word-spacing:-9.573120pt;}
.wsd5{word-spacing:-9.538560pt;}
.wsed{word-spacing:-9.504000pt;}
.wsc2{word-spacing:-9.434880pt;}
.wsd2{word-spacing:-9.262080pt;}
.wsdb{word-spacing:-9.158400pt;}
.wsc1{word-spacing:-9.123840pt;}
.wsbf{word-spacing:-9.089280pt;}
.wsc4{word-spacing:-9.020160pt;}
.wsc6{word-spacing:-8.985600pt;}
.ws6{word-spacing:-4.416000pt;}
.ws58{word-spacing:-3.886080pt;}
.ws2{word-spacing:-3.840000pt;}
.ws94{word-spacing:-3.827200pt;}
.ws6f{word-spacing:-3.768320pt;}
.ws59{word-spacing:-3.591680pt;}
.wsb9{word-spacing:-3.473920pt;}
.ws67{word-spacing:-3.238400pt;}
.ws8a{word-spacing:-3.120640pt;}
.ws32{word-spacing:-3.072000pt;}
.ws82{word-spacing:-3.002880pt;}
.ws98{word-spacing:-2.944000pt;}
.ws33{word-spacing:-2.826240pt;}
.ws8d{word-spacing:-2.767360pt;}
.ws36{word-spacing:-2.649600pt;}
.wsba{word-spacing:-2.590720pt;}
.ws65{word-spacing:-2.531840pt;}
.ws83{word-spacing:-2.472960pt;}
.ws37{word-spacing:-2.355200pt;}
.wsd{word-spacing:-2.101120pt;}
.ws8f{word-spacing:-2.001920pt;}
.ws3a{word-spacing:-1.884160pt;}
.ws71{word-spacing:-1.707520pt;}
.ws55{word-spacing:-1.472000pt;}
.ws6e{word-spacing:-1.354240pt;}
.ws40{word-spacing:-1.236480pt;}
.ws92{word-spacing:-1.177600pt;}
.ws38{word-spacing:-1.059840pt;}
.ws5{word-spacing:-0.961920pt;}
.wsde{word-spacing:-0.943360pt;}
.wsea{word-spacing:-0.933120pt;}
.wseb{word-spacing:-0.900480pt;}
.wsf0{word-spacing:-0.898560pt;}
.wscf{word-spacing:-0.857600pt;}
.ws34{word-spacing:-0.824320pt;}
.wse4{word-spacing:-0.771840pt;}
.wse2{word-spacing:-0.728960pt;}
.ws21{word-spacing:-0.706560pt;}
.wsdd{word-spacing:-0.686080pt;}
.wsbc{word-spacing:-0.647680pt;}
.ws15{word-spacing:-0.643200pt;}
.ws11{word-spacing:-0.600320pt;}
.ws1e{word-spacing:-0.595840pt;}
.ws28{word-spacing:-0.588800pt;}
.ws10{word-spacing:-0.514560pt;}
.ws27{word-spacing:-0.510720pt;}
.wsd1{word-spacing:-0.483840pt;}
.ws24{word-spacing:-0.471040pt;}
.ws4{word-spacing:-0.449280pt;}
.ws14{word-spacing:-0.428800pt;}
.wse7{word-spacing:-0.414720pt;}
.ws69{word-spacing:-0.412160pt;}
.wse1{word-spacing:-0.385920pt;}
.wsf2{word-spacing:-0.380160pt;}
.wscd{word-spacing:-0.345600pt;}
.wse9{word-spacing:-0.343040pt;}
.wse{word-spacing:-0.300160pt;}
.ws4a{word-spacing:-0.296960pt;}
.ws29{word-spacing:-0.294400pt;}
.wsf{word-spacing:-0.257280pt;}
.ws12{word-spacing:-0.214400pt;}
.ws16{word-spacing:-0.128640pt;}
.ws95{word-spacing:-0.117760pt;}
.wsce{word-spacing:-0.085760pt;}
.ws1d{word-spacing:-0.058880pt;}
.ws13{word-spacing:-0.042880pt;}
.ws1{word-spacing:0.000000pt;}
.wse6{word-spacing:0.034560pt;}
.ws1c{word-spacing:0.058880pt;}
.ws23{word-spacing:0.117760pt;}
.wse0{word-spacing:0.128640pt;}
.ws20{word-spacing:0.176640pt;}
.ws1f{word-spacing:0.235520pt;}
.wsd0{word-spacing:0.300160pt;}
.wse8{word-spacing:0.343040pt;}
.wsdf{word-spacing:0.385920pt;}
.wse3{word-spacing:0.428800pt;}
.ws22{word-spacing:0.588800pt;}
.ws17{word-spacing:0.600320pt;}
.wsbb{word-spacing:0.647680pt;}
.wsf1{word-spacing:0.656640pt;}
.ws25{word-spacing:0.706560pt;}
.ws4d{word-spacing:0.883200pt;}
.wsaa{word-spacing:1.059840pt;}
.wsb7{word-spacing:1.118720pt;}
.wse5{word-spacing:1.209600pt;}
.ws66{word-spacing:1.236480pt;}
.ws4b{word-spacing:1.354240pt;}
.ws35{word-spacing:1.530880pt;}
.ws75{word-spacing:1.884160pt;}
.ws52{word-spacing:2.001920pt;}
.ws4c{word-spacing:2.178560pt;}
.ws61{word-spacing:2.472960pt;}
.ws6b{word-spacing:2.590720pt;}
.ws86{word-spacing:2.649600pt;}
.ws5c{word-spacing:2.767360pt;}
.ws5a{word-spacing:3.120640pt;}
.ws7c{word-spacing:3.238400pt;}
.ws3f{word-spacing:3.415040pt;}
.ws6a{word-spacing:3.650560pt;}
.ws43{word-spacing:3.768320pt;}
.ws57{word-spacing:3.886080pt;}
.ws44{word-spacing:4.062720pt;}
.ws85{word-spacing:4.416000pt;}
.ws3d{word-spacing:4.533760pt;}
.ws3e{word-spacing:4.710400pt;}
.ws46{word-spacing:5.063680pt;}
.ws47{word-spacing:5.181440pt;}
.ws56{word-spacing:5.358080pt;}
.ws4f{word-spacing:5.711360pt;}
.ws88{word-spacing:5.829120pt;}
.ws3c{word-spacing:6.005760pt;}
.wsad{word-spacing:6.241280pt;}
.ws79{word-spacing:6.359040pt;}
.ws39{word-spacing:6.476800pt;}
.ws48{word-spacing:6.653440pt;}
.ws8e{word-spacing:6.947840pt;}
.ws53{word-spacing:7.065600pt;}
.ws87{word-spacing:7.124480pt;}
.ws54{word-spacing:7.242240pt;}
.wsa7{word-spacing:7.477760pt;}
.ws5e{word-spacing:7.595520pt;}
.ws63{word-spacing:7.713280pt;}
.ws84{word-spacing:7.831040pt;}
.ws41{word-spacing:7.889920pt;}
.ws4e{word-spacing:8.243200pt;}
.wsb0{word-spacing:8.360960pt;}
.ws3b{word-spacing:8.537600pt;}
.ws8c{word-spacing:8.890880pt;}
.wsa2{word-spacing:9.008640pt;}
.ws73{word-spacing:9.185280pt;}
.ws70{word-spacing:9.538560pt;}
.ws45{word-spacing:9.656320pt;}
.ws72{word-spacing:9.832960pt;}
.ws7a{word-spacing:10.186240pt;}
.ws7b{word-spacing:10.304000pt;}
.ws96{word-spacing:10.480640pt;}
.ws91{word-spacing:10.598400pt;}
.ws42{word-spacing:10.833920pt;}
.ws93{word-spacing:10.951680pt;}
.ws90{word-spacing:11.128320pt;}
.ws62{word-spacing:11.599360pt;}
.ws68{word-spacing:11.776000pt;}
.wsa0{word-spacing:12.070400pt;}
.ws5b{word-spacing:12.364800pt;}
.ws77{word-spacing:12.835840pt;}
.ws78{word-spacing:13.012480pt;}
.ws9b{word-spacing:13.365760pt;}
.ws51{word-spacing:13.483520pt;}
.ws50{word-spacing:13.660160pt;}
.ws7d{word-spacing:14.013440pt;}
.wsb3{word-spacing:14.307840pt;}
.ws6c{word-spacing:15.426560pt;}
.ws74{word-spacing:15.603200pt;}
.ws9c{word-spacing:15.956480pt;}
.ws89{word-spacing:16.074240pt;}
.ws9d{word-spacing:16.250880pt;}
.wsa4{word-spacing:16.898560pt;}
.wscb{word-spacing:17.251840pt;}
.ws97{word-spacing:17.487360pt;}
.wscc{word-spacing:17.840640pt;}
.ws81{word-spacing:17.958400pt;}
.ws80{word-spacing:18.135040pt;}
.wsa3{word-spacing:18.488320pt;}
.ws64{word-spacing:18.606080pt;}
.wsac{word-spacing:18.782720pt;}
.wsb6{word-spacing:19.253760pt;}
.ws9e{word-spacing:19.901440pt;}
.wsb8{word-spacing:20.431360pt;}
.ws7e{word-spacing:20.549120pt;}
.ws7f{word-spacing:20.725760pt;}
.wsa1{word-spacing:21.785600pt;}
.wsb2{word-spacing:23.493120pt;}
.wsb1{word-spacing:23.905280pt;}
.ws5d{word-spacing:26.319360pt;}
.wsb4{word-spacing:26.672640pt;}
.wsb5{word-spacing:27.084800pt;}
.wsa6{word-spacing:30.794240pt;}
.wsa5{word-spacing:30.970880pt;}
.wsab{word-spacing:37.977600pt;}
.wsa8{word-spacing:40.568320pt;}
._f{margin-left:-22.387200pt;}
._1a{margin-left:-15.115604pt;}
._17{margin-left:-14.021973pt;}
._16{margin-left:-12.722347pt;}
._14{margin-left:-11.136853pt;}
._15{margin-left:-9.366187pt;}
._12{margin-left:-7.863669pt;}
._c{margin-left:-6.837144pt;}
._13{margin-left:-5.473059pt;}
._10{margin-left:-4.060800pt;}
._e{margin-left:-2.593067pt;}
._d{margin-left:-1.173333pt;}
._7{width:0.933330pt;}
._a{width:1.968881pt;}
._1{width:2.982210pt;}
._4{width:4.297761pt;}
._5{width:5.844421pt;}
._18{width:7.517572pt;}
._0{width:9.288852pt;}
._19{width:10.489390pt;}
._1b{width:11.481600pt;}
._8{width:12.506617pt;}
._6{width:18.168816pt;}
._9{width:23.582128pt;}
._3{width:26.693227pt;}
._b{width:42.622052pt;}
._11{width:755.520000pt;}
._2{width:773.890238pt;}
.fs4{font-size:31.110987pt;}
.fs15{font-size:34.560000pt;}
.fs3{font-size:35.555413pt;}
.fsb{font-size:37.120000pt;}
.fs6{font-size:39.110955pt;}
.fs7{font-size:39.999840pt;}
.fs12{font-size:42.880000pt;}
.fs2{font-size:44.444267pt;}
.fs11{font-size:48.000000pt;}
.fs1{font-size:48.888693pt;}
.fs5{font-size:49.777579pt;}
.fs10{font-size:53.120000pt;}
.fsc{font-size:58.880000pt;}
.fs0{font-size:62.221973pt;}
.fs13{font-size:64.000000pt;}
.fsd{font-size:74.880000pt;}
.fs14{font-size:85.120000pt;}
.fsf{font-size:96.000000pt;}
.fse{font-size:106.880000pt;}
.fs16{font-size:117.120000pt;}
.fsa{font-size:117.333333pt;}
.fs9{font-size:138.666667pt;}
.fs8{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.281293pt;}
.y20{bottom:47.388699pt;}
.y75{bottom:51.198720pt;}
.y26{bottom:51.200000pt;}
.y1f{bottom:59.988649pt;}
.y1e{bottom:72.588599pt;}
.y1d{bottom:85.188548pt;}
.y1c{bottom:95.955172pt;}
.y1b{bottom:116.355090pt;}
.y12a{bottom:132.204160pt;}
.y15c{bottom:136.208000pt;}
.yd5{bottom:138.968320pt;}
.y73{bottom:139.200000pt;}
.y91{bottom:143.044987pt;}
.y10d{bottom:144.200960pt;}
.y145{bottom:145.672960pt;}
.y182{bottom:146.938880pt;}
.y18b{bottom:149.647360pt;}
.y129{bottom:150.928000pt;}
.y33{bottom:152.160000pt;}
.y16f{bottom:153.651200pt;}
.y17a{bottom:153.665920pt;}
.y15b{bottom:154.931840pt;}
.yd4{bottom:157.692160pt;}
.yad{bottom:160.480000pt;}
.y10c{bottom:162.924800pt;}
.y1cf{bottom:163.046560pt;}
.y1b8{bottom:163.049440pt;}
.y144{bottom:164.234880pt;}
.y181{bottom:165.662720pt;}
.y18a{bottom:168.209280pt;}
.y195{bottom:168.329440pt;}
.y72{bottom:168.640000pt;}
.y128{bottom:169.651840pt;}
.yf5{bottom:170.932480pt;}
.y16e{bottom:172.213120pt;}
.y179{bottom:172.227840pt;}
.y90{bottom:172.484987pt;}
.y15a{bottom:173.655680pt;}
.y1a{bottom:175.621520pt;}
.yd3{bottom:176.254080pt;}
.yac{bottom:178.240000pt;}
.y32{bottom:181.124960pt;}
.y10b{bottom:181.648640pt;}
.y1ce{bottom:181.763680pt;}
.y1b7{bottom:181.766560pt;}
.y143{bottom:182.958720pt;}
.y58{bottom:183.013920pt;}
.y180{bottom:184.224640pt;}
.y19{bottom:185.065926pt;}
.y71{bottom:186.400000pt;}
.y189{bottom:186.933120pt;}
.y194{bottom:187.046560pt;}
.y127{bottom:188.213760pt;}
.y22{bottom:189.147867pt;}
.yf4{bottom:189.656320pt;}
.y16d{bottom:190.936960pt;}
.y178{bottom:190.951680pt;}
.y8f{bottom:191.679867pt;}
.y159{bottom:192.217600pt;}
.y18{bottom:193.732558pt;}
.yd2{bottom:194.977920pt;}
.y10a{bottom:200.210560pt;}
.y1b6{bottom:200.322880pt;}
.y1cd{bottom:200.329440pt;}
.y57{bottom:200.455360pt;}
.y17{bottom:201.599194pt;}
.y142{bottom:201.682560pt;}
.yab{bottom:205.440000pt;}
.y188{bottom:205.656960pt;}
.y193{bottom:205.763680pt;}
.y126{bottom:206.937600pt;}
.yf3{bottom:208.218240pt;}
.y8e{bottom:209.440000pt;}
.y16{bottom:209.476940pt;}
.y16c{bottom:209.660800pt;}
.y177{bottom:209.675520pt;}
.y158{bottom:210.941440pt;}
.y70{bottom:213.600000pt;}
.yd1{bottom:213.701760pt;}
.y15{bottom:217.354686pt;}
.y56{bottom:217.736000pt;}
.y109{bottom:218.934400pt;}
.y1b5{bottom:219.046560pt;}
.y141{bottom:220.244480pt;}
.yaa{bottom:223.192960pt;}
.y187{bottom:224.218880pt;}
.y192{bottom:224.332320pt;}
.y31{bottom:224.643520pt;}
.y14{bottom:225.221321pt;}
.y125{bottom:225.661440pt;}
.yf2{bottom:226.942080pt;}
.y16b{bottom:228.222720pt;}
.y176{bottom:228.237440pt;}
.y157{bottom:229.665280pt;}
.y6f{bottom:231.360000pt;}
.yd0{bottom:232.263680pt;}
.y13{bottom:233.099068pt;}
.y21{bottom:233.345733pt;}
.y55{bottom:235.016640pt;}
.y8d{bottom:236.640000pt;}
.y108{bottom:237.658240pt;}
.y1b4{bottom:237.763680pt;}
.y140{bottom:238.968320pt;}
.ya9{bottom:240.960000pt;}
.y186{bottom:242.942720pt;}
.y191{bottom:243.049440pt;}
.y124{bottom:244.223360pt;}
.yf1{bottom:245.665920pt;}
.y16a{bottom:246.946560pt;}
.y175{bottom:246.961280pt;}
.y156{bottom:248.227200pt;}
.y12{bottom:249.299003pt;}
.ycf{bottom:250.987520pt;}
.y54{bottom:252.458080pt;}
.y8c{bottom:254.400000pt;}
.y107{bottom:256.220160pt;}
.y1cc{bottom:256.320000pt;}
.y1b3{bottom:256.325760pt;}
.y13f{bottom:257.692160pt;}
.y6e{bottom:258.400000pt;}
.y185{bottom:261.666560pt;}
.y190{bottom:261.766560pt;}
.y123{bottom:262.947200pt;}
.yf0{bottom:264.227840pt;}
.y169{bottom:265.670400pt;}
.y174{bottom:265.685120pt;}
.y155{bottom:266.951040pt;}
.ya8{bottom:268.160000pt;}
.y30{bottom:268.321440pt;}
.yce{bottom:269.711360pt;}
.y53{bottom:269.738720pt;}
.y106{bottom:274.944000pt;}
.y1b2{bottom:275.042880pt;}
.y1cb{bottom:275.046560pt;}
.y13e{bottom:276.254080pt;}
.y6d{bottom:276.320000pt;}
.y184{bottom:280.228480pt;}
.y18f{bottom:280.322880pt;}
.y8b{bottom:281.445120pt;}
.y122{bottom:281.671040pt;}
.yef{bottom:282.951680pt;}
.y168{bottom:284.232320pt;}
.y173{bottom:284.247040pt;}
.y154{bottom:285.674880pt;}
.ya7{bottom:285.920000pt;}
.y52{bottom:287.019360pt;}
.ycd{bottom:288.273280pt;}
.y105{bottom:293.667840pt;}
.y1ca{bottom:293.763680pt;}
.y1b1{bottom:293.766560pt;}
.y13d{bottom:294.977920pt;}
.y18e{bottom:299.040000pt;}
.y121{bottom:300.232960pt;}
.y8a{bottom:300.640000pt;}
.yee{bottom:301.675520pt;}
.y167{bottom:302.956160pt;}
.y172{bottom:302.970880pt;}
.y6c{bottom:303.360000pt;}
.y153{bottom:304.236800pt;}
.y51{bottom:304.460800pt;}
.ycc{bottom:306.997120pt;}
.y2f{bottom:311.840000pt;}
.y104{bottom:312.229760pt;}
.y1b0{bottom:312.322880pt;}
.y1c9{bottom:312.332320pt;}
.ya6{bottom:313.120000pt;}
.y18d{bottom:317.760000pt;}
.y89{bottom:318.400000pt;}
.y183{bottom:318.632960pt;}
.y120{bottom:318.956800pt;}
.yed{bottom:320.237440pt;}
.y6b{bottom:321.120000pt;}
.y166{bottom:321.680000pt;}
.y13c{bottom:321.694720pt;}
.y50{bottom:321.741440pt;}
.y152{bottom:322.960640pt;}
.ycb{bottom:325.720960pt;}
.ya5{bottom:330.880000pt;}
.y103{bottom:330.953600pt;}
.y1af{bottom:331.046560pt;}
.y1c8{bottom:331.049440pt;}
.y11f{bottom:337.680640pt;}
.yec{bottom:338.961280pt;}
.y4f{bottom:339.022080pt;}
.y165{bottom:340.241920pt;}
.y13b{bottom:340.256640pt;}
.y151{bottom:341.684480pt;}
.y88{bottom:342.720000pt;}
.yca{bottom:344.282880pt;}
.y6a{bottom:345.440000pt;}
.y102{bottom:349.677440pt;}
.y1ae{bottom:349.763680pt;}
.y1c7{bottom:349.766560pt;}
.ya4{bottom:355.200000pt;}
.y18c{bottom:356.080640pt;}
.y11e{bottom:356.242560pt;}
.y4e{bottom:356.463520pt;}
.yeb{bottom:357.685120pt;}
.y164{bottom:358.965760pt;}
.y13a{bottom:358.980480pt;}
.y150{bottom:360.246400pt;}
.y2e{bottom:360.821600pt;}
.yc9{bottom:363.006720pt;}
.y101{bottom:368.239360pt;}
.y1c6{bottom:368.322880pt;}
.y1ad{bottom:368.329440pt;}
.y4d{bottom:373.744160pt;}
.y11d{bottom:374.966400pt;}
.yea{bottom:376.247040pt;}
.y163{bottom:377.689600pt;}
.y139{bottom:377.704320pt;}
.y14f{bottom:378.970240pt;}
.yc8{bottom:381.730560pt;}
.y100{bottom:386.963200pt;}
.y1ac{bottom:387.046560pt;}
.y1c5{bottom:387.049440pt;}
.y87{bottom:388.160000pt;}
.y69{bottom:390.880000pt;}
.y4c{bottom:391.024800pt;}
.y11c{bottom:393.690240pt;}
.ye9{bottom:394.970880pt;}
.y162{bottom:396.251520pt;}
.y138{bottom:396.266240pt;}
.y14e{bottom:397.694080pt;}
.yc7{bottom:400.292480pt;}
.ya3{bottom:400.640000pt;}
.yff{bottom:405.687040pt;}
.y1ab{bottom:405.763680pt;}
.y1c4{bottom:405.766560pt;}
.y86{bottom:406.080000pt;}
.y4b{bottom:408.466240pt;}
.y68{bottom:408.800000pt;}
.y11b{bottom:412.252160pt;}
.ye8{bottom:413.694720pt;}
.y161{bottom:414.975360pt;}
.y137{bottom:414.990080pt;}
.y14d{bottom:416.256000pt;}
.ya2{bottom:418.405760pt;}
.yc6{bottom:419.016320pt;}
.y2d{bottom:424.014400pt;}
.yfe{bottom:424.248960pt;}
.y1c3{bottom:424.322880pt;}
.y1aa{bottom:424.335200pt;}
.y4a{bottom:425.746880pt;}
.y11a{bottom:430.976000pt;}
.ye7{bottom:432.256640pt;}
.y85{bottom:433.120000pt;}
.y160{bottom:433.699200pt;}
.y136{bottom:433.713920pt;}
.y14c{bottom:434.979840pt;}
.y67{bottom:435.845120pt;}
.ya1{bottom:436.320000pt;}
.yc5{bottom:437.740160pt;}
.yfd{bottom:442.972800pt;}
.y49{bottom:443.027520pt;}
.y1c2{bottom:443.049440pt;}
.y1a9{bottom:443.052320pt;}
.y119{bottom:449.699840pt;}
.y84{bottom:450.880000pt;}
.ye6{bottom:450.980480pt;}
.y135{bottom:452.275840pt;}
.y14b{bottom:453.703680pt;}
.y66{bottom:455.040000pt;}
.yc4{bottom:456.302080pt;}
.y15f{bottom:460.254080pt;}
.y48{bottom:460.468960pt;}
.yfc{bottom:461.696640pt;}
.y1c1{bottom:461.766560pt;}
.y1a8{bottom:461.769440pt;}
.ya0{bottom:463.360000pt;}
.y118{bottom:468.261760pt;}
.ye5{bottom:469.704320pt;}
.y134{bottom:470.999680pt;}
.y11{bottom:471.342559pt;}
.y14a{bottom:472.265600pt;}
.y65{bottom:472.800000pt;}
.yc3{bottom:475.025920pt;}
.y47{bottom:477.749600pt;}
.y83{bottom:478.080000pt;}
.y15e{bottom:478.977920pt;}
.yfb{bottom:480.258560pt;}
.y1c0{bottom:480.322880pt;}
.y1a7{bottom:480.325760pt;}
.y9f{bottom:481.120000pt;}
.y10{bottom:483.942509pt;}
.y117{bottom:486.985600pt;}
.y2c{bottom:487.207200pt;}
.y133{bottom:489.723520pt;}
.y149{bottom:490.989440pt;}
.yc2{bottom:493.749760pt;}
.y46{bottom:495.030240pt;}
.y82{bottom:495.832960pt;}
.y15d{bottom:497.701760pt;}
.yfa{bottom:498.982400pt;}
.y1a6{bottom:499.042880pt;}
.y1bf{bottom:499.058880pt;}
.y64{bottom:499.845120pt;}
.y116{bottom:505.709440pt;}
.ye4{bottom:508.108800pt;}
.y132{bottom:508.285440pt;}
.y9e{bottom:508.327040pt;}
.yf{bottom:508.475744pt;}
.y148{bottom:509.713280pt;}
.yc1{bottom:512.311680pt;}
.y45{bottom:512.471680pt;}
.y81{bottom:513.600000pt;}
.yf9{bottom:517.706240pt;}
.y1a5{bottom:517.773120pt;}
.y1be{bottom:517.776000pt;}
.y63{bottom:519.040000pt;}
.ye{bottom:521.075693pt;}
.y115{bottom:524.271360pt;}
.ye3{bottom:525.390080pt;}
.y131{bottom:527.009280pt;}
.y9d{bottom:527.360000pt;}
.y147{bottom:528.275200pt;}
.y44{bottom:529.752320pt;}
.yc0{bottom:531.035520pt;}
.yd{bottom:533.675643pt;}
.yf8{bottom:536.268160pt;}
.y1a4{bottom:536.329440pt;}
.y1bd{bottom:536.332320pt;}
.y62{bottom:536.800000pt;}
.y80{bottom:540.800000pt;}
.ye2{bottom:542.833280pt;}
.y114{bottom:542.995200pt;}
.y9c{bottom:545.280000pt;}
.y130{bottom:545.733120pt;}
.yc{bottom:546.275593pt;}
.y146{bottom:546.999040pt;}
.y43{bottom:547.032960pt;}
.y2b{bottom:550.400000pt;}
.yf7{bottom:554.992000pt;}
.y1a3{bottom:555.046560pt;}
.y1bc{bottom:555.049440pt;}
.yb8{bottom:557.760000pt;}
.y7f{bottom:558.560000pt;}
.yb{bottom:558.864431pt;}
.y113{bottom:561.719040pt;}
.y61{bottom:564.000000pt;}
.y12f{bottom:564.295040pt;}
.y42{bottom:564.474400pt;}
.y17f{bottom:565.722880pt;}
.ybf{bottom:569.440000pt;}
.ya{bottom:571.464381pt;}
.y171{bottom:572.288000pt;}
.y9b{bottom:572.327040pt;}
.yf6{bottom:573.715840pt;}
.y1a2{bottom:573.763680pt;}
.y1bb{bottom:573.766560pt;}
.y112{bottom:580.280960pt;}
.y41{bottom:581.755040pt;}
.y60{bottom:581.759867pt;}
.y12e{bottom:583.018880pt;}
.y9{bottom:584.064330pt;}
.y17e{bottom:584.284800pt;}
.yb7{bottom:584.800000pt;}
.y7e{bottom:585.759867pt;}
.y170{bottom:591.011840pt;}
.y9a{bottom:591.360000pt;}
.ye1{bottom:592.277760pt;}
.y1ba{bottom:592.322880pt;}
.y1a1{bottom:592.325627pt;}
.y111{bottom:599.004800pt;}
.y40{bottom:599.035680pt;}
.y17d{bottom:603.008640pt;}
.y7d{bottom:603.520000pt;}
.y2a{bottom:608.160000pt;}
.y5f{bottom:608.800000pt;}
.y99{bottom:609.280000pt;}
.y12d{bottom:609.735680pt;}
.ye0{bottom:611.001600pt;}
.y1a0{bottom:611.042747pt;}
.y1b9{bottom:611.052187pt;}
.yb6{bottom:612.007040pt;}
.y3f{bottom:616.477120pt;}
.y110{bottom:617.728640pt;}
.ybe{bottom:619.360000pt;}
.y17c{bottom:621.732480pt;}
.y5e{bottom:626.720000pt;}
.y12c{bottom:628.297600pt;}
.ydf{bottom:629.725440pt;}
.y19f{bottom:629.769307pt;}
.y7c{bottom:630.560000pt;}
.yb5{bottom:631.040000pt;}
.y3e{bottom:633.757760pt;}
.y98{bottom:636.320000pt;}
.y17b{bottom:640.294400pt;}
.y8{bottom:642.786318pt;}
.y12b{bottom:647.021440pt;}
.yde{bottom:648.287360pt;}
.y19e{bottom:648.325627pt;}
.y7b{bottom:648.480000pt;}
.yb4{bottom:648.800000pt;}
.y5d{bottom:650.880000pt;}
.y3d{bottom:651.038400pt;}
.y97{bottom:654.085760pt;}
.y10f{bottom:656.133120pt;}
.ybd{bottom:658.713600pt;}
.y7{bottom:660.108471pt;}
.ydd{bottom:667.011200pt;}
.y19d{bottom:667.042747pt;}
.y3c{bottom:668.479840pt;}
.y96{bottom:672.000000pt;}
.y7a{bottom:672.640000pt;}
.yb3{bottom:673.120000pt;}
.y10e{bottom:673.576320pt;}
.ybc{bottom:676.156800pt;}
.y6{bottom:677.430624pt;}
.y29{bottom:680.160000pt;}
.ydc{bottom:685.735040pt;}
.y3b{bottom:685.760480pt;}
.y19c{bottom:685.769307pt;}
.ybb{bottom:693.600000pt;}
.y5{bottom:696.119438pt;}
.y5c{bottom:696.487040pt;}
.y95{bottom:699.044987pt;}
.y3a{bottom:703.041120pt;}
.ydb{bottom:704.296960pt;}
.y19b{bottom:704.325627pt;}
.y1d1{bottom:706.720000pt;}
.y5b{bottom:715.520000pt;}
.y4{bottom:718.163794pt;}
.y94{bottom:718.239867pt;}
.y79{bottom:718.247040pt;}
.yb2{bottom:718.560000pt;}
.y39{bottom:720.482560pt;}
.yda{bottom:723.020800pt;}
.y19a{bottom:723.042747pt;}
.y5a{bottom:733.440000pt;}
.y93{bottom:736.000000pt;}
.y28{bottom:736.320000pt;}
.yb1{bottom:736.480000pt;}
.y78{bottom:737.280000pt;}
.y38{bottom:737.763200pt;}
.y3{bottom:740.208150pt;}
.yd9{bottom:741.744640pt;}
.y1d0{bottom:741.763680pt;}
.y199{bottom:741.769307pt;}
.yba{bottom:744.648000pt;}
.y27{bottom:755.040000pt;}
.y37{bottom:755.043840pt;}
.yd8{bottom:760.306560pt;}
.y198{bottom:760.325627pt;}
.y2{bottom:762.263618pt;}
.y92{bottom:763.044987pt;}
.yb0{bottom:763.520000pt;}
.y59{bottom:771.200000pt;}
.yb9{bottom:771.360000pt;}
.y36{bottom:772.485280pt;}
.yd7{bottom:779.030400pt;}
.y197{bottom:779.042747pt;}
.yaf{bottom:781.428480pt;}
.y77{bottom:782.239867pt;}
.y24{bottom:784.872133pt;}
.yae{bottom:797.752960pt;}
.yd6{bottom:797.754240pt;}
.y196{bottom:797.759867pt;}
.y76{bottom:800.005120pt;}
.y35{bottom:801.440000pt;}
.y23{bottom:818.194800pt;}
.y34{bottom:842.400000pt;}
.y74{bottom:844.960000pt;}
.y25{bottom:850.400000pt;}
.h7{height:26.346561pt;}
.h9{height:28.435442pt;}
.h14{height:31.918125pt;}
.h8{height:32.782091pt;}
.h2d{height:33.060312pt;}
.h5{height:36.226522pt;}
.h2b{height:36.368437pt;}
.hc{height:36.559854pt;}
.h33{height:36.879167pt;}
.h31{height:36.893887pt;}
.h30{height:36.902207pt;}
.h34{height:36.905407pt;}
.h2e{height:36.916927pt;}
.h32{height:36.928447pt;}
.h2f{height:36.932181pt;}
.h2c{height:36.954687pt;}
.h1c{height:38.880937pt;}
.h6{height:40.622060pt;}
.ha{height:40.977614pt;}
.h1a{height:42.867188pt;}
.h15{height:45.396250pt;}
.hb{height:45.496707pt;}
.h23{height:45.908807pt;}
.h1f{height:45.909340pt;}
.h26{height:45.914460pt;}
.h22{height:45.916487pt;}
.h21{height:45.917020pt;}
.h25{height:45.917553pt;}
.h1e{height:45.937500pt;}
.h24{height:45.965660pt;}
.h27{height:45.983580pt;}
.h19{height:47.439687pt;}
.h29{height:49.105000pt;}
.h2a{height:49.938750pt;}
.h1b{height:50.743750pt;}
.h28{height:52.583750pt;}
.h3{height:56.870884pt;}
.h4{height:57.368659pt;}
.h16{height:67.896562pt;}
.h20{height:72.194062pt;}
.h11{height:82.250667pt;}
.h1d{height:82.508383pt;}
.h18{height:85.734375pt;}
.h17{height:95.450937pt;}
.h10{height:97.205333pt;}
.h35{height:104.595937pt;}
.hf{height:150.592000pt;}
.h12{height:907.200000pt;}
.h13{height:907.333333pt;}
.hd{height:929.764000pt;}
.he{height:930.000000pt;}
.h2{height:935.429592pt;}
.h0{height:935.986667pt;}
.h1{height:936.000000pt;}
.w3{width:642.560000pt;}
.w4{width:642.666667pt;}
.w1{width:661.333333pt;}
.w0{width:661.413333pt;}
.w2{width:661.417333pt;}
.x0{left:0.000000pt;}
.x3{left:34.644306pt;}
.x1{left:40.944281pt;}
.x7{left:57.011867pt;}
.x5{left:60.805467pt;}
.xa{left:94.560000pt;}
.x2{left:110.232892pt;}
.x8{left:113.440000pt;}
.x29{left:116.154240pt;}
.x1b{left:117.287680pt;}
.x10{left:127.984000pt;}
.x18{left:132.655360pt;}
.x16{left:136.164480pt;}
.xb{left:141.767040pt;}
.x20{left:143.680640pt;}
.x1f{left:145.903360pt;}
.x11{left:146.880000pt;}
.x2c{left:148.023040pt;}
.x17{left:150.422400pt;}
.x12{left:151.678720pt;}
.x27{left:158.886400pt;}
.x23{left:165.922560pt;}
.x1c{left:169.892480pt;}
.x21{left:171.379200pt;}
.xf{left:177.280000pt;}
.x1e{left:178.552320pt;}
.xc{left:190.718400pt;}
.x6{left:199.584800pt;}
.x25{left:202.560640pt;}
.x26{left:207.045760pt;}
.x19{left:212.000000pt;}
.x1d{left:214.557440pt;}
.xd{left:219.520000pt;}
.x14{left:225.760000pt;}
.x22{left:231.397120pt;}
.x24{left:241.450880pt;}
.x2a{left:250.234240pt;}
.x13{left:253.276160pt;}
.x28{left:272.284800pt;}
.x2b{left:274.242560pt;}
.x2d{left:277.912320pt;}
.x15{left:292.800000pt;}
.x4{left:324.409813pt;}
.x9{left:446.555520pt;}
.x1a{left:526.720000pt;}
.xe{left:548.003840pt;}
}




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