
    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_f8e031e4bc6ddfc10c89ebca.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_fca4ff36808fbcd285e9b2d3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0650b8b04cfdf986496db11f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0dee91c27cb50f9bd969205f.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_07bb04404c61e19e2ef79992.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_88d040ae19e91f9fdd380116.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_ca9ec26c471b0d8fcd97221b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.913086;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_20795acbe66b54d1b51f2771.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.093750;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_b82603bf976da6fa87145445.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.150391;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_7d80d6ce28d9b6e699216512.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c5da1ee810b7ce0ae7008f82.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_d6e1425d40ad4d3b599f2439.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.384277;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:fff;src:url('chunks/assets/font_9e52538c970699eae887229b.woff2')format("woff");}.fff{font-family:fff;line-height:1.129883;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:ff10;src:url('chunks/assets/font_b65d567eeb36bbb660ac0e29.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_230bbb8070b4112aa0fb4a2d.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.101562;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);}
.v18{vertical-align:-74.160000px;}
.v4{vertical-align:-61.920000px;}
.v1{vertical-align:-51.840000px;}
.v13{vertical-align:-18.720000px;}
.v1a{vertical-align:-17.280000px;}
.v3{vertical-align:-14.400000px;}
.v11{vertical-align:-12.960000px;}
.ve{vertical-align:-10.800000px;}
.vc{vertical-align:-9.360000px;}
.v14{vertical-align:-7.920000px;}
.v8{vertical-align:-5.760000px;}
.v10{vertical-align:-4.320000px;}
.v6{vertical-align:-2.880000px;}
.va{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.440000px;}
.v5{vertical-align:2.880000px;}
.vf{vertical-align:4.320000px;}
.v9{vertical-align:5.760000px;}
.vd{vertical-align:7.920000px;}
.vb{vertical-align:9.360000px;}
.v15{vertical-align:10.800000px;}
.v17{vertical-align:12.960000px;}
.v2{vertical-align:14.400000px;}
.v16{vertical-align:15.840000px;}
.v19{vertical-align:17.280000px;}
.v12{vertical-align:18.720000px;}
.ls18{letter-spacing:-30.060000px;}
.ls19{letter-spacing:-26.460000px;}
.ls17{letter-spacing:-22.140000px;}
.ls83{letter-spacing:-1.044000px;}
.ls73{letter-spacing:-1.008000px;}
.ls43{letter-spacing:-1.002000px;}
.ls53{letter-spacing:-0.792000px;}
.ls44{letter-spacing:-0.768000px;}
.ls78{letter-spacing:-0.756000px;}
.ls3c{letter-spacing:-0.750000px;}
.ls7b{letter-spacing:-0.720000px;}
.ls85{letter-spacing:-0.612000px;}
.ls88{letter-spacing:-0.540000px;}
.ls74{letter-spacing:-0.535800px;}
.ls7c{letter-spacing:-0.501000px;}
.ls3e{letter-spacing:-0.457800px;}
.ls3f{letter-spacing:-0.414600px;}
.ls79{letter-spacing:-0.397200px;}
.ls8{letter-spacing:-0.396000px;}
.ls7a{letter-spacing:-0.391800px;}
.ls45{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.335400px;}
.ls82{letter-spacing:-0.324000px;}
.lsd{letter-spacing:-0.306000px;}
.ls81{letter-spacing:-0.288000px;}
.ls3a{letter-spacing:-0.282000px;}
.lse{letter-spacing:-0.270000px;}
.ls89{letter-spacing:-0.252000px;}
.ls87{letter-spacing:-0.198000px;}
.ls54{letter-spacing:-0.178800px;}
.lsb{letter-spacing:-0.090000px;}
.ls86{letter-spacing:-0.072000px;}
.ls39{letter-spacing:-0.069000px;}
.ls62{letter-spacing:-0.048960px;}
.ls7f{letter-spacing:-0.034560px;}
.ls1b{letter-spacing:-0.031680px;}
.ls42{letter-spacing:-0.002880px;}
.ls7{letter-spacing:0.000000px;}
.ls75{letter-spacing:0.002880px;}
.ls80{letter-spacing:0.008640px;}
.ls2d{letter-spacing:0.023040px;}
.ls0{letter-spacing:0.072000px;}
.ls4c{letter-spacing:0.106560px;}
.lsc{letter-spacing:0.108000px;}
.ls68{letter-spacing:0.120960px;}
.ls2f{letter-spacing:0.172800px;}
.ls9{letter-spacing:0.180000px;}
.ls40{letter-spacing:0.184200px;}
.ls28{letter-spacing:0.184320px;}
.ls5{letter-spacing:0.216000px;}
.ls7e{letter-spacing:0.219000px;}
.ls2{letter-spacing:0.252000px;}
.ls46{letter-spacing:0.262200px;}
.ls57{letter-spacing:0.285000px;}
.ls6{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.305400px;}
.ls63{letter-spacing:0.322800px;}
.ls1{letter-spacing:0.324000px;}
.ls84{letter-spacing:0.342000px;}
.ls3{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.720000px;}
.ls2a{letter-spacing:0.728640px;}
.ls6c{letter-spacing:0.892800px;}
.ls3d{letter-spacing:1.026000px;}
.ls30{letter-spacing:1.117440px;}
.ls22{letter-spacing:1.157760px;}
.ls32{letter-spacing:1.229760px;}
.ls37{letter-spacing:1.261440px;}
.ls4b{letter-spacing:1.408320px;}
.ls1c{letter-spacing:1.440000px;}
.ls2e{letter-spacing:1.448640px;}
.ls25{letter-spacing:1.546560px;}
.ls21{letter-spacing:1.612800px;}
.ls41{letter-spacing:1.746000px;}
.ls64{letter-spacing:1.762560px;}
.ls48{letter-spacing:1.981440px;}
.ls14{letter-spacing:2.160000px;}
.ls60{letter-spacing:2.168640px;}
.ls71{letter-spacing:2.466000px;}
.ls6f{letter-spacing:2.557440px;}
.ls52{letter-spacing:2.701440px;}
.ls2b{letter-spacing:2.738880px;}
.ls38{letter-spacing:2.810880px;}
.ls12{letter-spacing:2.880000px;}
.ls33{letter-spacing:2.888640px;}
.ls56{letter-spacing:3.186000px;}
.ls16{letter-spacing:3.600000px;}
.ls6d{letter-spacing:3.784320px;}
.ls55{letter-spacing:3.906000px;}
.ls4d{letter-spacing:3.997440px;}
.ls4a{letter-spacing:4.147200px;}
.ls36{letter-spacing:4.250880px;}
.ls13{letter-spacing:4.320000px;}
.ls67{letter-spacing:4.328640px;}
.ls77{letter-spacing:4.553634px;}
.ls58{letter-spacing:4.626000px;}
.ls1e{letter-spacing:4.717440px;}
.ls34{letter-spacing:4.861440px;}
.ls66{letter-spacing:5.008320px;}
.ls15{letter-spacing:5.040000px;}
.ls5a{letter-spacing:5.048640px;}
.ls2c{letter-spacing:5.146560px;}
.ls50{letter-spacing:5.212800px;}
.ls3b{letter-spacing:5.346000px;}
.ls5b{letter-spacing:5.362560px;}
.ls6e{letter-spacing:5.368320px;}
.ls5f{letter-spacing:5.581440px;}
.ls20{letter-spacing:6.088320px;}
.ls23{letter-spacing:6.586560px;}
.ls5e{letter-spacing:6.877440px;}
.ls59{letter-spacing:6.989760px;}
.ls4f{letter-spacing:7.021440px;}
.ls6a{letter-spacing:7.168320px;}
.lsf{letter-spacing:7.200000px;}
.ls7d{letter-spacing:8.940000px;}
.ls70{letter-spacing:9.360000px;}
.ls29{letter-spacing:9.400320px;}
.ls31{letter-spacing:9.757440px;}
.ls65{letter-spacing:10.768320px;}
.ls5c{letter-spacing:10.906560px;}
.ls26{letter-spacing:10.972800px;}
.ls61{letter-spacing:11.047680px;}
.ls1f{letter-spacing:11.197440px;}
.ls6b{letter-spacing:11.237760px;}
.ls49{letter-spacing:11.341440px;}
.ls1d{letter-spacing:11.485440px;}
.ls24{letter-spacing:11.488320px;}
.ls51{letter-spacing:11.517120px;}
.ls69{letter-spacing:11.520000px;}
.ls47{letter-spacing:11.626560px;}
.ls72{letter-spacing:11.820000px;}
.ls5d{letter-spacing:12.562560px;}
.ls27{letter-spacing:12.781440px;}
.ls4e{letter-spacing:12.890880px;}
.ls35{letter-spacing:14.002560px;}
.ls4{letter-spacing:420.660000px;}
.ls10{letter-spacing:2891.281920px;}
.ls76{letter-spacing:3009.065280px;}
.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;}
}
.ws5{word-spacing:-22.157400px;}
.ws6{word-spacing:-19.710000px;}
.ws2e{word-spacing:-17.455598px;}
.wse{word-spacing:-17.118000px;}
.wsd{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.528320px;}
.ws9{word-spacing:-15.228000px;}
.ws8{word-spacing:-15.120000px;}
.ws7{word-spacing:-15.012000px;}
.ws13{word-spacing:-14.595840px;}
.ws1f{word-spacing:-14.572800px;}
.ws2f{word-spacing:-13.860000px;}
.ws30{word-spacing:-13.500000px;}
.ws39{word-spacing:-13.248000px;}
.ws31{word-spacing:-13.140000px;}
.ws4{word-spacing:-12.204000px;}
.ws3{word-spacing:-12.168000px;}
.ws2{word-spacing:-12.132000px;}
.wsc{word-spacing:-11.952000px;}
.ws0{word-spacing:-11.880000px;}
.wsa{word-spacing:-11.574000px;}
.ws1{word-spacing:-11.484000px;}
.ws20{word-spacing:-0.426240px;}
.ws36{word-spacing:-0.396000px;}
.ws22{word-spacing:-0.389040px;}
.ws1e{word-spacing:-0.371640px;}
.ws2a{word-spacing:-0.285240px;}
.ws16{word-spacing:-0.250440px;}
.ws35{word-spacing:-0.234000px;}
.ws3a{word-spacing:-0.162000px;}
.ws2c{word-spacing:-0.074880px;}
.ws26{word-spacing:-0.069120px;}
.wsf{word-spacing:-0.066240px;}
.ws17{word-spacing:-0.063360px;}
.ws34{word-spacing:-0.054000px;}
.ws1a{word-spacing:-0.034560px;}
.ws2b{word-spacing:-0.031680px;}
.ws21{word-spacing:-0.017280px;}
.wsb{word-spacing:0.000000px;}
.ws11{word-spacing:0.002760px;}
.ws37{word-spacing:0.018000px;}
.ws38{word-spacing:0.144000px;}
.ws12{word-spacing:0.215760px;}
.ws2d{word-spacing:0.221760px;}
.ws32{word-spacing:0.270000px;}
.ws1b{word-spacing:0.293760px;}
.ws28{word-spacing:0.325560px;}
.ws27{word-spacing:0.330960px;}
.ws15{word-spacing:0.391560px;}
.ws29{word-spacing:0.434760px;}
.ws24{word-spacing:0.469560px;}
.ws14{word-spacing:0.683760px;}
.ws25{word-spacing:0.689760px;}
.ws19{word-spacing:0.701760px;}
.ws1d{word-spacing:0.725760px;}
.ws18{word-spacing:0.935760px;}
.ws23{word-spacing:0.941760px;}
.ws33{word-spacing:0.990000px;}
.ws1c{word-spacing:11.422080px;}
._45{margin-left:-3085.829280px;}
._2d{margin-left:-3084.672000px;}
._c9{margin-left:-3082.580400px;}
._29{margin-left:-3080.934000px;}
._e1{margin-left:-3067.571520px;}
._120{margin-left:-3047.752560px;}
._132{margin-left:-3018.215520px;}
._11f{margin-left:-3015.960240px;}
._115{margin-left:-3001.003440px;}
._131{margin-left:-2991.327120px;}
._d6{margin-left:-2984.468880px;}
._fc{margin-left:-2983.453680px;}
._c8{margin-left:-2982.449760px;}
._10e{margin-left:-2975.187360px;}
._13e{margin-left:-2973.850800px;}
._f2{margin-left:-2967.589920px;}
._c7{margin-left:-2951.736000px;}
._11c{margin-left:-2936.001120px;}
._114{margin-left:-2925.096000px;}
._e0{margin-left:-2921.496000px;}
._e4{margin-left:-2915.269920px;}
._44{margin-left:-2908.583760px;}
._13a{margin-left:-2905.037280px;}
._16e{margin-left:-2888.887440px;}
._170{margin-left:-2872.419600px;}
._2f{margin-left:-2871.102000px;}
._dd{margin-left:-2869.656000px;}
._178{margin-left:-2868.630720px;}
._13d{margin-left:-2865.664320px;}
._d5{margin-left:-2861.736000px;}
._61{margin-left:-2856.705600px;}
._186{margin-left:-2851.632960px;}
._188{margin-left:-2843.193120px;}
._177{margin-left:-2839.207440px;}
._f1{margin-left:-2837.256000px;}
._12b{margin-left:-2833.992960px;}
._133{margin-left:-2823.731040px;}
._165{margin-left:-2818.342560px;}
._fb{margin-left:-2795.496000px;}
._46{margin-left:-2789.110080px;}
._e2{margin-left:-2773.855200px;}
._163{margin-left:-2717.371200px;}
._75{margin-left:-2706.216000px;}
._43{margin-left:-2640.154560px;}
._e8{margin-left:-2637.401520px;}
._30{margin-left:-2602.602000px;}
._34{margin-left:-2555.460000px;}
._136{margin-left:-2502.741840px;}
._47{margin-left:-2474.189760px;}
._1d9{margin-left:-2468.998800px;}
._134{margin-left:-2455.064880px;}
._10c{margin-left:-2439.097920px;}
._124{margin-left:-2387.854320px;}
._12a{margin-left:-2383.553280px;}
._11d{margin-left:-2320.888800px;}
._fe{margin-left:-2305.860000px;}
._1d8{margin-left:-2300.525760px;}
._17e{margin-left:-2292.271680px;}
._16f{margin-left:-2272.035360px;}
._4d{margin-left:-2248.157280px;}
._12d{margin-left:-2227.854720px;}
._4a{margin-left:-2211.278880px;}
._1e6{margin-left:-2193.796800px;}
._153{margin-left:-2192.574720px;}
._150{margin-left:-2173.074720px;}
._181{margin-left:-2119.068240px;}
._1e5{margin-left:-2100.905760px;}
._4b{margin-left:-2096.657280px;}
._1c3{margin-left:-2094.510000px;}
._63{margin-left:-2091.316800px;}
._5f{margin-left:-2084.944800px;}
._48{margin-left:-2065.046400px;}
._4e{margin-left:-2004.013440px;}
._1f3{margin-left:-1985.646000px;}
._77{margin-left:-1947.563280px;}
._14c{margin-left:-1939.385160px;}
._f9{margin-left:-1934.526960px;}
._f4{margin-left:-1933.176720px;}
._138{margin-left:-1926.114720px;}
._1e9{margin-left:-1912.873440px;}
._123{margin-left:-1887.849120px;}
._172{margin-left:-1886.120880px;}
._1a3{margin-left:-1866.294000px;}
._1b7{margin-left:-1863.444000px;}
._f5{margin-left:-1853.922000px;}
._22{margin-left:-1830.562560px;}
._1a2{margin-left:-1827.931920px;}
._12f{margin-left:-1826.860080px;}
._e5{margin-left:-1820.758320px;}
._f8{margin-left:-1779.159840px;}
._60{margin-left:-1760.509440px;}
._198{margin-left:-1757.124000px;}
._1c4{margin-left:-1739.914800px;}
._175{margin-left:-1734.180960px;}
._16b{margin-left:-1717.500000px;}
._33{margin-left:-1703.658000px;}
._174{margin-left:-1674.300000px;}
._180{margin-left:-1665.420960px;}
._160{margin-left:-1633.738320px;}
._141{margin-left:-1629.918480px;}
._19a{margin-left:-1625.968800px;}
._197{margin-left:-1623.451920px;}
._66{margin-left:-1590.780000px;}
._199{margin-left:-1586.731920px;}
._1bb{margin-left:-1557.015600px;}
._1bc{margin-left:-1536.616800px;}
._71{margin-left:-1526.700000px;}
._1f4{margin-left:-1524.240000px;}
._16d{margin-left:-1515.547440px;}
._171{margin-left:-1512.213840px;}
._1ca{margin-left:-1505.710800px;}
._c{margin-left:-1494.288000px;}
._ea{margin-left:-1446.060000px;}
._1ce{margin-left:-1441.566000px;}
._1cd{margin-left:-1430.709600px;}
._128{margin-left:-1428.545760px;}
._1d5{margin-left:-1424.262000px;}
._1eb{margin-left:-1421.958000px;}
._126{margin-left:-1418.934960px;}
._1b8{margin-left:-1393.575600px;}
._14d{margin-left:-1378.074720px;}
._d7{margin-left:-1375.380000px;}
._1b9{margin-left:-1373.698800px;}
._185{margin-left:-1339.947120px;}
._10d{margin-left:-1333.228320px;}
._64{margin-left:-1326.321840px;}
._40{margin-left:-1323.354720px;}
._41{margin-left:-1322.239680px;}
._129{margin-left:-1319.034720px;}
._195{margin-left:-1316.611920px;}
._196{margin-left:-1314.648000px;}
._fa{margin-left:-1303.380240px;}
._1af{margin-left:-1301.491920px;}
._d8{margin-left:-1299.880320px;}
._18d{margin-left:-1296.396000px;}
._56{margin-left:-1291.036800px;}
._18c{margin-left:-1282.124880px;}
._166{margin-left:-1266.819840px;}
._1da{margin-left:-1260.329760px;}
._1d4{margin-left:-1248.305760px;}
._184{margin-left:-1234.467600px;}
._f3{margin-left:-1228.049280px;}
._179{margin-left:-1224.708960px;}
._183{margin-left:-1218.252960px;}
._140{margin-left:-1214.100000px;}
._193{margin-left:-1211.491920px;}
._194{margin-left:-1209.520800px;}
._19f{margin-left:-1195.200000px;}
._35{margin-left:-1173.876000px;}
._ff{margin-left:-1166.916960px;}
._1d1{margin-left:-1157.148000px;}
._19e{margin-left:-1156.051920px;}
._1c8{margin-left:-1149.660000px;}
._1e2{margin-left:-1126.170000px;}
._1c7{margin-left:-1123.680000px;}
._15d{margin-left:-1109.369760px;}
._17f{margin-left:-1077.110909px;}
._1df{margin-left:-1058.741280px;}
._1c0{margin-left:-1056.664800px;}
._13f{margin-left:-1046.753280px;}
._55{margin-left:-1026.744480px;}
._100{margin-left:-1023.421920px;}
._1a1{margin-left:-1020.342000px;}
._1bf{margin-left:-1006.511760px;}
._68{margin-left:-1003.069440px;}
._116{margin-left:-983.386320px;}
._1a0{margin-left:-979.651920px;}
._1db{margin-left:-941.520000px;}
._24{margin-left:-937.722000px;}
._121{margin-left:-933.912000px;}
._1a5{margin-left:-911.602800px;}
._14e{margin-left:-910.478880px;}
._1e3{margin-left:-906.966000px;}
._143{margin-left:-894.814800px;}
._1dc{margin-left:-887.436000px;}
._142{margin-left:-872.100000px;}
._1a4{margin-left:-870.931920px;}
._1d3{margin-left:-868.192800px;}
._51{margin-left:-865.905120px;}
._70{margin-left:-863.094720px;}
._11a{margin-left:-862.001280px;}
._15e{margin-left:-859.581480px;}
._14f{margin-left:-857.043360px;}
._79{margin-left:-834.232800px;}
._173{margin-left:-832.186320px;}
._78{margin-left:-829.596000px;}
._1ec{margin-left:-814.708320px;}
._93{margin-left:-813.412800px;}
._e{margin-left:-809.820000px;}
._92{margin-left:-808.020000px;}
._11b{margin-left:-803.311440px;}
._4f{margin-left:-800.570880px;}
._fd{margin-left:-794.703840px;}
._1c6{margin-left:-792.550800px;}
._1d2{margin-left:-788.333040px;}
._de{margin-left:-780.995520px;}
._18b{margin-left:-767.890800px;}
._59{margin-left:-763.728480px;}
._1c9{margin-left:-754.511760px;}
._1e8{margin-left:-753.508080px;}
._58{margin-left:-744.949440px;}
._1ba{margin-left:-736.920000px;}
._1be{margin-left:-735.120000px;}
._4c{margin-left:-733.010400px;}
._1c5{margin-left:-727.149600px;}
._151{margin-left:-724.667520px;}
._1f1{margin-left:-716.274000px;}
._1f0{margin-left:-712.620000px;}
._1e4{margin-left:-707.520000px;}
._13b{margin-left:-705.844800px;}
._1de{margin-left:-702.162000px;}
._18a{margin-left:-700.591440px;}
._5d{margin-left:-698.994720px;}
._1d0{margin-left:-696.107520px;}
._5e{margin-left:-681.958080px;}
._182{margin-left:-674.223840px;}
._1d7{margin-left:-670.050000px;}
._12e{margin-left:-663.905760px;}
._1cf{margin-left:-657.414000px;}
._1bd{margin-left:-654.300000px;}
._ec{margin-left:-643.847760px;}
._1cc{margin-left:-640.780800px;}
._eb{margin-left:-638.820000px;}
._137{margin-left:-635.533920px;}
._10f{margin-left:-625.420320px;}
._1dd{margin-left:-621.696000px;}
._1aa{margin-left:-618.726720px;}
._52{margin-left:-616.907520px;}
._49{margin-left:-611.236080px;}
._1b5{margin-left:-607.518000px;}
._1e7{margin-left:-606.220080px;}
._1d6{margin-left:-589.083240px;}
._13c{margin-left:-584.725440px;}
._101{margin-left:-579.918480px;}
._df{margin-left:-577.440000px;}
._1b4{margin-left:-566.911920px;}
._1cb{margin-left:-561.150000px;}
._98{margin-left:-557.910720px;}
._97{margin-left:-556.560000px;}
._11e{margin-left:-543.955920px;}
._125{margin-left:-537.743760px;}
._e7{margin-left:-535.140000px;}
._89{margin-left:-529.288800px;}
._159{margin-left:-525.651840px;}
._14b{margin-left:-515.735520px;}
._14a{margin-left:-512.855400px;}
._31{margin-left:-510.600000px;}
._161{margin-left:-499.428480px;}
._91{margin-left:-495.446880px;}
._1f2{margin-left:-492.845760px;}
._1ef{margin-left:-491.166720px;}
._5a{margin-left:-487.143360px;}
._1b6{margin-left:-484.855920px;}
._1a9{margin-left:-482.670000px;}
._192{margin-left:-481.338000px;}
._167{margin-left:-478.347840px;}
._17b{margin-left:-473.809200px;}
._f7{margin-left:-472.106400px;}
._16c{margin-left:-471.049920px;}
._118{margin-left:-469.440000px;}
._191{margin-left:-468.271920px;}
._69{margin-left:-460.016640px;}
._1c1{margin-left:-455.173200px;}
._f6{margin-left:-453.985920px;}
._17a{margin-left:-452.527440px;}
._1ac{margin-left:-445.932000px;}
._1ae{margin-left:-444.924000px;}
._1a8{margin-left:-440.911920px;}
._1ed{margin-left:-437.400000px;}
._130{margin-left:-433.764480px;}
._1b2{margin-left:-432.432000px;}
._1e0{margin-left:-427.440000px;}
._1ee{margin-left:-424.810800px;}
._1a7{margin-left:-418.932000px;}
._15f{margin-left:-414.000000px;}
._88{margin-left:-411.120000px;}
._135{margin-left:-409.748160px;}
._1b3{margin-left:-407.087040px;}
._1ab{margin-left:-405.631920px;}
._1ad{margin-left:-404.191920px;}
._162{margin-left:-396.705600px;}
._189{margin-left:-393.863040px;}
._1b1{margin-left:-391.951920px;}
._e9{margin-left:-389.487840px;}
._164{margin-left:-383.160000px;}
._1c2{margin-left:-382.089600px;}
._1a6{margin-left:-378.271920px;}
._18e{margin-left:-366.824880px;}
._103{margin-left:-360.074880px;}
._10{margin-left:-358.439040px;}
._6b{margin-left:-357.323040px;}
._102{margin-left:-353.964000px;}
._57{margin-left:-329.760000px;}
._152{margin-left:-327.017760px;}
._168{margin-left:-324.282240px;}
._10b{margin-left:-320.437680px;}
._50{margin-left:-316.080000px;}
._1e1{margin-left:-313.565760px;}
._190{margin-left:-309.798000px;}
._119{margin-left:-305.205120px;}
._6f{margin-left:-303.592080px;}
._5b{margin-left:-300.000960px;}
._110{margin-left:-298.886160px;}
._18f{margin-left:-294.571920px;}
._67{margin-left:-292.023360px;}
._19d{margin-left:-288.548400px;}
._53{margin-left:-283.201920px;}
._12c{margin-left:-281.620800px;}
._111{margin-left:-277.460880px;}
._ee{margin-left:-274.207680px;}
._76{margin-left:-267.906000px;}
._a1{margin-left:-266.563920px;}
._176{margin-left:-263.485440px;}
._15c{margin-left:-255.026160px;}
._1b0{margin-left:-253.344480px;}
._113{margin-left:-250.418880px;}
._112{margin-left:-248.316840px;}
._54{margin-left:-246.479040px;}
._155{margin-left:-243.108720px;}
._149{margin-left:-239.783040px;}
._15b{margin-left:-238.467480px;}
._9c{margin-left:-237.116400px;}
._158{margin-left:-235.921800px;}
._148{margin-left:-234.889680px;}
._17d{margin-left:-233.282280px;}
._d0{margin-left:-232.246200px;}
._6e{margin-left:-230.153520px;}
._65{margin-left:-228.960000px;}
._3f{margin-left:-227.640960px;}
._16a{margin-left:-226.614720px;}
._15a{margin-left:-224.624880px;}
._17c{margin-left:-222.540480px;}
._f0{margin-left:-220.916760px;}
._145{margin-left:-219.769200px;}
._147{margin-left:-218.200440px;}
._d3{margin-left:-216.777600px;}
._d2{margin-left:-214.900080px;}
._139{margin-left:-212.814720px;}
._a8{margin-left:-211.147200px;}
._ed{margin-left:-209.297040px;}
._da{margin-left:-207.134160px;}
._dc{margin-left:-205.073280px;}
._144{margin-left:-203.412960px;}
._157{margin-left:-202.404240px;}
._19b{margin-left:-201.257040px;}
._cf{margin-left:-200.081040px;}
._b4{margin-left:-198.333600px;}
._9b{margin-left:-196.704000px;}
._25{margin-left:-194.840640px;}
._ac{margin-left:-193.505520px;}
._b1{margin-left:-192.373440px;}
._9a{margin-left:-190.679040px;}
._62{margin-left:-188.640000px;}
._be{margin-left:-186.688080px;}
._73{margin-left:-185.040000px;}
._105{margin-left:-183.141120px;}
._107{margin-left:-181.578240px;}
._146{margin-left:-180.395640px;}
._a0{margin-left:-178.997760px;}
._b6{margin-left:-177.000240px;}
._122{margin-left:-175.662240px;}
._90{margin-left:-174.456000px;}
._9f{margin-left:-172.923360px;}
._b0{margin-left:-171.774720px;}
._85{margin-left:-170.455680px;}
._bb{margin-left:-169.182720px;}
._8f{margin-left:-167.598720px;}
._117{margin-left:-166.320000px;}
._83{margin-left:-165.294720px;}
._af{margin-left:-163.975680px;}
._ae{margin-left:-162.721800px;}
._c5{margin-left:-161.132400px;}
._8e{margin-left:-159.971400px;}
._42{margin-left:-158.041200px;}
._104{margin-left:-156.674880px;}
._c6{margin-left:-155.518200px;}
._87{margin-left:-154.049280px;}
._a2{margin-left:-152.895840px;}
._9d{margin-left:-151.660800px;}
._7c{margin-left:-150.318720px;}
._86{margin-left:-148.914720px;}
._96{margin-left:-147.893520px;}
._b7{margin-left:-146.462040px;}
._80{margin-left:-145.267200px;}
._82{margin-left:-143.419200px;}
._72{margin-left:-142.349760px;}
._b9{margin-left:-141.129240px;}
._7f{margin-left:-140.094720px;}
._ef{margin-left:-138.665280px;}
._81{margin-left:-137.214720px;}
._db{margin-left:-135.986520px;}
._ab{margin-left:-134.925360px;}
._94{margin-left:-133.004160px;}
._ad{margin-left:-131.300640px;}
._ba{margin-left:-130.014720px;}
._6a{margin-left:-128.880000px;}
._95{margin-left:-127.163760px;}
._154{margin-left:-125.945040px;}
._74{margin-left:-124.599360px;}
._10a{margin-left:-123.372000px;}
._bc{margin-left:-122.313840px;}
._a6{margin-left:-121.102560px;}
._9e{margin-left:-120.062160px;}
._aa{margin-left:-118.124640px;}
._6d{margin-left:-116.858880px;}
._6c{margin-left:-115.038000px;}
._cc{margin-left:-113.961000px;}
._b3{margin-left:-112.668480px;}
._8a{margin-left:-110.799360px;}
._ce{margin-left:-109.364880px;}
._cd{margin-left:-108.037680px;}
._bd{margin-left:-106.649280px;}
._8d{margin-left:-105.534720px;}
._a5{margin-left:-104.212800px;}
._c0{margin-left:-102.040080px;}
._cb{margin-left:-100.833480px;}
._bf{margin-left:-99.774720px;}
._d9{margin-left:-98.512080px;}
._a4{margin-left:-97.300800px;}
._8c{margin-left:-95.762880px;}
._a7{margin-left:-94.158720px;}
._b2{margin-left:-92.574720px;}
._99{margin-left:-91.005840px;}
._8b{margin-left:-89.709600px;}
._c1{margin-left:-87.935040px;}
._7a{margin-left:-86.924160px;}
._b5{margin-left:-85.812240px;}
._7b{margin-left:-84.775680px;}
._a9{margin-left:-82.920480px;}
._d4{margin-left:-81.579720px;}
._21{margin-left:-80.138880px;}
._c2{margin-left:-78.620280px;}
._ca{margin-left:-77.449920px;}
._b8{margin-left:-76.144560px;}
._1b{margin-left:-74.963520px;}
._7e{margin-left:-73.506240px;}
._1e{margin-left:-71.824320px;}
._108{margin-left:-70.746720px;}
._20{margin-left:-69.474240px;}
._169{margin-left:-68.466240px;}
._7d{margin-left:-67.382400px;}
._3e{margin-left:-66.094560px;}
._a3{margin-left:-64.339680px;}
._d{margin-left:-62.604000px;}
._c4{margin-left:-61.415760px;}
._c3{margin-left:-59.492640px;}
._14{margin-left:-58.201920px;}
._13{margin-left:-56.289600px;}
._16{margin-left:-54.471360px;}
._15{margin-left:-52.914240px;}
._5c{margin-left:-51.840000px;}
._1a{margin-left:-50.060160px;}
._1f{margin-left:-48.818880px;}
._3c{margin-left:-47.787840px;}
._156{margin-left:-46.728600px;}
._1d{margin-left:-44.942400px;}
._12{margin-left:-43.920000px;}
._3b{margin-left:-42.622560px;}
._17{margin-left:-40.991040px;}
._1c{margin-left:-39.672000px;}
._11{margin-left:-37.690560px;}
._18{margin-left:-36.400320px;}
._37{margin-left:-34.776000px;}
._36{margin-left:-33.282000px;}
._3d{margin-left:-32.087760px;}
._19{margin-left:-30.214080px;}
._32{margin-left:-29.070000px;}
._38{margin-left:-27.955440px;}
._19c{margin-left:-26.751120px;}
._1ea{margin-left:-25.565760px;}
._3a{margin-left:-24.138000px;}
._39{margin-left:-22.698000px;}
._2e{margin-left:-21.438000px;}
._109{margin-left:-17.925120px;}
._106{margin-left:-14.094720px;}
._26{margin-left:-12.942000px;}
._2c{margin-left:-11.706000px;}
._84{margin-left:-10.494720px;}
._27{margin-left:-9.420000px;}
._2a{margin-left:-8.184000px;}
._f{margin-left:-6.480000px;}
._2b{margin-left:-4.632000px;}
._28{margin-left:-3.264000px;}
._e6{margin-left:-2.161200px;}
._1{margin-left:-1.080000px;}
._0{width:1.038000px;}
._2{width:2.118000px;}
._3{width:3.510000px;}
._4{width:4.536000px;}
._6{width:5.724000px;}
._a{width:6.750000px;}
._127{width:8.340480px;}
._e3{width:9.509520px;}
._5{width:10.584000px;}
._187{width:11.848560px;}
._9{width:13.176000px;}
._b{width:19.440000px;}
._7{width:27.486000px;}
._8{width:28.512000px;}
._23{width:1814.880000px;}
._d1{width:2981.008200px;}
.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;}
.fs5{font-size:30.240000px;}
.fsc{font-size:36.000000px;}
.fsa{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs9{font-size:56.920429px;}
.fs2{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fsb{font-size:69.822393px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:90.000000px;}
.fs4{font-size:102.240000px;}
.fs3{font-size:108.000000px;}
.y47{bottom:-16.200000px;}
.y0{bottom:0.000000px;}
.y68{bottom:3.060000px;}
.y46{bottom:16.020000px;}
.y45{bottom:17.820000px;}
.y67{bottom:18.900000px;}
.y55{bottom:19.110000px;}
.y44{bottom:19.440000px;}
.y43{bottom:22.860000px;}
.y42{bottom:34.380000px;}
.y66{bottom:34.740000px;}
.y54{bottom:35.130000px;}
.y65{bottom:50.580000px;}
.y53{bottom:50.970000px;}
.ya{bottom:55.980000px;}
.y6a{bottom:56.520000px;}
.y41{bottom:60.840000px;}
.y64{bottom:66.420000px;}
.y52{bottom:66.810000px;}
.y9{bottom:71.856000px;}
.y51{bottom:79.590000px;}
.y1f5{bottom:81.576000px;}
.y63{bottom:82.290000px;}
.y40{bottom:85.680000px;}
.y8{bottom:87.696000px;}
.y194{bottom:91.476000px;}
.y101{bottom:94.176000px;}
.y8f{bottom:94.716000px;}
.yc8{bottom:94.896000px;}
.yc7{bottom:97.056000px;}
.y1f4{bottom:97.236000px;}
.y193{bottom:97.416000px;}
.y62{bottom:98.130000px;}
.y50{bottom:98.490000px;}
.y7{bottom:103.536000px;}
.y3f{bottom:104.610000px;}
.yc9{bottom:104.616000px;}
.y1f3{bottom:112.716000px;}
.y61{bottom:113.970000px;}
.yc6{bottom:113.976000px;}
.y4f{bottom:114.330000px;}
.y192{bottom:114.876000px;}
.y15e{bottom:115.236000px;}
.yc5{bottom:115.596000px;}
.yc4{bottom:115.776000px;}
.yc3{bottom:116.136000px;}
.y6{bottom:119.376000px;}
.y15f{bottom:122.796000px;}
.y1f2{bottom:128.376000px;}
.y60{bottom:129.810000px;}
.y4e{bottom:129.990000px;}
.y100{bottom:131.076000px;}
.y8e{bottom:131.616000px;}
.y136{bottom:132.876000px;}
.y15d{bottom:134.316000px;}
.yc2{bottom:135.036000px;}
.y5{bottom:135.216000px;}
.y137{bottom:140.436000px;}
.y1f1{bottom:143.856000px;}
.y5f{bottom:145.650000px;}
.y4d{bottom:145.830000px;}
.yff{bottom:149.976000px;}
.y4{bottom:151.050000px;}
.y135{bottom:151.950000px;}
.yc1{bottom:154.110000px;}
.y4c{bottom:158.610000px;}
.y1f0{bottom:159.510000px;}
.y5e{bottom:161.310000px;}
.y3{bottom:166.890000px;}
.y8d{bottom:168.690000px;}
.y4b{bottom:169.050000px;}
.y191{bottom:169.410000px;}
.y15c{bottom:171.390000px;}
.yc0{bottom:173.010000px;}
.y1ef{bottom:174.990000px;}
.y5d{bottom:177.150000px;}
.y4a{bottom:179.490000px;}
.yfe{bottom:187.050000px;}
.y3d{bottom:188.490000px;}
.y133{bottom:189.210000px;}
.y1ee{bottom:190.650000px;}
.y5c{bottom:192.990000px;}
.y134{bottom:196.770000px;}
.y49{bottom:196.950000px;}
.y15b{bottom:205.230000px;}
.y8c{bottom:205.590000px;}
.y1ed{bottom:206.310000px;}
.y3c{bottom:207.750000px;}
.y15a{bottom:208.110000px;}
.y132{bottom:208.290000px;}
.y5b{bottom:208.830000px;}
.ybf{bottom:209.550000px;}
.y190{bottom:217.290000px;}
.y5a{bottom:221.610000px;}
.y1ec{bottom:221.790000px;}
.yfd{bottom:223.950000px;}
.y3b{bottom:227.190000px;}
.y131{bottom:229.530000px;}
.y59{bottom:232.050000px;}
.y1eb{bottom:237.450000px;}
.y58{bottom:242.490000px;}
.y8b{bottom:242.670000px;}
.y159{bottom:245.370000px;}
.y18f{bottom:245.910000px;}
.y3a{bottom:246.450000px;}
.ybd{bottom:246.990000px;}
.y1ea{bottom:252.930000px;}
.ybe{bottom:254.550000px;}
.y57{bottom:259.950000px;}
.yfc{bottom:260.850000px;}
.y130{bottom:264.450000px;}
.y39{bottom:265.890000px;}
.ybc{bottom:268.230000px;}
.y1e9{bottom:268.410000px;}
.y18e{bottom:274.890000px;}
.y8a{bottom:279.570000px;}
.y158{bottom:282.450000px;}
.y1e8{bottom:283.530000px;}
.y38{bottom:285.150000px;}
.yfb{bottom:298.290000px;}
.y1e7{bottom:299.550000px;}
.y12f{bottom:301.890000px;}
.yba{bottom:302.970000px;}
.y18d{bottom:303.870000px;}
.y37{bottom:304.410000px;}
.ybb{bottom:310.530000px;}
.y1e6{bottom:315.030000px;}
.y89{bottom:316.470000px;}
.y157{bottom:319.395000px;}
.y12e{bottom:320.835000px;}
.yb9{bottom:322.095000px;}
.y36{bottom:323.895000px;}
.y1e5{bottom:330.555000px;}
.y18c{bottom:333.075000px;}
.yfa{bottom:335.235000px;}
.y35{bottom:343.155000px;}
.y1e4{bottom:346.035000px;}
.y1e3{bottom:351.975000px;}
.y88{bottom:353.595000px;}
.y156{bottom:356.655000px;}
.y12d{bottom:357.555000px;}
.yb7{bottom:358.995000px;}
.y1e2{bottom:361.695000px;}
.y34{bottom:362.595000px;}
.yb8{bottom:366.555000px;}
.y1e1{bottom:367.635000px;}
.y18b{bottom:370.335000px;}
.yf9{bottom:372.315000px;}
.y155{bottom:375.735000px;}
.y1e0{bottom:377.175000px;}
.yb6{bottom:378.075000px;}
.y33{bottom:381.855000px;}
.y1df{bottom:383.115000px;}
.y18a{bottom:389.235000px;}
.y87{bottom:390.495000px;}
.yf8{bottom:391.215000px;}
.y1de{bottom:392.655000px;}
.y12b{bottom:394.455000px;}
.y154{bottom:394.635000px;}
.y1dd{bottom:398.595000px;}
.y32{bottom:401.295000px;}
.y12c{bottom:402.015000px;}
.y1dc{bottom:408.135000px;}
.y86{bottom:409.575000px;}
.yf7{bottom:410.295000px;}
.y12a{bottom:413.355000px;}
.y153{bottom:413.715000px;}
.y1db{bottom:414.075000px;}
.yb5{bottom:414.615000px;}
.y31{bottom:420.555000px;}
.y1da{bottom:423.795000px;}
.y189{bottom:426.315000px;}
.y85{bottom:428.475000px;}
.yf6{bottom:429.195000px;}
.y1d9{bottom:429.735000px;}
.y129{bottom:432.435000px;}
.y152{bottom:432.615000px;}
.y1d8{bottom:439.275000px;}
.y30{bottom:439.995000px;}
.y1d7{bottom:445.215000px;}
.y84{bottom:447.555000px;}
.yf5{bottom:448.095000px;}
.y151{bottom:451.515000px;}
.yb4{bottom:452.055000px;}
.y1d6{bottom:454.755000px;}
.y2f{bottom:459.255000px;}
.yb3{bottom:459.615000px;}
.y1d5{bottom:460.695000px;}
.y188{bottom:463.215000px;}
.y83{bottom:466.455000px;}
.y128{bottom:469.515000px;}
.y1d4{bottom:470.235000px;}
.yb2{bottom:470.595000px;}
.y2e{bottom:475.095000px;}
.y1d3{bottom:476.175000px;}
.yf3{bottom:485.175000px;}
.y1d2{bottom:485.895000px;}
.y56{bottom:490.395000px;}
.y1d1{bottom:491.835000px;}
.yf4{bottom:492.735000px;}
.y2d{bottom:495.975000px;}
.y187{bottom:500.655000px;}
.y1d0{bottom:501.375000px;}
.y82{bottom:503.355000px;}
.yf2{bottom:503.895000px;}
.y2c{bottom:504.795000px;}
.y127{bottom:506.415000px;}
.y150{bottom:507.135000px;}
.y1cf{bottom:507.315000px;}
.yb0{bottom:508.035000px;}
.y186{bottom:508.215000px;}
.y2b{bottom:513.615000px;}
.yb1{bottom:515.595000px;}
.y1ce{bottom:516.855000px;}
.y185{bottom:519.195000px;}
.y2a{bottom:522.435000px;}
.yf1{bottom:522.795000px;}
.y126{bottom:525.315000px;}
.yaf{bottom:527.115000px;}
.y29{bottom:531.255000px;}
.y1cd{bottom:532.515000px;}
.y184{bottom:538.275000px;}
.y1cc{bottom:538.455000px;}
.y28{bottom:540.075000px;}
.yf0{bottom:541.695000px;}
.y81{bottom:541.875000px;}
.y125{bottom:544.215000px;}
.y14f{bottom:544.575000px;}
.yae{bottom:546.375000px;}
.y1cb{bottom:547.995000px;}
.y27{bottom:548.895000px;}
.y48{bottom:553.215000px;}
.y1ca{bottom:553.935000px;}
.y183{bottom:557.175000px;}
.y26{bottom:557.535000px;}
.y11f{bottom:561.315000px;}
.y122{bottom:561.855000px;}
.y11e{bottom:563.295000px;}
.y123{bottom:563.475000px;}
.y124{bottom:564.195000px;}
.yad{bottom:565.275000px;}
.y120{bottom:565.635000px;}
.y25{bottom:568.725000px;}
.y1c9{bottom:569.445000px;}
.y121{bottom:570.885000px;}
.y182{bottom:576.285000px;}
.y80{bottom:578.445000px;}
.yef{bottom:578.805000px;}
.y1c8{bottom:579.165000px;}
.y119{bottom:580.785000px;}
.y11c{bottom:581.685000px;}
.y11b{bottom:581.865000px;}
.y118{bottom:582.225000px;}
.y11a{bottom:583.125000px;}
.y1c7{bottom:585.105000px;}
.y20{bottom:589.065000px;}
.y11d{bottom:589.785000px;}
.y24{bottom:593.205000px;}
.y1c6{bottom:594.825000px;}
.y181{bottom:595.185000px;}
.y7f{bottom:597.345000px;}
.yee{bottom:597.705000px;}
.y117{bottom:599.325000px;}
.y14d{bottom:600.585000px;}
.y1c5{bottom:600.765000px;}
.y114{bottom:601.305000px;}
.yac{bottom:602.025000px;}
.y115{bottom:602.205000px;}
.y116{bottom:604.005000px;}
.y1f{bottom:606.705000px;}
.y14e{bottom:608.145000px;}
.y1c4{bottom:610.305000px;}
.y180{bottom:614.085000px;}
.y23{bottom:614.445000px;}
.y1c3{bottom:616.245000px;}
.yed{bottom:616.785000px;}
.y14c{bottom:619.125000px;}
.y113{bottom:620.205000px;}
.yab{bottom:620.925000px;}
.y1e{bottom:624.345000px;}
.y1c2{bottom:625.785000px;}
.y1c1{bottom:631.725000px;}
.y17f{bottom:633.165000px;}
.y7e{bottom:634.425000px;}
.y22{bottom:635.505000px;}
.yeb{bottom:636.045000px;}
.y14b{bottom:638.565000px;}
.y1c0{bottom:641.445000px;}
.y1d{bottom:641.805000px;}
.yec{bottom:643.605000px;}
.y1bf{bottom:647.385000px;}
.y17e{bottom:652.065000px;}
.ye8{bottom:652.425000px;}
.y7d{bottom:653.325000px;}
.ye5{bottom:654.765000px;}
.ye9{bottom:654.945000px;}
.yea{bottom:655.125000px;}
.y21{bottom:656.565000px;}
.ye6{bottom:657.105000px;}
.y112{bottom:657.465000px;}
.ya9{bottom:658.005000px;}
.y1c{bottom:659.445000px;}
.ye7{bottom:662.325000px;}
.y1be{bottom:663.045000px;}
.yaa{bottom:665.565000px;}
.y7c{bottom:668.805000px;}
.ye4{bottom:670.785000px;}
.y17d{bottom:671.145000px;}
.y1bd{bottom:672.585000px;}
.ye3{bottom:674.025000px;}
.y148{bottom:676.185000px;}
.ya8{bottom:676.365000px;}
.y149{bottom:676.545000px;}
.ya7{bottom:676.905000px;}
.y1b{bottom:677.085000px;}
.y1bc{bottom:678.525000px;}
.y14a{bottom:683.745000px;}
.y1bb{bottom:688.245000px;}
.y17b{bottom:690.045000px;}
.ye2{bottom:693.465000px;}
.y111{bottom:694.185000px;}
.y7b{bottom:694.545000px;}
.y1a{bottom:694.725000px;}
.y147{bottom:695.085000px;}
.ya5{bottom:696.345000px;}
.y17c{bottom:697.605000px;}
.ya6{bottom:698.685000px;}
.y1ba{bottom:703.725000px;}
.y17a{bottom:709.485000px;}
.y1b9{bottom:709.665000px;}
.y19{bottom:712.185000px;}
.ye0{bottom:712.365000px;}
.ye1{bottom:712.545000px;}
.y110{bottom:713.085000px;}
.y146{bottom:714.165000px;}
.y1b8{bottom:719.385000px;}
.y1b7{bottom:725.325000px;}
.y178{bottom:728.565000px;}
.y18{bottom:729.825000px;}
.yde{bottom:731.445000px;}
.y10e{bottom:732.165000px;}
.ya3{bottom:732.705000px;}
.ya1{bottom:733.965000px;}
.y1b6{bottom:734.865000px;}
.y7a{bottom:735.045000px;}
.ya4{bottom:735.225000px;}
.y179{bottom:736.125000px;}
.ydf{bottom:739.005000px;}
.y10f{bottom:739.725000px;}
.y1b5{bottom:740.805000px;}
.ya2{bottom:741.525000px;}
.y177{bottom:747.645000px;}
.y9e{bottom:750.165000px;}
.y1b4{bottom:750.525000px;}
.ydc{bottom:751.065000px;}
.y9d{bottom:751.425000px;}
.y9c{bottom:753.045000px;}
.ydd{bottom:753.405000px;}
.y9f{bottom:755.385000px;}
.y1b3{bottom:756.465000px;}
.y79{bottom:757.365000px;}
.y145{bottom:758.625000px;}
.ya0{bottom:760.605000px;}
.y17{bottom:762.225000px;}
.y1b2{bottom:766.185000px;}
.y175{bottom:766.905000px;}
.ydb{bottom:770.145000px;}
.y144{bottom:770.505000px;}
.y9b{bottom:772.125000px;}
.y176{bottom:774.465000px;}
.y78{bottom:779.685000px;}
.y1b1{bottom:781.665000px;}
.y16{bottom:782.925000px;}
.y174{bottom:785.625000px;}
.y1b0{bottom:787.605000px;}
.yda{bottom:789.045000px;}
.y143{bottom:790.125000px;}
.y9a{bottom:791.025000px;}
.y1af{bottom:797.145000px;}
.y77{bottom:802.185000px;}
.y1ae{bottom:803.085000px;}
.y173{bottom:804.525000px;}
.y203{bottom:804.885000px;}
.yd9{bottom:808.125000px;}
.y142{bottom:808.845000px;}
.y1ad{bottom:812.805000px;}
.y15{bottom:817.665000px;}
.y1ac{bottom:818.745000px;}
.y202{bottom:820.410000px;}
.y172{bottom:824.010000px;}
.y76{bottom:824.550000px;}
.y10d{bottom:826.170000px;}
.yd7{bottom:827.070000px;}
.y141{bottom:827.790000px;}
.y98{bottom:828.150000px;}
.y1ab{bottom:828.330000px;}
.yd8{bottom:829.410000px;}
.y1aa{bottom:834.270000px;}
.y99{bottom:835.710000px;}
.y201{bottom:835.890000px;}
.y170{bottom:843.090000px;}
.y1a9{bottom:843.810000px;}
.yd6{bottom:845.970000px;}
.y96{bottom:847.050000px;}
.y1a8{bottom:849.750000px;}
.y171{bottom:850.650000px;}
.y200{bottom:851.370000px;}
.y97{bottom:854.610000px;}
.y14{bottom:858.030000px;}
.y75{bottom:859.470000px;}
.y16f{bottom:862.170000px;}
.y10c{bottom:863.070000px;}
.yd5{bottom:865.050000px;}
.y1a7{bottom:865.410000px;}
.y1ff{bottom:866.850000px;}
.y1a6{bottom:874.950000px;}
.y1a5{bottom:880.890000px;}
.y16e{bottom:881.070000px;}
.y10b{bottom:881.970000px;}
.y1fe{bottom:882.510000px;}
.y95{bottom:883.770000px;}
.yd4{bottom:883.950000px;}
.y13{bottom:887.910000px;}
.y74{bottom:890.070000px;}
.y1a4{bottom:890.430000px;}
.y1a3{bottom:896.370000px;}
.y1fd{bottom:898.170000px;}
.y16c{bottom:900.150000px;}
.y10a{bottom:901.050000px;}
.y13e{bottom:901.770000px;}
.y13f{bottom:904.110000px;}
.y73{bottom:906.630000px;}
.y16d{bottom:907.710000px;}
.y140{bottom:909.330000px;}
.y1fc{bottom:913.650000px;}
.y1a2{bottom:913.830000px;}
.y12{bottom:918.510000px;}
.y16a{bottom:919.050000px;}
.y1a1{bottom:919.770000px;}
.y109{bottom:920.130000px;}
.y94{bottom:920.670000px;}
.yd3{bottom:921.030000px;}
.y72{bottom:925.710000px;}
.y16b{bottom:926.610000px;}
.y1fb{bottom:929.310000px;}
.y1a0{bottom:937.230000px;}
.y169{bottom:937.950000px;}
.y108{bottom:939.210000px;}
.y13d{bottom:939.750000px;}
.yd2{bottom:939.930000px;}
.y19f{bottom:943.170000px;}
.y71{bottom:944.250000px;}
.y1fa{bottom:944.790000px;}
.y11{bottom:949.650000px;}
.y168{bottom:957.030000px;}
.y93{bottom:957.570000px;}
.y107{bottom:958.110000px;}
.y13c{bottom:958.650000px;}
.yd0{bottom:958.830000px;}
.y1f9{bottom:960.450000px;}
.y19e{bottom:960.630000px;}
.y70{bottom:963.510000px;}
.yd1{bottom:966.390000px;}
.y19d{bottom:966.570000px;}
.y3e{bottom:973.050000px;}
.y1f8{bottom:975.930000px;}
.y166{bottom:976.290000px;}
.y106{bottom:977.190000px;}
.ycf{bottom:977.910000px;}
.y10{bottom:982.410000px;}
.y6f{bottom:982.590000px;}
.y167{bottom:983.850000px;}
.y19c{bottom:989.790000px;}
.y1f7{bottom:991.590000px;}
.y92{bottom:994.650000px;}
.y165{bottom:995.370000px;}
.y13b{bottom:995.730000px;}
.y105{bottom:996.270000px;}
.yce{bottom:996.810000px;}
.yf{bottom:1004.010000px;}
.y19b{bottom:1007.250000px;}
.y19a{bottom:1013.190000px;}
.y163{bottom:1014.450000px;}
.y139{bottom:1014.630000px;}
.y104{bottom:1015.530000px;}
.y164{bottom:1022.010000px;}
.y13a{bottom:1022.190000px;}
.y6e{bottom:1022.730000px;}
.ye{bottom:1025.790000px;}
.y199{bottom:1030.650000px;}
.y91{bottom:1031.910000px;}
.y162{bottom:1033.530000px;}
.y138{bottom:1033.710000px;}
.ycc{bottom:1033.890000px;}
.y198{bottom:1036.590000px;}
.y1f6{bottom:1038.390000px;}
.ycd{bottom:1041.450000px;}
.yd{bottom:1047.570000px;}
.y6d{bottom:1050.990000px;}
.y103{bottom:1052.610000px;}
.yca{bottom:1052.970000px;}
.y197{bottom:1053.870000px;}
.y196{bottom:1059.810000px;}
.y161{bottom:1060.170000px;}
.ycb{bottom:1060.530000px;}
.yc{bottom:1069.350000px;}
.y6c{bottom:1070.250000px;}
.y195{bottom:1070.640000px;}
.y102{bottom:1071.540000px;}
.y160{bottom:1071.720000px;}
.y90{bottom:1071.900000px;}
.y6b{bottom:1089.720000px;}
.yb{bottom:1091.160000px;}
.y69{bottom:1112.220000px;}
.y2{bottom:1112.400000px;}
.y1{bottom:1128.060000px;}
.hf{height:3.839063px;}
.h10{height:4.480313px;}
.he{height:20.155078px;}
.h9{height:21.203437px;}
.h4d{height:35.332031px;}
.h7{height:35.991211px;}
.h22{height:36.743906px;}
.h1{height:37.863281px;}
.h2b{height:38.334375px;}
.h24{height:40.985156px;}
.h8{height:41.902031px;}
.h2c{height:42.922699px;}
.ha{height:44.149219px;}
.h1e{height:45.858744px;}
.hc{height:46.445625px;}
.h4c{height:47.513672px;}
.h4f{height:48.041016px;}
.h50{height:49.570312px;}
.h2{height:50.484375px;}
.h51{height:50.677734px;}
.h14{height:52.998047px;}
.h19{height:53.367187px;}
.h4e{height:54.713672px;}
.h1a{height:55.555664px;}
.h52{height:56.320312px;}
.h53{height:56.770313px;}
.h1c{height:56.995664px;}
.h18{height:58.283437px;}
.h1d{height:58.435664px;}
.h3{height:58.651172px;}
.h49{height:58.930312px;}
.h1b{height:59.155664px;}
.h20{height:60.806250px;}
.h4b{height:61.435523px;}
.h44{height:61.526250px;}
.h3c{height:61.883437px;}
.h16{height:62.164687px;}
.h48{height:62.246250px;}
.h43{height:62.530313px;}
.h31{height:62.966250px;}
.hd{height:63.105469px;}
.h41{height:63.250312px;}
.h30{height:63.686250px;}
.h2e{height:64.406250px;}
.h17{height:65.010937px;}
.h26{height:65.126250px;}
.h25{height:65.764688px;}
.h2d{height:65.846250px;}
.h21{height:66.484688px;}
.h3d{height:66.566250px;}
.h2f{height:67.286250px;}
.h34{height:67.643438px;}
.h39{height:68.006250px;}
.h29{height:68.726250px;}
.h47{height:69.083438px;}
.h42{height:69.086250px;}
.h46{height:69.446250px;}
.h1f{height:70.166250px;}
.h11{height:70.664062px;}
.h32{height:70.886250px;}
.h33{height:71.243437px;}
.h4a{height:71.301731px;}
.h5{height:71.687812px;}
.h38{height:72.326250px;}
.h6{height:72.562500px;}
.h40{height:73.046250px;}
.h3e{height:73.766250px;}
.h37{height:74.486250px;}
.h35{height:75.563437px;}
.h36{height:75.926250px;}
.h28{height:76.646250px;}
.h3a{height:77.366250px;}
.h45{height:78.086250px;}
.h27{height:79.526250px;}
.h3b{height:82.406250px;}
.h2a{height:86.006250px;}
.h3f{height:87.446250px;}
.h4{height:105.996094px;}
.h15{height:109.427344px;}
.hb{height:117.210000px;}
.h12{height:211.170000px;}
.h13{height:274.170000px;}
.h23{height:1187.997990px;}
.h0{height:1188.000000px;}
.w2{width:230.115000px;}
.w3{width:526.200000px;}
.w1{width:544.230000px;}
.w4{width:917.998125px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:10.785000px;}
.xc{left:65.704500px;}
.x17{left:70.380000px;}
.x1{left:75.600000px;}
.x82{left:76.680000px;}
.xbf{left:95.256000px;}
.x9{left:98.985000px;}
.xba{left:100.476000px;}
.x28{left:101.916000px;}
.x6c{left:104.796000px;}
.x6b{left:109.116000px;}
.xa{left:110.370000px;}
.x6a{left:112.534125px;}
.x43{left:113.796000px;}
.x97{left:119.556000px;}
.xd8{left:120.636000px;}
.x7{left:122.970000px;}
.x75{left:124.236000px;}
.xdb{left:125.676000px;}
.x2{left:128.736000px;}
.xda{left:130.356000px;}
.xbc{left:133.596000px;}
.xee{left:137.196000px;}
.x9e{left:140.976000px;}
.xf1{left:142.056000px;}
.x7c{left:145.296000px;}
.x81{left:146.376000px;}
.xff{left:147.816000px;}
.x26{left:149.436000px;}
.xfe{left:151.950000px;}
.x99{left:153.210000px;}
.x2a{left:154.650000px;}
.xed{left:155.730000px;}
.x94{left:157.530000px;}
.xeb{left:161.128125px;}
.x33{left:165.630000px;}
.xf0{left:167.610000px;}
.x9c{left:169.770000px;}
.xc5{left:171.030000px;}
.x90{left:173.730000px;}
.x10b{left:176.610000px;}
.x8f{left:177.870000px;}
.x6{left:180.225000px;}
.x8e{left:181.288125px;}
.x86{left:187.230000px;}
.xd7{left:189.930000px;}
.x8d{left:192.990000px;}
.xc4{left:200.730000px;}
.xd6{left:205.050000px;}
.x109{left:206.670000px;}
.x108{left:210.810000px;}
.x107{left:214.048125px;}
.xd{left:219.445500px;}
.xbe{left:224.490000px;}
.x14{left:234.030000px;}
.xad{left:237.270000px;}
.x5d{left:238.350000px;}
.xd4{left:249.510000px;}
.x19{left:254.010000px;}
.x9b{left:256.890000px;}
.xd5{left:259.770000px;}
.xfa{left:260.848125px;}
.xe0{left:262.110000px;}
.xb7{left:267.330000px;}
.xc2{left:269.130000px;}
.x8{left:272.010000px;}
.xec{left:278.850000px;}
.xef{left:287.175000px;}
.x5e{left:290.055000px;}
.xf8{left:292.215000px;}
.x80{left:295.950000px;}
.x7e{left:308.775000px;}
.xd3{left:310.215000px;}
.xb2{left:313.095000px;}
.xe{left:328.395000px;}
.x10f{left:332.535000px;}
.x7f{left:335.595000px;}
.x18{left:337.575000px;}
.x42{left:338.835000px;}
.x5{left:340.815000px;}
.x41{left:343.515000px;}
.x16{left:346.215000px;}
.x62{left:350.355000px;}
.x40{left:352.155000px;}
.x61{left:354.675000px;}
.x60{left:357.913125px;}
.xf7{left:361.875000px;}
.x5f{left:363.855000px;}
.x8b{left:366.015000px;}
.x8a{left:370.695000px;}
.x89{left:373.933125px;}
.x10{left:377.355000px;}
.x88{left:384.555000px;}
.xf6{left:385.815000px;}
.x103{left:387.795000px;}
.x7d{left:392.835000px;}
.x7a{left:395.895000px;}
.x52{left:397.695000px;}
.xa8{left:398.955000px;}
.x79{left:400.215000px;}
.xa7{left:402.373125px;}
.x78{left:403.453125px;}
.x102{left:405.975000px;}
.x101{left:407.055000px;}
.xbd{left:408.855000px;}
.xe5{left:411.015000px;}
.x77{left:414.075000px;}
.xe4{left:415.875000px;}
.x76{left:417.675000px;}
.xe3{left:419.293125px;}
.x100{left:420.915000px;}
.xf4{left:422.175000px;}
.xd2{left:423.435000px;}
.xfd{left:424.515000px;}
.xfc{left:428.655000px;}
.xe2{left:430.995000px;}
.xa6{left:432.615000px;}
.xe1{left:434.595000px;}
.xdc{left:439.455000px;}
.xfb{left:442.515000px;}
.xf5{left:446.835000px;}
.x13{left:449.355000px;}
.x39{left:453.855000px;}
.x15{left:454.935000px;}
.x38{left:457.093125px;}
.x3{left:459.075000px;}
.x5b{left:460.515000px;}
.x37{left:462.495000px;}
.x11{left:465.375000px;}
.xab{left:466.813125px;}
.x5a{left:467.893125px;}
.xa4{left:471.855000px;}
.x59{left:473.295000px;}
.xa5{left:476.895000px;}
.xaa{left:478.515000px;}
.x58{left:486.105000px;}
.x10e{left:487.545000px;}
.x9a{left:491.685000px;}
.xb1{left:495.105000px;}
.xb0{left:499.785000px;}
.xaf{left:503.203125px;}
.xea{left:505.725000px;}
.x51{left:508.425000px;}
.x50{left:511.663125px;}
.xf{left:515.415000px;}
.x4f{left:517.065000px;}
.x70{left:519.043125px;}
.x4e{left:520.485000px;}
.x10a{left:522.103125px;}
.xa3{left:523.545000px;}
.x6f{left:529.665000px;}
.x12{left:531.105000px;}
.x6e{left:532.905000px;}
.x57{left:539.745000px;}
.x1d{left:545.616000px;}
.xcb{left:548.205000px;}
.x96{left:550.545000px;}
.xca{left:553.965000px;}
.x56{left:555.405000px;}
.x1f{left:556.845000px;}
.xc9{left:569.085000px;}
.xd1{left:578.985000px;}
.xac{left:584.025000px;}
.xd0{left:587.803125px;}
.x9d{left:594.105000px;}
.x35{left:596.265000px;}
.xcf{left:599.505000px;}
.xb3{left:601.305000px;}
.xc8{left:602.745000px;}
.x5c{left:613.185000px;}
.x4d{left:619.305000px;}
.x4c{left:624.705000px;}
.x1a{left:626.430000px;}
.x4b{left:627.943125px;}
.xc7{left:629.385000px;}
.xb5{left:631.365000px;}
.x4a{left:633.345000px;}
.x93{left:638.745000px;}
.x34{left:641.445000px;}
.x92{left:644.145000px;}
.xb6{left:645.945000px;}
.x49{left:647.745000px;}
.x98{left:648.825000px;}
.x2d{left:652.425000px;}
.x91{left:658.185000px;}
.x6d{left:660.705000px;}
.xf3{left:663.405000px;}
.x25{left:665.385000px;}
.x30{left:666.465000px;}
.x106{left:668.623125px;}
.xce{left:671.865000px;}
.x105{left:679.290000px;}
.x95{left:680.910000px;}
.x104{left:682.710000px;}
.xc6{left:685.590000px;}
.x3f{left:690.270000px;}
.xae{left:698.010000px;}
.xcd{left:699.090000px;}
.xa2{left:700.350000px;}
.xd9{left:701.430000px;}
.x74{left:702.510000px;}
.x110{left:703.590000px;}
.xa1{left:705.570000px;}
.x73{left:706.830000px;}
.xa0{left:708.988125px;}
.x72{left:710.068125px;}
.x27{left:711.690000px;}
.x48{left:716.370000px;}
.x1e{left:717.450000px;}
.x71{left:720.690000px;}
.x1b{left:721.950000px;}
.x2c{left:723.570000px;}
.xdf{left:725.550000px;}
.xf9{left:728.248125px;}
.x87{left:729.390000px;}
.x29{left:730.590000px;}
.x36{left:731.850000px;}
.x64{left:733.470000px;}
.x85{left:735.270000px;}
.x84{left:738.508125px;}
.xf2{left:740.670000px;}
.xcc{left:741.930000px;}
.xc3{left:745.170000px;}
.xe9{left:746.610000px;}
.x3d{left:748.950000px;}
.x3c{left:753.090000px;}
.xde{left:754.170000px;}
.x3b{left:756.328125px;}
.x32{left:757.590000px;}
.x21{left:758.850000px;}
.x3a{left:761.730000px;}
.x20{left:763.170000px;}
.x7b{left:766.050000px;}
.xe7{left:768.750000px;}
.x9f{left:770.550000px;}
.x31{left:771.990000px;}
.xdd{left:773.970000px;}
.x68{left:777.030000px;}
.x8c{left:779.010000px;}
.x67{left:780.268125px;}
.xbb{left:782.250000px;}
.x66{left:785.670000px;}
.x47{left:786.750000px;}
.x10d{left:788.910000px;}
.x23{left:790.530000px;}
.xc1{left:792.690000px;}
.x55{left:793.948125px;}
.xc0{left:796.110000px;}
.xb4{left:797.190000px;}
.xb9{left:798.450000px;}
.x54{left:799.890000px;}
.x46{left:801.510000px;}
.x53{left:803.130000px;}
.x65{left:804.750000px;}
.x10c{left:806.010000px;}
.x24{left:808.350000px;}
.x2b{left:809.790000px;}
.x83{left:811.230000px;}
.x1c{left:812.310000px;}
.x69{left:813.750000px;}
.x3e{left:815.910000px;}
.x63{left:817.890000px;}
.x44{left:819.870000px;}
.x45{left:821.310000px;}
.xe6{left:824.370000px;}
.xa9{left:826.710000px;}
.x2f{left:829.410000px;}
.x111{left:831.930000px;}
.xb8{left:833.370000px;}
.x2e{left:835.890000px;}
.xe8{left:837.150000px;}
.x22{left:838.410000px;}
.x4{left:842.550000px;}
@media print{
.v18{vertical-align:-65.920000pt;}
.v4{vertical-align:-55.040000pt;}
.v1{vertical-align:-46.080000pt;}
.v13{vertical-align:-16.640000pt;}
.v1a{vertical-align:-15.360000pt;}
.v3{vertical-align:-12.800000pt;}
.v11{vertical-align:-11.520000pt;}
.ve{vertical-align:-9.600000pt;}
.vc{vertical-align:-8.320000pt;}
.v14{vertical-align:-7.040000pt;}
.v8{vertical-align:-5.120000pt;}
.v10{vertical-align:-3.840000pt;}
.v6{vertical-align:-2.560000pt;}
.va{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.280000pt;}
.v5{vertical-align:2.560000pt;}
.vf{vertical-align:3.840000pt;}
.v9{vertical-align:5.120000pt;}
.vd{vertical-align:7.040000pt;}
.vb{vertical-align:8.320000pt;}
.v15{vertical-align:9.600000pt;}
.v17{vertical-align:11.520000pt;}
.v2{vertical-align:12.800000pt;}
.v16{vertical-align:14.080000pt;}
.v19{vertical-align:15.360000pt;}
.v12{vertical-align:16.640000pt;}
.ls18{letter-spacing:-26.720000pt;}
.ls19{letter-spacing:-23.520000pt;}
.ls17{letter-spacing:-19.680000pt;}
.ls83{letter-spacing:-0.928000pt;}
.ls73{letter-spacing:-0.896000pt;}
.ls43{letter-spacing:-0.890667pt;}
.ls53{letter-spacing:-0.704000pt;}
.ls44{letter-spacing:-0.682667pt;}
.ls78{letter-spacing:-0.672000pt;}
.ls3c{letter-spacing:-0.666667pt;}
.ls7b{letter-spacing:-0.640000pt;}
.ls85{letter-spacing:-0.544000pt;}
.ls88{letter-spacing:-0.480000pt;}
.ls74{letter-spacing:-0.476267pt;}
.ls7c{letter-spacing:-0.445333pt;}
.ls3e{letter-spacing:-0.406933pt;}
.ls3f{letter-spacing:-0.368533pt;}
.ls79{letter-spacing:-0.353067pt;}
.ls8{letter-spacing:-0.352000pt;}
.ls7a{letter-spacing:-0.348267pt;}
.ls45{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.298133pt;}
.ls82{letter-spacing:-0.288000pt;}
.lsd{letter-spacing:-0.272000pt;}
.ls81{letter-spacing:-0.256000pt;}
.ls3a{letter-spacing:-0.250667pt;}
.lse{letter-spacing:-0.240000pt;}
.ls89{letter-spacing:-0.224000pt;}
.ls87{letter-spacing:-0.176000pt;}
.ls54{letter-spacing:-0.158933pt;}
.lsb{letter-spacing:-0.080000pt;}
.ls86{letter-spacing:-0.064000pt;}
.ls39{letter-spacing:-0.061333pt;}
.ls62{letter-spacing:-0.043520pt;}
.ls7f{letter-spacing:-0.030720pt;}
.ls1b{letter-spacing:-0.028160pt;}
.ls42{letter-spacing:-0.002560pt;}
.ls7{letter-spacing:0.000000pt;}
.ls75{letter-spacing:0.002560pt;}
.ls80{letter-spacing:0.007680pt;}
.ls2d{letter-spacing:0.020480pt;}
.ls0{letter-spacing:0.064000pt;}
.ls4c{letter-spacing:0.094720pt;}
.lsc{letter-spacing:0.096000pt;}
.ls68{letter-spacing:0.107520pt;}
.ls2f{letter-spacing:0.153600pt;}
.ls9{letter-spacing:0.160000pt;}
.ls40{letter-spacing:0.163733pt;}
.ls28{letter-spacing:0.163840pt;}
.ls5{letter-spacing:0.192000pt;}
.ls7e{letter-spacing:0.194667pt;}
.ls2{letter-spacing:0.224000pt;}
.ls46{letter-spacing:0.233067pt;}
.ls57{letter-spacing:0.253333pt;}
.ls6{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.271467pt;}
.ls63{letter-spacing:0.286933pt;}
.ls1{letter-spacing:0.288000pt;}
.ls84{letter-spacing:0.304000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.640000pt;}
.ls2a{letter-spacing:0.647680pt;}
.ls6c{letter-spacing:0.793600pt;}
.ls3d{letter-spacing:0.912000pt;}
.ls30{letter-spacing:0.993280pt;}
.ls22{letter-spacing:1.029120pt;}
.ls32{letter-spacing:1.093120pt;}
.ls37{letter-spacing:1.121280pt;}
.ls4b{letter-spacing:1.251840pt;}
.ls1c{letter-spacing:1.280000pt;}
.ls2e{letter-spacing:1.287680pt;}
.ls25{letter-spacing:1.374720pt;}
.ls21{letter-spacing:1.433600pt;}
.ls41{letter-spacing:1.552000pt;}
.ls64{letter-spacing:1.566720pt;}
.ls48{letter-spacing:1.761280pt;}
.ls14{letter-spacing:1.920000pt;}
.ls60{letter-spacing:1.927680pt;}
.ls71{letter-spacing:2.192000pt;}
.ls6f{letter-spacing:2.273280pt;}
.ls52{letter-spacing:2.401280pt;}
.ls2b{letter-spacing:2.434560pt;}
.ls38{letter-spacing:2.498560pt;}
.ls12{letter-spacing:2.560000pt;}
.ls33{letter-spacing:2.567680pt;}
.ls56{letter-spacing:2.832000pt;}
.ls16{letter-spacing:3.200000pt;}
.ls6d{letter-spacing:3.363840pt;}
.ls55{letter-spacing:3.472000pt;}
.ls4d{letter-spacing:3.553280pt;}
.ls4a{letter-spacing:3.686400pt;}
.ls36{letter-spacing:3.778560pt;}
.ls13{letter-spacing:3.840000pt;}
.ls67{letter-spacing:3.847680pt;}
.ls77{letter-spacing:4.047675pt;}
.ls58{letter-spacing:4.112000pt;}
.ls1e{letter-spacing:4.193280pt;}
.ls34{letter-spacing:4.321280pt;}
.ls66{letter-spacing:4.451840pt;}
.ls15{letter-spacing:4.480000pt;}
.ls5a{letter-spacing:4.487680pt;}
.ls2c{letter-spacing:4.574720pt;}
.ls50{letter-spacing:4.633600pt;}
.ls3b{letter-spacing:4.752000pt;}
.ls5b{letter-spacing:4.766720pt;}
.ls6e{letter-spacing:4.771840pt;}
.ls5f{letter-spacing:4.961280pt;}
.ls20{letter-spacing:5.411840pt;}
.ls23{letter-spacing:5.854720pt;}
.ls5e{letter-spacing:6.113280pt;}
.ls59{letter-spacing:6.213120pt;}
.ls4f{letter-spacing:6.241280pt;}
.ls6a{letter-spacing:6.371840pt;}
.lsf{letter-spacing:6.400000pt;}
.ls7d{letter-spacing:7.946667pt;}
.ls70{letter-spacing:8.320000pt;}
.ls29{letter-spacing:8.355840pt;}
.ls31{letter-spacing:8.673280pt;}
.ls65{letter-spacing:9.571840pt;}
.ls5c{letter-spacing:9.694720pt;}
.ls26{letter-spacing:9.753600pt;}
.ls61{letter-spacing:9.820160pt;}
.ls1f{letter-spacing:9.953280pt;}
.ls6b{letter-spacing:9.989120pt;}
.ls49{letter-spacing:10.081280pt;}
.ls1d{letter-spacing:10.209280pt;}
.ls24{letter-spacing:10.211840pt;}
.ls51{letter-spacing:10.237440pt;}
.ls69{letter-spacing:10.240000pt;}
.ls47{letter-spacing:10.334720pt;}
.ls72{letter-spacing:10.506667pt;}
.ls5d{letter-spacing:11.166720pt;}
.ls27{letter-spacing:11.361280pt;}
.ls4e{letter-spacing:11.458560pt;}
.ls35{letter-spacing:12.446720pt;}
.ls4{letter-spacing:373.920000pt;}
.ls10{letter-spacing:2570.028373pt;}
.ls76{letter-spacing:2674.724693pt;}
.ws5{word-spacing:-19.695467pt;}
.ws6{word-spacing:-17.520000pt;}
.ws2e{word-spacing:-15.516087pt;}
.wse{word-spacing:-15.216000pt;}
.wsd{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.691840pt;}
.ws9{word-spacing:-13.536000pt;}
.ws8{word-spacing:-13.440000pt;}
.ws7{word-spacing:-13.344000pt;}
.ws13{word-spacing:-12.974080pt;}
.ws1f{word-spacing:-12.953600pt;}
.ws2f{word-spacing:-12.320000pt;}
.ws30{word-spacing:-12.000000pt;}
.ws39{word-spacing:-11.776000pt;}
.ws31{word-spacing:-11.680000pt;}
.ws4{word-spacing:-10.848000pt;}
.ws3{word-spacing:-10.816000pt;}
.ws2{word-spacing:-10.784000pt;}
.wsc{word-spacing:-10.624000pt;}
.ws0{word-spacing:-10.560000pt;}
.wsa{word-spacing:-10.288000pt;}
.ws1{word-spacing:-10.208000pt;}
.ws20{word-spacing:-0.378880pt;}
.ws36{word-spacing:-0.352000pt;}
.ws22{word-spacing:-0.345813pt;}
.ws1e{word-spacing:-0.330347pt;}
.ws2a{word-spacing:-0.253547pt;}
.ws16{word-spacing:-0.222613pt;}
.ws35{word-spacing:-0.208000pt;}
.ws3a{word-spacing:-0.144000pt;}
.ws2c{word-spacing:-0.066560pt;}
.ws26{word-spacing:-0.061440pt;}
.wsf{word-spacing:-0.058880pt;}
.ws17{word-spacing:-0.056320pt;}
.ws34{word-spacing:-0.048000pt;}
.ws1a{word-spacing:-0.030720pt;}
.ws2b{word-spacing:-0.028160pt;}
.ws21{word-spacing:-0.015360pt;}
.wsb{word-spacing:0.000000pt;}
.ws11{word-spacing:0.002453pt;}
.ws37{word-spacing:0.016000pt;}
.ws38{word-spacing:0.128000pt;}
.ws12{word-spacing:0.191787pt;}
.ws2d{word-spacing:0.197120pt;}
.ws32{word-spacing:0.240000pt;}
.ws1b{word-spacing:0.261120pt;}
.ws28{word-spacing:0.289387pt;}
.ws27{word-spacing:0.294187pt;}
.ws15{word-spacing:0.348053pt;}
.ws29{word-spacing:0.386453pt;}
.ws24{word-spacing:0.417387pt;}
.ws14{word-spacing:0.607787pt;}
.ws25{word-spacing:0.613120pt;}
.ws19{word-spacing:0.623787pt;}
.ws1d{word-spacing:0.645120pt;}
.ws18{word-spacing:0.831787pt;}
.ws23{word-spacing:0.837120pt;}
.ws33{word-spacing:0.880000pt;}
.ws1c{word-spacing:10.152960pt;}
._45{margin-left:-2742.959360pt;}
._2d{margin-left:-2741.930667pt;}
._c9{margin-left:-2740.071467pt;}
._29{margin-left:-2738.608000pt;}
._e1{margin-left:-2726.730240pt;}
._120{margin-left:-2709.113387pt;}
._132{margin-left:-2682.858240pt;}
._11f{margin-left:-2680.853547pt;}
._115{margin-left:-2667.558613pt;}
._131{margin-left:-2658.957440pt;}
._d6{margin-left:-2652.861227pt;}
._fc{margin-left:-2651.958827pt;}
._c8{margin-left:-2651.066453pt;}
._10e{margin-left:-2644.610987pt;}
._13e{margin-left:-2643.422933pt;}
._f2{margin-left:-2637.857707pt;}
._c7{margin-left:-2623.765333pt;}
._11c{margin-left:-2609.778773pt;}
._114{margin-left:-2600.085333pt;}
._e0{margin-left:-2596.885333pt;}
._e4{margin-left:-2591.351040pt;}
._44{margin-left:-2585.407787pt;}
._13a{margin-left:-2582.255360pt;}
._16e{margin-left:-2567.899947pt;}
._170{margin-left:-2553.261867pt;}
._2f{margin-left:-2552.090667pt;}
._dd{margin-left:-2550.805333pt;}
._178{margin-left:-2549.893973pt;}
._13d{margin-left:-2547.257173pt;}
._d5{margin-left:-2543.765333pt;}
._61{margin-left:-2539.293867pt;}
._186{margin-left:-2534.784853pt;}
._188{margin-left:-2527.282773pt;}
._177{margin-left:-2523.739947pt;}
._f1{margin-left:-2522.005333pt;}
._12b{margin-left:-2519.104853pt;}
._133{margin-left:-2509.983147pt;}
._165{margin-left:-2505.193387pt;}
._fb{margin-left:-2484.885333pt;}
._46{margin-left:-2479.208960pt;}
._e2{margin-left:-2465.649067pt;}
._163{margin-left:-2415.441067pt;}
._75{margin-left:-2405.525333pt;}
._43{margin-left:-2346.804053pt;}
._e8{margin-left:-2344.356907pt;}
._30{margin-left:-2313.424000pt;}
._34{margin-left:-2271.520000pt;}
._136{margin-left:-2224.659413pt;}
._47{margin-left:-2199.279787pt;}
._1d9{margin-left:-2194.665600pt;}
._134{margin-left:-2182.279893pt;}
._10c{margin-left:-2168.087040pt;}
._124{margin-left:-2122.537173pt;}
._12a{margin-left:-2118.714027pt;}
._11d{margin-left:-2063.012267pt;}
._fe{margin-left:-2049.653333pt;}
._1d8{margin-left:-2044.911787pt;}
._17e{margin-left:-2037.574827pt;}
._16f{margin-left:-2019.586987pt;}
._4d{margin-left:-1998.362027pt;}
._12d{margin-left:-1980.315307pt;}
._4a{margin-left:-1965.581227pt;}
._1e6{margin-left:-1950.041600pt;}
._153{margin-left:-1948.955307pt;}
._150{margin-left:-1931.621973pt;}
._181{margin-left:-1883.616213pt;}
._1e5{margin-left:-1867.471787pt;}
._4b{margin-left:-1863.695360pt;}
._1c3{margin-left:-1861.786667pt;}
._63{margin-left:-1858.948267pt;}
._5f{margin-left:-1853.284267pt;}
._48{margin-left:-1835.596800pt;}
._4e{margin-left:-1781.345280pt;}
._1f3{margin-left:-1765.018667pt;}
._77{margin-left:-1731.167360pt;}
._14c{margin-left:-1723.897920pt;}
._f9{margin-left:-1719.579520pt;}
._f4{margin-left:-1718.379307pt;}
._138{margin-left:-1712.101973pt;}
._1e9{margin-left:-1700.331947pt;}
._123{margin-left:-1678.088107pt;}
._172{margin-left:-1676.551893pt;}
._1a3{margin-left:-1658.928000pt;}
._1b7{margin-left:-1656.394667pt;}
._f5{margin-left:-1647.930667pt;}
._22{margin-left:-1627.166720pt;}
._1a2{margin-left:-1624.828373pt;}
._12f{margin-left:-1623.875627pt;}
._e5{margin-left:-1618.451840pt;}
._f8{margin-left:-1581.475413pt;}
._60{margin-left:-1564.897280pt;}
._198{margin-left:-1561.888000pt;}
._1c4{margin-left:-1546.590933pt;}
._175{margin-left:-1541.494187pt;}
._16b{margin-left:-1526.666667pt;}
._33{margin-left:-1514.362667pt;}
._174{margin-left:-1488.266667pt;}
._180{margin-left:-1480.374187pt;}
._160{margin-left:-1452.211840pt;}
._141{margin-left:-1448.816427pt;}
._19a{margin-left:-1445.305600pt;}
._197{margin-left:-1443.068373pt;}
._66{margin-left:-1414.026667pt;}
._199{margin-left:-1410.428373pt;}
._1bb{margin-left:-1384.013867pt;}
._1bc{margin-left:-1365.881600pt;}
._71{margin-left:-1357.066667pt;}
._1f4{margin-left:-1354.880000pt;}
._16d{margin-left:-1347.153280pt;}
._171{margin-left:-1344.190080pt;}
._1ca{margin-left:-1338.409600pt;}
._c{margin-left:-1328.256000pt;}
._ea{margin-left:-1285.386667pt;}
._1ce{margin-left:-1281.392000pt;}
._1cd{margin-left:-1271.741867pt;}
._128{margin-left:-1269.818453pt;}
._1d5{margin-left:-1266.010667pt;}
._1eb{margin-left:-1263.962667pt;}
._126{margin-left:-1261.275520pt;}
._1b8{margin-left:-1238.733867pt;}
._14d{margin-left:-1224.955307pt;}
._d7{margin-left:-1222.560000pt;}
._1b9{margin-left:-1221.065600pt;}
._185{margin-left:-1191.064107pt;}
._10d{margin-left:-1185.091840pt;}
._64{margin-left:-1178.952747pt;}
._40{margin-left:-1176.315307pt;}
._41{margin-left:-1175.324160pt;}
._129{margin-left:-1172.475307pt;}
._195{margin-left:-1170.321707pt;}
._196{margin-left:-1168.576000pt;}
._fa{margin-left:-1158.560213pt;}
._1af{margin-left:-1156.881707pt;}
._d8{margin-left:-1155.449173pt;}
._18d{margin-left:-1152.352000pt;}
._56{margin-left:-1147.588267pt;}
._18c{margin-left:-1139.666560pt;}
._166{margin-left:-1126.062080pt;}
._1da{margin-left:-1120.293120pt;}
._1d4{margin-left:-1109.605120pt;}
._184{margin-left:-1097.304533pt;}
._f3{margin-left:-1091.599360pt;}
._179{margin-left:-1088.630187pt;}
._183{margin-left:-1082.891520pt;}
._140{margin-left:-1079.200000pt;}
._193{margin-left:-1076.881707pt;}
._194{margin-left:-1075.129600pt;}
._19f{margin-left:-1062.400000pt;}
._35{margin-left:-1043.445333pt;}
._ff{margin-left:-1037.259520pt;}
._1d1{margin-left:-1028.576000pt;}
._19e{margin-left:-1027.601707pt;}
._1c8{margin-left:-1021.920000pt;}
._1e2{margin-left:-1001.040000pt;}
._1c7{margin-left:-998.826667pt;}
._15d{margin-left:-986.106453pt;}
._17f{margin-left:-957.431919pt;}
._1df{margin-left:-941.103360pt;}
._1c0{margin-left:-939.257600pt;}
._13f{margin-left:-930.447360pt;}
._55{margin-left:-912.661760pt;}
._100{margin-left:-909.708373pt;}
._1a1{margin-left:-906.970667pt;}
._1bf{margin-left:-894.677120pt;}
._68{margin-left:-891.617280pt;}
._116{margin-left:-874.121173pt;}
._1a0{margin-left:-870.801707pt;}
._1db{margin-left:-836.906667pt;}
._24{margin-left:-833.530667pt;}
._121{margin-left:-830.144000pt;}
._1a5{margin-left:-810.313600pt;}
._14e{margin-left:-809.314560pt;}
._1e3{margin-left:-806.192000pt;}
._143{margin-left:-795.390933pt;}
._1dc{margin-left:-788.832000pt;}
._142{margin-left:-775.200000pt;}
._1a4{margin-left:-774.161707pt;}
._1d3{margin-left:-771.726933pt;}
._51{margin-left:-769.693440pt;}
._70{margin-left:-767.195307pt;}
._11a{margin-left:-766.223360pt;}
._15e{margin-left:-764.072427pt;}
._14f{margin-left:-761.816320pt;}
._79{margin-left:-741.540267pt;}
._173{margin-left:-739.721173pt;}
._78{margin-left:-737.418667pt;}
._1ec{margin-left:-724.185173pt;}
._93{margin-left:-723.033600pt;}
._e{margin-left:-719.840000pt;}
._92{margin-left:-718.240000pt;}
._11b{margin-left:-714.054613pt;}
._4f{margin-left:-711.618560pt;}
._fd{margin-left:-706.403413pt;}
._1c6{margin-left:-704.489600pt;}
._1d2{margin-left:-700.740480pt;}
._de{margin-left:-694.218240pt;}
._18b{margin-left:-682.569600pt;}
._59{margin-left:-678.869760pt;}
._1c9{margin-left:-670.677120pt;}
._1e8{margin-left:-669.784960pt;}
._58{margin-left:-662.177280pt;}
._1ba{margin-left:-655.040000pt;}
._1be{margin-left:-653.440000pt;}
._4c{margin-left:-651.564800pt;}
._1c5{margin-left:-646.355200pt;}
._151{margin-left:-644.148907pt;}
._1f1{margin-left:-636.688000pt;}
._1f0{margin-left:-633.440000pt;}
._1e4{margin-left:-628.906667pt;}
._13b{margin-left:-627.417600pt;}
._1de{margin-left:-624.144000pt;}
._18a{margin-left:-622.747947pt;}
._5d{margin-left:-621.328640pt;}
._1d0{margin-left:-618.762240pt;}
._5e{margin-left:-606.184960pt;}
._182{margin-left:-599.310080pt;}
._1d7{margin-left:-595.600000pt;}
._12e{margin-left:-590.138453pt;}
._1cf{margin-left:-584.368000pt;}
._1bd{margin-left:-581.600000pt;}
._ec{margin-left:-572.309120pt;}
._1cc{margin-left:-569.582933pt;}
._eb{margin-left:-567.840000pt;}
._137{margin-left:-564.919040pt;}
._10f{margin-left:-555.929173pt;}
._1dd{margin-left:-552.618667pt;}
._1aa{margin-left:-549.979307pt;}
._52{margin-left:-548.362240pt;}
._49{margin-left:-543.320960pt;}
._1b5{margin-left:-540.016000pt;}
._1e7{margin-left:-538.862293pt;}
._1d6{margin-left:-523.629547pt;}
._13c{margin-left:-519.755947pt;}
._101{margin-left:-515.483093pt;}
._df{margin-left:-513.280000pt;}
._1b4{margin-left:-503.921707pt;}
._1cb{margin-left:-498.800000pt;}
._98{margin-left:-495.920640pt;}
._97{margin-left:-494.720000pt;}
._11e{margin-left:-483.516373pt;}
._125{margin-left:-477.994453pt;}
._e7{margin-left:-475.680000pt;}
._89{margin-left:-470.478933pt;}
._159{margin-left:-467.246080pt;}
._14b{margin-left:-458.431573pt;}
._14a{margin-left:-455.871467pt;}
._31{margin-left:-453.866667pt;}
._161{margin-left:-443.936427pt;}
._91{margin-left:-440.397227pt;}
._1f2{margin-left:-438.085120pt;}
._1ef{margin-left:-436.592640pt;}
._5a{margin-left:-433.016320pt;}
._1b6{margin-left:-430.983040pt;}
._1a9{margin-left:-429.040000pt;}
._192{margin-left:-427.856000pt;}
._167{margin-left:-425.198080pt;}
._17b{margin-left:-421.163733pt;}
._f7{margin-left:-419.650133pt;}
._16c{margin-left:-418.711040pt;}
._118{margin-left:-417.280000pt;}
._191{margin-left:-416.241707pt;}
._69{margin-left:-408.903680pt;}
._1c1{margin-left:-404.598400pt;}
._f6{margin-left:-403.543040pt;}
._17a{margin-left:-402.246613pt;}
._1ac{margin-left:-396.384000pt;}
._1ae{margin-left:-395.488000pt;}
._1a8{margin-left:-391.921707pt;}
._1ed{margin-left:-388.800000pt;}
._130{margin-left:-385.568427pt;}
._1b2{margin-left:-384.384000pt;}
._1e0{margin-left:-379.946667pt;}
._1ee{margin-left:-377.609600pt;}
._1a7{margin-left:-372.384000pt;}
._15f{margin-left:-368.000000pt;}
._88{margin-left:-365.440000pt;}
._135{margin-left:-364.220587pt;}
._1b3{margin-left:-361.855147pt;}
._1ab{margin-left:-360.561707pt;}
._1ad{margin-left:-359.281707pt;}
._162{margin-left:-352.627200pt;}
._189{margin-left:-350.100480pt;}
._1b1{margin-left:-348.401707pt;}
._e9{margin-left:-346.211413pt;}
._164{margin-left:-340.586667pt;}
._1c2{margin-left:-339.635200pt;}
._1a6{margin-left:-336.241707pt;}
._18e{margin-left:-326.066560pt;}
._103{margin-left:-320.066560pt;}
._10{margin-left:-318.612480pt;}
._6b{margin-left:-317.620480pt;}
._102{margin-left:-314.634667pt;}
._57{margin-left:-293.120000pt;}
._152{margin-left:-290.682453pt;}
._168{margin-left:-288.250880pt;}
._10b{margin-left:-284.833493pt;}
._50{margin-left:-280.960000pt;}
._1e1{margin-left:-278.725120pt;}
._190{margin-left:-275.376000pt;}
._119{margin-left:-271.293440pt;}
._6f{margin-left:-269.859627pt;}
._5b{margin-left:-266.667520pt;}
._110{margin-left:-265.676587pt;}
._18f{margin-left:-261.841707pt;}
._67{margin-left:-259.576320pt;}
._19d{margin-left:-256.487467pt;}
._53{margin-left:-251.735040pt;}
._12c{margin-left:-250.329600pt;}
._111{margin-left:-246.631893pt;}
._ee{margin-left:-243.740160pt;}
._76{margin-left:-238.138667pt;}
._a1{margin-left:-236.945707pt;}
._176{margin-left:-234.209280pt;}
._15c{margin-left:-226.689920pt;}
._1b0{margin-left:-225.195093pt;}
._113{margin-left:-222.594560pt;}
._112{margin-left:-220.726080pt;}
._54{margin-left:-219.092480pt;}
._155{margin-left:-216.096640pt;}
._149{margin-left:-213.140480pt;}
._15b{margin-left:-211.971093pt;}
._9c{margin-left:-210.770133pt;}
._158{margin-left:-209.708267pt;}
._148{margin-left:-208.790827pt;}
._17d{margin-left:-207.362027pt;}
._d0{margin-left:-206.441067pt;}
._6e{margin-left:-204.580907pt;}
._65{margin-left:-203.520000pt;}
._3f{margin-left:-202.347520pt;}
._16a{margin-left:-201.435307pt;}
._15a{margin-left:-199.666560pt;}
._17c{margin-left:-197.813760pt;}
._f0{margin-left:-196.370453pt;}
._145{margin-left:-195.350400pt;}
._147{margin-left:-193.955947pt;}
._d3{margin-left:-192.691200pt;}
._d2{margin-left:-191.022293pt;}
._139{margin-left:-189.168640pt;}
._a8{margin-left:-187.686400pt;}
._ed{margin-left:-186.041813pt;}
._da{margin-left:-184.119253pt;}
._dc{margin-left:-182.287360pt;}
._144{margin-left:-180.811520pt;}
._157{margin-left:-179.914880pt;}
._19b{margin-left:-178.895147pt;}
._cf{margin-left:-177.849813pt;}
._b4{margin-left:-176.296533pt;}
._9b{margin-left:-174.848000pt;}
._25{margin-left:-173.191680pt;}
._ac{margin-left:-172.004907pt;}
._b1{margin-left:-170.998613pt;}
._9a{margin-left:-169.492480pt;}
._62{margin-left:-167.680000pt;}
._be{margin-left:-165.944960pt;}
._73{margin-left:-164.480000pt;}
._105{margin-left:-162.792107pt;}
._107{margin-left:-161.402880pt;}
._146{margin-left:-160.351680pt;}
._a0{margin-left:-159.109120pt;}
._b6{margin-left:-157.333547pt;}
._122{margin-left:-156.144213pt;}
._90{margin-left:-155.072000pt;}
._9f{margin-left:-153.709653pt;}
._b0{margin-left:-152.688640pt;}
._85{margin-left:-151.516160pt;}
._bb{margin-left:-150.384640pt;}
._8f{margin-left:-148.976640pt;}
._117{margin-left:-147.840000pt;}
._83{margin-left:-146.928640pt;}
._af{margin-left:-145.756160pt;}
._ae{margin-left:-144.641600pt;}
._c5{margin-left:-143.228800pt;}
._8e{margin-left:-142.196800pt;}
._42{margin-left:-140.481067pt;}
._104{margin-left:-139.266560pt;}
._c6{margin-left:-138.238400pt;}
._87{margin-left:-136.932693pt;}
._a2{margin-left:-135.907413pt;}
._9d{margin-left:-134.809600pt;}
._7c{margin-left:-133.616640pt;}
._86{margin-left:-132.368640pt;}
._96{margin-left:-131.460907pt;}
._b7{margin-left:-130.188480pt;}
._80{margin-left:-129.126400pt;}
._82{margin-left:-127.483733pt;}
._72{margin-left:-126.533120pt;}
._b9{margin-left:-125.448213pt;}
._7f{margin-left:-124.528640pt;}
._ef{margin-left:-123.258027pt;}
._81{margin-left:-121.968640pt;}
._db{margin-left:-120.876907pt;}
._ab{margin-left:-119.933653pt;}
._94{margin-left:-118.225920pt;}
._ad{margin-left:-116.711680pt;}
._ba{margin-left:-115.568640pt;}
._6a{margin-left:-114.560000pt;}
._95{margin-left:-113.034453pt;}
._154{margin-left:-111.951147pt;}
._74{margin-left:-110.754987pt;}
._10a{margin-left:-109.664000pt;}
._bc{margin-left:-108.723413pt;}
._a6{margin-left:-107.646720pt;}
._9e{margin-left:-106.721920pt;}
._aa{margin-left:-104.999680pt;}
._6d{margin-left:-103.874560pt;}
._6c{margin-left:-102.256000pt;}
._cc{margin-left:-101.298667pt;}
._b3{margin-left:-100.149760pt;}
._8a{margin-left:-98.488320pt;}
._ce{margin-left:-97.213227pt;}
._cd{margin-left:-96.033493pt;}
._bd{margin-left:-94.799360pt;}
._8d{margin-left:-93.808640pt;}
._a5{margin-left:-92.633600pt;}
._c0{margin-left:-90.702293pt;}
._cb{margin-left:-89.629760pt;}
._bf{margin-left:-88.688640pt;}
._d9{margin-left:-87.566293pt;}
._a4{margin-left:-86.489600pt;}
._8c{margin-left:-85.122560pt;}
._a7{margin-left:-83.696640pt;}
._b2{margin-left:-82.288640pt;}
._99{margin-left:-80.894080pt;}
._8b{margin-left:-79.741867pt;}
._c1{margin-left:-78.164480pt;}
._7a{margin-left:-77.265920pt;}
._b5{margin-left:-76.277547pt;}
._7b{margin-left:-75.356160pt;}
._a9{margin-left:-73.707093pt;}
._d4{margin-left:-72.515307pt;}
._21{margin-left:-71.234560pt;}
._c2{margin-left:-69.884693pt;}
._ca{margin-left:-68.844373pt;}
._b8{margin-left:-67.684053pt;}
._1b{margin-left:-66.634240pt;}
._7e{margin-left:-65.338880pt;}
._1e{margin-left:-63.843840pt;}
._108{margin-left:-62.885973pt;}
._20{margin-left:-61.754880pt;}
._169{margin-left:-60.858880pt;}
._7d{margin-left:-59.895467pt;}
._3e{margin-left:-58.750720pt;}
._a3{margin-left:-57.190827pt;}
._d{margin-left:-55.648000pt;}
._c4{margin-left:-54.591787pt;}
._c3{margin-left:-52.882347pt;}
._14{margin-left:-51.735040pt;}
._13{margin-left:-50.035200pt;}
._16{margin-left:-48.418987pt;}
._15{margin-left:-47.034880pt;}
._5c{margin-left:-46.080000pt;}
._1a{margin-left:-44.497920pt;}
._1f{margin-left:-43.394560pt;}
._3c{margin-left:-42.478080pt;}
._156{margin-left:-41.536533pt;}
._1d{margin-left:-39.948800pt;}
._12{margin-left:-39.040000pt;}
._3b{margin-left:-37.886720pt;}
._17{margin-left:-36.436480pt;}
._1c{margin-left:-35.264000pt;}
._11{margin-left:-33.502720pt;}
._18{margin-left:-32.355840pt;}
._37{margin-left:-30.912000pt;}
._36{margin-left:-29.584000pt;}
._3d{margin-left:-28.522453pt;}
._19{margin-left:-26.856960pt;}
._32{margin-left:-25.840000pt;}
._38{margin-left:-24.849280pt;}
._19c{margin-left:-23.778773pt;}
._1ea{margin-left:-22.725120pt;}
._3a{margin-left:-21.456000pt;}
._39{margin-left:-20.176000pt;}
._2e{margin-left:-19.056000pt;}
._109{margin-left:-15.933440pt;}
._106{margin-left:-12.528640pt;}
._26{margin-left:-11.504000pt;}
._2c{margin-left:-10.405333pt;}
._84{margin-left:-9.328640pt;}
._27{margin-left:-8.373333pt;}
._2a{margin-left:-7.274667pt;}
._f{margin-left:-5.760000pt;}
._2b{margin-left:-4.117333pt;}
._28{margin-left:-2.901333pt;}
._e6{margin-left:-1.921067pt;}
._1{margin-left:-0.960000pt;}
._0{width:0.922667pt;}
._2{width:1.882667pt;}
._3{width:3.120000pt;}
._4{width:4.032000pt;}
._6{width:5.088000pt;}
._a{width:6.000000pt;}
._127{width:7.413760pt;}
._e3{width:8.452907pt;}
._5{width:9.408000pt;}
._187{width:10.532053pt;}
._9{width:11.712000pt;}
._b{width:17.280000pt;}
._7{width:24.432000pt;}
._8{width:25.344000pt;}
._23{width:1613.226667pt;}
._d1{width:2649.785067pt;}
.fs8{font-size:5.120000pt;}
.fs5{font-size:26.880000pt;}
.fsc{font-size:32.000000pt;}
.fsa{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:50.595937pt;}
.fs2{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fsb{font-size:62.064349pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:80.000000pt;}
.fs4{font-size:90.880000pt;}
.fs3{font-size:96.000000pt;}
.y47{bottom:-14.400000pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:2.720000pt;}
.y46{bottom:14.240000pt;}
.y45{bottom:15.840000pt;}
.y67{bottom:16.800000pt;}
.y55{bottom:16.986667pt;}
.y44{bottom:17.280000pt;}
.y43{bottom:20.320000pt;}
.y42{bottom:30.560000pt;}
.y66{bottom:30.880000pt;}
.y54{bottom:31.226667pt;}
.y65{bottom:44.960000pt;}
.y53{bottom:45.306667pt;}
.ya{bottom:49.760000pt;}
.y6a{bottom:50.240000pt;}
.y41{bottom:54.080000pt;}
.y64{bottom:59.040000pt;}
.y52{bottom:59.386667pt;}
.y9{bottom:63.872000pt;}
.y51{bottom:70.746667pt;}
.y1f5{bottom:72.512000pt;}
.y63{bottom:73.146667pt;}
.y40{bottom:76.160000pt;}
.y8{bottom:77.952000pt;}
.y194{bottom:81.312000pt;}
.y101{bottom:83.712000pt;}
.y8f{bottom:84.192000pt;}
.yc8{bottom:84.352000pt;}
.yc7{bottom:86.272000pt;}
.y1f4{bottom:86.432000pt;}
.y193{bottom:86.592000pt;}
.y62{bottom:87.226667pt;}
.y50{bottom:87.546667pt;}
.y7{bottom:92.032000pt;}
.y3f{bottom:92.986667pt;}
.yc9{bottom:92.992000pt;}
.y1f3{bottom:100.192000pt;}
.y61{bottom:101.306667pt;}
.yc6{bottom:101.312000pt;}
.y4f{bottom:101.626667pt;}
.y192{bottom:102.112000pt;}
.y15e{bottom:102.432000pt;}
.yc5{bottom:102.752000pt;}
.yc4{bottom:102.912000pt;}
.yc3{bottom:103.232000pt;}
.y6{bottom:106.112000pt;}
.y15f{bottom:109.152000pt;}
.y1f2{bottom:114.112000pt;}
.y60{bottom:115.386667pt;}
.y4e{bottom:115.546667pt;}
.y100{bottom:116.512000pt;}
.y8e{bottom:116.992000pt;}
.y136{bottom:118.112000pt;}
.y15d{bottom:119.392000pt;}
.yc2{bottom:120.032000pt;}
.y5{bottom:120.192000pt;}
.y137{bottom:124.832000pt;}
.y1f1{bottom:127.872000pt;}
.y5f{bottom:129.466667pt;}
.y4d{bottom:129.626667pt;}
.yff{bottom:133.312000pt;}
.y4{bottom:134.266667pt;}
.y135{bottom:135.066667pt;}
.yc1{bottom:136.986667pt;}
.y4c{bottom:140.986667pt;}
.y1f0{bottom:141.786667pt;}
.y5e{bottom:143.386667pt;}
.y3{bottom:148.346667pt;}
.y8d{bottom:149.946667pt;}
.y4b{bottom:150.266667pt;}
.y191{bottom:150.586667pt;}
.y15c{bottom:152.346667pt;}
.yc0{bottom:153.786667pt;}
.y1ef{bottom:155.546667pt;}
.y5d{bottom:157.466667pt;}
.y4a{bottom:159.546667pt;}
.yfe{bottom:166.266667pt;}
.y3d{bottom:167.546667pt;}
.y133{bottom:168.186667pt;}
.y1ee{bottom:169.466667pt;}
.y5c{bottom:171.546667pt;}
.y134{bottom:174.906667pt;}
.y49{bottom:175.066667pt;}
.y15b{bottom:182.426667pt;}
.y8c{bottom:182.746667pt;}
.y1ed{bottom:183.386667pt;}
.y3c{bottom:184.666667pt;}
.y15a{bottom:184.986667pt;}
.y132{bottom:185.146667pt;}
.y5b{bottom:185.626667pt;}
.ybf{bottom:186.266667pt;}
.y190{bottom:193.146667pt;}
.y5a{bottom:196.986667pt;}
.y1ec{bottom:197.146667pt;}
.yfd{bottom:199.066667pt;}
.y3b{bottom:201.946667pt;}
.y131{bottom:204.026667pt;}
.y59{bottom:206.266667pt;}
.y1eb{bottom:211.066667pt;}
.y58{bottom:215.546667pt;}
.y8b{bottom:215.706667pt;}
.y159{bottom:218.106667pt;}
.y18f{bottom:218.586667pt;}
.y3a{bottom:219.066667pt;}
.ybd{bottom:219.546667pt;}
.y1ea{bottom:224.826667pt;}
.ybe{bottom:226.266667pt;}
.y57{bottom:231.066667pt;}
.yfc{bottom:231.866667pt;}
.y130{bottom:235.066667pt;}
.y39{bottom:236.346667pt;}
.ybc{bottom:238.426667pt;}
.y1e9{bottom:238.586667pt;}
.y18e{bottom:244.346667pt;}
.y8a{bottom:248.506667pt;}
.y158{bottom:251.066667pt;}
.y1e8{bottom:252.026667pt;}
.y38{bottom:253.466667pt;}
.yfb{bottom:265.146667pt;}
.y1e7{bottom:266.266667pt;}
.y12f{bottom:268.346667pt;}
.yba{bottom:269.306667pt;}
.y18d{bottom:270.106667pt;}
.y37{bottom:270.586667pt;}
.ybb{bottom:276.026667pt;}
.y1e6{bottom:280.026667pt;}
.y89{bottom:281.306667pt;}
.y157{bottom:283.906667pt;}
.y12e{bottom:285.186667pt;}
.yb9{bottom:286.306667pt;}
.y36{bottom:287.906667pt;}
.y1e5{bottom:293.826667pt;}
.y18c{bottom:296.066667pt;}
.yfa{bottom:297.986667pt;}
.y35{bottom:305.026667pt;}
.y1e4{bottom:307.586667pt;}
.y1e3{bottom:312.866667pt;}
.y88{bottom:314.306667pt;}
.y156{bottom:317.026667pt;}
.y12d{bottom:317.826667pt;}
.yb7{bottom:319.106667pt;}
.y1e2{bottom:321.506667pt;}
.y34{bottom:322.306667pt;}
.yb8{bottom:325.826667pt;}
.y1e1{bottom:326.786667pt;}
.y18b{bottom:329.186667pt;}
.yf9{bottom:330.946667pt;}
.y155{bottom:333.986667pt;}
.y1e0{bottom:335.266667pt;}
.yb6{bottom:336.066667pt;}
.y33{bottom:339.426667pt;}
.y1df{bottom:340.546667pt;}
.y18a{bottom:345.986667pt;}
.y87{bottom:347.106667pt;}
.yf8{bottom:347.746667pt;}
.y1de{bottom:349.026667pt;}
.y12b{bottom:350.626667pt;}
.y154{bottom:350.786667pt;}
.y1dd{bottom:354.306667pt;}
.y32{bottom:356.706667pt;}
.y12c{bottom:357.346667pt;}
.y1dc{bottom:362.786667pt;}
.y86{bottom:364.066667pt;}
.yf7{bottom:364.706667pt;}
.y12a{bottom:367.426667pt;}
.y153{bottom:367.746667pt;}
.y1db{bottom:368.066667pt;}
.yb5{bottom:368.546667pt;}
.y31{bottom:373.826667pt;}
.y1da{bottom:376.706667pt;}
.y189{bottom:378.946667pt;}
.y85{bottom:380.866667pt;}
.yf6{bottom:381.506667pt;}
.y1d9{bottom:381.986667pt;}
.y129{bottom:384.386667pt;}
.y152{bottom:384.546667pt;}
.y1d8{bottom:390.466667pt;}
.y30{bottom:391.106667pt;}
.y1d7{bottom:395.746667pt;}
.y84{bottom:397.826667pt;}
.yf5{bottom:398.306667pt;}
.y151{bottom:401.346667pt;}
.yb4{bottom:401.826667pt;}
.y1d6{bottom:404.226667pt;}
.y2f{bottom:408.226667pt;}
.yb3{bottom:408.546667pt;}
.y1d5{bottom:409.506667pt;}
.y188{bottom:411.746667pt;}
.y83{bottom:414.626667pt;}
.y128{bottom:417.346667pt;}
.y1d4{bottom:417.986667pt;}
.yb2{bottom:418.306667pt;}
.y2e{bottom:422.306667pt;}
.y1d3{bottom:423.266667pt;}
.yf3{bottom:431.266667pt;}
.y1d2{bottom:431.906667pt;}
.y56{bottom:435.906667pt;}
.y1d1{bottom:437.186667pt;}
.yf4{bottom:437.986667pt;}
.y2d{bottom:440.866667pt;}
.y187{bottom:445.026667pt;}
.y1d0{bottom:445.666667pt;}
.y82{bottom:447.426667pt;}
.yf2{bottom:447.906667pt;}
.y2c{bottom:448.706667pt;}
.y127{bottom:450.146667pt;}
.y150{bottom:450.786667pt;}
.y1cf{bottom:450.946667pt;}
.yb0{bottom:451.586667pt;}
.y186{bottom:451.746667pt;}
.y2b{bottom:456.546667pt;}
.yb1{bottom:458.306667pt;}
.y1ce{bottom:459.426667pt;}
.y185{bottom:461.506667pt;}
.y2a{bottom:464.386667pt;}
.yf1{bottom:464.706667pt;}
.y126{bottom:466.946667pt;}
.yaf{bottom:468.546667pt;}
.y29{bottom:472.226667pt;}
.y1cd{bottom:473.346667pt;}
.y184{bottom:478.466667pt;}
.y1cc{bottom:478.626667pt;}
.y28{bottom:480.066667pt;}
.yf0{bottom:481.506667pt;}
.y81{bottom:481.666667pt;}
.y125{bottom:483.746667pt;}
.y14f{bottom:484.066667pt;}
.yae{bottom:485.666667pt;}
.y1cb{bottom:487.106667pt;}
.y27{bottom:487.906667pt;}
.y48{bottom:491.746667pt;}
.y1ca{bottom:492.386667pt;}
.y183{bottom:495.266667pt;}
.y26{bottom:495.586667pt;}
.y11f{bottom:498.946667pt;}
.y122{bottom:499.426667pt;}
.y11e{bottom:500.706667pt;}
.y123{bottom:500.866667pt;}
.y124{bottom:501.506667pt;}
.yad{bottom:502.466667pt;}
.y120{bottom:502.786667pt;}
.y25{bottom:505.533333pt;}
.y1c9{bottom:506.173333pt;}
.y121{bottom:507.453333pt;}
.y182{bottom:512.253333pt;}
.y80{bottom:514.173333pt;}
.yef{bottom:514.493333pt;}
.y1c8{bottom:514.813333pt;}
.y119{bottom:516.253333pt;}
.y11c{bottom:517.053333pt;}
.y11b{bottom:517.213333pt;}
.y118{bottom:517.533333pt;}
.y11a{bottom:518.333333pt;}
.y1c7{bottom:520.093333pt;}
.y20{bottom:523.613333pt;}
.y11d{bottom:524.253333pt;}
.y24{bottom:527.293333pt;}
.y1c6{bottom:528.733333pt;}
.y181{bottom:529.053333pt;}
.y7f{bottom:530.973333pt;}
.yee{bottom:531.293333pt;}
.y117{bottom:532.733333pt;}
.y14d{bottom:533.853333pt;}
.y1c5{bottom:534.013333pt;}
.y114{bottom:534.493333pt;}
.yac{bottom:535.133333pt;}
.y115{bottom:535.293333pt;}
.y116{bottom:536.893333pt;}
.y1f{bottom:539.293333pt;}
.y14e{bottom:540.573333pt;}
.y1c4{bottom:542.493333pt;}
.y180{bottom:545.853333pt;}
.y23{bottom:546.173333pt;}
.y1c3{bottom:547.773333pt;}
.yed{bottom:548.253333pt;}
.y14c{bottom:550.333333pt;}
.y113{bottom:551.293333pt;}
.yab{bottom:551.933333pt;}
.y1e{bottom:554.973333pt;}
.y1c2{bottom:556.253333pt;}
.y1c1{bottom:561.533333pt;}
.y17f{bottom:562.813333pt;}
.y7e{bottom:563.933333pt;}
.y22{bottom:564.893333pt;}
.yeb{bottom:565.373333pt;}
.y14b{bottom:567.613333pt;}
.y1c0{bottom:570.173333pt;}
.y1d{bottom:570.493333pt;}
.yec{bottom:572.093333pt;}
.y1bf{bottom:575.453333pt;}
.y17e{bottom:579.613333pt;}
.ye8{bottom:579.933333pt;}
.y7d{bottom:580.733333pt;}
.ye5{bottom:582.013333pt;}
.ye9{bottom:582.173333pt;}
.yea{bottom:582.333333pt;}
.y21{bottom:583.613333pt;}
.ye6{bottom:584.093333pt;}
.y112{bottom:584.413333pt;}
.ya9{bottom:584.893333pt;}
.y1c{bottom:586.173333pt;}
.ye7{bottom:588.733333pt;}
.y1be{bottom:589.373333pt;}
.yaa{bottom:591.613333pt;}
.y7c{bottom:594.493333pt;}
.ye4{bottom:596.253333pt;}
.y17d{bottom:596.573333pt;}
.y1bd{bottom:597.853333pt;}
.ye3{bottom:599.133333pt;}
.y148{bottom:601.053333pt;}
.ya8{bottom:601.213333pt;}
.y149{bottom:601.373333pt;}
.ya7{bottom:601.693333pt;}
.y1b{bottom:601.853333pt;}
.y1bc{bottom:603.133333pt;}
.y14a{bottom:607.773333pt;}
.y1bb{bottom:611.773333pt;}
.y17b{bottom:613.373333pt;}
.ye2{bottom:616.413333pt;}
.y111{bottom:617.053333pt;}
.y7b{bottom:617.373333pt;}
.y1a{bottom:617.533333pt;}
.y147{bottom:617.853333pt;}
.ya5{bottom:618.973333pt;}
.y17c{bottom:620.093333pt;}
.ya6{bottom:621.053333pt;}
.y1ba{bottom:625.533333pt;}
.y17a{bottom:630.653333pt;}
.y1b9{bottom:630.813333pt;}
.y19{bottom:633.053333pt;}
.ye0{bottom:633.213333pt;}
.ye1{bottom:633.373333pt;}
.y110{bottom:633.853333pt;}
.y146{bottom:634.813333pt;}
.y1b8{bottom:639.453333pt;}
.y1b7{bottom:644.733333pt;}
.y178{bottom:647.613333pt;}
.y18{bottom:648.733333pt;}
.yde{bottom:650.173333pt;}
.y10e{bottom:650.813333pt;}
.ya3{bottom:651.293333pt;}
.ya1{bottom:652.413333pt;}
.y1b6{bottom:653.213333pt;}
.y7a{bottom:653.373333pt;}
.ya4{bottom:653.533333pt;}
.y179{bottom:654.333333pt;}
.ydf{bottom:656.893333pt;}
.y10f{bottom:657.533333pt;}
.y1b5{bottom:658.493333pt;}
.ya2{bottom:659.133333pt;}
.y177{bottom:664.573333pt;}
.y9e{bottom:666.813333pt;}
.y1b4{bottom:667.133333pt;}
.ydc{bottom:667.613333pt;}
.y9d{bottom:667.933333pt;}
.y9c{bottom:669.373333pt;}
.ydd{bottom:669.693333pt;}
.y9f{bottom:671.453333pt;}
.y1b3{bottom:672.413333pt;}
.y79{bottom:673.213333pt;}
.y145{bottom:674.333333pt;}
.ya0{bottom:676.093333pt;}
.y17{bottom:677.533333pt;}
.y1b2{bottom:681.053333pt;}
.y175{bottom:681.693333pt;}
.ydb{bottom:684.573333pt;}
.y144{bottom:684.893333pt;}
.y9b{bottom:686.333333pt;}
.y176{bottom:688.413333pt;}
.y78{bottom:693.053333pt;}
.y1b1{bottom:694.813333pt;}
.y16{bottom:695.933333pt;}
.y174{bottom:698.333333pt;}
.y1b0{bottom:700.093333pt;}
.yda{bottom:701.373333pt;}
.y143{bottom:702.333333pt;}
.y9a{bottom:703.133333pt;}
.y1af{bottom:708.573333pt;}
.y77{bottom:713.053333pt;}
.y1ae{bottom:713.853333pt;}
.y173{bottom:715.133333pt;}
.y203{bottom:715.453333pt;}
.yd9{bottom:718.333333pt;}
.y142{bottom:718.973333pt;}
.y1ad{bottom:722.493333pt;}
.y15{bottom:726.813333pt;}
.y1ac{bottom:727.773333pt;}
.y202{bottom:729.253333pt;}
.y172{bottom:732.453333pt;}
.y76{bottom:732.933333pt;}
.y10d{bottom:734.373333pt;}
.yd7{bottom:735.173333pt;}
.y141{bottom:735.813333pt;}
.y98{bottom:736.133333pt;}
.y1ab{bottom:736.293333pt;}
.yd8{bottom:737.253333pt;}
.y1aa{bottom:741.573333pt;}
.y99{bottom:742.853333pt;}
.y201{bottom:743.013333pt;}
.y170{bottom:749.413333pt;}
.y1a9{bottom:750.053333pt;}
.yd6{bottom:751.973333pt;}
.y96{bottom:752.933333pt;}
.y1a8{bottom:755.333333pt;}
.y171{bottom:756.133333pt;}
.y200{bottom:756.773333pt;}
.y97{bottom:759.653333pt;}
.y14{bottom:762.693333pt;}
.y75{bottom:763.973333pt;}
.y16f{bottom:766.373333pt;}
.y10c{bottom:767.173333pt;}
.yd5{bottom:768.933333pt;}
.y1a7{bottom:769.253333pt;}
.y1ff{bottom:770.533333pt;}
.y1a6{bottom:777.733333pt;}
.y1a5{bottom:783.013333pt;}
.y16e{bottom:783.173333pt;}
.y10b{bottom:783.973333pt;}
.y1fe{bottom:784.453333pt;}
.y95{bottom:785.573333pt;}
.yd4{bottom:785.733333pt;}
.y13{bottom:789.253333pt;}
.y74{bottom:791.173333pt;}
.y1a4{bottom:791.493333pt;}
.y1a3{bottom:796.773333pt;}
.y1fd{bottom:798.373333pt;}
.y16c{bottom:800.133333pt;}
.y10a{bottom:800.933333pt;}
.y13e{bottom:801.573333pt;}
.y13f{bottom:803.653333pt;}
.y73{bottom:805.893333pt;}
.y16d{bottom:806.853333pt;}
.y140{bottom:808.293333pt;}
.y1fc{bottom:812.133333pt;}
.y1a2{bottom:812.293333pt;}
.y12{bottom:816.453333pt;}
.y16a{bottom:816.933333pt;}
.y1a1{bottom:817.573333pt;}
.y109{bottom:817.893333pt;}
.y94{bottom:818.373333pt;}
.yd3{bottom:818.693333pt;}
.y72{bottom:822.853333pt;}
.y16b{bottom:823.653333pt;}
.y1fb{bottom:826.053333pt;}
.y1a0{bottom:833.093333pt;}
.y169{bottom:833.733333pt;}
.y108{bottom:834.853333pt;}
.y13d{bottom:835.333333pt;}
.yd2{bottom:835.493333pt;}
.y19f{bottom:838.373333pt;}
.y71{bottom:839.333333pt;}
.y1fa{bottom:839.813333pt;}
.y11{bottom:844.133333pt;}
.y168{bottom:850.693333pt;}
.y93{bottom:851.173333pt;}
.y107{bottom:851.653333pt;}
.y13c{bottom:852.133333pt;}
.yd0{bottom:852.293333pt;}
.y1f9{bottom:853.733333pt;}
.y19e{bottom:853.893333pt;}
.y70{bottom:856.453333pt;}
.yd1{bottom:859.013333pt;}
.y19d{bottom:859.173333pt;}
.y3e{bottom:864.933333pt;}
.y1f8{bottom:867.493333pt;}
.y166{bottom:867.813333pt;}
.y106{bottom:868.613333pt;}
.ycf{bottom:869.253333pt;}
.y10{bottom:873.253333pt;}
.y6f{bottom:873.413333pt;}
.y167{bottom:874.533333pt;}
.y19c{bottom:879.813333pt;}
.y1f7{bottom:881.413333pt;}
.y92{bottom:884.133333pt;}
.y165{bottom:884.773333pt;}
.y13b{bottom:885.093333pt;}
.y105{bottom:885.573333pt;}
.yce{bottom:886.053333pt;}
.yf{bottom:892.453333pt;}
.y19b{bottom:895.333333pt;}
.y19a{bottom:900.613333pt;}
.y163{bottom:901.733333pt;}
.y139{bottom:901.893333pt;}
.y104{bottom:902.693333pt;}
.y164{bottom:908.453333pt;}
.y13a{bottom:908.613333pt;}
.y6e{bottom:909.093333pt;}
.ye{bottom:911.813333pt;}
.y199{bottom:916.133333pt;}
.y91{bottom:917.253333pt;}
.y162{bottom:918.693333pt;}
.y138{bottom:918.853333pt;}
.ycc{bottom:919.013333pt;}
.y198{bottom:921.413333pt;}
.y1f6{bottom:923.013333pt;}
.ycd{bottom:925.733333pt;}
.yd{bottom:931.173333pt;}
.y6d{bottom:934.213333pt;}
.y103{bottom:935.653333pt;}
.yca{bottom:935.973333pt;}
.y197{bottom:936.773333pt;}
.y196{bottom:942.053333pt;}
.y161{bottom:942.373333pt;}
.ycb{bottom:942.693333pt;}
.yc{bottom:950.533333pt;}
.y6c{bottom:951.333333pt;}
.y195{bottom:951.680000pt;}
.y102{bottom:952.480000pt;}
.y160{bottom:952.640000pt;}
.y90{bottom:952.800000pt;}
.y6b{bottom:968.640000pt;}
.yb{bottom:969.920000pt;}
.y69{bottom:988.640000pt;}
.y2{bottom:988.800000pt;}
.y1{bottom:1002.720000pt;}
.hf{height:3.412500pt;}
.h10{height:3.982500pt;}
.he{height:17.915625pt;}
.h9{height:18.847500pt;}
.h4d{height:31.406250pt;}
.h7{height:31.992188pt;}
.h22{height:32.661250pt;}
.h1{height:33.656250pt;}
.h2b{height:34.075000pt;}
.h24{height:36.431250pt;}
.h8{height:37.246250pt;}
.h2c{height:38.153511pt;}
.ha{height:39.243750pt;}
.h1e{height:40.763328pt;}
.hc{height:41.285000pt;}
.h4c{height:42.234375pt;}
.h4f{height:42.703125pt;}
.h50{height:44.062500pt;}
.h2{height:44.875000pt;}
.h51{height:45.046875pt;}
.h14{height:47.109375pt;}
.h19{height:47.437500pt;}
.h4e{height:48.634375pt;}
.h1a{height:49.382812pt;}
.h52{height:50.062500pt;}
.h53{height:50.462500pt;}
.h1c{height:50.662812pt;}
.h18{height:51.807500pt;}
.h1d{height:51.942813pt;}
.h3{height:52.134375pt;}
.h49{height:52.382500pt;}
.h1b{height:52.582812pt;}
.h20{height:54.050000pt;}
.h4b{height:54.609354pt;}
.h44{height:54.690000pt;}
.h3c{height:55.007500pt;}
.h16{height:55.257500pt;}
.h48{height:55.330000pt;}
.h43{height:55.582500pt;}
.h31{height:55.970000pt;}
.hd{height:56.093750pt;}
.h41{height:56.222500pt;}
.h30{height:56.610000pt;}
.h2e{height:57.250000pt;}
.h17{height:57.787500pt;}
.h26{height:57.890000pt;}
.h25{height:58.457500pt;}
.h2d{height:58.530000pt;}
.h21{height:59.097500pt;}
.h3d{height:59.170000pt;}
.h2f{height:59.810000pt;}
.h34{height:60.127500pt;}
.h39{height:60.450000pt;}
.h29{height:61.090000pt;}
.h47{height:61.407500pt;}
.h42{height:61.410000pt;}
.h46{height:61.730000pt;}
.h1f{height:62.370000pt;}
.h11{height:62.812500pt;}
.h32{height:63.010000pt;}
.h33{height:63.327500pt;}
.h4a{height:63.379316pt;}
.h5{height:63.722500pt;}
.h38{height:64.290000pt;}
.h6{height:64.500000pt;}
.h40{height:64.930000pt;}
.h3e{height:65.570000pt;}
.h37{height:66.210000pt;}
.h35{height:67.167500pt;}
.h36{height:67.490000pt;}
.h28{height:68.130000pt;}
.h3a{height:68.770000pt;}
.h45{height:69.410000pt;}
.h27{height:70.690000pt;}
.h3b{height:73.250000pt;}
.h2a{height:76.450000pt;}
.h3f{height:77.730000pt;}
.h4{height:94.218750pt;}
.h15{height:97.268750pt;}
.hb{height:104.186667pt;}
.h12{height:187.706667pt;}
.h13{height:243.706667pt;}
.h23{height:1055.998213pt;}
.h0{height:1056.000000pt;}
.w2{width:204.546667pt;}
.w3{width:467.733333pt;}
.w1{width:483.760000pt;}
.w4{width:815.998333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:9.586667pt;}
.xc{left:58.404000pt;}
.x17{left:62.560000pt;}
.x1{left:67.200000pt;}
.x82{left:68.160000pt;}
.xbf{left:84.672000pt;}
.x9{left:87.986667pt;}
.xba{left:89.312000pt;}
.x28{left:90.592000pt;}
.x6c{left:93.152000pt;}
.x6b{left:96.992000pt;}
.xa{left:98.106667pt;}
.x6a{left:100.030333pt;}
.x43{left:101.152000pt;}
.x97{left:106.272000pt;}
.xd8{left:107.232000pt;}
.x7{left:109.306667pt;}
.x75{left:110.432000pt;}
.xdb{left:111.712000pt;}
.x2{left:114.432000pt;}
.xda{left:115.872000pt;}
.xbc{left:118.752000pt;}
.xee{left:121.952000pt;}
.x9e{left:125.312000pt;}
.xf1{left:126.272000pt;}
.x7c{left:129.152000pt;}
.x81{left:130.112000pt;}
.xff{left:131.392000pt;}
.x26{left:132.832000pt;}
.xfe{left:135.066667pt;}
.x99{left:136.186667pt;}
.x2a{left:137.466667pt;}
.xed{left:138.426667pt;}
.x94{left:140.026667pt;}
.xeb{left:143.225000pt;}
.x33{left:147.226667pt;}
.xf0{left:148.986667pt;}
.x9c{left:150.906667pt;}
.xc5{left:152.026667pt;}
.x90{left:154.426667pt;}
.x10b{left:156.986667pt;}
.x8f{left:158.106667pt;}
.x6{left:160.200000pt;}
.x8e{left:161.145000pt;}
.x86{left:166.426667pt;}
.xd7{left:168.826667pt;}
.x8d{left:171.546667pt;}
.xc4{left:178.426667pt;}
.xd6{left:182.266667pt;}
.x109{left:183.706667pt;}
.x108{left:187.386667pt;}
.x107{left:190.265000pt;}
.xd{left:195.062667pt;}
.xbe{left:199.546667pt;}
.x14{left:208.026667pt;}
.xad{left:210.906667pt;}
.x5d{left:211.866667pt;}
.xd4{left:221.786667pt;}
.x19{left:225.786667pt;}
.x9b{left:228.346667pt;}
.xd5{left:230.906667pt;}
.xfa{left:231.865000pt;}
.xe0{left:232.986667pt;}
.xb7{left:237.626667pt;}
.xc2{left:239.226667pt;}
.x8{left:241.786667pt;}
.xec{left:247.866667pt;}
.xef{left:255.266667pt;}
.x5e{left:257.826667pt;}
.xf8{left:259.746667pt;}
.x80{left:263.066667pt;}
.x7e{left:274.466667pt;}
.xd3{left:275.746667pt;}
.xb2{left:278.306667pt;}
.xe{left:291.906667pt;}
.x10f{left:295.586667pt;}
.x7f{left:298.306667pt;}
.x18{left:300.066667pt;}
.x42{left:301.186667pt;}
.x5{left:302.946667pt;}
.x41{left:305.346667pt;}
.x16{left:307.746667pt;}
.x62{left:311.426667pt;}
.x40{left:313.026667pt;}
.x61{left:315.266667pt;}
.x60{left:318.145000pt;}
.xf7{left:321.666667pt;}
.x5f{left:323.426667pt;}
.x8b{left:325.346667pt;}
.x8a{left:329.506667pt;}
.x89{left:332.385000pt;}
.x10{left:335.426667pt;}
.x88{left:341.826667pt;}
.xf6{left:342.946667pt;}
.x103{left:344.706667pt;}
.x7d{left:349.186667pt;}
.x7a{left:351.906667pt;}
.x52{left:353.506667pt;}
.xa8{left:354.626667pt;}
.x79{left:355.746667pt;}
.xa7{left:357.665000pt;}
.x78{left:358.625000pt;}
.x102{left:360.866667pt;}
.x101{left:361.826667pt;}
.xbd{left:363.426667pt;}
.xe5{left:365.346667pt;}
.x77{left:368.066667pt;}
.xe4{left:369.666667pt;}
.x76{left:371.266667pt;}
.xe3{left:372.705000pt;}
.x100{left:374.146667pt;}
.xf4{left:375.266667pt;}
.xd2{left:376.386667pt;}
.xfd{left:377.346667pt;}
.xfc{left:381.026667pt;}
.xe2{left:383.106667pt;}
.xa6{left:384.546667pt;}
.xe1{left:386.306667pt;}
.xdc{left:390.626667pt;}
.xfb{left:393.346667pt;}
.xf5{left:397.186667pt;}
.x13{left:399.426667pt;}
.x39{left:403.426667pt;}
.x15{left:404.386667pt;}
.x38{left:406.305000pt;}
.x3{left:408.066667pt;}
.x5b{left:409.346667pt;}
.x37{left:411.106667pt;}
.x11{left:413.666667pt;}
.xab{left:414.945000pt;}
.x5a{left:415.905000pt;}
.xa4{left:419.426667pt;}
.x59{left:420.706667pt;}
.xa5{left:423.906667pt;}
.xaa{left:425.346667pt;}
.x58{left:432.093333pt;}
.x10e{left:433.373333pt;}
.x9a{left:437.053333pt;}
.xb1{left:440.093333pt;}
.xb0{left:444.253333pt;}
.xaf{left:447.291667pt;}
.xea{left:449.533333pt;}
.x51{left:451.933333pt;}
.x50{left:454.811667pt;}
.xf{left:458.146667pt;}
.x4f{left:459.613333pt;}
.x70{left:461.371667pt;}
.x4e{left:462.653333pt;}
.x10a{left:464.091667pt;}
.xa3{left:465.373333pt;}
.x6f{left:470.813333pt;}
.x12{left:472.093333pt;}
.x6e{left:473.693333pt;}
.x57{left:479.773333pt;}
.x1d{left:484.992000pt;}
.xcb{left:487.293333pt;}
.x96{left:489.373333pt;}
.xca{left:492.413333pt;}
.x56{left:493.693333pt;}
.x1f{left:494.973333pt;}
.xc9{left:505.853333pt;}
.xd1{left:514.653333pt;}
.xac{left:519.133333pt;}
.xd0{left:522.491667pt;}
.x9d{left:528.093333pt;}
.x35{left:530.013333pt;}
.xcf{left:532.893333pt;}
.xb3{left:534.493333pt;}
.xc8{left:535.773333pt;}
.x5c{left:545.053333pt;}
.x4d{left:550.493333pt;}
.x4c{left:555.293333pt;}
.x1a{left:556.826667pt;}
.x4b{left:558.171667pt;}
.xc7{left:559.453333pt;}
.xb5{left:561.213333pt;}
.x4a{left:562.973333pt;}
.x93{left:567.773333pt;}
.x34{left:570.173333pt;}
.x92{left:572.573333pt;}
.xb6{left:574.173333pt;}
.x49{left:575.773333pt;}
.x98{left:576.733333pt;}
.x2d{left:579.933333pt;}
.x91{left:585.053333pt;}
.x6d{left:587.293333pt;}
.xf3{left:589.693333pt;}
.x25{left:591.453333pt;}
.x30{left:592.413333pt;}
.x106{left:594.331667pt;}
.xce{left:597.213333pt;}
.x105{left:603.813333pt;}
.x95{left:605.253333pt;}
.x104{left:606.853333pt;}
.xc6{left:609.413333pt;}
.x3f{left:613.573333pt;}
.xae{left:620.453333pt;}
.xcd{left:621.413333pt;}
.xa2{left:622.533333pt;}
.xd9{left:623.493333pt;}
.x74{left:624.453333pt;}
.x110{left:625.413333pt;}
.xa1{left:627.173333pt;}
.x73{left:628.293333pt;}
.xa0{left:630.211667pt;}
.x72{left:631.171667pt;}
.x27{left:632.613333pt;}
.x48{left:636.773333pt;}
.x1e{left:637.733333pt;}
.x71{left:640.613333pt;}
.x1b{left:641.733333pt;}
.x2c{left:643.173333pt;}
.xdf{left:644.933333pt;}
.xf9{left:647.331667pt;}
.x87{left:648.346667pt;}
.x29{left:649.413333pt;}
.x36{left:650.533333pt;}
.x64{left:651.973333pt;}
.x85{left:653.573333pt;}
.x84{left:656.451667pt;}
.xf2{left:658.373333pt;}
.xcc{left:659.493333pt;}
.xc3{left:662.373333pt;}
.xe9{left:663.653333pt;}
.x3d{left:665.733333pt;}
.x3c{left:669.413333pt;}
.xde{left:670.373333pt;}
.x3b{left:672.291667pt;}
.x32{left:673.413333pt;}
.x21{left:674.533333pt;}
.x3a{left:677.093333pt;}
.x20{left:678.373333pt;}
.x7b{left:680.933333pt;}
.xe7{left:683.333333pt;}
.x9f{left:684.933333pt;}
.x31{left:686.213333pt;}
.xdd{left:687.973333pt;}
.x68{left:690.693333pt;}
.x8c{left:692.453333pt;}
.x67{left:693.571667pt;}
.xbb{left:695.333333pt;}
.x66{left:698.373333pt;}
.x47{left:699.333333pt;}
.x10d{left:701.253333pt;}
.x23{left:702.693333pt;}
.xc1{left:704.613333pt;}
.x55{left:705.731667pt;}
.xc0{left:707.653333pt;}
.xb4{left:708.613333pt;}
.xb9{left:709.733333pt;}
.x54{left:711.013333pt;}
.x46{left:712.453333pt;}
.x53{left:713.893333pt;}
.x65{left:715.333333pt;}
.x10c{left:716.453333pt;}
.x24{left:718.533333pt;}
.x2b{left:719.813333pt;}
.x83{left:721.093333pt;}
.x1c{left:722.053333pt;}
.x69{left:723.333333pt;}
.x3e{left:725.253333pt;}
.x63{left:727.013333pt;}
.x44{left:728.773333pt;}
.x45{left:730.053333pt;}
.xe6{left:732.773333pt;}
.xa9{left:734.853333pt;}
.x2f{left:737.253333pt;}
.x111{left:739.493333pt;}
.xb8{left:740.773333pt;}
.x2e{left:743.013333pt;}
.xe8{left:744.133333pt;}
.x22{left:745.253333pt;}
.x4{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; }
  