
    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_d79fab2a42169e24c4938e92.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919434;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_693223c26487b8d5d0ae0302.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.706543;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_de9972ef9c7e73b74ca4a85e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_53e1b34fdc390201129dfd3b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fbda26ea220d8f747a1cbd2c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a06dca6a86ababf5e822884e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919434;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_43f05f86deaa7f4af70a7efb.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_91451efd14c81e63149a561a.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_5d4a8cfc73399e2f0b915043.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.706543;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_ced83e136cb1cc38883fa264.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.131348;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_e0633de3800abc67ebd257cd.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.087891;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_a2cacebe20bcf385f5fe381c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.949219;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6cda8aa4209c25a2d8d33742.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.209473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_4f4c000dcbe19b89c3bc2fa3.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.034180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v1{vertical-align:-131.040000px;}
.v3{vertical-align:-74.160000px;}
.v20{vertical-align:-70.680000px;}
.v1f{vertical-align:-68.400000px;}
.v4{vertical-align:-61.200000px;}
.v2{vertical-align:-51.840000px;}
.v1e{vertical-align:-28.080000px;}
.v18{vertical-align:-25.200000px;}
.v19{vertical-align:-20.880000px;}
.vf{vertical-align:-18.000000px;}
.v11{vertical-align:-16.560000px;}
.v1c{vertical-align:-15.120000px;}
.vd{vertical-align:-12.960000px;}
.v8{vertical-align:-11.520000px;}
.v13{vertical-align:-10.080000px;}
.va{vertical-align:-8.640000px;}
.v12{vertical-align:-6.480000px;}
.v5{vertical-align:-5.040000px;}
.vc{vertical-align:-2.880000px;}
.v14{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.160000px;}
.v17{vertical-align:3.600000px;}
.v6{vertical-align:5.040000px;}
.v16{vertical-align:6.480000px;}
.vb{vertical-align:7.920000px;}
.v15{vertical-align:9.360000px;}
.v9{vertical-align:11.520000px;}
.ve{vertical-align:12.960000px;}
.v1d{vertical-align:14.400000px;}
.v1b{vertical-align:17.280000px;}
.v1a{vertical-align:18.720000px;}
.v10{vertical-align:23.040000px;}
.ls11{letter-spacing:-0.720000px;}
.ls9c{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.396000px;}
.ls8f{letter-spacing:-0.360000px;}
.ls9b{letter-spacing:-0.324000px;}
.ls85{letter-spacing:-0.322800px;}
.ls96{letter-spacing:-0.288000px;}
.ls84{letter-spacing:-0.282000px;}
.lsc{letter-spacing:-0.270000px;}
.ls9f{letter-spacing:-0.216000px;}
.ls8e{letter-spacing:-0.207600px;}
.ls8b{letter-spacing:-0.172800px;}
.ls90{letter-spacing:-0.103800px;}
.lsa{letter-spacing:-0.090000px;}
.ls9a{letter-spacing:-0.053280px;}
.ls43{letter-spacing:-0.031680px;}
.ls8{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.008640px;}
.lsd{letter-spacing:0.054000px;}
.ls0{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.100800px;}
.ls59{letter-spacing:0.106560px;}
.lsb{letter-spacing:0.108000px;}
.ls95{letter-spacing:0.119520px;}
.ls89{letter-spacing:0.120960px;}
.ls6f{letter-spacing:0.172800px;}
.ls2{letter-spacing:0.180000px;}
.ls54{letter-spacing:0.184320px;}
.ls6{letter-spacing:0.216000px;}
.ls91{letter-spacing:0.246000px;}
.ls7{letter-spacing:0.288000px;}
.ls75{letter-spacing:0.322560px;}
.ls1{letter-spacing:0.324000px;}
.ls48{letter-spacing:0.360000px;}
.ls9d{letter-spacing:0.396000px;}
.ls31{letter-spacing:0.397440px;}
.ls44{letter-spacing:0.432000px;}
.ls62{letter-spacing:0.509760px;}
.ls27{letter-spacing:0.541440px;}
.ls5c{letter-spacing:0.578880px;}
.ls1a{letter-spacing:0.650880px;}
.ls6d{letter-spacing:0.717120px;}
.ls1d{letter-spacing:0.720000px;}
.ls4e{letter-spacing:0.728640px;}
.ls4b{letter-spacing:0.892800px;}
.ls97{letter-spacing:0.900000px;}
.ls6c{letter-spacing:0.904320px;}
.ls86{letter-spacing:1.042560px;}
.ls1e{letter-spacing:1.117440px;}
.ls1b{letter-spacing:1.261440px;}
.ls20{letter-spacing:1.298880px;}
.ls47{letter-spacing:1.370880px;}
.ls3c{letter-spacing:1.391040px;}
.ls53{letter-spacing:1.408320px;}
.ls2c{letter-spacing:1.437120px;}
.ls16{letter-spacing:1.440000px;}
.ls19{letter-spacing:1.448640px;}
.ls49{letter-spacing:1.612800px;}
.ls70{letter-spacing:1.762560px;}
.ls65{letter-spacing:1.768320px;}
.ls6a{letter-spacing:1.800000px;}
.ls72{letter-spacing:1.837440px;}
.ls28{letter-spacing:2.128320px;}
.ls21{letter-spacing:2.160000px;}
.ls9e{letter-spacing:2.340000px;}
.ls3f{letter-spacing:2.557440px;}
.ls32{letter-spacing:2.810880px;}
.ls79{letter-spacing:2.848320px;}
.ls29{letter-spacing:2.880000px;}
.ls51{letter-spacing:2.888640px;}
.lsa0{letter-spacing:3.060000px;}
.ls5b{letter-spacing:3.202560px;}
.ls82{letter-spacing:3.389760px;}
.ls40{letter-spacing:3.421440px;}
.ls17{letter-spacing:3.597120px;}
.ls71{letter-spacing:3.600000px;}
.ls5e{letter-spacing:3.608640px;}
.ls36{letter-spacing:3.772800px;}
.ls6e{letter-spacing:3.784320px;}
.ls5f{letter-spacing:3.922560px;}
.ls39{letter-spacing:4.141440px;}
.ls24{letter-spacing:4.320000px;}
.ls12{letter-spacing:4.360320px;}
.ls7a{letter-spacing:4.426560px;}
.ls5a{letter-spacing:4.492800px;}
.ls7f{letter-spacing:4.504320px;}
.ls67{letter-spacing:4.680000px;}
.ls30{letter-spacing:4.717440px;}
.ls37{letter-spacing:4.752000px;}
.ls56{letter-spacing:4.861440px;}
.ls2a{letter-spacing:4.970880px;}
.ls4a{letter-spacing:5.008320px;}
.ls33{letter-spacing:5.037120px;}
.ls83{letter-spacing:5.040000px;}
.ls55{letter-spacing:5.048640px;}
.ls76{letter-spacing:5.080320px;}
.ls52{letter-spacing:5.146560px;}
.ls7c{letter-spacing:5.224320px;}
.ls14{letter-spacing:5.368320px;}
.ls34{letter-spacing:5.437440px;}
.ls1f{letter-spacing:5.581440px;}
.ls58{letter-spacing:5.757120px;}
.ls2e{letter-spacing:5.768640px;}
.ls46{letter-spacing:5.866560px;}
.ls2b{letter-spacing:5.944320px;}
.ls77{letter-spacing:6.088320px;}
.ls63{letter-spacing:6.120000px;}
.ls68{letter-spacing:6.301440px;}
.ls1c{letter-spacing:6.448320px;}
.ls23{letter-spacing:6.664320px;}
.ls57{letter-spacing:6.877440px;}
.ls3b{letter-spacing:6.917760px;}
.ls73{letter-spacing:7.168320px;}
.ls66{letter-spacing:7.208640px;}
.ls35{letter-spacing:7.306560px;}
.ls45{letter-spacing:7.632000px;}
.ls4f{letter-spacing:8.608320px;}
.ls88{letter-spacing:9.181440px;}
.ls3a{letter-spacing:9.360000px;}
.ls87{letter-spacing:9.506880px;}
.ls81{letter-spacing:9.901440px;}
.ls6b{letter-spacing:10.080000px;}
.ls5d{letter-spacing:10.088640px;}
.ls69{letter-spacing:10.120320px;}
.ls4c{letter-spacing:10.186560px;}
.ls74{letter-spacing:10.226880px;}
.ls64{letter-spacing:10.252800px;}
.ls41{letter-spacing:10.370880px;}
.ls18{letter-spacing:10.972800px;}
.ls60{letter-spacing:11.047680px;}
.ls8c{letter-spacing:11.090880px;}
.ls25{letter-spacing:11.197440px;}
.ls2f{letter-spacing:11.232000px;}
.ls61{letter-spacing:11.237760px;}
.ls13{letter-spacing:11.341440px;}
.ls26{letter-spacing:11.378880px;}
.ls8d{letter-spacing:11.485440px;}
.ls22{letter-spacing:11.488320px;}
.ls50{letter-spacing:11.528640px;}
.ls3e{letter-spacing:11.551680px;}
.ls2d{letter-spacing:11.692800px;}
.ls78{letter-spacing:11.767680px;}
.ls7e{letter-spacing:12.205440px;}
.ls8a{letter-spacing:12.925440px;}
.ls7b{letter-spacing:12.928320px;}
.ls38{letter-spacing:13.357440px;}
.ls4d{letter-spacing:13.648320px;}
.ls15{letter-spacing:15.120000px;}
.ls3d{letter-spacing:15.840000px;}
.ls80{letter-spacing:19.261440px;}
.ls7d{letter-spacing:20.701440px;}
.lse{letter-spacing:198.840000px;}
.ls92{letter-spacing:286.740000px;}
.ls99{letter-spacing:384.660000px;}
.ls5{letter-spacing:420.660000px;}
.ls98{letter-spacing:1024.200000px;}
.ls94{letter-spacing:1220.040000px;}
.ls4{letter-spacing:1346.527200px;}
.ls93{letter-spacing:1451.280000px;}
.ls3{letter-spacing:1518.960000px;}
.lsf{letter-spacing:2891.281920px;}
.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;}
}
.ws1{word-spacing:-54.324000px;}
.ws8{word-spacing:-54.288000px;}
.ws2{word-spacing:-54.000000px;}
.ws3{word-spacing:-53.604000px;}
.ws18{word-spacing:-26.872560px;}
.ws13{word-spacing:-21.139200px;}
.wsc{word-spacing:-21.130560px;}
.wsd{word-spacing:-21.098880px;}
.ws10{word-spacing:-20.848560px;}
.ws11{word-spacing:-20.807760px;}
.ws15{word-spacing:-20.770560px;}
.ws14{word-spacing:-20.410560px;}
.ws4{word-spacing:-19.710000px;}
.ws17{word-spacing:-19.309440px;}
.ws16{word-spacing:-19.063440px;}
.ws1d{word-spacing:-18.126000px;}
.ws1e{word-spacing:-17.622000px;}
.ws1b{word-spacing:-17.226000px;}
.ws1f{word-spacing:-17.010000px;}
.ws1c{word-spacing:-16.902000px;}
.ws1a{word-spacing:-16.859280px;}
.ws19{word-spacing:-16.613280px;}
.wsa{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.228000px;}
.ws6{word-spacing:-15.120000px;}
.ws5{word-spacing:-15.012000px;}
.wsb{word-spacing:-14.572800px;}
.ws0{word-spacing:-11.880000px;}
.wse{word-spacing:-9.642240px;}
.wsf{word-spacing:-7.773120px;}
.ws12{word-spacing:-2.013120px;}
.ws9{word-spacing:0.000000px;}
._48{margin-left:-3098.445360px;}
._7c{margin-left:-3084.981600px;}
._1b{margin-left:-3083.794800px;}
._50{margin-left:-3082.468560px;}
._2e{margin-left:-3081.324480px;}
._b7{margin-left:-3065.505840px;}
._81{margin-left:-3058.204560px;}
._111{margin-left:-3042.354480px;}
._7b{margin-left:-3039.060480px;}
._8c{margin-left:-3033.654000px;}
._76{margin-left:-3015.626160px;}
._69{margin-left:-3011.318400px;}
._5c{margin-left:-3003.181200px;}
._10d{margin-left:-2982.950880px;}
._10e{margin-left:-2967.895440px;}
._20{margin-left:-2965.141200px;}
._a9{margin-left:-2953.633920px;}
._91{margin-left:-2927.713920px;}
._4b{margin-left:-2906.892000px;}
._6f{margin-left:-2903.156640px;}
._71{margin-left:-2896.500240px;}
._b6{margin-left:-2882.068800px;}
._ec{margin-left:-2873.548080px;}
._7a{margin-left:-2844.960000px;}
._43{margin-left:-2839.785600px;}
._80{margin-left:-2824.753920px;}
._110{margin-left:-2817.476160px;}
._8e{margin-left:-2815.250160px;}
._2b{margin-left:-2764.549920px;}
._a3{margin-left:-2746.904160px;}
._93{margin-left:-2743.892400px;}
._118{margin-left:-2732.459520px;}
._42{margin-left:-2724.412800px;}
._28{margin-left:-2700.525120px;}
._94{margin-left:-2699.486880px;}
._aa{margin-left:-2688.565200px;}
._5e{margin-left:-2687.118960px;}
._85{margin-left:-2654.380080px;}
._7d{margin-left:-2646.961440px;}
._9d{margin-left:-2576.095440px;}
._f0{margin-left:-2565.308640px;}
._1c7{margin-left:-2564.267760px;}
._11b{margin-left:-2522.870400px;}
._ee{margin-left:-2497.703760px;}
._ef{margin-left:-2487.962880px;}
._77{margin-left:-2469.869040px;}
._5b{margin-left:-2459.400000px;}
._52{margin-left:-2435.398560px;}
._201{margin-left:-2317.302000px;}
._205{margin-left:-2301.372000px;}
._6a{margin-left:-2266.577760px;}
._200{margin-left:-2251.067760px;}
._123{margin-left:-2237.591280px;}
._122{margin-left:-2227.897920px;}
._33{margin-left:-2222.032320px;}
._9c{margin-left:-2211.280800px;}
._29{margin-left:-2207.658240px;}
._67{margin-left:-2200.002240px;}
._106{margin-left:-2197.066800px;}
._74{margin-left:-2166.952800px;}
._87{margin-left:-2155.554480px;}
._45{margin-left:-2109.153600px;}
._136{margin-left:-2072.162880px;}
._1e8{margin-left:-2069.352000px;}
._135{margin-left:-2062.117920px;}
._12f{margin-left:-2051.342880px;}
._1a4{margin-left:-2044.695120px;}
._12e{margin-left:-2042.677920px;}
._1a3{margin-left:-2033.430960px;}
._209{margin-left:-2017.652400px;}
._206{margin-left:-2008.596000px;}
._11d{margin-left:-2007.139440px;}
._11c{margin-left:-1997.317920px;}
._6e{margin-left:-1967.512800px;}
._b3{margin-left:-1964.211120px;}
._b0{margin-left:-1939.380000px;}
._ad{margin-left:-1888.932720px;}
._137{margin-left:-1879.957920px;}
._fd{margin-left:-1875.784320px;}
._73{margin-left:-1874.698800px;}
._34{margin-left:-1860.598080px;}
._109{margin-left:-1839.206640px;}
._63{margin-left:-1829.101680px;}
._61{margin-left:-1825.813920px;}
._4e{margin-left:-1785.962880px;}
._4d{margin-left:-1774.380000px;}
._100{margin-left:-1739.891520px;}
._a0{margin-left:-1738.219440px;}
._10c{margin-left:-1723.328880px;}
._9f{margin-left:-1715.340000px;}
._112{margin-left:-1712.772480px;}
._98{margin-left:-1702.311600px;}
._e8{margin-left:-1697.497920px;}
._1eb{margin-left:-1672.007760px;}
._1e{margin-left:-1664.443920px;}
._32{margin-left:-1651.380000px;}
._96{margin-left:-1643.195520px;}
._105{margin-left:-1640.260320px;}
._10f{margin-left:-1632.980160px;}
._65{margin-left:-1623.100320px;}
._1ee{margin-left:-1615.232160px;}
._f1{margin-left:-1579.976640px;}
._107{margin-left:-1573.626240px;}
._e7{margin-left:-1549.527600px;}
._ea{margin-left:-1522.949760px;}
._1c5{margin-left:-1476.207120px;}
._1e9{margin-left:-1472.058000px;}
._1c4{margin-left:-1465.367760px;}
._31{margin-left:-1448.216160px;}
._b8{margin-left:-1445.185200px;}
._1cb{margin-left:-1439.790000px;}
._11e{margin-left:-1431.397920px;}
._11f{margin-left:-1430.212080px;}
._1cc{margin-left:-1421.423040px;}
._1db{margin-left:-1413.894240px;}
._116{margin-left:-1411.564080px;}
._2f{margin-left:-1395.524160px;}
._1ad{margin-left:-1392.822000px;}
._9a{margin-left:-1381.980480px;}
._198{margin-left:-1379.244000px;}
._13a{margin-left:-1376.447040px;}
._130{margin-left:-1366.947120px;}
._1b5{margin-left:-1363.017600px;}
._1ac{margin-left:-1352.850960px;}
._139{margin-left:-1349.882400px;}
._1da{margin-left:-1317.047760px;}
._88{margin-left:-1315.035120px;}
._197{margin-left:-1311.090960px;}
._172{margin-left:-1309.176000px;}
._1bd{margin-left:-1306.505760px;}
._1e2{margin-left:-1302.168240px;}
._171{margin-left:-1295.301360px;}
._4a{margin-left:-1270.912320px;}
._f8{margin-left:-1268.603760px;}
._1d4{margin-left:-1264.689120px;}
._1e1{margin-left:-1262.327760px;}
._f7{margin-left:-1258.730400px;}
._1d3{margin-left:-1253.687760px;}
._51{margin-left:-1249.024320px;}
._17e{margin-left:-1245.625440px;}
._1ca{margin-left:-1244.207760px;}
._1d1{margin-left:-1241.094000px;}
._9{margin-left:-1238.178000px;}
._b1{margin-left:-1228.154160px;}
._fe{margin-left:-1222.860000px;}
._147{margin-left:-1220.027760px;}
._1b6{margin-left:-1211.940000px;}
._8b{margin-left:-1201.260480px;}
._1b0{margin-left:-1192.536000px;}
._64{margin-left:-1184.700000px;}
._a5{margin-left:-1178.418240px;}
._6b{margin-left:-1175.281920px;}
._17d{margin-left:-1168.461360px;}
._1a9{margin-left:-1162.650960px;}
._af{margin-left:-1160.848080px;}
._1b7{margin-left:-1153.980000px;}
._19e{margin-left:-1146.495600px;}
._1d0{margin-left:-1144.847760px;}
._188{margin-left:-1135.583520px;}
._1af{margin-left:-1124.490960px;}
._19a{margin-left:-1122.055200px;}
._177{margin-left:-1118.780640px;}
._187{margin-left:-1117.341360px;}
._11a{margin-left:-1115.412480px;}
._176{margin-left:-1104.381360px;}
._163{margin-left:-1101.211200px;}
._7e{margin-left:-1091.801040px;}
._162{margin-left:-1087.101360px;}
._82{margin-left:-1084.182960px;}
._38{margin-left:-1076.618880px;}
._131{margin-left:-1074.157920px;}
._132{margin-left:-1072.320240px;}
._1ba{margin-left:-1067.580000px;}
._70{margin-left:-1062.411600px;}
._1f3{margin-left:-1058.256000px;}
._19b{margin-left:-1043.982000px;}
._134{margin-left:-1032.946560px;}
._99{margin-left:-1024.657440px;}
._133{margin-left:-1021.080000px;}
._bd{margin-left:-1011.779280px;}
._9e{margin-left:-1002.854880px;}
._54{margin-left:-997.836480px;}
._15b{margin-left:-995.354160px;}
._e5{margin-left:-990.611040px;}
._14a{margin-left:-988.309680px;}
._41{margin-left:-985.386240px;}
._10b{margin-left:-983.712960px;}
._15a{margin-left:-981.981360px;}
._e6{margin-left:-980.428080px;}
._18e{margin-left:-979.101360px;}
._19f{margin-left:-976.984320px;}
._14{margin-left:-975.456000px;}
._1b9{margin-left:-970.607760px;}
._ac{margin-left:-965.741760px;}
._3a{margin-left:-952.968960px;}
._1e0{margin-left:-947.058000px;}
._17b{margin-left:-944.976480px;}
._149{margin-left:-942.725520px;}
._1df{margin-left:-934.680000px;}
._47{margin-left:-932.788800px;}
._17a{margin-left:-930.861360px;}
._16e{margin-left:-909.538800px;}
._1d5{margin-left:-908.424000px;}
._1c0{margin-left:-906.527760px;}
._12c{margin-left:-904.344480px;}
._16d{margin-left:-895.581360px;}
._17f{margin-left:-892.620960px;}
._1be{margin-left:-889.380000px;}
._12d{margin-left:-882.146880px;}
._13b{margin-left:-880.829760px;}
._b4{margin-left:-879.766560px;}
._fc{margin-left:-877.015920px;}
._1f9{margin-left:-873.774000px;}
._148{margin-left:-871.233120px;}
._e4{margin-left:-866.649600px;}
._e3{margin-left:-864.352800px;}
._1f2{margin-left:-861.167760px;}
._d4{margin-left:-858.322560px;}
._36{margin-left:-845.971200px;}
._22{margin-left:-835.380720px;}
._35{margin-left:-833.940000px;}
._154{margin-left:-831.501360px;}
._155{margin-left:-828.975840px;}
._1f7{margin-left:-821.567760px;}
._14e{margin-left:-820.325520px;}
._fa{margin-left:-815.700720px;}
._d5{margin-left:-814.080960px;}
._181{margin-left:-809.739600px;}
._193{margin-left:-806.202000px;}
._f9{margin-left:-805.010400px;}
._1e5{margin-left:-803.280000px;}
._37{margin-left:-801.789120px;}
._78{margin-left:-799.649280px;}
._180{margin-left:-795.501360px;}
._129{margin-left:-782.429760px;}
._3d{margin-left:-780.000480px;}
._194{margin-left:-776.662320px;}
._ff{margin-left:-773.845680px;}
._173{margin-left:-769.581360px;}
._174{margin-left:-767.602320px;}
._1c2{margin-left:-765.385920px;}
._3b{margin-left:-762.065280px;}
._1c3{margin-left:-756.996000px;}
._168{margin-left:-750.218640px;}
._17c{margin-left:-747.912720px;}
._1f8{margin-left:-744.683280px;}
._113{margin-left:-742.901760px;}
._b{margin-left:-739.212480px;}
._167{margin-left:-735.741360px;}
._a7{margin-left:-727.342560px;}
._1bf{margin-left:-722.660640px;}
._195{margin-left:-718.308000px;}
._f6{margin-left:-717.170400px;}
._1c1{margin-left:-712.631280px;}
._179{margin-left:-710.575680px;}
._b5{margin-left:-706.855680px;}
._3f{margin-left:-699.893280px;}
._1d{margin-left:-698.847360px;}
._178{margin-left:-696.861360px;}
._1e7{margin-left:-695.567760px;}
._1ab{margin-left:-683.046000px;}
._1ae{margin-left:-681.664320px;}
._144{margin-left:-677.909040px;}
._192{margin-left:-668.730960px;}
._143{margin-left:-662.101200px;}
._57{margin-left:-660.693600px;}
._97{margin-left:-658.727520px;}
._170{margin-left:-645.377520px;}
._5a{margin-left:-640.652160px;}
._1b1{margin-left:-638.746560px;}
._8a{margin-left:-637.492800px;}
._3c{margin-left:-634.374720px;}
._16f{margin-left:-631.341360px;}
._202{margin-left:-628.680000px;}
._138{margin-left:-627.037920px;}
._16a{margin-left:-622.701360px;}
._16b{margin-left:-620.929200px;}
._102{margin-left:-617.646000px;}
._eb{margin-left:-614.789040px;}
._20b{margin-left:-612.444000px;}
._1ea{margin-left:-611.042160px;}
._115{margin-left:-609.068160px;}
._53{margin-left:-605.255040px;}
._1ef{margin-left:-603.658800px;}
._40{margin-left:-601.632000px;}
._12a{margin-left:-595.921200px;}
._89{margin-left:-584.760000px;}
._1b2{margin-left:-580.740000px;}
._1e3{margin-left:-577.440000px;}
._15f{margin-left:-572.744640px;}
._d6{margin-left:-564.691680px;}
._141{margin-left:-562.968480px;}
._207{margin-left:-561.720000px;}
._18b{margin-left:-557.861760px;}
._140{margin-left:-555.931920px;}
._cc{margin-left:-551.517120px;}
._1e4{margin-left:-549.105120px;}
._127{margin-left:-545.604480px;}
._1ec{margin-left:-537.896160px;}
._185{margin-left:-532.244160px;}
._128{margin-left:-531.053040px;}
._1fd{margin-left:-521.856000px;}
._117{margin-left:-517.893120px;}
._184{margin-left:-514.701360px;}
._10a{margin-left:-512.023680px;}
._203{margin-left:-509.994000px;}
._fb{margin-left:-507.650400px;}
._18a{margin-left:-505.341360px;}
._1b3{margin-left:-503.784000px;}
._e1{margin-left:-499.469520px;}
._1b4{margin-left:-492.138000px;}
._208{margin-left:-488.700000px;}
._204{margin-left:-479.682000px;}
._ce{margin-left:-477.511680px;}
._1fc{margin-left:-467.604000px;}
._e0{margin-left:-465.563760px;}
._5d{margin-left:-463.502640px;}
._92{margin-left:-455.751360px;}
._1d2{margin-left:-453.614880px;}
._1ed{margin-left:-452.088000px;}
._66{margin-left:-450.456240px;}
._125{margin-left:-430.842240px;}
._15e{margin-left:-428.841360px;}
._b9{margin-left:-420.945600px;}
._124{margin-left:-415.897920px;}
._1ce{margin-left:-412.638000px;}
._ab{margin-left:-408.360000px;}
._21{margin-left:-398.274240px;}
._de{margin-left:-397.153920px;}
._19c{margin-left:-391.582560px;}
._e{margin-left:-389.021760px;}
._db{margin-left:-387.448320px;}
._d{margin-left:-384.600000px;}
._a1{margin-left:-380.280000px;}
._f2{margin-left:-377.452800px;}
._a{margin-left:-376.079040px;}
._bf{margin-left:-373.759440px;}
._dd{margin-left:-371.593440px;}
._1b8{margin-left:-369.840000px;}
._119{margin-left:-364.440000px;}
._175{margin-left:-359.336880px;}
._1dd{margin-left:-358.002000px;}
._a4{margin-left:-352.200000px;}
._c1{margin-left:-350.008800px;}
._1aa{margin-left:-346.507920px;}
._1de{margin-left:-344.736000px;}
._c2{margin-left:-342.449760px;}
._95{margin-left:-339.960000px;}
._1f6{margin-left:-338.958240px;}
._1ff{margin-left:-337.068000px;}
._1f5{margin-left:-335.960640px;}
._1fe{margin-left:-334.674000px;}
._3e{margin-left:-332.697600px;}
._18f{margin-left:-330.624000px;}
._159{margin-left:-328.126080px;}
._1cd{margin-left:-326.234640px;}
._c9{margin-left:-324.751680px;}
._25{margin-left:-321.418080px;}
._c5{margin-left:-319.932000px;}
._c6{margin-left:-318.560880px;}
._2d{margin-left:-317.094960px;}
._10{margin-left:-315.892800px;}
._f{margin-left:-311.760000px;}
._bc{margin-left:-307.491840px;}
._ae{margin-left:-305.205120px;}
._bb{margin-left:-298.831680px;}
._46{margin-left:-296.712960px;}
._2c{margin-left:-293.880000px;}
._d1{margin-left:-290.023200px;}
._8f{margin-left:-283.824000px;}
._1d8{margin-left:-281.790000px;}
._1a8{margin-left:-280.638000px;}
._be{margin-left:-272.191680px;}
._cf{margin-left:-268.591680px;}
._8d{margin-left:-266.935440px;}
._153{margin-left:-265.052880px;}
._1a7{margin-left:-262.825200px;}
._55{margin-left:-255.700800px;}
._158{margin-left:-249.561360px;}
._f5{margin-left:-246.142080px;}
._191{margin-left:-244.332000px;}
._157{margin-left:-242.632800px;}
._1f1{margin-left:-240.762000px;}
._1f0{margin-left:-238.222560px;}
._c7{margin-left:-236.191680px;}
._f4{margin-left:-234.590400px;}
._1c6{margin-left:-233.295120px;}
._169{margin-left:-232.252080px;}
._14c{margin-left:-229.674960px;}
._161{margin-left:-228.033360px;}
._156{margin-left:-226.620000px;}
._ed{margin-left:-224.784000px;}
._1bb{margin-left:-220.320000px;}
._165{margin-left:-219.273840px;}
._152{margin-left:-217.161360px;}
._15d{margin-left:-212.824800px;}
._9b{margin-left:-211.498560px;}
._1dc{margin-left:-209.520000px;}
._ca{margin-left:-206.805600px;}
._df{margin-left:-203.912880px;}
._72{margin-left:-201.024000px;}
._1d9{margin-left:-199.563120px;}
._13f{margin-left:-197.700480px;}
._27{margin-left:-196.125120px;}
._15{margin-left:-194.120640px;}
._90{margin-left:-192.821760px;}
._1f4{margin-left:-191.405040px;}
._4c{margin-left:-190.224000px;}
._1fa{margin-left:-186.603120px;}
._d0{margin-left:-185.530800px;}
._11{margin-left:-184.500000px;}
._14b{margin-left:-182.313600px;}
._c3{margin-left:-180.751680px;}
._cb{margin-left:-178.944480px;}
._cd{margin-left:-177.264960px;}
._160{margin-left:-175.091760px;}
._1c9{margin-left:-173.988000px;}
._164{margin-left:-172.521360px;}
._1a6{margin-left:-171.486000px;}
._1c8{margin-left:-169.340160px;}
._20c{margin-left:-168.224880px;}
._12b{margin-left:-162.564480px;}
._c4{margin-left:-161.209200px;}
._19d{margin-left:-159.638160px;}
._1a0{margin-left:-157.506720px;}
._12{margin-left:-153.727200px;}
._13e{margin-left:-151.265520px;}
._c0{margin-left:-150.239280px;}
._44{margin-left:-148.435200px;}
._23{margin-left:-146.998080px;}
._20a{margin-left:-145.866720px;}
._101{margin-left:-143.787600px;}
._a8{margin-left:-142.611840px;}
._18d{margin-left:-139.374720px;}
._1d7{margin-left:-137.340000px;}
._16c{margin-left:-135.801360px;}
._103{margin-left:-133.384320px;}
._da{margin-left:-130.098240px;}
._182{margin-left:-128.717520px;}
._15c{margin-left:-127.474560px;}
._13c{margin-left:-126.389280px;}
._120{margin-left:-125.280000px;}
._1fb{margin-left:-122.833440px;}
._121{margin-left:-121.657680px;}
._189{margin-left:-119.902080px;}
._dc{margin-left:-117.097920px;}
._d8{margin-left:-115.159680px;}
._d7{margin-left:-113.580000px;}
._14f{margin-left:-111.667680px;}
._13d{margin-left:-110.159280px;}
._d2{margin-left:-106.443120px;}
._18c{margin-left:-104.400480px;}
._e2{margin-left:-101.808000px;}
._d9{margin-left:-99.798720px;}
._e9{margin-left:-95.165040px;}
._7f{margin-left:-92.661120px;}
._58{margin-left:-91.640640px;}
._196{margin-left:-89.824320px;}
._199{margin-left:-88.020000px;}
._ba{margin-left:-86.941440px;}
._6c{margin-left:-85.308480px;}
._166{margin-left:-83.980080px;}
._151{margin-left:-82.799520px;}
._142{margin-left:-80.746560px;}
._14d{margin-left:-79.199520px;}
._5f{margin-left:-78.120000px;}
._d3{margin-left:-76.239360px;}
._1a2{margin-left:-74.604000px;}
._f3{margin-left:-72.463680px;}
._60{margin-left:-70.735680px;}
._108{margin-left:-68.362560px;}
._a2{margin-left:-66.928320px;}
._186{margin-left:-65.759040px;}
._104{margin-left:-63.677760px;}
._1cf{margin-left:-62.507280px;}
._146{margin-left:-61.253280px;}
._2a{margin-left:-60.206400px;}
._c8{margin-left:-59.153520px;}
._4f{margin-left:-57.156480px;}
._1a1{margin-left:-56.101440px;}
._126{margin-left:-54.457920px;}
._1e6{margin-left:-53.266800px;}
._56{margin-left:-51.402240px;}
._83{margin-left:-50.137920px;}
._145{margin-left:-48.713760px;}
._79{margin-left:-47.220480px;}
._30{margin-left:-45.432000px;}
._1a5{margin-left:-44.244000px;}
._183{margin-left:-43.122000px;}
._24{margin-left:-42.079680px;}
._1d6{margin-left:-40.362240px;}
._a6{margin-left:-39.337920px;}
._c{margin-left:-37.690560px;}
._114{margin-left:-36.457920px;}
._13{margin-left:-34.129440px;}
._6d{margin-left:-33.120000px;}
._39{margin-left:-30.859200px;}
._150{margin-left:-29.340000px;}
._1bc{margin-left:-26.443440px;}
._26{margin-left:-16.030080px;}
._18{margin-left:-13.934880px;}
._49{margin-left:-10.743840px;}
._17{margin-left:-9.632160px;}
._16{margin-left:-8.551200px;}
._1f{margin-left:-7.353120px;}
._19{margin-left:-5.617440px;}
._1a{margin-left:-4.492800px;}
._1c{margin-left:-3.227040px;}
._59{margin-left:-2.162880px;}
._1{margin-left:-1.080000px;}
._0{width:1.038000px;}
._2{width:2.700000px;}
._3{width:3.714000px;}
._4{width:5.400000px;}
._6{width:6.588000px;}
._7{width:7.698000px;}
._5{width:9.666000px;}
._62{width:11.629440px;}
._8{width:12.960000px;}
._68{width:14.522400px;}
._86{width:18.184320px;}
._75{width:22.928400px;}
._84{width:26.220480px;}
._b2{width:27.436800px;}
._190{width:302.580000px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(64,64,64);}
.fc3{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(79,129,189);}
.fs8{font-size:5.760000px;}
.fs7{font-size:30.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs9{font-size:69.822393px;}
.fs1{font-size:72.000000px;}
.fsa{font-size:84.240000px;}
.fs6{font-size:90.000000px;}
.fs4{font-size:102.240000px;}
.fs3{font-size:108.000000px;}
.y42{bottom:-16.200000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:3.240000px;}
.y41{bottom:16.020000px;}
.y40{bottom:17.820000px;}
.y5b{bottom:19.080000px;}
.y3f{bottom:19.440000px;}
.y3e{bottom:22.860000px;}
.y3d{bottom:34.380000px;}
.y4f{bottom:34.920000px;}
.y5a{bottom:50.760000px;}
.y4e{bottom:50.940000px;}
.ya{bottom:55.980000px;}
.y5f{bottom:56.520000px;}
.y3c{bottom:60.840000px;}
.y59{bottom:66.600000px;}
.y4d{bottom:66.780000px;}
.y9{bottom:71.856000px;}
.y4c{bottom:79.560000px;}
.y80{bottom:81.576000px;}
.y58{bottom:82.440000px;}
.y3b{bottom:85.680000px;}
.y8{bottom:87.696000px;}
.yd4{bottom:91.116000px;}
.yf8{bottom:95.256000px;}
.y57{bottom:98.280000px;}
.y4b{bottom:98.460000px;}
.y119{bottom:98.496000px;}
.y7{bottom:103.536000px;}
.y3a{bottom:104.610000px;}
.y147{bottom:112.536000px;}
.y56{bottom:114.120000px;}
.y4a{bottom:114.300000px;}
.y7f{bottom:118.476000px;}
.y6{bottom:119.376000px;}
.yd3{bottom:128.016000px;}
.y55{bottom:129.780000px;}
.y146{bottom:129.816000px;}
.y49{bottom:130.140000px;}
.yf7{bottom:132.696000px;}
.y5{bottom:135.216000px;}
.y118{bottom:135.756000px;}
.y54{bottom:142.560000px;}
.y48{bottom:145.980000px;}
.y145{bottom:146.916000px;}
.yd2{bottom:147.096000px;}
.ya7{bottom:149.796000px;}
.y4{bottom:151.050000px;}
.yf6{bottom:151.590000px;}
.y53{bottom:153.000000px;}
.y7e{bottom:155.730000px;}
.y47{bottom:158.760000px;}
.y52{bottom:163.440000px;}
.y17b{bottom:163.650000px;}
.y144{bottom:164.190000px;}
.y3{bottom:166.890000px;}
.y46{bottom:169.020000px;}
.ya6{bottom:169.050000px;}
.yf5{bottom:170.670000px;}
.y117{bottom:173.190000px;}
.y45{bottom:179.460000px;}
.y17a{bottom:179.490000px;}
.y51{bottom:181.080000px;}
.y143{bottom:181.470000px;}
.yd1{bottom:183.990000px;}
.ya5{bottom:188.130000px;}
.yf4{bottom:189.570000px;}
.y116{bottom:192.450000px;}
.y7d{bottom:193.170000px;}
.y179{bottom:194.970000px;}
.y44{bottom:197.100000px;}
.y142{bottom:198.750000px;}
.y38{bottom:199.290000px;}
.yd0{bottom:202.890000px;}
.ya4{bottom:207.030000px;}
.yf3{bottom:208.470000px;}
.y178{bottom:210.810000px;}
.y141{bottom:216.030000px;}
.y37{bottom:218.370000px;}
.ycf{bottom:221.970000px;}
.ya3{bottom:226.110000px;}
.y177{bottom:226.290000px;}
.yf2{bottom:227.550000px;}
.y115{bottom:228.990000px;}
.y7c{bottom:230.430000px;}
.y140{bottom:233.130000px;}
.y36{bottom:237.270000px;}
.ycd{bottom:240.150000px;}
.ycc{bottom:240.870000px;}
.yce{bottom:241.590000px;}
.y176{bottom:241.950000px;}
.ya2{bottom:245.010000px;}
.y13f{bottom:250.410000px;}
.y35{bottom:256.170000px;}
.y175{bottom:257.610000px;}
.ya1{bottom:263.910000px;}
.yf1{bottom:264.090000px;}
.y114{bottom:266.430000px;}
.y13e{bottom:267.690000px;}
.y7b{bottom:267.870000px;}
.y174{bottom:273.270000px;}
.y34{bottom:275.250000px;}
.ycb{bottom:277.950000px;}
.ya0{bottom:282.990000px;}
.y13d{bottom:284.970000px;}
.y113{bottom:285.690000px;}
.y173{bottom:289.110000px;}
.y33{bottom:294.150000px;}
.yca{bottom:297.210000px;}
.y9f{bottom:300.270000px;}
.y9e{bottom:301.890000px;}
.y13c{bottom:302.250000px;}
.y112{bottom:304.770000px;}
.y7a{bottom:305.130000px;}
.y32{bottom:313.230000px;}
.yc9{bottom:316.110000px;}
.y13b{bottom:319.575000px;}
.y172{bottom:320.655000px;}
.yf0{bottom:320.835000px;}
.y111{bottom:323.715000px;}
.y31{bottom:332.175000px;}
.yc7{bottom:335.235000px;}
.y171{bottom:336.135000px;}
.yc8{bottom:336.315000px;}
.y13a{bottom:336.675000px;}
.y9d{bottom:339.015000px;}
.yef{bottom:339.915000px;}
.y79{bottom:342.615000px;}
.y30{bottom:351.255000px;}
.y170{bottom:351.795000px;}
.y139{bottom:353.955000px;}
.yc6{bottom:354.135000px;}
.y9c{bottom:358.275000px;}
.yee{bottom:358.815000px;}
.y110{bottom:360.795000px;}
.y16f{bottom:367.455000px;}
.y2f{bottom:370.155000px;}
.y138{bottom:371.235000px;}
.yc5{bottom:373.215000px;}
.yed{bottom:377.715000px;}
.y78{bottom:379.875000px;}
.y16e{bottom:383.115000px;}
.y137{bottom:388.515000px;}
.y2e{bottom:389.055000px;}
.yc4{bottom:392.115000px;}
.y9b{bottom:395.355000px;}
.yec{bottom:396.795000px;}
.y10f{bottom:398.055000px;}
.y16d{bottom:398.595000px;}
.y136{bottom:405.795000px;}
.y2d{bottom:408.135000px;}
.y16c{bottom:414.435000px;}
.y9a{bottom:414.615000px;}
.y10e{bottom:416.955000px;}
.y77{bottom:417.315000px;}
.y135{bottom:423.075000px;}
.y2c{bottom:427.035000px;}
.yc3{bottom:428.835000px;}
.y16b{bottom:429.915000px;}
.y99{bottom:433.515000px;}
.yeb{bottom:433.695000px;}
.y134{bottom:441.615000px;}
.y16a{bottom:445.575000px;}
.y2b{bottom:446.115000px;}
.yea{bottom:452.775000px;}
.y10d{bottom:454.035000px;}
.y76{bottom:454.575000px;}
.y169{bottom:461.235000px;}
.y133{bottom:464.475000px;}
.y2a{bottom:465.015000px;}
.yc2{bottom:466.455000px;}
.y98{bottom:470.595000px;}
.y10c{bottom:472.935000px;}
.y168{bottom:476.895000px;}
.y132{bottom:481.575000px;}
.y29{bottom:483.915000px;}
.yc1{bottom:485.715000px;}
.ye9{bottom:489.675000px;}
.y97{bottom:489.855000px;}
.y75{bottom:492.015000px;}
.y167{bottom:492.735000px;}
.y131{bottom:498.855000px;}
.y28{bottom:502.995000px;}
.yc0{bottom:504.795000px;}
.y166{bottom:508.395000px;}
.y96{bottom:508.935000px;}
.y74{bottom:511.275000px;}
.y130{bottom:516.135000px;}
.y27{bottom:521.895000px;}
.ybf{bottom:523.695000px;}
.y165{bottom:524.055000px;}
.ye8{bottom:526.935000px;}
.y95{bottom:527.835000px;}
.y10b{bottom:528.915000px;}
.y12f{bottom:533.415000px;}
.y164{bottom:539.715000px;}
.y26{bottom:540.975000px;}
.ybe{bottom:542.775000px;}
.y94{bottom:546.915000px;}
.y73{bottom:548.355000px;}
.y12e{bottom:550.695000px;}
.y163{bottom:555.195000px;}
.y25{bottom:559.515000px;}
.ye7{bottom:564.015000px;}
.y92{bottom:565.815000px;}
.y10a{bottom:566.535000px;}
.y72{bottom:567.615000px;}
.y93{bottom:569.055000px;}
.y162{bottom:571.065000px;}
.y24{bottom:575.385000px;}
.ybd{bottom:579.705000px;}
.y43{bottom:583.125000px;}
.y12d{bottom:585.105000px;}
.y109{bottom:585.645000px;}
.y71{bottom:586.545000px;}
.y161{bottom:586.725000px;}
.y23{bottom:598.605000px;}
.y50{bottom:599.325000px;}
.ye6{bottom:601.305000px;}
.y160{bottom:602.565000px;}
.y91{bottom:602.745000px;}
.ybc{bottom:617.685000px;}
.y15f{bottom:618.225000px;}
.y1e{bottom:618.945000px;}
.y12c{bottom:619.665000px;}
.ye5{bottom:620.385000px;}
.y108{bottom:622.545000px;}
.y22{bottom:623.265000px;}
.y70{bottom:623.625000px;}
.y15e{bottom:633.885000px;}
.y1d{bottom:636.585000px;}
.y12b{bottom:636.945000px;}
.ye4{bottom:639.285000px;}
.y90{bottom:640.185000px;}
.y107{bottom:641.625000px;}
.y6f{bottom:642.885000px;}
.y21{bottom:644.325000px;}
.y15d{bottom:649.545000px;}
.y1c{bottom:654.225000px;}
.ybb{bottom:655.665000px;}
.ye3{bottom:658.365000px;}
.y8f{bottom:659.445000px;}
.y15c{bottom:665.205000px;}
.y20{bottom:665.385000px;}
.y12a{bottom:671.325000px;}
.y1b{bottom:671.865000px;}
.ye2{bottom:677.265000px;}
.y106{bottom:678.525000px;}
.y6e{bottom:679.605000px;}
.y15b{bottom:680.865000px;}
.y1f{bottom:686.445000px;}
.y129{bottom:688.605000px;}
.y1a{bottom:689.325000px;}
.yba{bottom:692.565000px;}
.y8e{bottom:696.165000px;}
.y15a{bottom:696.525000px;}
.y6d{bottom:698.505000px;}
.y19{bottom:706.965000px;}
.yb9{bottom:712.005000px;}
.y159{bottom:712.185000px;}
.y6c{bottom:713.985000px;}
.ye1{bottom:714.165000px;}
.y105{bottom:715.965000px;}
.y128{bottom:723.885000px;}
.y18{bottom:724.605000px;}
.y158{bottom:727.845000px;}
.yb8{bottom:730.905000px;}
.ye0{bottom:733.245000px;}
.y8d{bottom:733.425000px;}
.y6b{bottom:741.165000px;}
.y17{bottom:742.065000px;}
.y157{bottom:743.505000px;}
.yb7{bottom:749.805000px;}
.y104{bottom:753.225000px;}
.y156{bottom:759.165000px;}
.y16{bottom:759.705000px;}
.y127{bottom:761.145000px;}
.ydf{bottom:767.445000px;}
.yb6{bottom:768.885000px;}
.yde{bottom:770.145000px;}
.y8c{bottom:770.865000px;}
.y155{bottom:774.825000px;}
.y126{bottom:780.585000px;}
.y6a{bottom:785.805000px;}
.yb5{bottom:787.785000px;}
.ydd{bottom:789.225000px;}
.y8b{bottom:790.125000px;}
.y154{bottom:790.305000px;}
.y103{bottom:790.665000px;}
.y15{bottom:792.105000px;}
.y125{bottom:799.845000px;}
.y153{bottom:806.145000px;}
.yb4{bottom:806.865000px;}
.y8a{bottom:809.025000px;}
.y69{bottom:810.645000px;}
.y14{bottom:812.805000px;}
.y124{bottom:819.330000px;}
.y152{bottom:821.850000px;}
.yb2{bottom:825.090000px;}
.yb3{bottom:825.450000px;}
.yb1{bottom:825.810000px;}
.ydc{bottom:826.170000px;}
.y101{bottom:827.970000px;}
.y102{bottom:828.510000px;}
.y68{bottom:835.530000px;}
.y151{bottom:837.690000px;}
.ydb{bottom:845.610000px;}
.y89{bottom:846.150000px;}
.y13{bottom:847.590000px;}
.y150{bottom:853.170000px;}
.y123{bottom:856.950000px;}
.y67{bottom:860.370000px;}
.yb0{bottom:862.710000px;}
.yda{bottom:864.510000px;}
.y100{bottom:864.870000px;}
.y88{bottom:865.410000px;}
.y14f{bottom:869.010000px;}
.yaf{bottom:882.150000px;}
.yd9{bottom:883.410000px;}
.yff{bottom:884.310000px;}
.y14e{bottom:884.670000px;}
.y12{bottom:887.910000px;}
.y122{bottom:895.650000px;}
.y66{bottom:897.090000px;}
.y87{bottom:901.950000px;}
.y86{bottom:902.490000px;}
.yfe{bottom:903.210000px;}
.y121{bottom:915.090000px;}
.y14d{bottom:915.270000px;}
.y11{bottom:918.510000px;}
.yad{bottom:919.050000px;}
.yd8{bottom:920.130000px;}
.y85{bottom:921.750000px;}
.yae{bottom:922.290000px;}
.y65{bottom:927.690000px;}
.y120{bottom:934.350000px;}
.yac{bottom:938.130000px;}
.yfd{bottom:943.170000px;}
.y64{bottom:944.430000px;}
.y14c{bottom:949.830000px;}
.y11f{bottom:953.790000px;}
.yab{bottom:957.030000px;}
.yd7{bottom:957.390000px;}
.y84{bottom:958.470000px;}
.yfc{bottom:965.310000px;}
.y14b{bottom:971.610000px;}
.y39{bottom:973.050000px;}
.y63{bottom:981.870000px;}
.y10{bottom:982.410000px;}
.yfb{bottom:987.450000px;}
.y11e{bottom:992.490000px;}
.y14a{bottom:993.390000px;}
.yaa{bottom:993.750000px;}
.yd6{bottom:994.830000px;}
.y83{bottom:995.730000px;}
.y62{bottom:1000.950000px;}
.yf{bottom:1004.010000px;}
.yfa{bottom:1009.770000px;}
.y11d{bottom:1011.750000px;}
.y149{bottom:1015.350000px;}
.y61{bottom:1019.850000px;}
.ye{bottom:1025.790000px;}
.y11c{bottom:1030.650000px;}
.ya9{bottom:1031.370000px;}
.yd5{bottom:1031.730000px;}
.yf9{bottom:1031.910000px;}
.y82{bottom:1032.630000px;}
.yd{bottom:1047.570000px;}
.y11b{bottom:1050.090000px;}
.ya8{bottom:1050.630000px;}
.y60{bottom:1060.170000px;}
.yc{bottom:1069.350000px;}
.y11a{bottom:1069.530000px;}
.y81{bottom:1069.710000px;}
.y148{bottom:1071.180000px;}
.y5e{bottom:1089.180000px;}
.yb{bottom:1091.160000px;}
.y5d{bottom:1112.220000px;}
.y2{bottom:1112.400000px;}
.y1{bottom:1128.060000px;}
.hf{height:3.839063px;}
.h10{height:4.480313px;}
.he{height:20.155078px;}
.h13{height:21.203437px;}
.h7{height:35.991211px;}
.h1{height:37.863281px;}
.h8{height:41.902031px;}
.h9{height:44.149219px;}
.hc{height:46.445625px;}
.h38{height:47.302734px;}
.h39{height:49.543945px;}
.h2{height:50.484375px;}
.h1a{height:51.035273px;}
.h19{height:53.367187px;}
.h15{height:55.503491px;}
.h1b{height:56.253392px;}
.h3a{height:56.320312px;}
.h1c{height:56.569219px;}
.h17{height:58.024687px;}
.h18{height:60.773906px;}
.h3{height:61.423863px;}
.h1f{height:61.493906px;}
.h27{height:62.213906px;}
.h36{height:62.327813px;}
.h1d{height:62.933906px;}
.hd{height:63.105469px;}
.h28{height:63.653906px;}
.h24{height:64.373906px;}
.h1e{height:65.093906px;}
.h2b{height:65.813906px;}
.h35{height:66.058594px;}
.h30{height:66.533906px;}
.h32{height:67.253906px;}
.h22{height:67.973906px;}
.ha{height:68.084282px;}
.h23{height:68.693906px;}
.h33{height:69.086250px;}
.h31{height:69.413906px;}
.h20{height:70.853906px;}
.h2c{height:71.573906px;}
.h5{height:71.687812px;}
.h34{height:72.293906px;}
.h6{height:72.562500px;}
.h2a{height:73.013906px;}
.h21{height:73.733906px;}
.h11{height:74.004654px;}
.h25{height:74.453906px;}
.h2e{height:75.893906px;}
.h37{height:77.288555px;}
.h2d{height:77.333906px;}
.h2f{height:78.053906px;}
.h29{height:79.493906px;}
.h26{height:80.213906px;}
.h16{height:99.087891px;}
.h4{height:111.006981px;}
.hb{height:117.210000px;}
.h14{height:195.300000px;}
.h12{height:211.320000px;}
.h0{height:1188.000000px;}
.w2{width:230.115000px;}
.w3{width:526.200000px;}
.w1{width:544.230000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:10.785000px;}
.xb{left:65.704500px;}
.x13{left:70.380000px;}
.x1{left:75.600000px;}
.x1f{left:85.320000px;}
.xc0{left:96.156000px;}
.x8{left:98.985000px;}
.xd1{left:101.196000px;}
.x51{left:104.796000px;}
.xd3{left:105.876000px;}
.x73{left:108.360000px;}
.x9{left:110.370000px;}
.x52{left:117.936000px;}
.x33{left:119.916000px;}
.xa9{left:121.536000px;}
.x6{left:122.970000px;}
.x59{left:126.756000px;}
.x2{left:128.736000px;}
.x7d{left:138.456000px;}
.x74{left:139.680000px;}
.x35{left:140.976000px;}
.x7e{left:142.776000px;}
.x97{left:144.900000px;}
.x5b{left:147.096000px;}
.x47{left:149.256000px;}
.x1e{left:155.910000px;}
.x7f{left:158.610000px;}
.x80{left:159.690000px;}
.x83{left:161.130000px;}
.x91{left:163.980000px;}
.x88{left:167.250000px;}
.x16{left:170.850000px;}
.x1c{left:172.470000px;}
.xa4{left:174.090000px;}
.x42{left:176.970000px;}
.x5{left:180.225000px;}
.x53{left:185.436000px;}
.x41{left:187.410000px;}
.x9a{left:189.390000px;}
.x55{left:192.090000px;}
.x69{left:196.770000px;}
.x14{left:200.370000px;}
.xb6{left:204.510000px;}
.x6a{left:213.330000px;}
.xc{left:219.445500px;}
.x6f{left:223.410000px;}
.x63{left:225.210000px;}
.x61{left:232.230000px;}
.xa1{left:233.490000px;}
.x9b{left:235.110000px;}
.x54{left:247.536000px;}
.xb7{left:249.510000px;}
.x4b{left:259.560000px;}
.x7{left:272.010000px;}
.x7c{left:274.500000px;}
.x6b{left:277.050000px;}
.x98{left:282.420000px;}
.x57{left:285.150000px;}
.x49{left:290.370000px;}
.x6c{left:293.610000px;}
.xcd{left:296.535000px;}
.x22{left:297.795000px;}
.x1d{left:301.215000px;}
.x70{left:306.390000px;}
.x2d{left:319.755000px;}
.xf{left:323.895000px;}
.x2f{left:327.135000px;}
.xd{left:328.395000px;}
.x92{left:330.480000px;}
.x9c{left:332.490000px;}
.xb8{left:335.190000px;}
.x4d{left:337.575000px;}
.x4{left:340.815000px;}
.xb9{left:344.190000px;}
.x46{left:350.640000px;}
.xb3{left:352.695000px;}
.xb4{left:362.055000px;}
.x71{left:364.710000px;}
.x58{left:367.635000px;}
.x9d{left:370.650000px;}
.xa6{left:375.735000px;}
.x38{left:378.075000px;}
.x8f{left:379.080000px;}
.xb5{left:380.775000px;}
.x23{left:381.855000px;}
.xcf{left:386.355000px;}
.x89{left:391.395000px;}
.xae{left:398.775000px;}
.x4e{left:407.595000px;}
.x9e{left:410.610000px;}
.x11{left:417.315000px;}
.xaf{left:420.015000px;}
.xbf{left:421.815000px;}
.x3c{left:423.795000px;}
.x8a{left:434.235000px;}
.x64{left:435.495000px;}
.xc8{left:439.455000px;}
.x9f{left:440.670000px;}
.x65{left:442.335000px;}
.x43{left:449.355000px;}
.x82{left:451.515000px;}
.x12{left:454.935000px;}
.x8b{left:456.735000px;}
.xce{left:459.435000px;}
.x5a{left:461.055000px;}
.xbd{left:462.135000px;}
.x10{left:465.375000px;}
.x4a{left:466.950000px;}
.xc1{left:469.515000px;}
.x21{left:485.385000px;}
.x72{left:487.650000px;}
.x4f{left:489.855000px;}
.xc9{left:495.975000px;}
.x20{left:500.865000px;}
.xd2{left:503.925000px;}
.x5d{left:505.155000px;}
.x8c{left:507.855000px;}
.xca{left:509.115000px;}
.xb0{left:513.075000px;}
.xe{left:515.415000px;}
.x90{left:516.495000px;}
.x75{left:518.145000px;}
.xa0{left:522.210000px;}
.xb1{left:529.095000px;}
.x30{left:531.285000px;}
.x48{left:535.965000px;}
.x37{left:540.285000px;}
.x44{left:541.875000px;}
.x31{left:551.625000px;}
.x4c{left:552.885000px;}
.xa8{left:556.665000px;}
.x95{left:560.595000px;}
.xab{left:562.215000px;}
.x84{left:564.225000px;}
.x66{left:565.455000px;}
.xba{left:568.365000px;}
.x5e{left:571.575000px;}
.x76{left:573.765000px;}
.x25{left:576.825000px;}
.x8d{left:578.775000px;}
.x3d{left:584.175000px;}
.x32{left:587.085000px;}
.xc5{left:589.245000px;}
.x45{left:592.275000px;}
.x5c{left:593.385000px;}
.x5f{left:595.695000px;}
.x39{left:597.525000px;}
.x40{left:602.205000px;}
.x2c{left:603.465000px;}
.xa5{left:606.705000px;}
.x26{left:607.965000px;}
.x60{left:610.305000px;}
.xa7{left:612.465000px;}
.x2e{left:613.725000px;}
.x50{left:616.755000px;}
.x77{left:617.865000px;}
.xc3{left:633.525000px;}
.x67{left:635.295000px;}
.x17{left:642.705000px;}
.x8e{left:644.835000px;}
.x24{left:649.365000px;}
.x96{left:652.395000px;}
.xac{left:654.375000px;}
.x27{left:655.485000px;}
.xaa{left:657.105000px;}
.xc7{left:666.285000px;}
.x36{left:669.705000px;}
.x78{left:671.505000px;}
.x15{left:673.305000px;}
.x2a{left:674.790000px;}
.xdf{left:682.350000px;}
.x87{left:685.590000px;}
.x28{left:687.570000px;}
.xa3{left:690.630000px;}
.xc2{left:696.570000px;}
.xc4{left:697.830000px;}
.x2b{left:699.450000px;}
.x79{left:703.005000px;}
.xd0{left:707.370000px;}
.x3e{left:708.735000px;}
.xcc{left:709.890000px;}
.x7a{left:714.345000px;}
.x94{left:715.830000px;}
.xbe{left:719.250000px;}
.x29{left:723.750000px;}
.x99{left:724.785000px;}
.xb2{left:727.455000px;}
.x7b{left:730.725000px;}
.x85{left:734.190000px;}
.x3f{left:736.455000px;}
.x19{left:740.310000px;}
.xd5{left:742.290000px;}
.x18{left:745.530000px;}
.xdc{left:749.130000px;}
.xdb{left:750.570000px;}
.x6e{left:757.365000px;}
.xd4{left:759.030000px;}
.xde{left:760.470000px;}
.xad{left:763.095000px;}
.xcb{left:764.535000px;}
.x68{left:771.015000px;}
.xda{left:773.610000px;}
.x3a{left:782.250000px;}
.xd9{left:784.950000px;}
.xd7{left:791.250000px;}
.x93{left:797.010000px;}
.x81{left:800.250000px;}
.xdd{left:801.510000px;}
.x1b{left:803.670000px;}
.x56{left:805.890000px;}
.xd8{left:807.810000px;}
.xc6{left:810.150000px;}
.xd6{left:814.110000px;}
.xbc{left:822.930000px;}
.xbb{left:824.190000px;}
.x86{left:827.610000px;}
.xa2{left:829.590000px;}
.xe0{left:830.670000px;}
.x62{left:832.110000px;}
.x3b{left:834.090000px;}
.x34{left:835.890000px;}
.x6d{left:837.150000px;}
.x1a{left:838.410000px;}
.x3{left:842.550000px;}
@media print{
.v1{vertical-align:-116.480000pt;}
.v3{vertical-align:-65.920000pt;}
.v20{vertical-align:-62.826667pt;}
.v1f{vertical-align:-60.800000pt;}
.v4{vertical-align:-54.400000pt;}
.v2{vertical-align:-46.080000pt;}
.v1e{vertical-align:-24.960000pt;}
.v18{vertical-align:-22.400000pt;}
.v19{vertical-align:-18.560000pt;}
.vf{vertical-align:-16.000000pt;}
.v11{vertical-align:-14.720000pt;}
.v1c{vertical-align:-13.440000pt;}
.vd{vertical-align:-11.520000pt;}
.v8{vertical-align:-10.240000pt;}
.v13{vertical-align:-8.960000pt;}
.va{vertical-align:-7.680000pt;}
.v12{vertical-align:-5.760000pt;}
.v5{vertical-align:-4.480000pt;}
.vc{vertical-align:-2.560000pt;}
.v14{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.920000pt;}
.v17{vertical-align:3.200000pt;}
.v6{vertical-align:4.480000pt;}
.v16{vertical-align:5.760000pt;}
.vb{vertical-align:7.040000pt;}
.v15{vertical-align:8.320000pt;}
.v9{vertical-align:10.240000pt;}
.ve{vertical-align:11.520000pt;}
.v1d{vertical-align:12.800000pt;}
.v1b{vertical-align:15.360000pt;}
.v1a{vertical-align:16.640000pt;}
.v10{vertical-align:20.480000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls9c{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.352000pt;}
.ls8f{letter-spacing:-0.320000pt;}
.ls9b{letter-spacing:-0.288000pt;}
.ls85{letter-spacing:-0.286933pt;}
.ls96{letter-spacing:-0.256000pt;}
.ls84{letter-spacing:-0.250667pt;}
.lsc{letter-spacing:-0.240000pt;}
.ls9f{letter-spacing:-0.192000pt;}
.ls8e{letter-spacing:-0.184533pt;}
.ls8b{letter-spacing:-0.153600pt;}
.ls90{letter-spacing:-0.092267pt;}
.lsa{letter-spacing:-0.080000pt;}
.ls9a{letter-spacing:-0.047360pt;}
.ls43{letter-spacing:-0.028160pt;}
.ls8{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.007680pt;}
.lsd{letter-spacing:0.048000pt;}
.ls0{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.089600pt;}
.ls59{letter-spacing:0.094720pt;}
.lsb{letter-spacing:0.096000pt;}
.ls95{letter-spacing:0.106240pt;}
.ls89{letter-spacing:0.107520pt;}
.ls6f{letter-spacing:0.153600pt;}
.ls2{letter-spacing:0.160000pt;}
.ls54{letter-spacing:0.163840pt;}
.ls6{letter-spacing:0.192000pt;}
.ls91{letter-spacing:0.218667pt;}
.ls7{letter-spacing:0.256000pt;}
.ls75{letter-spacing:0.286720pt;}
.ls1{letter-spacing:0.288000pt;}
.ls48{letter-spacing:0.320000pt;}
.ls9d{letter-spacing:0.352000pt;}
.ls31{letter-spacing:0.353280pt;}
.ls44{letter-spacing:0.384000pt;}
.ls62{letter-spacing:0.453120pt;}
.ls27{letter-spacing:0.481280pt;}
.ls5c{letter-spacing:0.514560pt;}
.ls1a{letter-spacing:0.578560pt;}
.ls6d{letter-spacing:0.637440pt;}
.ls1d{letter-spacing:0.640000pt;}
.ls4e{letter-spacing:0.647680pt;}
.ls4b{letter-spacing:0.793600pt;}
.ls97{letter-spacing:0.800000pt;}
.ls6c{letter-spacing:0.803840pt;}
.ls86{letter-spacing:0.926720pt;}
.ls1e{letter-spacing:0.993280pt;}
.ls1b{letter-spacing:1.121280pt;}
.ls20{letter-spacing:1.154560pt;}
.ls47{letter-spacing:1.218560pt;}
.ls3c{letter-spacing:1.236480pt;}
.ls53{letter-spacing:1.251840pt;}
.ls2c{letter-spacing:1.277440pt;}
.ls16{letter-spacing:1.280000pt;}
.ls19{letter-spacing:1.287680pt;}
.ls49{letter-spacing:1.433600pt;}
.ls70{letter-spacing:1.566720pt;}
.ls65{letter-spacing:1.571840pt;}
.ls6a{letter-spacing:1.600000pt;}
.ls72{letter-spacing:1.633280pt;}
.ls28{letter-spacing:1.891840pt;}
.ls21{letter-spacing:1.920000pt;}
.ls9e{letter-spacing:2.080000pt;}
.ls3f{letter-spacing:2.273280pt;}
.ls32{letter-spacing:2.498560pt;}
.ls79{letter-spacing:2.531840pt;}
.ls29{letter-spacing:2.560000pt;}
.ls51{letter-spacing:2.567680pt;}
.lsa0{letter-spacing:2.720000pt;}
.ls5b{letter-spacing:2.846720pt;}
.ls82{letter-spacing:3.013120pt;}
.ls40{letter-spacing:3.041280pt;}
.ls17{letter-spacing:3.197440pt;}
.ls71{letter-spacing:3.200000pt;}
.ls5e{letter-spacing:3.207680pt;}
.ls36{letter-spacing:3.353600pt;}
.ls6e{letter-spacing:3.363840pt;}
.ls5f{letter-spacing:3.486720pt;}
.ls39{letter-spacing:3.681280pt;}
.ls24{letter-spacing:3.840000pt;}
.ls12{letter-spacing:3.875840pt;}
.ls7a{letter-spacing:3.934720pt;}
.ls5a{letter-spacing:3.993600pt;}
.ls7f{letter-spacing:4.003840pt;}
.ls67{letter-spacing:4.160000pt;}
.ls30{letter-spacing:4.193280pt;}
.ls37{letter-spacing:4.224000pt;}
.ls56{letter-spacing:4.321280pt;}
.ls2a{letter-spacing:4.418560pt;}
.ls4a{letter-spacing:4.451840pt;}
.ls33{letter-spacing:4.477440pt;}
.ls83{letter-spacing:4.480000pt;}
.ls55{letter-spacing:4.487680pt;}
.ls76{letter-spacing:4.515840pt;}
.ls52{letter-spacing:4.574720pt;}
.ls7c{letter-spacing:4.643840pt;}
.ls14{letter-spacing:4.771840pt;}
.ls34{letter-spacing:4.833280pt;}
.ls1f{letter-spacing:4.961280pt;}
.ls58{letter-spacing:5.117440pt;}
.ls2e{letter-spacing:5.127680pt;}
.ls46{letter-spacing:5.214720pt;}
.ls2b{letter-spacing:5.283840pt;}
.ls77{letter-spacing:5.411840pt;}
.ls63{letter-spacing:5.440000pt;}
.ls68{letter-spacing:5.601280pt;}
.ls1c{letter-spacing:5.731840pt;}
.ls23{letter-spacing:5.923840pt;}
.ls57{letter-spacing:6.113280pt;}
.ls3b{letter-spacing:6.149120pt;}
.ls73{letter-spacing:6.371840pt;}
.ls66{letter-spacing:6.407680pt;}
.ls35{letter-spacing:6.494720pt;}
.ls45{letter-spacing:6.784000pt;}
.ls4f{letter-spacing:7.651840pt;}
.ls88{letter-spacing:8.161280pt;}
.ls3a{letter-spacing:8.320000pt;}
.ls87{letter-spacing:8.450560pt;}
.ls81{letter-spacing:8.801280pt;}
.ls6b{letter-spacing:8.960000pt;}
.ls5d{letter-spacing:8.967680pt;}
.ls69{letter-spacing:8.995840pt;}
.ls4c{letter-spacing:9.054720pt;}
.ls74{letter-spacing:9.090560pt;}
.ls64{letter-spacing:9.113600pt;}
.ls41{letter-spacing:9.218560pt;}
.ls18{letter-spacing:9.753600pt;}
.ls60{letter-spacing:9.820160pt;}
.ls8c{letter-spacing:9.858560pt;}
.ls25{letter-spacing:9.953280pt;}
.ls2f{letter-spacing:9.984000pt;}
.ls61{letter-spacing:9.989120pt;}
.ls13{letter-spacing:10.081280pt;}
.ls26{letter-spacing:10.114560pt;}
.ls8d{letter-spacing:10.209280pt;}
.ls22{letter-spacing:10.211840pt;}
.ls50{letter-spacing:10.247680pt;}
.ls3e{letter-spacing:10.268160pt;}
.ls2d{letter-spacing:10.393600pt;}
.ls78{letter-spacing:10.460160pt;}
.ls7e{letter-spacing:10.849280pt;}
.ls8a{letter-spacing:11.489280pt;}
.ls7b{letter-spacing:11.491840pt;}
.ls38{letter-spacing:11.873280pt;}
.ls4d{letter-spacing:12.131840pt;}
.ls15{letter-spacing:13.440000pt;}
.ls3d{letter-spacing:14.080000pt;}
.ls80{letter-spacing:17.121280pt;}
.ls7d{letter-spacing:18.401280pt;}
.lse{letter-spacing:176.746667pt;}
.ls92{letter-spacing:254.880000pt;}
.ls99{letter-spacing:341.920000pt;}
.ls5{letter-spacing:373.920000pt;}
.ls98{letter-spacing:910.400000pt;}
.ls94{letter-spacing:1084.480000pt;}
.ls4{letter-spacing:1196.913067pt;}
.ls93{letter-spacing:1290.026667pt;}
.ls3{letter-spacing:1350.186667pt;}
.lsf{letter-spacing:2570.028373pt;}
.ws1{word-spacing:-48.288000pt;}
.ws8{word-spacing:-48.256000pt;}
.ws2{word-spacing:-48.000000pt;}
.ws3{word-spacing:-47.648000pt;}
.ws18{word-spacing:-23.886720pt;}
.ws13{word-spacing:-18.790400pt;}
.wsc{word-spacing:-18.782720pt;}
.wsd{word-spacing:-18.754560pt;}
.ws10{word-spacing:-18.532053pt;}
.ws11{word-spacing:-18.495787pt;}
.ws15{word-spacing:-18.462720pt;}
.ws14{word-spacing:-18.142720pt;}
.ws4{word-spacing:-17.520000pt;}
.ws17{word-spacing:-17.163947pt;}
.ws16{word-spacing:-16.945280pt;}
.ws1d{word-spacing:-16.112000pt;}
.ws1e{word-spacing:-15.664000pt;}
.ws1b{word-spacing:-15.312000pt;}
.ws1f{word-spacing:-15.120000pt;}
.ws1c{word-spacing:-15.024000pt;}
.ws1a{word-spacing:-14.986027pt;}
.ws19{word-spacing:-14.767360pt;}
.wsa{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.536000pt;}
.ws6{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.344000pt;}
.wsb{word-spacing:-12.953600pt;}
.ws0{word-spacing:-10.560000pt;}
.wse{word-spacing:-8.570880pt;}
.wsf{word-spacing:-6.909440pt;}
.ws12{word-spacing:-1.789440pt;}
.ws9{word-spacing:0.000000pt;}
._48{margin-left:-2754.173653pt;}
._7c{margin-left:-2742.205867pt;}
._1b{margin-left:-2741.150933pt;}
._50{margin-left:-2739.972053pt;}
._2e{margin-left:-2738.955093pt;}
._b7{margin-left:-2724.894080pt;}
._81{margin-left:-2718.404053pt;}
._111{margin-left:-2704.315093pt;}
._7b{margin-left:-2701.387093pt;}
._8c{margin-left:-2696.581333pt;}
._76{margin-left:-2680.556587pt;}
._69{margin-left:-2676.727467pt;}
._5c{margin-left:-2669.494400pt;}
._10d{margin-left:-2651.511893pt;}
._10e{margin-left:-2638.129280pt;}
._20{margin-left:-2635.681067pt;}
._a9{margin-left:-2625.452373pt;}
._91{margin-left:-2602.412373pt;}
._4b{margin-left:-2583.904000pt;}
._6f{margin-left:-2580.583680pt;}
._71{margin-left:-2574.666880pt;}
._b6{margin-left:-2561.838933pt;}
._ec{margin-left:-2554.264960pt;}
._7a{margin-left:-2528.853333pt;}
._43{margin-left:-2524.253867pt;}
._80{margin-left:-2510.892373pt;}
._110{margin-left:-2504.423253pt;}
._8e{margin-left:-2502.444587pt;}
._2b{margin-left:-2457.377707pt;}
._a3{margin-left:-2441.692587pt;}
._93{margin-left:-2439.015467pt;}
._118{margin-left:-2428.852907pt;}
._42{margin-left:-2421.700267pt;}
._28{margin-left:-2400.466773pt;}
._94{margin-left:-2399.543893pt;}
._aa{margin-left:-2389.835733pt;}
._5e{margin-left:-2388.550187pt;}
._85{margin-left:-2359.448960pt;}
._7d{margin-left:-2352.854613pt;}
._9d{margin-left:-2289.862613pt;}
._f0{margin-left:-2280.274347pt;}
._1c7{margin-left:-2279.349120pt;}
._11b{margin-left:-2242.551467pt;}
._ee{margin-left:-2220.181120pt;}
._ef{margin-left:-2211.522560pt;}
._77{margin-left:-2195.439147pt;}
._5b{margin-left:-2186.133333pt;}
._52{margin-left:-2164.798720pt;}
._201{margin-left:-2059.824000pt;}
._205{margin-left:-2045.664000pt;}
._6a{margin-left:-2014.735787pt;}
._200{margin-left:-2000.949120pt;}
._123{margin-left:-1988.970027pt;}
._122{margin-left:-1980.353707pt;}
._33{margin-left:-1975.139840pt;}
._9c{margin-left:-1965.582933pt;}
._29{margin-left:-1962.362880pt;}
._67{margin-left:-1955.557547pt;}
._106{margin-left:-1952.948267pt;}
._74{margin-left:-1926.180267pt;}
._87{margin-left:-1916.048427pt;}
._45{margin-left:-1874.803200pt;}
._136{margin-left:-1841.922560pt;}
._1e8{margin-left:-1839.424000pt;}
._135{margin-left:-1832.993707pt;}
._12f{margin-left:-1823.415893pt;}
._1a4{margin-left:-1817.506773pt;}
._12e{margin-left:-1815.713707pt;}
._1a3{margin-left:-1807.494187pt;}
._209{margin-left:-1793.468800pt;}
._206{margin-left:-1785.418667pt;}
._11d{margin-left:-1784.123947pt;}
._11c{margin-left:-1775.393707pt;}
._6e{margin-left:-1748.900267pt;}
._b3{margin-left:-1745.965440pt;}
._b0{margin-left:-1723.893333pt;}
._ad{margin-left:-1679.051307pt;}
._137{margin-left:-1671.073707pt;}
._fd{margin-left:-1667.363840pt;}
._73{margin-left:-1666.398933pt;}
._34{margin-left:-1653.864960pt;}
._109{margin-left:-1634.850347pt;}
._63{margin-left:-1625.868160pt;}
._61{margin-left:-1622.945707pt;}
._4e{margin-left:-1587.522560pt;}
._4d{margin-left:-1577.226667pt;}
._100{margin-left:-1546.570240pt;}
._a0{margin-left:-1545.083947pt;}
._10c{margin-left:-1531.847893pt;}
._9f{margin-left:-1524.746667pt;}
._112{margin-left:-1522.464427pt;}
._98{margin-left:-1513.165867pt;}
._e8{margin-left:-1508.887040pt;}
._1eb{margin-left:-1486.229120pt;}
._1e{margin-left:-1479.505707pt;}
._32{margin-left:-1467.893333pt;}
._96{margin-left:-1460.618240pt;}
._105{margin-left:-1458.009173pt;}
._10f{margin-left:-1451.537920pt;}
._65{margin-left:-1442.755840pt;}
._1ee{margin-left:-1435.761920pt;}
._f1{margin-left:-1404.423680pt;}
._107{margin-left:-1398.778880pt;}
._e7{margin-left:-1377.357867pt;}
._ea{margin-left:-1353.733120pt;}
._1c5{margin-left:-1312.184107pt;}
._1e9{margin-left:-1308.496000pt;}
._1c4{margin-left:-1302.549120pt;}
._31{margin-left:-1287.303253pt;}
._b8{margin-left:-1284.609067pt;}
._1cb{margin-left:-1279.813333pt;}
._11e{margin-left:-1272.353707pt;}
._11f{margin-left:-1271.299627pt;}
._1cc{margin-left:-1263.487147pt;}
._1db{margin-left:-1256.794880pt;}
._116{margin-left:-1254.723627pt;}
._2f{margin-left:-1240.465920pt;}
._1ad{margin-left:-1238.064000pt;}
._9a{margin-left:-1228.427093pt;}
._198{margin-left:-1225.994667pt;}
._13a{margin-left:-1223.508480pt;}
._130{margin-left:-1215.064107pt;}
._1b5{margin-left:-1211.571200pt;}
._1ac{margin-left:-1202.534187pt;}
._139{margin-left:-1199.895467pt;}
._1da{margin-left:-1170.709120pt;}
._88{margin-left:-1168.920107pt;}
._197{margin-left:-1165.414187pt;}
._172{margin-left:-1163.712000pt;}
._1bd{margin-left:-1161.338453pt;}
._1e2{margin-left:-1157.482880pt;}
._171{margin-left:-1151.378987pt;}
._4a{margin-left:-1129.699840pt;}
._f8{margin-left:-1127.647787pt;}
._1d4{margin-left:-1124.168107pt;}
._1e1{margin-left:-1122.069120pt;}
._f7{margin-left:-1118.871467pt;}
._1d3{margin-left:-1114.389120pt;}
._51{margin-left:-1110.243840pt;}
._17e{margin-left:-1107.222613pt;}
._1ca{margin-left:-1105.962453pt;}
._1d1{margin-left:-1103.194667pt;}
._9{margin-left:-1100.602667pt;}
._b1{margin-left:-1091.692587pt;}
._fe{margin-left:-1086.986667pt;}
._147{margin-left:-1084.469120pt;}
._1b6{margin-left:-1077.280000pt;}
._8b{margin-left:-1067.787093pt;}
._1b0{margin-left:-1060.032000pt;}
._64{margin-left:-1053.066667pt;}
._a5{margin-left:-1047.482880pt;}
._6b{margin-left:-1044.695040pt;}
._17d{margin-left:-1038.632320pt;}
._1a9{margin-left:-1033.467520pt;}
._af{margin-left:-1031.864960pt;}
._1b7{margin-left:-1025.760000pt;}
._19e{margin-left:-1019.107200pt;}
._1d0{margin-left:-1017.642453pt;}
._188{margin-left:-1009.407573pt;}
._1af{margin-left:-999.547520pt;}
._19a{margin-left:-997.382400pt;}
._177{margin-left:-994.471680pt;}
._187{margin-left:-993.192320pt;}
._11a{margin-left:-991.477760pt;}
._176{margin-left:-981.672320pt;}
._163{margin-left:-978.854400pt;}
._7e{margin-left:-970.489813pt;}
._162{margin-left:-966.312320pt;}
._82{margin-left:-963.718187pt;}
._38{margin-left:-956.994560pt;}
._131{margin-left:-954.807040pt;}
._132{margin-left:-953.173547pt;}
._1ba{margin-left:-948.960000pt;}
._70{margin-left:-944.365867pt;}
._1f3{margin-left:-940.672000pt;}
._19b{margin-left:-927.984000pt;}
._134{margin-left:-918.174720pt;}
._99{margin-left:-910.806613pt;}
._133{margin-left:-907.626667pt;}
._bd{margin-left:-899.359360pt;}
._9e{margin-left:-891.426560pt;}
._54{margin-left:-886.965760pt;}
._15b{margin-left:-884.759253pt;}
._e5{margin-left:-880.543147pt;}
._14a{margin-left:-878.497493pt;}
._41{margin-left:-875.898880pt;}
._10b{margin-left:-874.411520pt;}
._15a{margin-left:-872.872320pt;}
._e6{margin-left:-871.491627pt;}
._18e{margin-left:-870.312320pt;}
._19f{margin-left:-868.430507pt;}
._14{margin-left:-867.072000pt;}
._1b9{margin-left:-862.762453pt;}
._ac{margin-left:-858.437120pt;}
._3a{margin-left:-847.083520pt;}
._1e0{margin-left:-841.829333pt;}
._17b{margin-left:-839.979093pt;}
._149{margin-left:-837.978240pt;}
._1df{margin-left:-830.826667pt;}
._47{margin-left:-829.145600pt;}
._17a{margin-left:-827.432320pt;}
._16e{margin-left:-808.478933pt;}
._1d5{margin-left:-807.488000pt;}
._1c0{margin-left:-805.802453pt;}
._12c{margin-left:-803.861760pt;}
._16d{margin-left:-796.072320pt;}
._17f{margin-left:-793.440853pt;}
._1be{margin-left:-790.560000pt;}
._12d{margin-left:-784.130560pt;}
._13b{margin-left:-782.959787pt;}
._b4{margin-left:-782.014720pt;}
._fc{margin-left:-779.569707pt;}
._1f9{margin-left:-776.688000pt;}
._148{margin-left:-774.429440pt;}
._e4{margin-left:-770.355200pt;}
._e3{margin-left:-768.313600pt;}
._1f2{margin-left:-765.482453pt;}
._d4{margin-left:-762.953387pt;}
._36{margin-left:-751.974400pt;}
._22{margin-left:-742.560640pt;}
._35{margin-left:-741.280000pt;}
._154{margin-left:-739.112320pt;}
._155{margin-left:-736.867413pt;}
._1f7{margin-left:-730.282453pt;}
._14e{margin-left:-729.178240pt;}
._fa{margin-left:-725.067307pt;}
._d5{margin-left:-723.627520pt;}
._181{margin-left:-719.768533pt;}
._193{margin-left:-716.624000pt;}
._f9{margin-left:-715.564800pt;}
._1e5{margin-left:-714.026667pt;}
._37{margin-left:-712.701440pt;}
._78{margin-left:-710.799360pt;}
._180{margin-left:-707.112320pt;}
._129{margin-left:-695.493120pt;}
._3d{margin-left:-693.333760pt;}
._194{margin-left:-690.366507pt;}
._ff{margin-left:-687.862827pt;}
._173{margin-left:-684.072320pt;}
._174{margin-left:-682.313173pt;}
._1c2{margin-left:-680.343040pt;}
._3b{margin-left:-677.391360pt;}
._1c3{margin-left:-672.885333pt;}
._168{margin-left:-666.861013pt;}
._17c{margin-left:-664.811307pt;}
._1f8{margin-left:-661.940693pt;}
._113{margin-left:-660.357120pt;}
._b{margin-left:-657.077760pt;}
._167{margin-left:-653.992320pt;}
._a7{margin-left:-646.526720pt;}
._1bf{margin-left:-642.365013pt;}
._195{margin-left:-638.496000pt;}
._f6{margin-left:-637.484800pt;}
._1c1{margin-left:-633.450027pt;}
._179{margin-left:-631.622827pt;}
._b5{margin-left:-628.316160pt;}
._3f{margin-left:-622.127360pt;}
._1d{margin-left:-621.197653pt;}
._178{margin-left:-619.432320pt;}
._1e7{margin-left:-618.282453pt;}
._1ab{margin-left:-607.152000pt;}
._1ae{margin-left:-605.923840pt;}
._144{margin-left:-602.585813pt;}
._192{margin-left:-594.427520pt;}
._143{margin-left:-588.534400pt;}
._57{margin-left:-587.283200pt;}
._97{margin-left:-585.535573pt;}
._170{margin-left:-573.668907pt;}
._5a{margin-left:-569.468587pt;}
._1b1{margin-left:-567.774720pt;}
._8a{margin-left:-566.660267pt;}
._3c{margin-left:-563.888640pt;}
._16f{margin-left:-561.192320pt;}
._202{margin-left:-558.826667pt;}
._138{margin-left:-557.367040pt;}
._16a{margin-left:-553.512320pt;}
._16b{margin-left:-551.937067pt;}
._102{margin-left:-549.018667pt;}
._eb{margin-left:-546.479147pt;}
._20b{margin-left:-544.394667pt;}
._1ea{margin-left:-543.148587pt;}
._115{margin-left:-541.393920pt;}
._53{margin-left:-538.004480pt;}
._1ef{margin-left:-536.585600pt;}
._40{margin-left:-534.784000pt;}
._12a{margin-left:-529.707733pt;}
._89{margin-left:-519.786667pt;}
._1b2{margin-left:-516.213333pt;}
._1e3{margin-left:-513.280000pt;}
._15f{margin-left:-509.106347pt;}
._d6{margin-left:-501.948160pt;}
._141{margin-left:-500.416427pt;}
._207{margin-left:-499.306667pt;}
._18b{margin-left:-495.877120pt;}
._140{margin-left:-494.161707pt;}
._cc{margin-left:-490.237440pt;}
._1e4{margin-left:-488.093440pt;}
._127{margin-left:-484.981760pt;}
._1ec{margin-left:-478.129920pt;}
._185{margin-left:-473.105920pt;}
._128{margin-left:-472.047147pt;}
._1fd{margin-left:-463.872000pt;}
._117{margin-left:-460.349440pt;}
._184{margin-left:-457.512320pt;}
._10a{margin-left:-455.132160pt;}
._203{margin-left:-453.328000pt;}
._fb{margin-left:-451.244800pt;}
._18a{margin-left:-449.192320pt;}
._1b3{margin-left:-447.808000pt;}
._e1{margin-left:-443.972907pt;}
._1b4{margin-left:-437.456000pt;}
._208{margin-left:-434.400000pt;}
._204{margin-left:-426.384000pt;}
._ce{margin-left:-424.454827pt;}
._1fc{margin-left:-415.648000pt;}
._e0{margin-left:-413.834453pt;}
._5d{margin-left:-412.002347pt;}
._92{margin-left:-405.112320pt;}
._1d2{margin-left:-403.213227pt;}
._1ed{margin-left:-401.856000pt;}
._66{margin-left:-400.405547pt;}
._125{margin-left:-382.970880pt;}
._15e{margin-left:-381.192320pt;}
._b9{margin-left:-374.173867pt;}
._124{margin-left:-369.687040pt;}
._1ce{margin-left:-366.789333pt;}
._ab{margin-left:-362.986667pt;}
._21{margin-left:-354.021547pt;}
._de{margin-left:-353.025707pt;}
._19c{margin-left:-348.073387pt;}
._e{margin-left:-345.797120pt;}
._db{margin-left:-344.398507pt;}
._d{margin-left:-341.866667pt;}
._a1{margin-left:-338.026667pt;}
._f2{margin-left:-335.513600pt;}
._a{margin-left:-334.292480pt;}
._bf{margin-left:-332.230613pt;}
._dd{margin-left:-330.305280pt;}
._1b8{margin-left:-328.746667pt;}
._119{margin-left:-323.946667pt;}
._175{margin-left:-319.410560pt;}
._1dd{margin-left:-318.224000pt;}
._a4{margin-left:-313.066667pt;}
._c1{margin-left:-311.118933pt;}
._1aa{margin-left:-308.007040pt;}
._1de{margin-left:-306.432000pt;}
._c2{margin-left:-304.399787pt;}
._95{margin-left:-302.186667pt;}
._1f6{margin-left:-301.296213pt;}
._1ff{margin-left:-299.616000pt;}
._1f5{margin-left:-298.631680pt;}
._1fe{margin-left:-297.488000pt;}
._3e{margin-left:-295.731200pt;}
._18f{margin-left:-293.888000pt;}
._159{margin-left:-291.667627pt;}
._1cd{margin-left:-289.986347pt;}
._c9{margin-left:-288.668160pt;}
._25{margin-left:-285.704960pt;}
._c5{margin-left:-284.384000pt;}
._c6{margin-left:-283.165227pt;}
._2d{margin-left:-281.862187pt;}
._10{margin-left:-280.793600pt;}
._f{margin-left:-277.120000pt;}
._bc{margin-left:-273.326080pt;}
._ae{margin-left:-271.293440pt;}
._bb{margin-left:-265.628160pt;}
._46{margin-left:-263.744853pt;}
._2c{margin-left:-261.226667pt;}
._d1{margin-left:-257.798400pt;}
._8f{margin-left:-252.288000pt;}
._1d8{margin-left:-250.480000pt;}
._1a8{margin-left:-249.456000pt;}
._be{margin-left:-241.948160pt;}
._cf{margin-left:-238.748160pt;}
._8d{margin-left:-237.275947pt;}
._153{margin-left:-235.602560pt;}
._1a7{margin-left:-233.622400pt;}
._55{margin-left:-227.289600pt;}
._158{margin-left:-221.832320pt;}
._f5{margin-left:-218.792960pt;}
._191{margin-left:-217.184000pt;}
._157{margin-left:-215.673600pt;}
._1f1{margin-left:-214.010667pt;}
._1f0{margin-left:-211.753387pt;}
._c7{margin-left:-209.948160pt;}
._f4{margin-left:-208.524800pt;}
._1c6{margin-left:-207.373440pt;}
._169{margin-left:-206.446293pt;}
._14c{margin-left:-204.155520pt;}
._161{margin-left:-202.696320pt;}
._156{margin-left:-201.440000pt;}
._ed{margin-left:-199.808000pt;}
._1bb{margin-left:-195.840000pt;}
._165{margin-left:-194.910080pt;}
._152{margin-left:-193.032320pt;}
._15d{margin-left:-189.177600pt;}
._9b{margin-left:-187.998720pt;}
._1dc{margin-left:-186.240000pt;}
._ca{margin-left:-183.827200pt;}
._df{margin-left:-181.255893pt;}
._72{margin-left:-178.688000pt;}
._1d9{margin-left:-177.389440pt;}
._13f{margin-left:-175.733760pt;}
._27{margin-left:-174.333440pt;}
._15{margin-left:-172.551680pt;}
._90{margin-left:-171.397120pt;}
._1f4{margin-left:-170.137813pt;}
._4c{margin-left:-169.088000pt;}
._1fa{margin-left:-165.869440pt;}
._d0{margin-left:-164.916267pt;}
._11{margin-left:-164.000000pt;}
._14b{margin-left:-162.056533pt;}
._c3{margin-left:-160.668160pt;}
._cb{margin-left:-159.061760pt;}
._cd{margin-left:-157.568853pt;}
._160{margin-left:-155.637120pt;}
._1c9{margin-left:-154.656000pt;}
._164{margin-left:-153.352320pt;}
._1a6{margin-left:-152.432000pt;}
._1c8{margin-left:-150.524587pt;}
._20c{margin-left:-149.533227pt;}
._12b{margin-left:-144.501760pt;}
._c4{margin-left:-143.297067pt;}
._19d{margin-left:-141.900587pt;}
._1a0{margin-left:-140.005973pt;}
._12{margin-left:-136.646400pt;}
._13e{margin-left:-134.458240pt;}
._c0{margin-left:-133.546027pt;}
._44{margin-left:-131.942400pt;}
._23{margin-left:-130.664960pt;}
._20a{margin-left:-129.659307pt;}
._101{margin-left:-127.811200pt;}
._a8{margin-left:-126.766080pt;}
._18d{margin-left:-123.888640pt;}
._1d7{margin-left:-122.080000pt;}
._16c{margin-left:-120.712320pt;}
._103{margin-left:-118.563840pt;}
._da{margin-left:-115.642880pt;}
._182{margin-left:-114.415573pt;}
._15c{margin-left:-113.310720pt;}
._13c{margin-left:-112.346027pt;}
._120{margin-left:-111.360000pt;}
._1fb{margin-left:-109.185280pt;}
._121{margin-left:-108.140160pt;}
._189{margin-left:-106.579627pt;}
._dc{margin-left:-104.087040pt;}
._d8{margin-left:-102.364160pt;}
._d7{margin-left:-100.960000pt;}
._14f{margin-left:-99.260160pt;}
._13d{margin-left:-97.919360pt;}
._d2{margin-left:-94.616107pt;}
._18c{margin-left:-92.800427pt;}
._e2{margin-left:-90.496000pt;}
._d9{margin-left:-88.709973pt;}
._e9{margin-left:-84.591147pt;}
._7f{margin-left:-82.365440pt;}
._58{margin-left:-81.458347pt;}
._196{margin-left:-79.843840pt;}
._199{margin-left:-78.240000pt;}
._ba{margin-left:-77.281280pt;}
._6c{margin-left:-75.829760pt;}
._166{margin-left:-74.648960pt;}
._151{margin-left:-73.599573pt;}
._142{margin-left:-71.774720pt;}
._14d{margin-left:-70.399573pt;}
._5f{margin-left:-69.440000pt;}
._d3{margin-left:-67.768320pt;}
._1a2{margin-left:-66.314667pt;}
._f3{margin-left:-64.412160pt;}
._60{margin-left:-62.876160pt;}
._108{margin-left:-60.766720pt;}
._a2{margin-left:-59.491840pt;}
._186{margin-left:-58.452480pt;}
._104{margin-left:-56.602453pt;}
._1cf{margin-left:-55.562027pt;}
._146{margin-left:-54.447360pt;}
._2a{margin-left:-53.516800pt;}
._c8{margin-left:-52.580907pt;}
._4f{margin-left:-50.805760pt;}
._1a1{margin-left:-49.867947pt;}
._126{margin-left:-48.407040pt;}
._1e6{margin-left:-47.348267pt;}
._56{margin-left:-45.690880pt;}
._83{margin-left:-44.567040pt;}
._145{margin-left:-43.301120pt;}
._79{margin-left:-41.973760pt;}
._30{margin-left:-40.384000pt;}
._1a5{margin-left:-39.328000pt;}
._183{margin-left:-38.330667pt;}
._24{margin-left:-37.404160pt;}
._1d6{margin-left:-35.877547pt;}
._a6{margin-left:-34.967040pt;}
._c{margin-left:-33.502720pt;}
._114{margin-left:-32.407040pt;}
._13{margin-left:-30.337280pt;}
._6d{margin-left:-29.440000pt;}
._39{margin-left:-27.430400pt;}
._150{margin-left:-26.080000pt;}
._1bc{margin-left:-23.505280pt;}
._26{margin-left:-14.248960pt;}
._18{margin-left:-12.386560pt;}
._49{margin-left:-9.550080pt;}
._17{margin-left:-8.561920pt;}
._16{margin-left:-7.601067pt;}
._1f{margin-left:-6.536107pt;}
._19{margin-left:-4.993280pt;}
._1a{margin-left:-3.993600pt;}
._1c{margin-left:-2.868480pt;}
._59{margin-left:-1.922560pt;}
._1{margin-left:-0.960000pt;}
._0{width:0.922667pt;}
._2{width:2.400000pt;}
._3{width:3.301333pt;}
._4{width:4.800000pt;}
._6{width:5.856000pt;}
._7{width:6.842667pt;}
._5{width:8.592000pt;}
._62{width:10.337280pt;}
._8{width:11.520000pt;}
._68{width:12.908800pt;}
._86{width:16.163840pt;}
._75{width:20.380800pt;}
._84{width:23.307093pt;}
._b2{width:24.388267pt;}
._190{width:268.960000pt;}
.fs8{font-size:5.120000pt;}
.fs7{font-size:26.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs9{font-size:62.064349pt;}
.fs1{font-size:64.000000pt;}
.fsa{font-size:74.880000pt;}
.fs6{font-size:80.000000pt;}
.fs4{font-size:90.880000pt;}
.fs3{font-size:96.000000pt;}
.y42{bottom:-14.400000pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:2.880000pt;}
.y41{bottom:14.240000pt;}
.y40{bottom:15.840000pt;}
.y5b{bottom:16.960000pt;}
.y3f{bottom:17.280000pt;}
.y3e{bottom:20.320000pt;}
.y3d{bottom:30.560000pt;}
.y4f{bottom:31.040000pt;}
.y5a{bottom:45.120000pt;}
.y4e{bottom:45.280000pt;}
.ya{bottom:49.760000pt;}
.y5f{bottom:50.240000pt;}
.y3c{bottom:54.080000pt;}
.y59{bottom:59.200000pt;}
.y4d{bottom:59.360000pt;}
.y9{bottom:63.872000pt;}
.y4c{bottom:70.720000pt;}
.y80{bottom:72.512000pt;}
.y58{bottom:73.280000pt;}
.y3b{bottom:76.160000pt;}
.y8{bottom:77.952000pt;}
.yd4{bottom:80.992000pt;}
.yf8{bottom:84.672000pt;}
.y57{bottom:87.360000pt;}
.y4b{bottom:87.520000pt;}
.y119{bottom:87.552000pt;}
.y7{bottom:92.032000pt;}
.y3a{bottom:92.986667pt;}
.y147{bottom:100.032000pt;}
.y56{bottom:101.440000pt;}
.y4a{bottom:101.600000pt;}
.y7f{bottom:105.312000pt;}
.y6{bottom:106.112000pt;}
.yd3{bottom:113.792000pt;}
.y55{bottom:115.360000pt;}
.y146{bottom:115.392000pt;}
.y49{bottom:115.680000pt;}
.yf7{bottom:117.952000pt;}
.y5{bottom:120.192000pt;}
.y118{bottom:120.672000pt;}
.y54{bottom:126.720000pt;}
.y48{bottom:129.760000pt;}
.y145{bottom:130.592000pt;}
.yd2{bottom:130.752000pt;}
.ya7{bottom:133.152000pt;}
.y4{bottom:134.266667pt;}
.yf6{bottom:134.746667pt;}
.y53{bottom:136.000000pt;}
.y7e{bottom:138.426667pt;}
.y47{bottom:141.120000pt;}
.y52{bottom:145.280000pt;}
.y17b{bottom:145.466667pt;}
.y144{bottom:145.946667pt;}
.y3{bottom:148.346667pt;}
.y46{bottom:150.240000pt;}
.ya6{bottom:150.266667pt;}
.yf5{bottom:151.706667pt;}
.y117{bottom:153.946667pt;}
.y45{bottom:159.520000pt;}
.y17a{bottom:159.546667pt;}
.y51{bottom:160.960000pt;}
.y143{bottom:161.306667pt;}
.yd1{bottom:163.546667pt;}
.ya5{bottom:167.226667pt;}
.yf4{bottom:168.506667pt;}
.y116{bottom:171.066667pt;}
.y7d{bottom:171.706667pt;}
.y179{bottom:173.306667pt;}
.y44{bottom:175.200000pt;}
.y142{bottom:176.666667pt;}
.y38{bottom:177.146667pt;}
.yd0{bottom:180.346667pt;}
.ya4{bottom:184.026667pt;}
.yf3{bottom:185.306667pt;}
.y178{bottom:187.386667pt;}
.y141{bottom:192.026667pt;}
.y37{bottom:194.106667pt;}
.ycf{bottom:197.306667pt;}
.ya3{bottom:200.986667pt;}
.y177{bottom:201.146667pt;}
.yf2{bottom:202.266667pt;}
.y115{bottom:203.546667pt;}
.y7c{bottom:204.826667pt;}
.y140{bottom:207.226667pt;}
.y36{bottom:210.906667pt;}
.ycd{bottom:213.466667pt;}
.ycc{bottom:214.106667pt;}
.yce{bottom:214.746667pt;}
.y176{bottom:215.066667pt;}
.ya2{bottom:217.786667pt;}
.y13f{bottom:222.586667pt;}
.y35{bottom:227.706667pt;}
.y175{bottom:228.986667pt;}
.ya1{bottom:234.586667pt;}
.yf1{bottom:234.746667pt;}
.y114{bottom:236.826667pt;}
.y13e{bottom:237.946667pt;}
.y7b{bottom:238.106667pt;}
.y174{bottom:242.906667pt;}
.y34{bottom:244.666667pt;}
.ycb{bottom:247.066667pt;}
.ya0{bottom:251.546667pt;}
.y13d{bottom:253.306667pt;}
.y113{bottom:253.946667pt;}
.y173{bottom:256.986667pt;}
.y33{bottom:261.466667pt;}
.yca{bottom:264.186667pt;}
.y9f{bottom:266.906667pt;}
.y9e{bottom:268.346667pt;}
.y13c{bottom:268.666667pt;}
.y112{bottom:270.906667pt;}
.y7a{bottom:271.226667pt;}
.y32{bottom:278.426667pt;}
.yc9{bottom:280.986667pt;}
.y13b{bottom:284.066667pt;}
.y172{bottom:285.026667pt;}
.yf0{bottom:285.186667pt;}
.y111{bottom:287.746667pt;}
.y31{bottom:295.266667pt;}
.yc7{bottom:297.986667pt;}
.y171{bottom:298.786667pt;}
.yc8{bottom:298.946667pt;}
.y13a{bottom:299.266667pt;}
.y9d{bottom:301.346667pt;}
.yef{bottom:302.146667pt;}
.y79{bottom:304.546667pt;}
.y30{bottom:312.226667pt;}
.y170{bottom:312.706667pt;}
.y139{bottom:314.626667pt;}
.yc6{bottom:314.786667pt;}
.y9c{bottom:318.466667pt;}
.yee{bottom:318.946667pt;}
.y110{bottom:320.706667pt;}
.y16f{bottom:326.626667pt;}
.y2f{bottom:329.026667pt;}
.y138{bottom:329.986667pt;}
.yc5{bottom:331.746667pt;}
.yed{bottom:335.746667pt;}
.y78{bottom:337.666667pt;}
.y16e{bottom:340.546667pt;}
.y137{bottom:345.346667pt;}
.y2e{bottom:345.826667pt;}
.yc4{bottom:348.546667pt;}
.y9b{bottom:351.426667pt;}
.yec{bottom:352.706667pt;}
.y10f{bottom:353.826667pt;}
.y16d{bottom:354.306667pt;}
.y136{bottom:360.706667pt;}
.y2d{bottom:362.786667pt;}
.y16c{bottom:368.386667pt;}
.y9a{bottom:368.546667pt;}
.y10e{bottom:370.626667pt;}
.y77{bottom:370.946667pt;}
.y135{bottom:376.066667pt;}
.y2c{bottom:379.586667pt;}
.yc3{bottom:381.186667pt;}
.y16b{bottom:382.146667pt;}
.y99{bottom:385.346667pt;}
.yeb{bottom:385.506667pt;}
.y134{bottom:392.546667pt;}
.y16a{bottom:396.066667pt;}
.y2b{bottom:396.546667pt;}
.yea{bottom:402.466667pt;}
.y10d{bottom:403.586667pt;}
.y76{bottom:404.066667pt;}
.y169{bottom:409.986667pt;}
.y133{bottom:412.866667pt;}
.y2a{bottom:413.346667pt;}
.yc2{bottom:414.626667pt;}
.y98{bottom:418.306667pt;}
.y10c{bottom:420.386667pt;}
.y168{bottom:423.906667pt;}
.y132{bottom:428.066667pt;}
.y29{bottom:430.146667pt;}
.yc1{bottom:431.746667pt;}
.ye9{bottom:435.266667pt;}
.y97{bottom:435.426667pt;}
.y75{bottom:437.346667pt;}
.y167{bottom:437.986667pt;}
.y131{bottom:443.426667pt;}
.y28{bottom:447.106667pt;}
.yc0{bottom:448.706667pt;}
.y166{bottom:451.906667pt;}
.y96{bottom:452.386667pt;}
.y74{bottom:454.466667pt;}
.y130{bottom:458.786667pt;}
.y27{bottom:463.906667pt;}
.ybf{bottom:465.506667pt;}
.y165{bottom:465.826667pt;}
.ye8{bottom:468.386667pt;}
.y95{bottom:469.186667pt;}
.y10b{bottom:470.146667pt;}
.y12f{bottom:474.146667pt;}
.y164{bottom:479.746667pt;}
.y26{bottom:480.866667pt;}
.ybe{bottom:482.466667pt;}
.y94{bottom:486.146667pt;}
.y73{bottom:487.426667pt;}
.y12e{bottom:489.506667pt;}
.y163{bottom:493.506667pt;}
.y25{bottom:497.346667pt;}
.ye7{bottom:501.346667pt;}
.y92{bottom:502.946667pt;}
.y10a{bottom:503.586667pt;}
.y72{bottom:504.546667pt;}
.y93{bottom:505.826667pt;}
.y162{bottom:507.613333pt;}
.y24{bottom:511.453333pt;}
.ybd{bottom:515.293333pt;}
.y43{bottom:518.333333pt;}
.y12d{bottom:520.093333pt;}
.y109{bottom:520.573333pt;}
.y71{bottom:521.373333pt;}
.y161{bottom:521.533333pt;}
.y23{bottom:532.093333pt;}
.y50{bottom:532.733333pt;}
.ye6{bottom:534.493333pt;}
.y160{bottom:535.613333pt;}
.y91{bottom:535.773333pt;}
.ybc{bottom:549.053333pt;}
.y15f{bottom:549.533333pt;}
.y1e{bottom:550.173333pt;}
.y12c{bottom:550.813333pt;}
.ye5{bottom:551.453333pt;}
.y108{bottom:553.373333pt;}
.y22{bottom:554.013333pt;}
.y70{bottom:554.333333pt;}
.y15e{bottom:563.453333pt;}
.y1d{bottom:565.853333pt;}
.y12b{bottom:566.173333pt;}
.ye4{bottom:568.253333pt;}
.y90{bottom:569.053333pt;}
.y107{bottom:570.333333pt;}
.y6f{bottom:571.453333pt;}
.y21{bottom:572.733333pt;}
.y15d{bottom:577.373333pt;}
.y1c{bottom:581.533333pt;}
.ybb{bottom:582.813333pt;}
.ye3{bottom:585.213333pt;}
.y8f{bottom:586.173333pt;}
.y15c{bottom:591.293333pt;}
.y20{bottom:591.453333pt;}
.y12a{bottom:596.733333pt;}
.y1b{bottom:597.213333pt;}
.ye2{bottom:602.013333pt;}
.y106{bottom:603.133333pt;}
.y6e{bottom:604.093333pt;}
.y15b{bottom:605.213333pt;}
.y1f{bottom:610.173333pt;}
.y129{bottom:612.093333pt;}
.y1a{bottom:612.733333pt;}
.yba{bottom:615.613333pt;}
.y8e{bottom:618.813333pt;}
.y15a{bottom:619.133333pt;}
.y6d{bottom:620.893333pt;}
.y19{bottom:628.413333pt;}
.yb9{bottom:632.893333pt;}
.y159{bottom:633.053333pt;}
.y6c{bottom:634.653333pt;}
.ye1{bottom:634.813333pt;}
.y105{bottom:636.413333pt;}
.y128{bottom:643.453333pt;}
.y18{bottom:644.093333pt;}
.y158{bottom:646.973333pt;}
.yb8{bottom:649.693333pt;}
.ye0{bottom:651.773333pt;}
.y8d{bottom:651.933333pt;}
.y6b{bottom:658.813333pt;}
.y17{bottom:659.613333pt;}
.y157{bottom:660.893333pt;}
.yb7{bottom:666.493333pt;}
.y104{bottom:669.533333pt;}
.y156{bottom:674.813333pt;}
.y16{bottom:675.293333pt;}
.y127{bottom:676.573333pt;}
.ydf{bottom:682.173333pt;}
.yb6{bottom:683.453333pt;}
.yde{bottom:684.573333pt;}
.y8c{bottom:685.213333pt;}
.y155{bottom:688.733333pt;}
.y126{bottom:693.853333pt;}
.y6a{bottom:698.493333pt;}
.yb5{bottom:700.253333pt;}
.ydd{bottom:701.533333pt;}
.y8b{bottom:702.333333pt;}
.y154{bottom:702.493333pt;}
.y103{bottom:702.813333pt;}
.y15{bottom:704.093333pt;}
.y125{bottom:710.973333pt;}
.y153{bottom:716.573333pt;}
.yb4{bottom:717.213333pt;}
.y8a{bottom:719.133333pt;}
.y69{bottom:720.573333pt;}
.y14{bottom:722.493333pt;}
.y124{bottom:728.293333pt;}
.y152{bottom:730.533333pt;}
.yb2{bottom:733.413333pt;}
.yb3{bottom:733.733333pt;}
.yb1{bottom:734.053333pt;}
.ydc{bottom:734.373333pt;}
.y101{bottom:735.973333pt;}
.y102{bottom:736.453333pt;}
.y68{bottom:742.693333pt;}
.y151{bottom:744.613333pt;}
.ydb{bottom:751.653333pt;}
.y89{bottom:752.133333pt;}
.y13{bottom:753.413333pt;}
.y150{bottom:758.373333pt;}
.y123{bottom:761.733333pt;}
.y67{bottom:764.773333pt;}
.yb0{bottom:766.853333pt;}
.yda{bottom:768.453333pt;}
.y100{bottom:768.773333pt;}
.y88{bottom:769.253333pt;}
.y14f{bottom:772.453333pt;}
.yaf{bottom:784.133333pt;}
.yd9{bottom:785.253333pt;}
.yff{bottom:786.053333pt;}
.y14e{bottom:786.373333pt;}
.y12{bottom:789.253333pt;}
.y122{bottom:796.133333pt;}
.y66{bottom:797.413333pt;}
.y87{bottom:801.733333pt;}
.y86{bottom:802.213333pt;}
.yfe{bottom:802.853333pt;}
.y121{bottom:813.413333pt;}
.y14d{bottom:813.573333pt;}
.y11{bottom:816.453333pt;}
.yad{bottom:816.933333pt;}
.yd8{bottom:817.893333pt;}
.y85{bottom:819.333333pt;}
.yae{bottom:819.813333pt;}
.y65{bottom:824.613333pt;}
.y120{bottom:830.533333pt;}
.yac{bottom:833.893333pt;}
.yfd{bottom:838.373333pt;}
.y64{bottom:839.493333pt;}
.y14c{bottom:844.293333pt;}
.y11f{bottom:847.813333pt;}
.yab{bottom:850.693333pt;}
.yd7{bottom:851.013333pt;}
.y84{bottom:851.973333pt;}
.yfc{bottom:858.053333pt;}
.y14b{bottom:863.653333pt;}
.y39{bottom:864.933333pt;}
.y63{bottom:872.773333pt;}
.y10{bottom:873.253333pt;}
.yfb{bottom:877.733333pt;}
.y11e{bottom:882.213333pt;}
.y14a{bottom:883.013333pt;}
.yaa{bottom:883.333333pt;}
.yd6{bottom:884.293333pt;}
.y83{bottom:885.093333pt;}
.y62{bottom:889.733333pt;}
.yf{bottom:892.453333pt;}
.yfa{bottom:897.573333pt;}
.y11d{bottom:899.333333pt;}
.y149{bottom:902.533333pt;}
.y61{bottom:906.533333pt;}
.ye{bottom:911.813333pt;}
.y11c{bottom:916.133333pt;}
.ya9{bottom:916.773333pt;}
.yd5{bottom:917.093333pt;}
.yf9{bottom:917.253333pt;}
.y82{bottom:917.893333pt;}
.yd{bottom:931.173333pt;}
.y11b{bottom:933.413333pt;}
.ya8{bottom:933.893333pt;}
.y60{bottom:942.373333pt;}
.yc{bottom:950.533333pt;}
.y11a{bottom:950.693333pt;}
.y81{bottom:950.853333pt;}
.y148{bottom:952.160000pt;}
.y5e{bottom:968.160000pt;}
.yb{bottom:969.920000pt;}
.y5d{bottom:988.640000pt;}
.y2{bottom:988.800000pt;}
.y1{bottom:1002.720000pt;}
.hf{height:3.412500pt;}
.h10{height:3.982500pt;}
.he{height:17.915625pt;}
.h13{height:18.847500pt;}
.h7{height:31.992188pt;}
.h1{height:33.656250pt;}
.h8{height:37.246250pt;}
.h9{height:39.243750pt;}
.hc{height:41.285000pt;}
.h38{height:42.046875pt;}
.h39{height:44.039062pt;}
.h2{height:44.875000pt;}
.h1a{height:45.364688pt;}
.h19{height:47.437500pt;}
.h15{height:49.336436pt;}
.h1b{height:50.003015pt;}
.h3a{height:50.062500pt;}
.h1c{height:50.283750pt;}
.h17{height:51.577500pt;}
.h18{height:54.021250pt;}
.h3{height:54.598989pt;}
.h1f{height:54.661250pt;}
.h27{height:55.301250pt;}
.h36{height:55.402500pt;}
.h1d{height:55.941250pt;}
.hd{height:56.093750pt;}
.h28{height:56.581250pt;}
.h24{height:57.221250pt;}
.h1e{height:57.861250pt;}
.h2b{height:58.501250pt;}
.h35{height:58.718750pt;}
.h30{height:59.141250pt;}
.h32{height:59.781250pt;}
.h22{height:60.421250pt;}
.ha{height:60.519362pt;}
.h23{height:61.061250pt;}
.h33{height:61.410000pt;}
.h31{height:61.701250pt;}
.h20{height:62.981250pt;}
.h2c{height:63.621250pt;}
.h5{height:63.722500pt;}
.h34{height:64.261250pt;}
.h6{height:64.500000pt;}
.h2a{height:64.901250pt;}
.h21{height:65.541250pt;}
.h11{height:65.781915pt;}
.h25{height:66.181250pt;}
.h2e{height:67.461250pt;}
.h37{height:68.700937pt;}
.h2d{height:68.741250pt;}
.h2f{height:69.381250pt;}
.h29{height:70.661250pt;}
.h26{height:71.301250pt;}
.h16{height:88.078125pt;}
.h4{height:98.672872pt;}
.hb{height:104.186667pt;}
.h14{height:173.600000pt;}
.h12{height:187.840000pt;}
.h0{height:1056.000000pt;}
.w2{width:204.546667pt;}
.w3{width:467.733333pt;}
.w1{width:483.760000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:9.586667pt;}
.xb{left:58.404000pt;}
.x13{left:62.560000pt;}
.x1{left:67.200000pt;}
.x1f{left:75.840000pt;}
.xc0{left:85.472000pt;}
.x8{left:87.986667pt;}
.xd1{left:89.952000pt;}
.x51{left:93.152000pt;}
.xd3{left:94.112000pt;}
.x73{left:96.320000pt;}
.x9{left:98.106667pt;}
.x52{left:104.832000pt;}
.x33{left:106.592000pt;}
.xa9{left:108.032000pt;}
.x6{left:109.306667pt;}
.x59{left:112.672000pt;}
.x2{left:114.432000pt;}
.x7d{left:123.072000pt;}
.x74{left:124.160000pt;}
.x35{left:125.312000pt;}
.x7e{left:126.912000pt;}
.x97{left:128.800000pt;}
.x5b{left:130.752000pt;}
.x47{left:132.672000pt;}
.x1e{left:138.586667pt;}
.x7f{left:140.986667pt;}
.x80{left:141.946667pt;}
.x83{left:143.226667pt;}
.x91{left:145.760000pt;}
.x88{left:148.666667pt;}
.x16{left:151.866667pt;}
.x1c{left:153.306667pt;}
.xa4{left:154.746667pt;}
.x42{left:157.306667pt;}
.x5{left:160.200000pt;}
.x53{left:164.832000pt;}
.x41{left:166.586667pt;}
.x9a{left:168.346667pt;}
.x55{left:170.746667pt;}
.x69{left:174.906667pt;}
.x14{left:178.106667pt;}
.xb6{left:181.786667pt;}
.x6a{left:189.626667pt;}
.xc{left:195.062667pt;}
.x6f{left:198.586667pt;}
.x63{left:200.186667pt;}
.x61{left:206.426667pt;}
.xa1{left:207.546667pt;}
.x9b{left:208.986667pt;}
.x54{left:220.032000pt;}
.xb7{left:221.786667pt;}
.x4b{left:230.720000pt;}
.x7{left:241.786667pt;}
.x7c{left:244.000000pt;}
.x6b{left:246.266667pt;}
.x98{left:251.040000pt;}
.x57{left:253.466667pt;}
.x49{left:258.106667pt;}
.x6c{left:260.986667pt;}
.xcd{left:263.586667pt;}
.x22{left:264.706667pt;}
.x1d{left:267.746667pt;}
.x70{left:272.346667pt;}
.x2d{left:284.226667pt;}
.xf{left:287.906667pt;}
.x2f{left:290.786667pt;}
.xd{left:291.906667pt;}
.x92{left:293.760000pt;}
.x9c{left:295.546667pt;}
.xb8{left:297.946667pt;}
.x4d{left:300.066667pt;}
.x4{left:302.946667pt;}
.xb9{left:305.946667pt;}
.x46{left:311.680000pt;}
.xb3{left:313.506667pt;}
.xb4{left:321.826667pt;}
.x71{left:324.186667pt;}
.x58{left:326.786667pt;}
.x9d{left:329.466667pt;}
.xa6{left:333.986667pt;}
.x38{left:336.066667pt;}
.x8f{left:336.960000pt;}
.xb5{left:338.466667pt;}
.x23{left:339.426667pt;}
.xcf{left:343.426667pt;}
.x89{left:347.906667pt;}
.xae{left:354.466667pt;}
.x4e{left:362.306667pt;}
.x9e{left:364.986667pt;}
.x11{left:370.946667pt;}
.xaf{left:373.346667pt;}
.xbf{left:374.946667pt;}
.x3c{left:376.706667pt;}
.x8a{left:385.986667pt;}
.x64{left:387.106667pt;}
.xc8{left:390.626667pt;}
.x9f{left:391.706667pt;}
.x65{left:393.186667pt;}
.x43{left:399.426667pt;}
.x82{left:401.346667pt;}
.x12{left:404.386667pt;}
.x8b{left:405.986667pt;}
.xce{left:408.386667pt;}
.x5a{left:409.826667pt;}
.xbd{left:410.786667pt;}
.x10{left:413.666667pt;}
.x4a{left:415.066667pt;}
.xc1{left:417.346667pt;}
.x21{left:431.453333pt;}
.x72{left:433.466667pt;}
.x4f{left:435.426667pt;}
.xc9{left:440.866667pt;}
.x20{left:445.213333pt;}
.xd2{left:447.933333pt;}
.x5d{left:449.026667pt;}
.x8c{left:451.426667pt;}
.xca{left:452.546667pt;}
.xb0{left:456.066667pt;}
.xe{left:458.146667pt;}
.x90{left:459.106667pt;}
.x75{left:460.573333pt;}
.xa0{left:464.186667pt;}
.xb1{left:470.306667pt;}
.x30{left:472.253333pt;}
.x48{left:476.413333pt;}
.x37{left:480.253333pt;}
.x44{left:481.666667pt;}
.x31{left:490.333333pt;}
.x4c{left:491.453333pt;}
.xa8{left:494.813333pt;}
.x95{left:498.306667pt;}
.xab{left:499.746667pt;}
.x84{left:501.533333pt;}
.x66{left:502.626667pt;}
.xba{left:505.213333pt;}
.x5e{left:508.066667pt;}
.x76{left:510.013333pt;}
.x25{left:512.733333pt;}
.x8d{left:514.466667pt;}
.x3d{left:519.266667pt;}
.x32{left:521.853333pt;}
.xc5{left:523.773333pt;}
.x45{left:526.466667pt;}
.x5c{left:527.453333pt;}
.x5f{left:529.506667pt;}
.x39{left:531.133333pt;}
.x40{left:535.293333pt;}
.x2c{left:536.413333pt;}
.xa5{left:539.293333pt;}
.x26{left:540.413333pt;}
.x60{left:542.493333pt;}
.xa7{left:544.413333pt;}
.x2e{left:545.533333pt;}
.x50{left:548.226667pt;}
.x77{left:549.213333pt;}
.xc3{left:563.133333pt;}
.x67{left:564.706667pt;}
.x17{left:571.293333pt;}
.x8e{left:573.186667pt;}
.x24{left:577.213333pt;}
.x96{left:579.906667pt;}
.xac{left:581.666667pt;}
.x27{left:582.653333pt;}
.xaa{left:584.093333pt;}
.xc7{left:592.253333pt;}
.x36{left:595.293333pt;}
.x78{left:596.893333pt;}
.x15{left:598.493333pt;}
.x2a{left:599.813333pt;}
.xdf{left:606.533333pt;}
.x87{left:609.413333pt;}
.x28{left:611.173333pt;}
.xa3{left:613.893333pt;}
.xc2{left:619.173333pt;}
.xc4{left:620.293333pt;}
.x2b{left:621.733333pt;}
.x79{left:624.893333pt;}
.xd0{left:628.773333pt;}
.x3e{left:629.986667pt;}
.xcc{left:631.013333pt;}
.x7a{left:634.973333pt;}
.x94{left:636.293333pt;}
.xbe{left:639.333333pt;}
.x29{left:643.333333pt;}
.x99{left:644.253333pt;}
.xb2{left:646.626667pt;}
.x7b{left:649.533333pt;}
.x85{left:652.613333pt;}
.x3f{left:654.626667pt;}
.x19{left:658.053333pt;}
.xd5{left:659.813333pt;}
.x18{left:662.693333pt;}
.xdc{left:665.893333pt;}
.xdb{left:667.173333pt;}
.x6e{left:673.213333pt;}
.xd4{left:674.693333pt;}
.xde{left:675.973333pt;}
.xad{left:678.306667pt;}
.xcb{left:679.586667pt;}
.x68{left:685.346667pt;}
.xda{left:687.653333pt;}
.x3a{left:695.333333pt;}
.xd9{left:697.733333pt;}
.xd7{left:703.333333pt;}
.x93{left:708.453333pt;}
.x81{left:711.333333pt;}
.xdd{left:712.453333pt;}
.x1b{left:714.373333pt;}
.x56{left:716.346667pt;}
.xd8{left:718.053333pt;}
.xc6{left:720.133333pt;}
.xd6{left:723.653333pt;}
.xbc{left:731.493333pt;}
.xbb{left:732.613333pt;}
.x86{left:735.653333pt;}
.xa2{left:737.413333pt;}
.xe0{left:738.373333pt;}
.x62{left:739.653333pt;}
.x3b{left:741.413333pt;}
.x34{left:743.013333pt;}
.x6d{left:744.133333pt;}
.x1a{left:745.253333pt;}
.x3{left:748.933333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  