
    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_df1a032f96e4ab73bcd4c091.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2f2f48048c2eb4a640abb287.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6654b83c4badb3c42991de84.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_800f40d360ddee77781d920a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_775e449fb9cb9a0663cc3aa1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.908203;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_59c6879b27ddbecd56be107c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f552da366780556207577417.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_24f73cfaf21b25d72614fa1c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.861328;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_f79af29350930e3169ad974d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.746094;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_0b2fa7f5dc54f067516d2a34.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4{vertical-align:-83.520000px;}
.v5{vertical-align:-82.080000px;}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.v3{vertical-align:30.240000px;}
.ls2f{letter-spacing:-8.796000px;}
.ls4d{letter-spacing:-7.704000px;}
.ls39{letter-spacing:-6.912000px;}
.ls1c{letter-spacing:-6.696000px;}
.ls4b{letter-spacing:-4.769280px;}
.ls60{letter-spacing:-3.672000px;}
.ls1d{letter-spacing:-2.880000px;}
.ls1a{letter-spacing:-2.736000px;}
.ls2e{letter-spacing:-2.724000px;}
.ls53{letter-spacing:-2.583360px;}
.ls69{letter-spacing:-2.376000px;}
.ls24{letter-spacing:-2.358720px;}
.ls83{letter-spacing:-2.352960px;}
.ls16{letter-spacing:-2.252160px;}
.ls1f{letter-spacing:-2.088000px;}
.ls82{letter-spacing:-2.079360px;}
.ls4c{letter-spacing:-2.053440px;}
.ls23{letter-spacing:-1.935360px;}
.ls78{letter-spacing:-1.920960px;}
.ls28{letter-spacing:-1.836000px;}
.ls66{letter-spacing:-1.785600px;}
.lsab{letter-spacing:-1.751040px;}
.ls3a{letter-spacing:-1.728000px;}
.ls6f{letter-spacing:-1.722240px;}
.ls56{letter-spacing:-1.663200px;}
.ls5a{letter-spacing:-1.584000px;}
.ls13{letter-spacing:-1.457280px;}
.ls25{letter-spacing:-1.451520px;}
.ls19{letter-spacing:-1.440000px;}
.ls27{letter-spacing:-1.391040px;}
.ls73{letter-spacing:-1.368000px;}
.ls17{letter-spacing:-1.296000px;}
.ls65{letter-spacing:-1.267200px;}
.ls51{letter-spacing:-1.152000px;}
.lsac{letter-spacing:-1.149120px;}
.ls15{letter-spacing:-1.126080px;}
.ls55{letter-spacing:-0.993600px;}
.ls71{letter-spacing:-0.984960px;}
.ls20{letter-spacing:-0.967680px;}
.ls40{letter-spacing:-0.936000px;}
.lsb6{letter-spacing:-0.930240px;}
.ls26{letter-spacing:-0.907200px;}
.ls52{letter-spacing:-0.861120px;}
.ls6e{letter-spacing:-0.728640px;}
.ls42{letter-spacing:-0.725760px;}
.ls1e{letter-spacing:-0.720000px;}
.ls81{letter-spacing:-0.656640px;}
.ls1b{letter-spacing:-0.648000px;}
.ls64{letter-spacing:-0.633600px;}
.ls36{letter-spacing:-0.596160px;}
.ls5b{letter-spacing:-0.522720px;}
.ls46{letter-spacing:-0.504000px;}
.ls84{letter-spacing:-0.492480px;}
.ls22{letter-spacing:-0.483840px;}
.ls14{letter-spacing:-0.463680px;}
.ls5d{letter-spacing:-0.423360px;}
.ls2a{letter-spacing:-0.420000px;}
.ls70{letter-spacing:-0.383040px;}
.ls67{letter-spacing:-0.345600px;}
.ls68{letter-spacing:-0.331200px;}
.lsa8{letter-spacing:-0.328320px;}
.ls18{letter-spacing:-0.288000px;}
.ls29{letter-spacing:-0.168000px;}
.lsad{letter-spacing:-0.164160px;}
.ls38{letter-spacing:-0.144000px;}
.ls85{letter-spacing:-0.132480px;}
.ls10{letter-spacing:0.000000px;}
.ls4f{letter-spacing:0.020160px;}
.ls72{letter-spacing:0.054720px;}
.lsa7{letter-spacing:0.066240px;}
.ls37{letter-spacing:0.132480px;}
.lsb{letter-spacing:0.144000px;}
.ls80{letter-spacing:0.152640px;}
.ls62{letter-spacing:0.172800px;}
.ls58{letter-spacing:0.250560px;}
.lsa{letter-spacing:0.288000px;}
.ls88{letter-spacing:0.305280px;}
.ls95{letter-spacing:0.328320px;}
.ls11{letter-spacing:0.331200px;}
.ls79{letter-spacing:0.457920px;}
.ls7f{letter-spacing:0.463680px;}
.ls45{letter-spacing:0.482400px;}
.ls21{letter-spacing:0.483840px;}
.ls4e{letter-spacing:0.495936px;}
.ls48{letter-spacing:0.496800px;}
.ls3{letter-spacing:0.504000px;}
.ls32{letter-spacing:0.511200px;}
.ls3b{letter-spacing:0.518400px;}
.lsa1{letter-spacing:0.521280px;}
.ls7b{letter-spacing:0.524160px;}
.ls86{letter-spacing:0.527040px;}
.ls41{letter-spacing:0.544320px;}
.ls4a{letter-spacing:0.556416px;}
.lsa6{letter-spacing:0.564480px;}
.lsa2{letter-spacing:0.573120px;}
.ls9f{letter-spacing:0.578880px;}
.lsaf{letter-spacing:0.596160px;}
.ls8b{letter-spacing:0.601920px;}
.lsa3{letter-spacing:0.604800px;}
.ls87{letter-spacing:0.610560px;}
.ls30{letter-spacing:0.648000px;}
.lsa0{letter-spacing:0.653760px;}
.ls63{letter-spacing:0.691200px;}
.ls31{letter-spacing:0.705600px;}
.lsae{letter-spacing:0.708480px;}
.ls33{letter-spacing:0.712800px;}
.ls7{letter-spacing:0.713664px;}
.ls8{letter-spacing:0.719712px;}
.ls2{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.725760px;}
.ls6c{letter-spacing:0.727200px;}
.ls0{letter-spacing:0.728640px;}
.ls76{letter-spacing:0.731808px;}
.ls5e{letter-spacing:0.734400px;}
.ls61{letter-spacing:0.738720px;}
.ls50{letter-spacing:0.743904px;}
.lsb3{letter-spacing:0.771840px;}
.ls3f{letter-spacing:0.792000px;}
.ls98{letter-spacing:0.808128px;}
.lsa9{letter-spacing:0.820800px;}
.ls12{letter-spacing:0.861120px;}
.lsa5{letter-spacing:0.864000px;}
.ls54{letter-spacing:0.993600px;}
.ls8e{letter-spacing:1.046592px;}
.lsf{letter-spacing:1.080000px;}
.ls9d{letter-spacing:1.105920px;}
.lse{letter-spacing:1.110000px;}
.lsa4{letter-spacing:1.126080px;}
.ls9c{letter-spacing:1.134720px;}
.ls57{letter-spacing:1.144800px;}
.lsd{letter-spacing:1.152000px;}
.lsaa{letter-spacing:1.258560px;}
.ls89{letter-spacing:1.287360px;}
.ls75{letter-spacing:1.296000px;}
.lsb1{letter-spacing:1.301760px;}
.ls35{letter-spacing:1.440000px;}
.ls5c{letter-spacing:1.451520px;}
.ls77{letter-spacing:1.457280px;}
.lsc{letter-spacing:1.584000px;}
.ls2b{letter-spacing:1.716000px;}
.ls92{letter-spacing:1.745280px;}
.ls91{letter-spacing:1.897920px;}
.ls6d{letter-spacing:1.936800px;}
.ls5{letter-spacing:1.944000px;}
.ls34{letter-spacing:2.145600px;}
.ls49{letter-spacing:2.152800px;}
.ls4{letter-spacing:2.160000px;}
.ls1{letter-spacing:2.185920px;}
.ls2c{letter-spacing:2.880000px;}
.ls47{letter-spacing:2.887200px;}
.ls2d{letter-spacing:3.036000px;}
.ls7a{letter-spacing:3.576960px;}
.ls7c{letter-spacing:3.600000px;}
.ls7d{letter-spacing:5.034240px;}
.ls3e{letter-spacing:5.040000px;}
.ls9{letter-spacing:5.710320px;}
.ls8f{letter-spacing:6.480000px;}
.ls93{letter-spacing:6.491520px;}
.lsb2{letter-spacing:6.617376px;}
.ls90{letter-spacing:7.920000px;}
.ls7e{letter-spacing:7.948800px;}
.lsb0{letter-spacing:9.339840px;}
.ls94{letter-spacing:12.240000px;}
.ls96{letter-spacing:13.711680px;}
.ls8a{letter-spacing:15.102720px;}
.ls97{letter-spacing:16.560000px;}
.ls8c{letter-spacing:18.000000px;}
.ls9e{letter-spacing:18.017280px;}
.ls8d{letter-spacing:19.408320px;}
.ls99{letter-spacing:38.160000px;}
.ls9a{letter-spacing:41.068800px;}
.ls3c{letter-spacing:64.080000px;}
.ls6b{letter-spacing:66.960000px;}
.ls6a{letter-spacing:71.280000px;}
.ls44{letter-spacing:72.720000px;}
.ls43{letter-spacing:95.184000px;}
.ls3d{letter-spacing:100.944000px;}
.ls9b{letter-spacing:115.920000px;}
.lsb5{letter-spacing:172.080000px;}
.lsb4{letter-spacing:172.094400px;}
.ls5f{letter-spacing:203.878080px;}
.ls74{letter-spacing:238.331520px;}
.ls59{letter-spacing:312.500160px;}
.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;}
}
.wsbb{word-spacing:-72.000000px;}
.ws15{word-spacing:-20.712000px;}
.ws16{word-spacing:-20.460000px;}
.ws9{word-spacing:-19.584000px;}
.ws71{word-spacing:-19.440000px;}
.wsa{word-spacing:-19.152000px;}
.wsf{word-spacing:-18.720000px;}
.ws19{word-spacing:-18.504000px;}
.ws88{word-spacing:-18.288000px;}
.ws18{word-spacing:-18.144000px;}
.wsbe{word-spacing:-18.017280px;}
.wsb{word-spacing:-18.000000px;}
.ws74{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.712000px;}
.ws91{word-spacing:-17.553600px;}
.ws2{word-spacing:-17.421120px;}
.wsd{word-spacing:-17.352000px;}
.ws8c{word-spacing:-17.064000px;}
.wsc5{word-spacing:-17.023680px;}
.ws1{word-spacing:-16.891200px;}
.wsaf{word-spacing:-16.848000px;}
.ws7{word-spacing:-16.704000px;}
.ws73{word-spacing:-16.692480px;}
.ws5{word-spacing:-16.560000px;}
.wsc7{word-spacing:-16.427520px;}
.wsb2{word-spacing:-16.416000px;}
.wsad{word-spacing:-16.228800px;}
.ws3{word-spacing:-16.096320px;}
.ws72{word-spacing:-15.963840px;}
.wsbf{word-spacing:-15.831360px;}
.ws90{word-spacing:-15.698880px;}
.ws93{word-spacing:-15.664320px;}
.wsae{word-spacing:-15.624000px;}
.ws10{word-spacing:-15.603840px;}
.ws92{word-spacing:-15.566400px;}
.ws4{word-spacing:-15.433920px;}
.wse{word-spacing:-15.264000px;}
.wsc{word-spacing:-15.120000px;}
.ws8a{word-spacing:-15.102720px;}
.wsd1{word-spacing:-14.938560px;}
.wsb3{word-spacing:-14.837760px;}
.ws14{word-spacing:-14.664000px;}
.wsd6{word-spacing:-14.639040px;}
.ws11{word-spacing:-14.636160px;}
.wsf5{word-spacing:-14.506560px;}
.wsd0{word-spacing:-14.500800px;}
.wsa8{word-spacing:-14.400000px;}
.wsa4{word-spacing:-14.328000px;}
.ws6{word-spacing:-14.307840px;}
.ws7e{word-spacing:-14.212800px;}
.ws80{word-spacing:-14.152320px;}
.wsac{word-spacing:-14.054400px;}
.wsd3{word-spacing:-14.008320px;}
.wsa9{word-spacing:-13.766400px;}
.ws7d{word-spacing:-13.728960px;}
.ws17{word-spacing:-13.680000px;}
.ws7f{word-spacing:-13.668480px;}
.wsd5{word-spacing:-13.515840px;}
.wscf{word-spacing:-13.351680px;}
.ws12{word-spacing:-13.184640px;}
.wsaa{word-spacing:-13.132800px;}
.wsc3{word-spacing:-13.023360px;}
.ws13{word-spacing:-12.761280px;}
.wsf4{word-spacing:-12.749760px;}
.wsab{word-spacing:-12.614400px;}
.wsa5{word-spacing:-12.592800px;}
.wsd4{word-spacing:-12.530880px;}
.wsd2{word-spacing:-11.928960px;}
.ws94{word-spacing:-11.880000px;}
.wsc4{word-spacing:-11.600640px;}
.ws9e{word-spacing:-11.357280px;}
.wsc6{word-spacing:-11.327040px;}
.ws75{word-spacing:-11.088000px;}
.wsb5{word-spacing:-10.998720px;}
.wsa6{word-spacing:-10.458720px;}
.ws8b{word-spacing:-10.296000px;}
.ws95{word-spacing:-10.216800px;}
.ws7c{word-spacing:-3.312000px;}
.ws58{word-spacing:-3.024000px;}
.wsa1{word-spacing:-2.664000px;}
.ws7b{word-spacing:-2.304000px;}
.wsb0{word-spacing:-2.160000px;}
.ws59{word-spacing:-1.872000px;}
.ws55{word-spacing:-1.590000px;}
.ws2f{word-spacing:-1.584000px;}
.wsa2{word-spacing:-1.451520px;}
.ws54{word-spacing:-1.440000px;}
.ws3c{word-spacing:-1.209600px;}
.ws76{word-spacing:-1.152000px;}
.wse0{word-spacing:-1.059840px;}
.ws50{word-spacing:-1.008000px;}
.ws63{word-spacing:-1.002000px;}
.ws69{word-spacing:-0.936000px;}
.ws2d{word-spacing:-0.864000px;}
.ws1d{word-spacing:-0.861120px;}
.ws1f{word-spacing:-0.728640px;}
.ws4e{word-spacing:-0.726000px;}
.ws3b{word-spacing:-0.725760px;}
.ws2c{word-spacing:-0.720000px;}
.ws4f{word-spacing:-0.624000px;}
.ws6f{word-spacing:-0.504000px;}
.ws38{word-spacing:-0.483840px;}
.wsb8{word-spacing:-0.437760px;}
.ws31{word-spacing:-0.432000px;}
.ws99{word-spacing:-0.331200px;}
.ws4d{word-spacing:-0.288000px;}
.ws52{word-spacing:-0.270000px;}
.ws53{word-spacing:-0.156000px;}
.ws30{word-spacing:-0.144000px;}
.wsbd{word-spacing:-0.132480px;}
.ws3f{word-spacing:-0.090000px;}
.ws83{word-spacing:-0.072000px;}
.wsd7{word-spacing:-0.066240px;}
.ws41{word-spacing:-0.066000px;}
.ws43{word-spacing:-0.060000px;}
.ws40{word-spacing:-0.030000px;}
.ws42{word-spacing:-0.018000px;}
.ws1a{word-spacing:0.000000px;}
.ws86{word-spacing:0.181440px;}
.ws85{word-spacing:0.216000px;}
.ws35{word-spacing:0.241920px;}
.ws26{word-spacing:0.288000px;}
.wsf9{word-spacing:0.331200px;}
.wsb7{word-spacing:0.383040px;}
.ws1b{word-spacing:0.397440px;}
.ws56{word-spacing:0.414000px;}
.wsa3{word-spacing:0.423360px;}
.ws81{word-spacing:0.432000px;}
.ws9d{word-spacing:0.463680px;}
.ws36{word-spacing:0.483840px;}
.wscd{word-spacing:0.492480px;}
.ws89{word-spacing:0.504000px;}
.ws51{word-spacing:0.576000px;}
.ws9b{word-spacing:0.596160px;}
.ws4a{word-spacing:0.624000px;}
.ws2a{word-spacing:0.648000px;}
.wsce{word-spacing:0.656640px;}
.ws27{word-spacing:0.720000px;}
.ws37{word-spacing:0.725760px;}
.ws79{word-spacing:0.728640px;}
.ws5f{word-spacing:0.828000px;}
.ws4b{word-spacing:0.918000px;}
.ws84{word-spacing:0.936000px;}
.ws39{word-spacing:0.967680px;}
.wsb9{word-spacing:0.984960px;}
.ws48{word-spacing:1.002000px;}
.ws25{word-spacing:1.008000px;}
.ws1e{word-spacing:1.126080px;}
.ws96{word-spacing:1.152000px;}
.wsc1{word-spacing:1.192320px;}
.ws8f{word-spacing:1.209600px;}
.ws21{word-spacing:1.296000px;}
.ws9c{word-spacing:1.324800px;}
.ws70{word-spacing:1.368000px;}
.ws3e{word-spacing:1.391040px;}
.ws23{word-spacing:1.440000px;}
.ws87{word-spacing:1.451520px;}
.ws78{word-spacing:1.457280px;}
.ws5e{word-spacing:1.512000px;}
.wsa0{word-spacing:1.584000px;}
.wsba{word-spacing:1.586880px;}
.ws3d{word-spacing:1.632960px;}
.ws34{word-spacing:1.693440px;}
.wsb6{word-spacing:1.722240px;}
.ws44{word-spacing:1.728000px;}
.wse7{word-spacing:1.751040px;}
.ws45{word-spacing:1.836000px;}
.ws6e{word-spacing:1.848000px;}
.ws77{word-spacing:1.854720px;}
.ws61{word-spacing:1.872000px;}
.wsc2{word-spacing:1.920960px;}
.ws20{word-spacing:2.016000px;}
.wsc0{word-spacing:2.053440px;}
.wse2{word-spacing:2.079360px;}
.ws32{word-spacing:2.088000px;}
.ws5d{word-spacing:2.112000px;}
.ws29{word-spacing:2.160000px;}
.ws49{word-spacing:2.172000px;}
.ws3a{word-spacing:2.177280px;}
.ws1c{word-spacing:2.185920px;}
.wsdc{word-spacing:2.352960px;}
.ws33{word-spacing:2.448000px;}
.ws98{word-spacing:2.583360px;}
.wsbc{word-spacing:2.661120px;}
.wsf6{word-spacing:2.715840px;}
.ws24{word-spacing:2.736000px;}
.ws8e{word-spacing:2.782080px;}
.ws7a{word-spacing:2.808000px;}
.ws57{word-spacing:2.844000px;}
.ws2e{word-spacing:2.880000px;}
.ws62{word-spacing:3.018000px;}
.ws4c{word-spacing:3.024000px;}
.ws6d{word-spacing:3.030000px;}
.ws9a{word-spacing:3.047040px;}
.ws5b{word-spacing:3.174000px;}
.ws6b{word-spacing:3.222000px;}
.wsda{word-spacing:3.245760px;}
.ws5c{word-spacing:3.312000px;}
.wsf0{word-spacing:3.444480px;}
.ws22{word-spacing:3.456000px;}
.wsc8{word-spacing:3.576960px;}
.ws28{word-spacing:3.600000px;}
.ws97{word-spacing:3.643200px;}
.ws46{word-spacing:4.026000px;}
.ws47{word-spacing:4.056000px;}
.wse6{word-spacing:4.173120px;}
.ws68{word-spacing:4.230000px;}
.wsb1{word-spacing:4.239360px;}
.ws66{word-spacing:4.320000px;}
.ws5a{word-spacing:4.326000px;}
.ws60{word-spacing:4.464000px;}
.wsef{word-spacing:4.703040px;}
.ws6a{word-spacing:4.752000px;}
.ws67{word-spacing:4.758000px;}
.ws8d{word-spacing:4.769280px;}
.ws82{word-spacing:4.896000px;}
.wsca{word-spacing:4.901760px;}
.ws64{word-spacing:5.016000px;}
.wsc9{word-spacing:5.034240px;}
.ws65{word-spacing:5.040000px;}
.ws6c{word-spacing:5.184000px;}
.wse3{word-spacing:6.160320px;}
.wsdf{word-spacing:6.491520px;}
.ws2b{word-spacing:6.696000px;}
.wsdb{word-spacing:7.087680px;}
.wse1{word-spacing:7.617600px;}
.wseb{word-spacing:7.816320px;}
.wscc{word-spacing:7.948800px;}
.wsf2{word-spacing:9.339840px;}
.wscb{word-spacing:9.406080px;}
.wsf1{word-spacing:10.465920px;}
.wsf3{word-spacing:10.797120px;}
.wse5{word-spacing:13.711680px;}
.wse4{word-spacing:14.837760px;}
.wsde{word-spacing:15.102720px;}
.wsdd{word-spacing:16.228800px;}
.wsd8{word-spacing:16.560000px;}
.wsea{word-spacing:17.023680px;}
.wse8{word-spacing:18.017280px;}
.wse9{word-spacing:19.143360px;}
.wsd9{word-spacing:19.474560px;}
.wsec{word-spacing:41.068800px;}
.wsb4{word-spacing:80.982936px;}
.wsed{word-spacing:117.377280px;}
.wsee{word-spacing:119.099520px;}
.wsa7{word-spacing:145.998720px;}
.ws0{word-spacing:161.559360px;}
.wsf8{word-spacing:173.548800px;}
.wsf7{word-spacing:174.173760px;}
.ws9f{word-spacing:239.379840px;}
._7{margin-left:-8.362368px;}
._c{margin-left:-6.972768px;}
._a{margin-left:-5.112000px;}
._2{margin-left:-3.835296px;}
._1{margin-left:-2.437632px;}
._0{margin-left:-1.278432px;}
._3{width:1.152576px;}
._4{width:3.040416px;}
._5{width:4.404960px;}
._f{width:5.413824px;}
._6{width:6.436512px;}
._9{width:7.479936px;}
._d{width:9.144000px;}
._1b{width:10.200960px;}
._16{width:13.731552px;}
._15{width:15.765120px;}
._17{width:17.015616px;}
._18{width:18.335232px;}
._19{width:115.969824px;}
._1a{width:118.009728px;}
._14{width:127.975680px;}
._8{width:161.095680px;}
._10{width:238.331520px;}
._e{width:267.624000px;}
._11{width:380.628864px;}
._12{width:422.657280px;}
._13{width:442.134144px;}
._b{width:1427.760000px;}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs3{font-size:47.520000px;}
.fs8{font-size:54.720000px;}
.fs9{font-size:57.600000px;}
.fs5{font-size:60.480000px;}
.fs6{font-size:66.000000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.yfc{bottom:3.600000px;}
.y34{bottom:57.240000px;}
.y1{bottom:78.120000px;}
.y8c{bottom:97.907760px;}
.y27{bottom:97.914240px;}
.yb8{bottom:97.920720px;}
.y112{bottom:98.640000px;}
.y95{bottom:105.480000px;}
.y117{bottom:107.640000px;}
.y64{bottom:108.360000px;}
.y16b{bottom:109.800000px;}
.y8b{bottom:114.827040px;}
.y26{bottom:114.833520px;}
.y12f{bottom:115.586640px;}
.y191{bottom:117.720000px;}
.y1d1{bottom:118.805760px;}
.y111{bottom:119.520000px;}
.yb7{bottom:120.240000px;}
.y19b{bottom:122.402880px;}
.y94{bottom:126.360000px;}
.y63{bottom:129.240000px;}
.y16a{bottom:130.680000px;}
.ycb{bottom:132.102720px;}
.y8a{bottom:132.109200px;}
.y25{bottom:132.115680px;}
.y153{bottom:133.200000px;}
.y12e{bottom:134.663760px;}
.yb6{bottom:137.520000px;}
.y1d0{bottom:137.882880px;}
.y190{bottom:138.240000px;}
.y110{bottom:140.040000px;}
.y116{bottom:140.408640px;}
.y19a{bottom:141.487200px;}
.y93{bottom:146.880000px;}
.yca{bottom:149.384880px;}
.y89{bottom:149.391360px;}
.y24{bottom:149.397840px;}
.y62{bottom:149.760000px;}
.yb5{bottom:150.480000px;}
.y169{bottom:151.200000px;}
.y12d{bottom:153.376560px;}
.y1cf{bottom:156.967200px;}
.y152{bottom:158.760000px;}
.y18f{bottom:159.120000px;}
.y115{bottom:159.485760px;}
.y199{bottom:160.212960px;}
.y10f{bottom:160.920000px;}
.yc9{bottom:166.667040px;}
.y88{bottom:166.673520px;}
.y92{bottom:167.760000px;}
.y61{bottom:170.640000px;}
.y23{bottom:172.080000px;}
.y12c{bottom:172.453680px;}
.y1ce{bottom:175.695840px;}
.y114{bottom:178.562880px;}
.y151{bottom:179.280000px;}
.y198{bottom:179.290080px;}
.y18e{bottom:179.640000px;}
.y10e{bottom:181.440000px;}
.yc8{bottom:183.949200px;}
.y22{bottom:183.955680px;}
.yd1{bottom:185.040000px;}
.y91{bottom:188.280000px;}
.yb4{bottom:189.000000px;}
.y60{bottom:191.160000px;}
.y168{bottom:192.600000px;}
.y1cd{bottom:194.772960px;}
.y113{bottom:197.640000px;}
.y197{bottom:198.367200px;}
.y150{bottom:200.160000px;}
.y18d{bottom:200.520000px;}
.yc7{bottom:201.231360px;}
.y21{bottom:201.237840px;}
.y10d{bottom:202.320000px;}
.y90{bottom:209.160000px;}
.yb3{bottom:209.520000px;}
.y5f{bottom:212.040000px;}
.y12b{bottom:212.412960px;}
.y167{bottom:213.480000px;}
.y1cc{bottom:213.850080px;}
.y196{bottom:217.085760px;}
.yc6{bottom:218.513520px;}
.y14f{bottom:220.680000px;}
.y18c{bottom:221.040000px;}
.y10c{bottom:222.840000px;}
.y20{bottom:223.920000px;}
.yd0{bottom:225.000000px;}
.y8f{bottom:229.680000px;}
.yb2{bottom:230.400000px;}
.y12a{bottom:231.490080px;}
.y5e{bottom:232.560000px;}
.y1cb{bottom:232.927200px;}
.y166{bottom:234.000000px;}
.y1f{bottom:235.795680px;}
.y195{bottom:236.162880px;}
.y87{bottom:236.520000px;}
.y14e{bottom:241.560000px;}
.y18b{bottom:241.920000px;}
.y10b{bottom:243.720000px;}
.ycf{bottom:245.520000px;}
.y8e{bottom:250.560000px;}
.y129{bottom:250.567200px;}
.yb1{bottom:250.920000px;}
.y1ca{bottom:251.645760px;}
.y1e{bottom:253.077840px;}
.y5d{bottom:253.440000px;}
.y165{bottom:254.880000px;}
.y194{bottom:255.250080px;}
.y14d{bottom:262.080000px;}
.y18a{bottom:262.440000px;}
.y10a{bottom:264.240000px;}
.yee{bottom:266.400000px;}
.y128{bottom:269.280000px;}
.y1c9{bottom:270.722880px;}
.y86{bottom:271.080000px;}
.yb0{bottom:271.440000px;}
.y5c{bottom:273.960000px;}
.y193{bottom:274.327200px;}
.yce{bottom:275.040000px;}
.y164{bottom:275.400000px;}
.y1d{bottom:275.760000px;}
.y14c{bottom:282.960000px;}
.y189{bottom:283.320000px;}
.y109{bottom:285.120000px;}
.yed{bottom:286.920000px;}
.yc5{bottom:288.360000px;}
.y1c8{bottom:289.807200px;}
.y85{bottom:291.960000px;}
.yaf{bottom:292.320000px;}
.y192{bottom:293.040000px;}
.y5b{bottom:294.840000px;}
.ycd{bottom:295.920000px;}
.y163{bottom:296.280000px;}
.y14b{bottom:303.480000px;}
.y188{bottom:303.840000px;}
.yec{bottom:307.800000px;}
.y1c7{bottom:308.522880px;}
.y127{bottom:309.960000px;}
.y84{bottom:312.480000px;}
.yae{bottom:312.840000px;}
.y108{bottom:314.280000px;}
.y1c{bottom:315.360000px;}
.y162{bottom:316.800000px;}
.yc4{bottom:320.040000px;}
.ycc{bottom:321.480000px;}
.y187{bottom:324.720000px;}
.y1c6{bottom:327.602880px;}
.yeb{bottom:328.320000px;}
.y126{bottom:330.480000px;}
.y14a{bottom:333.000000px;}
.y83{bottom:333.360000px;}
.yad{bottom:333.720000px;}
.y107{bottom:335.520000px;}
.y1b{bottom:335.880000px;}
.y5a{bottom:336.240000px;}
.ydd{bottom:336.928440px;}
.y161{bottom:337.680000px;}
.yc3{bottom:340.560000px;}
.y186{bottom:345.240000px;}
.y1c5{bottom:346.690080px;}
.yea{bottom:349.200000px;}
.y125{bottom:351.360000px;}
.y82{bottom:353.880000px;}
.yac{bottom:354.240000px;}
.yd2{bottom:356.478600px;}
.y1a{bottom:356.760000px;}
.y160{bottom:358.200000px;}
.y149{bottom:358.920000px;}
.yc2{bottom:361.440000px;}
.y106{bottom:365.040000px;}
.y1c4{bottom:365.402880px;}
.y185{bottom:366.120000px;}
.ye9{bottom:369.720000px;}
.y124{bottom:371.880000px;}
.y159{bottom:372.054360px;}
.y81{bottom:374.760000px;}
.yab{bottom:375.120000px;}
.y19{bottom:377.280000px;}
.y59{bottom:377.640000px;}
.y15f{bottom:379.080000px;}
.yc1{bottom:381.960000px;}
.y1c3{bottom:384.485760px;}
.y184{bottom:386.640000px;}
.yd3{bottom:388.895880px;}
.y154{bottom:389.605800px;}
.ye8{bottom:390.600000px;}
.y105{bottom:392.400000px;}
.y123{bottom:392.760000px;}
.y80{bottom:395.280000px;}
.yaa{bottom:395.640000px;}
.y18{bottom:397.800000px;}
.y58{bottom:398.160000px;}
.y15e{bottom:399.600000px;}
.yc0{bottom:402.840000px;}
.y1c2{bottom:403.562880px;}
.y183{bottom:407.520000px;}
.ye7{bottom:411.120000px;}
.y122{bottom:413.280000px;}
.y7f{bottom:416.160000px;}
.ya9{bottom:416.520000px;}
.y17{bottom:418.680000px;}
.y57{bottom:419.040000px;}
.y104{bottom:419.400000px;}
.yd4{bottom:421.313160px;}
.y1c1{bottom:422.650080px;}
.y182{bottom:428.040000px;}
.ye6{bottom:432.000000px;}
.y121{bottom:434.160000px;}
.ybf{bottom:435.625920px;}
.y7e{bottom:436.680000px;}
.ya8{bottom:437.040000px;}
.y16{bottom:439.200000px;}
.y56{bottom:439.560000px;}
.y15d{bottom:440.640000px;}
.y1c0{bottom:441.362880px;}
.y103{bottom:446.760000px;}
.y181{bottom:448.920000px;}
.ye5{bottom:452.520000px;}
.yd5{bottom:453.730440px;}
.y120{bottom:454.680000px;}
.ybe{bottom:454.703040px;}
.y7d{bottom:457.560000px;}
.ya7{bottom:457.920000px;}
.y155{bottom:459.223320px;}
.y15c{bottom:459.720000px;}
.y15{bottom:460.080000px;}
.y55{bottom:460.440000px;}
.y1bf{bottom:460.450080px;}
.y180{bottom:469.440000px;}
.ye4{bottom:473.400000px;}
.ybd{bottom:473.415840px;}
.y102{bottom:473.760000px;}
.y11f{bottom:475.560000px;}
.y7c{bottom:478.080000px;}
.ya6{bottom:478.440000px;}
.y1be{bottom:479.527200px;}
.y14{bottom:480.600000px;}
.y54{bottom:480.960000px;}
.yd6{bottom:486.147720px;}
.ybc{bottom:492.492960px;}
.ye3{bottom:493.920000px;}
.y11e{bottom:496.080000px;}
.y1bd{bottom:498.240000px;}
.y7b{bottom:498.960000px;}
.ya5{bottom:499.320000px;}
.y15b{bottom:499.680000px;}
.y101{bottom:501.120000px;}
.y13{bottom:501.480000px;}
.y53{bottom:501.840000px;}
.y17f{bottom:510.480000px;}
.ybb{bottom:511.570080px;}
.ye2{bottom:514.800000px;}
.y11d{bottom:516.960000px;}
.y1bc{bottom:517.322880px;}
.yd7{bottom:518.565000px;}
.y7a{bottom:519.480000px;}
.ya4{bottom:519.840000px;}
.y12{bottom:522.000000px;}
.y52{bottom:522.360000px;}
.y100{bottom:528.480000px;}
.y156{bottom:528.840840px;}
.y17e{bottom:529.560000px;}
.yba{bottom:530.647200px;}
.ye1{bottom:535.320000px;}
.y1bb{bottom:536.410080px;}
.y11c{bottom:537.480000px;}
.y79{bottom:540.360000px;}
.ya3{bottom:540.720000px;}
.y11{bottom:542.880000px;}
.y51{bottom:543.240000px;}
.yb9{bottom:549.360000px;}
.yd8{bottom:550.982280px;}
.yff{bottom:555.480000px;}
.y1ba{bottom:555.487200px;}
.y11b{bottom:558.360000px;}
.y78{bottom:560.880000px;}
.ya2{bottom:561.240000px;}
.y10{bottom:563.400000px;}
.y50{bottom:563.760000px;}
.ye0{bottom:564.840000px;}
.y17d{bottom:570.240000px;}
.y1b9{bottom:574.212960px;}
.y11a{bottom:578.880000px;}
.y77{bottom:581.760000px;}
.ya1{bottom:582.120000px;}
.yfe{bottom:582.840000px;}
.yd9{bottom:583.399560px;}
.yf{bottom:584.280000px;}
.y4f{bottom:584.640000px;}
.ydf{bottom:585.720000px;}
.y17c{bottom:590.760000px;}
.y1b8{bottom:593.290080px;}
.y157{bottom:598.458360px;}
.y76{bottom:602.280000px;}
.ya0{bottom:602.640000px;}
.ye{bottom:604.800000px;}
.y4e{bottom:605.160000px;}
.y119{bottom:608.400000px;}
.yfd{bottom:610.200000px;}
.yde{bottom:611.280000px;}
.y17b{bottom:611.640000px;}
.y1b7{bottom:612.367200px;}
.yda{bottom:615.816840px;}
.y75{bottom:623.160000px;}
.y9f{bottom:623.520000px;}
.yd{bottom:625.680000px;}
.y4d{bottom:626.040000px;}
.yfa{bottom:626.703990px;}
.y1b6{bottom:631.085760px;}
.y17a{bottom:632.160000px;}
.y118{bottom:634.320000px;}
.yfb{bottom:637.200000px;}
.y74{bottom:643.680000px;}
.y9e{bottom:644.040000px;}
.yc{bottom:646.200000px;}
.yef{bottom:646.254150px;}
.y4c{bottom:646.560000px;}
.y135{bottom:647.513160px;}
.ydb{bottom:648.234120px;}
.y1b5{bottom:650.162880px;}
.y179{bottom:653.040000px;}
.y73{bottom:664.560000px;}
.y9d{bottom:664.920000px;}
.y130{bottom:665.064600px;}
.yb{bottom:667.080000px;}
.y4b{bottom:667.440000px;}
.y158{bottom:668.075880px;}
.y1b4{bottom:669.247200px;}
.y178{bottom:673.560000px;}
.yf0{bottom:678.671430px;}
.ydc{bottom:680.651400px;}
.y72{bottom:685.080000px;}
.y9c{bottom:685.440000px;}
.ya{bottom:687.600000px;}
.y4a{bottom:687.960000px;}
.y1b3{bottom:687.965760px;}
.y177{bottom:694.440000px;}
.y71{bottom:705.960000px;}
.y9b{bottom:706.320000px;}
.y1b2{bottom:707.042880px;}
.y9{bottom:708.480000px;}
.y49{bottom:708.840000px;}
.yf1{bottom:711.088710px;}
.y15a{bottom:711.152100px;}
.y176{bottom:714.960000px;}
.y1b1{bottom:726.130080px;}
.y70{bottom:726.480000px;}
.y9a{bottom:726.840000px;}
.y8{bottom:729.000000px;}
.y48{bottom:729.360000px;}
.y131{bottom:734.682120px;}
.y175{bottom:735.840000px;}
.y148{bottom:740.880000px;}
.yf2{bottom:743.505990px;}
.y1b0{bottom:745.207200px;}
.y6f{bottom:747.360000px;}
.y99{bottom:747.720000px;}
.y7{bottom:749.880000px;}
.y47{bottom:750.240000px;}
.y174{bottom:756.360000px;}
.y147{bottom:761.760000px;}
.y1af{bottom:763.925760px;}
.y6e{bottom:767.880000px;}
.y6{bottom:770.400000px;}
.y46{bottom:770.760000px;}
.yf3{bottom:775.923270px;}
.y173{bottom:777.240000px;}
.y98{bottom:780.485760px;}
.y146{bottom:782.280000px;}
.y1ae{bottom:783.002880px;}
.y6d{bottom:788.760000px;}
.y45{bottom:791.640000px;}
.y172{bottom:797.760000px;}
.y97{bottom:799.562880px;}
.y1ad{bottom:802.087200px;}
.y145{bottom:803.160000px;}
.y132{bottom:804.299640px;}
.yf4{bottom:808.340550px;}
.y6c{bottom:809.280000px;}
.y5{bottom:811.440000px;}
.y44{bottom:812.160000px;}
.y96{bottom:818.640000px;}
.y1ac{bottom:820.805760px;}
.y144{bottom:823.680000px;}
.y6b{bottom:830.160000px;}
.y4{bottom:830.520000px;}
.y43{bottom:833.040000px;}
.y171{bottom:838.800000px;}
.y1ab{bottom:839.882880px;}
.yf5{bottom:840.757830px;}
.y143{bottom:844.560000px;}
.y6a{bottom:850.680000px;}
.y42{bottom:853.560000px;}
.y170{bottom:857.880000px;}
.y1aa{bottom:858.960000px;}
.y142{bottom:865.080000px;}
.y3{bottom:870.480000px;}
.y69{bottom:871.560000px;}
.yf6{bottom:873.175110px;}
.y133{bottom:873.917160px;}
.y41{bottom:874.440000px;}
.y1dd{bottom:877.682880px;}
.y1a9{bottom:877.685760px;}
.y141{bottom:885.960000px;}
.y2{bottom:889.560000px;}
.y68{bottom:892.080000px;}
.y40{bottom:894.960000px;}
.y1a8{bottom:896.762880px;}
.y16f{bottom:897.840000px;}
.yf7{bottom:905.592390px;}
.y140{bottom:906.480000px;}
.y33{bottom:911.227500px;}
.y67{bottom:912.960000px;}
.y1dc{bottom:915.850080px;}
.y1a7{bottom:915.852960px;}
.y16e{bottom:916.920000px;}
.y32{bottom:931.927500px;}
.y8d{bottom:933.480000px;}
.y1db{bottom:934.927200px;}
.y1a6{bottom:934.930080px;}
.y3f{bottom:936.000000px;}
.yf8{bottom:938.009670px;}
.y134{bottom:943.534680px;}
.y13f{bottom:947.540880px;}
.y31{bottom:952.627500px;}
.y1a5{bottom:953.642880px;}
.y1da{bottom:953.655840px;}
.y66{bottom:954.360000px;}
.y3e{bottom:955.080000px;}
.y16d{bottom:956.880000px;}
.yf9{bottom:970.426950px;}
.y1a4{bottom:972.730080px;}
.y1d9{bottom:972.732960px;}
.y30{bottom:973.327500px;}
.y65{bottom:974.880000px;}
.y16c{bottom:975.960000px;}
.y136{bottom:986.610900px;}
.y13e{bottom:987.500160px;}
.y1a3{bottom:991.807200px;}
.y1d8{bottom:991.810080px;}
.y2f{bottom:994.027500px;}
.y3d{bottom:995.760000px;}
.y1d7{bottom:1010.522880px;}
.y1a2{bottom:1010.535840px;}
.y2e{bottom:1014.727500px;}
.y3c{bottom:1016.280000px;}
.y13d{bottom:1027.459440px;}
.y1d6{bottom:1029.605760px;}
.y1a1{bottom:1029.612960px;}
.y2d{bottom:1035.427500px;}
.y3b{bottom:1037.160000px;}
.y13c{bottom:1046.536560px;}
.y1d5{bottom:1048.682880px;}
.y1a0{bottom:1048.690080px;}
.y3a{bottom:1057.680000px;}
.y13b{bottom:1065.613680px;}
.y19f{bottom:1067.767200px;}
.y1d4{bottom:1067.770080px;}
.y2c{bottom:1076.827500px;}
.y39{bottom:1078.560000px;}
.y13a{bottom:1084.690800px;}
.y1d3{bottom:1086.482880px;}
.y19e{bottom:1086.485760px;}
.y38{bottom:1099.080000px;}
.y19d{bottom:1105.562880px;}
.y1d2{bottom:1105.572960px;}
.y2b{bottom:1117.978500px;}
.y37{bottom:1119.960000px;}
.y139{bottom:1124.285760px;}
.y19c{bottom:1124.650080px;}
.y2a{bottom:1138.680000px;}
.y36{bottom:1140.480000px;}
.y138{bottom:1143.362880px;}
.y35{bottom:1161.360000px;}
.y137{bottom:1162.440000px;}
.y29{bottom:1210.200000px;}
.y28{bottom:1230.000000px;}
.h15{height:18.718500px;}
.h12{height:18.720000px;}
.h11{height:19.080000px;}
.h14{height:19.081500px;}
.h16{height:37.913906px;}
.h7{height:38.158594px;}
.h10{height:41.904844px;}
.h9{height:45.858398px;}
.h8{height:59.357813px;}
.hf{height:59.383733px;}
.hd{height:59.426933px;}
.h13{height:64.978594px;}
.h5{height:65.010937px;}
.h3{height:66.757500px;}
.h4{height:68.345156px;}
.he{height:70.628906px;}
.h2{height:70.664062px;}
.hb{height:72.562500px;}
.h6{height:73.998281px;}
.hc{height:75.093750px;}
.ha{height:85.387500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:56.160000px;}
.w7{width:70.558500px;}
.w3{width:71.640000px;}
.w4{width:95.400000px;}
.w2{width:186.480000px;}
.w5{width:241.920000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x15{left:3.960000px;}
.x14{left:81.000000px;}
.x5{left:82.032000px;}
.x2{left:84.960000px;}
.xd{left:94.799130px;}
.xc{left:102.404490px;}
.x4{left:106.200000px;}
.x9{left:107.640000px;}
.xb{left:110.009850px;}
.x1c{left:115.319850px;}
.x12{left:117.299130px;}
.x21{left:123.014850px;}
.x11{left:124.904490px;}
.x6{left:126.720000px;}
.xe{left:127.730490px;}
.x10{left:132.509850px;}
.x20{left:136.694850px;}
.x3{left:148.680000px;}
.x13{left:150.230490px;}
.x8{left:169.200000px;}
.x7{left:170.640000px;}
.x1d{left:178.726650px;}
.x22{left:200.101650px;}
.x16{left:267.840000px;}
.x17{left:339.840000px;}
.x1e{left:356.271450px;}
.x23{left:377.646450px;}
.x18{left:435.240000px;}
.x19{left:677.160000px;}
.xa{left:726.120000px;}
.x1a{left:733.680000px;}
.xf{left:748.800000px;}
.x1f{left:754.200000px;}
.x1b{left:789.840000px;}
.x1{left:798.840000px;}
@media print{
.v4{vertical-align:-74.240000pt;}
.v5{vertical-align:-72.960000pt;}
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.v3{vertical-align:26.880000pt;}
.ls2f{letter-spacing:-7.818667pt;}
.ls4d{letter-spacing:-6.848000pt;}
.ls39{letter-spacing:-6.144000pt;}
.ls1c{letter-spacing:-5.952000pt;}
.ls4b{letter-spacing:-4.239360pt;}
.ls60{letter-spacing:-3.264000pt;}
.ls1d{letter-spacing:-2.560000pt;}
.ls1a{letter-spacing:-2.432000pt;}
.ls2e{letter-spacing:-2.421333pt;}
.ls53{letter-spacing:-2.296320pt;}
.ls69{letter-spacing:-2.112000pt;}
.ls24{letter-spacing:-2.096640pt;}
.ls83{letter-spacing:-2.091520pt;}
.ls16{letter-spacing:-2.001920pt;}
.ls1f{letter-spacing:-1.856000pt;}
.ls82{letter-spacing:-1.848320pt;}
.ls4c{letter-spacing:-1.825280pt;}
.ls23{letter-spacing:-1.720320pt;}
.ls78{letter-spacing:-1.707520pt;}
.ls28{letter-spacing:-1.632000pt;}
.ls66{letter-spacing:-1.587200pt;}
.lsab{letter-spacing:-1.556480pt;}
.ls3a{letter-spacing:-1.536000pt;}
.ls6f{letter-spacing:-1.530880pt;}
.ls56{letter-spacing:-1.478400pt;}
.ls5a{letter-spacing:-1.408000pt;}
.ls13{letter-spacing:-1.295360pt;}
.ls25{letter-spacing:-1.290240pt;}
.ls19{letter-spacing:-1.280000pt;}
.ls27{letter-spacing:-1.236480pt;}
.ls73{letter-spacing:-1.216000pt;}
.ls17{letter-spacing:-1.152000pt;}
.ls65{letter-spacing:-1.126400pt;}
.ls51{letter-spacing:-1.024000pt;}
.lsac{letter-spacing:-1.021440pt;}
.ls15{letter-spacing:-1.000960pt;}
.ls55{letter-spacing:-0.883200pt;}
.ls71{letter-spacing:-0.875520pt;}
.ls20{letter-spacing:-0.860160pt;}
.ls40{letter-spacing:-0.832000pt;}
.lsb6{letter-spacing:-0.826880pt;}
.ls26{letter-spacing:-0.806400pt;}
.ls52{letter-spacing:-0.765440pt;}
.ls6e{letter-spacing:-0.647680pt;}
.ls42{letter-spacing:-0.645120pt;}
.ls1e{letter-spacing:-0.640000pt;}
.ls81{letter-spacing:-0.583680pt;}
.ls1b{letter-spacing:-0.576000pt;}
.ls64{letter-spacing:-0.563200pt;}
.ls36{letter-spacing:-0.529920pt;}
.ls5b{letter-spacing:-0.464640pt;}
.ls46{letter-spacing:-0.448000pt;}
.ls84{letter-spacing:-0.437760pt;}
.ls22{letter-spacing:-0.430080pt;}
.ls14{letter-spacing:-0.412160pt;}
.ls5d{letter-spacing:-0.376320pt;}
.ls2a{letter-spacing:-0.373333pt;}
.ls70{letter-spacing:-0.340480pt;}
.ls67{letter-spacing:-0.307200pt;}
.ls68{letter-spacing:-0.294400pt;}
.lsa8{letter-spacing:-0.291840pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls29{letter-spacing:-0.149333pt;}
.lsad{letter-spacing:-0.145920pt;}
.ls38{letter-spacing:-0.128000pt;}
.ls85{letter-spacing:-0.117760pt;}
.ls10{letter-spacing:0.000000pt;}
.ls4f{letter-spacing:0.017920pt;}
.ls72{letter-spacing:0.048640pt;}
.lsa7{letter-spacing:0.058880pt;}
.ls37{letter-spacing:0.117760pt;}
.lsb{letter-spacing:0.128000pt;}
.ls80{letter-spacing:0.135680pt;}
.ls62{letter-spacing:0.153600pt;}
.ls58{letter-spacing:0.222720pt;}
.lsa{letter-spacing:0.256000pt;}
.ls88{letter-spacing:0.271360pt;}
.ls95{letter-spacing:0.291840pt;}
.ls11{letter-spacing:0.294400pt;}
.ls79{letter-spacing:0.407040pt;}
.ls7f{letter-spacing:0.412160pt;}
.ls45{letter-spacing:0.428800pt;}
.ls21{letter-spacing:0.430080pt;}
.ls4e{letter-spacing:0.440832pt;}
.ls48{letter-spacing:0.441600pt;}
.ls3{letter-spacing:0.448000pt;}
.ls32{letter-spacing:0.454400pt;}
.ls3b{letter-spacing:0.460800pt;}
.lsa1{letter-spacing:0.463360pt;}
.ls7b{letter-spacing:0.465920pt;}
.ls86{letter-spacing:0.468480pt;}
.ls41{letter-spacing:0.483840pt;}
.ls4a{letter-spacing:0.494592pt;}
.lsa6{letter-spacing:0.501760pt;}
.lsa2{letter-spacing:0.509440pt;}
.ls9f{letter-spacing:0.514560pt;}
.lsaf{letter-spacing:0.529920pt;}
.ls8b{letter-spacing:0.535040pt;}
.lsa3{letter-spacing:0.537600pt;}
.ls87{letter-spacing:0.542720pt;}
.ls30{letter-spacing:0.576000pt;}
.lsa0{letter-spacing:0.581120pt;}
.ls63{letter-spacing:0.614400pt;}
.ls31{letter-spacing:0.627200pt;}
.lsae{letter-spacing:0.629760pt;}
.ls33{letter-spacing:0.633600pt;}
.ls7{letter-spacing:0.634368pt;}
.ls8{letter-spacing:0.639744pt;}
.ls2{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.645120pt;}
.ls6c{letter-spacing:0.646400pt;}
.ls0{letter-spacing:0.647680pt;}
.ls76{letter-spacing:0.650496pt;}
.ls5e{letter-spacing:0.652800pt;}
.ls61{letter-spacing:0.656640pt;}
.ls50{letter-spacing:0.661248pt;}
.lsb3{letter-spacing:0.686080pt;}
.ls3f{letter-spacing:0.704000pt;}
.ls98{letter-spacing:0.718336pt;}
.lsa9{letter-spacing:0.729600pt;}
.ls12{letter-spacing:0.765440pt;}
.lsa5{letter-spacing:0.768000pt;}
.ls54{letter-spacing:0.883200pt;}
.ls8e{letter-spacing:0.930304pt;}
.lsf{letter-spacing:0.960000pt;}
.ls9d{letter-spacing:0.983040pt;}
.lse{letter-spacing:0.986667pt;}
.lsa4{letter-spacing:1.000960pt;}
.ls9c{letter-spacing:1.008640pt;}
.ls57{letter-spacing:1.017600pt;}
.lsd{letter-spacing:1.024000pt;}
.lsaa{letter-spacing:1.118720pt;}
.ls89{letter-spacing:1.144320pt;}
.ls75{letter-spacing:1.152000pt;}
.lsb1{letter-spacing:1.157120pt;}
.ls35{letter-spacing:1.280000pt;}
.ls5c{letter-spacing:1.290240pt;}
.ls77{letter-spacing:1.295360pt;}
.lsc{letter-spacing:1.408000pt;}
.ls2b{letter-spacing:1.525333pt;}
.ls92{letter-spacing:1.551360pt;}
.ls91{letter-spacing:1.687040pt;}
.ls6d{letter-spacing:1.721600pt;}
.ls5{letter-spacing:1.728000pt;}
.ls34{letter-spacing:1.907200pt;}
.ls49{letter-spacing:1.913600pt;}
.ls4{letter-spacing:1.920000pt;}
.ls1{letter-spacing:1.943040pt;}
.ls2c{letter-spacing:2.560000pt;}
.ls47{letter-spacing:2.566400pt;}
.ls2d{letter-spacing:2.698667pt;}
.ls7a{letter-spacing:3.179520pt;}
.ls7c{letter-spacing:3.200000pt;}
.ls7d{letter-spacing:4.474880pt;}
.ls3e{letter-spacing:4.480000pt;}
.ls9{letter-spacing:5.075840pt;}
.ls8f{letter-spacing:5.760000pt;}
.ls93{letter-spacing:5.770240pt;}
.lsb2{letter-spacing:5.882112pt;}
.ls90{letter-spacing:7.040000pt;}
.ls7e{letter-spacing:7.065600pt;}
.lsb0{letter-spacing:8.302080pt;}
.ls94{letter-spacing:10.880000pt;}
.ls96{letter-spacing:12.188160pt;}
.ls8a{letter-spacing:13.424640pt;}
.ls97{letter-spacing:14.720000pt;}
.ls8c{letter-spacing:16.000000pt;}
.ls9e{letter-spacing:16.015360pt;}
.ls8d{letter-spacing:17.251840pt;}
.ls99{letter-spacing:33.920000pt;}
.ls9a{letter-spacing:36.505600pt;}
.ls3c{letter-spacing:56.960000pt;}
.ls6b{letter-spacing:59.520000pt;}
.ls6a{letter-spacing:63.360000pt;}
.ls44{letter-spacing:64.640000pt;}
.ls43{letter-spacing:84.608000pt;}
.ls3d{letter-spacing:89.728000pt;}
.ls9b{letter-spacing:103.040000pt;}
.lsb5{letter-spacing:152.960000pt;}
.lsb4{letter-spacing:152.972800pt;}
.ls5f{letter-spacing:181.224960pt;}
.ls74{letter-spacing:211.850240pt;}
.ls59{letter-spacing:277.777920pt;}
.wsbb{word-spacing:-64.000000pt;}
.ws15{word-spacing:-18.410667pt;}
.ws16{word-spacing:-18.186667pt;}
.ws9{word-spacing:-17.408000pt;}
.ws71{word-spacing:-17.280000pt;}
.wsa{word-spacing:-17.024000pt;}
.wsf{word-spacing:-16.640000pt;}
.ws19{word-spacing:-16.448000pt;}
.ws88{word-spacing:-16.256000pt;}
.ws18{word-spacing:-16.128000pt;}
.wsbe{word-spacing:-16.015360pt;}
.wsb{word-spacing:-16.000000pt;}
.ws74{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws91{word-spacing:-15.603200pt;}
.ws2{word-spacing:-15.485440pt;}
.wsd{word-spacing:-15.424000pt;}
.ws8c{word-spacing:-15.168000pt;}
.wsc5{word-spacing:-15.132160pt;}
.ws1{word-spacing:-15.014400pt;}
.wsaf{word-spacing:-14.976000pt;}
.ws7{word-spacing:-14.848000pt;}
.ws73{word-spacing:-14.837760pt;}
.ws5{word-spacing:-14.720000pt;}
.wsc7{word-spacing:-14.602240pt;}
.wsb2{word-spacing:-14.592000pt;}
.wsad{word-spacing:-14.425600pt;}
.ws3{word-spacing:-14.307840pt;}
.ws72{word-spacing:-14.190080pt;}
.wsbf{word-spacing:-14.072320pt;}
.ws90{word-spacing:-13.954560pt;}
.ws93{word-spacing:-13.923840pt;}
.wsae{word-spacing:-13.888000pt;}
.ws10{word-spacing:-13.870080pt;}
.ws92{word-spacing:-13.836800pt;}
.ws4{word-spacing:-13.719040pt;}
.wse{word-spacing:-13.568000pt;}
.wsc{word-spacing:-13.440000pt;}
.ws8a{word-spacing:-13.424640pt;}
.wsd1{word-spacing:-13.278720pt;}
.wsb3{word-spacing:-13.189120pt;}
.ws14{word-spacing:-13.034667pt;}
.wsd6{word-spacing:-13.012480pt;}
.ws11{word-spacing:-13.009920pt;}
.wsf5{word-spacing:-12.894720pt;}
.wsd0{word-spacing:-12.889600pt;}
.wsa8{word-spacing:-12.800000pt;}
.wsa4{word-spacing:-12.736000pt;}
.ws6{word-spacing:-12.718080pt;}
.ws7e{word-spacing:-12.633600pt;}
.ws80{word-spacing:-12.579840pt;}
.wsac{word-spacing:-12.492800pt;}
.wsd3{word-spacing:-12.451840pt;}
.wsa9{word-spacing:-12.236800pt;}
.ws7d{word-spacing:-12.203520pt;}
.ws17{word-spacing:-12.160000pt;}
.ws7f{word-spacing:-12.149760pt;}
.wsd5{word-spacing:-12.014080pt;}
.wscf{word-spacing:-11.868160pt;}
.ws12{word-spacing:-11.719680pt;}
.wsaa{word-spacing:-11.673600pt;}
.wsc3{word-spacing:-11.576320pt;}
.ws13{word-spacing:-11.343360pt;}
.wsf4{word-spacing:-11.333120pt;}
.wsab{word-spacing:-11.212800pt;}
.wsa5{word-spacing:-11.193600pt;}
.wsd4{word-spacing:-11.138560pt;}
.wsd2{word-spacing:-10.603520pt;}
.ws94{word-spacing:-10.560000pt;}
.wsc4{word-spacing:-10.311680pt;}
.ws9e{word-spacing:-10.095360pt;}
.wsc6{word-spacing:-10.068480pt;}
.ws75{word-spacing:-9.856000pt;}
.wsb5{word-spacing:-9.776640pt;}
.wsa6{word-spacing:-9.296640pt;}
.ws8b{word-spacing:-9.152000pt;}
.ws95{word-spacing:-9.081600pt;}
.ws7c{word-spacing:-2.944000pt;}
.ws58{word-spacing:-2.688000pt;}
.wsa1{word-spacing:-2.368000pt;}
.ws7b{word-spacing:-2.048000pt;}
.wsb0{word-spacing:-1.920000pt;}
.ws59{word-spacing:-1.664000pt;}
.ws55{word-spacing:-1.413333pt;}
.ws2f{word-spacing:-1.408000pt;}
.wsa2{word-spacing:-1.290240pt;}
.ws54{word-spacing:-1.280000pt;}
.ws3c{word-spacing:-1.075200pt;}
.ws76{word-spacing:-1.024000pt;}
.wse0{word-spacing:-0.942080pt;}
.ws50{word-spacing:-0.896000pt;}
.ws63{word-spacing:-0.890667pt;}
.ws69{word-spacing:-0.832000pt;}
.ws2d{word-spacing:-0.768000pt;}
.ws1d{word-spacing:-0.765440pt;}
.ws1f{word-spacing:-0.647680pt;}
.ws4e{word-spacing:-0.645333pt;}
.ws3b{word-spacing:-0.645120pt;}
.ws2c{word-spacing:-0.640000pt;}
.ws4f{word-spacing:-0.554667pt;}
.ws6f{word-spacing:-0.448000pt;}
.ws38{word-spacing:-0.430080pt;}
.wsb8{word-spacing:-0.389120pt;}
.ws31{word-spacing:-0.384000pt;}
.ws99{word-spacing:-0.294400pt;}
.ws4d{word-spacing:-0.256000pt;}
.ws52{word-spacing:-0.240000pt;}
.ws53{word-spacing:-0.138667pt;}
.ws30{word-spacing:-0.128000pt;}
.wsbd{word-spacing:-0.117760pt;}
.ws3f{word-spacing:-0.080000pt;}
.ws83{word-spacing:-0.064000pt;}
.wsd7{word-spacing:-0.058880pt;}
.ws41{word-spacing:-0.058667pt;}
.ws43{word-spacing:-0.053333pt;}
.ws40{word-spacing:-0.026667pt;}
.ws42{word-spacing:-0.016000pt;}
.ws1a{word-spacing:0.000000pt;}
.ws86{word-spacing:0.161280pt;}
.ws85{word-spacing:0.192000pt;}
.ws35{word-spacing:0.215040pt;}
.ws26{word-spacing:0.256000pt;}
.wsf9{word-spacing:0.294400pt;}
.wsb7{word-spacing:0.340480pt;}
.ws1b{word-spacing:0.353280pt;}
.ws56{word-spacing:0.368000pt;}
.wsa3{word-spacing:0.376320pt;}
.ws81{word-spacing:0.384000pt;}
.ws9d{word-spacing:0.412160pt;}
.ws36{word-spacing:0.430080pt;}
.wscd{word-spacing:0.437760pt;}
.ws89{word-spacing:0.448000pt;}
.ws51{word-spacing:0.512000pt;}
.ws9b{word-spacing:0.529920pt;}
.ws4a{word-spacing:0.554667pt;}
.ws2a{word-spacing:0.576000pt;}
.wsce{word-spacing:0.583680pt;}
.ws27{word-spacing:0.640000pt;}
.ws37{word-spacing:0.645120pt;}
.ws79{word-spacing:0.647680pt;}
.ws5f{word-spacing:0.736000pt;}
.ws4b{word-spacing:0.816000pt;}
.ws84{word-spacing:0.832000pt;}
.ws39{word-spacing:0.860160pt;}
.wsb9{word-spacing:0.875520pt;}
.ws48{word-spacing:0.890667pt;}
.ws25{word-spacing:0.896000pt;}
.ws1e{word-spacing:1.000960pt;}
.ws96{word-spacing:1.024000pt;}
.wsc1{word-spacing:1.059840pt;}
.ws8f{word-spacing:1.075200pt;}
.ws21{word-spacing:1.152000pt;}
.ws9c{word-spacing:1.177600pt;}
.ws70{word-spacing:1.216000pt;}
.ws3e{word-spacing:1.236480pt;}
.ws23{word-spacing:1.280000pt;}
.ws87{word-spacing:1.290240pt;}
.ws78{word-spacing:1.295360pt;}
.ws5e{word-spacing:1.344000pt;}
.wsa0{word-spacing:1.408000pt;}
.wsba{word-spacing:1.410560pt;}
.ws3d{word-spacing:1.451520pt;}
.ws34{word-spacing:1.505280pt;}
.wsb6{word-spacing:1.530880pt;}
.ws44{word-spacing:1.536000pt;}
.wse7{word-spacing:1.556480pt;}
.ws45{word-spacing:1.632000pt;}
.ws6e{word-spacing:1.642667pt;}
.ws77{word-spacing:1.648640pt;}
.ws61{word-spacing:1.664000pt;}
.wsc2{word-spacing:1.707520pt;}
.ws20{word-spacing:1.792000pt;}
.wsc0{word-spacing:1.825280pt;}
.wse2{word-spacing:1.848320pt;}
.ws32{word-spacing:1.856000pt;}
.ws5d{word-spacing:1.877333pt;}
.ws29{word-spacing:1.920000pt;}
.ws49{word-spacing:1.930667pt;}
.ws3a{word-spacing:1.935360pt;}
.ws1c{word-spacing:1.943040pt;}
.wsdc{word-spacing:2.091520pt;}
.ws33{word-spacing:2.176000pt;}
.ws98{word-spacing:2.296320pt;}
.wsbc{word-spacing:2.365440pt;}
.wsf6{word-spacing:2.414080pt;}
.ws24{word-spacing:2.432000pt;}
.ws8e{word-spacing:2.472960pt;}
.ws7a{word-spacing:2.496000pt;}
.ws57{word-spacing:2.528000pt;}
.ws2e{word-spacing:2.560000pt;}
.ws62{word-spacing:2.682667pt;}
.ws4c{word-spacing:2.688000pt;}
.ws6d{word-spacing:2.693333pt;}
.ws9a{word-spacing:2.708480pt;}
.ws5b{word-spacing:2.821333pt;}
.ws6b{word-spacing:2.864000pt;}
.wsda{word-spacing:2.885120pt;}
.ws5c{word-spacing:2.944000pt;}
.wsf0{word-spacing:3.061760pt;}
.ws22{word-spacing:3.072000pt;}
.wsc8{word-spacing:3.179520pt;}
.ws28{word-spacing:3.200000pt;}
.ws97{word-spacing:3.238400pt;}
.ws46{word-spacing:3.578667pt;}
.ws47{word-spacing:3.605333pt;}
.wse6{word-spacing:3.709440pt;}
.ws68{word-spacing:3.760000pt;}
.wsb1{word-spacing:3.768320pt;}
.ws66{word-spacing:3.840000pt;}
.ws5a{word-spacing:3.845333pt;}
.ws60{word-spacing:3.968000pt;}
.wsef{word-spacing:4.180480pt;}
.ws6a{word-spacing:4.224000pt;}
.ws67{word-spacing:4.229333pt;}
.ws8d{word-spacing:4.239360pt;}
.ws82{word-spacing:4.352000pt;}
.wsca{word-spacing:4.357120pt;}
.ws64{word-spacing:4.458667pt;}
.wsc9{word-spacing:4.474880pt;}
.ws65{word-spacing:4.480000pt;}
.ws6c{word-spacing:4.608000pt;}
.wse3{word-spacing:5.475840pt;}
.wsdf{word-spacing:5.770240pt;}
.ws2b{word-spacing:5.952000pt;}
.wsdb{word-spacing:6.300160pt;}
.wse1{word-spacing:6.771200pt;}
.wseb{word-spacing:6.947840pt;}
.wscc{word-spacing:7.065600pt;}
.wsf2{word-spacing:8.302080pt;}
.wscb{word-spacing:8.360960pt;}
.wsf1{word-spacing:9.303040pt;}
.wsf3{word-spacing:9.597440pt;}
.wse5{word-spacing:12.188160pt;}
.wse4{word-spacing:13.189120pt;}
.wsde{word-spacing:13.424640pt;}
.wsdd{word-spacing:14.425600pt;}
.wsd8{word-spacing:14.720000pt;}
.wsea{word-spacing:15.132160pt;}
.wse8{word-spacing:16.015360pt;}
.wse9{word-spacing:17.016320pt;}
.wsd9{word-spacing:17.310720pt;}
.wsec{word-spacing:36.505600pt;}
.wsb4{word-spacing:71.984832pt;}
.wsed{word-spacing:104.335360pt;}
.wsee{word-spacing:105.866240pt;}
.wsa7{word-spacing:129.776640pt;}
.ws0{word-spacing:143.608320pt;}
.wsf8{word-spacing:154.265600pt;}
.wsf7{word-spacing:154.821120pt;}
.ws9f{word-spacing:212.782080pt;}
._7{margin-left:-7.433216pt;}
._c{margin-left:-6.198016pt;}
._a{margin-left:-4.544000pt;}
._2{margin-left:-3.409152pt;}
._1{margin-left:-2.166784pt;}
._0{margin-left:-1.136384pt;}
._3{width:1.024512pt;}
._4{width:2.702592pt;}
._5{width:3.915520pt;}
._f{width:4.812288pt;}
._6{width:5.721344pt;}
._9{width:6.648832pt;}
._d{width:8.128000pt;}
._1b{width:9.067520pt;}
._16{width:12.205824pt;}
._15{width:14.013440pt;}
._17{width:15.124992pt;}
._18{width:16.297984pt;}
._19{width:103.084288pt;}
._1a{width:104.897536pt;}
._14{width:113.756160pt;}
._8{width:143.196160pt;}
._10{width:211.850240pt;}
._e{width:237.888000pt;}
._11{width:338.336768pt;}
._12{width:375.695360pt;}
._13{width:393.008128pt;}
._b{width:1269.120000pt;}
.fs4{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs3{font-size:42.240000pt;}
.fs8{font-size:48.640000pt;}
.fs9{font-size:51.200000pt;}
.fs5{font-size:53.760000pt;}
.fs6{font-size:58.666667pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.yfc{bottom:3.200000pt;}
.y34{bottom:50.880000pt;}
.y1{bottom:69.440000pt;}
.y8c{bottom:87.029120pt;}
.y27{bottom:87.034880pt;}
.yb8{bottom:87.040640pt;}
.y112{bottom:87.680000pt;}
.y95{bottom:93.760000pt;}
.y117{bottom:95.680000pt;}
.y64{bottom:96.320000pt;}
.y16b{bottom:97.600000pt;}
.y8b{bottom:102.068480pt;}
.y26{bottom:102.074240pt;}
.y12f{bottom:102.743680pt;}
.y191{bottom:104.640000pt;}
.y1d1{bottom:105.605120pt;}
.y111{bottom:106.240000pt;}
.yb7{bottom:106.880000pt;}
.y19b{bottom:108.802560pt;}
.y94{bottom:112.320000pt;}
.y63{bottom:114.880000pt;}
.y16a{bottom:116.160000pt;}
.ycb{bottom:117.424640pt;}
.y8a{bottom:117.430400pt;}
.y25{bottom:117.436160pt;}
.y153{bottom:118.400000pt;}
.y12e{bottom:119.701120pt;}
.yb6{bottom:122.240000pt;}
.y1d0{bottom:122.562560pt;}
.y190{bottom:122.880000pt;}
.y110{bottom:124.480000pt;}
.y116{bottom:124.807680pt;}
.y19a{bottom:125.766400pt;}
.y93{bottom:130.560000pt;}
.yca{bottom:132.786560pt;}
.y89{bottom:132.792320pt;}
.y24{bottom:132.798080pt;}
.y62{bottom:133.120000pt;}
.yb5{bottom:133.760000pt;}
.y169{bottom:134.400000pt;}
.y12d{bottom:136.334720pt;}
.y1cf{bottom:139.526400pt;}
.y152{bottom:141.120000pt;}
.y18f{bottom:141.440000pt;}
.y115{bottom:141.765120pt;}
.y199{bottom:142.411520pt;}
.y10f{bottom:143.040000pt;}
.yc9{bottom:148.148480pt;}
.y88{bottom:148.154240pt;}
.y92{bottom:149.120000pt;}
.y61{bottom:151.680000pt;}
.y23{bottom:152.960000pt;}
.y12c{bottom:153.292160pt;}
.y1ce{bottom:156.174080pt;}
.y114{bottom:158.722560pt;}
.y151{bottom:159.360000pt;}
.y198{bottom:159.368960pt;}
.y18e{bottom:159.680000pt;}
.y10e{bottom:161.280000pt;}
.yc8{bottom:163.510400pt;}
.y22{bottom:163.516160pt;}
.yd1{bottom:164.480000pt;}
.y91{bottom:167.360000pt;}
.yb4{bottom:168.000000pt;}
.y60{bottom:169.920000pt;}
.y168{bottom:171.200000pt;}
.y1cd{bottom:173.131520pt;}
.y113{bottom:175.680000pt;}
.y197{bottom:176.326400pt;}
.y150{bottom:177.920000pt;}
.y18d{bottom:178.240000pt;}
.yc7{bottom:178.872320pt;}
.y21{bottom:178.878080pt;}
.y10d{bottom:179.840000pt;}
.y90{bottom:185.920000pt;}
.yb3{bottom:186.240000pt;}
.y5f{bottom:188.480000pt;}
.y12b{bottom:188.811520pt;}
.y167{bottom:189.760000pt;}
.y1cc{bottom:190.088960pt;}
.y196{bottom:192.965120pt;}
.yc6{bottom:194.234240pt;}
.y14f{bottom:196.160000pt;}
.y18c{bottom:196.480000pt;}
.y10c{bottom:198.080000pt;}
.y20{bottom:199.040000pt;}
.yd0{bottom:200.000000pt;}
.y8f{bottom:204.160000pt;}
.yb2{bottom:204.800000pt;}
.y12a{bottom:205.768960pt;}
.y5e{bottom:206.720000pt;}
.y1cb{bottom:207.046400pt;}
.y166{bottom:208.000000pt;}
.y1f{bottom:209.596160pt;}
.y195{bottom:209.922560pt;}
.y87{bottom:210.240000pt;}
.y14e{bottom:214.720000pt;}
.y18b{bottom:215.040000pt;}
.y10b{bottom:216.640000pt;}
.ycf{bottom:218.240000pt;}
.y8e{bottom:222.720000pt;}
.y129{bottom:222.726400pt;}
.yb1{bottom:223.040000pt;}
.y1ca{bottom:223.685120pt;}
.y1e{bottom:224.958080pt;}
.y5d{bottom:225.280000pt;}
.y165{bottom:226.560000pt;}
.y194{bottom:226.888960pt;}
.y14d{bottom:232.960000pt;}
.y18a{bottom:233.280000pt;}
.y10a{bottom:234.880000pt;}
.yee{bottom:236.800000pt;}
.y128{bottom:239.360000pt;}
.y1c9{bottom:240.642560pt;}
.y86{bottom:240.960000pt;}
.yb0{bottom:241.280000pt;}
.y5c{bottom:243.520000pt;}
.y193{bottom:243.846400pt;}
.yce{bottom:244.480000pt;}
.y164{bottom:244.800000pt;}
.y1d{bottom:245.120000pt;}
.y14c{bottom:251.520000pt;}
.y189{bottom:251.840000pt;}
.y109{bottom:253.440000pt;}
.yed{bottom:255.040000pt;}
.yc5{bottom:256.320000pt;}
.y1c8{bottom:257.606400pt;}
.y85{bottom:259.520000pt;}
.yaf{bottom:259.840000pt;}
.y192{bottom:260.480000pt;}
.y5b{bottom:262.080000pt;}
.ycd{bottom:263.040000pt;}
.y163{bottom:263.360000pt;}
.y14b{bottom:269.760000pt;}
.y188{bottom:270.080000pt;}
.yec{bottom:273.600000pt;}
.y1c7{bottom:274.242560pt;}
.y127{bottom:275.520000pt;}
.y84{bottom:277.760000pt;}
.yae{bottom:278.080000pt;}
.y108{bottom:279.360000pt;}
.y1c{bottom:280.320000pt;}
.y162{bottom:281.600000pt;}
.yc4{bottom:284.480000pt;}
.ycc{bottom:285.760000pt;}
.y187{bottom:288.640000pt;}
.y1c6{bottom:291.202560pt;}
.yeb{bottom:291.840000pt;}
.y126{bottom:293.760000pt;}
.y14a{bottom:296.000000pt;}
.y83{bottom:296.320000pt;}
.yad{bottom:296.640000pt;}
.y107{bottom:298.240000pt;}
.y1b{bottom:298.560000pt;}
.y5a{bottom:298.880000pt;}
.ydd{bottom:299.491947pt;}
.y161{bottom:300.160000pt;}
.yc3{bottom:302.720000pt;}
.y186{bottom:306.880000pt;}
.y1c5{bottom:308.168960pt;}
.yea{bottom:310.400000pt;}
.y125{bottom:312.320000pt;}
.y82{bottom:314.560000pt;}
.yac{bottom:314.880000pt;}
.yd2{bottom:316.869867pt;}
.y1a{bottom:317.120000pt;}
.y160{bottom:318.400000pt;}
.y149{bottom:319.040000pt;}
.yc2{bottom:321.280000pt;}
.y106{bottom:324.480000pt;}
.y1c4{bottom:324.802560pt;}
.y185{bottom:325.440000pt;}
.ye9{bottom:328.640000pt;}
.y124{bottom:330.560000pt;}
.y159{bottom:330.714987pt;}
.y81{bottom:333.120000pt;}
.yab{bottom:333.440000pt;}
.y19{bottom:335.360000pt;}
.y59{bottom:335.680000pt;}
.y15f{bottom:336.960000pt;}
.yc1{bottom:339.520000pt;}
.y1c3{bottom:341.765120pt;}
.y184{bottom:343.680000pt;}
.yd3{bottom:345.685227pt;}
.y154{bottom:346.316267pt;}
.ye8{bottom:347.200000pt;}
.y105{bottom:348.800000pt;}
.y123{bottom:349.120000pt;}
.y80{bottom:351.360000pt;}
.yaa{bottom:351.680000pt;}
.y18{bottom:353.600000pt;}
.y58{bottom:353.920000pt;}
.y15e{bottom:355.200000pt;}
.yc0{bottom:358.080000pt;}
.y1c2{bottom:358.722560pt;}
.y183{bottom:362.240000pt;}
.ye7{bottom:365.440000pt;}
.y122{bottom:367.360000pt;}
.y7f{bottom:369.920000pt;}
.ya9{bottom:370.240000pt;}
.y17{bottom:372.160000pt;}
.y57{bottom:372.480000pt;}
.y104{bottom:372.800000pt;}
.yd4{bottom:374.500587pt;}
.y1c1{bottom:375.688960pt;}
.y182{bottom:380.480000pt;}
.ye6{bottom:384.000000pt;}
.y121{bottom:385.920000pt;}
.ybf{bottom:387.223040pt;}
.y7e{bottom:388.160000pt;}
.ya8{bottom:388.480000pt;}
.y16{bottom:390.400000pt;}
.y56{bottom:390.720000pt;}
.y15d{bottom:391.680000pt;}
.y1c0{bottom:392.322560pt;}
.y103{bottom:397.120000pt;}
.y181{bottom:399.040000pt;}
.ye5{bottom:402.240000pt;}
.yd5{bottom:403.315947pt;}
.y120{bottom:404.160000pt;}
.ybe{bottom:404.180480pt;}
.y7d{bottom:406.720000pt;}
.ya7{bottom:407.040000pt;}
.y155{bottom:408.198507pt;}
.y15c{bottom:408.640000pt;}
.y15{bottom:408.960000pt;}
.y55{bottom:409.280000pt;}
.y1bf{bottom:409.288960pt;}
.y180{bottom:417.280000pt;}
.ye4{bottom:420.800000pt;}
.ybd{bottom:420.814080pt;}
.y102{bottom:421.120000pt;}
.y11f{bottom:422.720000pt;}
.y7c{bottom:424.960000pt;}
.ya6{bottom:425.280000pt;}
.y1be{bottom:426.246400pt;}
.y14{bottom:427.200000pt;}
.y54{bottom:427.520000pt;}
.yd6{bottom:432.131307pt;}
.ybc{bottom:437.771520pt;}
.ye3{bottom:439.040000pt;}
.y11e{bottom:440.960000pt;}
.y1bd{bottom:442.880000pt;}
.y7b{bottom:443.520000pt;}
.ya5{bottom:443.840000pt;}
.y15b{bottom:444.160000pt;}
.y101{bottom:445.440000pt;}
.y13{bottom:445.760000pt;}
.y53{bottom:446.080000pt;}
.y17f{bottom:453.760000pt;}
.ybb{bottom:454.728960pt;}
.ye2{bottom:457.600000pt;}
.y11d{bottom:459.520000pt;}
.y1bc{bottom:459.842560pt;}
.yd7{bottom:460.946667pt;}
.y7a{bottom:461.760000pt;}
.ya4{bottom:462.080000pt;}
.y12{bottom:464.000000pt;}
.y52{bottom:464.320000pt;}
.y100{bottom:469.760000pt;}
.y156{bottom:470.080747pt;}
.y17e{bottom:470.720000pt;}
.yba{bottom:471.686400pt;}
.ye1{bottom:475.840000pt;}
.y1bb{bottom:476.808960pt;}
.y11c{bottom:477.760000pt;}
.y79{bottom:480.320000pt;}
.ya3{bottom:480.640000pt;}
.y11{bottom:482.560000pt;}
.y51{bottom:482.880000pt;}
.yb9{bottom:488.320000pt;}
.yd8{bottom:489.762027pt;}
.yff{bottom:493.760000pt;}
.y1ba{bottom:493.766400pt;}
.y11b{bottom:496.320000pt;}
.y78{bottom:498.560000pt;}
.ya2{bottom:498.880000pt;}
.y10{bottom:500.800000pt;}
.y50{bottom:501.120000pt;}
.ye0{bottom:502.080000pt;}
.y17d{bottom:506.880000pt;}
.y1b9{bottom:510.411520pt;}
.y11a{bottom:514.560000pt;}
.y77{bottom:517.120000pt;}
.ya1{bottom:517.440000pt;}
.yfe{bottom:518.080000pt;}
.yd9{bottom:518.577387pt;}
.yf{bottom:519.360000pt;}
.y4f{bottom:519.680000pt;}
.ydf{bottom:520.640000pt;}
.y17c{bottom:525.120000pt;}
.y1b8{bottom:527.368960pt;}
.y157{bottom:531.962987pt;}
.y76{bottom:535.360000pt;}
.ya0{bottom:535.680000pt;}
.ye{bottom:537.600000pt;}
.y4e{bottom:537.920000pt;}
.y119{bottom:540.800000pt;}
.yfd{bottom:542.400000pt;}
.yde{bottom:543.360000pt;}
.y17b{bottom:543.680000pt;}
.y1b7{bottom:544.326400pt;}
.yda{bottom:547.392747pt;}
.y75{bottom:553.920000pt;}
.y9f{bottom:554.240000pt;}
.yd{bottom:556.160000pt;}
.y4d{bottom:556.480000pt;}
.yfa{bottom:557.070213pt;}
.y1b6{bottom:560.965120pt;}
.y17a{bottom:561.920000pt;}
.y118{bottom:563.840000pt;}
.yfb{bottom:566.400000pt;}
.y74{bottom:572.160000pt;}
.y9e{bottom:572.480000pt;}
.yc{bottom:574.400000pt;}
.yef{bottom:574.448133pt;}
.y4c{bottom:574.720000pt;}
.y135{bottom:575.567253pt;}
.ydb{bottom:576.208107pt;}
.y1b5{bottom:577.922560pt;}
.y179{bottom:580.480000pt;}
.y73{bottom:590.720000pt;}
.y9d{bottom:591.040000pt;}
.y130{bottom:591.168533pt;}
.yb{bottom:592.960000pt;}
.y4b{bottom:593.280000pt;}
.y158{bottom:593.845227pt;}
.y1b4{bottom:594.886400pt;}
.y178{bottom:598.720000pt;}
.yf0{bottom:603.263493pt;}
.ydc{bottom:605.023467pt;}
.y72{bottom:608.960000pt;}
.y9c{bottom:609.280000pt;}
.ya{bottom:611.200000pt;}
.y4a{bottom:611.520000pt;}
.y1b3{bottom:611.525120pt;}
.y177{bottom:617.280000pt;}
.y71{bottom:627.520000pt;}
.y9b{bottom:627.840000pt;}
.y1b2{bottom:628.482560pt;}
.y9{bottom:629.760000pt;}
.y49{bottom:630.080000pt;}
.yf1{bottom:632.078853pt;}
.y15a{bottom:632.135200pt;}
.y176{bottom:635.520000pt;}
.y1b1{bottom:645.448960pt;}
.y70{bottom:645.760000pt;}
.y9a{bottom:646.080000pt;}
.y8{bottom:648.000000pt;}
.y48{bottom:648.320000pt;}
.y131{bottom:653.050773pt;}
.y175{bottom:654.080000pt;}
.y148{bottom:658.560000pt;}
.yf2{bottom:660.894213pt;}
.y1b0{bottom:662.406400pt;}
.y6f{bottom:664.320000pt;}
.y99{bottom:664.640000pt;}
.y7{bottom:666.560000pt;}
.y47{bottom:666.880000pt;}
.y174{bottom:672.320000pt;}
.y147{bottom:677.120000pt;}
.y1af{bottom:679.045120pt;}
.y6e{bottom:682.560000pt;}
.y6{bottom:684.800000pt;}
.y46{bottom:685.120000pt;}
.yf3{bottom:689.709573pt;}
.y173{bottom:690.880000pt;}
.y98{bottom:693.765120pt;}
.y146{bottom:695.360000pt;}
.y1ae{bottom:696.002560pt;}
.y6d{bottom:701.120000pt;}
.y45{bottom:703.680000pt;}
.y172{bottom:709.120000pt;}
.y97{bottom:710.722560pt;}
.y1ad{bottom:712.966400pt;}
.y145{bottom:713.920000pt;}
.y132{bottom:714.933013pt;}
.yf4{bottom:718.524933pt;}
.y6c{bottom:719.360000pt;}
.y5{bottom:721.280000pt;}
.y44{bottom:721.920000pt;}
.y96{bottom:727.680000pt;}
.y1ac{bottom:729.605120pt;}
.y144{bottom:732.160000pt;}
.y6b{bottom:737.920000pt;}
.y4{bottom:738.240000pt;}
.y43{bottom:740.480000pt;}
.y171{bottom:745.600000pt;}
.y1ab{bottom:746.562560pt;}
.yf5{bottom:747.340293pt;}
.y143{bottom:750.720000pt;}
.y6a{bottom:756.160000pt;}
.y42{bottom:758.720000pt;}
.y170{bottom:762.560000pt;}
.y1aa{bottom:763.520000pt;}
.y142{bottom:768.960000pt;}
.y3{bottom:773.760000pt;}
.y69{bottom:774.720000pt;}
.yf6{bottom:776.155653pt;}
.y133{bottom:776.815253pt;}
.y41{bottom:777.280000pt;}
.y1dd{bottom:780.162560pt;}
.y1a9{bottom:780.165120pt;}
.y141{bottom:787.520000pt;}
.y2{bottom:790.720000pt;}
.y68{bottom:792.960000pt;}
.y40{bottom:795.520000pt;}
.y1a8{bottom:797.122560pt;}
.y16f{bottom:798.080000pt;}
.yf7{bottom:804.971013pt;}
.y140{bottom:805.760000pt;}
.y33{bottom:809.980000pt;}
.y67{bottom:811.520000pt;}
.y1dc{bottom:814.088960pt;}
.y1a7{bottom:814.091520pt;}
.y16e{bottom:815.040000pt;}
.y32{bottom:828.380000pt;}
.y8d{bottom:829.760000pt;}
.y1db{bottom:831.046400pt;}
.y1a6{bottom:831.048960pt;}
.y3f{bottom:832.000000pt;}
.yf8{bottom:833.786373pt;}
.y134{bottom:838.697493pt;}
.y13f{bottom:842.258560pt;}
.y31{bottom:846.780000pt;}
.y1a5{bottom:847.682560pt;}
.y1da{bottom:847.694080pt;}
.y66{bottom:848.320000pt;}
.y3e{bottom:848.960000pt;}
.y16d{bottom:850.560000pt;}
.yf9{bottom:862.601733pt;}
.y1a4{bottom:864.648960pt;}
.y1d9{bottom:864.651520pt;}
.y30{bottom:865.180000pt;}
.y65{bottom:866.560000pt;}
.y16c{bottom:867.520000pt;}
.y136{bottom:876.987467pt;}
.y13e{bottom:877.777920pt;}
.y1a3{bottom:881.606400pt;}
.y1d8{bottom:881.608960pt;}
.y2f{bottom:883.580000pt;}
.y3d{bottom:885.120000pt;}
.y1d7{bottom:898.242560pt;}
.y1a2{bottom:898.254080pt;}
.y2e{bottom:901.980000pt;}
.y3c{bottom:903.360000pt;}
.y13d{bottom:913.297280pt;}
.y1d6{bottom:915.205120pt;}
.y1a1{bottom:915.211520pt;}
.y2d{bottom:920.380000pt;}
.y3b{bottom:921.920000pt;}
.y13c{bottom:930.254720pt;}
.y1d5{bottom:932.162560pt;}
.y1a0{bottom:932.168960pt;}
.y3a{bottom:940.160000pt;}
.y13b{bottom:947.212160pt;}
.y19f{bottom:949.126400pt;}
.y1d4{bottom:949.128960pt;}
.y2c{bottom:957.180000pt;}
.y39{bottom:958.720000pt;}
.y13a{bottom:964.169600pt;}
.y1d3{bottom:965.762560pt;}
.y19e{bottom:965.765120pt;}
.y38{bottom:976.960000pt;}
.y19d{bottom:982.722560pt;}
.y1d2{bottom:982.731520pt;}
.y2b{bottom:993.758667pt;}
.y37{bottom:995.520000pt;}
.y139{bottom:999.365120pt;}
.y19c{bottom:999.688960pt;}
.y2a{bottom:1012.160000pt;}
.y36{bottom:1013.760000pt;}
.y138{bottom:1016.322560pt;}
.y35{bottom:1032.320000pt;}
.y137{bottom:1033.280000pt;}
.y29{bottom:1075.733333pt;}
.y28{bottom:1093.333333pt;}
.h15{height:16.638667pt;}
.h12{height:16.640000pt;}
.h11{height:16.960000pt;}
.h14{height:16.961333pt;}
.h16{height:33.701250pt;}
.h7{height:33.918750pt;}
.h10{height:37.248750pt;}
.h9{height:40.763021pt;}
.h8{height:52.762500pt;}
.hf{height:52.785540pt;}
.hd{height:52.823940pt;}
.h13{height:57.758750pt;}
.h5{height:57.787500pt;}
.h3{height:59.340000pt;}
.h4{height:60.751250pt;}
.he{height:62.781250pt;}
.h2{height:62.812500pt;}
.hb{height:64.500000pt;}
.h6{height:65.776250pt;}
.hc{height:66.750000pt;}
.ha{height:75.900000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:49.920000pt;}
.w7{width:62.718667pt;}
.w3{width:63.680000pt;}
.w4{width:84.800000pt;}
.w2{width:165.760000pt;}
.w5{width:215.040000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x15{left:3.520000pt;}
.x14{left:72.000000pt;}
.x5{left:72.917333pt;}
.x2{left:75.520000pt;}
.xd{left:84.265893pt;}
.xc{left:91.026213pt;}
.x4{left:94.400000pt;}
.x9{left:95.680000pt;}
.xb{left:97.786533pt;}
.x1c{left:102.506533pt;}
.x12{left:104.265893pt;}
.x21{left:109.346533pt;}
.x11{left:111.026213pt;}
.x6{left:112.640000pt;}
.xe{left:113.538213pt;}
.x10{left:117.786533pt;}
.x20{left:121.506533pt;}
.x3{left:132.160000pt;}
.x13{left:133.538213pt;}
.x8{left:150.400000pt;}
.x7{left:151.680000pt;}
.x1d{left:158.868133pt;}
.x22{left:177.868133pt;}
.x16{left:238.080000pt;}
.x17{left:302.080000pt;}
.x1e{left:316.685733pt;}
.x23{left:335.685733pt;}
.x18{left:386.880000pt;}
.x19{left:601.920000pt;}
.xa{left:645.440000pt;}
.x1a{left:652.160000pt;}
.xf{left:665.600000pt;}
.x1f{left:670.400000pt;}
.x1b{left:702.080000pt;}
.x1{left:710.080000pt;}
}




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