
    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_773fc69a3e6f9189d61a6e24.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.110000;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_868e6377fc59f82151f91a28.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984333;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_aea9128f52c1f7c8b46d889a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.126000;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_017cd2623bd5e29033c18bbf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936000;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_e485c192550d6930a43f2dca.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.726000;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_8d94d399cc8937b46fdebdf6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941000;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_5d5384d1bcdf2b7a3ba94fd7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.728000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8d94d399cc8937b46fdebdf6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.941000;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_e5ccfa5b36c5e648fd56e515.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.956543;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_3ddc3a8c8b0a2de90f3a3f90.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.245656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245656,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-19.800000px;}
.v1{vertical-align:-18.000000px;}
.v4{vertical-align:-1.117814px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.800000px;}
.ls3e{letter-spacing:-1.386000px;}
.ls3c{letter-spacing:-1.254000px;}
.ls3d{letter-spacing:-1.188000px;}
.ls44{letter-spacing:-1.122000px;}
.lsab{letter-spacing:-0.900000px;}
.lsb3{letter-spacing:-0.840000px;}
.ls3f{letter-spacing:-0.792000px;}
.ls89{letter-spacing:-0.780000px;}
.ls26{letter-spacing:-0.726000px;}
.ls9d{letter-spacing:-0.720000px;}
.ls22{letter-spacing:-0.660000px;}
.ls13{letter-spacing:-0.627000px;}
.lsb2{letter-spacing:-0.600000px;}
.ls24{letter-spacing:-0.594000px;}
.ls9c{letter-spacing:-0.540000px;}
.ls20{letter-spacing:-0.528000px;}
.ls1{letter-spacing:-0.480000px;}
.ls21{letter-spacing:-0.462000px;}
.ls12{letter-spacing:-0.456000px;}
.ls2{letter-spacing:-0.420000px;}
.ls6{letter-spacing:-0.399000px;}
.ls2e{letter-spacing:-0.396000px;}
.lsaa{letter-spacing:-0.360000px;}
.ls23{letter-spacing:-0.330000px;}
.ls88{letter-spacing:-0.300000px;}
.ls5{letter-spacing:-0.285000px;}
.ls17{letter-spacing:-0.264000px;}
.ls65{letter-spacing:-0.240000px;}
.ls14{letter-spacing:-0.228000px;}
.ls15{letter-spacing:-0.198000px;}
.ls30{letter-spacing:-0.180000px;}
.ls7{letter-spacing:-0.171000px;}
.ls66{letter-spacing:-0.162000px;}
.ls16{letter-spacing:-0.132000px;}
.ls75{letter-spacing:-0.120000px;}
.ls25{letter-spacing:-0.066000px;}
.ls6f{letter-spacing:-0.060000px;}
.ls4{letter-spacing:-0.057000px;}
.ls39{letter-spacing:-0.054000px;}
.ls3{letter-spacing:0.000000px;}
.lsa2{letter-spacing:0.024000px;}
.lsa1{letter-spacing:0.026400px;}
.lsa3{letter-spacing:0.027000px;}
.ls48{letter-spacing:0.033000px;}
.ls4e{letter-spacing:0.051000px;}
.ls85{letter-spacing:0.053400px;}
.ls86{letter-spacing:0.054000px;}
.ls87{letter-spacing:0.060000px;}
.ls1f{letter-spacing:0.066000px;}
.ls6d{letter-spacing:0.074400px;}
.ls2d{letter-spacing:0.079200px;}
.ls72{letter-spacing:0.090000px;}
.ls5c{letter-spacing:0.091200px;}
.ls55{letter-spacing:0.099000px;}
.lsa7{letter-spacing:0.099600px;}
.lsa4{letter-spacing:0.101400px;}
.ls81{letter-spacing:0.112200px;}
.ls82{letter-spacing:0.112500px;}
.ls84{letter-spacing:0.112800px;}
.ls8{letter-spacing:0.114000px;}
.ls74{letter-spacing:0.120000px;}
.ls56{letter-spacing:0.130800px;}
.ls1b{letter-spacing:0.132000px;}
.ls9b{letter-spacing:0.144600px;}
.ls9f{letter-spacing:0.145800px;}
.ls71{letter-spacing:0.150000px;}
.ls93{letter-spacing:0.157800px;}
.ls28{letter-spacing:0.165000px;}
.ls9a{letter-spacing:0.166800px;}
.ls8b{letter-spacing:0.171600px;}
.ls38{letter-spacing:0.180000px;}
.ls5d{letter-spacing:0.181200px;}
.ls8a{letter-spacing:0.181800px;}
.ls27{letter-spacing:0.198000px;}
.ls7d{letter-spacing:0.221400px;}
.ls68{letter-spacing:0.223200px;}
.ls9{letter-spacing:0.228000px;}
.ls2a{letter-spacing:0.231000px;}
.lsa0{letter-spacing:0.231600px;}
.ls51{letter-spacing:0.235200px;}
.ls67{letter-spacing:0.240000px;}
.ls98{letter-spacing:0.243000px;}
.ls97{letter-spacing:0.243600px;}
.ls90{letter-spacing:0.261000px;}
.ls92{letter-spacing:0.261600px;}
.ls8f{letter-spacing:0.262200px;}
.ls2b{letter-spacing:0.264000px;}
.ls2c{letter-spacing:0.266400px;}
.ls91{letter-spacing:0.270000px;}
.ls70{letter-spacing:0.283800px;}
.ls0{letter-spacing:0.285000px;}
.ls49{letter-spacing:0.290400px;}
.ls7b{letter-spacing:0.291600px;}
.ls64{letter-spacing:0.300000px;}
.ls32{letter-spacing:0.314400px;}
.lsd{letter-spacing:0.330000px;}
.ls58{letter-spacing:0.340200px;}
.ls57{letter-spacing:0.351000px;}
.ls42{letter-spacing:0.363000px;}
.ls50{letter-spacing:0.372000px;}
.lsc{letter-spacing:0.396000px;}
.ls52{letter-spacing:0.405000px;}
.ls63{letter-spacing:0.420000px;}
.ls41{letter-spacing:0.429000px;}
.ls1c{letter-spacing:0.462000px;}
.ls33{letter-spacing:0.480000px;}
.ls31{letter-spacing:0.483600px;}
.ls1d{letter-spacing:0.495000px;}
.ls19{letter-spacing:0.528000px;}
.ls62{letter-spacing:0.540000px;}
.ls35{letter-spacing:0.555600px;}
.ls1a{letter-spacing:0.561000px;}
.ls37{letter-spacing:0.572400px;}
.lsa{letter-spacing:0.594000px;}
.ls6a{letter-spacing:0.600000px;}
.ls5a{letter-spacing:0.609600px;}
.ls59{letter-spacing:0.630600px;}
.ls7a{letter-spacing:0.659400px;}
.lse{letter-spacing:0.660000px;}
.ls5f{letter-spacing:0.686400px;}
.ls60{letter-spacing:0.688200px;}
.ls5e{letter-spacing:0.688800px;}
.ls73{letter-spacing:0.693000px;}
.ls3b{letter-spacing:0.696000px;}
.ls46{letter-spacing:0.715800px;}
.ls40{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.726000px;}
.ls2f{letter-spacing:0.747600px;}
.lsb1{letter-spacing:0.750000px;}
.ls43{letter-spacing:0.759000px;}
.ls7f{letter-spacing:0.777000px;}
.ls95{letter-spacing:0.780000px;}
.ls1e{letter-spacing:0.792000px;}
.ls76{letter-spacing:0.804000px;}
.ls96{letter-spacing:0.805800px;}
.ls36{letter-spacing:0.840000px;}
.ls34{letter-spacing:0.855000px;}
.ls10{letter-spacing:0.858000px;}
.ls4f{letter-spacing:0.868200px;}
.ls94{letter-spacing:0.886200px;}
.ls80{letter-spacing:0.891000px;}
.ls6b{letter-spacing:0.900000px;}
.ls53{letter-spacing:0.902400px;}
.lsb{letter-spacing:0.924000px;}
.ls7c{letter-spacing:0.936600px;}
.ls29{letter-spacing:0.957000px;}
.ls69{letter-spacing:0.960000px;}
.ls3a{letter-spacing:0.990000px;}
.ls61{letter-spacing:1.020000px;}
.ls45{letter-spacing:1.023000px;}
.ls54{letter-spacing:1.056000px;}
.lsb0{letter-spacing:1.062000px;}
.ls77{letter-spacing:1.068000px;}
.lsaf{letter-spacing:1.080000px;}
.ls6e{letter-spacing:1.081200px;}
.ls4c{letter-spacing:1.100400px;}
.ls4b{letter-spacing:1.122000px;}
.ls8d{letter-spacing:1.178400px;}
.ls8e{letter-spacing:1.179000px;}
.ls8c{letter-spacing:1.200000px;}
.ls4d{letter-spacing:1.254000px;}
.ls5b{letter-spacing:1.267200px;}
.lsac{letter-spacing:1.320000px;}
.ls79{letter-spacing:1.452000px;}
.ls47{letter-spacing:1.485000px;}
.lsad{letter-spacing:1.500000px;}
.lsae{letter-spacing:1.515000px;}
.lsa8{letter-spacing:1.600200px;}
.lsa9{letter-spacing:1.600800px;}
.ls9e{letter-spacing:1.624800px;}
.ls83{letter-spacing:1.644600px;}
.ls99{letter-spacing:1.743600px;}
.ls11{letter-spacing:1.782000px;}
.ls6c{letter-spacing:1.798800px;}
.lsa5{letter-spacing:2.100000px;}
.ls7e{letter-spacing:2.506800px;}
.ls78{letter-spacing:2.759400px;}
.ls4a{letter-spacing:3.102000px;}
.lsa6{letter-spacing:6.264000px;}
.ls18{letter-spacing:36.000000px;}
.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;}
}
.ws5f{word-spacing:-17.754000px;}
.ws57{word-spacing:-17.622000px;}
.ws6d{word-spacing:-17.556000px;}
.ws5e{word-spacing:-17.490000px;}
.wsb{word-spacing:-17.424000px;}
.ws63{word-spacing:-17.186400px;}
.ws8d{word-spacing:-17.100000px;}
.ws5a{word-spacing:-16.896000px;}
.ws52{word-spacing:-16.698000px;}
.ws31{word-spacing:-16.632000px;}
.ws77{word-spacing:-16.566000px;}
.wsd{word-spacing:-16.500000px;}
.wsc{word-spacing:-16.368000px;}
.ws51{word-spacing:-16.302000px;}
.ws76{word-spacing:-16.170000px;}
.ws5b{word-spacing:-16.104000px;}
.ws5c{word-spacing:-16.038000px;}
.ws32{word-spacing:-15.906000px;}
.ws4d{word-spacing:-15.840000px;}
.ws75{word-spacing:-15.774000px;}
.ws7f{word-spacing:-15.180000px;}
.ws8a{word-spacing:-15.120000px;}
.ws2e{word-spacing:-15.000000px;}
.wsa{word-spacing:-14.535000px;}
.ws8c{word-spacing:-14.520000px;}
.ws1{word-spacing:-14.250000px;}
.ws33{word-spacing:-13.500000px;}
.ws40{word-spacing:-12.510000px;}
.ws7d{word-spacing:-12.429000px;}
.ws99{word-spacing:-12.312000px;}
.ws9{word-spacing:-12.240000px;}
.ws7e{word-spacing:-11.520000px;}
.ws80{word-spacing:-11.493000px;}
.ws78{word-spacing:-11.362500px;}
.ws7a{word-spacing:-11.304000px;}
.ws8b{word-spacing:-11.277000px;}
.ws79{word-spacing:-11.250000px;}
.ws30{word-spacing:-10.725000px;}
.ws0{word-spacing:-10.080000px;}
.ws2f{word-spacing:-9.750000px;}
.wse{word-spacing:-2.109000px;}
.ws82{word-spacing:-1.200000px;}
.ws95{word-spacing:-0.900000px;}
.ws14{word-spacing:-0.858000px;}
.ws43{word-spacing:-0.840000px;}
.ws18{word-spacing:-0.792000px;}
.ws45{word-spacing:-0.780000px;}
.ws8{word-spacing:-0.741000px;}
.ws34{word-spacing:-0.726000px;}
.ws36{word-spacing:-0.720000px;}
.ws38{word-spacing:-0.702000px;}
.ws5{word-spacing:-0.684000px;}
.ws25{word-spacing:-0.660000px;}
.ws66{word-spacing:-0.648000px;}
.ws89{word-spacing:-0.600000px;}
.ws29{word-spacing:-0.594000px;}
.ws91{word-spacing:-0.540000px;}
.ws1b{word-spacing:-0.528000px;}
.ws41{word-spacing:-0.480000px;}
.ws19{word-spacing:-0.462000px;}
.ws64{word-spacing:-0.420000px;}
.ws27{word-spacing:-0.396000px;}
.ws71{word-spacing:-0.360000px;}
.ws10{word-spacing:-0.342000px;}
.ws55{word-spacing:-0.330000px;}
.ws11{word-spacing:-0.285000px;}
.ws1e{word-spacing:-0.264000px;}
.ws74{word-spacing:-0.216000px;}
.ws4a{word-spacing:-0.198000px;}
.ws7b{word-spacing:-0.180000px;}
.wsf{word-spacing:-0.171000px;}
.ws1f{word-spacing:-0.132000px;}
.ws90{word-spacing:-0.120000px;}
.ws1c{word-spacing:-0.066000px;}
.ws70{word-spacing:-0.060000px;}
.ws12{word-spacing:-0.057000px;}
.ws39{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.ws6e{word-spacing:0.060000px;}
.ws1a{word-spacing:0.066000px;}
.wsa1{word-spacing:0.120000px;}
.ws17{word-spacing:0.132000px;}
.ws35{word-spacing:0.180000px;}
.ws22{word-spacing:0.198000px;}
.ws86{word-spacing:0.240000px;}
.ws28{word-spacing:0.264000px;}
.ws81{word-spacing:0.300000px;}
.ws4b{word-spacing:0.330000px;}
.ws53{word-spacing:0.396000px;}
.ws37{word-spacing:0.420000px;}
.ws3c{word-spacing:0.462000px;}
.ws94{word-spacing:0.480000px;}
.ws62{word-spacing:0.528000px;}
.ws98{word-spacing:0.540000px;}
.ws46{word-spacing:0.594000px;}
.ws9d{word-spacing:0.600000px;}
.ws2c{word-spacing:0.660000px;}
.ws73{word-spacing:0.702000px;}
.ws72{word-spacing:0.720000px;}
.ws21{word-spacing:0.726000px;}
.ws6a{word-spacing:0.792000px;}
.ws67{word-spacing:0.840000px;}
.ws7{word-spacing:0.855000px;}
.ws23{word-spacing:0.858000px;}
.ws2a{word-spacing:0.924000px;}
.ws6b{word-spacing:0.990000px;}
.ws68{word-spacing:1.020000px;}
.ws20{word-spacing:1.056000px;}
.ws8e{word-spacing:1.080000px;}
.ws2d{word-spacing:1.122000px;}
.ws3e{word-spacing:1.188000px;}
.ws8f{word-spacing:1.200000px;}
.ws4{word-spacing:1.254000px;}
.ws15{word-spacing:1.320000px;}
.ws4c{word-spacing:1.344000px;}
.ws69{word-spacing:1.380000px;}
.ws4e{word-spacing:1.386000px;}
.ws6{word-spacing:1.425000px;}
.ws93{word-spacing:1.440000px;}
.ws47{word-spacing:1.452000px;}
.ws42{word-spacing:1.500000px;}
.ws3d{word-spacing:1.518000px;}
.ws26{word-spacing:1.584000px;}
.ws87{word-spacing:1.620000px;}
.ws13{word-spacing:1.650000px;}
.ws2b{word-spacing:1.716000px;}
.ws44{word-spacing:1.740000px;}
.ws50{word-spacing:1.782000px;}
.ws16{word-spacing:1.848000px;}
.ws6f{word-spacing:1.860000px;}
.ws24{word-spacing:1.914000px;}
.ws6c{word-spacing:1.920000px;}
.ws5d{word-spacing:1.980000px;}
.ws4f{word-spacing:2.046000px;}
.ws9f{word-spacing:2.100000px;}
.ws60{word-spacing:2.112000px;}
.ws58{word-spacing:2.178000px;}
.ws1d{word-spacing:2.244000px;}
.ws83{word-spacing:2.340000px;}
.ws65{word-spacing:2.376000px;}
.ws59{word-spacing:2.442000px;}
.ws61{word-spacing:2.574000px;}
.ws9a{word-spacing:2.640000px;}
.ws54{word-spacing:2.904000px;}
.ws9c{word-spacing:3.060000px;}
.ws96{word-spacing:4.140000px;}
.ws56{word-spacing:6.138000px;}
.ws3f{word-spacing:10.530000px;}
.ws9b{word-spacing:13.500000px;}
.ws84{word-spacing:14.100000px;}
.ws88{word-spacing:15.000000px;}
.ws97{word-spacing:15.120000px;}
.ws92{word-spacing:15.180000px;}
.ws85{word-spacing:15.240000px;}
.ws9e{word-spacing:15.540000px;}
.wsa0{word-spacing:15.840000px;}
.ws48{word-spacing:36.072000px;}
.ws7c{word-spacing:75.000000px;}
.ws3a{word-spacing:99.193200px;}
.ws3b{word-spacing:271.468800px;}
.ws49{word-spacing:301.064678px;}
.ws3{word-spacing:1027.152000px;}
._2{margin-left:-991.149000px;}
._18{margin-left:-25.740000px;}
._13{margin-left:-19.839000px;}
._1e{margin-left:-18.538800px;}
._9{margin-left:-17.494200px;}
._3{margin-left:-15.232800px;}
._20{margin-left:-13.335600px;}
._e{margin-left:-10.551000px;}
._17{margin-left:-9.240000px;}
._7{margin-left:-4.174800px;}
._16{margin-left:-3.102000px;}
._0{margin-left:-1.921200px;}
._6{width:1.208700px;}
._f{width:2.578800px;}
._d{width:10.530000px;}
._c{width:12.510000px;}
._1b{width:17.299200px;}
._1c{width:19.596000px;}
._b{width:23.031000px;}
._4{width:35.999400px;}
._1f{width:37.152000px;}
._15{width:64.284000px;}
._19{width:71.478000px;}
._1d{width:72.798000px;}
._14{width:74.448000px;}
._1a{width:90.024000px;}
._12{width:183.135259px;}
._10{width:191.612018px;}
._11{width:246.291773px;}
._a{width:398.580600px;}
._5{width:413.809200px;}
._8{width:529.941360px;}
._1{width:661.578000px;}
.fc2{color:rgb(4,5,5);}
.fc1{color:rgb(5,3,1);}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:28.800000px;}
.fs9{font-size:39.000000px;}
.fs1{font-size:42.000000px;}
.fsa{font-size:42.900000px;}
.fsb{font-size:45.000000px;}
.fsc{font-size:46.575600px;}
.fs0{font-size:48.000000px;}
.fs7{font-size:48.480000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fse{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y111{bottom:1.246050px;}
.y1c{bottom:90.590550px;}
.y91{bottom:91.417350px;}
.ye3{bottom:91.417500px;}
.y100{bottom:91.572600px;}
.y1d9{bottom:91.707150px;}
.y1a6{bottom:92.858250px;}
.y70{bottom:92.988150px;}
.y40{bottom:93.097500px;}
.yb0{bottom:93.257250px;}
.y17b{bottom:93.738150px;}
.y141{bottom:94.051050px;}
.y219{bottom:95.988150px;}
.y1f5{bottom:98.238150px;}
.y1b{bottom:105.590550px;}
.y90{bottom:105.667350px;}
.ye2{bottom:105.667500px;}
.yff{bottom:108.822600px;}
.y1d8{bottom:108.957150px;}
.y1a5{bottom:110.108250px;}
.y6f{bottom:110.238150px;}
.y3f{bottom:110.347500px;}
.yaf{bottom:110.507250px;}
.y17a{bottom:110.988150px;}
.y140{bottom:111.301050px;}
.y218{bottom:111.738150px;}
.y1f4{bottom:113.988150px;}
.y1c3{bottom:119.917350px;}
.yfe{bottom:126.072600px;}
.y1d7{bottom:126.207150px;}
.y1a{bottom:126.590550px;}
.y1a4{bottom:127.358250px;}
.y6e{bottom:127.488150px;}
.y3e{bottom:127.597500px;}
.yae{bottom:127.757250px;}
.y13f{bottom:128.551050px;}
.y158{bottom:129.738150px;}
.y19{bottom:141.590550px;}
.y217{bottom:143.238150px;}
.yfd{bottom:143.322600px;}
.y1d6{bottom:143.457150px;}
.ye1{bottom:143.613150px;}
.y1a3{bottom:144.608250px;}
.y6d{bottom:144.738150px;}
.y3d{bottom:144.847500px;}
.yad{bottom:145.007250px;}
.y157{bottom:145.488150px;}
.y13e{bottom:145.801050px;}
.y8f{bottom:149.238150px;}
.y142{bottom:153.363150px;}
.y18{bottom:156.590550px;}
.y216{bottom:158.988150px;}
.yfc{bottom:160.572600px;}
.y1d5{bottom:160.707150px;}
.ye0{bottom:160.863150px;}
.y156{bottom:161.238150px;}
.y1a2{bottom:161.858250px;}
.y6c{bottom:161.988150px;}
.y3c{bottom:162.097500px;}
.yac{bottom:162.257250px;}
.y13d{bottom:163.051050px;}
.y8e{bottom:166.488150px;}
.y1c2{bottom:167.238150px;}
.y17{bottom:171.590550px;}
.y215{bottom:174.738150px;}
.y155{bottom:176.988150px;}
.yfb{bottom:177.822600px;}
.y1d4{bottom:177.957150px;}
.ydf{bottom:178.113150px;}
.y1a1{bottom:179.108250px;}
.y6b{bottom:179.238150px;}
.y3b{bottom:179.347500px;}
.yab{bottom:179.507250px;}
.y13c{bottom:180.301050px;}
.y8d{bottom:183.738150px;}
.y1c1{bottom:184.488150px;}
.y16{bottom:186.590550px;}
.y214{bottom:190.488150px;}
.y179{bottom:192.738150px;}
.yfa{bottom:195.072600px;}
.y1d3{bottom:195.207150px;}
.yde{bottom:195.363150px;}
.y1a0{bottom:196.358250px;}
.y6a{bottom:196.488150px;}
.y3a{bottom:196.597500px;}
.yaa{bottom:196.757250px;}
.y13b{bottom:197.551050px;}
.y8c{bottom:200.988150px;}
.y15{bottom:201.590550px;}
.y1c0{bottom:201.738150px;}
.y213{bottom:206.238150px;}
.y178{bottom:208.488150px;}
.y154{bottom:209.988150px;}
.yf9{bottom:212.322600px;}
.y1d2{bottom:212.457150px;}
.ydd{bottom:212.613150px;}
.y19f{bottom:213.608250px;}
.y69{bottom:213.738150px;}
.y39{bottom:213.847500px;}
.ya9{bottom:214.007250px;}
.y13a{bottom:214.801050px;}
.y14{bottom:216.590550px;}
.y8b{bottom:218.238150px;}
.y1bf{bottom:218.988150px;}
.y212{bottom:221.988150px;}
.y113{bottom:222.363150px;}
.y1f3{bottom:224.238150px;}
.y153{bottom:225.738150px;}
.yf8{bottom:229.572600px;}
.y1d1{bottom:229.707150px;}
.ydc{bottom:229.863150px;}
.y19e{bottom:230.858250px;}
.y68{bottom:230.988150px;}
.y38{bottom:231.097500px;}
.ya8{bottom:231.257250px;}
.y13{bottom:231.590550px;}
.y139{bottom:232.051050px;}
.y8a{bottom:235.488150px;}
.y1be{bottom:236.238150px;}
.y211{bottom:237.738150px;}
.y1f2{bottom:239.988150px;}
.y152{bottom:241.488150px;}
.y12{bottom:246.590550px;}
.yf7{bottom:246.822600px;}
.y1d0{bottom:246.957150px;}
.ydb{bottom:247.113150px;}
.y19d{bottom:248.108250px;}
.y67{bottom:248.238150px;}
.y37{bottom:248.347500px;}
.ya7{bottom:248.507250px;}
.y138{bottom:249.301050px;}
.y89{bottom:252.738150px;}
.y210{bottom:253.488150px;}
.y1f1{bottom:255.738150px;}
.y151{bottom:257.238150px;}
.y177{bottom:258.738150px;}
.y11{bottom:261.590550px;}
.yf6{bottom:264.072600px;}
.y1cf{bottom:264.207150px;}
.yda{bottom:264.363150px;}
.y19c{bottom:265.358250px;}
.y66{bottom:265.488150px;}
.y36{bottom:265.597500px;}
.ya6{bottom:265.757250px;}
.y137{bottom:266.551050px;}
.y20f{bottom:269.238150px;}
.y88{bottom:269.988150px;}
.y1bd{bottom:270.738150px;}
.y1f0{bottom:271.488150px;}
.y150{bottom:272.988150px;}
.y176{bottom:275.988150px;}
.y10{bottom:276.590550px;}
.yf5{bottom:281.322600px;}
.y1ce{bottom:281.457150px;}
.yd9{bottom:281.613150px;}
.y19b{bottom:282.608250px;}
.y65{bottom:282.738150px;}
.y35{bottom:282.847500px;}
.ya5{bottom:283.007250px;}
.y136{bottom:283.801050px;}
.y20e{bottom:284.988150px;}
.y1bc{bottom:286.488150px;}
.y87{bottom:287.238150px;}
.y175{bottom:293.238150px;}
.yf4{bottom:298.572600px;}
.y1cd{bottom:298.707150px;}
.yd8{bottom:298.863150px;}
.y19a{bottom:299.858250px;}
.y64{bottom:299.988150px;}
.y34{bottom:300.097500px;}
.ya4{bottom:300.257250px;}
.y20d{bottom:300.738150px;}
.y135{bottom:301.051050px;}
.y1bb{bottom:302.238150px;}
.y1ef{bottom:302.988150px;}
.y86{bottom:304.488150px;}
.y14f{bottom:305.988150px;}
.yf{bottom:306.590550px;}
.y174{bottom:310.488150px;}
.yf3{bottom:315.822600px;}
.y1cc{bottom:315.957150px;}
.yd7{bottom:316.113150px;}
.y20c{bottom:316.488150px;}
.y199{bottom:317.108250px;}
.y63{bottom:317.238150px;}
.y33{bottom:317.347500px;}
.ya3{bottom:317.507250px;}
.y1ba{bottom:317.988150px;}
.y134{bottom:318.301050px;}
.y1ee{bottom:318.738150px;}
.y85{bottom:321.738150px;}
.y14e{bottom:323.238150px;}
.y173{bottom:327.738150px;}
.y20b{bottom:332.238150px;}
.yf2{bottom:333.072600px;}
.y1cb{bottom:333.207150px;}
.yd6{bottom:333.363150px;}
.y198{bottom:334.358250px;}
.y62{bottom:334.488150px;}
.y32{bottom:334.597500px;}
.ya2{bottom:334.757250px;}
.y133{bottom:335.551050px;}
.y84{bottom:338.988150px;}
.y14d{bottom:340.488150px;}
.y1ed{bottom:343.113150px;}
.y172{bottom:344.988150px;}
.y20a{bottom:347.988150px;}
.yf1{bottom:350.322600px;}
.y1ca{bottom:350.457150px;}
.yd5{bottom:350.613150px;}
.y1b9{bottom:350.988150px;}
.y197{bottom:351.608250px;}
.y61{bottom:351.738150px;}
.y31{bottom:351.847500px;}
.ya1{bottom:352.007250px;}
.y132{bottom:352.801050px;}
.y83{bottom:356.238150px;}
.y14c{bottom:357.738150px;}
.y171{bottom:362.238150px;}
.y209{bottom:363.738150px;}
.yf0{bottom:367.572600px;}
.y1c9{bottom:367.707150px;}
.yd4{bottom:367.863150px;}
.y1b8{bottom:368.238150px;}
.y196{bottom:368.858250px;}
.y60{bottom:368.988150px;}
.y30{bottom:369.097500px;}
.ya0{bottom:369.257250px;}
.y131{bottom:370.051050px;}
.y82{bottom:373.488150px;}
.y14b{bottom:374.988150px;}
.y114{bottom:377.613150px;}
.y170{bottom:379.488150px;}
.yef{bottom:384.822600px;}
.y1c8{bottom:384.957150px;}
.yd3{bottom:385.113150px;}
.y1b7{bottom:385.488150px;}
.y195{bottom:386.108250px;}
.y5f{bottom:386.238150px;}
.y2f{bottom:386.347500px;}
.y9f{bottom:386.507250px;}
.y130{bottom:387.301050px;}
.y81{bottom:390.738150px;}
.y14a{bottom:392.238150px;}
.y208{bottom:395.238150px;}
.y16f{bottom:396.738150px;}
.yee{bottom:402.072600px;}
.y1c7{bottom:402.207150px;}
.yd2{bottom:402.363150px;}
.y1b6{bottom:402.738150px;}
.y194{bottom:403.358250px;}
.y5e{bottom:403.488150px;}
.y2e{bottom:403.597500px;}
.y9e{bottom:403.757250px;}
.y12f{bottom:404.551050px;}
.y80{bottom:407.988150px;}
.y149{bottom:409.488150px;}
.y207{bottom:410.988150px;}
.y16e{bottom:413.988150px;}
.yed{bottom:419.322600px;}
.y1c6{bottom:419.457150px;}
.yd1{bottom:419.613150px;}
.y1b5{bottom:419.988150px;}
.y193{bottom:420.608250px;}
.y5d{bottom:420.738150px;}
.y2d{bottom:420.847500px;}
.y9d{bottom:421.007250px;}
.y12e{bottom:421.801050px;}
.y7f{bottom:425.238150px;}
.y148{bottom:426.738150px;}
.y16d{bottom:431.238150px;}
.yec{bottom:436.572600px;}
.y1c5{bottom:436.707150px;}
.yd0{bottom:436.863150px;}
.y1b4{bottom:437.238150px;}
.y192{bottom:437.858250px;}
.y5c{bottom:437.988150px;}
.y9c{bottom:438.257250px;}
.y12d{bottom:439.051050px;}
.y7e{bottom:442.488150px;}
.y147{bottom:443.988150px;}
.y1ec{bottom:446.613150px;}
.y2c{bottom:446.722500px;}
.y16c{bottom:448.488150px;}
.yeb{bottom:453.822600px;}
.y1c4{bottom:453.957150px;}
.ycf{bottom:454.113150px;}
.y1b3{bottom:454.488150px;}
.y191{bottom:455.108250px;}
.y73{bottom:455.238150px;}
.y9b{bottom:455.507250px;}
.y12c{bottom:456.301050px;}
.y206{bottom:458.238150px;}
.y7d{bottom:459.738150px;}
.y146{bottom:461.238150px;}
.y5b{bottom:463.863150px;}
.y16b{bottom:465.738150px;}
.yea{bottom:471.072600px;}
.yce{bottom:471.363150px;}
.y1b2{bottom:471.738150px;}
.y190{bottom:472.358250px;}
.y72{bottom:472.488150px;}
.y9a{bottom:472.757250px;}
.y12b{bottom:473.551050px;}
.y205{bottom:473.988150px;}
.y7c{bottom:476.988150px;}
.ye{bottom:481.470450px;}
.y16a{bottom:482.988150px;}
.ye9{bottom:488.322600px;}
.ycd{bottom:488.613150px;}
.y1b1{bottom:488.988150px;}
.y18f{bottom:489.608250px;}
.y71{bottom:489.738150px;}
.y99{bottom:490.007250px;}
.y12a{bottom:490.801050px;}
.y1db{bottom:491.456700px;}
.y7b{bottom:494.238150px;}
.yd{bottom:495.720450px;}
.y145{bottom:495.738150px;}
.y45{bottom:498.381600px;}
.y169{bottom:500.238150px;}
.y204{bottom:505.488150px;}
.ye8{bottom:505.572600px;}
.ycc{bottom:505.863150px;}
.y18e{bottom:506.858250px;}
.y5a{bottom:506.988150px;}
.y98{bottom:507.257250px;}
.y129{bottom:508.051050px;}
.yc{bottom:509.970450px;}
.y7a{bottom:511.488150px;}
.y168{bottom:517.488150px;}
.y44{bottom:519.381600px;}
.y203{bottom:521.238150px;}
.ye7{bottom:522.822600px;}
.ycb{bottom:523.113150px;}
.y1b0{bottom:523.488150px;}
.y18d{bottom:524.108250px;}
.y59{bottom:524.238150px;}
.y97{bottom:524.507250px;}
.y128{bottom:525.301050px;}
.y1ea{bottom:526.978800px;}
.y144{bottom:527.238150px;}
.y79{bottom:528.738150px;}
.y1e9{bottom:535.618800px;}
.y202{bottom:536.988150px;}
.y1af{bottom:539.238150px;}
.ye6{bottom:540.072600px;}
.yca{bottom:540.363150px;}
.y43{bottom:540.381600px;}
.y18c{bottom:541.358250px;}
.y58{bottom:541.488150px;}
.y96{bottom:541.757250px;}
.y127{bottom:542.551050px;}
.y143{bottom:542.988150px;}
.y78{bottom:545.988150px;}
.y167{bottom:551.988150px;}
.y201{bottom:552.738150px;}
.y1ae{bottom:554.988150px;}
.ye5{bottom:557.322600px;}
.yc9{bottom:557.613150px;}
.y18b{bottom:558.608250px;}
.y57{bottom:558.738150px;}
.y95{bottom:559.007250px;}
.y126{bottom:559.801050px;}
.y42{bottom:561.381600px;}
.y77{bottom:563.238150px;}
.y166{bottom:567.738150px;}
.y200{bottom:568.488150px;}
.y1ad{bottom:570.738150px;}
.ye4{bottom:574.572600px;}
.yc8{bottom:574.863150px;}
.y18a{bottom:575.858250px;}
.y56{bottom:575.988150px;}
.y94{bottom:576.257250px;}
.y125{bottom:577.051050px;}
.y1e6{bottom:582.541200px;}
.y165{bottom:583.488150px;}
.y1ff{bottom:584.238150px;}
.y1ac{bottom:586.488150px;}
.y1e8{bottom:587.581200px;}
.y41{bottom:588.579300px;}
.y1e5{bottom:591.181200px;}
.yc7{bottom:592.113150px;}
.y189{bottom:593.108250px;}
.y55{bottom:593.238150px;}
.y93{bottom:593.507250px;}
.y124{bottom:594.301050px;}
.y1e7{bottom:596.221200px;}
.y76{bottom:597.738150px;}
.y164{bottom:599.238150px;}
.y1e4{bottom:599.821200px;}
.y1fe{bottom:599.988150px;}
.y1ab{bottom:602.238150px;}
.yc6{bottom:609.363150px;}
.y188{bottom:610.358250px;}
.y54{bottom:610.488150px;}
.y92{bottom:610.757250px;}
.y123{bottom:611.551050px;}
.y75{bottom:613.488150px;}
.y163{bottom:614.988150px;}
.y1fd{bottom:615.738150px;}
.y1aa{bottom:617.988150px;}
.y103{bottom:619.393650px;}
.yc5{bottom:626.613150px;}
.y187{bottom:627.608250px;}
.y53{bottom:627.738150px;}
.y122{bottom:628.801050px;}
.y74{bottom:629.238150px;}
.y162{bottom:630.738150px;}
.y1fc{bottom:631.488150px;}
.y1a9{bottom:633.738150px;}
.y110{bottom:635.668500px;}
.y2b{bottom:635.988150px;}
.y186{bottom:644.858250px;}
.y52{bottom:644.988150px;}
.y121{bottom:646.051050px;}
.y1fb{bottom:647.238150px;}
.y1e3{bottom:647.578800px;}
.y1a8{bottom:649.488150px;}
.y2a{bottom:650.988150px;}
.y107{bottom:651.399515px;}
.y1dd{bottom:652.078800px;}
.yc4{bottom:652.488150px;}
.y1eb{bottom:653.613150px;}
.ybd{bottom:654.720150px;}
.y1e2{bottom:656.218800px;}
.y185{bottom:662.108250px;}
.y51{bottom:662.238150px;}
.y1fa{bottom:662.988150px;}
.yb{bottom:663.100500px;}
.y120{bottom:663.301050px;}
.y161{bottom:663.738150px;}
.y104{bottom:663.835200px;}
.y1a7{bottom:665.238150px;}
.y108{bottom:669.959891px;}
.y29{bottom:671.988150px;}
.ybc{bottom:674.616600px;}
.ya{bottom:677.350500px;}
.yc3{bottom:678.363150px;}
.y1f9{bottom:678.738150px;}
.y184{bottom:679.358250px;}
.y50{bottom:679.488150px;}
.y11f{bottom:680.551050px;}
.y160{bottom:680.988150px;}
.y28{bottom:686.988150px;}
.y109{bottom:688.520268px;}
.y9{bottom:691.600500px;}
.ybb{bottom:692.616600px;}
.y1f8{bottom:694.488150px;}
.y183{bottom:696.608250px;}
.y4f{bottom:696.738150px;}
.y11e{bottom:697.801050px;}
.y15f{bottom:698.238150px;}
.y27{bottom:701.988150px;}
.y1e1{bottom:702.176400px;}
.y112{bottom:705.363150px;}
.y10a{bottom:707.080645px;}
.y8{bottom:709.600500px;}
.y1f7{bottom:710.238150px;}
.yba{bottom:710.616600px;}
.y1e0{bottom:710.816400px;}
.y182{bottom:713.858250px;}
.y4e{bottom:713.988150px;}
.y11d{bottom:715.051050px;}
.y15e{bottom:715.488150px;}
.y26{bottom:716.988150px;}
.yc2{bottom:721.488150px;}
.yb9{bottom:724.116600px;}
.y10b{bottom:725.641021px;}
.y1f6{bottom:725.988150px;}
.y4d{bottom:731.238150px;}
.y25{bottom:731.988150px;}
.y11c{bottom:732.301050px;}
.y15d{bottom:732.738150px;}
.yc1{bottom:737.238150px;}
.y181{bottom:741.738150px;}
.yb8{bottom:742.116600px;}
.y10c{bottom:744.201398px;}
.y7{bottom:745.600500px;}
.y24{bottom:746.988150px;}
.y4c{bottom:748.488150px;}
.y11b{bottom:749.551050px;}
.y15c{bottom:749.988150px;}
.y105{bottom:755.344610px;}
.yb7{bottom:755.616600px;}
.y180{bottom:757.488150px;}
.y1df{bottom:758.638800px;}
.y6{bottom:759.850500px;}
.y23{bottom:761.988150px;}
.y10d{bottom:762.761774px;}
.y4b{bottom:765.738150px;}
.y11a{bottom:766.801050px;}
.y15b{bottom:767.238150px;}
.y1de{bottom:767.278800px;}
.yc0{bottom:770.238150px;}
.y17f{bottom:773.238150px;}
.yb6{bottom:773.616600px;}
.y22{bottom:776.988150px;}
.y5{bottom:777.850500px;}
.y10e{bottom:781.322151px;}
.y4a{bottom:782.988150px;}
.y119{bottom:784.051050px;}
.y15a{bottom:784.488150px;}
.ybf{bottom:785.988150px;}
.y17e{bottom:788.988150px;}
.yb5{bottom:791.616600px;}
.y21{bottom:791.988150px;}
.yb4{bottom:796.116600px;}
.y10f{bottom:799.882528px;}
.y49{bottom:800.238150px;}
.y118{bottom:801.301050px;}
.ybe{bottom:801.738150px;}
.y17d{bottom:804.738150px;}
.y20{bottom:806.988150px;}
.yb3{bottom:809.616600px;}
.y106{bottom:811.212042px;}
.y48{bottom:817.488150px;}
.y1dc{bottom:817.678800px;}
.y117{bottom:818.551050px;}
.y17c{bottom:820.488150px;}
.y1f{bottom:821.988150px;}
.y4{bottom:822.850500px;}
.yb2{bottom:828.987150px;}
.y47{bottom:834.738150px;}
.y102{bottom:835.393650px;}
.y116{bottom:835.801050px;}
.y159{bottom:836.238150px;}
.y3{bottom:846.850500px;}
.yb1{bottom:850.093200px;}
.y101{bottom:850.393650px;}
.y1da{bottom:851.456700px;}
.y1e{bottom:851.988150px;}
.y115{bottom:853.051050px;}
.y46{bottom:897.872550px;}
.y2{bottom:897.914250px;}
.y1d{bottom:897.960300px;}
.y1{bottom:911.864250px;}
.h13{height:21.178125px;}
.h10{height:30.702000px;}
.hf{height:32.895000px;}
.he{height:32.962200px;}
.h11{height:34.046764px;}
.hd{height:35.088000px;}
.h2{height:40.368000px;}
.ha{height:40.771680px;}
.h6{height:40.774000px;}
.h5{height:45.414000px;}
.h8{height:47.212000px;}
.h7{height:47.937000px;}
.hb{height:50.460000px;}
.h14{height:52.983000px;}
.h9{height:55.506000px;}
.hc{height:55.878900px;}
.h4{height:60.552000px;}
.h3{height:80.736000px;}
.h12{height:188.151000px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w2{width:487.993500px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x17{left:41.274900px;}
.x19{left:94.606350px;}
.x1{left:95.626800px;}
.x16{left:97.645207px;}
.x15{left:105.015796px;}
.x5{left:118.169250px;}
.x22{left:129.899250px;}
.x18{left:138.795750px;}
.xc{left:140.669250px;}
.x21{left:142.513650px;}
.x1a{left:150.289650px;}
.x1e{left:156.683250px;}
.x1d{left:157.885650px;}
.xd{left:159.448800px;}
.x12{left:165.517500px;}
.xe{left:176.456700px;}
.x1b{left:192.459000px;}
.x9{left:196.639800px;}
.x26{left:201.510450px;}
.x28{left:204.116850px;}
.x27{left:206.118450px;}
.xa{left:214.737150px;}
.x8{left:234.786900px;}
.x7{left:240.073500px;}
.x29{left:271.508850px;}
.x2a{left:274.108050px;}
.xf{left:308.267700px;}
.x6{left:315.543750px;}
.x25{left:350.104050px;}
.xb{left:353.874600px;}
.x23{left:359.917650px;}
.x24{left:369.119250px;}
.x1c{left:371.689650px;}
.x20{left:376.715250px;}
.x1f{left:377.917650px;}
.x13{left:389.092024px;}
.x10{left:431.574900px;}
.x11{left:448.582650px;}
.x4{left:453.298800px;}
.x3{left:456.430800px;}
.x2{left:460.386150px;}
.x2b{left:461.437650px;}
.x2c{left:475.254450px;}
.x14{left:503.458410px;}
.x2d{left:512.111250px;}
.x2e{left:514.516050px;}
@media print{
.v3{vertical-align:-17.600000pt;}
.v1{vertical-align:-16.000000pt;}
.v4{vertical-align:-0.993613pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.600000pt;}
.ls3e{letter-spacing:-1.232000pt;}
.ls3c{letter-spacing:-1.114667pt;}
.ls3d{letter-spacing:-1.056000pt;}
.ls44{letter-spacing:-0.997333pt;}
.lsab{letter-spacing:-0.800000pt;}
.lsb3{letter-spacing:-0.746667pt;}
.ls3f{letter-spacing:-0.704000pt;}
.ls89{letter-spacing:-0.693333pt;}
.ls26{letter-spacing:-0.645333pt;}
.ls9d{letter-spacing:-0.640000pt;}
.ls22{letter-spacing:-0.586667pt;}
.ls13{letter-spacing:-0.557333pt;}
.lsb2{letter-spacing:-0.533333pt;}
.ls24{letter-spacing:-0.528000pt;}
.ls9c{letter-spacing:-0.480000pt;}
.ls20{letter-spacing:-0.469333pt;}
.ls1{letter-spacing:-0.426667pt;}
.ls21{letter-spacing:-0.410667pt;}
.ls12{letter-spacing:-0.405333pt;}
.ls2{letter-spacing:-0.373333pt;}
.ls6{letter-spacing:-0.354667pt;}
.ls2e{letter-spacing:-0.352000pt;}
.lsaa{letter-spacing:-0.320000pt;}
.ls23{letter-spacing:-0.293333pt;}
.ls88{letter-spacing:-0.266667pt;}
.ls5{letter-spacing:-0.253333pt;}
.ls17{letter-spacing:-0.234667pt;}
.ls65{letter-spacing:-0.213333pt;}
.ls14{letter-spacing:-0.202667pt;}
.ls15{letter-spacing:-0.176000pt;}
.ls30{letter-spacing:-0.160000pt;}
.ls7{letter-spacing:-0.152000pt;}
.ls66{letter-spacing:-0.144000pt;}
.ls16{letter-spacing:-0.117333pt;}
.ls75{letter-spacing:-0.106667pt;}
.ls25{letter-spacing:-0.058667pt;}
.ls6f{letter-spacing:-0.053333pt;}
.ls4{letter-spacing:-0.050667pt;}
.ls39{letter-spacing:-0.048000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa2{letter-spacing:0.021333pt;}
.lsa1{letter-spacing:0.023467pt;}
.lsa3{letter-spacing:0.024000pt;}
.ls48{letter-spacing:0.029333pt;}
.ls4e{letter-spacing:0.045333pt;}
.ls85{letter-spacing:0.047467pt;}
.ls86{letter-spacing:0.048000pt;}
.ls87{letter-spacing:0.053333pt;}
.ls1f{letter-spacing:0.058667pt;}
.ls6d{letter-spacing:0.066133pt;}
.ls2d{letter-spacing:0.070400pt;}
.ls72{letter-spacing:0.080000pt;}
.ls5c{letter-spacing:0.081067pt;}
.ls55{letter-spacing:0.088000pt;}
.lsa7{letter-spacing:0.088533pt;}
.lsa4{letter-spacing:0.090133pt;}
.ls81{letter-spacing:0.099733pt;}
.ls82{letter-spacing:0.100000pt;}
.ls84{letter-spacing:0.100267pt;}
.ls8{letter-spacing:0.101333pt;}
.ls74{letter-spacing:0.106667pt;}
.ls56{letter-spacing:0.116267pt;}
.ls1b{letter-spacing:0.117333pt;}
.ls9b{letter-spacing:0.128533pt;}
.ls9f{letter-spacing:0.129600pt;}
.ls71{letter-spacing:0.133333pt;}
.ls93{letter-spacing:0.140267pt;}
.ls28{letter-spacing:0.146667pt;}
.ls9a{letter-spacing:0.148267pt;}
.ls8b{letter-spacing:0.152533pt;}
.ls38{letter-spacing:0.160000pt;}
.ls5d{letter-spacing:0.161067pt;}
.ls8a{letter-spacing:0.161600pt;}
.ls27{letter-spacing:0.176000pt;}
.ls7d{letter-spacing:0.196800pt;}
.ls68{letter-spacing:0.198400pt;}
.ls9{letter-spacing:0.202667pt;}
.ls2a{letter-spacing:0.205333pt;}
.lsa0{letter-spacing:0.205867pt;}
.ls51{letter-spacing:0.209067pt;}
.ls67{letter-spacing:0.213333pt;}
.ls98{letter-spacing:0.216000pt;}
.ls97{letter-spacing:0.216533pt;}
.ls90{letter-spacing:0.232000pt;}
.ls92{letter-spacing:0.232533pt;}
.ls8f{letter-spacing:0.233067pt;}
.ls2b{letter-spacing:0.234667pt;}
.ls2c{letter-spacing:0.236800pt;}
.ls91{letter-spacing:0.240000pt;}
.ls70{letter-spacing:0.252267pt;}
.ls0{letter-spacing:0.253333pt;}
.ls49{letter-spacing:0.258133pt;}
.ls7b{letter-spacing:0.259200pt;}
.ls64{letter-spacing:0.266667pt;}
.ls32{letter-spacing:0.279467pt;}
.lsd{letter-spacing:0.293333pt;}
.ls58{letter-spacing:0.302400pt;}
.ls57{letter-spacing:0.312000pt;}
.ls42{letter-spacing:0.322667pt;}
.ls50{letter-spacing:0.330667pt;}
.lsc{letter-spacing:0.352000pt;}
.ls52{letter-spacing:0.360000pt;}
.ls63{letter-spacing:0.373333pt;}
.ls41{letter-spacing:0.381333pt;}
.ls1c{letter-spacing:0.410667pt;}
.ls33{letter-spacing:0.426667pt;}
.ls31{letter-spacing:0.429867pt;}
.ls1d{letter-spacing:0.440000pt;}
.ls19{letter-spacing:0.469333pt;}
.ls62{letter-spacing:0.480000pt;}
.ls35{letter-spacing:0.493867pt;}
.ls1a{letter-spacing:0.498667pt;}
.ls37{letter-spacing:0.508800pt;}
.lsa{letter-spacing:0.528000pt;}
.ls6a{letter-spacing:0.533333pt;}
.ls5a{letter-spacing:0.541867pt;}
.ls59{letter-spacing:0.560533pt;}
.ls7a{letter-spacing:0.586133pt;}
.lse{letter-spacing:0.586667pt;}
.ls5f{letter-spacing:0.610133pt;}
.ls60{letter-spacing:0.611733pt;}
.ls5e{letter-spacing:0.612267pt;}
.ls73{letter-spacing:0.616000pt;}
.ls3b{letter-spacing:0.618667pt;}
.ls46{letter-spacing:0.636267pt;}
.ls40{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.645333pt;}
.ls2f{letter-spacing:0.664533pt;}
.lsb1{letter-spacing:0.666667pt;}
.ls43{letter-spacing:0.674667pt;}
.ls7f{letter-spacing:0.690667pt;}
.ls95{letter-spacing:0.693333pt;}
.ls1e{letter-spacing:0.704000pt;}
.ls76{letter-spacing:0.714667pt;}
.ls96{letter-spacing:0.716267pt;}
.ls36{letter-spacing:0.746667pt;}
.ls34{letter-spacing:0.760000pt;}
.ls10{letter-spacing:0.762667pt;}
.ls4f{letter-spacing:0.771733pt;}
.ls94{letter-spacing:0.787733pt;}
.ls80{letter-spacing:0.792000pt;}
.ls6b{letter-spacing:0.800000pt;}
.ls53{letter-spacing:0.802133pt;}
.lsb{letter-spacing:0.821333pt;}
.ls7c{letter-spacing:0.832533pt;}
.ls29{letter-spacing:0.850667pt;}
.ls69{letter-spacing:0.853333pt;}
.ls3a{letter-spacing:0.880000pt;}
.ls61{letter-spacing:0.906667pt;}
.ls45{letter-spacing:0.909333pt;}
.ls54{letter-spacing:0.938667pt;}
.lsb0{letter-spacing:0.944000pt;}
.ls77{letter-spacing:0.949333pt;}
.lsaf{letter-spacing:0.960000pt;}
.ls6e{letter-spacing:0.961067pt;}
.ls4c{letter-spacing:0.978133pt;}
.ls4b{letter-spacing:0.997333pt;}
.ls8d{letter-spacing:1.047467pt;}
.ls8e{letter-spacing:1.048000pt;}
.ls8c{letter-spacing:1.066667pt;}
.ls4d{letter-spacing:1.114667pt;}
.ls5b{letter-spacing:1.126400pt;}
.lsac{letter-spacing:1.173333pt;}
.ls79{letter-spacing:1.290667pt;}
.ls47{letter-spacing:1.320000pt;}
.lsad{letter-spacing:1.333333pt;}
.lsae{letter-spacing:1.346667pt;}
.lsa8{letter-spacing:1.422400pt;}
.lsa9{letter-spacing:1.422933pt;}
.ls9e{letter-spacing:1.444267pt;}
.ls83{letter-spacing:1.461867pt;}
.ls99{letter-spacing:1.549867pt;}
.ls11{letter-spacing:1.584000pt;}
.ls6c{letter-spacing:1.598933pt;}
.lsa5{letter-spacing:1.866667pt;}
.ls7e{letter-spacing:2.228267pt;}
.ls78{letter-spacing:2.452800pt;}
.ls4a{letter-spacing:2.757333pt;}
.lsa6{letter-spacing:5.568000pt;}
.ls18{letter-spacing:32.000000pt;}
.ws5f{word-spacing:-15.781333pt;}
.ws57{word-spacing:-15.664000pt;}
.ws6d{word-spacing:-15.605333pt;}
.ws5e{word-spacing:-15.546667pt;}
.wsb{word-spacing:-15.488000pt;}
.ws63{word-spacing:-15.276800pt;}
.ws8d{word-spacing:-15.200000pt;}
.ws5a{word-spacing:-15.018667pt;}
.ws52{word-spacing:-14.842667pt;}
.ws31{word-spacing:-14.784000pt;}
.ws77{word-spacing:-14.725333pt;}
.wsd{word-spacing:-14.666667pt;}
.wsc{word-spacing:-14.549333pt;}
.ws51{word-spacing:-14.490667pt;}
.ws76{word-spacing:-14.373333pt;}
.ws5b{word-spacing:-14.314667pt;}
.ws5c{word-spacing:-14.256000pt;}
.ws32{word-spacing:-14.138667pt;}
.ws4d{word-spacing:-14.080000pt;}
.ws75{word-spacing:-14.021333pt;}
.ws7f{word-spacing:-13.493333pt;}
.ws8a{word-spacing:-13.440000pt;}
.ws2e{word-spacing:-13.333333pt;}
.wsa{word-spacing:-12.920000pt;}
.ws8c{word-spacing:-12.906667pt;}
.ws1{word-spacing:-12.666667pt;}
.ws33{word-spacing:-12.000000pt;}
.ws40{word-spacing:-11.120000pt;}
.ws7d{word-spacing:-11.048000pt;}
.ws99{word-spacing:-10.944000pt;}
.ws9{word-spacing:-10.880000pt;}
.ws7e{word-spacing:-10.240000pt;}
.ws80{word-spacing:-10.216000pt;}
.ws78{word-spacing:-10.100000pt;}
.ws7a{word-spacing:-10.048000pt;}
.ws8b{word-spacing:-10.024000pt;}
.ws79{word-spacing:-10.000000pt;}
.ws30{word-spacing:-9.533333pt;}
.ws0{word-spacing:-8.960000pt;}
.ws2f{word-spacing:-8.666667pt;}
.wse{word-spacing:-1.874667pt;}
.ws82{word-spacing:-1.066667pt;}
.ws95{word-spacing:-0.800000pt;}
.ws14{word-spacing:-0.762667pt;}
.ws43{word-spacing:-0.746667pt;}
.ws18{word-spacing:-0.704000pt;}
.ws45{word-spacing:-0.693333pt;}
.ws8{word-spacing:-0.658667pt;}
.ws34{word-spacing:-0.645333pt;}
.ws36{word-spacing:-0.640000pt;}
.ws38{word-spacing:-0.624000pt;}
.ws5{word-spacing:-0.608000pt;}
.ws25{word-spacing:-0.586667pt;}
.ws66{word-spacing:-0.576000pt;}
.ws89{word-spacing:-0.533333pt;}
.ws29{word-spacing:-0.528000pt;}
.ws91{word-spacing:-0.480000pt;}
.ws1b{word-spacing:-0.469333pt;}
.ws41{word-spacing:-0.426667pt;}
.ws19{word-spacing:-0.410667pt;}
.ws64{word-spacing:-0.373333pt;}
.ws27{word-spacing:-0.352000pt;}
.ws71{word-spacing:-0.320000pt;}
.ws10{word-spacing:-0.304000pt;}
.ws55{word-spacing:-0.293333pt;}
.ws11{word-spacing:-0.253333pt;}
.ws1e{word-spacing:-0.234667pt;}
.ws74{word-spacing:-0.192000pt;}
.ws4a{word-spacing:-0.176000pt;}
.ws7b{word-spacing:-0.160000pt;}
.wsf{word-spacing:-0.152000pt;}
.ws1f{word-spacing:-0.117333pt;}
.ws90{word-spacing:-0.106667pt;}
.ws1c{word-spacing:-0.058667pt;}
.ws70{word-spacing:-0.053333pt;}
.ws12{word-spacing:-0.050667pt;}
.ws39{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.ws6e{word-spacing:0.053333pt;}
.ws1a{word-spacing:0.058667pt;}
.wsa1{word-spacing:0.106667pt;}
.ws17{word-spacing:0.117333pt;}
.ws35{word-spacing:0.160000pt;}
.ws22{word-spacing:0.176000pt;}
.ws86{word-spacing:0.213333pt;}
.ws28{word-spacing:0.234667pt;}
.ws81{word-spacing:0.266667pt;}
.ws4b{word-spacing:0.293333pt;}
.ws53{word-spacing:0.352000pt;}
.ws37{word-spacing:0.373333pt;}
.ws3c{word-spacing:0.410667pt;}
.ws94{word-spacing:0.426667pt;}
.ws62{word-spacing:0.469333pt;}
.ws98{word-spacing:0.480000pt;}
.ws46{word-spacing:0.528000pt;}
.ws9d{word-spacing:0.533333pt;}
.ws2c{word-spacing:0.586667pt;}
.ws73{word-spacing:0.624000pt;}
.ws72{word-spacing:0.640000pt;}
.ws21{word-spacing:0.645333pt;}
.ws6a{word-spacing:0.704000pt;}
.ws67{word-spacing:0.746667pt;}
.ws7{word-spacing:0.760000pt;}
.ws23{word-spacing:0.762667pt;}
.ws2a{word-spacing:0.821333pt;}
.ws6b{word-spacing:0.880000pt;}
.ws68{word-spacing:0.906667pt;}
.ws20{word-spacing:0.938667pt;}
.ws8e{word-spacing:0.960000pt;}
.ws2d{word-spacing:0.997333pt;}
.ws3e{word-spacing:1.056000pt;}
.ws8f{word-spacing:1.066667pt;}
.ws4{word-spacing:1.114667pt;}
.ws15{word-spacing:1.173333pt;}
.ws4c{word-spacing:1.194667pt;}
.ws69{word-spacing:1.226667pt;}
.ws4e{word-spacing:1.232000pt;}
.ws6{word-spacing:1.266667pt;}
.ws93{word-spacing:1.280000pt;}
.ws47{word-spacing:1.290667pt;}
.ws42{word-spacing:1.333333pt;}
.ws3d{word-spacing:1.349333pt;}
.ws26{word-spacing:1.408000pt;}
.ws87{word-spacing:1.440000pt;}
.ws13{word-spacing:1.466667pt;}
.ws2b{word-spacing:1.525333pt;}
.ws44{word-spacing:1.546667pt;}
.ws50{word-spacing:1.584000pt;}
.ws16{word-spacing:1.642667pt;}
.ws6f{word-spacing:1.653333pt;}
.ws24{word-spacing:1.701333pt;}
.ws6c{word-spacing:1.706667pt;}
.ws5d{word-spacing:1.760000pt;}
.ws4f{word-spacing:1.818667pt;}
.ws9f{word-spacing:1.866667pt;}
.ws60{word-spacing:1.877333pt;}
.ws58{word-spacing:1.936000pt;}
.ws1d{word-spacing:1.994667pt;}
.ws83{word-spacing:2.080000pt;}
.ws65{word-spacing:2.112000pt;}
.ws59{word-spacing:2.170667pt;}
.ws61{word-spacing:2.288000pt;}
.ws9a{word-spacing:2.346667pt;}
.ws54{word-spacing:2.581333pt;}
.ws9c{word-spacing:2.720000pt;}
.ws96{word-spacing:3.680000pt;}
.ws56{word-spacing:5.456000pt;}
.ws3f{word-spacing:9.360000pt;}
.ws9b{word-spacing:12.000000pt;}
.ws84{word-spacing:12.533333pt;}
.ws88{word-spacing:13.333333pt;}
.ws97{word-spacing:13.440000pt;}
.ws92{word-spacing:13.493333pt;}
.ws85{word-spacing:13.546667pt;}
.ws9e{word-spacing:13.813333pt;}
.wsa0{word-spacing:14.080000pt;}
.ws48{word-spacing:32.064000pt;}
.ws7c{word-spacing:66.666667pt;}
.ws3a{word-spacing:88.171733pt;}
.ws3b{word-spacing:241.305600pt;}
.ws49{word-spacing:267.613047pt;}
.ws3{word-spacing:913.024000pt;}
._2{margin-left:-881.021333pt;}
._18{margin-left:-22.880000pt;}
._13{margin-left:-17.634667pt;}
._1e{margin-left:-16.478933pt;}
._9{margin-left:-15.550400pt;}
._3{margin-left:-13.540267pt;}
._20{margin-left:-11.853867pt;}
._e{margin-left:-9.378667pt;}
._17{margin-left:-8.213333pt;}
._7{margin-left:-3.710933pt;}
._16{margin-left:-2.757333pt;}
._0{margin-left:-1.707733pt;}
._6{width:1.074400pt;}
._f{width:2.292267pt;}
._d{width:9.360000pt;}
._c{width:11.120000pt;}
._1b{width:15.377067pt;}
._1c{width:17.418667pt;}
._b{width:20.472000pt;}
._4{width:31.999467pt;}
._1f{width:33.024000pt;}
._15{width:57.141333pt;}
._19{width:63.536000pt;}
._1d{width:64.709333pt;}
._14{width:66.176000pt;}
._1a{width:80.021333pt;}
._12{width:162.786897pt;}
._10{width:170.321794pt;}
._11{width:218.926020pt;}
._a{width:354.293867pt;}
._5{width:367.830400pt;}
._8{width:471.058987pt;}
._1{width:588.069333pt;}
.fsd{font-size:25.600000pt;}
.fs9{font-size:34.666667pt;}
.fs1{font-size:37.333333pt;}
.fsa{font-size:38.133333pt;}
.fsb{font-size:40.000000pt;}
.fsc{font-size:41.400533pt;}
.fs0{font-size:42.666667pt;}
.fs7{font-size:43.093333pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fse{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y111{bottom:1.107600pt;}
.y1c{bottom:80.524933pt;}
.y91{bottom:81.259867pt;}
.ye3{bottom:81.260000pt;}
.y100{bottom:81.397867pt;}
.y1d9{bottom:81.517467pt;}
.y1a6{bottom:82.540667pt;}
.y70{bottom:82.656133pt;}
.y40{bottom:82.753333pt;}
.yb0{bottom:82.895333pt;}
.y17b{bottom:83.322800pt;}
.y141{bottom:83.600933pt;}
.y219{bottom:85.322800pt;}
.y1f5{bottom:87.322800pt;}
.y1b{bottom:93.858267pt;}
.y90{bottom:93.926533pt;}
.ye2{bottom:93.926667pt;}
.yff{bottom:96.731200pt;}
.y1d8{bottom:96.850800pt;}
.y1a5{bottom:97.874000pt;}
.y6f{bottom:97.989467pt;}
.y3f{bottom:98.086667pt;}
.yaf{bottom:98.228667pt;}
.y17a{bottom:98.656133pt;}
.y140{bottom:98.934267pt;}
.y218{bottom:99.322800pt;}
.y1f4{bottom:101.322800pt;}
.y1c3{bottom:106.593200pt;}
.yfe{bottom:112.064533pt;}
.y1d7{bottom:112.184133pt;}
.y1a{bottom:112.524933pt;}
.y1a4{bottom:113.207333pt;}
.y6e{bottom:113.322800pt;}
.y3e{bottom:113.420000pt;}
.yae{bottom:113.562000pt;}
.y13f{bottom:114.267600pt;}
.y158{bottom:115.322800pt;}
.y19{bottom:125.858267pt;}
.y217{bottom:127.322800pt;}
.yfd{bottom:127.397867pt;}
.y1d6{bottom:127.517467pt;}
.ye1{bottom:127.656133pt;}
.y1a3{bottom:128.540667pt;}
.y6d{bottom:128.656133pt;}
.y3d{bottom:128.753333pt;}
.yad{bottom:128.895333pt;}
.y157{bottom:129.322800pt;}
.y13e{bottom:129.600933pt;}
.y8f{bottom:132.656133pt;}
.y142{bottom:136.322800pt;}
.y18{bottom:139.191600pt;}
.y216{bottom:141.322800pt;}
.yfc{bottom:142.731200pt;}
.y1d5{bottom:142.850800pt;}
.ye0{bottom:142.989467pt;}
.y156{bottom:143.322800pt;}
.y1a2{bottom:143.874000pt;}
.y6c{bottom:143.989467pt;}
.y3c{bottom:144.086667pt;}
.yac{bottom:144.228667pt;}
.y13d{bottom:144.934267pt;}
.y8e{bottom:147.989467pt;}
.y1c2{bottom:148.656133pt;}
.y17{bottom:152.524933pt;}
.y215{bottom:155.322800pt;}
.y155{bottom:157.322800pt;}
.yfb{bottom:158.064533pt;}
.y1d4{bottom:158.184133pt;}
.ydf{bottom:158.322800pt;}
.y1a1{bottom:159.207333pt;}
.y6b{bottom:159.322800pt;}
.y3b{bottom:159.420000pt;}
.yab{bottom:159.562000pt;}
.y13c{bottom:160.267600pt;}
.y8d{bottom:163.322800pt;}
.y1c1{bottom:163.989467pt;}
.y16{bottom:165.858267pt;}
.y214{bottom:169.322800pt;}
.y179{bottom:171.322800pt;}
.yfa{bottom:173.397867pt;}
.y1d3{bottom:173.517467pt;}
.yde{bottom:173.656133pt;}
.y1a0{bottom:174.540667pt;}
.y6a{bottom:174.656133pt;}
.y3a{bottom:174.753333pt;}
.yaa{bottom:174.895333pt;}
.y13b{bottom:175.600933pt;}
.y8c{bottom:178.656133pt;}
.y15{bottom:179.191600pt;}
.y1c0{bottom:179.322800pt;}
.y213{bottom:183.322800pt;}
.y178{bottom:185.322800pt;}
.y154{bottom:186.656133pt;}
.yf9{bottom:188.731200pt;}
.y1d2{bottom:188.850800pt;}
.ydd{bottom:188.989467pt;}
.y19f{bottom:189.874000pt;}
.y69{bottom:189.989467pt;}
.y39{bottom:190.086667pt;}
.ya9{bottom:190.228667pt;}
.y13a{bottom:190.934267pt;}
.y14{bottom:192.524933pt;}
.y8b{bottom:193.989467pt;}
.y1bf{bottom:194.656133pt;}
.y212{bottom:197.322800pt;}
.y113{bottom:197.656133pt;}
.y1f3{bottom:199.322800pt;}
.y153{bottom:200.656133pt;}
.yf8{bottom:204.064533pt;}
.y1d1{bottom:204.184133pt;}
.ydc{bottom:204.322800pt;}
.y19e{bottom:205.207333pt;}
.y68{bottom:205.322800pt;}
.y38{bottom:205.420000pt;}
.ya8{bottom:205.562000pt;}
.y13{bottom:205.858267pt;}
.y139{bottom:206.267600pt;}
.y8a{bottom:209.322800pt;}
.y1be{bottom:209.989467pt;}
.y211{bottom:211.322800pt;}
.y1f2{bottom:213.322800pt;}
.y152{bottom:214.656133pt;}
.y12{bottom:219.191600pt;}
.yf7{bottom:219.397867pt;}
.y1d0{bottom:219.517467pt;}
.ydb{bottom:219.656133pt;}
.y19d{bottom:220.540667pt;}
.y67{bottom:220.656133pt;}
.y37{bottom:220.753333pt;}
.ya7{bottom:220.895333pt;}
.y138{bottom:221.600933pt;}
.y89{bottom:224.656133pt;}
.y210{bottom:225.322800pt;}
.y1f1{bottom:227.322800pt;}
.y151{bottom:228.656133pt;}
.y177{bottom:229.989467pt;}
.y11{bottom:232.524933pt;}
.yf6{bottom:234.731200pt;}
.y1cf{bottom:234.850800pt;}
.yda{bottom:234.989467pt;}
.y19c{bottom:235.874000pt;}
.y66{bottom:235.989467pt;}
.y36{bottom:236.086667pt;}
.ya6{bottom:236.228667pt;}
.y137{bottom:236.934267pt;}
.y20f{bottom:239.322800pt;}
.y88{bottom:239.989467pt;}
.y1bd{bottom:240.656133pt;}
.y1f0{bottom:241.322800pt;}
.y150{bottom:242.656133pt;}
.y176{bottom:245.322800pt;}
.y10{bottom:245.858267pt;}
.yf5{bottom:250.064533pt;}
.y1ce{bottom:250.184133pt;}
.yd9{bottom:250.322800pt;}
.y19b{bottom:251.207333pt;}
.y65{bottom:251.322800pt;}
.y35{bottom:251.420000pt;}
.ya5{bottom:251.562000pt;}
.y136{bottom:252.267600pt;}
.y20e{bottom:253.322800pt;}
.y1bc{bottom:254.656133pt;}
.y87{bottom:255.322800pt;}
.y175{bottom:260.656133pt;}
.yf4{bottom:265.397867pt;}
.y1cd{bottom:265.517467pt;}
.yd8{bottom:265.656133pt;}
.y19a{bottom:266.540667pt;}
.y64{bottom:266.656133pt;}
.y34{bottom:266.753333pt;}
.ya4{bottom:266.895333pt;}
.y20d{bottom:267.322800pt;}
.y135{bottom:267.600933pt;}
.y1bb{bottom:268.656133pt;}
.y1ef{bottom:269.322800pt;}
.y86{bottom:270.656133pt;}
.y14f{bottom:271.989467pt;}
.yf{bottom:272.524933pt;}
.y174{bottom:275.989467pt;}
.yf3{bottom:280.731200pt;}
.y1cc{bottom:280.850800pt;}
.yd7{bottom:280.989467pt;}
.y20c{bottom:281.322800pt;}
.y199{bottom:281.874000pt;}
.y63{bottom:281.989467pt;}
.y33{bottom:282.086667pt;}
.ya3{bottom:282.228667pt;}
.y1ba{bottom:282.656133pt;}
.y134{bottom:282.934267pt;}
.y1ee{bottom:283.322800pt;}
.y85{bottom:285.989467pt;}
.y14e{bottom:287.322800pt;}
.y173{bottom:291.322800pt;}
.y20b{bottom:295.322800pt;}
.yf2{bottom:296.064533pt;}
.y1cb{bottom:296.184133pt;}
.yd6{bottom:296.322800pt;}
.y198{bottom:297.207333pt;}
.y62{bottom:297.322800pt;}
.y32{bottom:297.420000pt;}
.ya2{bottom:297.562000pt;}
.y133{bottom:298.267600pt;}
.y84{bottom:301.322800pt;}
.y14d{bottom:302.656133pt;}
.y1ed{bottom:304.989467pt;}
.y172{bottom:306.656133pt;}
.y20a{bottom:309.322800pt;}
.yf1{bottom:311.397867pt;}
.y1ca{bottom:311.517467pt;}
.yd5{bottom:311.656133pt;}
.y1b9{bottom:311.989467pt;}
.y197{bottom:312.540667pt;}
.y61{bottom:312.656133pt;}
.y31{bottom:312.753333pt;}
.ya1{bottom:312.895333pt;}
.y132{bottom:313.600933pt;}
.y83{bottom:316.656133pt;}
.y14c{bottom:317.989467pt;}
.y171{bottom:321.989467pt;}
.y209{bottom:323.322800pt;}
.yf0{bottom:326.731200pt;}
.y1c9{bottom:326.850800pt;}
.yd4{bottom:326.989467pt;}
.y1b8{bottom:327.322800pt;}
.y196{bottom:327.874000pt;}
.y60{bottom:327.989467pt;}
.y30{bottom:328.086667pt;}
.ya0{bottom:328.228667pt;}
.y131{bottom:328.934267pt;}
.y82{bottom:331.989467pt;}
.y14b{bottom:333.322800pt;}
.y114{bottom:335.656133pt;}
.y170{bottom:337.322800pt;}
.yef{bottom:342.064533pt;}
.y1c8{bottom:342.184133pt;}
.yd3{bottom:342.322800pt;}
.y1b7{bottom:342.656133pt;}
.y195{bottom:343.207333pt;}
.y5f{bottom:343.322800pt;}
.y2f{bottom:343.420000pt;}
.y9f{bottom:343.562000pt;}
.y130{bottom:344.267600pt;}
.y81{bottom:347.322800pt;}
.y14a{bottom:348.656133pt;}
.y208{bottom:351.322800pt;}
.y16f{bottom:352.656133pt;}
.yee{bottom:357.397867pt;}
.y1c7{bottom:357.517467pt;}
.yd2{bottom:357.656133pt;}
.y1b6{bottom:357.989467pt;}
.y194{bottom:358.540667pt;}
.y5e{bottom:358.656133pt;}
.y2e{bottom:358.753333pt;}
.y9e{bottom:358.895333pt;}
.y12f{bottom:359.600933pt;}
.y80{bottom:362.656133pt;}
.y149{bottom:363.989467pt;}
.y207{bottom:365.322800pt;}
.y16e{bottom:367.989467pt;}
.yed{bottom:372.731200pt;}
.y1c6{bottom:372.850800pt;}
.yd1{bottom:372.989467pt;}
.y1b5{bottom:373.322800pt;}
.y193{bottom:373.874000pt;}
.y5d{bottom:373.989467pt;}
.y2d{bottom:374.086667pt;}
.y9d{bottom:374.228667pt;}
.y12e{bottom:374.934267pt;}
.y7f{bottom:377.989467pt;}
.y148{bottom:379.322800pt;}
.y16d{bottom:383.322800pt;}
.yec{bottom:388.064533pt;}
.y1c5{bottom:388.184133pt;}
.yd0{bottom:388.322800pt;}
.y1b4{bottom:388.656133pt;}
.y192{bottom:389.207333pt;}
.y5c{bottom:389.322800pt;}
.y9c{bottom:389.562000pt;}
.y12d{bottom:390.267600pt;}
.y7e{bottom:393.322800pt;}
.y147{bottom:394.656133pt;}
.y1ec{bottom:396.989467pt;}
.y2c{bottom:397.086667pt;}
.y16c{bottom:398.656133pt;}
.yeb{bottom:403.397867pt;}
.y1c4{bottom:403.517467pt;}
.ycf{bottom:403.656133pt;}
.y1b3{bottom:403.989467pt;}
.y191{bottom:404.540667pt;}
.y73{bottom:404.656133pt;}
.y9b{bottom:404.895333pt;}
.y12c{bottom:405.600933pt;}
.y206{bottom:407.322800pt;}
.y7d{bottom:408.656133pt;}
.y146{bottom:409.989467pt;}
.y5b{bottom:412.322800pt;}
.y16b{bottom:413.989467pt;}
.yea{bottom:418.731200pt;}
.yce{bottom:418.989467pt;}
.y1b2{bottom:419.322800pt;}
.y190{bottom:419.874000pt;}
.y72{bottom:419.989467pt;}
.y9a{bottom:420.228667pt;}
.y12b{bottom:420.934267pt;}
.y205{bottom:421.322800pt;}
.y7c{bottom:423.989467pt;}
.ye{bottom:427.973733pt;}
.y16a{bottom:429.322800pt;}
.ye9{bottom:434.064533pt;}
.ycd{bottom:434.322800pt;}
.y1b1{bottom:434.656133pt;}
.y18f{bottom:435.207333pt;}
.y71{bottom:435.322800pt;}
.y99{bottom:435.562000pt;}
.y12a{bottom:436.267600pt;}
.y1db{bottom:436.850400pt;}
.y7b{bottom:439.322800pt;}
.yd{bottom:440.640400pt;}
.y145{bottom:440.656133pt;}
.y45{bottom:443.005867pt;}
.y169{bottom:444.656133pt;}
.y204{bottom:449.322800pt;}
.ye8{bottom:449.397867pt;}
.ycc{bottom:449.656133pt;}
.y18e{bottom:450.540667pt;}
.y5a{bottom:450.656133pt;}
.y98{bottom:450.895333pt;}
.y129{bottom:451.600933pt;}
.yc{bottom:453.307067pt;}
.y7a{bottom:454.656133pt;}
.y168{bottom:459.989467pt;}
.y44{bottom:461.672533pt;}
.y203{bottom:463.322800pt;}
.ye7{bottom:464.731200pt;}
.ycb{bottom:464.989467pt;}
.y1b0{bottom:465.322800pt;}
.y18d{bottom:465.874000pt;}
.y59{bottom:465.989467pt;}
.y97{bottom:466.228667pt;}
.y128{bottom:466.934267pt;}
.y1ea{bottom:468.425600pt;}
.y144{bottom:468.656133pt;}
.y79{bottom:469.989467pt;}
.y1e9{bottom:476.105600pt;}
.y202{bottom:477.322800pt;}
.y1af{bottom:479.322800pt;}
.ye6{bottom:480.064533pt;}
.yca{bottom:480.322800pt;}
.y43{bottom:480.339200pt;}
.y18c{bottom:481.207333pt;}
.y58{bottom:481.322800pt;}
.y96{bottom:481.562000pt;}
.y127{bottom:482.267600pt;}
.y143{bottom:482.656133pt;}
.y78{bottom:485.322800pt;}
.y167{bottom:490.656133pt;}
.y201{bottom:491.322800pt;}
.y1ae{bottom:493.322800pt;}
.ye5{bottom:495.397867pt;}
.yc9{bottom:495.656133pt;}
.y18b{bottom:496.540667pt;}
.y57{bottom:496.656133pt;}
.y95{bottom:496.895333pt;}
.y126{bottom:497.600933pt;}
.y42{bottom:499.005867pt;}
.y77{bottom:500.656133pt;}
.y166{bottom:504.656133pt;}
.y200{bottom:505.322800pt;}
.y1ad{bottom:507.322800pt;}
.ye4{bottom:510.731200pt;}
.yc8{bottom:510.989467pt;}
.y18a{bottom:511.874000pt;}
.y56{bottom:511.989467pt;}
.y94{bottom:512.228667pt;}
.y125{bottom:512.934267pt;}
.y1e6{bottom:517.814400pt;}
.y165{bottom:518.656133pt;}
.y1ff{bottom:519.322800pt;}
.y1ac{bottom:521.322800pt;}
.y1e8{bottom:522.294400pt;}
.y41{bottom:523.181600pt;}
.y1e5{bottom:525.494400pt;}
.yc7{bottom:526.322800pt;}
.y189{bottom:527.207333pt;}
.y55{bottom:527.322800pt;}
.y93{bottom:527.562000pt;}
.y124{bottom:528.267600pt;}
.y1e7{bottom:529.974400pt;}
.y76{bottom:531.322800pt;}
.y164{bottom:532.656133pt;}
.y1e4{bottom:533.174400pt;}
.y1fe{bottom:533.322800pt;}
.y1ab{bottom:535.322800pt;}
.yc6{bottom:541.656133pt;}
.y188{bottom:542.540667pt;}
.y54{bottom:542.656133pt;}
.y92{bottom:542.895333pt;}
.y123{bottom:543.600933pt;}
.y75{bottom:545.322800pt;}
.y163{bottom:546.656133pt;}
.y1fd{bottom:547.322800pt;}
.y1aa{bottom:549.322800pt;}
.y103{bottom:550.572133pt;}
.yc5{bottom:556.989467pt;}
.y187{bottom:557.874000pt;}
.y53{bottom:557.989467pt;}
.y122{bottom:558.934267pt;}
.y74{bottom:559.322800pt;}
.y162{bottom:560.656133pt;}
.y1fc{bottom:561.322800pt;}
.y1a9{bottom:563.322800pt;}
.y110{bottom:565.038667pt;}
.y2b{bottom:565.322800pt;}
.y186{bottom:573.207333pt;}
.y52{bottom:573.322800pt;}
.y121{bottom:574.267600pt;}
.y1fb{bottom:575.322800pt;}
.y1e3{bottom:575.625600pt;}
.y1a8{bottom:577.322800pt;}
.y2a{bottom:578.656133pt;}
.y107{bottom:579.021791pt;}
.y1dd{bottom:579.625600pt;}
.yc4{bottom:579.989467pt;}
.y1eb{bottom:580.989467pt;}
.ybd{bottom:581.973467pt;}
.y1e2{bottom:583.305600pt;}
.y185{bottom:588.540667pt;}
.y51{bottom:588.656133pt;}
.y1fa{bottom:589.322800pt;}
.yb{bottom:589.422667pt;}
.y120{bottom:589.600933pt;}
.y161{bottom:589.989467pt;}
.y104{bottom:590.075733pt;}
.y1a7{bottom:591.322800pt;}
.y108{bottom:595.519903pt;}
.y29{bottom:597.322800pt;}
.ybc{bottom:599.659200pt;}
.ya{bottom:602.089333pt;}
.yc3{bottom:602.989467pt;}
.y1f9{bottom:603.322800pt;}
.y184{bottom:603.874000pt;}
.y50{bottom:603.989467pt;}
.y11f{bottom:604.934267pt;}
.y160{bottom:605.322800pt;}
.y28{bottom:610.656133pt;}
.y109{bottom:612.018016pt;}
.y9{bottom:614.756000pt;}
.ybb{bottom:615.659200pt;}
.y1f8{bottom:617.322800pt;}
.y183{bottom:619.207333pt;}
.y4f{bottom:619.322800pt;}
.y11e{bottom:620.267600pt;}
.y15f{bottom:620.656133pt;}
.y27{bottom:623.989467pt;}
.y1e1{bottom:624.156800pt;}
.y112{bottom:626.989467pt;}
.y10a{bottom:628.516129pt;}
.y8{bottom:630.756000pt;}
.y1f7{bottom:631.322800pt;}
.yba{bottom:631.659200pt;}
.y1e0{bottom:631.836800pt;}
.y182{bottom:634.540667pt;}
.y4e{bottom:634.656133pt;}
.y11d{bottom:635.600933pt;}
.y15e{bottom:635.989467pt;}
.y26{bottom:637.322800pt;}
.yc2{bottom:641.322800pt;}
.yb9{bottom:643.659200pt;}
.y10b{bottom:645.014241pt;}
.y1f6{bottom:645.322800pt;}
.y4d{bottom:649.989467pt;}
.y25{bottom:650.656133pt;}
.y11c{bottom:650.934267pt;}
.y15d{bottom:651.322800pt;}
.yc1{bottom:655.322800pt;}
.y181{bottom:659.322800pt;}
.yb8{bottom:659.659200pt;}
.y10c{bottom:661.512354pt;}
.y7{bottom:662.756000pt;}
.y24{bottom:663.989467pt;}
.y4c{bottom:665.322800pt;}
.y11b{bottom:666.267600pt;}
.y15c{bottom:666.656133pt;}
.y105{bottom:671.417431pt;}
.yb7{bottom:671.659200pt;}
.y180{bottom:673.322800pt;}
.y1df{bottom:674.345600pt;}
.y6{bottom:675.422667pt;}
.y23{bottom:677.322800pt;}
.y10d{bottom:678.010466pt;}
.y4b{bottom:680.656133pt;}
.y11a{bottom:681.600933pt;}
.y15b{bottom:681.989467pt;}
.y1de{bottom:682.025600pt;}
.yc0{bottom:684.656133pt;}
.y17f{bottom:687.322800pt;}
.yb6{bottom:687.659200pt;}
.y22{bottom:690.656133pt;}
.y5{bottom:691.422667pt;}
.y10e{bottom:694.508579pt;}
.y4a{bottom:695.989467pt;}
.y119{bottom:696.934267pt;}
.y15a{bottom:697.322800pt;}
.ybf{bottom:698.656133pt;}
.y17e{bottom:701.322800pt;}
.yb5{bottom:703.659200pt;}
.y21{bottom:703.989467pt;}
.yb4{bottom:707.659200pt;}
.y10f{bottom:711.006691pt;}
.y49{bottom:711.322800pt;}
.y118{bottom:712.267600pt;}
.ybe{bottom:712.656133pt;}
.y17d{bottom:715.322800pt;}
.y20{bottom:717.322800pt;}
.yb3{bottom:719.659200pt;}
.y106{bottom:721.077371pt;}
.y48{bottom:726.656133pt;}
.y1dc{bottom:726.825600pt;}
.y117{bottom:727.600933pt;}
.y17c{bottom:729.322800pt;}
.y1f{bottom:730.656133pt;}
.y4{bottom:731.422667pt;}
.yb2{bottom:736.877467pt;}
.y47{bottom:741.989467pt;}
.y102{bottom:742.572133pt;}
.y116{bottom:742.934267pt;}
.y159{bottom:743.322800pt;}
.y3{bottom:752.756000pt;}
.yb1{bottom:755.638400pt;}
.y101{bottom:755.905467pt;}
.y1da{bottom:756.850400pt;}
.y1e{bottom:757.322800pt;}
.y115{bottom:758.267600pt;}
.y46{bottom:798.108933pt;}
.y2{bottom:798.146000pt;}
.y1d{bottom:798.186933pt;}
.y1{bottom:810.546000pt;}
.h13{height:18.825000pt;}
.h10{height:27.290667pt;}
.hf{height:29.240000pt;}
.he{height:29.299733pt;}
.h11{height:30.263790pt;}
.hd{height:31.189333pt;}
.h2{height:35.882667pt;}
.ha{height:36.241493pt;}
.h6{height:36.243556pt;}
.h5{height:40.368000pt;}
.h8{height:41.966222pt;}
.h7{height:42.610667pt;}
.hb{height:44.853333pt;}
.h14{height:47.096000pt;}
.h9{height:49.338667pt;}
.hc{height:49.670133pt;}
.h4{height:53.824000pt;}
.h3{height:71.765333pt;}
.h12{height:167.245333pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w2{width:433.772000pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x17{left:36.688800pt;}
.x19{left:84.094533pt;}
.x1{left:85.001600pt;}
.x16{left:86.795739pt;}
.x15{left:93.347374pt;}
.x5{left:105.039333pt;}
.x22{left:115.466000pt;}
.x18{left:123.374000pt;}
.xc{left:125.039333pt;}
.x21{left:126.678800pt;}
.x1a{left:133.590800pt;}
.x1e{left:139.274000pt;}
.x1d{left:140.342800pt;}
.xd{left:141.732267pt;}
.x12{left:147.126667pt;}
.xe{left:156.850400pt;}
.x1b{left:171.074667pt;}
.x9{left:174.790933pt;}
.x26{left:179.120400pt;}
.x28{left:181.437200pt;}
.x27{left:183.216400pt;}
.xa{left:190.877467pt;}
.x8{left:208.699467pt;}
.x7{left:213.398667pt;}
.x29{left:241.341200pt;}
.x2a{left:243.651600pt;}
.xf{left:274.015733pt;}
.x6{left:280.483333pt;}
.x25{left:311.203600pt;}
.xb{left:314.555200pt;}
.x23{left:319.926800pt;}
.x24{left:328.106000pt;}
.x1c{left:330.390800pt;}
.x20{left:334.858000pt;}
.x1f{left:335.926800pt;}
.x13{left:345.859577pt;}
.x10{left:383.622133pt;}
.x11{left:398.740133pt;}
.x4{left:402.932267pt;}
.x3{left:405.716267pt;}
.x2{left:409.232133pt;}
.x2b{left:410.166800pt;}
.x2c{left:422.448400pt;}
.x14{left:447.518586pt;}
.x2d{left:455.210000pt;}
.x2e{left:457.347600pt;}
}




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