
    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_635b4624184f397a39dd966f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_9177af993fd5ef2d9ae984ad.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_214e753d3df768cfc017a6a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_330de23736c9b8d1662c727c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_4f03ca897d8652083561560b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_1091f1840a64759da0f8f212.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7027c990287b5cf03cca0360.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_11153590b3946fcb83e4efad.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c33810f998009bda57d4290f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_fc17bf0f2d64ed6a9727a94d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_7350029c2608d3b35aa5b661.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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_9d27f3e9daa2618446883dc4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938965;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_9d27f3e9daa2618446883dc4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938965;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_2f67e341fd7c86455b7ddef9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938965;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_86185c37c1a19e4186ccba34.woff2')format("woff");}.fff{font-family:fff;line-height:0.938965;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_b9b1262d7bd008702d41852e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,-0.249997,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249997,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249997,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.620000px;}
.v2{vertical-align:22.515600px;}
.v1{vertical-align:28.203000px;}
.v3{vertical-align:30.164280px;}
.ls43{letter-spacing:-6.780000px;}
.ls38{letter-spacing:-1.776000px;}
.ls8e{letter-spacing:-0.816000px;}
.ls9{letter-spacing:-0.780000px;}
.ls8c{letter-spacing:-0.672000px;}
.ls8d{letter-spacing:-0.480000px;}
.ls6b{letter-spacing:-0.360000px;}
.ls65{letter-spacing:-0.180000px;}
.ls49{letter-spacing:-0.144347px;}
.ls37{letter-spacing:-0.144000px;}
.ls6c{letter-spacing:-0.120000px;}
.ls4d{letter-spacing:-0.117239px;}
.ls4a{letter-spacing:-0.115920px;}
.ls8b{letter-spacing:-0.096000px;}
.ls4e{letter-spacing:-0.078160px;}
.ls2c{letter-spacing:-0.060000px;}
.ls5d{letter-spacing:-0.048000px;}
.ls5e{letter-spacing:-0.047971px;}
.ls8{letter-spacing:0.000000px;}
.ls5b{letter-spacing:0.048000px;}
.ls5f{letter-spacing:0.048412px;}
.ls50{letter-spacing:0.050973px;}
.lsa{letter-spacing:0.060000px;}
.ls42{letter-spacing:0.061200px;}
.ls94{letter-spacing:0.096000px;}
.ls40{letter-spacing:0.109200px;}
.ls7{letter-spacing:0.120000px;}
.ls3c{letter-spacing:0.132600px;}
.ls5c{letter-spacing:0.143912px;}
.ls53{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.180000px;}
.ls5a{letter-spacing:0.192000px;}
.ls4b{letter-spacing:0.195399px;}
.ls22{letter-spacing:0.240000px;}
.ls47{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.300000px;}
.ls87{letter-spacing:0.336000px;}
.lsc{letter-spacing:0.360000px;}
.ls78{letter-spacing:0.384000px;}
.ls5{letter-spacing:0.420000px;}
.ls7e{letter-spacing:0.432000px;}
.ls13{letter-spacing:0.480000px;}
.ls76{letter-spacing:0.528000px;}
.ls1{letter-spacing:0.540000px;}
.ls72{letter-spacing:0.576000px;}
.ls32{letter-spacing:0.600000px;}
.lsb{letter-spacing:0.660000px;}
.ls79{letter-spacing:0.672000px;}
.ls14{letter-spacing:0.720000px;}
.ls7c{letter-spacing:0.768000px;}
.ls1a{letter-spacing:0.780000px;}
.ls6{letter-spacing:0.840000px;}
.ls7d{letter-spacing:0.864000px;}
.ls1b{letter-spacing:0.900000px;}
.ls71{letter-spacing:0.912000px;}
.ls1f{letter-spacing:0.960000px;}
.ls2e{letter-spacing:1.020000px;}
.ls86{letter-spacing:1.056000px;}
.ls33{letter-spacing:1.078200px;}
.ls12{letter-spacing:1.080000px;}
.ls8a{letter-spacing:1.104000px;}
.ls18{letter-spacing:1.140000px;}
.ls84{letter-spacing:1.152000px;}
.ls29{letter-spacing:1.200000px;}
.ls91{letter-spacing:1.248000px;}
.ls34{letter-spacing:1.260000px;}
.ls6f{letter-spacing:1.296000px;}
.ls36{letter-spacing:1.320000px;}
.ls77{letter-spacing:1.344000px;}
.ls61{letter-spacing:1.380000px;}
.ls8f{letter-spacing:1.392000px;}
.ls0{letter-spacing:1.440000px;}
.ls89{letter-spacing:1.488000px;}
.ls30{letter-spacing:1.500000px;}
.ls3{letter-spacing:1.560000px;}
.ls11{letter-spacing:1.620000px;}
.ls2{letter-spacing:1.680000px;}
.ls82{letter-spacing:1.728000px;}
.ls1d{letter-spacing:1.740000px;}
.ls83{letter-spacing:1.776000px;}
.ls17{letter-spacing:1.800000px;}
.ls92{letter-spacing:1.824000px;}
.ls24{letter-spacing:1.860000px;}
.ls2f{letter-spacing:1.920000px;}
.ls81{letter-spacing:1.968000px;}
.ls2a{letter-spacing:1.980000px;}
.ls93{letter-spacing:2.016000px;}
.ls10{letter-spacing:2.040000px;}
.ls1e{letter-spacing:2.100000px;}
.ls70{letter-spacing:2.112000px;}
.ls26{letter-spacing:2.160000px;}
.ls7b{letter-spacing:2.208000px;}
.ls1c{letter-spacing:2.220000px;}
.ls46{letter-spacing:2.280000px;}
.ls7a{letter-spacing:2.304000px;}
.lse{letter-spacing:2.340000px;}
.ls20{letter-spacing:2.400000px;}
.ls88{letter-spacing:2.448000px;}
.ls21{letter-spacing:2.460000px;}
.ls28{letter-spacing:2.520000px;}
.ls4{letter-spacing:2.580000px;}
.ls74{letter-spacing:2.592000px;}
.ls25{letter-spacing:2.640000px;}
.ls85{letter-spacing:2.688000px;}
.ls23{letter-spacing:2.700000px;}
.ls7f{letter-spacing:2.736000px;}
.ls80{letter-spacing:2.784000px;}
.ls67{letter-spacing:2.820000px;}
.ls6e{letter-spacing:2.928000px;}
.lsd{letter-spacing:2.940000px;}
.ls75{letter-spacing:2.976000px;}
.ls3a{letter-spacing:3.000000px;}
.ls31{letter-spacing:3.060000px;}
.ls39{letter-spacing:3.120000px;}
.ls57{letter-spacing:3.180000px;}
.ls56{letter-spacing:3.240000px;}
.ls73{letter-spacing:3.264000px;}
.lsf{letter-spacing:3.300000px;}
.ls6a{letter-spacing:3.360000px;}
.ls35{letter-spacing:3.420000px;}
.ls98{letter-spacing:3.480000px;}
.ls63{letter-spacing:3.540000px;}
.ls62{letter-spacing:3.600000px;}
.ls2d{letter-spacing:3.660000px;}
.ls66{letter-spacing:3.720000px;}
.ls90{letter-spacing:3.792000px;}
.ls95{letter-spacing:3.840000px;}
.ls2b{letter-spacing:3.960000px;}
.ls58{letter-spacing:4.020000px;}
.ls45{letter-spacing:4.200000px;}
.ls44{letter-spacing:4.260000px;}
.ls27{letter-spacing:4.440000px;}
.ls64{letter-spacing:4.560000px;}
.ls19{letter-spacing:4.860000px;}
.ls59{letter-spacing:4.980000px;}
.ls96{letter-spacing:5.040000px;}
.ls68{letter-spacing:5.220000px;}
.ls97{letter-spacing:5.280000px;}
.ls69{letter-spacing:5.880000px;}
.ls60{letter-spacing:7.020000px;}
.ls6d{letter-spacing:7.560000px;}
.ls3b{letter-spacing:122.016000px;}
.ls4c{letter-spacing:153.471569px;}
.ls4f{letter-spacing:153.896345px;}
.ls55{letter-spacing:153.924442px;}
.ls54{letter-spacing:153.967009px;}
.ls51{letter-spacing:154.111070px;}
.ls52{letter-spacing:154.239034px;}
.ls48{letter-spacing:234.375944px;}
.ls3f{letter-spacing:582.480000px;}
.ls3d{letter-spacing:588.010800px;}
.ls3e{letter-spacing:596.016000px;}
.ls41{letter-spacing:608.016000px;}
.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;}
}
.ws4e{word-spacing:-234.375944px;}
.ws64{word-spacing:-154.239034px;}
.ws63{word-spacing:-154.111070px;}
.ws6a{word-spacing:-153.967009px;}
.ws6b{word-spacing:-153.924442px;}
.ws5c{word-spacing:-153.896345px;}
.ws88{word-spacing:-19.980000px;}
.ws8c{word-spacing:-19.800000px;}
.ws89{word-spacing:-17.340000px;}
.ws44{word-spacing:-16.980000px;}
.ws20{word-spacing:-16.860000px;}
.ws0{word-spacing:-16.680000px;}
.wsa{word-spacing:-16.140000px;}
.ws45{word-spacing:-16.115882px;}
.ws1f{word-spacing:-16.020000px;}
.wsb{word-spacing:-15.840000px;}
.wsbf{word-spacing:-15.792000px;}
.ws8b{word-spacing:-15.780000px;}
.ws87{word-spacing:-15.720000px;}
.ws1{word-spacing:-15.420000px;}
.ws8a{word-spacing:-15.300000px;}
.ws37{word-spacing:-15.240000px;}
.ws9{word-spacing:-15.180000px;}
.ws38{word-spacing:-15.000000px;}
.wsc3{word-spacing:-14.736000px;}
.wsbe{word-spacing:-14.400000px;}
.ws97{word-spacing:-14.304000px;}
.ws55{word-spacing:-14.170494px;}
.wsc2{word-spacing:-14.016000px;}
.ws99{word-spacing:-13.968000px;}
.ws9d{word-spacing:-13.728000px;}
.ws71{word-spacing:-13.458425px;}
.ws48{word-spacing:-13.376192px;}
.ws3{word-spacing:-13.344000px;}
.ws6e{word-spacing:-13.335827px;}
.wsc0{word-spacing:-13.296000px;}
.wsc1{word-spacing:-13.248000px;}
.ws9f{word-spacing:-13.152000px;}
.ws96{word-spacing:-12.672000px;}
.ws93{word-spacing:-12.576000px;}
.ws9b{word-spacing:-12.528000px;}
.ws2{word-spacing:-12.510000px;}
.ws94{word-spacing:-12.384000px;}
.ws9c{word-spacing:-12.288000px;}
.ws6d{word-spacing:-12.240000px;}
.ws9a{word-spacing:-12.192000px;}
.wsa0{word-spacing:-12.144000px;}
.ws95{word-spacing:-12.048000px;}
.ws6c{word-spacing:-12.000000px;}
.ws5e{word-spacing:-11.857979px;}
.ws65{word-spacing:-11.833793px;}
.ws53{word-spacing:-11.808773px;}
.ws98{word-spacing:-11.520000px;}
.ws9e{word-spacing:-11.184000px;}
.ws52{word-spacing:-10.864184px;}
.wsc6{word-spacing:-3.792000px;}
.wsd2{word-spacing:-3.660000px;}
.ws2e{word-spacing:-3.060000px;}
.ws5{word-spacing:-2.886000px;}
.wsae{word-spacing:-2.784000px;}
.wscc{word-spacing:-2.736000px;}
.wsb4{word-spacing:-2.688000px;}
.wsa1{word-spacing:-2.640000px;}
.wsb2{word-spacing:-2.352000px;}
.ws1b{word-spacing:-2.220000px;}
.wsc7{word-spacing:-2.208000px;}
.wsca{word-spacing:-2.016000px;}
.wsb7{word-spacing:-1.968000px;}
.ws2d{word-spacing:-1.800000px;}
.wsaf{word-spacing:-1.776000px;}
.ws83{word-spacing:-1.500000px;}
.wsb8{word-spacing:-1.488000px;}
.wsa5{word-spacing:-1.344000px;}
.wsd1{word-spacing:-1.320000px;}
.wsb6{word-spacing:-1.296000px;}
.wsc9{word-spacing:-1.200000px;}
.wsc4{word-spacing:-1.152000px;}
.wsbb{word-spacing:-1.104000px;}
.wsaa{word-spacing:-0.768000px;}
.ws2f{word-spacing:-0.720000px;}
.ws4f{word-spacing:-0.695520px;}
.ws57{word-spacing:-0.646082px;}
.wsa3{word-spacing:-0.624000px;}
.wsa9{word-spacing:-0.576000px;}
.wsad{word-spacing:-0.432000px;}
.wsb1{word-spacing:-0.384000px;}
.ws91{word-spacing:-0.360000px;}
.ws49{word-spacing:-0.300000px;}
.ws61{word-spacing:-0.298152px;}
.ws68{word-spacing:-0.297547px;}
.wsc5{word-spacing:-0.288000px;}
.ws18{word-spacing:-0.240000px;}
.ws79{word-spacing:-0.192000px;}
.wsa8{word-spacing:-0.144000px;}
.wsd{word-spacing:-0.120000px;}
.ws2c{word-spacing:-0.060000px;}
.ws5d{word-spacing:-0.050973px;}
.ws7c{word-spacing:-0.048412px;}
.ws7a{word-spacing:-0.048000px;}
.ws4{word-spacing:0.000000px;}
.ws7b{word-spacing:0.047971px;}
.ws77{word-spacing:0.048000px;}
.ws82{word-spacing:0.060000px;}
.ws5b{word-spacing:0.078160px;}
.ws51{word-spacing:0.115920px;}
.ws5a{word-spacing:0.117239px;}
.ws7d{word-spacing:0.120000px;}
.ws50{word-spacing:0.144347px;}
.ws78{word-spacing:0.192000px;}
.wsba{word-spacing:0.336000px;}
.ws7f{word-spacing:0.420000px;}
.wsf{word-spacing:0.480000px;}
.ws35{word-spacing:0.540000px;}
.ws16{word-spacing:0.600000px;}
.ws41{word-spacing:0.660000px;}
.ws10{word-spacing:0.720000px;}
.ws76{word-spacing:0.768000px;}
.ws8f{word-spacing:0.780000px;}
.wsbc{word-spacing:0.816000px;}
.ws29{word-spacing:0.840000px;}
.ws1d{word-spacing:0.900000px;}
.ws69{word-spacing:0.912000px;}
.ws81{word-spacing:0.960000px;}
.wsa2{word-spacing:1.008000px;}
.ws36{word-spacing:1.020000px;}
.wsb3{word-spacing:1.056000px;}
.ws2a{word-spacing:1.140000px;}
.wsd0{word-spacing:1.200000px;}
.wsa7{word-spacing:1.296000px;}
.wsce{word-spacing:1.320000px;}
.wsab{word-spacing:1.344000px;}
.ws34{word-spacing:1.380000px;}
.ws14{word-spacing:1.560000px;}
.ws8d{word-spacing:1.620000px;}
.wscb{word-spacing:1.632000px;}
.wsb5{word-spacing:1.728000px;}
.ws4d{word-spacing:1.776000px;}
.ws11{word-spacing:1.800000px;}
.ws58{word-spacing:1.872000px;}
.ws33{word-spacing:1.920000px;}
.ws80{word-spacing:1.980000px;}
.ws72{word-spacing:2.100000px;}
.ws73{word-spacing:2.160000px;}
.ws62{word-spacing:2.208000px;}
.wscf{word-spacing:2.280000px;}
.ws7e{word-spacing:2.340000px;}
.ws1a{word-spacing:2.400000px;}
.wsbd{word-spacing:2.448000px;}
.ws8{word-spacing:2.460000px;}
.ws19{word-spacing:2.520000px;}
.wsb0{word-spacing:2.592000px;}
.ws84{word-spacing:2.640000px;}
.ws75{word-spacing:2.784000px;}
.ws43{word-spacing:2.820000px;}
.wsa6{word-spacing:2.832000px;}
.ws13{word-spacing:2.940000px;}
.ws12{word-spacing:3.000000px;}
.wsb9{word-spacing:3.024000px;}
.wsc8{word-spacing:3.360000px;}
.ws1c{word-spacing:3.420000px;}
.ws90{word-spacing:3.480000px;}
.wsc{word-spacing:3.600000px;}
.ws1e{word-spacing:3.720000px;}
.ws28{word-spacing:3.780000px;}
.ws59{word-spacing:3.792000px;}
.ws32{word-spacing:3.840000px;}
.wsac{word-spacing:3.888000px;}
.wse{word-spacing:3.900000px;}
.ws4c{word-spacing:3.936000px;}
.ws85{word-spacing:3.960000px;}
.wsa4{word-spacing:3.984000px;}
.ws42{word-spacing:4.020000px;}
.ws40{word-spacing:4.200000px;}
.ws15{word-spacing:4.260000px;}
.ws8e{word-spacing:4.320000px;}
.wscd{word-spacing:4.380000px;}
.wsd3{word-spacing:4.440000px;}
.ws17{word-spacing:4.560000px;}
.ws3e{word-spacing:4.620000px;}
.ws4b{word-spacing:4.680000px;}
.ws3f{word-spacing:4.800000px;}
.ws74{word-spacing:4.860000px;}
.ws6{word-spacing:4.920000px;}
.ws7{word-spacing:4.980000px;}
.ws4a{word-spacing:5.460000px;}
.ws92{word-spacing:5.520000px;}
.ws30{word-spacing:5.760000px;}
.ws31{word-spacing:5.940000px;}
.ws86{word-spacing:6.060000px;}
.ws2b{word-spacing:6.780000px;}
.ws39{word-spacing:97.056000px;}
.ws47{word-spacing:101.975640px;}
.ws54{word-spacing:118.300116px;}
.ws66{word-spacing:118.337928px;}
.ws67{word-spacing:118.550766px;}
.ws5f{word-spacing:118.579788px;}
.ws60{word-spacing:118.793061px;}
.ws6f{word-spacing:125.773337px;}
.ws70{word-spacing:132.405726px;}
.ws26{word-spacing:145.584000px;}
.ws27{word-spacing:150.048000px;}
.ws23{word-spacing:164.592000px;}
.ws22{word-spacing:169.584000px;}
.ws21{word-spacing:174.048000px;}
.ws24{word-spacing:179.952000px;}
.ws25{word-spacing:181.584000px;}
.ws46{word-spacing:185.796414px;}
.ws56{word-spacing:280.051611px;}
.ws3a{word-spacing:546.672000px;}
.ws3c{word-spacing:588.000000px;}
.ws3b{word-spacing:740.400000px;}
.ws3d{word-spacing:752.400000px;}
._a{margin-left:-2898.096000px;}
._2b{margin-left:-2874.288000px;}
._4c{margin-left:-625.865165px;}
._4b{margin-left:-67.243712px;}
._4d{margin-left:-56.496337px;}
._4a{margin-left:-37.664225px;}
._5{margin-left:-7.620000px;}
._4e{margin-left:-6.618000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-4.095000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.080000px;}
._6{width:1.020000px;}
._9{width:2.064000px;}
._8{width:3.096000px;}
._7{width:5.040000px;}
._b{width:6.840000px;}
._c{width:30.144000px;}
._37{width:57.552000px;}
._2{width:59.603400px;}
._40{width:61.584000px;}
._38{width:69.552000px;}
._31{width:75.600000px;}
._36{width:77.088000px;}
._3f{width:81.120000px;}
._41{width:82.560000px;}
._3d{width:86.256000px;}
._33{width:89.088000px;}
._34{width:101.088000px;}
._2a{width:115.860000px;}
._18{width:127.104000px;}
._2f{width:128.448000px;}
._1d{width:132.384000px;}
._11{width:139.104000px;}
._24{width:140.448000px;}
._30{width:142.224000px;}
._48{width:145.864151px;}
._22{width:147.072000px;}
._49{width:148.429966px;}
._21{width:151.104000px;}
._44{width:153.471569px;}
._47{width:154.963844px;}
._2c{width:159.648000px;}
._28{width:162.624000px;}
._1c{width:164.064000px;}
._19{width:169.584000px;}
._12{width:176.592000px;}
._17{width:181.584000px;}
._29{width:184.032000px;}
._15{width:186.624000px;}
._23{width:188.592000px;}
._25{width:190.224000px;}
._f{width:193.584000px;}
._1f{width:195.072000px;}
._e{width:198.624000px;}
._20{width:205.584000px;}
._1a{width:208.032000px;}
._1e{width:211.152000px;}
._16{width:219.120000px;}
._13{width:222.624000px;}
._26{width:224.400000px;}
._10{width:231.120000px;}
._43{width:233.796236px;}
._d{width:248.352000px;}
._14{width:249.696000px;}
._1b{width:257.664000px;}
._42{width:270.960000px;}
._39{width:278.976000px;}
._27{width:288.447000px;}
._46{width:307.485238px;}
._45{width:321.052956px;}
._3e{width:452.736000px;}
._2d{width:459.696000px;}
._32{width:460.752000px;}
._35{width:514.032000px;}
._3c{width:713.328000px;}
._2e{width:723.072000px;}
._3b{width:764.400000px;}
._3a{width:772.416000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:27.984000px;}
.fs8{font-size:34.980000px;}
.fs5{font-size:39.000000px;}
.fsd{font-size:39.079800px;}
.fs0{font-size:42.000000px;}
.fse{font-size:42.477600px;}
.fs15{font-size:42.567600px;}
.fs12{font-size:42.654600px;}
.fs4{font-size:45.000000px;}
.fs18{font-size:47.970600px;}
.fs7{font-size:48.000000px;}
.fsc{font-size:48.115800px;}
.fs19{font-size:48.411600px;}
.fs17{font-size:49.591200px;}
.fs14{font-size:49.692000px;}
.fs10{font-size:49.698600px;}
.fsf{font-size:50.973000px;}
.fs16{font-size:51.081000px;}
.fs13{font-size:51.185400px;}
.fs11{font-size:56.495400px;}
.fsb{font-size:57.960000px;}
.fsa{font-size:57.970800px;}
.fs6{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2e{bottom:47.777250px;}
.yd3{bottom:58.213350px;}
.y1c1{bottom:77.035050px;}
.y292{bottom:80.914350px;}
.y1a7{bottom:83.314200px;}
.y15a{bottom:83.554950px;}
.y1e8{bottom:83.635350px;}
.yb4{bottom:83.661150px;}
.y64{bottom:83.770350px;}
.y1af{bottom:85.041600px;}
.y2b{bottom:88.026750px;}
.y22f{bottom:92.121900px;}
.y83{bottom:92.556450px;}
.yb1{bottom:93.036750px;}
.y26f{bottom:95.263500px;}
.y291{bottom:98.914350px;}
.y1a6{bottom:99.058200px;}
.y159{bottom:99.298950px;}
.yb3{bottom:99.405150px;}
.y1f3{bottom:101.223600px;}
.y1e7{bottom:101.635350px;}
.y63{bottom:101.770350px;}
.y2a{bottom:103.023000px;}
.y22e{bottom:107.121900px;}
.yb0{bottom:109.284750px;}
.y26e{bottom:110.263500px;}
.y1a5{bottom:114.802200px;}
.y158{bottom:115.042950px;}
.yb2{bottom:115.149150px;}
.y290{bottom:116.914350px;}
.y1e6{bottom:119.635350px;}
.y62{bottom:119.770350px;}
.y82{bottom:121.560450px;}
.y22d{bottom:122.121900px;}
.y26d{bottom:125.263500px;}
.yaf{bottom:125.532750px;}
.y1a4{bottom:130.546200px;}
.y28f{bottom:134.914350px;}
.y22c{bottom:137.121900px;}
.ye0{bottom:137.602500px;}
.y1f2{bottom:137.628600px;}
.y1e5{bottom:137.635350px;}
.y61{bottom:137.770350px;}
.y81{bottom:137.808450px;}
.y165{bottom:138.879000px;}
.ybc{bottom:140.193000px;}
.y26c{bottom:140.263500px;}
.y119{bottom:141.637650px;}
.y157{bottom:141.637800px;}
.yae{bottom:141.812400px;}
.y196{bottom:142.903350px;}
.yd4{bottom:144.898650px;}
.y1a3{bottom:146.290200px;}
.y22b{bottom:152.121900px;}
.y28e{bottom:152.914350px;}
.y80{bottom:154.056450px;}
.y26b{bottom:155.263500px;}
.y1f1{bottom:155.628600px;}
.y1e4{bottom:155.635350px;}
.y60{bottom:155.770350px;}
.yad{bottom:158.060400px;}
.y1a2{bottom:162.034200px;}
.y27{bottom:165.798000px;}
.y115{bottom:166.593114px;}
.y153{bottom:166.697807px;}
.y22a{bottom:167.121900px;}
.yd2{bottom:167.365587px;}
.y192{bottom:168.230180px;}
.y26a{bottom:170.263500px;}
.y7f{bottom:170.340000px;}
.y28d{bottom:170.914350px;}
.y1f0{bottom:173.223600px;}
.y1e3{bottom:173.635350px;}
.y5f{bottom:173.770350px;}
.yac{bottom:174.308400px;}
.y1a1{bottom:177.778200px;}
.y10f{bottom:179.230200px;}
.y14d{bottom:179.387550px;}
.y18c{bottom:180.947250px;}
.y229{bottom:182.121900px;}
.y26{bottom:183.798000px;}
.ycc{bottom:184.611900px;}
.y116{bottom:184.710000px;}
.y269{bottom:185.263500px;}
.y154{bottom:186.568200px;}
.y7e{bottom:186.588000px;}
.y28c{bottom:188.914350px;}
.y193{bottom:189.820650px;}
.yab{bottom:190.556400px;}
.y1e2{bottom:191.635350px;}
.y5e{bottom:191.770350px;}
.y1a0{bottom:193.522200px;}
.y228{bottom:197.121900px;}
.y110{bottom:197.601762px;}
.y14e{bottom:197.782346px;}
.y18d{bottom:199.251318px;}
.y268{bottom:200.263500px;}
.y25{bottom:201.798000px;}
.y7d{bottom:202.836000px;}
.y1be{bottom:203.302950px;}
.yaa{bottom:206.804400px;}
.y28b{bottom:206.914350px;}
.y19f{bottom:209.266200px;}
.y1ef{bottom:209.628600px;}
.y1e1{bottom:209.635350px;}
.y5d{bottom:209.770350px;}
.ycd{bottom:210.698760px;}
.y227{bottom:212.121900px;}
.y267{bottom:215.263500px;}
.y111{bottom:216.079518px;}
.y14f{bottom:216.123824px;}
.y18e{bottom:217.555386px;}
.y7c{bottom:219.084000px;}
.y24{bottom:219.798000px;}
.y1ae{bottom:223.815450px;}
.y28a{bottom:224.914350px;}
.y226{bottom:227.121900px;}
.y1ee{bottom:227.223600px;}
.y1e0{bottom:227.635350px;}
.y5c{bottom:227.770350px;}
.y266{bottom:230.263500px;}
.y1bd{bottom:233.532000px;}
.y112{bottom:234.451080px;}
.y150{bottom:234.465302px;}
.y7b{bottom:235.332000px;}
.ya9{bottom:235.808400px;}
.y18f{bottom:235.912664px;}
.yce{bottom:236.930547px;}
.y1c0{bottom:237.461923px;}
.y23{bottom:237.798000px;}
.y225{bottom:242.121900px;}
.y289{bottom:242.914350px;}
.yd8{bottom:243.159750px;}
.y11c{bottom:245.128050px;}
.y265{bottom:245.263500px;}
.y15d{bottom:245.597250px;}
.y1df{bottom:245.635350px;}
.y5b{bottom:245.770350px;}
.y7a{bottom:251.580000px;}
.ya8{bottom:252.056400px;}
.y151{bottom:252.806780px;}
.y113{bottom:252.928836px;}
.y190{bottom:254.216732px;}
.y29{bottom:255.798000px;}
.y224{bottom:257.121900px;}
.y1bf{bottom:259.065600px;}
.yd7{bottom:259.725300px;}
.y264{bottom:260.263500px;}
.y288{bottom:260.914350px;}
.y11b{bottom:261.069900px;}
.y15c{bottom:261.932100px;}
.ycf{bottom:263.017407px;}
.y1ed{bottom:263.628600px;}
.y1de{bottom:263.635350px;}
.y5a{bottom:263.770350px;}
.y79{bottom:267.828000px;}
.ya7{bottom:268.304400px;}
.y152{bottom:271.148258px;}
.y114{bottom:271.300398px;}
.y223{bottom:272.121900px;}
.y191{bottom:272.520800px;}
.y22{bottom:273.395100px;}
.y1b3{bottom:273.466950px;}
.y28{bottom:273.798000px;}
.y263{bottom:275.263500px;}
.yd6{bottom:276.290700px;}
.y11a{bottom:277.013100px;}
.y15b{bottom:278.321400px;}
.y1ec{bottom:281.628600px;}
.y1dd{bottom:281.635350px;}
.y59{bottom:281.770350px;}
.y78{bottom:284.076000px;}
.ya6{bottom:284.584050px;}
.yc9{bottom:284.802750px;}
.y222{bottom:287.121900px;}
.y155{bottom:288.315600px;}
.y117{bottom:288.397200px;}
.yd0{bottom:289.104267px;}
.y194{bottom:289.655250px;}
.y1b4{bottom:289.810950px;}
.y262{bottom:290.263500px;}
.y287{bottom:296.914350px;}
.y1eb{bottom:299.230350px;}
.y1dc{bottom:299.635350px;}
.y58{bottom:299.770350px;}
.y77{bottom:300.324000px;}
.ya5{bottom:300.832050px;}
.y221{bottom:302.121900px;}
.y145{bottom:302.551396px;}
.y261{bottom:305.263500px;}
.y1b5{bottom:306.142950px;}
.y286{bottom:314.914350px;}
.yd1{bottom:315.191127px;}
.ya4{bottom:317.080050px;}
.y220{bottom:317.121900px;}
.y100{bottom:317.389914px;}
.y144{bottom:317.480506px;}
.y1db{bottom:317.635350px;}
.y57{bottom:317.770350px;}
.y185{bottom:318.761439px;}
.y260{bottom:320.263500px;}
.y1b6{bottom:322.486950px;}
.y76{bottom:329.328000px;}
.yfa{bottom:330.027000px;}
.y13e{bottom:330.170250px;}
.y17f{bottom:331.425300px;}
.y21f{bottom:332.121900px;}
.y285{bottom:332.914350px;}
.ya3{bottom:333.328050px;}
.y25f{bottom:335.263500px;}
.y10e{bottom:335.397450px;}
.y1da{bottom:335.635350px;}
.y56{bottom:335.770350px;}
.y14c{bottom:337.299600px;}
.yd5{bottom:338.238720px;}
.y1b7{bottom:338.830950px;}
.y18b{bottom:340.349250px;}
.y75{bottom:345.828000px;}
.y21e{bottom:347.121900px;}
.yfb{bottom:348.398562px;}
.y13f{bottom:348.565046px;}
.ya2{bottom:349.576050px;}
.y180{bottom:349.782578px;}
.y21{bottom:350.004900px;}
.y25e{bottom:350.263500px;}
.y284{bottom:350.914350px;}
.y1d9{bottom:353.635350px;}
.y55{bottom:353.770350px;}
.y1b8{bottom:355.174950px;}
.y21d{bottom:362.121900px;}
.y74{bottom:362.328000px;}
.y25d{bottom:365.263500px;}
.yfc{bottom:366.876318px;}
.y140{bottom:366.906524px;}
.y20{bottom:368.014200px;}
.y181{bottom:368.086646px;}
.y283{bottom:368.914350px;}
.y1b9{bottom:371.518950px;}
.y1d8{bottom:371.635350px;}
.y54{bottom:371.770350px;}
.y21c{bottom:377.121900px;}
.ya1{bottom:378.580050px;}
.y25c{bottom:380.263500px;}
.yca{bottom:383.594850px;}
.yfd{bottom:385.247880px;}
.y141{bottom:385.248002px;}
.y182{bottom:386.390714px;}
.y1ba{bottom:387.862950px;}
.y1d7{bottom:389.635350px;}
.y53{bottom:389.770350px;}
.y21b{bottom:392.121900px;}
.y73{bottom:394.720350px;}
.ya0{bottom:394.828050px;}
.y25b{bottom:395.263500px;}
.y1f{bottom:395.359200px;}
.y142{bottom:403.589480px;}
.yfe{bottom:403.725636px;}
.y1bb{bottom:404.206950px;}
.y282{bottom:404.509350px;}
.y183{bottom:404.747991px;}
.yc8{bottom:406.057587px;}
.y21a{bottom:407.121900px;}
.y1ea{bottom:407.230350px;}
.y1d6{bottom:407.635350px;}
.y52{bottom:407.770350px;}
.y156{bottom:409.609950px;}
.y25a{bottom:410.263500px;}
.y9f{bottom:411.076050px;}
.y118{bottom:411.139800px;}
.y1e{bottom:413.359200px;}
.y72{bottom:414.220350px;}
.y1bc{bottom:420.550950px;}
.y143{bottom:421.930958px;}
.yff{bottom:422.097198px;}
.y219{bottom:422.121900px;}
.y184{bottom:423.052059px;}
.yc2{bottom:423.303900px;}
.y195{bottom:423.779250px;}
.y259{bottom:425.263500px;}
.y1d5{bottom:425.635350px;}
.y51{bottom:425.770350px;}
.y9e{bottom:427.347750px;}
.y1d{bottom:431.359200px;}
.y218{bottom:437.121900px;}
.y146{bottom:439.099500px;}
.y101{bottom:439.192800px;}
.y186{bottom:440.184600px;}
.y258{bottom:440.263500px;}
.y9d{bottom:443.595750px;}
.y1d4{bottom:443.635350px;}
.y50{bottom:443.770350px;}
.y1c{bottom:449.359200px;}
.yc3{bottom:449.390760px;}
.y217{bottom:452.121900px;}
.y14b{bottom:453.282750px;}
.y13c{bottom:453.283178px;}
.y257{bottom:455.263500px;}
.y9c{bottom:459.843750px;}
.y1d3{bottom:461.635350px;}
.y4f{bottom:461.770350px;}
.y6f{bottom:461.920350px;}
.y216{bottom:467.121900px;}
.y1b{bottom:467.359200px;}
.yf8{bottom:468.184164px;}
.y13b{bottom:468.265606px;}
.y17d{bottom:469.290639px;}
.y256{bottom:470.263500px;}
.yc4{bottom:475.477620px;}
.y9b{bottom:476.091750px;}
.y1d2{bottom:479.635350px;}
.y4e{bottom:479.770350px;}
.y6e{bottom:479.920350px;}
.yf2{bottom:480.821250px;}
.y135{bottom:480.955350px;}
.y177{bottom:481.954500px;}
.y215{bottom:482.121900px;}
.y19e{bottom:484.882200px;}
.y255{bottom:485.263500px;}
.y1a{bottom:485.359200px;}
.y10d{bottom:486.193500px;}
.y14a{bottom:488.083500px;}
.y18a{bottom:490.879050px;}
.y9a{bottom:492.339750px;}
.y214{bottom:497.121900px;}
.y66{bottom:497.365350px;}
.y1d1{bottom:497.635350px;}
.y4d{bottom:497.770350px;}
.y6d{bottom:497.920350px;}
.yf3{bottom:499.192812px;}
.y136{bottom:499.296828px;}
.y178{bottom:500.258568px;}
.y254{bottom:500.263500px;}
.y19d{bottom:500.626200px;}
.yc5{bottom:501.564480px;}
.y19{bottom:503.359200px;}
.y213{bottom:512.121900px;}
.y253{bottom:515.263500px;}
.y1d0{bottom:515.635350px;}
.y4c{bottom:515.770350px;}
.y6c{bottom:515.920350px;}
.y19c{bottom:516.370200px;}
.yf4{bottom:517.670568px;}
.y137{bottom:517.691624px;}
.y179{bottom:518.615845px;}
.ybd{bottom:520.115250px;}
.y99{bottom:521.343750px;}
.y18{bottom:521.359200px;}
.y212{bottom:527.121900px;}
.yc6{bottom:527.651340px;}
.y252{bottom:530.263500px;}
.y19b{bottom:532.114200px;}
.y65{bottom:533.230350px;}
.y1cf{bottom:533.635350px;}
.y4b{bottom:533.770350px;}
.y6b{bottom:533.920350px;}
.y138{bottom:536.033102px;}
.yf5{bottom:536.042130px;}
.y17a{bottom:536.919914px;}
.y17{bottom:539.359200px;}
.y211{bottom:542.121900px;}
.y251{bottom:545.263500px;}
.y19a{bottom:547.858200px;}
.y98{bottom:550.347750px;}
.y1ce{bottom:551.635350px;}
.y4a{bottom:551.770350px;}
.y6a{bottom:551.920350px;}
.yc7{bottom:553.738200px;}
.y139{bottom:554.374580px;}
.yf6{bottom:554.413692px;}
.y17b{bottom:555.223982px;}
.y210{bottom:557.121900px;}
.y16{bottom:557.359200px;}
.y250{bottom:560.263500px;}
.y199{bottom:563.602200px;}
.y1cd{bottom:569.635350px;}
.y49{bottom:569.770350px;}
.y20f{bottom:572.121900px;}
.y13a{bottom:572.716058px;}
.yf7{bottom:572.891448px;}
.y17c{bottom:573.581259px;}
.y24f{bottom:575.263500px;}
.y15{bottom:575.359200px;}
.ycb{bottom:576.790020px;}
.y198{bottom:579.346200px;}
.y97{bottom:582.745350px;}
.y20e{bottom:587.121900px;}
.y69{bottom:587.515350px;}
.y1cc{bottom:587.635350px;}
.y48{bottom:587.770350px;}
.y13d{bottom:589.883550px;}
.yf9{bottom:589.988250px;}
.y24e{bottom:590.263500px;}
.y17e{bottom:590.714400px;}
.y14{bottom:593.359200px;}
.y197{bottom:595.090200px;}
.y20d{bottom:602.121900px;}
.y96{bottom:602.245350px;}
.y24d{bottom:605.263500px;}
.y68{bottom:605.515350px;}
.y1cb{bottom:605.635350px;}
.y47{bottom:605.770350px;}
.y2a9{bottom:605.779350px;}
.y13{bottom:611.359200px;}
.y20c{bottom:617.121900px;}
.yf0{bottom:617.918214px;}
.y133{bottom:618.035656px;}
.y1ad{bottom:618.385500px;}
.y175{bottom:618.809289px;}
.ybe{bottom:619.970850px;}
.y24c{bottom:620.263500px;}
.y95{bottom:621.745350px;}
.y1ca{bottom:623.635350px;}
.y46{bottom:623.770350px;}
.y2a8{bottom:623.779350px;}
.y12{bottom:629.359200px;}
.yea{bottom:630.555300px;}
.y12d{bottom:630.725400px;}
.y16f{bottom:631.473150px;}
.y20b{bottom:632.121900px;}
.y24b{bottom:635.263500px;}
.y10c{bottom:636.032550px;}
.y149{bottom:637.907250px;}
.y189{bottom:640.398450px;}
.y94{bottom:641.245350px;}
.y1c9{bottom:641.635350px;}
.y45{bottom:641.770350px;}
.y2a7{bottom:641.779350px;}
.ybb{bottom:642.434937px;}
.y20a{bottom:647.121900px;}
.y11{bottom:647.359200px;}
.yeb{bottom:649.033056px;}
.y12e{bottom:649.120196px;}
.y170{bottom:649.777218px;}
.y24a{bottom:650.263500px;}
.y1c8{bottom:659.635350px;}
.yb5{bottom:659.681250px;}
.y44{bottom:659.770350px;}
.y2a6{bottom:659.779350px;}
.y1a8{bottom:660.209100px;}
.y93{bottom:660.745350px;}
.y209{bottom:662.121900px;}
.y249{bottom:665.263500px;}
.y10{bottom:665.359200px;}
.yec{bottom:667.404618px;}
.y12f{bottom:667.461674px;}
.y171{bottom:668.134495px;}
.y208{bottom:677.121900px;}
.y1c7{bottom:677.635350px;}
.y43{bottom:677.770350px;}
.y92{bottom:680.245350px;}
.y248{bottom:680.263500px;}
.yf{bottom:683.359200px;}
.yb6{bottom:685.768110px;}
.yed{bottom:685.776180px;}
.y130{bottom:685.803152px;}
.y172{bottom:686.438563px;}
.y207{bottom:692.121900px;}
.y247{bottom:695.263500px;}
.y1c6{bottom:695.635350px;}
.y42{bottom:695.770350px;}
.y2a5{bottom:695.779350px;}
.y1a9{bottom:696.593100px;}
.y91{bottom:699.745350px;}
.ye{bottom:701.359200px;}
.y131{bottom:704.144630px;}
.yee{bottom:704.253936px;}
.y173{bottom:704.742631px;}
.y206{bottom:707.121900px;}
.y246{bottom:710.263500px;}
.yb7{bottom:711.999897px;}
.y1c5{bottom:713.635350px;}
.y41{bottom:713.770350px;}
.y2a4{bottom:713.779350px;}
.yd{bottom:719.359200px;}
.y205{bottom:722.121900px;}
.y132{bottom:722.486108px;}
.yef{bottom:722.625498px;}
.y174{bottom:723.099909px;}
.y245{bottom:725.263500px;}
.y1c4{bottom:731.635350px;}
.y40{bottom:731.770350px;}
.y2a3{bottom:731.779350px;}
.y1aa{bottom:732.977100px;}
.y204{bottom:737.121900px;}
.yc{bottom:737.359200px;}
.yb8{bottom:738.086757px;}
.y134{bottom:739.654650px;}
.yf1{bottom:739.722450px;}
.y176{bottom:740.233050px;}
.y244{bottom:740.263500px;}
.y90{bottom:749.635350px;}
.y3f{bottom:749.770350px;}
.y2a2{bottom:749.779350px;}
.y203{bottom:752.121900px;}
.y243{bottom:755.263500px;}
.yb9{bottom:764.173617px;}
.y202{bottom:767.121900px;}
.y8f{bottom:767.635350px;}
.ye8{bottom:767.757714px;}
.y3e{bottom:767.770350px;}
.y2a1{bottom:767.779350px;}
.y12b{bottom:767.805938px;}
.y109{bottom:768.076616px;}
.y16d{bottom:768.328089px;}
.y1ab{bottom:769.433100px;}
.y242{bottom:770.263500px;}
.yc1{bottom:774.318450px;}
.ye2{bottom:780.394800px;}
.y125{bottom:780.549000px;}
.y167{bottom:780.991950px;}
.y201{bottom:782.121900px;}
.yb{bottom:782.517450px;}
.y103{bottom:782.837100px;}
.y241{bottom:785.263500px;}
.y8e{bottom:785.635350px;}
.y3d{bottom:785.770350px;}
.y2a0{bottom:785.779350px;}
.y10a{bottom:785.850900px;}
.y148{bottom:787.677150px;}
.y188{bottom:789.916500px;}
.yba{bottom:790.260477px;}
.ya{bottom:794.968200px;}
.y200{bottom:797.121900px;}
.yc0{bottom:797.505450px;}
.ye3{bottom:798.766362px;}
.y126{bottom:798.890478px;}
.y168{bottom:799.296018px;}
.y104{bottom:800.144637px;}
.y281{bottom:800.263500px;}
.y240{bottom:800.265900px;}
.y8d{bottom:803.635350px;}
.y3c{bottom:803.770350px;}
.y29f{bottom:803.779350px;}
.y1ac{bottom:805.817100px;}
.y1b2{bottom:806.725050px;}
.y1ff{bottom:812.121900px;}
.ybf{bottom:813.296430px;}
.y280{bottom:815.263500px;}
.y23f{bottom:815.265900px;}
.ye4{bottom:817.137924px;}
.y127{bottom:817.231956px;}
.y105{bottom:817.452175px;}
.y169{bottom:817.653295px;}
.y1e9{bottom:821.230350px;}
.y8c{bottom:821.635350px;}
.y3b{bottom:821.770350px;}
.y29e{bottom:821.779350px;}
.y1b1{bottom:822.073650px;}
.y9{bottom:826.683600px;}
.y1fe{bottom:827.121900px;}
.y27f{bottom:830.263500px;}
.y23e{bottom:830.265900px;}
.y106{bottom:834.660315px;}
.y128{bottom:835.573434px;}
.ye5{bottom:835.615680px;}
.y16a{bottom:835.957363px;}
.y1b0{bottom:837.423600px;}
.y1c3{bottom:839.230350px;}
.y8b{bottom:839.635350px;}
.y3a{bottom:839.770350px;}
.y29d{bottom:839.779350px;}
.y8{bottom:840.183600px;}
.y1fd{bottom:842.121900px;}
.y27e{bottom:845.263500px;}
.y23d{bottom:845.265900px;}
.y107{bottom:851.967853px;}
.y7{bottom:853.683600px;}
.y129{bottom:853.914912px;}
.ye6{bottom:853.987242px;}
.y16b{bottom:854.261431px;}
.y1fc{bottom:857.121900px;}
.y8a{bottom:857.635350px;}
.y39{bottom:857.770350px;}
.y29c{bottom:857.779350px;}
.y27d{bottom:860.263500px;}
.y23c{bottom:860.265900px;}
.y108{bottom:869.275390px;}
.y1fb{bottom:872.121900px;}
.y12a{bottom:872.256390px;}
.ye7{bottom:872.464998px;}
.y16c{bottom:872.618709px;}
.y27c{bottom:875.263500px;}
.y23b{bottom:875.265900px;}
.y89{bottom:875.635350px;}
.y38{bottom:875.770350px;}
.y29b{bottom:875.779350px;}
.y1fa{bottom:887.121900px;}
.y6{bottom:887.830950px;}
.y10b{bottom:888.181650px;}
.y12c{bottom:889.424550px;}
.ye9{bottom:889.456500px;}
.y16e{bottom:889.752450px;}
.y27b{bottom:890.263500px;}
.y23a{bottom:890.265900px;}
.y88{bottom:893.635350px;}
.y37{bottom:893.770350px;}
.y29a{bottom:893.779350px;}
.y166{bottom:900.392100px;}
.y124{bottom:901.647150px;}
.ye1{bottom:901.693500px;}
.y1f9{bottom:902.121900px;}
.y27a{bottom:905.263500px;}
.y239{bottom:905.265900px;}
.y87{bottom:911.635350px;}
.y36{bottom:911.770350px;}
.y299{bottom:911.779350px;}
.y1f8{bottom:917.121900px;}
.ydf{bottom:917.491164px;}
.y123{bottom:917.630357px;}
.y164{bottom:917.847339px;}
.y279{bottom:920.263500px;}
.y238{bottom:920.265900px;}
.y86{bottom:929.635350px;}
.y35{bottom:929.770350px;}
.y298{bottom:929.779350px;}
.yd9{bottom:930.128250px;}
.y11d{bottom:930.320100px;}
.y15e{bottom:930.511200px;}
.y1f7{bottom:932.121900px;}
.y5{bottom:934.004400px;}
.y278{bottom:935.263500px;}
.y237{bottom:935.265900px;}
.y102{bottom:936.924000px;}
.y147{bottom:937.448400px;}
.y187{bottom:939.435900px;}
.y34{bottom:947.770350px;}
.y297{bottom:947.779350px;}
.yda{bottom:948.606006px;}
.y11e{bottom:948.661578px;}
.y15f{bottom:948.815268px;}
.y277{bottom:950.263500px;}
.y236{bottom:950.265900px;}
.y85{bottom:965.230350px;}
.y1f6{bottom:965.232600px;}
.y276{bottom:965.263500px;}
.y235{bottom:965.265900px;}
.y33{bottom:965.770350px;}
.ydb{bottom:966.977568px;}
.y11f{bottom:967.003056px;}
.y160{bottom:967.172545px;}
.y4{bottom:970.465200px;}
.y275{bottom:980.263500px;}
.y234{bottom:980.265900px;}
.y32{bottom:983.770350px;}
.y296{bottom:983.779350px;}
.y120{bottom:985.344534px;}
.ydc{bottom:985.349130px;}
.y161{bottom:985.476613px;}
.y274{bottom:995.263500px;}
.y233{bottom:995.265900px;}
.y31{bottom:1001.770350px;}
.y295{bottom:1001.779350px;}
.y121{bottom:1003.686012px;}
.y162{bottom:1003.780681px;}
.ydd{bottom:1003.826886px;}
.y3{bottom:1006.926000px;}
.y273{bottom:1010.263500px;}
.y232{bottom:1010.265900px;}
.y30{bottom:1019.770350px;}
.y1f5{bottom:1019.772600px;}
.y294{bottom:1019.779350px;}
.y71{bottom:1019.785350px;}
.y122{bottom:1022.080808px;}
.y163{bottom:1022.137959px;}
.yde{bottom:1022.198448px;}
.y272{bottom:1025.263500px;}
.y231{bottom:1025.265900px;}
.y1f4{bottom:1037.367600px;}
.y2f{bottom:1037.770350px;}
.y293{bottom:1037.779350px;}
.y70{bottom:1037.785350px;}
.y271{bottom:1040.263500px;}
.y230{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y67{bottom:1132.418700px;}
.y1c2{bottom:1132.421700px;}
.y270{bottom:1132.423500px;}
.y84{bottom:1132.428450px;}
.y2d{bottom:1136.092500px;}
.y2c{bottom:1150.492500px;}
.h7{height:28.412109px;}
.h18{height:28.470245px;}
.h2{height:30.597656px;}
.h19{height:30.945595px;}
.h21{height:31.011162px;}
.h1e{height:31.074543px;}
.hc{height:32.783203px;}
.h6{height:32.805176px;}
.h10{height:33.351562px;}
.h26{height:34.947332px;}
.he{height:34.968750px;}
.hd{height:34.992188px;}
.h17{height:35.053112px;}
.h28{height:35.268607px;}
.h24{height:36.127964px;}
.h20{height:36.201398px;}
.h1c{height:36.206207px;}
.h1b{height:37.134627px;}
.h23{height:37.213307px;}
.h1f{height:37.289364px;}
.h1d{height:41.157782px;}
.hb{height:41.689453px;}
.h12{height:41.927761px;}
.h11{height:41.959561px;}
.h15{height:42.224766px;}
.h13{height:42.232634px;}
.ha{height:43.681641px;}
.h8{height:43.710938px;}
.h9{height:43.740234px;}
.h5{height:45.865723px;}
.hf{height:52.490871px;}
.h3{height:56.786133px;}
.h16{height:65.217392px;}
.h4{height:92.168262px;}
.h27{height:213.562500px;}
.h25{height:234.135000px;}
.h14{height:696.381000px;}
.h22{height:911.358000px;}
.h1a{height:912.634500px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w7{width:402.511500px;}
.w6{width:448.309500px;}
.w2{width:465.600000px;}
.w4{width:628.848000px;}
.w3{width:630.723000px;}
.w5{width:635.557500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x49{left:10.661400px;}
.x36{left:12.434400px;}
.x68{left:24.863250px;}
.x65{left:26.173800px;}
.x53{left:47.824500px;}
.x43{left:51.757500px;}
.x60{left:55.654050px;}
.xb{left:76.535400px;}
.x2f{left:78.661350px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x14{left:99.921300px;}
.x6e{left:102.047400px;}
.x4{left:106.299150px;}
.xc{left:110.555400px;}
.x5b{left:118.048500px;}
.x3d{left:120.465000px;}
.x70{left:123.307350px;}
.x3{left:125.436600px;}
.x7{left:131.811000px;}
.x4e{left:142.662000px;}
.x48{left:147.904050px;}
.x42{left:149.072700px;}
.x5f{left:150.768600px;}
.x46{left:152.788836px;}
.x40{left:153.957636px;}
.x5d{left:155.664295px;}
.x45{left:158.735700px;}
.x3f{left:159.904500px;}
.x5c{left:161.570550px;}
.x56{left:166.546050px;}
.x52{left:167.559450px;}
.x47{left:170.841816px;}
.x41{left:172.010616px;}
.x5e{left:173.702316px;}
.x44{left:174.974102px;}
.x55{left:177.371250px;}
.x51{left:178.383750px;}
.x15{left:189.189300px;}
.x5{left:191.338650px;}
.x6d{left:194.285400px;}
.x6a{left:198.875400px;}
.x31{left:206.209350px;}
.x6{left:212.876400px;}
.x35{left:224.286000px;}
.x64{left:232.932000px;}
.x17{left:244.845300px;}
.x16{left:250.341300px;}
.x33{left:253.244481px;}
.x62{left:255.109800px;}
.x63{left:259.105800px;}
.x32{left:261.345900px;}
.x54{left:272.969850px;}
.x67{left:276.698250px;}
.x34{left:277.867578px;}
.x38{left:280.046700px;}
.x18{left:301.245300px;}
.x19{left:303.741300px;}
.x1a{left:308.745300px;}
.x39{left:328.884000px;}
.x69{left:331.432800px;}
.x4f{left:353.177700px;}
.x3e{left:355.897500px;}
.x30{left:359.557350px;}
.x1c{left:360.693300px;}
.x1b{left:365.025300px;}
.x1d{left:372.525300px;}
.x4a{left:396.929400px;}
.x61{left:401.120100px;}
.x37{left:413.137350px;}
.x57{left:416.555850px;}
.x1e{left:428.925300px;}
.xa{left:455.041500px;}
.xd{left:457.085400px;}
.x3c{left:458.203536px;}
.x5a{left:460.288836px;}
.x3b{left:464.150400px;}
.x59{left:466.248300px;}
.x1f{left:475.689300px;}
.x12{left:478.341000px;}
.x8{left:480.471000px;}
.x6f{left:482.567400px;}
.x4c{left:483.630600px;}
.xe{left:491.105400px;}
.x58{left:493.331250px;}
.x4d{left:495.787161px;}
.x3a{left:497.070600px;}
.x4b{left:509.010000px;}
.x13{left:512.418000px;}
.x21{left:522.261300px;}
.xf{left:525.290400px;}
.x20{left:526.593300px;}
.x22{left:538.761300px;}
.x66{left:564.464850px;}
.x50{left:578.206512px;}
.x23{left:590.493300px;}
.x2e{left:591.646200px;}
.x24{left:596.157300px;}
.x25{left:637.137300px;}
.x27{left:641.625300px;}
.x26{left:643.629300px;}
.x11{left:663.492300px;}
.x2{left:693.365400px;}
.x29{left:696.573300px;}
.x28{left:700.905300px;}
.x2a{left:705.405300px;}
.x6b{left:721.717650px;}
.x10{left:728.391600px;}
.x6c{left:743.868150px;}
.x2d{left:749.579850px;}
.x2c{left:767.061300px;}
.x2b{left:769.065300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v2{vertical-align:20.013867pt;}
.v1{vertical-align:25.069333pt;}
.v3{vertical-align:26.812693pt;}
.ls43{letter-spacing:-6.026667pt;}
.ls38{letter-spacing:-1.578667pt;}
.ls8e{letter-spacing:-0.725333pt;}
.ls9{letter-spacing:-0.693333pt;}
.ls8c{letter-spacing:-0.597333pt;}
.ls8d{letter-spacing:-0.426667pt;}
.ls6b{letter-spacing:-0.320000pt;}
.ls65{letter-spacing:-0.160000pt;}
.ls49{letter-spacing:-0.128309pt;}
.ls37{letter-spacing:-0.128000pt;}
.ls6c{letter-spacing:-0.106667pt;}
.ls4d{letter-spacing:-0.104213pt;}
.ls4a{letter-spacing:-0.103040pt;}
.ls8b{letter-spacing:-0.085333pt;}
.ls4e{letter-spacing:-0.069475pt;}
.ls2c{letter-spacing:-0.053333pt;}
.ls5d{letter-spacing:-0.042667pt;}
.ls5e{letter-spacing:-0.042641pt;}
.ls8{letter-spacing:0.000000pt;}
.ls5b{letter-spacing:0.042667pt;}
.ls5f{letter-spacing:0.043033pt;}
.ls50{letter-spacing:0.045309pt;}
.lsa{letter-spacing:0.053333pt;}
.ls42{letter-spacing:0.054400pt;}
.ls94{letter-spacing:0.085333pt;}
.ls40{letter-spacing:0.097067pt;}
.ls7{letter-spacing:0.106667pt;}
.ls3c{letter-spacing:0.117867pt;}
.ls5c{letter-spacing:0.127922pt;}
.ls53{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.160000pt;}
.ls5a{letter-spacing:0.170667pt;}
.ls4b{letter-spacing:0.173688pt;}
.ls22{letter-spacing:0.213333pt;}
.ls47{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.266667pt;}
.ls87{letter-spacing:0.298667pt;}
.lsc{letter-spacing:0.320000pt;}
.ls78{letter-spacing:0.341333pt;}
.ls5{letter-spacing:0.373333pt;}
.ls7e{letter-spacing:0.384000pt;}
.ls13{letter-spacing:0.426667pt;}
.ls76{letter-spacing:0.469333pt;}
.ls1{letter-spacing:0.480000pt;}
.ls72{letter-spacing:0.512000pt;}
.ls32{letter-spacing:0.533333pt;}
.lsb{letter-spacing:0.586667pt;}
.ls79{letter-spacing:0.597333pt;}
.ls14{letter-spacing:0.640000pt;}
.ls7c{letter-spacing:0.682667pt;}
.ls1a{letter-spacing:0.693333pt;}
.ls6{letter-spacing:0.746667pt;}
.ls7d{letter-spacing:0.768000pt;}
.ls1b{letter-spacing:0.800000pt;}
.ls71{letter-spacing:0.810667pt;}
.ls1f{letter-spacing:0.853333pt;}
.ls2e{letter-spacing:0.906667pt;}
.ls86{letter-spacing:0.938667pt;}
.ls33{letter-spacing:0.958400pt;}
.ls12{letter-spacing:0.960000pt;}
.ls8a{letter-spacing:0.981333pt;}
.ls18{letter-spacing:1.013333pt;}
.ls84{letter-spacing:1.024000pt;}
.ls29{letter-spacing:1.066667pt;}
.ls91{letter-spacing:1.109333pt;}
.ls34{letter-spacing:1.120000pt;}
.ls6f{letter-spacing:1.152000pt;}
.ls36{letter-spacing:1.173333pt;}
.ls77{letter-spacing:1.194667pt;}
.ls61{letter-spacing:1.226667pt;}
.ls8f{letter-spacing:1.237333pt;}
.ls0{letter-spacing:1.280000pt;}
.ls89{letter-spacing:1.322667pt;}
.ls30{letter-spacing:1.333333pt;}
.ls3{letter-spacing:1.386667pt;}
.ls11{letter-spacing:1.440000pt;}
.ls2{letter-spacing:1.493333pt;}
.ls82{letter-spacing:1.536000pt;}
.ls1d{letter-spacing:1.546667pt;}
.ls83{letter-spacing:1.578667pt;}
.ls17{letter-spacing:1.600000pt;}
.ls92{letter-spacing:1.621333pt;}
.ls24{letter-spacing:1.653333pt;}
.ls2f{letter-spacing:1.706667pt;}
.ls81{letter-spacing:1.749333pt;}
.ls2a{letter-spacing:1.760000pt;}
.ls93{letter-spacing:1.792000pt;}
.ls10{letter-spacing:1.813333pt;}
.ls1e{letter-spacing:1.866667pt;}
.ls70{letter-spacing:1.877333pt;}
.ls26{letter-spacing:1.920000pt;}
.ls7b{letter-spacing:1.962667pt;}
.ls1c{letter-spacing:1.973333pt;}
.ls46{letter-spacing:2.026667pt;}
.ls7a{letter-spacing:2.048000pt;}
.lse{letter-spacing:2.080000pt;}
.ls20{letter-spacing:2.133333pt;}
.ls88{letter-spacing:2.176000pt;}
.ls21{letter-spacing:2.186667pt;}
.ls28{letter-spacing:2.240000pt;}
.ls4{letter-spacing:2.293333pt;}
.ls74{letter-spacing:2.304000pt;}
.ls25{letter-spacing:2.346667pt;}
.ls85{letter-spacing:2.389333pt;}
.ls23{letter-spacing:2.400000pt;}
.ls7f{letter-spacing:2.432000pt;}
.ls80{letter-spacing:2.474667pt;}
.ls67{letter-spacing:2.506667pt;}
.ls6e{letter-spacing:2.602667pt;}
.lsd{letter-spacing:2.613333pt;}
.ls75{letter-spacing:2.645333pt;}
.ls3a{letter-spacing:2.666667pt;}
.ls31{letter-spacing:2.720000pt;}
.ls39{letter-spacing:2.773333pt;}
.ls57{letter-spacing:2.826667pt;}
.ls56{letter-spacing:2.880000pt;}
.ls73{letter-spacing:2.901333pt;}
.lsf{letter-spacing:2.933333pt;}
.ls6a{letter-spacing:2.986667pt;}
.ls35{letter-spacing:3.040000pt;}
.ls98{letter-spacing:3.093333pt;}
.ls63{letter-spacing:3.146667pt;}
.ls62{letter-spacing:3.200000pt;}
.ls2d{letter-spacing:3.253333pt;}
.ls66{letter-spacing:3.306667pt;}
.ls90{letter-spacing:3.370667pt;}
.ls95{letter-spacing:3.413333pt;}
.ls2b{letter-spacing:3.520000pt;}
.ls58{letter-spacing:3.573333pt;}
.ls45{letter-spacing:3.733333pt;}
.ls44{letter-spacing:3.786667pt;}
.ls27{letter-spacing:3.946667pt;}
.ls64{letter-spacing:4.053333pt;}
.ls19{letter-spacing:4.320000pt;}
.ls59{letter-spacing:4.426667pt;}
.ls96{letter-spacing:4.480000pt;}
.ls68{letter-spacing:4.640000pt;}
.ls97{letter-spacing:4.693333pt;}
.ls69{letter-spacing:5.226667pt;}
.ls60{letter-spacing:6.240000pt;}
.ls6d{letter-spacing:6.720000pt;}
.ls3b{letter-spacing:108.458667pt;}
.ls4c{letter-spacing:136.419172pt;}
.ls4f{letter-spacing:136.796751pt;}
.ls55{letter-spacing:136.821726pt;}
.ls54{letter-spacing:136.859564pt;}
.ls51{letter-spacing:136.987618pt;}
.ls52{letter-spacing:137.101363pt;}
.ls48{letter-spacing:208.334173pt;}
.ls3f{letter-spacing:517.760000pt;}
.ls3d{letter-spacing:522.676267pt;}
.ls3e{letter-spacing:529.792000pt;}
.ls41{letter-spacing:540.458667pt;}
.ws4e{word-spacing:-208.334173pt;}
.ws64{word-spacing:-137.101363pt;}
.ws63{word-spacing:-136.987618pt;}
.ws6a{word-spacing:-136.859564pt;}
.ws6b{word-spacing:-136.821726pt;}
.ws5c{word-spacing:-136.796751pt;}
.ws88{word-spacing:-17.760000pt;}
.ws8c{word-spacing:-17.600000pt;}
.ws89{word-spacing:-15.413333pt;}
.ws44{word-spacing:-15.093333pt;}
.ws20{word-spacing:-14.986667pt;}
.ws0{word-spacing:-14.826667pt;}
.wsa{word-spacing:-14.346667pt;}
.ws45{word-spacing:-14.325229pt;}
.ws1f{word-spacing:-14.240000pt;}
.wsb{word-spacing:-14.080000pt;}
.wsbf{word-spacing:-14.037333pt;}
.ws8b{word-spacing:-14.026667pt;}
.ws87{word-spacing:-13.973333pt;}
.ws1{word-spacing:-13.706667pt;}
.ws8a{word-spacing:-13.600000pt;}
.ws37{word-spacing:-13.546667pt;}
.ws9{word-spacing:-13.493333pt;}
.ws38{word-spacing:-13.333333pt;}
.wsc3{word-spacing:-13.098667pt;}
.wsbe{word-spacing:-12.800000pt;}
.ws97{word-spacing:-12.714667pt;}
.ws55{word-spacing:-12.595995pt;}
.wsc2{word-spacing:-12.458667pt;}
.ws99{word-spacing:-12.416000pt;}
.ws9d{word-spacing:-12.202667pt;}
.ws71{word-spacing:-11.963044pt;}
.ws48{word-spacing:-11.889949pt;}
.ws3{word-spacing:-11.861333pt;}
.ws6e{word-spacing:-11.854068pt;}
.wsc0{word-spacing:-11.818667pt;}
.wsc1{word-spacing:-11.776000pt;}
.ws9f{word-spacing:-11.690667pt;}
.ws96{word-spacing:-11.264000pt;}
.ws93{word-spacing:-11.178667pt;}
.ws9b{word-spacing:-11.136000pt;}
.ws2{word-spacing:-11.120000pt;}
.ws94{word-spacing:-11.008000pt;}
.ws9c{word-spacing:-10.922667pt;}
.ws6d{word-spacing:-10.880000pt;}
.ws9a{word-spacing:-10.837333pt;}
.wsa0{word-spacing:-10.794667pt;}
.ws95{word-spacing:-10.709333pt;}
.ws6c{word-spacing:-10.666667pt;}
.ws5e{word-spacing:-10.540426pt;}
.ws65{word-spacing:-10.518927pt;}
.ws53{word-spacing:-10.496687pt;}
.ws98{word-spacing:-10.240000pt;}
.ws9e{word-spacing:-9.941333pt;}
.ws52{word-spacing:-9.657053pt;}
.wsc6{word-spacing:-3.370667pt;}
.wsd2{word-spacing:-3.253333pt;}
.ws2e{word-spacing:-2.720000pt;}
.ws5{word-spacing:-2.565333pt;}
.wsae{word-spacing:-2.474667pt;}
.wscc{word-spacing:-2.432000pt;}
.wsb4{word-spacing:-2.389333pt;}
.wsa1{word-spacing:-2.346667pt;}
.wsb2{word-spacing:-2.090667pt;}
.ws1b{word-spacing:-1.973333pt;}
.wsc7{word-spacing:-1.962667pt;}
.wsca{word-spacing:-1.792000pt;}
.wsb7{word-spacing:-1.749333pt;}
.ws2d{word-spacing:-1.600000pt;}
.wsaf{word-spacing:-1.578667pt;}
.ws83{word-spacing:-1.333333pt;}
.wsb8{word-spacing:-1.322667pt;}
.wsa5{word-spacing:-1.194667pt;}
.wsd1{word-spacing:-1.173333pt;}
.wsb6{word-spacing:-1.152000pt;}
.wsc9{word-spacing:-1.066667pt;}
.wsc4{word-spacing:-1.024000pt;}
.wsbb{word-spacing:-0.981333pt;}
.wsaa{word-spacing:-0.682667pt;}
.ws2f{word-spacing:-0.640000pt;}
.ws4f{word-spacing:-0.618240pt;}
.ws57{word-spacing:-0.574295pt;}
.wsa3{word-spacing:-0.554667pt;}
.wsa9{word-spacing:-0.512000pt;}
.wsad{word-spacing:-0.384000pt;}
.wsb1{word-spacing:-0.341333pt;}
.ws91{word-spacing:-0.320000pt;}
.ws49{word-spacing:-0.266667pt;}
.ws61{word-spacing:-0.265024pt;}
.ws68{word-spacing:-0.264486pt;}
.wsc5{word-spacing:-0.256000pt;}
.ws18{word-spacing:-0.213333pt;}
.ws79{word-spacing:-0.170667pt;}
.wsa8{word-spacing:-0.128000pt;}
.wsd{word-spacing:-0.106667pt;}
.ws2c{word-spacing:-0.053333pt;}
.ws5d{word-spacing:-0.045309pt;}
.ws7c{word-spacing:-0.043033pt;}
.ws7a{word-spacing:-0.042667pt;}
.ws4{word-spacing:0.000000pt;}
.ws7b{word-spacing:0.042641pt;}
.ws77{word-spacing:0.042667pt;}
.ws82{word-spacing:0.053333pt;}
.ws5b{word-spacing:0.069475pt;}
.ws51{word-spacing:0.103040pt;}
.ws5a{word-spacing:0.104213pt;}
.ws7d{word-spacing:0.106667pt;}
.ws50{word-spacing:0.128309pt;}
.ws78{word-spacing:0.170667pt;}
.wsba{word-spacing:0.298667pt;}
.ws7f{word-spacing:0.373333pt;}
.wsf{word-spacing:0.426667pt;}
.ws35{word-spacing:0.480000pt;}
.ws16{word-spacing:0.533333pt;}
.ws41{word-spacing:0.586667pt;}
.ws10{word-spacing:0.640000pt;}
.ws76{word-spacing:0.682667pt;}
.ws8f{word-spacing:0.693333pt;}
.wsbc{word-spacing:0.725333pt;}
.ws29{word-spacing:0.746667pt;}
.ws1d{word-spacing:0.800000pt;}
.ws69{word-spacing:0.810667pt;}
.ws81{word-spacing:0.853333pt;}
.wsa2{word-spacing:0.896000pt;}
.ws36{word-spacing:0.906667pt;}
.wsb3{word-spacing:0.938667pt;}
.ws2a{word-spacing:1.013333pt;}
.wsd0{word-spacing:1.066667pt;}
.wsa7{word-spacing:1.152000pt;}
.wsce{word-spacing:1.173333pt;}
.wsab{word-spacing:1.194667pt;}
.ws34{word-spacing:1.226667pt;}
.ws14{word-spacing:1.386667pt;}
.ws8d{word-spacing:1.440000pt;}
.wscb{word-spacing:1.450667pt;}
.wsb5{word-spacing:1.536000pt;}
.ws4d{word-spacing:1.578667pt;}
.ws11{word-spacing:1.600000pt;}
.ws58{word-spacing:1.664000pt;}
.ws33{word-spacing:1.706667pt;}
.ws80{word-spacing:1.760000pt;}
.ws72{word-spacing:1.866667pt;}
.ws73{word-spacing:1.920000pt;}
.ws62{word-spacing:1.962667pt;}
.wscf{word-spacing:2.026667pt;}
.ws7e{word-spacing:2.080000pt;}
.ws1a{word-spacing:2.133333pt;}
.wsbd{word-spacing:2.176000pt;}
.ws8{word-spacing:2.186667pt;}
.ws19{word-spacing:2.240000pt;}
.wsb0{word-spacing:2.304000pt;}
.ws84{word-spacing:2.346667pt;}
.ws75{word-spacing:2.474667pt;}
.ws43{word-spacing:2.506667pt;}
.wsa6{word-spacing:2.517333pt;}
.ws13{word-spacing:2.613333pt;}
.ws12{word-spacing:2.666667pt;}
.wsb9{word-spacing:2.688000pt;}
.wsc8{word-spacing:2.986667pt;}
.ws1c{word-spacing:3.040000pt;}
.ws90{word-spacing:3.093333pt;}
.wsc{word-spacing:3.200000pt;}
.ws1e{word-spacing:3.306667pt;}
.ws28{word-spacing:3.360000pt;}
.ws59{word-spacing:3.370667pt;}
.ws32{word-spacing:3.413333pt;}
.wsac{word-spacing:3.456000pt;}
.wse{word-spacing:3.466667pt;}
.ws4c{word-spacing:3.498667pt;}
.ws85{word-spacing:3.520000pt;}
.wsa4{word-spacing:3.541333pt;}
.ws42{word-spacing:3.573333pt;}
.ws40{word-spacing:3.733333pt;}
.ws15{word-spacing:3.786667pt;}
.ws8e{word-spacing:3.840000pt;}
.wscd{word-spacing:3.893333pt;}
.wsd3{word-spacing:3.946667pt;}
.ws17{word-spacing:4.053333pt;}
.ws3e{word-spacing:4.106667pt;}
.ws4b{word-spacing:4.160000pt;}
.ws3f{word-spacing:4.266667pt;}
.ws74{word-spacing:4.320000pt;}
.ws6{word-spacing:4.373333pt;}
.ws7{word-spacing:4.426667pt;}
.ws4a{word-spacing:4.853333pt;}
.ws92{word-spacing:4.906667pt;}
.ws30{word-spacing:5.120000pt;}
.ws31{word-spacing:5.280000pt;}
.ws86{word-spacing:5.386667pt;}
.ws2b{word-spacing:6.026667pt;}
.ws39{word-spacing:86.272000pt;}
.ws47{word-spacing:90.645013pt;}
.ws54{word-spacing:105.155659pt;}
.ws66{word-spacing:105.189269pt;}
.ws67{word-spacing:105.378459pt;}
.ws5f{word-spacing:105.404256pt;}
.ws60{word-spacing:105.593832pt;}
.ws6f{word-spacing:111.798522pt;}
.ws70{word-spacing:117.693979pt;}
.ws26{word-spacing:129.408000pt;}
.ws27{word-spacing:133.376000pt;}
.ws23{word-spacing:146.304000pt;}
.ws22{word-spacing:150.741333pt;}
.ws21{word-spacing:154.709333pt;}
.ws24{word-spacing:159.957333pt;}
.ws25{word-spacing:161.408000pt;}
.ws46{word-spacing:165.152368pt;}
.ws56{word-spacing:248.934765pt;}
.ws3a{word-spacing:485.930667pt;}
.ws3c{word-spacing:522.666667pt;}
.ws3b{word-spacing:658.133333pt;}
.ws3d{word-spacing:668.800000pt;}
._a{margin-left:-2576.085333pt;}
._2b{margin-left:-2554.922667pt;}
._4c{margin-left:-556.324591pt;}
._4b{margin-left:-59.772189pt;}
._4d{margin-left:-50.218966pt;}
._4a{margin-left:-33.479311pt;}
._5{margin-left:-6.773333pt;}
._4e{margin-left:-5.882667pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.640000pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.960000pt;}
._6{width:0.906667pt;}
._9{width:1.834667pt;}
._8{width:2.752000pt;}
._7{width:4.480000pt;}
._b{width:6.080000pt;}
._c{width:26.794667pt;}
._37{width:51.157333pt;}
._2{width:52.980800pt;}
._40{width:54.741333pt;}
._38{width:61.824000pt;}
._31{width:67.200000pt;}
._36{width:68.522667pt;}
._3f{width:72.106667pt;}
._41{width:73.386667pt;}
._3d{width:76.672000pt;}
._33{width:79.189333pt;}
._34{width:89.856000pt;}
._2a{width:102.986667pt;}
._18{width:112.981333pt;}
._2f{width:114.176000pt;}
._1d{width:117.674667pt;}
._11{width:123.648000pt;}
._24{width:124.842667pt;}
._30{width:126.421333pt;}
._48{width:129.657023pt;}
._22{width:130.730667pt;}
._49{width:131.937747pt;}
._21{width:134.314667pt;}
._44{width:136.419172pt;}
._47{width:137.745639pt;}
._2c{width:141.909333pt;}
._28{width:144.554667pt;}
._1c{width:145.834667pt;}
._19{width:150.741333pt;}
._12{width:156.970667pt;}
._17{width:161.408000pt;}
._29{width:163.584000pt;}
._15{width:165.888000pt;}
._23{width:167.637333pt;}
._25{width:169.088000pt;}
._f{width:172.074667pt;}
._1f{width:173.397333pt;}
._e{width:176.554667pt;}
._20{width:182.741333pt;}
._1a{width:184.917333pt;}
._1e{width:187.690667pt;}
._16{width:194.773333pt;}
._13{width:197.888000pt;}
._26{width:199.466667pt;}
._10{width:205.440000pt;}
._43{width:207.818877pt;}
._d{width:220.757333pt;}
._14{width:221.952000pt;}
._1b{width:229.034667pt;}
._42{width:240.853333pt;}
._39{width:247.978667pt;}
._27{width:256.397333pt;}
._46{width:273.320212pt;}
._45{width:285.380405pt;}
._3e{width:402.432000pt;}
._2d{width:408.618667pt;}
._32{width:409.557333pt;}
._35{width:456.917333pt;}
._3c{width:634.069333pt;}
._2e{width:642.730667pt;}
._3b{width:679.466667pt;}
._3a{width:686.592000pt;}
.fs9{font-size:24.874667pt;}
.fs8{font-size:31.093333pt;}
.fs5{font-size:34.666667pt;}
.fsd{font-size:34.737600pt;}
.fs0{font-size:37.333333pt;}
.fse{font-size:37.757867pt;}
.fs15{font-size:37.837867pt;}
.fs12{font-size:37.915200pt;}
.fs4{font-size:40.000000pt;}
.fs18{font-size:42.640533pt;}
.fs7{font-size:42.666667pt;}
.fsc{font-size:42.769600pt;}
.fs19{font-size:43.032533pt;}
.fs17{font-size:44.081067pt;}
.fs14{font-size:44.170667pt;}
.fs10{font-size:44.176533pt;}
.fsf{font-size:45.309333pt;}
.fs16{font-size:45.405333pt;}
.fs13{font-size:45.498133pt;}
.fs11{font-size:50.218133pt;}
.fsb{font-size:51.520000pt;}
.fsa{font-size:51.529600pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2e{bottom:42.468667pt;}
.yd3{bottom:51.745200pt;}
.y1c1{bottom:68.475600pt;}
.y292{bottom:71.923867pt;}
.y1a7{bottom:74.057067pt;}
.y15a{bottom:74.271067pt;}
.y1e8{bottom:74.342533pt;}
.yb4{bottom:74.365467pt;}
.y64{bottom:74.462533pt;}
.y1af{bottom:75.592533pt;}
.y2b{bottom:78.246000pt;}
.y22f{bottom:81.886133pt;}
.y83{bottom:82.272400pt;}
.yb1{bottom:82.699333pt;}
.y26f{bottom:84.678667pt;}
.y291{bottom:87.923867pt;}
.y1a6{bottom:88.051733pt;}
.y159{bottom:88.265733pt;}
.yb3{bottom:88.360133pt;}
.y1f3{bottom:89.976533pt;}
.y1e7{bottom:90.342533pt;}
.y63{bottom:90.462533pt;}
.y2a{bottom:91.576000pt;}
.y22e{bottom:95.219467pt;}
.yb0{bottom:97.142000pt;}
.y26e{bottom:98.012000pt;}
.y1a5{bottom:102.046400pt;}
.y158{bottom:102.260400pt;}
.yb2{bottom:102.354800pt;}
.y290{bottom:103.923867pt;}
.y1e6{bottom:106.342533pt;}
.y62{bottom:106.462533pt;}
.y82{bottom:108.053733pt;}
.y22d{bottom:108.552800pt;}
.y26d{bottom:111.345333pt;}
.yaf{bottom:111.584667pt;}
.y1a4{bottom:116.041067pt;}
.y28f{bottom:119.923867pt;}
.y22c{bottom:121.886133pt;}
.ye0{bottom:122.313333pt;}
.y1f2{bottom:122.336533pt;}
.y1e5{bottom:122.342533pt;}
.y61{bottom:122.462533pt;}
.y81{bottom:122.496400pt;}
.y165{bottom:123.448000pt;}
.ybc{bottom:124.616000pt;}
.y26c{bottom:124.678667pt;}
.y119{bottom:125.900133pt;}
.y157{bottom:125.900267pt;}
.yae{bottom:126.055467pt;}
.y196{bottom:127.025200pt;}
.yd4{bottom:128.798800pt;}
.y1a3{bottom:130.035733pt;}
.y22b{bottom:135.219467pt;}
.y28e{bottom:135.923867pt;}
.y80{bottom:136.939067pt;}
.y26b{bottom:138.012000pt;}
.y1f1{bottom:138.336533pt;}
.y1e4{bottom:138.342533pt;}
.y60{bottom:138.462533pt;}
.yad{bottom:140.498133pt;}
.y1a2{bottom:144.030400pt;}
.y27{bottom:147.376000pt;}
.y115{bottom:148.082768pt;}
.y153{bottom:148.175828pt;}
.y22a{bottom:148.552800pt;}
.yd2{bottom:148.769411pt;}
.y192{bottom:149.537937pt;}
.y26a{bottom:151.345333pt;}
.y7f{bottom:151.413333pt;}
.y28d{bottom:151.923867pt;}
.y1f0{bottom:153.976533pt;}
.y1e3{bottom:154.342533pt;}
.y5f{bottom:154.462533pt;}
.yac{bottom:154.940800pt;}
.y1a1{bottom:158.025067pt;}
.y10f{bottom:159.315733pt;}
.y14d{bottom:159.455600pt;}
.y18c{bottom:160.842000pt;}
.y229{bottom:161.886133pt;}
.y26{bottom:163.376000pt;}
.ycc{bottom:164.099467pt;}
.y116{bottom:164.186667pt;}
.y269{bottom:164.678667pt;}
.y154{bottom:165.838400pt;}
.y7e{bottom:165.856000pt;}
.y28c{bottom:167.923867pt;}
.y193{bottom:168.729467pt;}
.yab{bottom:169.383467pt;}
.y1e2{bottom:170.342533pt;}
.y5e{bottom:170.462533pt;}
.y1a0{bottom:172.019733pt;}
.y228{bottom:175.219467pt;}
.y110{bottom:175.646011pt;}
.y14e{bottom:175.806530pt;}
.y18d{bottom:177.112283pt;}
.y268{bottom:178.012000pt;}
.y25{bottom:179.376000pt;}
.y7d{bottom:180.298667pt;}
.y1be{bottom:180.713733pt;}
.yaa{bottom:183.826133pt;}
.y28b{bottom:183.923867pt;}
.y19f{bottom:186.014400pt;}
.y1ef{bottom:186.336533pt;}
.y1e1{bottom:186.342533pt;}
.y5d{bottom:186.462533pt;}
.ycd{bottom:187.287787pt;}
.y227{bottom:188.552800pt;}
.y267{bottom:191.345333pt;}
.y111{bottom:192.070683pt;}
.y14f{bottom:192.110066pt;}
.y18e{bottom:193.382565pt;}
.y7c{bottom:194.741333pt;}
.y24{bottom:195.376000pt;}
.y1ae{bottom:198.947067pt;}
.y28a{bottom:199.923867pt;}
.y226{bottom:201.886133pt;}
.y1ee{bottom:201.976533pt;}
.y1e0{bottom:202.342533pt;}
.y5c{bottom:202.462533pt;}
.y266{bottom:204.678667pt;}
.y1bd{bottom:207.584000pt;}
.y112{bottom:208.400960pt;}
.y150{bottom:208.413602pt;}
.y7b{bottom:209.184000pt;}
.ya9{bottom:209.607467pt;}
.y18f{bottom:209.700145pt;}
.yce{bottom:210.604931pt;}
.y1c0{bottom:211.077265pt;}
.y23{bottom:211.376000pt;}
.y225{bottom:215.219467pt;}
.y289{bottom:215.923867pt;}
.yd8{bottom:216.142000pt;}
.y11c{bottom:217.891600pt;}
.y265{bottom:218.012000pt;}
.y15d{bottom:218.308667pt;}
.y1df{bottom:218.342533pt;}
.y5b{bottom:218.462533pt;}
.y7a{bottom:223.626667pt;}
.ya8{bottom:224.050133pt;}
.y151{bottom:224.717138pt;}
.y113{bottom:224.825632pt;}
.y190{bottom:225.970428pt;}
.y29{bottom:227.376000pt;}
.y224{bottom:228.552800pt;}
.y1bf{bottom:230.280533pt;}
.yd7{bottom:230.866933pt;}
.y264{bottom:231.345333pt;}
.y288{bottom:231.923867pt;}
.y11b{bottom:232.062133pt;}
.y15c{bottom:232.828533pt;}
.ycf{bottom:233.793251pt;}
.y1ed{bottom:234.336533pt;}
.y1de{bottom:234.342533pt;}
.y5a{bottom:234.462533pt;}
.y79{bottom:238.069333pt;}
.ya7{bottom:238.492800pt;}
.y152{bottom:241.020674pt;}
.y114{bottom:241.155909pt;}
.y223{bottom:241.886133pt;}
.y191{bottom:242.240711pt;}
.y22{bottom:243.017867pt;}
.y1b3{bottom:243.081733pt;}
.y28{bottom:243.376000pt;}
.y263{bottom:244.678667pt;}
.yd6{bottom:245.591733pt;}
.y11a{bottom:246.233867pt;}
.y15b{bottom:247.396800pt;}
.y1ec{bottom:250.336533pt;}
.y1dd{bottom:250.342533pt;}
.y59{bottom:250.462533pt;}
.y78{bottom:252.512000pt;}
.ya6{bottom:252.963600pt;}
.yc9{bottom:253.158000pt;}
.y222{bottom:255.219467pt;}
.y155{bottom:256.280533pt;}
.y117{bottom:256.353067pt;}
.yd0{bottom:256.981571pt;}
.y194{bottom:257.471333pt;}
.y1b4{bottom:257.609733pt;}
.y262{bottom:258.012000pt;}
.y287{bottom:263.923867pt;}
.y1eb{bottom:265.982533pt;}
.y1dc{bottom:266.342533pt;}
.y58{bottom:266.462533pt;}
.y77{bottom:266.954667pt;}
.ya5{bottom:267.406267pt;}
.y221{bottom:268.552800pt;}
.y145{bottom:268.934575pt;}
.y261{bottom:271.345333pt;}
.y1b5{bottom:272.127067pt;}
.y286{bottom:279.923867pt;}
.yd1{bottom:280.169891pt;}
.ya4{bottom:281.848933pt;}
.y220{bottom:281.886133pt;}
.y100{bottom:282.124368pt;}
.y144{bottom:282.204895pt;}
.y1db{bottom:282.342533pt;}
.y57{bottom:282.462533pt;}
.y185{bottom:283.343501pt;}
.y260{bottom:284.678667pt;}
.y1b6{bottom:286.655067pt;}
.y76{bottom:292.736000pt;}
.yfa{bottom:293.357333pt;}
.y13e{bottom:293.484667pt;}
.y17f{bottom:294.600267pt;}
.y21f{bottom:295.219467pt;}
.y285{bottom:295.923867pt;}
.ya3{bottom:296.291600pt;}
.y25f{bottom:298.012000pt;}
.y10e{bottom:298.131067pt;}
.y1da{bottom:298.342533pt;}
.y56{bottom:298.462533pt;}
.y14c{bottom:299.821867pt;}
.yd5{bottom:300.656640pt;}
.y1b7{bottom:301.183067pt;}
.y18b{bottom:302.532667pt;}
.y75{bottom:307.402667pt;}
.y21e{bottom:308.552800pt;}
.yfb{bottom:309.687611pt;}
.y13f{bottom:309.835597pt;}
.ya2{bottom:310.734267pt;}
.y180{bottom:310.917847pt;}
.y21{bottom:311.115467pt;}
.y25e{bottom:311.345333pt;}
.y284{bottom:311.923867pt;}
.y1d9{bottom:314.342533pt;}
.y55{bottom:314.462533pt;}
.y1b8{bottom:315.711067pt;}
.y21d{bottom:321.886133pt;}
.y74{bottom:322.069333pt;}
.y25d{bottom:324.678667pt;}
.yfc{bottom:326.112283pt;}
.y140{bottom:326.139133pt;}
.y20{bottom:327.123733pt;}
.y181{bottom:327.188129pt;}
.y283{bottom:327.923867pt;}
.y1b9{bottom:330.239067pt;}
.y1d8{bottom:330.342533pt;}
.y54{bottom:330.462533pt;}
.y21c{bottom:335.219467pt;}
.ya1{bottom:336.515600pt;}
.y25c{bottom:338.012000pt;}
.yca{bottom:340.973200pt;}
.yfd{bottom:342.442560pt;}
.y141{bottom:342.442669pt;}
.y182{bottom:343.458412pt;}
.y1ba{bottom:344.767067pt;}
.y1d7{bottom:346.342533pt;}
.y53{bottom:346.462533pt;}
.y21b{bottom:348.552800pt;}
.y73{bottom:350.862533pt;}
.ya0{bottom:350.958267pt;}
.y25b{bottom:351.345333pt;}
.y1f{bottom:351.430400pt;}
.y142{bottom:358.746205pt;}
.yfe{bottom:358.867232pt;}
.y1bb{bottom:359.295067pt;}
.y282{bottom:359.563867pt;}
.y183{bottom:359.775992pt;}
.yc8{bottom:360.940077pt;}
.y21a{bottom:361.886133pt;}
.y1ea{bottom:361.982533pt;}
.y1d6{bottom:362.342533pt;}
.y52{bottom:362.462533pt;}
.y156{bottom:364.097733pt;}
.y25a{bottom:364.678667pt;}
.y9f{bottom:365.400933pt;}
.y118{bottom:365.457600pt;}
.y1e{bottom:367.430400pt;}
.y72{bottom:368.195867pt;}
.y1bc{bottom:373.823067pt;}
.y143{bottom:375.049741pt;}
.yff{bottom:375.197509pt;}
.y219{bottom:375.219467pt;}
.y184{bottom:376.046275pt;}
.yc2{bottom:376.270133pt;}
.y195{bottom:376.692667pt;}
.y259{bottom:378.012000pt;}
.y1d5{bottom:378.342533pt;}
.y51{bottom:378.462533pt;}
.y9e{bottom:379.864667pt;}
.y1d{bottom:383.430400pt;}
.y218{bottom:388.552800pt;}
.y146{bottom:390.310667pt;}
.y101{bottom:390.393600pt;}
.y186{bottom:391.275200pt;}
.y258{bottom:391.345333pt;}
.y9d{bottom:394.307333pt;}
.y1d4{bottom:394.342533pt;}
.y50{bottom:394.462533pt;}
.y1c{bottom:399.430400pt;}
.yc3{bottom:399.458453pt;}
.y217{bottom:401.886133pt;}
.y14b{bottom:402.918000pt;}
.y13c{bottom:402.918381pt;}
.y257{bottom:404.678667pt;}
.y9c{bottom:408.750000pt;}
.y1d3{bottom:410.342533pt;}
.y4f{bottom:410.462533pt;}
.y6f{bottom:410.595867pt;}
.y216{bottom:415.219467pt;}
.y1b{bottom:415.430400pt;}
.yf8{bottom:416.163701pt;}
.y13b{bottom:416.236095pt;}
.y17d{bottom:417.147235pt;}
.y256{bottom:418.012000pt;}
.yc4{bottom:422.646773pt;}
.y9b{bottom:423.192667pt;}
.y1d2{bottom:426.342533pt;}
.y4e{bottom:426.462533pt;}
.y6e{bottom:426.595867pt;}
.yf2{bottom:427.396667pt;}
.y135{bottom:427.515867pt;}
.y177{bottom:428.404000pt;}
.y215{bottom:428.552800pt;}
.y19e{bottom:431.006400pt;}
.y255{bottom:431.345333pt;}
.y1a{bottom:431.430400pt;}
.y10d{bottom:432.172000pt;}
.y14a{bottom:433.852000pt;}
.y18a{bottom:436.336933pt;}
.y9a{bottom:437.635333pt;}
.y214{bottom:441.886133pt;}
.y66{bottom:442.102533pt;}
.y1d1{bottom:442.342533pt;}
.y4d{bottom:442.462533pt;}
.y6d{bottom:442.595867pt;}
.yf3{bottom:443.726944pt;}
.y136{bottom:443.819403pt;}
.y178{bottom:444.674283pt;}
.y254{bottom:444.678667pt;}
.y19d{bottom:445.001067pt;}
.yc5{bottom:445.835093pt;}
.y19{bottom:447.430400pt;}
.y213{bottom:455.219467pt;}
.y253{bottom:458.012000pt;}
.y1d0{bottom:458.342533pt;}
.y4c{bottom:458.462533pt;}
.y6c{bottom:458.595867pt;}
.y19c{bottom:458.995733pt;}
.yf4{bottom:460.151616pt;}
.y137{bottom:460.170333pt;}
.y179{bottom:460.991863pt;}
.ybd{bottom:462.324667pt;}
.y99{bottom:463.416667pt;}
.y18{bottom:463.430400pt;}
.y212{bottom:468.552800pt;}
.yc6{bottom:469.023413pt;}
.y252{bottom:471.345333pt;}
.y19b{bottom:472.990400pt;}
.y65{bottom:473.982533pt;}
.y1cf{bottom:474.342533pt;}
.y4b{bottom:474.462533pt;}
.y6b{bottom:474.595867pt;}
.y138{bottom:476.473869pt;}
.yf5{bottom:476.481893pt;}
.y17a{bottom:477.262145pt;}
.y17{bottom:479.430400pt;}
.y211{bottom:481.886133pt;}
.y251{bottom:484.678667pt;}
.y19a{bottom:486.985067pt;}
.y98{bottom:489.198000pt;}
.y1ce{bottom:490.342533pt;}
.y4a{bottom:490.462533pt;}
.y6a{bottom:490.595867pt;}
.yc7{bottom:492.211733pt;}
.y139{bottom:492.777405pt;}
.yf6{bottom:492.812171pt;}
.y17b{bottom:493.532428pt;}
.y210{bottom:495.219467pt;}
.y16{bottom:495.430400pt;}
.y250{bottom:498.012000pt;}
.y199{bottom:500.979733pt;}
.y1cd{bottom:506.342533pt;}
.y49{bottom:506.462533pt;}
.y20f{bottom:508.552800pt;}
.y13a{bottom:509.080941pt;}
.yf7{bottom:509.236843pt;}
.y17c{bottom:509.850008pt;}
.y24f{bottom:511.345333pt;}
.y15{bottom:511.430400pt;}
.ycb{bottom:512.702240pt;}
.y198{bottom:514.974400pt;}
.y97{bottom:517.995867pt;}
.y20e{bottom:521.886133pt;}
.y69{bottom:522.235867pt;}
.y1cc{bottom:522.342533pt;}
.y48{bottom:522.462533pt;}
.y13d{bottom:524.340933pt;}
.yf9{bottom:524.434000pt;}
.y24e{bottom:524.678667pt;}
.y17e{bottom:525.079467pt;}
.y14{bottom:527.430400pt;}
.y197{bottom:528.969067pt;}
.y20d{bottom:535.219467pt;}
.y96{bottom:535.329200pt;}
.y24d{bottom:538.012000pt;}
.y68{bottom:538.235867pt;}
.y1cb{bottom:538.342533pt;}
.y47{bottom:538.462533pt;}
.y2a9{bottom:538.470533pt;}
.y13{bottom:543.430400pt;}
.y20c{bottom:548.552800pt;}
.yf0{bottom:549.260635pt;}
.y133{bottom:549.365028pt;}
.y1ad{bottom:549.676000pt;}
.y175{bottom:550.052701pt;}
.ybe{bottom:551.085200pt;}
.y24c{bottom:551.345333pt;}
.y95{bottom:552.662533pt;}
.y1ca{bottom:554.342533pt;}
.y46{bottom:554.462533pt;}
.y2a8{bottom:554.470533pt;}
.y12{bottom:559.430400pt;}
.yea{bottom:560.493600pt;}
.y12d{bottom:560.644800pt;}
.y16f{bottom:561.309467pt;}
.y20b{bottom:561.886133pt;}
.y24b{bottom:564.678667pt;}
.y10c{bottom:565.362267pt;}
.y149{bottom:567.028667pt;}
.y189{bottom:569.243067pt;}
.y94{bottom:569.995867pt;}
.y1c9{bottom:570.342533pt;}
.y45{bottom:570.462533pt;}
.y2a7{bottom:570.470533pt;}
.ybb{bottom:571.053277pt;}
.y20a{bottom:575.219467pt;}
.y11{bottom:575.430400pt;}
.yeb{bottom:576.918272pt;}
.y12e{bottom:576.995730pt;}
.y170{bottom:577.579749pt;}
.y24a{bottom:578.012000pt;}
.y1c8{bottom:586.342533pt;}
.yb5{bottom:586.383333pt;}
.y44{bottom:586.462533pt;}
.y2a6{bottom:586.470533pt;}
.y1a8{bottom:586.852533pt;}
.y93{bottom:587.329200pt;}
.y209{bottom:588.552800pt;}
.y249{bottom:591.345333pt;}
.y10{bottom:591.430400pt;}
.yec{bottom:593.248549pt;}
.y12f{bottom:593.299266pt;}
.y171{bottom:593.897329pt;}
.y208{bottom:601.886133pt;}
.y1c7{bottom:602.342533pt;}
.y43{bottom:602.462533pt;}
.y92{bottom:604.662533pt;}
.y248{bottom:604.678667pt;}
.yf{bottom:607.430400pt;}
.yb6{bottom:609.571653pt;}
.yed{bottom:609.578827pt;}
.y130{bottom:609.602802pt;}
.y172{bottom:610.167612pt;}
.y207{bottom:615.219467pt;}
.y247{bottom:618.012000pt;}
.y1c6{bottom:618.342533pt;}
.y42{bottom:618.462533pt;}
.y2a5{bottom:618.470533pt;}
.y1a9{bottom:619.193867pt;}
.y91{bottom:621.995867pt;}
.ye{bottom:623.430400pt;}
.y131{bottom:625.906338pt;}
.yee{bottom:626.003499pt;}
.y173{bottom:626.437895pt;}
.y206{bottom:628.552800pt;}
.y246{bottom:631.345333pt;}
.yb7{bottom:632.888797pt;}
.y1c5{bottom:634.342533pt;}
.y41{bottom:634.462533pt;}
.y2a4{bottom:634.470533pt;}
.yd{bottom:639.430400pt;}
.y205{bottom:641.886133pt;}
.y132{bottom:642.209874pt;}
.yef{bottom:642.333776pt;}
.y174{bottom:642.755475pt;}
.y245{bottom:644.678667pt;}
.y1c4{bottom:650.342533pt;}
.y40{bottom:650.462533pt;}
.y2a3{bottom:650.470533pt;}
.y1aa{bottom:651.535200pt;}
.y204{bottom:655.219467pt;}
.yc{bottom:655.430400pt;}
.yb8{bottom:656.077117pt;}
.y134{bottom:657.470800pt;}
.yf1{bottom:657.531067pt;}
.y176{bottom:657.984933pt;}
.y244{bottom:658.012000pt;}
.y90{bottom:666.342533pt;}
.y3f{bottom:666.462533pt;}
.y2a2{bottom:666.470533pt;}
.y203{bottom:668.552800pt;}
.y243{bottom:671.345333pt;}
.yb9{bottom:679.265437pt;}
.y202{bottom:681.886133pt;}
.y8f{bottom:682.342533pt;}
.ye8{bottom:682.451301pt;}
.y3e{bottom:682.462533pt;}
.y2a1{bottom:682.470533pt;}
.y12b{bottom:682.494167pt;}
.y109{bottom:682.734770pt;}
.y16d{bottom:682.958301pt;}
.y1ab{bottom:683.940533pt;}
.y242{bottom:684.678667pt;}
.yc1{bottom:688.283067pt;}
.ye2{bottom:693.684267pt;}
.y125{bottom:693.821333pt;}
.y167{bottom:694.215067pt;}
.y201{bottom:695.219467pt;}
.yb{bottom:695.571067pt;}
.y103{bottom:695.855200pt;}
.y241{bottom:698.012000pt;}
.y8e{bottom:698.342533pt;}
.y3d{bottom:698.462533pt;}
.y2a0{bottom:698.470533pt;}
.y10a{bottom:698.534133pt;}
.y148{bottom:700.157467pt;}
.y188{bottom:702.148000pt;}
.yba{bottom:702.453757pt;}
.ya{bottom:706.638400pt;}
.y200{bottom:708.552800pt;}
.yc0{bottom:708.893733pt;}
.ye3{bottom:710.014544pt;}
.y126{bottom:710.124869pt;}
.y168{bottom:710.485349pt;}
.y104{bottom:711.239678pt;}
.y281{bottom:711.345333pt;}
.y240{bottom:711.347467pt;}
.y8d{bottom:714.342533pt;}
.y3c{bottom:714.462533pt;}
.y29f{bottom:714.470533pt;}
.y1ac{bottom:716.281867pt;}
.y1b2{bottom:717.088933pt;}
.y1ff{bottom:721.886133pt;}
.ybf{bottom:722.930160pt;}
.y280{bottom:724.678667pt;}
.y23f{bottom:724.680800pt;}
.ye4{bottom:726.344821pt;}
.y127{bottom:726.428405pt;}
.y105{bottom:726.624155pt;}
.y169{bottom:726.802929pt;}
.y1e9{bottom:729.982533pt;}
.y8c{bottom:730.342533pt;}
.y3b{bottom:730.462533pt;}
.y29e{bottom:730.470533pt;}
.y1b1{bottom:730.732133pt;}
.y9{bottom:734.829867pt;}
.y1fe{bottom:735.219467pt;}
.y27f{bottom:738.012000pt;}
.y23e{bottom:738.014133pt;}
.y106{bottom:741.920280pt;}
.y128{bottom:742.731941pt;}
.ye5{bottom:742.769493pt;}
.y16a{bottom:743.073212pt;}
.y1b0{bottom:744.376533pt;}
.y1c3{bottom:745.982533pt;}
.y8b{bottom:746.342533pt;}
.y3a{bottom:746.462533pt;}
.y29d{bottom:746.470533pt;}
.y8{bottom:746.829867pt;}
.y1fd{bottom:748.552800pt;}
.y27e{bottom:751.345333pt;}
.y23d{bottom:751.347467pt;}
.y107{bottom:757.304758pt;}
.y7{bottom:758.829867pt;}
.y129{bottom:759.035477pt;}
.ye6{bottom:759.099771pt;}
.y16b{bottom:759.343495pt;}
.y1fc{bottom:761.886133pt;}
.y8a{bottom:762.342533pt;}
.y39{bottom:762.462533pt;}
.y29c{bottom:762.470533pt;}
.y27d{bottom:764.678667pt;}
.y23c{bottom:764.680800pt;}
.y108{bottom:772.689236pt;}
.y1fb{bottom:775.219467pt;}
.y12a{bottom:775.339013pt;}
.ye7{bottom:775.524443pt;}
.y16c{bottom:775.661075pt;}
.y27c{bottom:778.012000pt;}
.y23b{bottom:778.014133pt;}
.y89{bottom:778.342533pt;}
.y38{bottom:778.462533pt;}
.y29b{bottom:778.470533pt;}
.y1fa{bottom:788.552800pt;}
.y6{bottom:789.183067pt;}
.y10b{bottom:789.494800pt;}
.y12c{bottom:790.599600pt;}
.ye9{bottom:790.628000pt;}
.y16e{bottom:790.891067pt;}
.y27b{bottom:791.345333pt;}
.y23a{bottom:791.347467pt;}
.y88{bottom:794.342533pt;}
.y37{bottom:794.462533pt;}
.y29a{bottom:794.470533pt;}
.y166{bottom:800.348533pt;}
.y124{bottom:801.464133pt;}
.ye1{bottom:801.505333pt;}
.y1f9{bottom:801.886133pt;}
.y27a{bottom:804.678667pt;}
.y239{bottom:804.680800pt;}
.y87{bottom:810.342533pt;}
.y36{bottom:810.462533pt;}
.y299{bottom:810.470533pt;}
.y1f8{bottom:815.219467pt;}
.ydf{bottom:815.547701pt;}
.y123{bottom:815.671428pt;}
.y164{bottom:815.864301pt;}
.y279{bottom:818.012000pt;}
.y238{bottom:818.014133pt;}
.y86{bottom:826.342533pt;}
.y35{bottom:826.462533pt;}
.y298{bottom:826.470533pt;}
.yd9{bottom:826.780667pt;}
.y11d{bottom:826.951200pt;}
.y15e{bottom:827.121067pt;}
.y1f7{bottom:828.552800pt;}
.y5{bottom:830.226133pt;}
.y278{bottom:831.345333pt;}
.y237{bottom:831.347467pt;}
.y102{bottom:832.821333pt;}
.y147{bottom:833.287467pt;}
.y187{bottom:835.054133pt;}
.y34{bottom:842.462533pt;}
.y297{bottom:842.470533pt;}
.yda{bottom:843.205339pt;}
.y11e{bottom:843.254736pt;}
.y15f{bottom:843.391349pt;}
.y277{bottom:844.678667pt;}
.y236{bottom:844.680800pt;}
.y85{bottom:857.982533pt;}
.y1f6{bottom:857.984533pt;}
.y276{bottom:858.012000pt;}
.y235{bottom:858.014133pt;}
.y33{bottom:858.462533pt;}
.ydb{bottom:859.535616pt;}
.y11f{bottom:859.558272pt;}
.y160{bottom:859.708929pt;}
.y4{bottom:862.635733pt;}
.y275{bottom:871.345333pt;}
.y234{bottom:871.347467pt;}
.y32{bottom:874.462533pt;}
.y296{bottom:874.470533pt;}
.y120{bottom:875.861808pt;}
.ydc{bottom:875.865893pt;}
.y161{bottom:875.979212pt;}
.y274{bottom:884.678667pt;}
.y233{bottom:884.680800pt;}
.y31{bottom:890.462533pt;}
.y295{bottom:890.470533pt;}
.y121{bottom:892.165344pt;}
.y162{bottom:892.249495pt;}
.ydd{bottom:892.290565pt;}
.y3{bottom:895.045333pt;}
.y273{bottom:898.012000pt;}
.y232{bottom:898.014133pt;}
.y30{bottom:906.462533pt;}
.y1f5{bottom:906.464533pt;}
.y294{bottom:906.470533pt;}
.y71{bottom:906.475867pt;}
.y122{bottom:908.516274pt;}
.y163{bottom:908.567075pt;}
.yde{bottom:908.620843pt;}
.y272{bottom:911.345333pt;}
.y231{bottom:911.347467pt;}
.y1f4{bottom:922.104533pt;}
.y2f{bottom:922.462533pt;}
.y293{bottom:922.470533pt;}
.y70{bottom:922.475867pt;}
.y271{bottom:924.678667pt;}
.y230{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y67{bottom:1006.594400pt;}
.y1c2{bottom:1006.597067pt;}
.y270{bottom:1006.598667pt;}
.y84{bottom:1006.603067pt;}
.y2d{bottom:1009.860000pt;}
.y2c{bottom:1022.660000pt;}
.h7{height:25.255208pt;}
.h18{height:25.306884pt;}
.h2{height:27.197917pt;}
.h19{height:27.507196pt;}
.h21{height:27.565477pt;}
.h1e{height:27.621816pt;}
.hc{height:29.140625pt;}
.h6{height:29.160156pt;}
.h10{height:29.645833pt;}
.h26{height:31.064295pt;}
.he{height:31.083333pt;}
.hd{height:31.104167pt;}
.h17{height:31.158322pt;}
.h28{height:31.349873pt;}
.h24{height:32.113746pt;}
.h20{height:32.179021pt;}
.h1c{height:32.183295pt;}
.h1b{height:33.008557pt;}
.h23{height:33.078495pt;}
.h1f{height:33.146101pt;}
.h1d{height:36.584695pt;}
.hb{height:37.057292pt;}
.h12{height:37.269121pt;}
.h11{height:37.297388pt;}
.h15{height:37.533125pt;}
.h13{height:37.540119pt;}
.ha{height:38.828125pt;}
.h8{height:38.854167pt;}
.h9{height:38.880208pt;}
.h5{height:40.769531pt;}
.hf{height:46.658552pt;}
.h3{height:50.476562pt;}
.h16{height:57.971015pt;}
.h4{height:81.927344pt;}
.h27{height:189.833333pt;}
.h25{height:208.120000pt;}
.h14{height:619.005333pt;}
.h22{height:810.096000pt;}
.h1a{height:811.230667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w7{width:357.788000pt;}
.w6{width:398.497333pt;}
.w2{width:413.866667pt;}
.w4{width:558.976000pt;}
.w3{width:560.642667pt;}
.w5{width:564.940000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x49{left:9.476800pt;}
.x36{left:11.052800pt;}
.x68{left:22.100667pt;}
.x65{left:23.265600pt;}
.x53{left:42.510667pt;}
.x43{left:46.006667pt;}
.x60{left:49.470267pt;}
.xb{left:68.031467pt;}
.x2f{left:69.921200pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x14{left:88.818933pt;}
.x6e{left:90.708800pt;}
.x4{left:94.488133pt;}
.xc{left:98.271467pt;}
.x5b{left:104.932000pt;}
.x3d{left:107.080000pt;}
.x70{left:109.606533pt;}
.x3{left:111.499200pt;}
.x7{left:117.165333pt;}
.x4e{left:126.810667pt;}
.x48{left:131.470267pt;}
.x42{left:132.509067pt;}
.x5f{left:134.016533pt;}
.x46{left:135.812299pt;}
.x40{left:136.851232pt;}
.x5d{left:138.368263pt;}
.x45{left:141.098400pt;}
.x3f{left:142.137333pt;}
.x5c{left:143.618267pt;}
.x56{left:148.040933pt;}
.x52{left:148.941733pt;}
.x47{left:151.859392pt;}
.x41{left:152.898325pt;}
.x5e{left:154.402059pt;}
.x44{left:155.532535pt;}
.x55{left:157.663333pt;}
.x51{left:158.563333pt;}
.x15{left:168.168267pt;}
.x5{left:170.078800pt;}
.x6d{left:172.698133pt;}
.x6a{left:176.778133pt;}
.x31{left:183.297200pt;}
.x6{left:189.223467pt;}
.x35{left:199.365333pt;}
.x64{left:207.050667pt;}
.x17{left:217.640267pt;}
.x16{left:222.525600pt;}
.x33{left:225.106205pt;}
.x62{left:226.764267pt;}
.x63{left:230.316267pt;}
.x32{left:232.307467pt;}
.x54{left:242.639867pt;}
.x67{left:245.954000pt;}
.x34{left:246.993403pt;}
.x38{left:248.930400pt;}
.x18{left:267.773600pt;}
.x19{left:269.992267pt;}
.x1a{left:274.440267pt;}
.x39{left:292.341333pt;}
.x69{left:294.606933pt;}
.x4f{left:313.935733pt;}
.x3e{left:316.353333pt;}
.x30{left:319.606533pt;}
.x1c{left:320.616267pt;}
.x1b{left:324.466933pt;}
.x1d{left:331.133600pt;}
.x4a{left:352.826133pt;}
.x61{left:356.551200pt;}
.x37{left:367.233200pt;}
.x57{left:370.271867pt;}
.x1e{left:381.266933pt;}
.xa{left:404.481333pt;}
.xd{left:406.298133pt;}
.x3c{left:407.292032pt;}
.x5a{left:409.145632pt;}
.x3b{left:412.578133pt;}
.x59{left:414.442933pt;}
.x1f{left:422.834933pt;}
.x12{left:425.192000pt;}
.x8{left:427.085333pt;}
.x6f{left:428.948800pt;}
.x4c{left:429.893867pt;}
.xe{left:436.538133pt;}
.x58{left:438.516667pt;}
.x4d{left:440.699699pt;}
.x3a{left:441.840533pt;}
.x4b{left:452.453333pt;}
.x13{left:455.482667pt;}
.x21{left:464.232267pt;}
.xf{left:466.924800pt;}
.x20{left:468.082933pt;}
.x22{left:478.898933pt;}
.x66{left:501.746533pt;}
.x50{left:513.961344pt;}
.x23{left:524.882933pt;}
.x2e{left:525.907733pt;}
.x24{left:529.917600pt;}
.x25{left:566.344267pt;}
.x27{left:570.333600pt;}
.x26{left:572.114933pt;}
.x11{left:589.770933pt;}
.x2{left:616.324800pt;}
.x29{left:619.176267pt;}
.x28{left:623.026933pt;}
.x2a{left:627.026933pt;}
.x6b{left:641.526800pt;}
.x10{left:647.459200pt;}
.x6c{left:661.216133pt;}
.x2d{left:666.293200pt;}
.x2c{left:681.832267pt;}
.x2b{left:683.613600pt;}
}




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