
    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_c1f301dad97695c702d95058.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.924805;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_80a048928cf9ba61984b47b0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.074219;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_02b5911cfbf4fe88aea64333.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919922;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_80a048928cf9ba61984b47b0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.074219;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_5a473d86e06463d7bbf06f27.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921000;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_466bd6b9605b9fe7ae1143b4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_e631182a3cdc8330399995ac.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.999000;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_25285e4bb25c7166629a65f3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_b83723d39dc095a193314c0b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.909000;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_7e2d130bfbc093da3ab3612e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_65f396bff6447d6f8c2139f6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.924000;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_177a0b07c2284944404f8cb2.woff2')format("woff");}.ffc{font-family:ffc;line-height:2.999000;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_70c04473d2b3d01185fbbb42.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.046000;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_6f931d14884eebdd6f0f5825.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.665000;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_613a1cdb2697812124214a1a.woff2')format("woff");}.fff{font-family:fff;line-height:0.451000;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_36aa62307fa8390c957d1d7f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.908000;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_05e005a7615a9217efd46e97.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.049000;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:ff12;src:url('chunks/assets/font_c75f6070d3c67a87f87c3612.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666000;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:ff13;src:url('chunks/assets/font_815a1294d52c6a40bef42fba.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.001000;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:ff14;src:url('chunks/assets/font_4ffd6b784b75781b6861bce9.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.909000;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:ff15;src:url('chunks/assets/font_a58a941873e71ab6df02988c.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.906738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vb{vertical-align:-72.654000px;}
.v2a{vertical-align:-26.070000px;}
.v5{vertical-align:-22.854000px;}
.v3{vertical-align:-21.690000px;}
.v1b{vertical-align:-14.778000px;}
.v6{vertical-align:-8.970000px;}
.v10{vertical-align:-6.642000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:2.016000px;}
.vf{vertical-align:12.756000px;}
.v21{vertical-align:17.268000px;}
.v15{vertical-align:19.002000px;}
.v1f{vertical-align:21.690000px;}
.v4{vertical-align:22.854000px;}
.v2{vertical-align:26.034000px;}
.v17{vertical-align:29.268000px;}
.v20{vertical-align:32.040000px;}
.v18{vertical-align:33.648000px;}
.v28{vertical-align:35.268000px;}
.v1{vertical-align:37.482000px;}
.v1c{vertical-align:40.440000px;}
.v1a{vertical-align:41.568000px;}
.v9{vertical-align:44.898000px;}
.vd{vertical-align:46.326000px;}
.v12{vertical-align:48.438000px;}
.v7{vertical-align:50.676000px;}
.v16{vertical-align:53.016000px;}
.v19{vertical-align:59.418000px;}
.v14{vertical-align:72.192000px;}
.v1e{vertical-align:81.444000px;}
.v24{vertical-align:85.236000px;}
.v29{vertical-align:89.178000px;}
.vc{vertical-align:95.226000px;}
.v13{vertical-align:101.454000px;}
.v25{vertical-align:106.926000px;}
.v1d{vertical-align:125.292000px;}
.v22{vertical-align:126.360000px;}
.v26{vertical-align:133.656000px;}
.v23{vertical-align:143.220000px;}
.v27{vertical-align:146.454000px;}
.v8{vertical-align:153.816000px;}
.va{vertical-align:173.454000px;}
.v11{vertical-align:232.368000px;}
.ls3{letter-spacing:0.000000px;}
.ls4a{letter-spacing:0.000184px;}
.ls95{letter-spacing:0.000300px;}
.ls4d{letter-spacing:0.000493px;}
.ls3c{letter-spacing:0.000513px;}
.ls8e{letter-spacing:0.000648px;}
.ls9b{letter-spacing:0.000843px;}
.ls3d{letter-spacing:0.000991px;}
.ls45{letter-spacing:0.001024px;}
.ls47{letter-spacing:0.001044px;}
.ls5f{letter-spacing:0.001050px;}
.ls9f{letter-spacing:0.001211px;}
.ls5c{letter-spacing:0.001914px;}
.ls70{letter-spacing:0.002157px;}
.ls54{letter-spacing:0.002670px;}
.ls5b{letter-spacing:0.003130px;}
.ls37{letter-spacing:0.003504px;}
.ls59{letter-spacing:0.003697px;}
.ls6d{letter-spacing:0.003791px;}
.ls6e{letter-spacing:0.004122px;}
.ls69{letter-spacing:0.004152px;}
.ls41{letter-spacing:0.004338px;}
.ls20{letter-spacing:0.004344px;}
.lsa2{letter-spacing:0.004779px;}
.ls80{letter-spacing:0.005835px;}
.lsa3{letter-spacing:0.006493px;}
.ls46{letter-spacing:0.006991px;}
.lsc{letter-spacing:0.007403px;}
.ls72{letter-spacing:0.009191px;}
.ls8{letter-spacing:0.012317px;}
.ls23{letter-spacing:0.013043px;}
.ls63{letter-spacing:0.014804px;}
.ls33{letter-spacing:0.017830px;}
.ls8d{letter-spacing:0.020064px;}
.ls30{letter-spacing:0.023140px;}
.ls53{letter-spacing:0.023830px;}
.ls27{letter-spacing:0.027292px;}
.ls78{letter-spacing:0.028767px;}
.ls9c{letter-spacing:0.028853px;}
.ls5a{letter-spacing:0.029267px;}
.ls57{letter-spacing:0.030945px;}
.ls74{letter-spacing:0.032608px;}
.ls11{letter-spacing:2.290911px;}
.ls14{letter-spacing:2.356366px;}
.ls81{letter-spacing:2.984525px;}
.ls25{letter-spacing:2.984915px;}
.ls6c{letter-spacing:2.985226px;}
.ls60{letter-spacing:2.986053px;}
.ls91{letter-spacing:2.986363px;}
.ls76{letter-spacing:2.986528px;}
.ls4{letter-spacing:2.987700px;}
.lsad{letter-spacing:2.987971px;}
.ls48{letter-spacing:2.988532px;}
.ls24{letter-spacing:2.989289px;}
.ls9{letter-spacing:2.990525px;}
.ls3e{letter-spacing:2.990915px;}
.ls61{letter-spacing:2.991226px;}
.ls73{letter-spacing:2.992053px;}
.ls75{letter-spacing:2.992307px;}
.ls9d{letter-spacing:2.993374px;}
.lsa9{letter-spacing:4.058185px;}
.lsaa{letter-spacing:4.123640px;}
.ls97{letter-spacing:6.754643px;}
.ls82{letter-spacing:6.814418px;}
.ls38{letter-spacing:7.134551px;}
.lsa6{letter-spacing:7.166706px;}
.ls7a{letter-spacing:7.167072px;}
.ls3f{letter-spacing:7.170921px;}
.lsa4{letter-spacing:7.172706px;}
.ls7c{letter-spacing:7.173072px;}
.ls86{letter-spacing:7.173181px;}
.ls93{letter-spacing:7.187556px;}
.ls50{letter-spacing:7.200006px;}
.ls5d{letter-spacing:9.098189px;}
.ls9a{letter-spacing:9.973248px;}
.lsaf{letter-spacing:10.865464px;}
.ls7d{letter-spacing:10.904706px;}
.ls40{letter-spacing:10.908513px;}
.ls6f{letter-spacing:10.909604px;}
.ls35{letter-spacing:10.930918px;}
.lsab{letter-spacing:12.436374px;}
.ls1f{letter-spacing:12.632738px;}
.ls7f{letter-spacing:13.270183px;}
.ls9e{letter-spacing:13.284843px;}
.ls13{letter-spacing:13.418193px;}
.ls2{letter-spacing:13.449600px;}
.ls39{letter-spacing:13.483648px;}
.ls26{letter-spacing:14.203648px;}
.ls3b{letter-spacing:14.530921px;}
.ls15{letter-spacing:15.381831px;}
.ls28{letter-spacing:15.840013px;}
.ls1c{letter-spacing:16.101832px;}
.ls96{letter-spacing:16.268525px;}
.ls92{letter-spacing:16.271374px;}
.ls87{letter-spacing:16.275269px;}
.lsa0{letter-spacing:16.277374px;}
.ls1d{letter-spacing:16.363650px;}
.ls7{letter-spacing:16.441200px;}
.ls8c{letter-spacing:16.557841px;}
.ls8b{letter-spacing:16.617617px;}
.ls68{letter-spacing:16.887287px;}
.ls55{letter-spacing:17.534915px;}
.ls42{letter-spacing:17.535213px;}
.ls1{letter-spacing:17.928600px;}
.lsac{letter-spacing:17.932800px;}
.ls4f{letter-spacing:18.115505px;}
.ls32{letter-spacing:18.130924px;}
.ls1e{letter-spacing:18.196379px;}
.ls62{letter-spacing:18.523652px;}
.ls5e{letter-spacing:18.589106px;}
.lsb{letter-spacing:18.829314px;}
.ls2e{letter-spacing:19.047289px;}
.lsae{letter-spacing:19.090350px;}
.ls67{letter-spacing:19.309107px;}
.ls6a{letter-spacing:19.354053px;}
.ls66{letter-spacing:19.374562px;}
.lsa7{letter-spacing:19.505471px;}
.ls8a{letter-spacing:19.592525px;}
.ls64{letter-spacing:19.863226px;}
.ls65{letter-spacing:19.864053px;}
.ls18{letter-spacing:19.898198px;}
.ls17{letter-spacing:19.963653px;}
.lsa8{letter-spacing:20.356381px;}
.ls16{letter-spacing:20.421835px;}
.ls85{letter-spacing:20.458893px;}
.ls12{letter-spacing:20.487290px;}
.ls71{letter-spacing:20.524307px;}
.ls29{letter-spacing:20.618199px;}
.ls1b{letter-spacing:21.010927px;}
.ls52{letter-spacing:21.164915px;}
.ls6b{letter-spacing:21.166053px;}
.ls31{letter-spacing:21.170915px;}
.ls2a{letter-spacing:21.207290px;}
.ls7b{letter-spacing:22.191191px;}
.ls79{letter-spacing:22.193309px;}
.ls2d{letter-spacing:22.581837px;}
.ls19{letter-spacing:23.236383px;}
.ls1a{letter-spacing:23.301838px;}
.ls83{letter-spacing:23.372260px;}
.ls98{letter-spacing:23.751035px;}
.ls8f{letter-spacing:23.781013px;}
.ls84{letter-spacing:23.787013px;}
.ls2c{letter-spacing:24.149218px;}
.ls2b{letter-spacing:25.355700px;}
.ls7e{letter-spacing:26.560677px;}
.ls5{letter-spacing:27.425477px;}
.ls10{letter-spacing:28.734569px;}
.ls6{letter-spacing:29.323661px;}
.ls3a{letter-spacing:30.669768px;}
.lsf{letter-spacing:39.010942px;}
.lsa{letter-spacing:39.212794px;}
.ls43{letter-spacing:53.957412px;}
.ls77{letter-spacing:55.004157px;}
.lsa1{letter-spacing:59.775657px;}
.ls90{letter-spacing:65.229181px;}
.ls2f{letter-spacing:65.454600px;}
.ls0{letter-spacing:68.741700px;}
.ls4c{letter-spacing:69.759768px;}
.ls44{letter-spacing:72.624921px;}
.lsa5{letter-spacing:76.385518px;}
.lsd{letter-spacing:77.222915px;}
.ls34{letter-spacing:78.218247px;}
.ls56{letter-spacing:81.437412px;}
.ls4e{letter-spacing:81.453161px;}
.ls36{letter-spacing:83.650979px;}
.lse{letter-spacing:83.774915px;}
.ls58{letter-spacing:93.861896px;}
.ls88{letter-spacing:97.710265px;}
.ls99{letter-spacing:123.279657px;}
.ls51{letter-spacing:150.676489px;}
.ls21{letter-spacing:359.144915px;}
.ls49{letter-spacing:423.382528px;}
.ls4b{letter-spacing:492.538528px;}
.ls94{letter-spacing:871.203181px;}
.ls89{letter-spacing:1010.637181px;}
.ls22{letter-spacing:1175.528915px;}
.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;}
}
.ws73{word-spacing:-42.637126px;}
.ws6f{word-spacing:-38.937826px;}
.wsf2{word-spacing:-36.379667px;}
.ws104{word-spacing:-33.756703px;}
.wsf6{word-spacing:-33.211407px;}
.wsb5{word-spacing:-31.771663px;}
.wsb1{word-spacing:-31.706208px;}
.wsfc{word-spacing:-31.633157px;}
.wsfd{word-spacing:-29.015076px;}
.wsb0{word-spacing:-24.440748px;}
.ws103{word-spacing:-21.168018px;}
.wsba{word-spacing:-19.924380px;}
.ws106{word-spacing:-18.183288px;}
.wsfe{word-spacing:-15.359954px;}
.wsf3{word-spacing:-7.252370px;}
.wsfa{word-spacing:-6.682912px;}
.wsf9{word-spacing:-6.623136px;}
.wsfb{word-spacing:-5.812923px;}
.wsf4{word-spacing:-3.652367px;}
.wsef{word-spacing:-2.212365px;}
.wsf8{word-spacing:-1.819638px;}
.ws69{word-spacing:-0.903273px;}
.ws2{word-spacing:-0.103292px;}
.ws3{word-spacing:-0.071731px;}
.ws4f{word-spacing:-0.065455px;}
.ws25{word-spacing:-0.053798px;}
.wsac{word-spacing:-0.052364px;}
.ws4e{word-spacing:-0.047821px;}
.ws24{word-spacing:-0.035866px;}
.wsf7{word-spacing:-0.022498px;}
.wsf5{word-spacing:-0.010557px;}
.ws28{word-spacing:0.000000px;}
.wsf0{word-spacing:0.007729px;}
.ws82{word-spacing:0.013091px;}
.ws6a{word-spacing:1.256728px;}
.ws7e{word-spacing:3.351276px;}
.ws7d{word-spacing:4.333095px;}
.ws100{word-spacing:6.100369px;}
.ws14{word-spacing:9.922750px;}
.wse{word-spacing:10.759608px;}
.wse6{word-spacing:10.800009px;}
.wsd{word-spacing:10.819384px;}
.ws9d{word-spacing:10.865464px;}
.ws113{word-spacing:10.879159px;}
.ws83{word-spacing:10.996373px;}
.wse7{word-spacing:11.061827px;}
.ws96{word-spacing:11.127282px;}
.wsea{word-spacing:11.192737px;}
.wsc6{word-spacing:11.258191px;}
.wse4{word-spacing:11.323646px;}
.ws8b{word-spacing:11.389100px;}
.wsd5{word-spacing:11.454555px;}
.wsb2{word-spacing:11.585464px;}
.ws9b{word-spacing:11.674253px;}
.wse2{word-spacing:11.912737px;}
.ws81{word-spacing:11.978192px;}
.ws3c{word-spacing:12.043646px;}
.ws80{word-spacing:12.109101px;}
.wsca{word-spacing:12.240010px;}
.ws71{word-spacing:12.253998px;}
.wsad{word-spacing:12.305465px;}
.ws99{word-spacing:12.319834px;}
.wsa6{word-spacing:12.370919px;}
.wse9{word-spacing:12.436374px;}
.ws102{word-spacing:12.501829px;}
.ws6{word-spacing:12.552876px;}
.ws2d{word-spacing:12.567283px;}
.ws4a{word-spacing:12.632738px;}
.wsab{word-spacing:12.698192px;}
.ws5c{word-spacing:12.763647px;}
.ws40{word-spacing:12.829102px;}
.ws8a{word-spacing:12.894556px;}
.ws67{word-spacing:12.960011px;}
.ws10{word-spacing:12.971305px;}
.wsbe{word-spacing:13.025465px;}
.ws8{word-spacing:13.031081px;}
.ws43{word-spacing:13.090920px;}
.wse3{word-spacing:13.221829px;}
.ws10b{word-spacing:13.287284px;}
.wsa9{word-spacing:13.352738px;}
.wsce{word-spacing:13.389734px;}
.ws27{word-spacing:13.395802px;}
.wsf1{word-spacing:13.418193px;}
.wsd4{word-spacing:13.483648px;}
.ws65{word-spacing:13.549102px;}
.ws19{word-spacing:13.680011px;}
.ws64{word-spacing:13.745466px;}
.ws35{word-spacing:13.810921px;}
.wsb9{word-spacing:13.876375px;}
.wsae{word-spacing:13.941830px;}
.ws7{word-spacing:13.987490px;}
.ws2e{word-spacing:14.007284px;}
.ws10a{word-spacing:14.072739px;}
.wsb4{word-spacing:14.138194px;}
.ws61{word-spacing:14.269103px;}
.ws79{word-spacing:14.400012px;}
.ws62{word-spacing:14.530921px;}
.wsbc{word-spacing:14.596376px;}
.wsa4{word-spacing:14.661830px;}
.ws63{word-spacing:14.727285px;}
.ws21{word-spacing:14.792740px;}
.ws52{word-spacing:14.858194px;}
.ws0{word-spacing:14.884124px;}
.wsaa{word-spacing:14.923649px;}
.wsb3{word-spacing:14.989103px;}
.ws9c{word-spacing:15.009754px;}
.ws41{word-spacing:15.054558px;}
.ws1c{word-spacing:15.120013px;}
.ws34{word-spacing:15.185467px;}
.ws13{word-spacing:15.242778px;}
.ws91{word-spacing:15.250922px;}
.ws9e{word-spacing:15.316376px;}
.ws112{word-spacing:15.362329px;}
.ws92{word-spacing:15.381831px;}
.wscc{word-spacing:15.422105px;}
.ws20{word-spacing:15.447286px;}
.ws30{word-spacing:15.512740px;}
.wscb{word-spacing:15.541656px;}
.ws1d{word-spacing:15.578195px;}
.wsc{word-spacing:15.601432px;}
.wsd3{word-spacing:15.643649px;}
.ws97{word-spacing:15.709104px;}
.wsb6{word-spacing:15.774559px;}
.ws49{word-spacing:15.839317px;}
.ws48{word-spacing:15.839620px;}
.wsb7{word-spacing:15.840013px;}
.ws11{word-spacing:15.840534px;}
.ws42{word-spacing:15.905468px;}
.ws3f{word-spacing:15.970922px;}
.wsf{word-spacing:16.019861px;}
.ws78{word-spacing:16.036377px;}
.ws37{word-spacing:16.101832px;}
.ws111{word-spacing:16.199188px;}
.ws1b{word-spacing:16.232741px;}
.ws16{word-spacing:16.298195px;}
.ws2c{word-spacing:16.363650px;}
.ws45{word-spacing:16.429105px;}
.ws36{word-spacing:16.494559px;}
.wsde{word-spacing:16.560014px;}
.wsc0{word-spacing:16.625468px;}
.wscd{word-spacing:16.677392px;}
.ws107{word-spacing:16.690923px;}
.ws18{word-spacing:16.756378px;}
.ws87{word-spacing:16.821832px;}
.ws108{word-spacing:16.887287px;}
.ws8c{word-spacing:16.952741px;}
.wsb8{word-spacing:17.018196px;}
.ws1a{word-spacing:17.083651px;}
.ws2f{word-spacing:17.149105px;}
.ws9a{word-spacing:17.161690px;}
.ws68{word-spacing:17.214560px;}
.ws26{word-spacing:17.269286px;}
.ws3d{word-spacing:17.280014px;}
.ws54{word-spacing:17.345469px;}
.wsc3{word-spacing:17.394700px;}
.ws56{word-spacing:17.410924px;}
.wsd0{word-spacing:17.476378px;}
.ws59{word-spacing:17.541833px;}
.ws3e{word-spacing:17.607287px;}
.ws23{word-spacing:17.645875px;}
.wsd2{word-spacing:17.672742px;}
.wsb{word-spacing:17.693578px;}
.ws7b{word-spacing:17.738197px;}
.ws53{word-spacing:17.803651px;}
.ws5{word-spacing:17.861069px;}
.ws58{word-spacing:17.869106px;}
.ws7f{word-spacing:17.934560px;}
.ws3b{word-spacing:18.000015px;}
.ws60{word-spacing:18.065470px;}
.wsa3{word-spacing:18.130924px;}
.ws4b{word-spacing:18.196379px;}
.ws5a{word-spacing:18.261833px;}
.ws2a{word-spacing:18.327288px;}
.ws47{word-spacing:18.392743px;}
.ws9{word-spacing:18.410885px;}
.ws4d{word-spacing:18.458197px;}
.wse1{word-spacing:18.523652px;}
.ws9f{word-spacing:18.589106px;}
.ws46{word-spacing:18.654561px;}
.wsa{word-spacing:18.709763px;}
.ws44{word-spacing:18.720016px;}
.ws110{word-spacing:18.769538px;}
.ws7a{word-spacing:18.785470px;}
.ws1e{word-spacing:18.850925px;}
.ws51{word-spacing:18.916379px;}
.wsbb{word-spacing:18.981834px;}
.wsff{word-spacing:19.047289px;}
.ws114{word-spacing:19.112743px;}
.wsda{word-spacing:19.178198px;}
.ws33{word-spacing:19.243652px;}
.ws12{word-spacing:19.247743px;}
.ws5f{word-spacing:19.309107px;}
.ws29{word-spacing:19.374562px;}
.wsdc{word-spacing:19.440016px;}
.ws10d{word-spacing:19.486846px;}
.ws89{word-spacing:19.505471px;}
.wsc1{word-spacing:19.570925px;}
.ws17{word-spacing:19.636380px;}
.wsd1{word-spacing:19.701835px;}
.ws1f{word-spacing:19.767289px;}
.ws66{word-spacing:19.832744px;}
.wsa1{word-spacing:19.898198px;}
.ws6c{word-spacing:19.959206px;}
.ws8d{word-spacing:19.963653px;}
.ws6b{word-spacing:20.013005px;}
.ws8e{word-spacing:20.029108px;}
.ws57{word-spacing:20.160017px;}
.ws5d{word-spacing:20.290926px;}
.ws88{word-spacing:20.356381px;}
.ws85{word-spacing:20.421835px;}
.ws4c{word-spacing:20.487290px;}
.ws3a{word-spacing:20.552744px;}
.ws22{word-spacing:20.618199px;}
.wsdd{word-spacing:20.683654px;}
.ws98{word-spacing:20.749108px;}
.wsd8{word-spacing:20.814563px;}
.ws10c{word-spacing:20.861684px;}
.wsa8{word-spacing:20.880017px;}
.ws90{word-spacing:20.945472px;}
.ws8f{word-spacing:21.010927px;}
.wsd9{word-spacing:21.076381px;}
.ws32{word-spacing:21.141836px;}
.ws5e{word-spacing:21.207290px;}
.wsd7{word-spacing:21.338200px;}
.ws94{word-spacing:21.469109px;}
.ws31{word-spacing:21.534563px;}
.wscf{word-spacing:21.698543px;}
.wsc5{word-spacing:21.730927px;}
.wsee{word-spacing:21.796382px;}
.wse8{word-spacing:21.861836px;}
.wsdf{word-spacing:21.927291px;}
.ws84{word-spacing:21.992746px;}
.wsa0{word-spacing:22.058200px;}
.wsbf{word-spacing:22.123655px;}
.wse5{word-spacing:22.320019px;}
.ws109{word-spacing:22.385473px;}
.ws7c{word-spacing:22.450928px;}
.wsc8{word-spacing:22.516382px;}
.wsc9{word-spacing:22.581837px;}
.ws2b{word-spacing:22.647292px;}
.ws93{word-spacing:22.778201px;}
.ws50{word-spacing:22.799317px;}
.ws39{word-spacing:22.909110px;}
.wsc4{word-spacing:23.073382px;}
.wsa7{word-spacing:23.170928px;}
.wsdb{word-spacing:23.236383px;}
.wsc7{word-spacing:23.301838px;}
.wsbd{word-spacing:23.760020px;}
.ws55{word-spacing:23.825474px;}
.ws105{word-spacing:23.956384px;}
.wse0{word-spacing:24.087293px;}
.ws95{word-spacing:24.152747px;}
.wsa2{word-spacing:24.349111px;}
.ws86{word-spacing:24.414566px;}
.wsd6{word-spacing:24.480020px;}
.ws5b{word-spacing:24.938203px;}
.wsec{word-spacing:25.592749px;}
.wsed{word-spacing:25.658203px;}
.ws1{word-spacing:25.719808px;}
.wseb{word-spacing:25.723658px;}
.ws10f{word-spacing:27.197898px;}
.ws10e{word-spacing:27.257674px;}
.ws4{word-spacing:28.742886px;}
.ws70{word-spacing:30.903985px;}
.wsa5{word-spacing:32.661845px;}
.ws6e{word-spacing:39.153018px;}
.ws6d{word-spacing:39.212794px;}
.ws38{word-spacing:65.389145px;}
.ws15{word-spacing:71.659469px;}
.ws77{word-spacing:71.672787px;}
.ws72{word-spacing:74.160062px;}
.ws74{word-spacing:76.162973px;}
.ws76{word-spacing:85.483708px;}
.ws75{word-spacing:101.912812px;}
.ws101{word-spacing:110.652388px;}
.wsc2{word-spacing:215.018361px;}
.wsaf{word-spacing:277.217345px;}
._3a{margin-left:-37.375675px;}
._36{margin-left:-18.196379px;}
._3{margin-left:-9.502901px;}
._2{margin-left:-7.643638px;}
._25{margin-left:-6.545460px;}
._0{margin-left:-5.499355px;}
._5{margin-left:-3.885414px;}
._13{margin-left:-2.468555px;}
._8{margin-left:-1.434614px;}
._34{width:1.767274px;}
._4{width:2.990231px;}
._33{width:4.843640px;}
._32{width:6.967879px;}
._c{width:9.982525px;}
._a{width:12.134447px;}
._12{width:13.516882px;}
._24{width:14.596376px;}
._15{width:15.709133px;}
._1{width:17.454475px;}
._f{width:18.654561px;}
._9{width:19.785724px;}
._b{width:20.981236px;}
._11{width:22.413411px;}
._22{width:23.432747px;}
._6{width:24.507996px;}
._10{width:26.443658px;}
._14{width:27.958001px;}
._7{width:28.991166px;}
._d{width:30.664883px;}
._1f{width:31.810936px;}
._17{width:33.774574px;}
._23{width:34.887302px;}
._21{width:36.065485px;}
._20{width:37.084783px;}
._16{width:38.225486px;}
._31{width:39.927306px;}
._26{width:42.699992px;}
._18{width:45.309905px;}
._37{width:53.973197px;}
._e{width:65.454600px;}
._35{width:71.731200px;}
._1e{width:85.614617px;}
._1c{width:86.989163px;}
._19{width:90.458257px;}
._1b{width:99.556447px;}
._1a{width:103.221904px;}
._1d{width:112.386717px;}
._29{width:119.061917px;}
._38{width:144.720121px;}
._39{width:207.063197px;}
._2e{width:215.083816px;}
._2b{width:247.811116px;}
._2d{width:307.898438px;}
._27{width:310.010100px;}
._2c{width:369.622126px;}
._2a{width:387.818505px;}
._30{width:395.436706px;}
._3b{width:454.432673px;}
._2f{width:641.774273px;}
._28{width:1110.026100px;}
.fc2{color:rgb(239,184,64);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(178,178,178);}
.fs8{font-size:29.887800px;}
.fs7{font-size:35.865600px;}
.fs4{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y2e{bottom:63.780000px;}
.y1f1{bottom:123.430500px;}
.y2d{bottom:127.558500px;}
.y124{bottom:129.454500px;}
.ydc{bottom:130.119000px;}
.y20a{bottom:132.720000px;}
.y103{bottom:133.272000px;}
.y226{bottom:133.704000px;}
.y96{bottom:139.458000px;}
.y134{bottom:143.295000px;}
.ybd{bottom:143.997000px;}
.y16b{bottom:144.042000px;}
.y79{bottom:144.187500px;}
.y1f0{bottom:145.725000px;}
.y142{bottom:147.522000px;}
.y5b{bottom:148.884000px;}
.y123{bottom:149.778000px;}
.ydb{bottom:150.442500px;}
.y2c{bottom:150.721500px;}
.y209{bottom:153.043500px;}
.y225{bottom:154.027500px;}
.y102{bottom:157.680000px;}
.y95{bottom:159.781500px;}
.ybc{bottom:160.435500px;}
.y133{bottom:163.618500px;}
.y16a{bottom:164.365500px;}
.y78{bottom:166.339500px;}
.y2b{bottom:167.160000px;}
.y141{bottom:167.847000px;}
.y5a{bottom:169.207500px;}
.y122{bottom:170.101500px;}
.y208{bottom:173.367000px;}
.y224{bottom:174.351000px;}
.y189{bottom:175.633500px;}
.ybb{bottom:176.874000px;}
.y1ef{bottom:177.567000px;}
.y101{bottom:178.003500px;}
.y94{bottom:180.105000px;}
.y2a{bottom:183.598500px;}
.y132{bottom:183.943500px;}
.yda{bottom:184.216500px;}
.y169{bottom:184.690500px;}
.y59{bottom:189.531000px;}
.y121{bottom:190.425000px;}
.y77{bottom:190.791000px;}
.y207{bottom:193.690500px;}
.y223{bottom:194.676000px;}
.y140{bottom:195.681000px;}
.y188{bottom:195.957000px;}
.y1ee{bottom:197.890500px;}
.y100{bottom:198.327000px;}
.yba{bottom:199.026000px;}
.y93{bottom:200.428500px;}
.y131{bottom:204.267000px;}
.yd9{bottom:204.540000px;}
.y232{bottom:206.257500px;}
.y58{bottom:209.856000px;}
.y120{bottom:210.750000px;}
.y76{bottom:211.116000px;}
.y168{bottom:211.738500px;}
.y29{bottom:213.564000px;}
.y206{bottom:214.014000px;}
.y222{bottom:214.999500px;}
.y1ed{bottom:218.214000px;}
.yff{bottom:218.650500px;}
.y92{bottom:220.752000px;}
.y12c{bottom:223.201500px;}
.yb9{bottom:223.380000px;}
.y187{bottom:223.792500px;}
.y130{bottom:224.590500px;}
.yd8{bottom:224.863500px;}
.y231{bottom:226.581000px;}
.y57{bottom:230.179500px;}
.y75{bottom:231.439500px;}
.y167{bottom:232.062000px;}
.y28{bottom:233.887500px;}
.y221{bottom:235.323000px;}
.y11f{bottom:238.584000px;}
.yfe{bottom:238.975500px;}
.y91{bottom:241.077000px;}
.y205{bottom:241.849500px;}
.y13f{bottom:242.890500px;}
.y12b{bottom:243.526500px;}
.yb8{bottom:243.703500px;}
.y12f{bottom:244.914000px;}
.yd7{bottom:245.187000px;}
.y1e9{bottom:249.945000px;}
.y186{bottom:251.626500px;}
.y166{bottom:252.385500px;}
.y1ec{bottom:252.501000px;}
.y1eb{bottom:253.309500px;}
.y27{bottom:254.211000px;}
.y220{bottom:255.646500px;}
.y56{bottom:258.013500px;}
.y74{bottom:259.273500px;}
.yfd{bottom:259.299000px;}
.y1de{bottom:260.689500px;}
.y22f{bottom:261.132000px;}
.y90{bottom:261.400500px;}
.y13e{bottom:263.214000px;}
.y1ea{bottom:263.560500px;}
.yb7{bottom:264.027000px;}
.y12e{bottom:265.237500px;}
.yd6{bottom:265.512000px;}
.y1dd{bottom:265.597500px;}
.y1dc{bottom:270.507000px;}
.y26{bottom:274.536000px;}
.y1db{bottom:275.416500px;}
.y21f{bottom:275.970000px;}
.y12a{bottom:278.076000px;}
.y22e{bottom:279.064500px;}
.y165{bottom:279.435000px;}
.yfc{bottom:279.622500px;}
.y1da{bottom:280.326000px;}
.y8f{bottom:281.724000px;}
.y13d{bottom:283.537500px;}
.y1e8{bottom:283.900500px;}
.yb6{bottom:284.350500px;}
.y1d9{bottom:285.234000px;}
.y12d{bottom:285.562500px;}
.y11e{bottom:285.793500px;}
.y55{bottom:285.849000px;}
.y204{bottom:289.059000px;}
.y1d8{bottom:290.143500px;}
.y1e4{bottom:290.293500px;}
.y1e7{bottom:293.391000px;}
.y1e6{bottom:293.658000px;}
.y25{bottom:294.859500px;}
.y21e{bottom:296.295000px;}
.y22d{bottom:296.997000px;}
.y185{bottom:298.836000px;}
.yd5{bottom:299.284500px;}
.y164{bottom:299.758500px;}
.yfb{bottom:299.946000px;}
.y1cf{bottom:300.780000px;}
.y8e{bottom:302.047500px;}
.y13c{bottom:303.862500px;}
.y1e5{bottom:303.909000px;}
.yb5{bottom:304.675500px;}
.y73{bottom:305.886000px;}
.y11d{bottom:306.117000px;}
.y22c{bottom:314.931000px;}
.y24{bottom:315.183000px;}
.y21d{bottom:316.618500px;}
.y184{bottom:319.159500px;}
.y1d7{bottom:319.599000px;}
.yd4{bottom:319.608000px;}
.y203{bottom:319.855500px;}
.y8d{bottom:322.371000px;}
.y13b{bottom:324.186000px;}
.y1e3{bottom:324.249000px;}
.y1d6{bottom:324.507000px;}
.yb4{bottom:324.999000px;}
.y72{bottom:326.209500px;}
.y11c{bottom:326.440500px;}
.y163{bottom:326.806500px;}
.yfa{bottom:327.781500px;}
.y1e0{bottom:327.868500px;}
.y1d5{bottom:329.416500px;}
.y200{bottom:329.485500px;}
.y1e2{bottom:331.233000px;}
.y230{bottom:332.863500px;}
.y54{bottom:333.058500px;}
.y1d4{bottom:334.326000px;}
.y1ff{bottom:334.395000px;}
.y23{bottom:335.506500px;}
.y21c{bottom:336.942000px;}
.y1d3{bottom:339.235500px;}
.y183{bottom:339.484500px;}
.yd3{bottom:339.933000px;}
.y1e1{bottom:341.484000px;}
.y8c{bottom:342.694500px;}
.y1d2{bottom:344.143500px;}
.y202{bottom:344.244000px;}
.y13a{bottom:344.509500px;}
.yb3{bottom:345.322500px;}
.y71{bottom:346.533000px;}
.y11b{bottom:346.765500px;}
.y162{bottom:347.131500px;}
.y1d1{bottom:349.053000px;}
.y53{bottom:353.382000px;}
.y22{bottom:355.830000px;}
.y21b{bottom:357.265500px;}
.y182{bottom:359.808000px;}
.yd2{bottom:360.256500px;}
.y1df{bottom:361.825500px;}
.y8b{bottom:363.019500px;}
.y1d0{bottom:363.780000px;}
.y1fe{bottom:363.849000px;}
.y139{bottom:364.833000px;}
.yb2{bottom:365.646000px;}
.y70{bottom:366.856500px;}
.y11a{bottom:367.089000px;}
.y201{bottom:368.632500px;}
.y1fd{bottom:368.758500px;}
.y52{bottom:373.705500px;}
.y161{bottom:374.179500px;}
.yf9{bottom:374.968500px;}
.y21{bottom:376.153500px;}
.y21a{bottom:377.589000px;}
.y181{bottom:380.131500px;}
.yd1{bottom:380.580000px;}
.y1ce{bottom:382.786500px;}
.y8a{bottom:383.343000px;}
.yb1{bottom:385.969500px;}
.y6f{bottom:387.181500px;}
.y1fc{bottom:387.387000px;}
.y119{bottom:387.412500px;}
.y51{bottom:394.029000px;}
.y160{bottom:394.503000px;}
.yf8{bottom:395.292000px;}
.y20{bottom:396.478500px;}
.y219{bottom:397.912500px;}
.y180{bottom:400.455000px;}
.yd0{bottom:400.903500px;}
.y89{bottom:403.666500px;}
.yb0{bottom:406.294500px;}
.y6e{bottom:407.505000px;}
.y1fb{bottom:407.710500px;}
.y118{bottom:407.736000px;}
.y1cc{bottom:411.891000px;}
.y50{bottom:414.352500px;}
.y15f{bottom:414.826500px;}
.yf7{bottom:415.615500px;}
.y1f{bottom:416.802000px;}
.y1cb{bottom:417.534000px;}
.y17f{bottom:420.778500px;}
.ycf{bottom:421.227000px;}
.y1cd{bottom:422.283000px;}
.y88{bottom:423.990000px;}
.y218{bottom:425.748000px;}
.y1c5{bottom:426.171000px;}
.yaf{bottom:426.618000px;}
.y138{bottom:427.516500px;}
.y6d{bottom:427.828500px;}
.y1fa{bottom:428.035500px;}
.y117{bottom:428.059500px;}
.y1c8{bottom:430.479000px;}
.y1c4{bottom:431.079000px;}
.y248{bottom:431.137500px;}
.y4f{bottom:434.677500px;}
.yf6{bottom:435.939000px;}
.y1c3{bottom:435.988500px;}
.y1c9{bottom:436.416000px;}
.y1e{bottom:437.125500px;}
.y1ca{bottom:439.185000px;}
.y1c2{bottom:440.898000px;}
.y17e{bottom:441.103500px;}
.yce{bottom:441.550500px;}
.y15e{bottom:441.876000px;}
.y87{bottom:444.313500px;}
.yae{bottom:446.941500px;}
.y6c{bottom:448.152000px;}
.y1f9{bottom:448.359000px;}
.y116{bottom:448.384500px;}
.y247{bottom:451.461000px;}
.y4e{bottom:455.001000px;}
.yf5{bottom:456.264000px;}
.y246{bottom:456.348000px;}
.y1d{bottom:457.449000px;}
.y17d{bottom:461.427000px;}
.y15d{bottom:462.199500px;}
.y1c7{bottom:462.754500px;}
.y86{bottom:464.638500px;}
.yad{bottom:467.265000px;}
.y6b{bottom:468.475500px;}
.y1f8{bottom:468.682500px;}
.y115{bottom:468.708000px;}
.y1c1{bottom:470.352000px;}
.y217{bottom:472.957500px;}
.y1c6{bottom:474.670500px;}
.y137{bottom:474.727500px;}
.y1c0{bottom:475.261500px;}
.y4d{bottom:475.324500px;}
.yf4{bottom:476.587500px;}
.y245{bottom:476.671500px;}
.y1c{bottom:477.772500px;}
.y1bf{bottom:480.171000px;}
.y17c{bottom:481.750500px;}
.y15c{bottom:482.523000px;}
.y85{bottom:484.962000px;}
.y1be{bottom:485.080500px;}
.yac{bottom:487.588500px;}
.y6a{bottom:488.800500px;}
.y1f7{bottom:489.006000px;}
.y114{bottom:489.031500px;}
.y216{bottom:493.281000px;}
.y136{bottom:495.051000px;}
.y4c{bottom:495.648000px;}
.yf3{bottom:496.911000px;}
.y244{bottom:496.995000px;}
.y1bd{bottom:499.807500px;}
.y17b{bottom:502.074000px;}
.y15b{bottom:502.846500px;}
.y1b{bottom:505.608000px;}
.yab{bottom:507.912000px;}
.y69{bottom:509.124000px;}
.y1f6{bottom:509.329500px;}
.y113{bottom:509.355000px;}
.y215{bottom:513.604500px;}
.y4b{bottom:515.971500px;}
.yf2{bottom:517.234500px;}
.y243{bottom:517.320000px;}
.y1bc{bottom:520.693500px;}
.y17a{bottom:522.397500px;}
.y135{bottom:522.885000px;}
.yaa{bottom:528.237000px;}
.y68{bottom:529.447500px;}
.y1f5{bottom:529.654500px;}
.y112{bottom:529.678500px;}
.y15a{bottom:529.896000px;}
.y1a{bottom:533.442000px;}
.y214{bottom:533.929500px;}
.y4a{bottom:536.296500px;}
.y84{bottom:537.385500px;}
.yf1{bottom:537.558000px;}
.y242{bottom:537.643500px;}
.y1bb{bottom:541.017000px;}
.y179{bottom:542.722500px;}
.ya9{bottom:548.560500px;}
.y67{bottom:549.771000px;}
.y111{bottom:550.003500px;}
.y159{bottom:550.219500px;}
.y213{bottom:554.253000px;}
.y49{bottom:556.620000px;}
.y1f4{bottom:557.488500px;}
.yf0{bottom:557.883000px;}
.y241{bottom:557.967000px;}
.y1ba{bottom:561.340500px;}
.y178{bottom:563.046000px;}
.ya8{bottom:568.884000px;}
.y66{bottom:570.094500px;}
.y110{bottom:570.327000px;}
.y158{bottom:570.543000px;}
.y83{bottom:571.935000px;}
.y212{bottom:574.576500px;}
.y48{bottom:576.943500px;}
.yef{bottom:578.206500px;}
.y240{bottom:578.290500px;}
.y1b9{bottom:581.665500px;}
.y177{bottom:583.369500px;}
.ya7{bottom:589.207500px;}
.y65{bottom:590.418000px;}
.y211{bottom:594.900000px;}
.y47{bottom:597.267000px;}
.y157{bottom:597.591000px;}
.yee{bottom:598.530000px;}
.y23f{bottom:598.614000px;}
.y176{bottom:603.693000px;}
.y19{bottom:608.212500px;}
.ya6{bottom:609.531000px;}
.y1f3{bottom:609.912000px;}
.y64{bottom:610.743000px;}
.y1b8{bottom:612.597000px;}
.y210{bottom:615.223500px;}
.y46{bottom:617.590500px;}
.y156{bottom:617.916000px;}
.yed{bottom:618.853500px;}
.y23e{bottom:618.939000px;}
.y10f{bottom:622.750500px;}
.y1b7{bottom:623.821500px;}
.y175{bottom:624.016500px;}
.y1b2{bottom:625.402500px;}
.y18{bottom:626.145000px;}
.ya5{bottom:629.856000px;}
.y1f2{bottom:630.235500px;}
.y1b1{bottom:630.312000px;}
.y63{bottom:631.066500px;}
.y1b0{bottom:635.221500px;}
.y20f{bottom:635.548500px;}
.y45{bottom:637.915500px;}
.y155{bottom:638.239500px;}
.yec{bottom:639.177000px;}
.y23d{bottom:639.262500px;}
.y1af{bottom:640.129500px;}
.y10e{bottom:643.074000px;}
.y174{bottom:644.341500px;}
.y1ae{bottom:645.039000px;}
.y1b6{bottom:649.437000px;}
.y1ad{bottom:649.948500px;}
.ya4{bottom:650.179500px;}
.y62{bottom:651.390000px;}
.y20e{bottom:655.872000px;}
.y44{bottom:658.239000px;}
.yeb{bottom:659.502000px;}
.y23c{bottom:659.586000px;}
.y1a6{bottom:660.585000px;}
.y1b5{bottom:660.663000px;}
.y17{bottom:662.010000px;}
.y173{bottom:664.665000px;}
.y154{bottom:665.287500px;}
.ya3{bottom:670.503000px;}
.y61{bottom:671.713500px;}
.y20d{bottom:676.195500px;}
.y10d{bottom:677.625000px;}
.y43{bottom:678.562500px;}
.y1ac{bottom:679.404000px;}
.yea{bottom:679.825500px;}
.y23b{bottom:679.909500px;}
.y16{bottom:679.942500px;}
.y10c{bottom:682.888500px;}
.y1ab{bottom:684.312000px;}
.y172{bottom:684.988500px;}
.y153{bottom:685.611000px;}
.y1b4{bottom:686.278500px;}
.y1aa{bottom:689.221500px;}
.ya2{bottom:690.826500px;}
.y60{bottom:692.037000px;}
.y1a9{bottom:694.131000px;}
.y1b3{bottom:697.503000px;}
.y15{bottom:697.876500px;}
.y42{bottom:698.886000px;}
.y1a8{bottom:699.040500px;}
.ye9{bottom:700.149000px;}
.y23a{bottom:700.233000px;}
.y10b{bottom:700.821000px;}
.y1a7{bottom:703.948500px;}
.y171{bottom:705.312000px;}
.y152{bottom:705.936000px;}
.ya1{bottom:711.150000px;}
.y5f{bottom:712.362000px;}
.y14{bottom:715.809000px;}
.y22b{bottom:718.542000px;}
.y41{bottom:719.209500px;}
.ye8{bottom:720.472500px;}
.y239{bottom:720.558000px;}
.y129{bottom:721.564500px;}
.y170{bottom:725.635500px;}
.y20c{bottom:728.619000px;}
.ya0{bottom:731.475000px;}
.y5e{bottom:732.685500px;}
.y151{bottom:732.984000px;}
.y13{bottom:733.741500px;}
.y1a5{bottom:735.601500px;}
.y22a{bottom:738.867000px;}
.ycd{bottom:739.534500px;}
.ye7{bottom:740.796000px;}
.y238{bottom:740.881500px;}
.y40{bottom:747.045000px;}
.y20b{bottom:748.942500px;}
.y12{bottom:751.674000px;}
.y9f{bottom:751.798500px;}
.y5d{bottom:753.009000px;}
.y150{bottom:753.307500px;}
.y16f{bottom:753.471000px;}
.y128{bottom:756.115500px;}
.ycc{bottom:759.858000px;}
.ye6{bottom:761.119500px;}
.y237{bottom:761.205000px;}
.y1a4{bottom:762.765000px;}
.y11{bottom:769.606500px;}
.y9e{bottom:772.122000px;}
.y5c{bottom:773.332500px;}
.y229{bottom:773.416500px;}
.y127{bottom:774.048000px;}
.ycb{bottom:780.181500px;}
.y14f{bottom:780.357000px;}
.ye5{bottom:781.444500px;}
.y236{bottom:781.528500px;}
.y1a3{bottom:785.059500px;}
.y10{bottom:787.539000px;}
.y126{bottom:791.980500px;}
.y9d{bottom:792.445500px;}
.y3f{bottom:793.656000px;}
.y228{bottom:797.866500px;}
.yca{bottom:800.505000px;}
.y14e{bottom:800.680500px;}
.ye4{bottom:801.768000px;}
.yf{bottom:805.473000px;}
.y125{bottom:809.913000px;}
.y9c{bottom:812.769000px;}
.y3e{bottom:813.981000px;}
.y227{bottom:815.800500px;}
.y1a2{bottom:815.992500px;}
.yc9{bottom:820.828500px;}
.y14d{bottom:821.004000px;}
.ye3{bottom:822.091500px;}
.ye{bottom:823.405500px;}
.y9b{bottom:833.094000px;}
.y235{bottom:833.952000px;}
.y3d{bottom:834.304500px;}
.yc8{bottom:841.153500px;}
.yd{bottom:841.338000px;}
.y14c{bottom:848.052000px;}
.y1a1{bottom:851.217000px;}
.y9a{bottom:853.417500px;}
.y234{bottom:854.275500px;}
.y3c{bottom:854.628000px;}
.y19d{bottom:858.471000px;}
.yc{bottom:859.270500px;}
.yc7{bottom:861.477000px;}
.ye2{bottom:862.870500px;}
.y19c{bottom:863.379000px;}
.y7a{bottom:868.209000px;}
.y19b{bottom:868.288500px;}
.y14b{bottom:868.377000px;}
.y99{bottom:873.741000px;}
.y3b{bottom:874.951500px;}
.y1a0{bottom:875.605500px;}
.yb{bottom:877.203000px;}
.y197{bottom:878.925000px;}
.yc6{bottom:881.800500px;}
.y14a{bottom:888.700500px;}
.y233{bottom:888.826500px;}
.ya{bottom:895.135500px;}
.y3a{bottom:895.275000px;}
.y19f{bottom:897.670500px;}
.ydf{bottom:897.682500px;}
.y19a{bottom:897.744000px;}
.y98{bottom:901.575000px;}
.yc5{bottom:902.124000px;}
.y199{bottom:902.652000px;}
.y198{bottom:907.561500px;}
.y9{bottom:913.069500px;}
.y39{bottom:915.600000px;}
.y149{bottom:915.748500px;}
.y82{bottom:918.417000px;}
.ydd{bottom:920.661000px;}
.y19e{bottom:921.477000px;}
.yc4{bottom:922.447500px;}
.y97{bottom:929.410500px;}
.y8{bottom:931.002000px;}
.y38{bottom:935.923500px;}
.y148{bottom:936.072000px;}
.y81{bottom:938.742000px;}
.y196{bottom:941.298000px;}
.yc3{bottom:942.771000px;}
.ye1{bottom:944.356500px;}
.y7{bottom:948.934500px;}
.y37{bottom:956.247000px;}
.y16e{bottom:956.397000px;}
.y80{bottom:959.065500px;}
.y195{bottom:962.964000px;}
.yc2{bottom:963.096000px;}
.y147{bottom:963.121500px;}
.ye0{bottom:964.680000px;}
.y10a{bottom:970.057500px;}
.y36{bottom:976.570500px;}
.yc1{bottom:983.419500px;}
.y146{bottom:983.445000px;}
.y6{bottom:983.551500px;}
.y194{bottom:985.258500px;}
.y7f{bottom:987.604500px;}
.y109{bottom:990.382500px;}
.y35{bottom:996.894000px;}
.y193{bottom:1001.601000px;}
.yc0{bottom:1003.743000px;}
.y16d{bottom:1003.768500px;}
.yde{bottom:1007.589000px;}
.y145{bottom:1010.493000px;}
.y108{bottom:1010.706000px;}
.y7e{bottom:1014.594000px;}
.y34{bottom:1017.219000px;}
.y192{bottom:1021.924500px;}
.ybf{bottom:1024.066500px;}
.y5{bottom:1025.982000px;}
.y144{bottom:1030.818000px;}
.y107{bottom:1031.029500px;}
.y7d{bottom:1032.526500px;}
.y33{bottom:1037.542500px;}
.y4{bottom:1046.673000px;}
.y7c{bottom:1050.459000px;}
.y143{bottom:1051.141500px;}
.y191{bottom:1051.494000px;}
.ybe{bottom:1051.902000px;}
.y32{bottom:1057.866000px;}
.y106{bottom:1059.568500px;}
.y18e{bottom:1061.124000px;}
.y18d{bottom:1066.032000px;}
.y7b{bottom:1068.393000px;}
.y16c{bottom:1071.465000px;}
.y190{bottom:1075.882500px;}
.y18a{bottom:1076.670000px;}
.y31{bottom:1078.189500px;}
.y3{bottom:1083.958500px;}
.y18c{bottom:1095.487500px;}
.y30{bottom:1098.513000px;}
.y18f{bottom:1100.271000px;}
.y18b{bottom:1100.397000px;}
.y105{bottom:1100.725500px;}
.y2{bottom:1116.835500px;}
.y2f{bottom:1118.836500px;}
.y104{bottom:1121.049000px;}
.y1{bottom:1205.152500px;}
.h14{height:2.618184px;}
.h26{height:14.260903px;}
.he{height:30.786975px;}
.h27{height:31.382100px;}
.h6{height:35.917794px;}
.h25{height:36.638184px;}
.h2{height:42.088093px;}
.h7{height:46.086686px;}
.hf{height:46.145493px;}
.hc{height:46.180463px;}
.h11{height:49.090950px;}
.h9{height:50.506050px;}
.h8{height:51.311282px;}
.hb{height:53.640975px;}
.h31{height:53.798400px;}
.h1f{height:54.867450px;}
.ha{height:56.186126px;}
.h23{height:58.957496px;}
.h20{height:59.613450px;}
.h19{height:59.619450px;}
.hd{height:64.797128px;}
.h10{height:64.803128px;}
.h32{height:65.632950px;}
.h33{height:66.358950px;}
.h5{height:67.083128px;}
.h22{height:71.662950px;}
.h3{height:72.728340px;}
.h24{height:78.206184px;}
.h18{height:78.758126px;}
.h2c{height:85.265700px;}
.h28{height:85.271700px;}
.h4{height:87.988050px;}
.h1b{height:90.425493px;}
.h30{height:91.043493px;}
.h21{height:92.605496px;}
.h15{height:93.988950px;}
.h17{height:97.844184px;}
.h1c{height:101.084126px;}
.h1d{height:101.090126px;}
.h12{height:101.987282px;}
.h1e{height:108.057450px;}
.h2a{height:127.683024px;}
.h2b{height:128.751024px;}
.h29{height:134.516100px;}
.h2f{height:138.268950px;}
.h2d{height:145.611024px;}
.h2e{height:148.845024px;}
.h13{height:156.434184px;}
.h16{height:176.072184px;}
.h1a{height:234.986184px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:63.780000px;}
.x36{left:85.039500px;}
.x9{left:127.558500px;}
.xa{left:128.680500px;}
.x1e{left:136.582500px;}
.xd{left:144.087000px;}
.x12{left:148.014000px;}
.x15{left:149.899500px;}
.x37{left:151.875000px;}
.xc{left:152.964000px;}
.x14{left:155.668500px;}
.x2{left:158.790000px;}
.x38{left:160.177500px;}
.x7{left:168.468000px;}
.x21{left:171.184500px;}
.x16{left:174.999000px;}
.x3b{left:180.403500px;}
.x8{left:190.884000px;}
.x11{left:202.482000px;}
.x2b{left:217.192500px;}
.x20{left:227.599500px;}
.x4{left:237.144000px;}
.x26{left:248.719500px;}
.x10{left:258.883500px;}
.x5{left:268.141500px;}
.x22{left:288.376500px;}
.x2c{left:294.850500px;}
.x1b{left:303.376500px;}
.x27{left:306.834000px;}
.x2d{left:309.396000px;}
.x24{left:321.367500px;}
.x39{left:324.096000px;}
.x25{left:327.243000px;}
.x3c{left:329.928000px;}
.x3{left:343.786500px;}
.x2e{left:348.462000px;}
.x40{left:350.794500px;}
.x2f{left:355.560000px;}
.x2a{left:359.218500px;}
.x3f{left:360.567000px;}
.x42{left:365.631000px;}
.x17{left:369.255000px;}
.x3e{left:374.329500px;}
.x3d{left:378.346500px;}
.x43{left:380.176500px;}
.x18{left:388.953000px;}
.x3a{left:395.142000px;}
.x28{left:396.339000px;}
.x30{left:409.978500px;}
.x6{left:416.010000px;}
.x23{left:424.146000px;}
.x1f{left:438.274500px;}
.xb{left:442.366500px;}
.x44{left:446.457000px;}
.x31{left:453.888000px;}
.x1d{left:459.216000px;}
.x1c{left:478.348500px;}
.x41{left:480.946500px;}
.x33{left:492.861000px;}
.x29{left:505.120500px;}
.x34{left:522.835500px;}
.xe{left:542.122500px;}
.xf{left:554.188500px;}
.x19{left:593.211000px;}
.x1a{left:601.456500px;}
.x32{left:620.800500px;}
.x35{left:652.837500px;}
.x13{left:712.477500px;}
@media print{
.vb{vertical-align:-64.581333pt;}
.v2a{vertical-align:-23.173333pt;}
.v5{vertical-align:-20.314667pt;}
.v3{vertical-align:-19.280000pt;}
.v1b{vertical-align:-13.136000pt;}
.v6{vertical-align:-7.973333pt;}
.v10{vertical-align:-5.904000pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:1.792000pt;}
.vf{vertical-align:11.338667pt;}
.v21{vertical-align:15.349333pt;}
.v15{vertical-align:16.890667pt;}
.v1f{vertical-align:19.280000pt;}
.v4{vertical-align:20.314667pt;}
.v2{vertical-align:23.141333pt;}
.v17{vertical-align:26.016000pt;}
.v20{vertical-align:28.480000pt;}
.v18{vertical-align:29.909333pt;}
.v28{vertical-align:31.349333pt;}
.v1{vertical-align:33.317333pt;}
.v1c{vertical-align:35.946667pt;}
.v1a{vertical-align:36.949333pt;}
.v9{vertical-align:39.909333pt;}
.vd{vertical-align:41.178667pt;}
.v12{vertical-align:43.056000pt;}
.v7{vertical-align:45.045333pt;}
.v16{vertical-align:47.125333pt;}
.v19{vertical-align:52.816000pt;}
.v14{vertical-align:64.170667pt;}
.v1e{vertical-align:72.394667pt;}
.v24{vertical-align:75.765333pt;}
.v29{vertical-align:79.269333pt;}
.vc{vertical-align:84.645333pt;}
.v13{vertical-align:90.181333pt;}
.v25{vertical-align:95.045333pt;}
.v1d{vertical-align:111.370667pt;}
.v22{vertical-align:112.320000pt;}
.v26{vertical-align:118.805333pt;}
.v23{vertical-align:127.306667pt;}
.v27{vertical-align:130.181333pt;}
.v8{vertical-align:136.725333pt;}
.va{vertical-align:154.181333pt;}
.v11{vertical-align:206.549333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4a{letter-spacing:0.000164pt;}
.ls95{letter-spacing:0.000267pt;}
.ls4d{letter-spacing:0.000438pt;}
.ls3c{letter-spacing:0.000456pt;}
.ls8e{letter-spacing:0.000576pt;}
.ls9b{letter-spacing:0.000749pt;}
.ls3d{letter-spacing:0.000881pt;}
.ls45{letter-spacing:0.000910pt;}
.ls47{letter-spacing:0.000928pt;}
.ls5f{letter-spacing:0.000933pt;}
.ls9f{letter-spacing:0.001077pt;}
.ls5c{letter-spacing:0.001701pt;}
.ls70{letter-spacing:0.001917pt;}
.ls54{letter-spacing:0.002373pt;}
.ls5b{letter-spacing:0.002783pt;}
.ls37{letter-spacing:0.003114pt;}
.ls59{letter-spacing:0.003286pt;}
.ls6d{letter-spacing:0.003370pt;}
.ls6e{letter-spacing:0.003664pt;}
.ls69{letter-spacing:0.003690pt;}
.ls41{letter-spacing:0.003856pt;}
.ls20{letter-spacing:0.003861pt;}
.lsa2{letter-spacing:0.004248pt;}
.ls80{letter-spacing:0.005187pt;}
.lsa3{letter-spacing:0.005771pt;}
.ls46{letter-spacing:0.006214pt;}
.lsc{letter-spacing:0.006581pt;}
.ls72{letter-spacing:0.008170pt;}
.ls8{letter-spacing:0.010948pt;}
.ls23{letter-spacing:0.011594pt;}
.ls63{letter-spacing:0.013159pt;}
.ls33{letter-spacing:0.015849pt;}
.ls8d{letter-spacing:0.017834pt;}
.ls30{letter-spacing:0.020569pt;}
.ls53{letter-spacing:0.021183pt;}
.ls27{letter-spacing:0.024259pt;}
.ls78{letter-spacing:0.025570pt;}
.ls9c{letter-spacing:0.025647pt;}
.ls5a{letter-spacing:0.026015pt;}
.ls57{letter-spacing:0.027507pt;}
.ls74{letter-spacing:0.028985pt;}
.ls11{letter-spacing:2.036365pt;}
.ls14{letter-spacing:2.094547pt;}
.ls81{letter-spacing:2.652911pt;}
.ls25{letter-spacing:2.653258pt;}
.ls6c{letter-spacing:2.653534pt;}
.ls60{letter-spacing:2.654270pt;}
.ls91{letter-spacing:2.654545pt;}
.ls76{letter-spacing:2.654692pt;}
.ls4{letter-spacing:2.655733pt;}
.lsad{letter-spacing:2.655975pt;}
.ls48{letter-spacing:2.656473pt;}
.ls24{letter-spacing:2.657146pt;}
.ls9{letter-spacing:2.658245pt;}
.ls3e{letter-spacing:2.658591pt;}
.ls61{letter-spacing:2.658868pt;}
.ls73{letter-spacing:2.659603pt;}
.ls75{letter-spacing:2.659828pt;}
.ls9d{letter-spacing:2.660777pt;}
.lsa9{letter-spacing:3.607276pt;}
.lsaa{letter-spacing:3.665458pt;}
.ls97{letter-spacing:6.004127pt;}
.ls82{letter-spacing:6.057261pt;}
.ls38{letter-spacing:6.341823pt;}
.lsa6{letter-spacing:6.370405pt;}
.ls7a{letter-spacing:6.370731pt;}
.ls3f{letter-spacing:6.374152pt;}
.lsa4{letter-spacing:6.375739pt;}
.ls7c{letter-spacing:6.376064pt;}
.ls86{letter-spacing:6.376161pt;}
.ls93{letter-spacing:6.388939pt;}
.ls50{letter-spacing:6.400005pt;}
.ls5d{letter-spacing:8.087279pt;}
.ls9a{letter-spacing:8.865109pt;}
.lsaf{letter-spacing:9.658190pt;}
.ls7d{letter-spacing:9.693072pt;}
.ls40{letter-spacing:9.696456pt;}
.ls6f{letter-spacing:9.697425pt;}
.ls35{letter-spacing:9.716372pt;}
.lsab{letter-spacing:11.054555pt;}
.ls1f{letter-spacing:11.229100pt;}
.ls7f{letter-spacing:11.795718pt;}
.ls9e{letter-spacing:11.808749pt;}
.ls13{letter-spacing:11.927283pt;}
.ls2{letter-spacing:11.955200pt;}
.ls39{letter-spacing:11.985465pt;}
.ls26{letter-spacing:12.625465pt;}
.ls3b{letter-spacing:12.916374pt;}
.ls15{letter-spacing:13.672739pt;}
.ls28{letter-spacing:14.080012pt;}
.ls1c{letter-spacing:14.312739pt;}
.ls96{letter-spacing:14.460911pt;}
.ls92{letter-spacing:14.463444pt;}
.ls87{letter-spacing:14.466906pt;}
.lsa0{letter-spacing:14.468777pt;}
.ls1d{letter-spacing:14.545467pt;}
.ls7{letter-spacing:14.614400pt;}
.ls8c{letter-spacing:14.718081pt;}
.ls8b{letter-spacing:14.771215pt;}
.ls68{letter-spacing:15.010922pt;}
.ls55{letter-spacing:15.586591pt;}
.ls42{letter-spacing:15.586856pt;}
.ls1{letter-spacing:15.936533pt;}
.lsac{letter-spacing:15.940267pt;}
.ls4f{letter-spacing:16.102671pt;}
.ls32{letter-spacing:16.116377pt;}
.ls1e{letter-spacing:16.174559pt;}
.ls62{letter-spacing:16.465468pt;}
.ls5e{letter-spacing:16.523650pt;}
.lsb{letter-spacing:16.737168pt;}
.ls2e{letter-spacing:16.930923pt;}
.lsae{letter-spacing:16.969200pt;}
.ls67{letter-spacing:17.163651pt;}
.ls6a{letter-spacing:17.203603pt;}
.ls66{letter-spacing:17.221833pt;}
.lsa7{letter-spacing:17.338196pt;}
.ls8a{letter-spacing:17.415578pt;}
.ls64{letter-spacing:17.656201pt;}
.ls65{letter-spacing:17.656936pt;}
.ls18{letter-spacing:17.687287pt;}
.ls17{letter-spacing:17.745469pt;}
.lsa8{letter-spacing:18.094561pt;}
.ls16{letter-spacing:18.152742pt;}
.ls85{letter-spacing:18.185682pt;}
.ls12{letter-spacing:18.210924pt;}
.ls71{letter-spacing:18.243828pt;}
.ls29{letter-spacing:18.327288pt;}
.ls1b{letter-spacing:18.676379pt;}
.ls52{letter-spacing:18.813258pt;}
.ls6b{letter-spacing:18.814270pt;}
.ls31{letter-spacing:18.818591pt;}
.ls2a{letter-spacing:18.850925pt;}
.ls7b{letter-spacing:19.725503pt;}
.ls79{letter-spacing:19.727386pt;}
.ls2d{letter-spacing:20.072744pt;}
.ls19{letter-spacing:20.654563pt;}
.ls1a{letter-spacing:20.712745pt;}
.ls83{letter-spacing:20.775342pt;}
.ls98{letter-spacing:21.112031pt;}
.ls8f{letter-spacing:21.138678pt;}
.ls84{letter-spacing:21.144012pt;}
.ls2c{letter-spacing:21.465971pt;}
.ls2b{letter-spacing:22.538400pt;}
.ls7e{letter-spacing:23.609490pt;}
.ls5{letter-spacing:24.378202pt;}
.ls10{letter-spacing:25.541839pt;}
.ls6{letter-spacing:26.065476pt;}
.ls3a{letter-spacing:27.262016pt;}
.lsf{letter-spacing:34.676393pt;}
.lsa{letter-spacing:34.855817pt;}
.ls43{letter-spacing:47.962144pt;}
.ls77{letter-spacing:48.892584pt;}
.lsa1{letter-spacing:53.133918pt;}
.ls90{letter-spacing:57.981494pt;}
.ls2f{letter-spacing:58.181867pt;}
.ls0{letter-spacing:61.103733pt;}
.ls4c{letter-spacing:62.008683pt;}
.ls44{letter-spacing:64.555485pt;}
.lsa5{letter-spacing:67.898238pt;}
.lsd{letter-spacing:68.642591pt;}
.ls34{letter-spacing:69.527331pt;}
.ls56{letter-spacing:72.388811pt;}
.ls4e{letter-spacing:72.402809pt;}
.ls36{letter-spacing:74.356426pt;}
.lse{letter-spacing:74.466591pt;}
.ls58{letter-spacing:83.432797pt;}
.ls88{letter-spacing:86.853569pt;}
.ls99{letter-spacing:109.581918pt;}
.ls51{letter-spacing:133.934657pt;}
.ls21{letter-spacing:319.239925pt;}
.ls49{letter-spacing:376.340025pt;}
.ls4b{letter-spacing:437.812025pt;}
.ls94{letter-spacing:774.402827pt;}
.ls89{letter-spacing:898.344161pt;}
.ls22{letter-spacing:1044.914591pt;}
.ws73{word-spacing:-37.899668pt;}
.ws6f{word-spacing:-34.611401pt;}
.wsf2{word-spacing:-32.337481pt;}
.ws104{word-spacing:-30.005958pt;}
.wsf6{word-spacing:-29.521250pt;}
.wsb5{word-spacing:-28.241478pt;}
.wsb1{word-spacing:-28.183296pt;}
.wsfc{word-spacing:-28.118362pt;}
.wsfd{word-spacing:-25.791179pt;}
.wsb0{word-spacing:-21.725109pt;}
.ws103{word-spacing:-18.816016pt;}
.wsba{word-spacing:-17.710560pt;}
.ws106{word-spacing:-16.162923pt;}
.wsfe{word-spacing:-13.653293pt;}
.wsf3{word-spacing:-6.446551pt;}
.wsfa{word-spacing:-5.940366pt;}
.wsf9{word-spacing:-5.887232pt;}
.wsfb{word-spacing:-5.167043pt;}
.wsf4{word-spacing:-3.246548pt;}
.wsef{word-spacing:-1.966547pt;}
.wsf8{word-spacing:-1.617456pt;}
.ws69{word-spacing:-0.802910pt;}
.ws2{word-spacing:-0.091815pt;}
.ws3{word-spacing:-0.063761pt;}
.ws4f{word-spacing:-0.058182pt;}
.ws25{word-spacing:-0.047821pt;}
.wsac{word-spacing:-0.046545pt;}
.ws4e{word-spacing:-0.042507pt;}
.ws24{word-spacing:-0.031881pt;}
.wsf7{word-spacing:-0.019999pt;}
.wsf5{word-spacing:-0.009384pt;}
.ws28{word-spacing:0.000000pt;}
.wsf0{word-spacing:0.006870pt;}
.ws82{word-spacing:0.011636pt;}
.ws6a{word-spacing:1.117092pt;}
.ws7e{word-spacing:2.978912pt;}
.ws7d{word-spacing:3.851640pt;}
.ws100{word-spacing:5.422550pt;}
.ws14{word-spacing:8.820222pt;}
.wse{word-spacing:9.564096pt;}
.wse6{word-spacing:9.600008pt;}
.wsd{word-spacing:9.617230pt;}
.ws9d{word-spacing:9.658190pt;}
.ws113{word-spacing:9.670364pt;}
.ws83{word-spacing:9.774554pt;}
.wse7{word-spacing:9.832735pt;}
.ws96{word-spacing:9.890917pt;}
.wsea{word-spacing:9.949099pt;}
.wsc6{word-spacing:10.007281pt;}
.wse4{word-spacing:10.065463pt;}
.ws8b{word-spacing:10.123645pt;}
.wsd5{word-spacing:10.181827pt;}
.wsb2{word-spacing:10.298190pt;}
.ws9b{word-spacing:10.377114pt;}
.wse2{word-spacing:10.589100pt;}
.ws81{word-spacing:10.647282pt;}
.ws3c{word-spacing:10.705463pt;}
.ws80{word-spacing:10.763645pt;}
.wsca{word-spacing:10.880009pt;}
.ws71{word-spacing:10.892443pt;}
.wsad{word-spacing:10.938191pt;}
.ws99{word-spacing:10.950963pt;}
.wsa6{word-spacing:10.996373pt;}
.wse9{word-spacing:11.054555pt;}
.ws102{word-spacing:11.112737pt;}
.ws6{word-spacing:11.158112pt;}
.ws2d{word-spacing:11.170918pt;}
.ws4a{word-spacing:11.229100pt;}
.wsab{word-spacing:11.287282pt;}
.ws5c{word-spacing:11.345464pt;}
.ws40{word-spacing:11.403646pt;}
.ws8a{word-spacing:11.461828pt;}
.ws67{word-spacing:11.520010pt;}
.ws10{word-spacing:11.530049pt;}
.wsbe{word-spacing:11.578191pt;}
.ws8{word-spacing:11.583183pt;}
.ws43{word-spacing:11.636373pt;}
.wse3{word-spacing:11.752737pt;}
.ws10b{word-spacing:11.810919pt;}
.wsa9{word-spacing:11.869101pt;}
.wsce{word-spacing:11.901986pt;}
.ws27{word-spacing:11.907379pt;}
.wsf1{word-spacing:11.927283pt;}
.wsd4{word-spacing:11.985465pt;}
.ws65{word-spacing:12.043646pt;}
.ws19{word-spacing:12.160010pt;}
.ws64{word-spacing:12.218192pt;}
.ws35{word-spacing:12.276374pt;}
.wsb9{word-spacing:12.334556pt;}
.wsae{word-spacing:12.392738pt;}
.ws7{word-spacing:12.433325pt;}
.ws2e{word-spacing:12.450919pt;}
.ws10a{word-spacing:12.509101pt;}
.wsb4{word-spacing:12.567283pt;}
.ws61{word-spacing:12.683647pt;}
.ws79{word-spacing:12.800011pt;}
.ws62{word-spacing:12.916374pt;}
.wsbc{word-spacing:12.974556pt;}
.wsa4{word-spacing:13.032738pt;}
.ws63{word-spacing:13.090920pt;}
.ws21{word-spacing:13.149102pt;}
.ws52{word-spacing:13.207284pt;}
.ws0{word-spacing:13.230333pt;}
.wsaa{word-spacing:13.265466pt;}
.wsb3{word-spacing:13.323647pt;}
.ws9c{word-spacing:13.342003pt;}
.ws41{word-spacing:13.381829pt;}
.ws1c{word-spacing:13.440011pt;}
.ws34{word-spacing:13.498193pt;}
.ws13{word-spacing:13.549136pt;}
.ws91{word-spacing:13.556375pt;}
.ws9e{word-spacing:13.614557pt;}
.ws112{word-spacing:13.655404pt;}
.ws92{word-spacing:13.672739pt;}
.wscc{word-spacing:13.708538pt;}
.ws20{word-spacing:13.730921pt;}
.ws30{word-spacing:13.789102pt;}
.wscb{word-spacing:13.814805pt;}
.ws1d{word-spacing:13.847284pt;}
.wsc{word-spacing:13.867939pt;}
.wsd3{word-spacing:13.905466pt;}
.ws97{word-spacing:13.963648pt;}
.wsb6{word-spacing:14.021830pt;}
.ws49{word-spacing:14.079393pt;}
.ws48{word-spacing:14.079662pt;}
.wsb7{word-spacing:14.080012pt;}
.ws11{word-spacing:14.080475pt;}
.ws42{word-spacing:14.138194pt;}
.ws3f{word-spacing:14.196375pt;}
.wsf{word-spacing:14.239876pt;}
.ws78{word-spacing:14.254557pt;}
.ws37{word-spacing:14.312739pt;}
.ws111{word-spacing:14.399278pt;}
.ws1b{word-spacing:14.429103pt;}
.ws16{word-spacing:14.487285pt;}
.ws2c{word-spacing:14.545467pt;}
.ws45{word-spacing:14.603649pt;}
.ws36{word-spacing:14.661830pt;}
.wsde{word-spacing:14.720012pt;}
.wsc0{word-spacing:14.778194pt;}
.wscd{word-spacing:14.824349pt;}
.ws107{word-spacing:14.836376pt;}
.ws18{word-spacing:14.894558pt;}
.ws87{word-spacing:14.952740pt;}
.ws108{word-spacing:15.010922pt;}
.ws8c{word-spacing:15.069103pt;}
.wsb8{word-spacing:15.127285pt;}
.ws1a{word-spacing:15.185467pt;}
.ws2f{word-spacing:15.243649pt;}
.ws9a{word-spacing:15.254835pt;}
.ws68{word-spacing:15.301831pt;}
.ws26{word-spacing:15.350477pt;}
.ws3d{word-spacing:15.360013pt;}
.ws54{word-spacing:15.418195pt;}
.wsc3{word-spacing:15.461955pt;}
.ws56{word-spacing:15.476377pt;}
.wsd0{word-spacing:15.534558pt;}
.ws59{word-spacing:15.592740pt;}
.ws3e{word-spacing:15.650922pt;}
.ws23{word-spacing:15.685222pt;}
.wsd2{word-spacing:15.709104pt;}
.wsb{word-spacing:15.727625pt;}
.ws7b{word-spacing:15.767286pt;}
.ws53{word-spacing:15.825468pt;}
.ws5{word-spacing:15.876506pt;}
.ws58{word-spacing:15.883650pt;}
.ws7f{word-spacing:15.941831pt;}
.ws3b{word-spacing:16.000013pt;}
.ws60{word-spacing:16.058195pt;}
.wsa3{word-spacing:16.116377pt;}
.ws4b{word-spacing:16.174559pt;}
.ws5a{word-spacing:16.232741pt;}
.ws2a{word-spacing:16.290923pt;}
.ws47{word-spacing:16.349105pt;}
.ws9{word-spacing:16.365231pt;}
.ws4d{word-spacing:16.407286pt;}
.wse1{word-spacing:16.465468pt;}
.ws9f{word-spacing:16.523650pt;}
.ws46{word-spacing:16.581832pt;}
.wsa{word-spacing:16.630900pt;}
.ws44{word-spacing:16.640014pt;}
.ws110{word-spacing:16.684034pt;}
.ws7a{word-spacing:16.698196pt;}
.ws1e{word-spacing:16.756378pt;}
.ws51{word-spacing:16.814559pt;}
.wsbb{word-spacing:16.872741pt;}
.wsff{word-spacing:16.930923pt;}
.ws114{word-spacing:16.989105pt;}
.wsda{word-spacing:17.047287pt;}
.ws33{word-spacing:17.105469pt;}
.ws12{word-spacing:17.109105pt;}
.ws5f{word-spacing:17.163651pt;}
.ws29{word-spacing:17.221833pt;}
.wsdc{word-spacing:17.280014pt;}
.ws10d{word-spacing:17.321641pt;}
.ws89{word-spacing:17.338196pt;}
.wsc1{word-spacing:17.396378pt;}
.ws17{word-spacing:17.454560pt;}
.wsd1{word-spacing:17.512742pt;}
.ws1f{word-spacing:17.570924pt;}
.ws66{word-spacing:17.629106pt;}
.wsa1{word-spacing:17.687287pt;}
.ws6c{word-spacing:17.741517pt;}
.ws8d{word-spacing:17.745469pt;}
.ws6b{word-spacing:17.789338pt;}
.ws8e{word-spacing:17.803651pt;}
.ws57{word-spacing:17.920015pt;}
.ws5d{word-spacing:18.036379pt;}
.ws88{word-spacing:18.094561pt;}
.ws85{word-spacing:18.152742pt;}
.ws4c{word-spacing:18.210924pt;}
.ws3a{word-spacing:18.269106pt;}
.ws22{word-spacing:18.327288pt;}
.wsdd{word-spacing:18.385470pt;}
.ws98{word-spacing:18.443652pt;}
.wsd8{word-spacing:18.501834pt;}
.ws10c{word-spacing:18.543719pt;}
.wsa8{word-spacing:18.560015pt;}
.ws90{word-spacing:18.618197pt;}
.ws8f{word-spacing:18.676379pt;}
.wsd9{word-spacing:18.734561pt;}
.ws32{word-spacing:18.792743pt;}
.ws5e{word-spacing:18.850925pt;}
.wsd7{word-spacing:18.967289pt;}
.ws94{word-spacing:19.083652pt;}
.ws31{word-spacing:19.141834pt;}
.wscf{word-spacing:19.287594pt;}
.wsc5{word-spacing:19.316380pt;}
.wsee{word-spacing:19.374562pt;}
.wse8{word-spacing:19.432743pt;}
.wsdf{word-spacing:19.490925pt;}
.ws84{word-spacing:19.549107pt;}
.wsa0{word-spacing:19.607289pt;}
.wsbf{word-spacing:19.665471pt;}
.wse5{word-spacing:19.840017pt;}
.ws109{word-spacing:19.898198pt;}
.ws7c{word-spacing:19.956380pt;}
.wsc8{word-spacing:20.014562pt;}
.wsc9{word-spacing:20.072744pt;}
.ws2b{word-spacing:20.130926pt;}
.ws93{word-spacing:20.247290pt;}
.ws50{word-spacing:20.266059pt;}
.ws39{word-spacing:20.363653pt;}
.wsc4{word-spacing:20.509673pt;}
.wsa7{word-spacing:20.596381pt;}
.wsdb{word-spacing:20.654563pt;}
.wsc7{word-spacing:20.712745pt;}
.wsbd{word-spacing:21.120018pt;}
.ws55{word-spacing:21.178199pt;}
.ws105{word-spacing:21.294563pt;}
.wse0{word-spacing:21.410927pt;}
.ws95{word-spacing:21.469109pt;}
.wsa2{word-spacing:21.643654pt;}
.ws86{word-spacing:21.701836pt;}
.wsd6{word-spacing:21.760018pt;}
.ws5b{word-spacing:22.167291pt;}
.wsec{word-spacing:22.749110pt;}
.wsed{word-spacing:22.807292pt;}
.ws1{word-spacing:22.862051pt;}
.wseb{word-spacing:22.865474pt;}
.ws10f{word-spacing:24.175909pt;}
.ws10e{word-spacing:24.229043pt;}
.ws4{word-spacing:25.549232pt;}
.ws70{word-spacing:27.470209pt;}
.wsa5{word-spacing:29.032751pt;}
.ws6e{word-spacing:34.802683pt;}
.ws6d{word-spacing:34.855817pt;}
.ws38{word-spacing:58.123685pt;}
.ws15{word-spacing:63.697306pt;}
.ws77{word-spacing:63.709144pt;}
.ws72{word-spacing:65.920055pt;}
.ws74{word-spacing:67.700420pt;}
.ws76{word-spacing:75.985518pt;}
.ws75{word-spacing:90.589166pt;}
.ws101{word-spacing:98.357678pt;}
.wsc2{word-spacing:191.127432pt;}
.wsaf{word-spacing:246.415418pt;}
._3a{margin-left:-33.222822pt;}
._36{margin-left:-16.174559pt;}
._3{margin-left:-8.447023pt;}
._2{margin-left:-6.794345pt;}
._25{margin-left:-5.818187pt;}
._0{margin-left:-4.888316pt;}
._5{margin-left:-3.453701pt;}
._13{margin-left:-2.194271pt;}
._8{margin-left:-1.275213pt;}
._34{width:1.570910pt;}
._4{width:2.657983pt;}
._33{width:4.305458pt;}
._32{width:6.193670pt;}
._c{width:8.873356pt;}
._a{width:10.786175pt;}
._12{width:12.015006pt;}
._24{width:12.974556pt;}
._15{width:13.963674pt;}
._1{width:15.515089pt;}
._f{width:16.581832pt;}
._9{width:17.587310pt;}
._b{width:18.649987pt;}
._11{width:19.923032pt;}
._22{width:20.829108pt;}
._6{width:21.784885pt;}
._10{width:23.505474pt;}
._14{width:24.851556pt;}
._7{width:25.769925pt;}
._d{width:27.257674pt;}
._1f{width:28.276387pt;}
._17{width:30.021843pt;}
._23{width:31.010935pt;}
._21{width:32.058209pt;}
._20{width:32.964251pt;}
._16{width:33.978210pt;}
._31{width:35.490939pt;}
._26{width:37.955548pt;}
._18{width:40.275471pt;}
._37{width:47.976175pt;}
._e{width:58.181867pt;}
._35{width:63.761067pt;}
._1e{width:76.101882pt;}
._1c{width:77.323701pt;}
._19{width:80.407340pt;}
._1b{width:88.494619pt;}
._1a{width:91.752804pt;}
._1d{width:99.899304pt;}
._29{width:105.832815pt;}
._38{width:128.640107pt;}
._39{width:184.056175pt;}
._2e{width:191.185614pt;}
._2b{width:220.276547pt;}
._2d{width:273.687501pt;}
._27{width:275.564533pt;}
._2c{width:328.553001pt;}
._2a{width:344.727560pt;}
._30{width:351.499295pt;}
._3b{width:403.940153pt;}
._2f{width:570.466020pt;}
._28{width:986.689867pt;}
.fs8{font-size:26.566933pt;}
.fs7{font-size:31.880533pt;}
.fs4{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:56.693333pt;}
.y1f1{bottom:109.716000pt;}
.y2d{bottom:113.385333pt;}
.y124{bottom:115.070667pt;}
.ydc{bottom:115.661333pt;}
.y20a{bottom:117.973333pt;}
.y103{bottom:118.464000pt;}
.y226{bottom:118.848000pt;}
.y96{bottom:123.962667pt;}
.y134{bottom:127.373333pt;}
.ybd{bottom:127.997333pt;}
.y16b{bottom:128.037333pt;}
.y79{bottom:128.166667pt;}
.y1f0{bottom:129.533333pt;}
.y142{bottom:131.130667pt;}
.y5b{bottom:132.341333pt;}
.y123{bottom:133.136000pt;}
.ydb{bottom:133.726667pt;}
.y2c{bottom:133.974667pt;}
.y209{bottom:136.038667pt;}
.y225{bottom:136.913333pt;}
.y102{bottom:140.160000pt;}
.y95{bottom:142.028000pt;}
.ybc{bottom:142.609333pt;}
.y133{bottom:145.438667pt;}
.y16a{bottom:146.102667pt;}
.y78{bottom:147.857333pt;}
.y2b{bottom:148.586667pt;}
.y141{bottom:149.197333pt;}
.y5a{bottom:150.406667pt;}
.y122{bottom:151.201333pt;}
.y208{bottom:154.104000pt;}
.y224{bottom:154.978667pt;}
.y189{bottom:156.118667pt;}
.ybb{bottom:157.221333pt;}
.y1ef{bottom:157.837333pt;}
.y101{bottom:158.225333pt;}
.y94{bottom:160.093333pt;}
.y2a{bottom:163.198667pt;}
.y132{bottom:163.505333pt;}
.yda{bottom:163.748000pt;}
.y169{bottom:164.169333pt;}
.y59{bottom:168.472000pt;}
.y121{bottom:169.266667pt;}
.y77{bottom:169.592000pt;}
.y207{bottom:172.169333pt;}
.y223{bottom:173.045333pt;}
.y140{bottom:173.938667pt;}
.y188{bottom:174.184000pt;}
.y1ee{bottom:175.902667pt;}
.y100{bottom:176.290667pt;}
.yba{bottom:176.912000pt;}
.y93{bottom:178.158667pt;}
.y131{bottom:181.570667pt;}
.yd9{bottom:181.813333pt;}
.y232{bottom:183.340000pt;}
.y58{bottom:186.538667pt;}
.y120{bottom:187.333333pt;}
.y76{bottom:187.658667pt;}
.y168{bottom:188.212000pt;}
.y29{bottom:189.834667pt;}
.y206{bottom:190.234667pt;}
.y222{bottom:191.110667pt;}
.y1ed{bottom:193.968000pt;}
.yff{bottom:194.356000pt;}
.y92{bottom:196.224000pt;}
.y12c{bottom:198.401333pt;}
.yb9{bottom:198.560000pt;}
.y187{bottom:198.926667pt;}
.y130{bottom:199.636000pt;}
.yd8{bottom:199.878667pt;}
.y231{bottom:201.405333pt;}
.y57{bottom:204.604000pt;}
.y75{bottom:205.724000pt;}
.y167{bottom:206.277333pt;}
.y28{bottom:207.900000pt;}
.y221{bottom:209.176000pt;}
.y11f{bottom:212.074667pt;}
.yfe{bottom:212.422667pt;}
.y91{bottom:214.290667pt;}
.y205{bottom:214.977333pt;}
.y13f{bottom:215.902667pt;}
.y12b{bottom:216.468000pt;}
.yb8{bottom:216.625333pt;}
.y12f{bottom:217.701333pt;}
.yd7{bottom:217.944000pt;}
.y1e9{bottom:222.173333pt;}
.y186{bottom:223.668000pt;}
.y166{bottom:224.342667pt;}
.y1ec{bottom:224.445333pt;}
.y1eb{bottom:225.164000pt;}
.y27{bottom:225.965333pt;}
.y220{bottom:227.241333pt;}
.y56{bottom:229.345333pt;}
.y74{bottom:230.465333pt;}
.yfd{bottom:230.488000pt;}
.y1de{bottom:231.724000pt;}
.y22f{bottom:232.117333pt;}
.y90{bottom:232.356000pt;}
.y13e{bottom:233.968000pt;}
.y1ea{bottom:234.276000pt;}
.yb7{bottom:234.690667pt;}
.y12e{bottom:235.766667pt;}
.yd6{bottom:236.010667pt;}
.y1dd{bottom:236.086667pt;}
.y1dc{bottom:240.450667pt;}
.y26{bottom:244.032000pt;}
.y1db{bottom:244.814667pt;}
.y21f{bottom:245.306667pt;}
.y12a{bottom:247.178667pt;}
.y22e{bottom:248.057333pt;}
.y165{bottom:248.386667pt;}
.yfc{bottom:248.553333pt;}
.y1da{bottom:249.178667pt;}
.y8f{bottom:250.421333pt;}
.y13d{bottom:252.033333pt;}
.y1e8{bottom:252.356000pt;}
.yb6{bottom:252.756000pt;}
.y1d9{bottom:253.541333pt;}
.y12d{bottom:253.833333pt;}
.y11e{bottom:254.038667pt;}
.y55{bottom:254.088000pt;}
.y204{bottom:256.941333pt;}
.y1d8{bottom:257.905333pt;}
.y1e4{bottom:258.038667pt;}
.y1e7{bottom:260.792000pt;}
.y1e6{bottom:261.029333pt;}
.y25{bottom:262.097333pt;}
.y21e{bottom:263.373333pt;}
.y22d{bottom:263.997333pt;}
.y185{bottom:265.632000pt;}
.yd5{bottom:266.030667pt;}
.y164{bottom:266.452000pt;}
.yfb{bottom:266.618667pt;}
.y1cf{bottom:267.360000pt;}
.y8e{bottom:268.486667pt;}
.y13c{bottom:270.100000pt;}
.y1e5{bottom:270.141333pt;}
.yb5{bottom:270.822667pt;}
.y73{bottom:271.898667pt;}
.y11d{bottom:272.104000pt;}
.y22c{bottom:279.938667pt;}
.y24{bottom:280.162667pt;}
.y21d{bottom:281.438667pt;}
.y184{bottom:283.697333pt;}
.y1d7{bottom:284.088000pt;}
.yd4{bottom:284.096000pt;}
.y203{bottom:284.316000pt;}
.y8d{bottom:286.552000pt;}
.y13b{bottom:288.165333pt;}
.y1e3{bottom:288.221333pt;}
.y1d6{bottom:288.450667pt;}
.yb4{bottom:288.888000pt;}
.y72{bottom:289.964000pt;}
.y11c{bottom:290.169333pt;}
.y163{bottom:290.494667pt;}
.yfa{bottom:291.361333pt;}
.y1e0{bottom:291.438667pt;}
.y1d5{bottom:292.814667pt;}
.y200{bottom:292.876000pt;}
.y1e2{bottom:294.429333pt;}
.y230{bottom:295.878667pt;}
.y54{bottom:296.052000pt;}
.y1d4{bottom:297.178667pt;}
.y1ff{bottom:297.240000pt;}
.y23{bottom:298.228000pt;}
.y21c{bottom:299.504000pt;}
.y1d3{bottom:301.542667pt;}
.y183{bottom:301.764000pt;}
.yd3{bottom:302.162667pt;}
.y1e1{bottom:303.541333pt;}
.y8c{bottom:304.617333pt;}
.y1d2{bottom:305.905333pt;}
.y202{bottom:305.994667pt;}
.y13a{bottom:306.230667pt;}
.yb3{bottom:306.953333pt;}
.y71{bottom:308.029333pt;}
.y11b{bottom:308.236000pt;}
.y162{bottom:308.561333pt;}
.y1d1{bottom:310.269333pt;}
.y53{bottom:314.117333pt;}
.y22{bottom:316.293333pt;}
.y21b{bottom:317.569333pt;}
.y182{bottom:319.829333pt;}
.yd2{bottom:320.228000pt;}
.y1df{bottom:321.622667pt;}
.y8b{bottom:322.684000pt;}
.y1d0{bottom:323.360000pt;}
.y1fe{bottom:323.421333pt;}
.y139{bottom:324.296000pt;}
.yb2{bottom:325.018667pt;}
.y70{bottom:326.094667pt;}
.y11a{bottom:326.301333pt;}
.y201{bottom:327.673333pt;}
.y1fd{bottom:327.785333pt;}
.y52{bottom:332.182667pt;}
.y161{bottom:332.604000pt;}
.yf9{bottom:333.305333pt;}
.y21{bottom:334.358667pt;}
.y21a{bottom:335.634667pt;}
.y181{bottom:337.894667pt;}
.yd1{bottom:338.293333pt;}
.y1ce{bottom:340.254667pt;}
.y8a{bottom:340.749333pt;}
.yb1{bottom:343.084000pt;}
.y6f{bottom:344.161333pt;}
.y1fc{bottom:344.344000pt;}
.y119{bottom:344.366667pt;}
.y51{bottom:350.248000pt;}
.y160{bottom:350.669333pt;}
.yf8{bottom:351.370667pt;}
.y20{bottom:352.425333pt;}
.y219{bottom:353.700000pt;}
.y180{bottom:355.960000pt;}
.yd0{bottom:356.358667pt;}
.y89{bottom:358.814667pt;}
.yb0{bottom:361.150667pt;}
.y6e{bottom:362.226667pt;}
.y1fb{bottom:362.409333pt;}
.y118{bottom:362.432000pt;}
.y1cc{bottom:366.125333pt;}
.y50{bottom:368.313333pt;}
.y15f{bottom:368.734667pt;}
.yf7{bottom:369.436000pt;}
.y1f{bottom:370.490667pt;}
.y1cb{bottom:371.141333pt;}
.y17f{bottom:374.025333pt;}
.ycf{bottom:374.424000pt;}
.y1cd{bottom:375.362667pt;}
.y88{bottom:376.880000pt;}
.y218{bottom:378.442667pt;}
.y1c5{bottom:378.818667pt;}
.yaf{bottom:379.216000pt;}
.y138{bottom:380.014667pt;}
.y6d{bottom:380.292000pt;}
.y1fa{bottom:380.476000pt;}
.y117{bottom:380.497333pt;}
.y1c8{bottom:382.648000pt;}
.y1c4{bottom:383.181333pt;}
.y248{bottom:383.233333pt;}
.y4f{bottom:386.380000pt;}
.yf6{bottom:387.501333pt;}
.y1c3{bottom:387.545333pt;}
.y1c9{bottom:387.925333pt;}
.y1e{bottom:388.556000pt;}
.y1ca{bottom:390.386667pt;}
.y1c2{bottom:391.909333pt;}
.y17e{bottom:392.092000pt;}
.yce{bottom:392.489333pt;}
.y15e{bottom:392.778667pt;}
.y87{bottom:394.945333pt;}
.yae{bottom:397.281333pt;}
.y6c{bottom:398.357333pt;}
.y1f9{bottom:398.541333pt;}
.y116{bottom:398.564000pt;}
.y247{bottom:401.298667pt;}
.y4e{bottom:404.445333pt;}
.yf5{bottom:405.568000pt;}
.y246{bottom:405.642667pt;}
.y1d{bottom:406.621333pt;}
.y17d{bottom:410.157333pt;}
.y15d{bottom:410.844000pt;}
.y1c7{bottom:411.337333pt;}
.y86{bottom:413.012000pt;}
.yad{bottom:415.346667pt;}
.y6b{bottom:416.422667pt;}
.y1f8{bottom:416.606667pt;}
.y115{bottom:416.629333pt;}
.y1c1{bottom:418.090667pt;}
.y217{bottom:420.406667pt;}
.y1c6{bottom:421.929333pt;}
.y137{bottom:421.980000pt;}
.y1c0{bottom:422.454667pt;}
.y4d{bottom:422.510667pt;}
.yf4{bottom:423.633333pt;}
.y245{bottom:423.708000pt;}
.y1c{bottom:424.686667pt;}
.y1bf{bottom:426.818667pt;}
.y17c{bottom:428.222667pt;}
.y15c{bottom:428.909333pt;}
.y85{bottom:431.077333pt;}
.y1be{bottom:431.182667pt;}
.yac{bottom:433.412000pt;}
.y6a{bottom:434.489333pt;}
.y1f7{bottom:434.672000pt;}
.y114{bottom:434.694667pt;}
.y216{bottom:438.472000pt;}
.y136{bottom:440.045333pt;}
.y4c{bottom:440.576000pt;}
.yf3{bottom:441.698667pt;}
.y244{bottom:441.773333pt;}
.y1bd{bottom:444.273333pt;}
.y17b{bottom:446.288000pt;}
.y15b{bottom:446.974667pt;}
.y1b{bottom:449.429333pt;}
.yab{bottom:451.477333pt;}
.y69{bottom:452.554667pt;}
.y1f6{bottom:452.737333pt;}
.y113{bottom:452.760000pt;}
.y215{bottom:456.537333pt;}
.y4b{bottom:458.641333pt;}
.yf2{bottom:459.764000pt;}
.y243{bottom:459.840000pt;}
.y1bc{bottom:462.838667pt;}
.y17a{bottom:464.353333pt;}
.y135{bottom:464.786667pt;}
.yaa{bottom:469.544000pt;}
.y68{bottom:470.620000pt;}
.y1f5{bottom:470.804000pt;}
.y112{bottom:470.825333pt;}
.y15a{bottom:471.018667pt;}
.y1a{bottom:474.170667pt;}
.y214{bottom:474.604000pt;}
.y4a{bottom:476.708000pt;}
.y84{bottom:477.676000pt;}
.yf1{bottom:477.829333pt;}
.y242{bottom:477.905333pt;}
.y1bb{bottom:480.904000pt;}
.y179{bottom:482.420000pt;}
.ya9{bottom:487.609333pt;}
.y67{bottom:488.685333pt;}
.y111{bottom:488.892000pt;}
.y159{bottom:489.084000pt;}
.y213{bottom:492.669333pt;}
.y49{bottom:494.773333pt;}
.y1f4{bottom:495.545333pt;}
.yf0{bottom:495.896000pt;}
.y241{bottom:495.970667pt;}
.y1ba{bottom:498.969333pt;}
.y178{bottom:500.485333pt;}
.ya8{bottom:505.674667pt;}
.y66{bottom:506.750667pt;}
.y110{bottom:506.957333pt;}
.y158{bottom:507.149333pt;}
.y83{bottom:508.386667pt;}
.y212{bottom:510.734667pt;}
.y48{bottom:512.838667pt;}
.yef{bottom:513.961333pt;}
.y240{bottom:514.036000pt;}
.y1b9{bottom:517.036000pt;}
.y177{bottom:518.550667pt;}
.ya7{bottom:523.740000pt;}
.y65{bottom:524.816000pt;}
.y211{bottom:528.800000pt;}
.y47{bottom:530.904000pt;}
.y157{bottom:531.192000pt;}
.yee{bottom:532.026667pt;}
.y23f{bottom:532.101333pt;}
.y176{bottom:536.616000pt;}
.y19{bottom:540.633333pt;}
.ya6{bottom:541.805333pt;}
.y1f3{bottom:542.144000pt;}
.y64{bottom:542.882667pt;}
.y1b8{bottom:544.530667pt;}
.y210{bottom:546.865333pt;}
.y46{bottom:548.969333pt;}
.y156{bottom:549.258667pt;}
.yed{bottom:550.092000pt;}
.y23e{bottom:550.168000pt;}
.y10f{bottom:553.556000pt;}
.y1b7{bottom:554.508000pt;}
.y175{bottom:554.681333pt;}
.y1b2{bottom:555.913333pt;}
.y18{bottom:556.573333pt;}
.ya5{bottom:559.872000pt;}
.y1f2{bottom:560.209333pt;}
.y1b1{bottom:560.277333pt;}
.y63{bottom:560.948000pt;}
.y1b0{bottom:564.641333pt;}
.y20f{bottom:564.932000pt;}
.y45{bottom:567.036000pt;}
.y155{bottom:567.324000pt;}
.yec{bottom:568.157333pt;}
.y23d{bottom:568.233333pt;}
.y1af{bottom:569.004000pt;}
.y10e{bottom:571.621333pt;}
.y174{bottom:572.748000pt;}
.y1ae{bottom:573.368000pt;}
.y1b6{bottom:577.277333pt;}
.y1ad{bottom:577.732000pt;}
.ya4{bottom:577.937333pt;}
.y62{bottom:579.013333pt;}
.y20e{bottom:582.997333pt;}
.y44{bottom:585.101333pt;}
.yeb{bottom:586.224000pt;}
.y23c{bottom:586.298667pt;}
.y1a6{bottom:587.186667pt;}
.y1b5{bottom:587.256000pt;}
.y17{bottom:588.453333pt;}
.y173{bottom:590.813333pt;}
.y154{bottom:591.366667pt;}
.ya3{bottom:596.002667pt;}
.y61{bottom:597.078667pt;}
.y20d{bottom:601.062667pt;}
.y10d{bottom:602.333333pt;}
.y43{bottom:603.166667pt;}
.y1ac{bottom:603.914667pt;}
.yea{bottom:604.289333pt;}
.y23b{bottom:604.364000pt;}
.y16{bottom:604.393333pt;}
.y10c{bottom:607.012000pt;}
.y1ab{bottom:608.277333pt;}
.y172{bottom:608.878667pt;}
.y153{bottom:609.432000pt;}
.y1b4{bottom:610.025333pt;}
.y1aa{bottom:612.641333pt;}
.ya2{bottom:614.068000pt;}
.y60{bottom:615.144000pt;}
.y1a9{bottom:617.005333pt;}
.y1b3{bottom:620.002667pt;}
.y15{bottom:620.334667pt;}
.y42{bottom:621.232000pt;}
.y1a8{bottom:621.369333pt;}
.ye9{bottom:622.354667pt;}
.y23a{bottom:622.429333pt;}
.y10b{bottom:622.952000pt;}
.y1a7{bottom:625.732000pt;}
.y171{bottom:626.944000pt;}
.y152{bottom:627.498667pt;}
.ya1{bottom:632.133333pt;}
.y5f{bottom:633.210667pt;}
.y14{bottom:636.274667pt;}
.y22b{bottom:638.704000pt;}
.y41{bottom:639.297333pt;}
.ye8{bottom:640.420000pt;}
.y239{bottom:640.496000pt;}
.y129{bottom:641.390667pt;}
.y170{bottom:645.009333pt;}
.y20c{bottom:647.661333pt;}
.ya0{bottom:650.200000pt;}
.y5e{bottom:651.276000pt;}
.y151{bottom:651.541333pt;}
.y13{bottom:652.214667pt;}
.y1a5{bottom:653.868000pt;}
.y22a{bottom:656.770667pt;}
.ycd{bottom:657.364000pt;}
.ye7{bottom:658.485333pt;}
.y238{bottom:658.561333pt;}
.y40{bottom:664.040000pt;}
.y20b{bottom:665.726667pt;}
.y12{bottom:668.154667pt;}
.y9f{bottom:668.265333pt;}
.y5d{bottom:669.341333pt;}
.y150{bottom:669.606667pt;}
.y16f{bottom:669.752000pt;}
.y128{bottom:672.102667pt;}
.ycc{bottom:675.429333pt;}
.ye6{bottom:676.550667pt;}
.y237{bottom:676.626667pt;}
.y1a4{bottom:678.013333pt;}
.y11{bottom:684.094667pt;}
.y9e{bottom:686.330667pt;}
.y5c{bottom:687.406667pt;}
.y229{bottom:687.481333pt;}
.y127{bottom:688.042667pt;}
.ycb{bottom:693.494667pt;}
.y14f{bottom:693.650667pt;}
.ye5{bottom:694.617333pt;}
.y236{bottom:694.692000pt;}
.y1a3{bottom:697.830667pt;}
.y10{bottom:700.034667pt;}
.y126{bottom:703.982667pt;}
.y9d{bottom:704.396000pt;}
.y3f{bottom:705.472000pt;}
.y228{bottom:709.214667pt;}
.yca{bottom:711.560000pt;}
.y14e{bottom:711.716000pt;}
.ye4{bottom:712.682667pt;}
.yf{bottom:715.976000pt;}
.y125{bottom:719.922667pt;}
.y9c{bottom:722.461333pt;}
.y3e{bottom:723.538667pt;}
.y227{bottom:725.156000pt;}
.y1a2{bottom:725.326667pt;}
.yc9{bottom:729.625333pt;}
.y14d{bottom:729.781333pt;}
.ye3{bottom:730.748000pt;}
.ye{bottom:731.916000pt;}
.y9b{bottom:740.528000pt;}
.y235{bottom:741.290667pt;}
.y3d{bottom:741.604000pt;}
.yc8{bottom:747.692000pt;}
.yd{bottom:747.856000pt;}
.y14c{bottom:753.824000pt;}
.y1a1{bottom:756.637333pt;}
.y9a{bottom:758.593333pt;}
.y234{bottom:759.356000pt;}
.y3c{bottom:759.669333pt;}
.y19d{bottom:763.085333pt;}
.yc{bottom:763.796000pt;}
.yc7{bottom:765.757333pt;}
.ye2{bottom:766.996000pt;}
.y19c{bottom:767.448000pt;}
.y7a{bottom:771.741333pt;}
.y19b{bottom:771.812000pt;}
.y14b{bottom:771.890667pt;}
.y99{bottom:776.658667pt;}
.y3b{bottom:777.734667pt;}
.y1a0{bottom:778.316000pt;}
.yb{bottom:779.736000pt;}
.y197{bottom:781.266667pt;}
.yc6{bottom:783.822667pt;}
.y14a{bottom:789.956000pt;}
.y233{bottom:790.068000pt;}
.ya{bottom:795.676000pt;}
.y3a{bottom:795.800000pt;}
.y19f{bottom:797.929333pt;}
.ydf{bottom:797.940000pt;}
.y19a{bottom:797.994667pt;}
.y98{bottom:801.400000pt;}
.yc5{bottom:801.888000pt;}
.y199{bottom:802.357333pt;}
.y198{bottom:806.721333pt;}
.y9{bottom:811.617333pt;}
.y39{bottom:813.866667pt;}
.y149{bottom:813.998667pt;}
.y82{bottom:816.370667pt;}
.ydd{bottom:818.365333pt;}
.y19e{bottom:819.090667pt;}
.yc4{bottom:819.953333pt;}
.y97{bottom:826.142667pt;}
.y8{bottom:827.557333pt;}
.y38{bottom:831.932000pt;}
.y148{bottom:832.064000pt;}
.y81{bottom:834.437333pt;}
.y196{bottom:836.709333pt;}
.yc3{bottom:838.018667pt;}
.ye1{bottom:839.428000pt;}
.y7{bottom:843.497333pt;}
.y37{bottom:849.997333pt;}
.y16e{bottom:850.130667pt;}
.y80{bottom:852.502667pt;}
.y195{bottom:855.968000pt;}
.yc2{bottom:856.085333pt;}
.y147{bottom:856.108000pt;}
.ye0{bottom:857.493333pt;}
.y10a{bottom:862.273333pt;}
.y36{bottom:868.062667pt;}
.yc1{bottom:874.150667pt;}
.y146{bottom:874.173333pt;}
.y6{bottom:874.268000pt;}
.y194{bottom:875.785333pt;}
.y7f{bottom:877.870667pt;}
.y109{bottom:880.340000pt;}
.y35{bottom:886.128000pt;}
.y193{bottom:890.312000pt;}
.yc0{bottom:892.216000pt;}
.y16d{bottom:892.238667pt;}
.yde{bottom:895.634667pt;}
.y145{bottom:898.216000pt;}
.y108{bottom:898.405333pt;}
.y7e{bottom:901.861333pt;}
.y34{bottom:904.194667pt;}
.y192{bottom:908.377333pt;}
.ybf{bottom:910.281333pt;}
.y5{bottom:911.984000pt;}
.y144{bottom:916.282667pt;}
.y107{bottom:916.470667pt;}
.y7d{bottom:917.801333pt;}
.y33{bottom:922.260000pt;}
.y4{bottom:930.376000pt;}
.y7c{bottom:933.741333pt;}
.y143{bottom:934.348000pt;}
.y191{bottom:934.661333pt;}
.ybe{bottom:935.024000pt;}
.y32{bottom:940.325333pt;}
.y106{bottom:941.838667pt;}
.y18e{bottom:943.221333pt;}
.y18d{bottom:947.584000pt;}
.y7b{bottom:949.682667pt;}
.y16c{bottom:952.413333pt;}
.y190{bottom:956.340000pt;}
.y18a{bottom:957.040000pt;}
.y31{bottom:958.390667pt;}
.y3{bottom:963.518667pt;}
.y18c{bottom:973.766667pt;}
.y30{bottom:976.456000pt;}
.y18f{bottom:978.018667pt;}
.y18b{bottom:978.130667pt;}
.y105{bottom:978.422667pt;}
.y2{bottom:992.742667pt;}
.y2f{bottom:994.521333pt;}
.y104{bottom:996.488000pt;}
.y1{bottom:1071.246667pt;}
.h14{height:2.327275pt;}
.h26{height:12.676358pt;}
.he{height:27.366200pt;}
.h27{height:27.895200pt;}
.h6{height:31.926928pt;}
.h25{height:32.567275pt;}
.h2{height:37.411639pt;}
.h7{height:40.965943pt;}
.hf{height:41.018216pt;}
.hc{height:41.049300pt;}
.h11{height:43.636400pt;}
.h9{height:44.894267pt;}
.h8{height:45.610028pt;}
.hb{height:47.680867pt;}
.h31{height:47.820800pt;}
.h1f{height:48.771067pt;}
.ha{height:49.943223pt;}
.h23{height:52.406663pt;}
.h20{height:52.989733pt;}
.h19{height:52.995067pt;}
.hd{height:57.597447pt;}
.h10{height:57.602781pt;}
.h32{height:58.340400pt;}
.h33{height:58.985733pt;}
.h5{height:59.629447pt;}
.h22{height:63.700400pt;}
.h3{height:64.647414pt;}
.h24{height:69.516608pt;}
.h18{height:70.007223pt;}
.h2c{height:75.791733pt;}
.h28{height:75.797067pt;}
.h4{height:78.211600pt;}
.h1b{height:80.378216pt;}
.h30{height:80.927549pt;}
.h21{height:82.315997pt;}
.h15{height:83.545733pt;}
.h17{height:86.972608pt;}
.h1c{height:89.852557pt;}
.h1d{height:89.857890pt;}
.h12{height:90.655361pt;}
.h1e{height:96.051067pt;}
.h2a{height:113.496021pt;}
.h2b{height:114.445355pt;}
.h29{height:119.569867pt;}
.h2f{height:122.905733pt;}
.h2d{height:129.432021pt;}
.h2e{height:132.306688pt;}
.h13{height:139.052608pt;}
.h16{height:156.508608pt;}
.h1a{height:208.876608pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:56.693333pt;}
.x36{left:75.590667pt;}
.x9{left:113.385333pt;}
.xa{left:114.382667pt;}
.x1e{left:121.406667pt;}
.xd{left:128.077333pt;}
.x12{left:131.568000pt;}
.x15{left:133.244000pt;}
.x37{left:135.000000pt;}
.xc{left:135.968000pt;}
.x14{left:138.372000pt;}
.x2{left:141.146667pt;}
.x38{left:142.380000pt;}
.x7{left:149.749333pt;}
.x21{left:152.164000pt;}
.x16{left:155.554667pt;}
.x3b{left:160.358667pt;}
.x8{left:169.674667pt;}
.x11{left:179.984000pt;}
.x2b{left:193.060000pt;}
.x20{left:202.310667pt;}
.x4{left:210.794667pt;}
.x26{left:221.084000pt;}
.x10{left:230.118667pt;}
.x5{left:238.348000pt;}
.x22{left:256.334667pt;}
.x2c{left:262.089333pt;}
.x1b{left:269.668000pt;}
.x27{left:272.741333pt;}
.x2d{left:275.018667pt;}
.x24{left:285.660000pt;}
.x39{left:288.085333pt;}
.x25{left:290.882667pt;}
.x3c{left:293.269333pt;}
.x3{left:305.588000pt;}
.x2e{left:309.744000pt;}
.x40{left:311.817333pt;}
.x2f{left:316.053333pt;}
.x2a{left:319.305333pt;}
.x3f{left:320.504000pt;}
.x42{left:325.005333pt;}
.x17{left:328.226667pt;}
.x3e{left:332.737333pt;}
.x3d{left:336.308000pt;}
.x43{left:337.934667pt;}
.x18{left:345.736000pt;}
.x3a{left:351.237333pt;}
.x28{left:352.301333pt;}
.x30{left:364.425333pt;}
.x6{left:369.786667pt;}
.x23{left:377.018667pt;}
.x1f{left:389.577333pt;}
.xb{left:393.214667pt;}
.x44{left:396.850667pt;}
.x31{left:403.456000pt;}
.x1d{left:408.192000pt;}
.x1c{left:425.198667pt;}
.x41{left:427.508000pt;}
.x33{left:438.098667pt;}
.x29{left:448.996000pt;}
.x34{left:464.742667pt;}
.xe{left:481.886667pt;}
.xf{left:492.612000pt;}
.x19{left:527.298667pt;}
.x1a{left:534.628000pt;}
.x32{left:551.822667pt;}
.x35{left:580.300000pt;}
.x13{left:633.313333pt;}
}




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