
    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_5387e0a2b24d0058733587cc.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d81658ee53e0bc6eae27fdff.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.925293;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_824d04bd534b166fe391e208.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_818518fe476166b5977157c2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_88dbe1fd641fe92e11dc5187.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bc56dfd0f597e1dd3b533d35.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.872559;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_fd56cb01759c6b2224d90500.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6508b2eb0e54d25c31d8d129.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.882324;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_3d6de695c4f049d867ce1938.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.882324;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_e87e181e000a6ed4cc36287b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b6a9cd1e31bae86a8abc0dd9.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_88d50b3310f6795fb7457966.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b6a9cd1e31bae86a8abc0dd9.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_1e93dbe012cbacbcf354a6b6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.682129;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_8985ce29a86feca3fed7f16e.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_b6a9cd1e31bae86a8abc0dd9.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_9e718ebee65ec8d824f31a6e.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_1e93dbe012cbacbcf354a6b6.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.682129;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_ab18d139515eed7d08489239.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.882324;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_fc2a7cb6232a1eede33dc994.woff2')format("woff");}.ff14{font-family:ff14;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;}
.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);}
.m1{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);}
.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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-3.404400px;}
.v6{vertical-align:-1.320000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.620000px;}
.v4{vertical-align:15.984000px;}
.v2{vertical-align:20.595600px;}
.v5{vertical-align:41.653800px;}
.ls54{letter-spacing:-6.120000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls58{letter-spacing:-0.420000px;}
.ls8b{letter-spacing:-0.360000px;}
.ls67{letter-spacing:-0.300000px;}
.ls55{letter-spacing:-0.240000px;}
.ls56{letter-spacing:-0.180000px;}
.lsa5{letter-spacing:-0.144000px;}
.ls57{letter-spacing:-0.120000px;}
.lsa6{letter-spacing:-0.096000px;}
.ls41{letter-spacing:-0.060000px;}
.lsa7{letter-spacing:-0.048000px;}
.ls53{letter-spacing:-0.036000px;}
.ls1b{letter-spacing:0.000000px;}
.ls7c{letter-spacing:0.019800px;}
.ls73{letter-spacing:0.034800px;}
.ls7a{letter-spacing:0.036600px;}
.ls76{letter-spacing:0.043200px;}
.ls77{letter-spacing:0.044400px;}
.ls9a{letter-spacing:0.048000px;}
.ls18{letter-spacing:0.060000px;}
.ls72{letter-spacing:0.061200px;}
.ls79{letter-spacing:0.086400px;}
.ls6{letter-spacing:0.096000px;}
.ls3a{letter-spacing:0.120000px;}
.ls70{letter-spacing:0.144000px;}
.ls5e{letter-spacing:0.172800px;}
.ls30{letter-spacing:0.180000px;}
.ls5d{letter-spacing:0.189600px;}
.ls3{letter-spacing:0.192000px;}
.ls51{letter-spacing:0.216000px;}
.ls32{letter-spacing:0.240000px;}
.ls6c{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.300000px;}
.ls7{letter-spacing:0.336000px;}
.lse{letter-spacing:0.360000px;}
.ls92{letter-spacing:0.384000px;}
.ls61{letter-spacing:0.391800px;}
.ls12{letter-spacing:0.420000px;}
.lsac{letter-spacing:0.432000px;}
.ls78{letter-spacing:0.468000px;}
.ls34{letter-spacing:0.480000px;}
.ls1e{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.576000px;}
.ls1a{letter-spacing:0.600000px;}
.ls52{letter-spacing:0.612000px;}
.ls46{letter-spacing:0.616800px;}
.ls9c{letter-spacing:0.624000px;}
.ls60{letter-spacing:0.626400px;}
.ls19{letter-spacing:0.660000px;}
.ls82{letter-spacing:0.666600px;}
.ls5{letter-spacing:0.672000px;}
.ls20{letter-spacing:0.720000px;}
.ls6f{letter-spacing:0.727800px;}
.ls0{letter-spacing:0.768000px;}
.ls40{letter-spacing:0.780000px;}
.ls17{letter-spacing:0.840000px;}
.ls90{letter-spacing:0.864000px;}
.ls23{letter-spacing:0.900000px;}
.lsa8{letter-spacing:0.912000px;}
.lsd{letter-spacing:0.960000px;}
.ls98{letter-spacing:1.008000px;}
.ls2a{letter-spacing:1.020000px;}
.lsad{letter-spacing:1.056000px;}
.ls1d{letter-spacing:1.080000px;}
.ls80{letter-spacing:1.104000px;}
.ls49{letter-spacing:1.140000px;}
.ls2{letter-spacing:1.152000px;}
.ls81{letter-spacing:1.156800px;}
.ls3f{letter-spacing:1.200000px;}
.ls8d{letter-spacing:1.248000px;}
.ls3b{letter-spacing:1.260000px;}
.lsae{letter-spacing:1.296000px;}
.ls25{letter-spacing:1.320000px;}
.lsa0{letter-spacing:1.344000px;}
.ls63{letter-spacing:1.359000px;}
.ls31{letter-spacing:1.380000px;}
.ls8e{letter-spacing:1.392000px;}
.ls1f{letter-spacing:1.440000px;}
.ls1{letter-spacing:1.488000px;}
.ls66{letter-spacing:1.490400px;}
.ls2e{letter-spacing:1.500000px;}
.ls8c{letter-spacing:1.536000px;}
.lsf{letter-spacing:1.560000px;}
.ls7f{letter-spacing:1.584000px;}
.ls14{letter-spacing:1.620000px;}
.ls10{letter-spacing:1.680000px;}
.lsb5{letter-spacing:1.728000px;}
.ls26{letter-spacing:1.740000px;}
.ls99{letter-spacing:1.776000px;}
.ls3e{letter-spacing:1.800000px;}
.ls93{letter-spacing:1.824000px;}
.ls29{letter-spacing:1.860000px;}
.ls95{letter-spacing:1.872000px;}
.ls11{letter-spacing:1.920000px;}
.lsaa{letter-spacing:1.968000px;}
.lsa{letter-spacing:1.980000px;}
.ls8{letter-spacing:2.040000px;}
.ls6e{letter-spacing:2.100000px;}
.lsb0{letter-spacing:2.112000px;}
.ls35{letter-spacing:2.160000px;}
.lsb3{letter-spacing:2.208000px;}
.ls24{letter-spacing:2.220000px;}
.ls62{letter-spacing:2.252400px;}
.ls28{letter-spacing:2.280000px;}
.ls4a{letter-spacing:2.340000px;}
.lsa9{letter-spacing:2.352000px;}
.ls37{letter-spacing:2.400000px;}
.ls64{letter-spacing:2.460000px;}
.ls65{letter-spacing:2.468400px;}
.ls91{letter-spacing:2.496000px;}
.ls15{letter-spacing:2.520000px;}
.lsb4{letter-spacing:2.544000px;}
.ls22{letter-spacing:2.580000px;}
.lsa1{letter-spacing:2.592000px;}
.ls16{letter-spacing:2.640000px;}
.ls97{letter-spacing:2.688000px;}
.ls43{letter-spacing:2.700000px;}
.ls71{letter-spacing:2.736000px;}
.ls5c{letter-spacing:2.760000px;}
.ls3d{letter-spacing:2.820000px;}
.ls9e{letter-spacing:2.832000px;}
.ls38{letter-spacing:2.880000px;}
.ls48{letter-spacing:2.940000px;}
.ls9f{letter-spacing:2.976000px;}
.lsb{letter-spacing:3.000000px;}
.lsab{letter-spacing:3.024000px;}
.ls4f{letter-spacing:3.060000px;}
.ls39{letter-spacing:3.120000px;}
.ls96{letter-spacing:3.168000px;}
.ls27{letter-spacing:3.180000px;}
.ls3c{letter-spacing:3.240000px;}
.lsa2{letter-spacing:3.264000px;}
.ls36{letter-spacing:3.300000px;}
.ls9d{letter-spacing:3.312000px;}
.ls45{letter-spacing:3.360000px;}
.ls74{letter-spacing:3.408000px;}
.ls6b{letter-spacing:3.420000px;}
.ls7b{letter-spacing:3.480000px;}
.ls4b{letter-spacing:3.540000px;}
.lsaf{letter-spacing:3.552000px;}
.ls85{letter-spacing:3.600000px;}
.ls8f{letter-spacing:3.648000px;}
.ls2d{letter-spacing:3.720000px;}
.ls42{letter-spacing:3.780000px;}
.ls75{letter-spacing:3.792000px;}
.ls7d{letter-spacing:3.840000px;}
.lsc{letter-spacing:3.900000px;}
.ls9b{letter-spacing:3.936000px;}
.ls2f{letter-spacing:3.960000px;}
.ls5a{letter-spacing:4.020000px;}
.ls59{letter-spacing:4.080000px;}
.ls69{letter-spacing:4.140000px;}
.ls6a{letter-spacing:4.200000px;}
.ls94{letter-spacing:4.224000px;}
.ls44{letter-spacing:4.320000px;}
.lsb2{letter-spacing:4.368000px;}
.ls2c{letter-spacing:4.380000px;}
.ls2b{letter-spacing:4.440000px;}
.ls86{letter-spacing:4.500000px;}
.lsa4{letter-spacing:4.512000px;}
.ls89{letter-spacing:4.620000px;}
.ls33{letter-spacing:4.680000px;}
.lsb1{letter-spacing:4.704000px;}
.ls88{letter-spacing:4.740000px;}
.ls84{letter-spacing:4.800000px;}
.ls87{letter-spacing:4.860000px;}
.ls47{letter-spacing:4.980000px;}
.lsa3{letter-spacing:4.992000px;}
.ls21{letter-spacing:5.100000px;}
.ls50{letter-spacing:5.160000px;}
.ls83{letter-spacing:5.220000px;}
.ls4c{letter-spacing:5.340000px;}
.ls4d{letter-spacing:5.400000px;}
.ls6d{letter-spacing:5.460000px;}
.ls5f{letter-spacing:5.640000px;}
.ls13{letter-spacing:6.060000px;}
.ls7e{letter-spacing:6.420000px;}
.ls4e{letter-spacing:6.900000px;}
.ls68{letter-spacing:7.080000px;}
.ls5b{letter-spacing:7.140000px;}
.ls8a{letter-spacing:7.560000px;}
.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;}
}
.ws45{word-spacing:-48.000000px;}
.ws12{word-spacing:-20.640000px;}
.ws2f{word-spacing:-17.820000px;}
.ws29{word-spacing:-17.700000px;}
.ws8b{word-spacing:-17.664000px;}
.ws27{word-spacing:-17.040000px;}
.ws2c{word-spacing:-16.680000px;}
.wsa2{word-spacing:-14.256000px;}
.ws8d{word-spacing:-13.968000px;}
.wsa1{word-spacing:-13.776000px;}
.ws8a{word-spacing:-13.728000px;}
.ws5a{word-spacing:-13.488000px;}
.wsa3{word-spacing:-13.392000px;}
.ws5d{word-spacing:-13.344000px;}
.ws8c{word-spacing:-13.200000px;}
.ws44{word-spacing:-12.528000px;}
.ws2a{word-spacing:-10.620000px;}
.ws59{word-spacing:-10.476000px;}
.ws28{word-spacing:-10.224000px;}
.ws2d{word-spacing:-10.008000px;}
.ws2e{word-spacing:-9.972000px;}
.ws5b{word-spacing:-8.092800px;}
.ws5e{word-spacing:-8.006400px;}
.ws4c{word-spacing:-7.779552px;}
.ws1f{word-spacing:-4.680000px;}
.ws90{word-spacing:-4.224000px;}
.ws1c{word-spacing:-3.960000px;}
.ws6d{word-spacing:-3.792000px;}
.ws6c{word-spacing:-3.408000px;}
.ws3d{word-spacing:-3.360000px;}
.ws21{word-spacing:-3.300000px;}
.ws9d{word-spacing:-3.264000px;}
.wsa7{word-spacing:-3.024000px;}
.ws82{word-spacing:-2.880000px;}
.ws1{word-spacing:-2.664000px;}
.ws11{word-spacing:-2.640000px;}
.ws8e{word-spacing:-2.580000px;}
.ws40{word-spacing:-2.520000px;}
.ws43{word-spacing:-2.460000px;}
.ws4e{word-spacing:-2.340000px;}
.ws42{word-spacing:-2.280000px;}
.ws7a{word-spacing:-2.100000px;}
.ws31{word-spacing:-1.920000px;}
.ws88{word-spacing:-1.800000px;}
.ws7d{word-spacing:-1.740000px;}
.ws4f{word-spacing:-1.680000px;}
.ws77{word-spacing:-1.584000px;}
.ws1b{word-spacing:-1.500000px;}
.ws81{word-spacing:-1.380000px;}
.ws78{word-spacing:-1.104000px;}
.ws13{word-spacing:-1.080000px;}
.ws85{word-spacing:-0.960000px;}
.wsa9{word-spacing:-0.912000px;}
.ws87{word-spacing:-0.900000px;}
.wsa8{word-spacing:-0.864000px;}
.ws67{word-spacing:-0.780000px;}
.ws2{word-spacing:-0.768000px;}
.ws34{word-spacing:-0.720000px;}
.ws96{word-spacing:-0.624000px;}
.ws89{word-spacing:-0.480000px;}
.ws8f{word-spacing:-0.384000px;}
.ws9{word-spacing:-0.336000px;}
.ws18{word-spacing:-0.300000px;}
.ws56{word-spacing:-0.288000px;}
.ws1e{word-spacing:-0.240000px;}
.wsa0{word-spacing:-0.192000px;}
.ws1d{word-spacing:-0.180000px;}
.ws6a{word-spacing:-0.144000px;}
.ws9e{word-spacing:-0.096000px;}
.ws2b{word-spacing:-0.060000px;}
.ws5c{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws94{word-spacing:0.048000px;}
.ws3c{word-spacing:0.060000px;}
.ws38{word-spacing:0.120000px;}
.ws95{word-spacing:0.144000px;}
.ws63{word-spacing:0.240000px;}
.ws83{word-spacing:0.360000px;}
.ws58{word-spacing:0.384000px;}
.ws41{word-spacing:0.420000px;}
.wsa{word-spacing:0.432000px;}
.ws9c{word-spacing:0.528000px;}
.wsab{word-spacing:0.576000px;}
.ws20{word-spacing:0.600000px;}
.wsa4{word-spacing:0.672000px;}
.ws5{word-spacing:0.720000px;}
.ws3f{word-spacing:0.780000px;}
.ws52{word-spacing:0.840000px;}
.wse{word-spacing:0.900000px;}
.ws62{word-spacing:0.960000px;}
.wsaa{word-spacing:1.008000px;}
.ws1a{word-spacing:1.020000px;}
.ws3e{word-spacing:1.080000px;}
.ws84{word-spacing:1.140000px;}
.ws26{word-spacing:1.200000px;}
.ws6f{word-spacing:1.260000px;}
.ws7f{word-spacing:1.320000px;}
.ws9a{word-spacing:1.392000px;}
.ws15{word-spacing:1.440000px;}
.ws7{word-spacing:1.584000px;}
.ws76{word-spacing:1.620000px;}
.wsa5{word-spacing:1.776000px;}
.ws16{word-spacing:1.860000px;}
.ws79{word-spacing:1.920000px;}
.ws92{word-spacing:2.016000px;}
.ws97{word-spacing:2.064000px;}
.ws7b{word-spacing:2.100000px;}
.ws39{word-spacing:2.160000px;}
.ws93{word-spacing:2.256000px;}
.ws71{word-spacing:2.280000px;}
.ws75{word-spacing:2.400000px;}
.ws3a{word-spacing:2.520000px;}
.ws7c{word-spacing:2.580000px;}
.ws55{word-spacing:2.640000px;}
.ws9f{word-spacing:2.688000px;}
.ws53{word-spacing:2.700000px;}
.wsc{word-spacing:2.736000px;}
.ws6b{word-spacing:2.784000px;}
.ws36{word-spacing:2.880000px;}
.ws69{word-spacing:3.024000px;}
.ws51{word-spacing:3.060000px;}
.ws72{word-spacing:3.120000px;}
.ws91{word-spacing:3.168000px;}
.ws25{word-spacing:3.180000px;}
.wsa6{word-spacing:3.264000px;}
.wsac{word-spacing:3.312000px;}
.ws99{word-spacing:3.360000px;}
.ws14{word-spacing:3.420000px;}
.ws6{word-spacing:3.504000px;}
.ws65{word-spacing:3.540000px;}
.ws19{word-spacing:3.600000px;}
.ws57{word-spacing:3.648000px;}
.ws68{word-spacing:3.792000px;}
.wsb{word-spacing:3.888000px;}
.ws10{word-spacing:4.020000px;}
.ws98{word-spacing:4.032000px;}
.ws30{word-spacing:4.080000px;}
.ws54{word-spacing:4.140000px;}
.ws8{word-spacing:4.176000px;}
.ws35{word-spacing:4.200000px;}
.ws9b{word-spacing:4.224000px;}
.ws80{word-spacing:4.260000px;}
.ws74{word-spacing:4.320000px;}
.ws4{word-spacing:4.368000px;}
.ws3{word-spacing:4.416000px;}
.ws50{word-spacing:4.440000px;}
.ws73{word-spacing:4.500000px;}
.ws7e{word-spacing:4.620000px;}
.ws22{word-spacing:4.680000px;}
.ws17{word-spacing:4.740000px;}
.ws3b{word-spacing:4.800000px;}
.ws66{word-spacing:4.860000px;}
.ws86{word-spacing:4.920000px;}
.ws37{word-spacing:4.980000px;}
.ws24{word-spacing:5.160000px;}
.ws70{word-spacing:5.220000px;}
.ws33{word-spacing:5.280000px;}
.ws64{word-spacing:5.340000px;}
.wsd{word-spacing:5.460000px;}
.wsf{word-spacing:5.520000px;}
.ws32{word-spacing:6.120000px;}
.ws23{word-spacing:6.720000px;}
.ws4d{word-spacing:16.944000px;}
.ws47{word-spacing:40.320000px;}
.ws49{word-spacing:77.856000px;}
.ws48{word-spacing:89.184000px;}
.ws4a{word-spacing:112.656000px;}
.ws4b{word-spacing:116.976000px;}
.ws60{word-spacing:209.376000px;}
.ws6e{word-spacing:219.168000px;}
.ws5f{word-spacing:220.272000px;}
.ws61{word-spacing:403.008000px;}
.ws46{word-spacing:1250.256000px;}
._d{margin-left:-2898.396000px;}
._e{margin-left:-2874.579000px;}
._c{margin-left:-8.640000px;}
._2{margin-left:-7.098000px;}
._1{margin-left:-5.376000px;}
._5{margin-left:-3.504000px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.122000px;}
._7{width:1.020000px;}
._b{width:2.220000px;}
._6{width:3.408000px;}
._4{width:5.184000px;}
._9{width:6.420000px;}
._8{width:7.980000px;}
._a{width:10.020000px;}
._12{width:32.688000px;}
._11{width:35.568000px;}
._13{width:37.248000px;}
._15{width:41.952000px;}
._14{width:46.320000px;}
._16{width:64.509600px;}
._f{width:77.088000px;}
._10{width:118.032000px;}
._26{width:243.840000px;}
._18{width:250.080000px;}
._17{width:260.352000px;}
._19{width:426.624000px;}
._1e{width:482.208000px;}
._24{width:483.888000px;}
._1c{width:490.176000px;}
._21{width:495.552000px;}
._1a{width:543.648000px;}
._23{width:673.009200px;}
._22{width:687.342000px;}
._20{width:765.679800px;}
._1d{width:861.679200px;}
._1f{width:930.135000px;}
._25{width:1055.484600px;}
._1b{width:1338.096000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:27.984000px;}
.fs9{font-size:28.800000px;}
.fs7{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs5{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:50.517000px;}
.y143{bottom:57.153000px;}
.y1{bottom:82.406700px;}
.y1c8{bottom:83.356950px;}
.y64{bottom:83.363850px;}
.y1fc{bottom:83.367600px;}
.y2d{bottom:83.493900px;}
.y85{bottom:83.663850px;}
.y130{bottom:83.752350px;}
.y166{bottom:84.966000px;}
.y1d6{bottom:90.847500px;}
.y267{bottom:91.796700px;}
.y2a7{bottom:94.940700px;}
.y18c{bottom:95.321100px;}
.y12f{bottom:99.496350px;}
.y165{bottom:100.710000px;}
.y22d{bottom:101.228850px;}
.y63{bottom:101.363850px;}
.y1fb{bottom:101.367600px;}
.yd8{bottom:101.663850px;}
.y266{bottom:106.796700px;}
.y1c7{bottom:108.873000px;}
.y2a6{bottom:109.940700px;}
.y12e{bottom:115.240350px;}
.y177{bottom:115.832400px;}
.y164{bottom:116.480850px;}
.y62{bottom:119.363850px;}
.y1fa{bottom:119.367600px;}
.y84{bottom:119.663850px;}
.y265{bottom:121.796700px;}
.y2a5{bottom:124.940700px;}
.y1c6{bottom:125.124900px;}
.y12d{bottom:130.984350px;}
.y163{bottom:132.224850px;}
.y264{bottom:136.796700px;}
.y22c{bottom:137.228850px;}
.y61{bottom:137.363850px;}
.y1f9{bottom:137.367600px;}
.yd7{bottom:137.663850px;}
.y2a4{bottom:139.940700px;}
.y1c5{bottom:141.376950px;}
.y1b{bottom:146.475900px;}
.y162{bottom:147.968850px;}
.y263{bottom:151.796700px;}
.y136{bottom:154.461000px;}
.y2a3{bottom:154.940700px;}
.y22b{bottom:155.228850px;}
.y60{bottom:155.363850px;}
.y1f8{bottom:155.367600px;}
.y83{bottom:155.513850px;}
.y103{bottom:155.647350px;}
.yd6{bottom:155.663850px;}
.y1c4{bottom:157.628850px;}
.y131{bottom:158.357400px;}
.y161{bottom:163.712850px;}
.y262{bottom:166.796700px;}
.y138{bottom:168.135000px;}
.y2a2{bottom:169.940700px;}
.y22a{bottom:173.228850px;}
.y5f{bottom:173.363850px;}
.y1f7{bottom:173.367600px;}
.y82{bottom:173.513850px;}
.y102{bottom:173.647350px;}
.yd5{bottom:173.663850px;}
.y1c3{bottom:173.880900px;}
.y160{bottom:179.456850px;}
.y261{bottom:181.796700px;}
.y2a1{bottom:184.940700px;}
.y139{bottom:188.787000px;}
.y1c2{bottom:190.132650px;}
.y229{bottom:191.228850px;}
.y5e{bottom:191.363850px;}
.y1f6{bottom:191.367600px;}
.y81{bottom:191.513850px;}
.y101{bottom:191.647350px;}
.yd4{bottom:191.663850px;}
.y29{bottom:195.619500px;}
.y260{bottom:196.796700px;}
.y2a0{bottom:199.940700px;}
.y188{bottom:203.844000px;}
.y119{bottom:205.486650px;}
.y1c1{bottom:206.380650px;}
.y18e{bottom:207.741300px;}
.y5d{bottom:209.363850px;}
.y1f5{bottom:209.367600px;}
.y13a{bottom:209.439000px;}
.y80{bottom:209.513850px;}
.y100{bottom:209.647350px;}
.yd3{bottom:209.663850px;}
.y132{bottom:210.026850px;}
.y25f{bottom:211.796700px;}
.y28{bottom:213.619500px;}
.y29f{bottom:214.940700px;}
.y1d4{bottom:219.797700px;}
.y142{bottom:220.194000px;}
.y137{bottom:220.590000px;}
.y175{bottom:224.581800px;}
.y186{bottom:225.742350px;}
.y25e{bottom:226.796700px;}
.y228{bottom:227.228850px;}
.y5c{bottom:227.363850px;}
.y1f4{bottom:227.367600px;}
.y7f{bottom:227.513850px;}
.yff{bottom:227.647350px;}
.yd2{bottom:227.663850px;}
.y180{bottom:227.936700px;}
.y29e{bottom:229.940700px;}
.y13b{bottom:230.091000px;}
.y27{bottom:231.619500px;}
.y1c0{bottom:237.892650px;}
.y17a{bottom:241.076700px;}
.y181{bottom:241.630350px;}
.y25d{bottom:241.796700px;}
.y29d{bottom:244.940700px;}
.y227{bottom:245.228850px;}
.y5b{bottom:245.363850px;}
.y1f3{bottom:245.367600px;}
.y7e{bottom:245.513850px;}
.yfe{bottom:245.647350px;}
.yd1{bottom:245.663850px;}
.y26{bottom:249.619500px;}
.y13c{bottom:250.743000px;}
.y133{bottom:251.282850px;}
.y145{bottom:255.020250px;}
.y25c{bottom:256.796700px;}
.y29c{bottom:259.940700px;}
.y189{bottom:261.650400px;}
.y5a{bottom:263.363850px;}
.y1f2{bottom:263.367600px;}
.y7d{bottom:263.513850px;}
.yfd{bottom:263.647350px;}
.yd0{bottom:263.663850px;}
.y25{bottom:267.619500px;}
.y13d{bottom:271.395000px;}
.y25b{bottom:271.796700px;}
.y1bf{bottom:272.706450px;}
.y2db{bottom:274.938300px;}
.y29b{bottom:274.940700px;}
.y17b{bottom:277.496700px;}
.y226{bottom:281.228850px;}
.y59{bottom:281.363850px;}
.y1f1{bottom:281.367600px;}
.y7c{bottom:281.513850px;}
.yfc{bottom:281.647350px;}
.ycf{bottom:281.663850px;}
.y182{bottom:283.054350px;}
.y24{bottom:285.619500px;}
.y25a{bottom:286.796700px;}
.y2da{bottom:289.938300px;}
.y29a{bottom:289.940700px;}
.y13e{bottom:292.047000px;}
.y1be{bottom:292.230600px;}
.y134{bottom:292.538850px;}
.y225{bottom:299.228850px;}
.y58{bottom:299.363850px;}
.y1f0{bottom:299.367600px;}
.y7b{bottom:299.513850px;}
.yfb{bottom:299.647350px;}
.yce{bottom:299.663850px;}
.y18d{bottom:299.669100px;}
.y259{bottom:301.796700px;}
.y23{bottom:303.619500px;}
.y2d9{bottom:304.938300px;}
.y299{bottom:304.940700px;}
.y13f{bottom:312.699000px;}
.y17c{bottom:314.072700px;}
.y258{bottom:316.796700px;}
.y224{bottom:317.228850px;}
.y57{bottom:317.363850px;}
.y1ef{bottom:317.367600px;}
.y7a{bottom:317.513850px;}
.ycd{bottom:317.663850px;}
.yfa{bottom:317.678850px;}
.y2d8{bottom:319.938300px;}
.y298{bottom:319.940700px;}
.y22{bottom:321.619500px;}
.y183{bottom:324.490350px;}
.y257{bottom:331.796700px;}
.y140{bottom:333.351000px;}
.y135{bottom:333.794850px;}
.y2d7{bottom:334.938300px;}
.y297{bottom:334.940700px;}
.y65{bottom:335.228850px;}
.y1bd{bottom:335.235600px;}
.y56{bottom:335.363850px;}
.y1ee{bottom:335.367600px;}
.y1cd{bottom:335.436300px;}
.y79{bottom:335.513850px;}
.ycc{bottom:335.663850px;}
.yf9{bottom:335.678850px;}
.y21{bottom:339.619500px;}
.y256{bottom:346.796700px;}
.y2d6{bottom:349.938300px;}
.y296{bottom:349.940700px;}
.y17d{bottom:350.480700px;}
.y1cc{bottom:351.196950px;}
.y223{bottom:353.228850px;}
.y1bc{bottom:353.235600px;}
.y55{bottom:353.363850px;}
.y1ed{bottom:353.367600px;}
.y78{bottom:353.513850px;}
.ycb{bottom:353.663850px;}
.yf8{bottom:353.678850px;}
.y141{bottom:354.003000px;}
.y20{bottom:357.619500px;}
.y255{bottom:361.796700px;}
.y2d5{bottom:364.938300px;}
.y295{bottom:364.940700px;}
.y184{bottom:365.902350px;}
.y1cb{bottom:366.940950px;}
.y144{bottom:368.974950px;}
.y222{bottom:371.228850px;}
.y1bb{bottom:371.235600px;}
.y54{bottom:371.363850px;}
.y1ec{bottom:371.367600px;}
.yab{bottom:371.378850px;}
.y77{bottom:371.513850px;}
.yca{bottom:371.663850px;}
.yf7{bottom:371.678850px;}
.y1f{bottom:375.619500px;}
.y254{bottom:376.796700px;}
.y2d4{bottom:379.938300px;}
.y294{bottom:379.940700px;}
.y1ca{bottom:382.684950px;}
.y17e{bottom:386.900700px;}
.y221{bottom:389.228850px;}
.y1ba{bottom:389.235600px;}
.y53{bottom:389.363850px;}
.y1eb{bottom:389.367600px;}
.yaa{bottom:389.378850px;}
.y76{bottom:389.513850px;}
.yc9{bottom:389.663850px;}
.yf6{bottom:389.678850px;}
.y253{bottom:391.796700px;}
.y1e{bottom:393.619500px;}
.y2d3{bottom:394.938300px;}
.y293{bottom:394.940700px;}
.y1c9{bottom:398.428950px;}
.y18b{bottom:402.236550px;}
.y252{bottom:406.796700px;}
.y1b9{bottom:407.235600px;}
.y185{bottom:407.338350px;}
.y52{bottom:407.363850px;}
.y1ea{bottom:407.367600px;}
.ya9{bottom:407.378850px;}
.y75{bottom:407.513850px;}
.yc8{bottom:407.663850px;}
.yf5{bottom:407.678850px;}
.y2d2{bottom:409.938300px;}
.y292{bottom:409.940700px;}
.y1d{bottom:411.619500px;}
.y117{bottom:415.015200px;}
.y251{bottom:421.796700px;}
.y1d3{bottom:422.716500px;}
.y17f{bottom:423.476700px;}
.y18a{bottom:423.560550px;}
.y2d1{bottom:424.938300px;}
.y291{bottom:424.940700px;}
.y220{bottom:425.228850px;}
.y1b8{bottom:425.235600px;}
.y51{bottom:425.363850px;}
.y1e9{bottom:425.367600px;}
.ya8{bottom:425.378850px;}
.y74{bottom:425.513850px;}
.yc7{bottom:425.663850px;}
.yf4{bottom:425.678850px;}
.y1d7{bottom:426.612300px;}
.y2a{bottom:429.619500px;}
.y116{bottom:430.759200px;}
.y250{bottom:436.796700px;}
.y2d0{bottom:439.938300px;}
.y290{bottom:439.940700px;}
.y21f{bottom:443.228850px;}
.y1b7{bottom:443.235600px;}
.y50{bottom:443.363850px;}
.y1e8{bottom:443.367600px;}
.ya7{bottom:443.378850px;}
.y73{bottom:443.513850px;}
.yc6{bottom:443.663850px;}
.yf3{bottom:443.678850px;}
.y115{bottom:446.503200px;}
.y1c{bottom:447.619500px;}
.y1d5{bottom:448.906200px;}
.y24f{bottom:451.796700px;}
.y2cf{bottom:454.938300px;}
.y28f{bottom:454.940700px;}
.y21e{bottom:461.228850px;}
.y1b6{bottom:461.235600px;}
.y4f{bottom:461.363850px;}
.y1e7{bottom:461.367600px;}
.ya6{bottom:461.378850px;}
.y72{bottom:461.513850px;}
.yc5{bottom:461.663850px;}
.yf2{bottom:461.678850px;}
.y114{bottom:462.247200px;}
.y187{bottom:463.562400px;}
.y1ce{bottom:463.630350px;}
.y24e{bottom:466.796700px;}
.y2ce{bottom:469.938300px;}
.y28e{bottom:469.940700px;}
.y113{bottom:477.991200px;}
.y21d{bottom:479.228850px;}
.y1b5{bottom:479.235600px;}
.y4e{bottom:479.363850px;}
.y1e6{bottom:479.367600px;}
.ya5{bottom:479.378850px;}
.y71{bottom:479.513850px;}
.yc4{bottom:479.663850px;}
.yf1{bottom:479.678850px;}
.y24d{bottom:481.796700px;}
.y2cd{bottom:484.938300px;}
.y28d{bottom:484.940700px;}
.y24c{bottom:496.796700px;}
.y21c{bottom:497.228850px;}
.y1b4{bottom:497.235600px;}
.y4d{bottom:497.363850px;}
.y1e5{bottom:497.367600px;}
.ya4{bottom:497.378850px;}
.y70{bottom:497.513850px;}
.yc3{bottom:497.663850px;}
.yf0{bottom:497.678850px;}
.y1cf{bottom:499.570350px;}
.y2cc{bottom:499.938300px;}
.y28c{bottom:499.940700px;}
.y118{bottom:501.388500px;}
.y120{bottom:505.275750px;}
.y121{bottom:505.419750px;}
.y24b{bottom:511.796700px;}
.y16a{bottom:511.926000px;}
.y1a{bottom:513.555900px;}
.y123{bottom:513.786150px;}
.y11a{bottom:514.227750px;}
.y2cb{bottom:514.938300px;}
.y28b{bottom:514.940700px;}
.y21b{bottom:515.228850px;}
.y1b3{bottom:515.235600px;}
.y4c{bottom:515.363850px;}
.y1e4{bottom:515.367600px;}
.ya3{bottom:515.378850px;}
.y15f{bottom:515.505600px;}
.y6f{bottom:515.513850px;}
.yc2{bottom:515.663850px;}
.yef{bottom:515.678850px;}
.y24a{bottom:526.796700px;}
.y169{bottom:527.670000px;}
.y2ca{bottom:529.938300px;}
.y28a{bottom:529.940700px;}
.y21a{bottom:533.228850px;}
.y1b2{bottom:533.235600px;}
.y4b{bottom:533.363850px;}
.y1e3{bottom:533.367600px;}
.ya2{bottom:533.378850px;}
.y6e{bottom:533.513850px;}
.y15e{bottom:533.517600px;}
.yc1{bottom:533.663850px;}
.yee{bottom:533.678850px;}
.y1d0{bottom:535.306350px;}
.y12b{bottom:538.952850px;}
.y249{bottom:541.796700px;}
.y168{bottom:543.414000px;}
.y124{bottom:543.498150px;}
.y2c9{bottom:544.938300px;}
.y289{bottom:544.940700px;}
.y19{bottom:546.411900px;}
.y11b{bottom:546.999750px;}
.y219{bottom:551.228850px;}
.y1b1{bottom:551.235600px;}
.y4a{bottom:551.363850px;}
.y1e2{bottom:551.367600px;}
.ya1{bottom:551.378850px;}
.y6d{bottom:551.513850px;}
.y15d{bottom:551.517600px;}
.yc0{bottom:551.663850px;}
.yed{bottom:551.678850px;}
.y248{bottom:556.796700px;}
.y167{bottom:559.158000px;}
.y2c8{bottom:559.938300px;}
.y288{bottom:559.940700px;}
.y18{bottom:561.411900px;}
.y12a{bottom:568.889850px;}
.y218{bottom:569.228850px;}
.y1b0{bottom:569.235600px;}
.y49{bottom:569.363850px;}
.y1e1{bottom:569.367600px;}
.ya0{bottom:569.378850px;}
.y6c{bottom:569.513850px;}
.y15c{bottom:569.517600px;}
.ybf{bottom:569.663850px;}
.yec{bottom:569.678850px;}
.y1d1{bottom:571.054350px;}
.y247{bottom:571.796700px;}
.y125{bottom:572.082150px;}
.y2c7{bottom:574.938300px;}
.y287{bottom:574.940700px;}
.y17{bottom:576.411900px;}
.y11c{bottom:579.747750px;}
.y12c{bottom:580.266000px;}
.y174{bottom:582.799500px;}
.y179{bottom:586.692300px;}
.y246{bottom:586.796700px;}
.y1af{bottom:587.235600px;}
.y48{bottom:587.363850px;}
.y1e0{bottom:587.367600px;}
.y9f{bottom:587.378850px;}
.y6b{bottom:587.513850px;}
.y15b{bottom:587.517600px;}
.ybe{bottom:587.663850px;}
.yeb{bottom:587.678850px;}
.y2c6{bottom:589.938300px;}
.y286{bottom:589.940700px;}
.y16{bottom:591.411900px;}
.y176{bottom:601.053150px;}
.y126{bottom:601.302150px;}
.y245{bottom:601.796700px;}
.y2c5{bottom:604.938300px;}
.y285{bottom:604.940700px;}
.y217{bottom:605.228850px;}
.y1ae{bottom:605.235600px;}
.y47{bottom:605.363850px;}
.y1df{bottom:605.367600px;}
.y9e{bottom:605.378850px;}
.y6a{bottom:605.513850px;}
.y15a{bottom:605.517600px;}
.ybd{bottom:605.663850px;}
.yea{bottom:605.678850px;}
.y15{bottom:606.411900px;}
.y1d2{bottom:606.790350px;}
.y11d{bottom:612.507750px;}
.y16b{bottom:613.641300px;}
.y244{bottom:616.796700px;}
.y2c4{bottom:619.938300px;}
.y284{bottom:619.940700px;}
.y14{bottom:621.411900px;}
.y216{bottom:623.228850px;}
.y1ad{bottom:623.235600px;}
.y46{bottom:623.363850px;}
.y1de{bottom:623.367600px;}
.y9d{bottom:623.378850px;}
.y69{bottom:623.513850px;}
.y159{bottom:623.517600px;}
.ye9{bottom:623.678850px;}
.y127{bottom:630.378150px;}
.y243{bottom:631.796700px;}
.y2c3{bottom:634.938300px;}
.y283{bottom:634.940700px;}
.y16c{bottom:635.325300px;}
.y13{bottom:636.411900px;}
.y215{bottom:641.228850px;}
.y1ac{bottom:641.235600px;}
.y45{bottom:641.363850px;}
.y1dd{bottom:641.367600px;}
.y9c{bottom:641.378850px;}
.y68{bottom:641.513850px;}
.y158{bottom:641.517600px;}
.ybc{bottom:641.663850px;}
.y11e{bottom:645.267750px;}
.y242{bottom:646.796700px;}
.y2c2{bottom:649.938300px;}
.y282{bottom:649.940700px;}
.y12{bottom:651.411900px;}
.y16d{bottom:656.733300px;}
.y214{bottom:659.228850px;}
.y1ab{bottom:659.235600px;}
.y44{bottom:659.363850px;}
.y1dc{bottom:659.367600px;}
.y9b{bottom:659.378850px;}
.y157{bottom:659.517600px;}
.y128{bottom:659.586150px;}
.ye8{bottom:659.678850px;}
.y241{bottom:661.796700px;}
.y2c1{bottom:664.938300px;}
.y281{bottom:664.940700px;}
.y11{bottom:666.411900px;}
.y178{bottom:672.420300px;}
.y240{bottom:676.796700px;}
.y213{bottom:677.228850px;}
.y1aa{bottom:677.235600px;}
.y43{bottom:677.363850px;}
.y1db{bottom:677.367600px;}
.y9a{bottom:677.378850px;}
.y67{bottom:677.513850px;}
.y156{bottom:677.517600px;}
.y11f{bottom:678.015750px;}
.y16e{bottom:678.273300px;}
.y2c0{bottom:679.938300px;}
.y280{bottom:679.940700px;}
.y10{bottom:681.411900px;}
.y129{bottom:688.662150px;}
.y23f{bottom:691.796700px;}
.y2bf{bottom:694.938300px;}
.y27f{bottom:694.940700px;}
.y212{bottom:695.228850px;}
.y1a9{bottom:695.235600px;}
.y42{bottom:695.363850px;}
.y1da{bottom:695.367600px;}
.y99{bottom:695.378850px;}
.y198{bottom:695.505600px;}
.ybb{bottom:695.513850px;}
.y155{bottom:695.517600px;}
.ye7{bottom:695.528850px;}
.y122{bottom:695.703750px;}
.yf{bottom:696.411900px;}
.y16f{bottom:699.813300px;}
.y23e{bottom:706.796700px;}
.y2be{bottom:709.938300px;}
.y27e{bottom:709.940700px;}
.ye{bottom:711.411900px;}
.y211{bottom:713.228850px;}
.y1a8{bottom:713.235600px;}
.y41{bottom:713.363850px;}
.y1d9{bottom:713.367600px;}
.y98{bottom:713.378850px;}
.y197{bottom:713.505600px;}
.yba{bottom:713.513850px;}
.y154{bottom:713.517600px;}
.ye6{bottom:713.528850px;}
.y170{bottom:721.365300px;}
.y23d{bottom:721.796700px;}
.y2bd{bottom:724.938300px;}
.y27d{bottom:724.940700px;}
.yd{bottom:726.411900px;}
.y210{bottom:731.228850px;}
.y1a7{bottom:731.235600px;}
.y40{bottom:731.363850px;}
.y1d8{bottom:731.367600px;}
.y97{bottom:731.378850px;}
.y196{bottom:731.505600px;}
.yb9{bottom:731.513850px;}
.y153{bottom:731.517600px;}
.ye5{bottom:731.528850px;}
.y23c{bottom:736.796700px;}
.y2bc{bottom:739.938300px;}
.y27c{bottom:739.940700px;}
.yc{bottom:741.411900px;}
.y171{bottom:742.761300px;}
.y20f{bottom:749.228850px;}
.y1a6{bottom:749.235600px;}
.y3f{bottom:749.363850px;}
.y20c{bottom:749.367600px;}
.y96{bottom:749.378850px;}
.y112{bottom:749.502600px;}
.y195{bottom:749.505600px;}
.yb8{bottom:749.513850px;}
.y152{bottom:749.517600px;}
.ye4{bottom:749.528850px;}
.y23b{bottom:751.796700px;}
.y2bb{bottom:754.938300px;}
.y27b{bottom:754.940700px;}
.yb{bottom:756.411900px;}
.y172{bottom:764.301300px;}
.y23a{bottom:766.796700px;}
.y20e{bottom:767.228850px;}
.y1a5{bottom:767.235600px;}
.y3e{bottom:767.363850px;}
.y20b{bottom:767.367600px;}
.y95{bottom:767.378850px;}
.y111{bottom:767.502600px;}
.y194{bottom:767.505600px;}
.yb7{bottom:767.513850px;}
.y151{bottom:767.517600px;}
.ye3{bottom:767.528850px;}
.y2ba{bottom:769.938300px;}
.y27a{bottom:769.940700px;}
.ya{bottom:771.411900px;}
.y239{bottom:781.796700px;}
.y2b9{bottom:784.938300px;}
.y279{bottom:784.940700px;}
.y1a4{bottom:785.235600px;}
.y3d{bottom:785.363850px;}
.y20a{bottom:785.367600px;}
.y94{bottom:785.378850px;}
.y110{bottom:785.502600px;}
.y193{bottom:785.505600px;}
.yb6{bottom:785.513850px;}
.y150{bottom:785.517600px;}
.ye2{bottom:785.528850px;}
.y173{bottom:785.985300px;}
.y9{bottom:786.411900px;}
.y238{bottom:796.796700px;}
.y2b8{bottom:799.938300px;}
.y278{bottom:799.940700px;}
.y20d{bottom:803.228850px;}
.y1a3{bottom:803.235600px;}
.y3c{bottom:803.363850px;}
.y209{bottom:803.367600px;}
.y93{bottom:803.378850px;}
.y10f{bottom:803.502600px;}
.y192{bottom:803.505600px;}
.yb5{bottom:803.513850px;}
.y14f{bottom:803.517600px;}
.ye1{bottom:803.528850px;}
.y237{bottom:811.796700px;}
.y2b7{bottom:814.938300px;}
.y277{bottom:814.940700px;}
.y1a2{bottom:821.235600px;}
.y3b{bottom:821.363850px;}
.y208{bottom:821.367600px;}
.y92{bottom:821.378850px;}
.y10e{bottom:821.502600px;}
.y191{bottom:821.505600px;}
.yb4{bottom:821.513850px;}
.y14e{bottom:821.517600px;}
.ye0{bottom:821.528850px;}
.y236{bottom:826.796700px;}
.y2b6{bottom:829.938300px;}
.y276{bottom:829.940700px;}
.y8{bottom:835.143000px;}
.y1a1{bottom:839.235600px;}
.y3a{bottom:839.363850px;}
.y207{bottom:839.367600px;}
.y91{bottom:839.378850px;}
.y10d{bottom:839.502600px;}
.y190{bottom:839.505600px;}
.yb3{bottom:839.513850px;}
.y14d{bottom:839.517600px;}
.ydf{bottom:839.528850px;}
.y235{bottom:841.796700px;}
.y2b5{bottom:844.938300px;}
.y275{bottom:844.940700px;}
.y234{bottom:856.796700px;}
.y1a0{bottom:857.235600px;}
.y39{bottom:857.363850px;}
.y206{bottom:857.367600px;}
.y90{bottom:857.378850px;}
.y10c{bottom:857.502600px;}
.yb2{bottom:857.513850px;}
.y14c{bottom:857.517600px;}
.yde{bottom:857.528850px;}
.y2b4{bottom:859.938300px;}
.y274{bottom:859.940700px;}
.y7{bottom:869.655900px;}
.y233{bottom:871.796700px;}
.y2b3{bottom:874.938300px;}
.y273{bottom:874.940700px;}
.y19f{bottom:875.235600px;}
.y38{bottom:875.363850px;}
.y205{bottom:875.367600px;}
.y8f{bottom:875.378850px;}
.y10b{bottom:875.502600px;}
.yb1{bottom:875.513850px;}
.y14b{bottom:875.517600px;}
.ydd{bottom:875.528850px;}
.y6{bottom:886.155900px;}
.y232{bottom:886.796700px;}
.y2b2{bottom:889.938300px;}
.y272{bottom:889.940700px;}
.y37{bottom:893.363850px;}
.y204{bottom:893.367600px;}
.y8e{bottom:893.378850px;}
.y10a{bottom:893.502600px;}
.yb0{bottom:893.513850px;}
.y14a{bottom:893.517600px;}
.ydc{bottom:893.528850px;}
.y231{bottom:901.796700px;}
.y2b1{bottom:904.938300px;}
.y271{bottom:904.940700px;}
.y5{bottom:905.541300px;}
.y19e{bottom:911.235600px;}
.y36{bottom:911.363850px;}
.y203{bottom:911.367600px;}
.y8d{bottom:911.378850px;}
.y109{bottom:911.502600px;}
.yaf{bottom:911.513850px;}
.y149{bottom:911.517600px;}
.ydb{bottom:911.528850px;}
.y230{bottom:916.796700px;}
.y2b0{bottom:919.938300px;}
.y270{bottom:919.940700px;}
.y35{bottom:929.363850px;}
.y202{bottom:929.367600px;}
.y8c{bottom:929.378850px;}
.y108{bottom:929.502600px;}
.yae{bottom:929.513850px;}
.y148{bottom:929.517600px;}
.yda{bottom:929.528850px;}
.y22f{bottom:931.796700px;}
.y4{bottom:932.930700px;}
.y2af{bottom:934.938300px;}
.y26f{bottom:934.940700px;}
.y34{bottom:947.363850px;}
.y201{bottom:947.367600px;}
.y8b{bottom:947.378850px;}
.y107{bottom:947.502600px;}
.yad{bottom:947.513850px;}
.y147{bottom:947.517600px;}
.y2ae{bottom:949.938300px;}
.y26e{bottom:949.940700px;}
.y3{bottom:959.936700px;}
.y2ad{bottom:964.938300px;}
.y26d{bottom:964.940700px;}
.y22e{bottom:965.232600px;}
.y33{bottom:965.363850px;}
.y200{bottom:965.367600px;}
.y19d{bottom:965.370600px;}
.y8a{bottom:965.378850px;}
.y106{bottom:965.502600px;}
.y18f{bottom:965.513850px;}
.yd9{bottom:965.528850px;}
.y2ac{bottom:979.938300px;}
.y26c{bottom:979.940700px;}
.y32{bottom:983.363850px;}
.y1ff{bottom:983.367600px;}
.y19c{bottom:983.370600px;}
.y89{bottom:983.378850px;}
.yac{bottom:983.513850px;}
.y146{bottom:983.517600px;}
.y2{bottom:991.423800px;}
.y2ab{bottom:994.938300px;}
.y26b{bottom:994.940700px;}
.y31{bottom:1001.363850px;}
.y1fe{bottom:1001.367600px;}
.y19b{bottom:1001.370600px;}
.y88{bottom:1001.378850px;}
.y105{bottom:1001.502600px;}
.y2aa{bottom:1009.938300px;}
.y26a{bottom:1009.940700px;}
.y30{bottom:1019.363850px;}
.y1fd{bottom:1019.367600px;}
.y19a{bottom:1019.370600px;}
.y87{bottom:1019.378850px;}
.y2a9{bottom:1024.938300px;}
.y269{bottom:1024.940700px;}
.y2f{bottom:1037.363850px;}
.y104{bottom:1037.367600px;}
.y199{bottom:1037.370600px;}
.y86{bottom:1037.378850px;}
.y2a8{bottom:1039.938300px;}
.y268{bottom:1039.940700px;}
.y2c{bottom:1070.769450px;}
.y66{bottom:1086.066450px;}
.y2b{bottom:1086.069450px;}
.h2{height:30.618164px;}
.h6{height:34.945312px;}
.h7{height:34.992188px;}
.hf{height:36.192188px;}
.h10{height:36.384445px;}
.ha{height:37.179199px;}
.h15{height:37.363912px;}
.h16{height:37.423312px;}
.h1a{height:37.455713px;}
.h1b{height:37.456312px;}
.h19{height:37.456913px;}
.h8{height:43.681641px;}
.h9{height:43.740234px;}
.h13{height:43.755234px;}
.hc{height:46.779741px;}
.h14{height:46.791741px;}
.hd{height:46.824741px;}
.hb{height:46.839741px;}
.h5{height:48.114258px;}
.h3{height:52.417969px;}
.h4{height:61.154297px;}
.h11{height:76.645987px;}
.he{height:215.785500px;}
.h1c{height:230.103000px;}
.h12{height:230.890500px;}
.h17{height:234.853500px;}
.h18{height:271.951500px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w4{width:338.040000px;}
.w6{width:338.149500px;}
.w3{width:445.915500px;}
.w2{width:626.047500px;}
.w5{width:637.455000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:10.297500px;}
.x2d{left:18.930450px;}
.x28{left:21.202650px;}
.x17{left:61.745400px;}
.xb{left:76.535400px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x3d{left:99.931350px;}
.x2c{left:103.218450px;}
.x44{left:106.295400px;}
.xc{left:110.570400px;}
.x2e{left:116.754450px;}
.x3f{left:122.018850px;}
.x3{left:125.431200px;}
.x3e{left:128.282850px;}
.x6{left:131.816400px;}
.x31{left:137.370300px;}
.x40{left:140.078850px;}
.x16{left:144.063000px;}
.x30{left:145.902300px;}
.x36{left:152.622300px;}
.x20{left:158.356200px;}
.x4{left:161.575200px;}
.x1e{left:171.319800px;}
.x1d{left:177.991800px;}
.x1c{left:191.335800px;}
.x43{left:194.285400px;}
.x32{left:197.874300px;}
.x5{left:212.876400px;}
.x1a{left:214.342200px;}
.x41{left:225.702300px;}
.x15{left:232.365300px;}
.x24{left:234.129000px;}
.x27{left:255.331650px;}
.x26{left:262.255650px;}
.x38{left:278.411400px;}
.x22{left:286.772250px;}
.x1b{left:288.442200px;}
.x1f{left:291.788850px;}
.x2f{left:329.094450px;}
.x37{left:349.251300px;}
.x25{left:407.230650px;}
.x39{left:431.163150px;}
.x34{left:441.947100px;}
.x33{left:447.047100px;}
.xa{left:455.041500px;}
.xd{left:457.085400px;}
.x3c{left:464.143350px;}
.x35{left:467.075100px;}
.x12{left:478.332150px;}
.x7{left:480.476400px;}
.x45{left:486.779400px;}
.xe{left:491.105400px;}
.x21{left:507.388200px;}
.x13{left:512.365950px;}
.x8{left:514.496400px;}
.x18{left:523.546200px;}
.xf{left:525.275400px;}
.x2a{left:538.912800px;}
.x19{left:546.394200px;}
.x3a{left:564.872550px;}
.x42{left:591.936000px;}
.x3b{left:600.691950px;}
.x23{left:641.359650px;}
.x11{left:663.492300px;}
.x2b{left:676.148250px;}
.x2{left:704.338650px;}
.x46{left:718.076550px;}
.x10{left:725.167350px;}
.x47{left:740.282550px;}
.x14{left:746.427300px;}
@media print{
.v3{vertical-align:-3.026133pt;}
.v6{vertical-align:-1.173333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.440000pt;}
.v4{vertical-align:14.208000pt;}
.v2{vertical-align:18.307200pt;}
.v5{vertical-align:37.025600pt;}
.ls54{letter-spacing:-5.440000pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls58{letter-spacing:-0.373333pt;}
.ls8b{letter-spacing:-0.320000pt;}
.ls67{letter-spacing:-0.266667pt;}
.ls55{letter-spacing:-0.213333pt;}
.ls56{letter-spacing:-0.160000pt;}
.lsa5{letter-spacing:-0.128000pt;}
.ls57{letter-spacing:-0.106667pt;}
.lsa6{letter-spacing:-0.085333pt;}
.ls41{letter-spacing:-0.053333pt;}
.lsa7{letter-spacing:-0.042667pt;}
.ls53{letter-spacing:-0.032000pt;}
.ls1b{letter-spacing:0.000000pt;}
.ls7c{letter-spacing:0.017600pt;}
.ls73{letter-spacing:0.030933pt;}
.ls7a{letter-spacing:0.032533pt;}
.ls76{letter-spacing:0.038400pt;}
.ls77{letter-spacing:0.039467pt;}
.ls9a{letter-spacing:0.042667pt;}
.ls18{letter-spacing:0.053333pt;}
.ls72{letter-spacing:0.054400pt;}
.ls79{letter-spacing:0.076800pt;}
.ls6{letter-spacing:0.085333pt;}
.ls3a{letter-spacing:0.106667pt;}
.ls70{letter-spacing:0.128000pt;}
.ls5e{letter-spacing:0.153600pt;}
.ls30{letter-spacing:0.160000pt;}
.ls5d{letter-spacing:0.168533pt;}
.ls3{letter-spacing:0.170667pt;}
.ls51{letter-spacing:0.192000pt;}
.ls32{letter-spacing:0.213333pt;}
.ls6c{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.266667pt;}
.ls7{letter-spacing:0.298667pt;}
.lse{letter-spacing:0.320000pt;}
.ls92{letter-spacing:0.341333pt;}
.ls61{letter-spacing:0.348267pt;}
.ls12{letter-spacing:0.373333pt;}
.lsac{letter-spacing:0.384000pt;}
.ls78{letter-spacing:0.416000pt;}
.ls34{letter-spacing:0.426667pt;}
.ls1e{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.512000pt;}
.ls1a{letter-spacing:0.533333pt;}
.ls52{letter-spacing:0.544000pt;}
.ls46{letter-spacing:0.548267pt;}
.ls9c{letter-spacing:0.554667pt;}
.ls60{letter-spacing:0.556800pt;}
.ls19{letter-spacing:0.586667pt;}
.ls82{letter-spacing:0.592533pt;}
.ls5{letter-spacing:0.597333pt;}
.ls20{letter-spacing:0.640000pt;}
.ls6f{letter-spacing:0.646933pt;}
.ls0{letter-spacing:0.682667pt;}
.ls40{letter-spacing:0.693333pt;}
.ls17{letter-spacing:0.746667pt;}
.ls90{letter-spacing:0.768000pt;}
.ls23{letter-spacing:0.800000pt;}
.lsa8{letter-spacing:0.810667pt;}
.lsd{letter-spacing:0.853333pt;}
.ls98{letter-spacing:0.896000pt;}
.ls2a{letter-spacing:0.906667pt;}
.lsad{letter-spacing:0.938667pt;}
.ls1d{letter-spacing:0.960000pt;}
.ls80{letter-spacing:0.981333pt;}
.ls49{letter-spacing:1.013333pt;}
.ls2{letter-spacing:1.024000pt;}
.ls81{letter-spacing:1.028267pt;}
.ls3f{letter-spacing:1.066667pt;}
.ls8d{letter-spacing:1.109333pt;}
.ls3b{letter-spacing:1.120000pt;}
.lsae{letter-spacing:1.152000pt;}
.ls25{letter-spacing:1.173333pt;}
.lsa0{letter-spacing:1.194667pt;}
.ls63{letter-spacing:1.208000pt;}
.ls31{letter-spacing:1.226667pt;}
.ls8e{letter-spacing:1.237333pt;}
.ls1f{letter-spacing:1.280000pt;}
.ls1{letter-spacing:1.322667pt;}
.ls66{letter-spacing:1.324800pt;}
.ls2e{letter-spacing:1.333333pt;}
.ls8c{letter-spacing:1.365333pt;}
.lsf{letter-spacing:1.386667pt;}
.ls7f{letter-spacing:1.408000pt;}
.ls14{letter-spacing:1.440000pt;}
.ls10{letter-spacing:1.493333pt;}
.lsb5{letter-spacing:1.536000pt;}
.ls26{letter-spacing:1.546667pt;}
.ls99{letter-spacing:1.578667pt;}
.ls3e{letter-spacing:1.600000pt;}
.ls93{letter-spacing:1.621333pt;}
.ls29{letter-spacing:1.653333pt;}
.ls95{letter-spacing:1.664000pt;}
.ls11{letter-spacing:1.706667pt;}
.lsaa{letter-spacing:1.749333pt;}
.lsa{letter-spacing:1.760000pt;}
.ls8{letter-spacing:1.813333pt;}
.ls6e{letter-spacing:1.866667pt;}
.lsb0{letter-spacing:1.877333pt;}
.ls35{letter-spacing:1.920000pt;}
.lsb3{letter-spacing:1.962667pt;}
.ls24{letter-spacing:1.973333pt;}
.ls62{letter-spacing:2.002133pt;}
.ls28{letter-spacing:2.026667pt;}
.ls4a{letter-spacing:2.080000pt;}
.lsa9{letter-spacing:2.090667pt;}
.ls37{letter-spacing:2.133333pt;}
.ls64{letter-spacing:2.186667pt;}
.ls65{letter-spacing:2.194133pt;}
.ls91{letter-spacing:2.218667pt;}
.ls15{letter-spacing:2.240000pt;}
.lsb4{letter-spacing:2.261333pt;}
.ls22{letter-spacing:2.293333pt;}
.lsa1{letter-spacing:2.304000pt;}
.ls16{letter-spacing:2.346667pt;}
.ls97{letter-spacing:2.389333pt;}
.ls43{letter-spacing:2.400000pt;}
.ls71{letter-spacing:2.432000pt;}
.ls5c{letter-spacing:2.453333pt;}
.ls3d{letter-spacing:2.506667pt;}
.ls9e{letter-spacing:2.517333pt;}
.ls38{letter-spacing:2.560000pt;}
.ls48{letter-spacing:2.613333pt;}
.ls9f{letter-spacing:2.645333pt;}
.lsb{letter-spacing:2.666667pt;}
.lsab{letter-spacing:2.688000pt;}
.ls4f{letter-spacing:2.720000pt;}
.ls39{letter-spacing:2.773333pt;}
.ls96{letter-spacing:2.816000pt;}
.ls27{letter-spacing:2.826667pt;}
.ls3c{letter-spacing:2.880000pt;}
.lsa2{letter-spacing:2.901333pt;}
.ls36{letter-spacing:2.933333pt;}
.ls9d{letter-spacing:2.944000pt;}
.ls45{letter-spacing:2.986667pt;}
.ls74{letter-spacing:3.029333pt;}
.ls6b{letter-spacing:3.040000pt;}
.ls7b{letter-spacing:3.093333pt;}
.ls4b{letter-spacing:3.146667pt;}
.lsaf{letter-spacing:3.157333pt;}
.ls85{letter-spacing:3.200000pt;}
.ls8f{letter-spacing:3.242667pt;}
.ls2d{letter-spacing:3.306667pt;}
.ls42{letter-spacing:3.360000pt;}
.ls75{letter-spacing:3.370667pt;}
.ls7d{letter-spacing:3.413333pt;}
.lsc{letter-spacing:3.466667pt;}
.ls9b{letter-spacing:3.498667pt;}
.ls2f{letter-spacing:3.520000pt;}
.ls5a{letter-spacing:3.573333pt;}
.ls59{letter-spacing:3.626667pt;}
.ls69{letter-spacing:3.680000pt;}
.ls6a{letter-spacing:3.733333pt;}
.ls94{letter-spacing:3.754667pt;}
.ls44{letter-spacing:3.840000pt;}
.lsb2{letter-spacing:3.882667pt;}
.ls2c{letter-spacing:3.893333pt;}
.ls2b{letter-spacing:3.946667pt;}
.ls86{letter-spacing:4.000000pt;}
.lsa4{letter-spacing:4.010667pt;}
.ls89{letter-spacing:4.106667pt;}
.ls33{letter-spacing:4.160000pt;}
.lsb1{letter-spacing:4.181333pt;}
.ls88{letter-spacing:4.213333pt;}
.ls84{letter-spacing:4.266667pt;}
.ls87{letter-spacing:4.320000pt;}
.ls47{letter-spacing:4.426667pt;}
.lsa3{letter-spacing:4.437333pt;}
.ls21{letter-spacing:4.533333pt;}
.ls50{letter-spacing:4.586667pt;}
.ls83{letter-spacing:4.640000pt;}
.ls4c{letter-spacing:4.746667pt;}
.ls4d{letter-spacing:4.800000pt;}
.ls6d{letter-spacing:4.853333pt;}
.ls5f{letter-spacing:5.013333pt;}
.ls13{letter-spacing:5.386667pt;}
.ls7e{letter-spacing:5.706667pt;}
.ls4e{letter-spacing:6.133333pt;}
.ls68{letter-spacing:6.293333pt;}
.ls5b{letter-spacing:6.346667pt;}
.ls8a{letter-spacing:6.720000pt;}
.ws45{word-spacing:-42.666667pt;}
.ws12{word-spacing:-18.346667pt;}
.ws2f{word-spacing:-15.840000pt;}
.ws29{word-spacing:-15.733333pt;}
.ws8b{word-spacing:-15.701333pt;}
.ws27{word-spacing:-15.146667pt;}
.ws2c{word-spacing:-14.826667pt;}
.wsa2{word-spacing:-12.672000pt;}
.ws8d{word-spacing:-12.416000pt;}
.wsa1{word-spacing:-12.245333pt;}
.ws8a{word-spacing:-12.202667pt;}
.ws5a{word-spacing:-11.989333pt;}
.wsa3{word-spacing:-11.904000pt;}
.ws5d{word-spacing:-11.861333pt;}
.ws8c{word-spacing:-11.733333pt;}
.ws44{word-spacing:-11.136000pt;}
.ws2a{word-spacing:-9.440000pt;}
.ws59{word-spacing:-9.312000pt;}
.ws28{word-spacing:-9.088000pt;}
.ws2d{word-spacing:-8.896000pt;}
.ws2e{word-spacing:-8.864000pt;}
.ws5b{word-spacing:-7.193600pt;}
.ws5e{word-spacing:-7.116800pt;}
.ws4c{word-spacing:-6.915157pt;}
.ws1f{word-spacing:-4.160000pt;}
.ws90{word-spacing:-3.754667pt;}
.ws1c{word-spacing:-3.520000pt;}
.ws6d{word-spacing:-3.370667pt;}
.ws6c{word-spacing:-3.029333pt;}
.ws3d{word-spacing:-2.986667pt;}
.ws21{word-spacing:-2.933333pt;}
.ws9d{word-spacing:-2.901333pt;}
.wsa7{word-spacing:-2.688000pt;}
.ws82{word-spacing:-2.560000pt;}
.ws1{word-spacing:-2.368000pt;}
.ws11{word-spacing:-2.346667pt;}
.ws8e{word-spacing:-2.293333pt;}
.ws40{word-spacing:-2.240000pt;}
.ws43{word-spacing:-2.186667pt;}
.ws4e{word-spacing:-2.080000pt;}
.ws42{word-spacing:-2.026667pt;}
.ws7a{word-spacing:-1.866667pt;}
.ws31{word-spacing:-1.706667pt;}
.ws88{word-spacing:-1.600000pt;}
.ws7d{word-spacing:-1.546667pt;}
.ws4f{word-spacing:-1.493333pt;}
.ws77{word-spacing:-1.408000pt;}
.ws1b{word-spacing:-1.333333pt;}
.ws81{word-spacing:-1.226667pt;}
.ws78{word-spacing:-0.981333pt;}
.ws13{word-spacing:-0.960000pt;}
.ws85{word-spacing:-0.853333pt;}
.wsa9{word-spacing:-0.810667pt;}
.ws87{word-spacing:-0.800000pt;}
.wsa8{word-spacing:-0.768000pt;}
.ws67{word-spacing:-0.693333pt;}
.ws2{word-spacing:-0.682667pt;}
.ws34{word-spacing:-0.640000pt;}
.ws96{word-spacing:-0.554667pt;}
.ws89{word-spacing:-0.426667pt;}
.ws8f{word-spacing:-0.341333pt;}
.ws9{word-spacing:-0.298667pt;}
.ws18{word-spacing:-0.266667pt;}
.ws56{word-spacing:-0.256000pt;}
.ws1e{word-spacing:-0.213333pt;}
.wsa0{word-spacing:-0.170667pt;}
.ws1d{word-spacing:-0.160000pt;}
.ws6a{word-spacing:-0.128000pt;}
.ws9e{word-spacing:-0.085333pt;}
.ws2b{word-spacing:-0.053333pt;}
.ws5c{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws94{word-spacing:0.042667pt;}
.ws3c{word-spacing:0.053333pt;}
.ws38{word-spacing:0.106667pt;}
.ws95{word-spacing:0.128000pt;}
.ws63{word-spacing:0.213333pt;}
.ws83{word-spacing:0.320000pt;}
.ws58{word-spacing:0.341333pt;}
.ws41{word-spacing:0.373333pt;}
.wsa{word-spacing:0.384000pt;}
.ws9c{word-spacing:0.469333pt;}
.wsab{word-spacing:0.512000pt;}
.ws20{word-spacing:0.533333pt;}
.wsa4{word-spacing:0.597333pt;}
.ws5{word-spacing:0.640000pt;}
.ws3f{word-spacing:0.693333pt;}
.ws52{word-spacing:0.746667pt;}
.wse{word-spacing:0.800000pt;}
.ws62{word-spacing:0.853333pt;}
.wsaa{word-spacing:0.896000pt;}
.ws1a{word-spacing:0.906667pt;}
.ws3e{word-spacing:0.960000pt;}
.ws84{word-spacing:1.013333pt;}
.ws26{word-spacing:1.066667pt;}
.ws6f{word-spacing:1.120000pt;}
.ws7f{word-spacing:1.173333pt;}
.ws9a{word-spacing:1.237333pt;}
.ws15{word-spacing:1.280000pt;}
.ws7{word-spacing:1.408000pt;}
.ws76{word-spacing:1.440000pt;}
.wsa5{word-spacing:1.578667pt;}
.ws16{word-spacing:1.653333pt;}
.ws79{word-spacing:1.706667pt;}
.ws92{word-spacing:1.792000pt;}
.ws97{word-spacing:1.834667pt;}
.ws7b{word-spacing:1.866667pt;}
.ws39{word-spacing:1.920000pt;}
.ws93{word-spacing:2.005333pt;}
.ws71{word-spacing:2.026667pt;}
.ws75{word-spacing:2.133333pt;}
.ws3a{word-spacing:2.240000pt;}
.ws7c{word-spacing:2.293333pt;}
.ws55{word-spacing:2.346667pt;}
.ws9f{word-spacing:2.389333pt;}
.ws53{word-spacing:2.400000pt;}
.wsc{word-spacing:2.432000pt;}
.ws6b{word-spacing:2.474667pt;}
.ws36{word-spacing:2.560000pt;}
.ws69{word-spacing:2.688000pt;}
.ws51{word-spacing:2.720000pt;}
.ws72{word-spacing:2.773333pt;}
.ws91{word-spacing:2.816000pt;}
.ws25{word-spacing:2.826667pt;}
.wsa6{word-spacing:2.901333pt;}
.wsac{word-spacing:2.944000pt;}
.ws99{word-spacing:2.986667pt;}
.ws14{word-spacing:3.040000pt;}
.ws6{word-spacing:3.114667pt;}
.ws65{word-spacing:3.146667pt;}
.ws19{word-spacing:3.200000pt;}
.ws57{word-spacing:3.242667pt;}
.ws68{word-spacing:3.370667pt;}
.wsb{word-spacing:3.456000pt;}
.ws10{word-spacing:3.573333pt;}
.ws98{word-spacing:3.584000pt;}
.ws30{word-spacing:3.626667pt;}
.ws54{word-spacing:3.680000pt;}
.ws8{word-spacing:3.712000pt;}
.ws35{word-spacing:3.733333pt;}
.ws9b{word-spacing:3.754667pt;}
.ws80{word-spacing:3.786667pt;}
.ws74{word-spacing:3.840000pt;}
.ws4{word-spacing:3.882667pt;}
.ws3{word-spacing:3.925333pt;}
.ws50{word-spacing:3.946667pt;}
.ws73{word-spacing:4.000000pt;}
.ws7e{word-spacing:4.106667pt;}
.ws22{word-spacing:4.160000pt;}
.ws17{word-spacing:4.213333pt;}
.ws3b{word-spacing:4.266667pt;}
.ws66{word-spacing:4.320000pt;}
.ws86{word-spacing:4.373333pt;}
.ws37{word-spacing:4.426667pt;}
.ws24{word-spacing:4.586667pt;}
.ws70{word-spacing:4.640000pt;}
.ws33{word-spacing:4.693333pt;}
.ws64{word-spacing:4.746667pt;}
.wsd{word-spacing:4.853333pt;}
.wsf{word-spacing:4.906667pt;}
.ws32{word-spacing:5.440000pt;}
.ws23{word-spacing:5.973333pt;}
.ws4d{word-spacing:15.061333pt;}
.ws47{word-spacing:35.840000pt;}
.ws49{word-spacing:69.205333pt;}
.ws48{word-spacing:79.274667pt;}
.ws4a{word-spacing:100.138667pt;}
.ws4b{word-spacing:103.978667pt;}
.ws60{word-spacing:186.112000pt;}
.ws6e{word-spacing:194.816000pt;}
.ws5f{word-spacing:195.797333pt;}
.ws61{word-spacing:358.229333pt;}
.ws46{word-spacing:1111.338667pt;}
._d{margin-left:-2576.352000pt;}
._e{margin-left:-2555.181333pt;}
._c{margin-left:-7.680000pt;}
._2{margin-left:-6.309333pt;}
._1{margin-left:-4.778667pt;}
._5{margin-left:-3.114667pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-0.997333pt;}
._7{width:0.906667pt;}
._b{width:1.973333pt;}
._6{width:3.029333pt;}
._4{width:4.608000pt;}
._9{width:5.706667pt;}
._8{width:7.093333pt;}
._a{width:8.906667pt;}
._12{width:29.056000pt;}
._11{width:31.616000pt;}
._13{width:33.109333pt;}
._15{width:37.290667pt;}
._14{width:41.173333pt;}
._16{width:57.341867pt;}
._f{width:68.522667pt;}
._10{width:104.917333pt;}
._26{width:216.746667pt;}
._18{width:222.293333pt;}
._17{width:231.424000pt;}
._19{width:379.221333pt;}
._1e{width:428.629333pt;}
._24{width:430.122667pt;}
._1c{width:435.712000pt;}
._21{width:440.490667pt;}
._1a{width:483.242667pt;}
._23{width:598.230400pt;}
._22{width:610.970667pt;}
._20{width:680.604267pt;}
._1d{width:765.937067pt;}
._1f{width:826.786667pt;}
._25{width:938.208533pt;}
._1b{width:1189.418667pt;}
.fs8{font-size:24.874667pt;}
.fs9{font-size:25.600000pt;}
.fs7{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs5{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:44.904000pt;}
.y143{bottom:50.802667pt;}
.y1{bottom:73.250400pt;}
.y1c8{bottom:74.095067pt;}
.y64{bottom:74.101200pt;}
.y1fc{bottom:74.104533pt;}
.y2d{bottom:74.216800pt;}
.y85{bottom:74.367867pt;}
.y130{bottom:74.446533pt;}
.y166{bottom:75.525333pt;}
.y1d6{bottom:80.753333pt;}
.y267{bottom:81.597067pt;}
.y2a7{bottom:84.391733pt;}
.y18c{bottom:84.729867pt;}
.y12f{bottom:88.441200pt;}
.y165{bottom:89.520000pt;}
.y22d{bottom:89.981200pt;}
.y63{bottom:90.101200pt;}
.y1fb{bottom:90.104533pt;}
.yd8{bottom:90.367867pt;}
.y266{bottom:94.930400pt;}
.y1c7{bottom:96.776000pt;}
.y2a6{bottom:97.725067pt;}
.y12e{bottom:102.435867pt;}
.y177{bottom:102.962133pt;}
.y164{bottom:103.538533pt;}
.y62{bottom:106.101200pt;}
.y1fa{bottom:106.104533pt;}
.y84{bottom:106.367867pt;}
.y265{bottom:108.263733pt;}
.y2a5{bottom:111.058400pt;}
.y1c6{bottom:111.222133pt;}
.y12d{bottom:116.430533pt;}
.y163{bottom:117.533200pt;}
.y264{bottom:121.597067pt;}
.y22c{bottom:121.981200pt;}
.y61{bottom:122.101200pt;}
.y1f9{bottom:122.104533pt;}
.yd7{bottom:122.367867pt;}
.y2a4{bottom:124.391733pt;}
.y1c5{bottom:125.668400pt;}
.y1b{bottom:130.200800pt;}
.y162{bottom:131.527867pt;}
.y263{bottom:134.930400pt;}
.y136{bottom:137.298667pt;}
.y2a3{bottom:137.725067pt;}
.y22b{bottom:137.981200pt;}
.y60{bottom:138.101200pt;}
.y1f8{bottom:138.104533pt;}
.y83{bottom:138.234533pt;}
.y103{bottom:138.353200pt;}
.yd6{bottom:138.367867pt;}
.y1c4{bottom:140.114533pt;}
.y131{bottom:140.762133pt;}
.y161{bottom:145.522533pt;}
.y262{bottom:148.263733pt;}
.y138{bottom:149.453333pt;}
.y2a2{bottom:151.058400pt;}
.y22a{bottom:153.981200pt;}
.y5f{bottom:154.101200pt;}
.y1f7{bottom:154.104533pt;}
.y82{bottom:154.234533pt;}
.y102{bottom:154.353200pt;}
.yd5{bottom:154.367867pt;}
.y1c3{bottom:154.560800pt;}
.y160{bottom:159.517200pt;}
.y261{bottom:161.597067pt;}
.y2a1{bottom:164.391733pt;}
.y139{bottom:167.810667pt;}
.y1c2{bottom:169.006800pt;}
.y229{bottom:169.981200pt;}
.y5e{bottom:170.101200pt;}
.y1f6{bottom:170.104533pt;}
.y81{bottom:170.234533pt;}
.y101{bottom:170.353200pt;}
.yd4{bottom:170.367867pt;}
.y29{bottom:173.884000pt;}
.y260{bottom:174.930400pt;}
.y2a0{bottom:177.725067pt;}
.y188{bottom:181.194667pt;}
.y119{bottom:182.654800pt;}
.y1c1{bottom:183.449467pt;}
.y18e{bottom:184.658933pt;}
.y5d{bottom:186.101200pt;}
.y1f5{bottom:186.104533pt;}
.y13a{bottom:186.168000pt;}
.y80{bottom:186.234533pt;}
.y100{bottom:186.353200pt;}
.yd3{bottom:186.367867pt;}
.y132{bottom:186.690533pt;}
.y25f{bottom:188.263733pt;}
.y28{bottom:189.884000pt;}
.y29f{bottom:191.058400pt;}
.y1d4{bottom:195.375733pt;}
.y142{bottom:195.728000pt;}
.y137{bottom:196.080000pt;}
.y175{bottom:199.628267pt;}
.y186{bottom:200.659867pt;}
.y25e{bottom:201.597067pt;}
.y228{bottom:201.981200pt;}
.y5c{bottom:202.101200pt;}
.y1f4{bottom:202.104533pt;}
.y7f{bottom:202.234533pt;}
.yff{bottom:202.353200pt;}
.yd2{bottom:202.367867pt;}
.y180{bottom:202.610400pt;}
.y29e{bottom:204.391733pt;}
.y13b{bottom:204.525333pt;}
.y27{bottom:205.884000pt;}
.y1c0{bottom:211.460133pt;}
.y17a{bottom:214.290400pt;}
.y181{bottom:214.782533pt;}
.y25d{bottom:214.930400pt;}
.y29d{bottom:217.725067pt;}
.y227{bottom:217.981200pt;}
.y5b{bottom:218.101200pt;}
.y1f3{bottom:218.104533pt;}
.y7e{bottom:218.234533pt;}
.yfe{bottom:218.353200pt;}
.yd1{bottom:218.367867pt;}
.y26{bottom:221.884000pt;}
.y13c{bottom:222.882667pt;}
.y133{bottom:223.362533pt;}
.y145{bottom:226.684667pt;}
.y25c{bottom:228.263733pt;}
.y29c{bottom:231.058400pt;}
.y189{bottom:232.578133pt;}
.y5a{bottom:234.101200pt;}
.y1f2{bottom:234.104533pt;}
.y7d{bottom:234.234533pt;}
.yfd{bottom:234.353200pt;}
.yd0{bottom:234.367867pt;}
.y25{bottom:237.884000pt;}
.y13d{bottom:241.240000pt;}
.y25b{bottom:241.597067pt;}
.y1bf{bottom:242.405733pt;}
.y2db{bottom:244.389600pt;}
.y29b{bottom:244.391733pt;}
.y17b{bottom:246.663733pt;}
.y226{bottom:249.981200pt;}
.y59{bottom:250.101200pt;}
.y1f1{bottom:250.104533pt;}
.y7c{bottom:250.234533pt;}
.yfc{bottom:250.353200pt;}
.ycf{bottom:250.367867pt;}
.y182{bottom:251.603867pt;}
.y24{bottom:253.884000pt;}
.y25a{bottom:254.930400pt;}
.y2da{bottom:257.722933pt;}
.y29a{bottom:257.725067pt;}
.y13e{bottom:259.597333pt;}
.y1be{bottom:259.760533pt;}
.y134{bottom:260.034533pt;}
.y225{bottom:265.981200pt;}
.y58{bottom:266.101200pt;}
.y1f0{bottom:266.104533pt;}
.y7b{bottom:266.234533pt;}
.yfb{bottom:266.353200pt;}
.yce{bottom:266.367867pt;}
.y18d{bottom:266.372533pt;}
.y259{bottom:268.263733pt;}
.y23{bottom:269.884000pt;}
.y2d9{bottom:271.056267pt;}
.y299{bottom:271.058400pt;}
.y13f{bottom:277.954667pt;}
.y17c{bottom:279.175733pt;}
.y258{bottom:281.597067pt;}
.y224{bottom:281.981200pt;}
.y57{bottom:282.101200pt;}
.y1ef{bottom:282.104533pt;}
.y7a{bottom:282.234533pt;}
.ycd{bottom:282.367867pt;}
.yfa{bottom:282.381200pt;}
.y2d8{bottom:284.389600pt;}
.y298{bottom:284.391733pt;}
.y22{bottom:285.884000pt;}
.y183{bottom:288.435867pt;}
.y257{bottom:294.930400pt;}
.y140{bottom:296.312000pt;}
.y135{bottom:296.706533pt;}
.y2d7{bottom:297.722933pt;}
.y297{bottom:297.725067pt;}
.y65{bottom:297.981200pt;}
.y1bd{bottom:297.987200pt;}
.y56{bottom:298.101200pt;}
.y1ee{bottom:298.104533pt;}
.y1cd{bottom:298.165600pt;}
.y79{bottom:298.234533pt;}
.ycc{bottom:298.367867pt;}
.yf9{bottom:298.381200pt;}
.y21{bottom:301.884000pt;}
.y256{bottom:308.263733pt;}
.y2d6{bottom:311.056267pt;}
.y296{bottom:311.058400pt;}
.y17d{bottom:311.538400pt;}
.y1cc{bottom:312.175067pt;}
.y223{bottom:313.981200pt;}
.y1bc{bottom:313.987200pt;}
.y55{bottom:314.101200pt;}
.y1ed{bottom:314.104533pt;}
.y78{bottom:314.234533pt;}
.ycb{bottom:314.367867pt;}
.yf8{bottom:314.381200pt;}
.y141{bottom:314.669333pt;}
.y20{bottom:317.884000pt;}
.y255{bottom:321.597067pt;}
.y2d5{bottom:324.389600pt;}
.y295{bottom:324.391733pt;}
.y184{bottom:325.246533pt;}
.y1cb{bottom:326.169733pt;}
.y144{bottom:327.977733pt;}
.y222{bottom:329.981200pt;}
.y1bb{bottom:329.987200pt;}
.y54{bottom:330.101200pt;}
.y1ec{bottom:330.104533pt;}
.yab{bottom:330.114533pt;}
.y77{bottom:330.234533pt;}
.yca{bottom:330.367867pt;}
.yf7{bottom:330.381200pt;}
.y1f{bottom:333.884000pt;}
.y254{bottom:334.930400pt;}
.y2d4{bottom:337.722933pt;}
.y294{bottom:337.725067pt;}
.y1ca{bottom:340.164400pt;}
.y17e{bottom:343.911733pt;}
.y221{bottom:345.981200pt;}
.y1ba{bottom:345.987200pt;}
.y53{bottom:346.101200pt;}
.y1eb{bottom:346.104533pt;}
.yaa{bottom:346.114533pt;}
.y76{bottom:346.234533pt;}
.yc9{bottom:346.367867pt;}
.yf6{bottom:346.381200pt;}
.y253{bottom:348.263733pt;}
.y1e{bottom:349.884000pt;}
.y2d3{bottom:351.056267pt;}
.y293{bottom:351.058400pt;}
.y1c9{bottom:354.159067pt;}
.y18b{bottom:357.543600pt;}
.y252{bottom:361.597067pt;}
.y1b9{bottom:361.987200pt;}
.y185{bottom:362.078533pt;}
.y52{bottom:362.101200pt;}
.y1ea{bottom:362.104533pt;}
.ya9{bottom:362.114533pt;}
.y75{bottom:362.234533pt;}
.yc8{bottom:362.367867pt;}
.yf5{bottom:362.381200pt;}
.y2d2{bottom:364.389600pt;}
.y292{bottom:364.391733pt;}
.y1d{bottom:365.884000pt;}
.y117{bottom:368.902400pt;}
.y251{bottom:374.930400pt;}
.y1d3{bottom:375.748000pt;}
.y17f{bottom:376.423733pt;}
.y18a{bottom:376.498267pt;}
.y2d1{bottom:377.722933pt;}
.y291{bottom:377.725067pt;}
.y220{bottom:377.981200pt;}
.y1b8{bottom:377.987200pt;}
.y51{bottom:378.101200pt;}
.y1e9{bottom:378.104533pt;}
.ya8{bottom:378.114533pt;}
.y74{bottom:378.234533pt;}
.yc7{bottom:378.367867pt;}
.yf4{bottom:378.381200pt;}
.y1d7{bottom:379.210933pt;}
.y2a{bottom:381.884000pt;}
.y116{bottom:382.897067pt;}
.y250{bottom:388.263733pt;}
.y2d0{bottom:391.056267pt;}
.y290{bottom:391.058400pt;}
.y21f{bottom:393.981200pt;}
.y1b7{bottom:393.987200pt;}
.y50{bottom:394.101200pt;}
.y1e8{bottom:394.104533pt;}
.ya7{bottom:394.114533pt;}
.y73{bottom:394.234533pt;}
.yc6{bottom:394.367867pt;}
.yf3{bottom:394.381200pt;}
.y115{bottom:396.891733pt;}
.y1c{bottom:397.884000pt;}
.y1d5{bottom:399.027733pt;}
.y24f{bottom:401.597067pt;}
.y2cf{bottom:404.389600pt;}
.y28f{bottom:404.391733pt;}
.y21e{bottom:409.981200pt;}
.y1b6{bottom:409.987200pt;}
.y4f{bottom:410.101200pt;}
.y1e7{bottom:410.104533pt;}
.ya6{bottom:410.114533pt;}
.y72{bottom:410.234533pt;}
.yc5{bottom:410.367867pt;}
.yf2{bottom:410.381200pt;}
.y114{bottom:410.886400pt;}
.y187{bottom:412.055467pt;}
.y1ce{bottom:412.115867pt;}
.y24e{bottom:414.930400pt;}
.y2ce{bottom:417.722933pt;}
.y28e{bottom:417.725067pt;}
.y113{bottom:424.881067pt;}
.y21d{bottom:425.981200pt;}
.y1b5{bottom:425.987200pt;}
.y4e{bottom:426.101200pt;}
.y1e6{bottom:426.104533pt;}
.ya5{bottom:426.114533pt;}
.y71{bottom:426.234533pt;}
.yc4{bottom:426.367867pt;}
.yf1{bottom:426.381200pt;}
.y24d{bottom:428.263733pt;}
.y2cd{bottom:431.056267pt;}
.y28d{bottom:431.058400pt;}
.y24c{bottom:441.597067pt;}
.y21c{bottom:441.981200pt;}
.y1b4{bottom:441.987200pt;}
.y4d{bottom:442.101200pt;}
.y1e5{bottom:442.104533pt;}
.ya4{bottom:442.114533pt;}
.y70{bottom:442.234533pt;}
.yc3{bottom:442.367867pt;}
.yf0{bottom:442.381200pt;}
.y1cf{bottom:444.062533pt;}
.y2cc{bottom:444.389600pt;}
.y28c{bottom:444.391733pt;}
.y118{bottom:445.678667pt;}
.y120{bottom:449.134000pt;}
.y121{bottom:449.262000pt;}
.y24b{bottom:454.930400pt;}
.y16a{bottom:455.045333pt;}
.y1a{bottom:456.494133pt;}
.y123{bottom:456.698800pt;}
.y11a{bottom:457.091333pt;}
.y2cb{bottom:457.722933pt;}
.y28b{bottom:457.725067pt;}
.y21b{bottom:457.981200pt;}
.y1b3{bottom:457.987200pt;}
.y4c{bottom:458.101200pt;}
.y1e4{bottom:458.104533pt;}
.ya3{bottom:458.114533pt;}
.y15f{bottom:458.227200pt;}
.y6f{bottom:458.234533pt;}
.yc2{bottom:458.367867pt;}
.yef{bottom:458.381200pt;}
.y24a{bottom:468.263733pt;}
.y169{bottom:469.040000pt;}
.y2ca{bottom:471.056267pt;}
.y28a{bottom:471.058400pt;}
.y21a{bottom:473.981200pt;}
.y1b2{bottom:473.987200pt;}
.y4b{bottom:474.101200pt;}
.y1e3{bottom:474.104533pt;}
.ya2{bottom:474.114533pt;}
.y6e{bottom:474.234533pt;}
.y15e{bottom:474.237867pt;}
.yc1{bottom:474.367867pt;}
.yee{bottom:474.381200pt;}
.y1d0{bottom:475.827867pt;}
.y12b{bottom:479.069200pt;}
.y249{bottom:481.597067pt;}
.y168{bottom:483.034667pt;}
.y124{bottom:483.109467pt;}
.y2c9{bottom:484.389600pt;}
.y289{bottom:484.391733pt;}
.y19{bottom:485.699467pt;}
.y11b{bottom:486.222000pt;}
.y219{bottom:489.981200pt;}
.y1b1{bottom:489.987200pt;}
.y4a{bottom:490.101200pt;}
.y1e2{bottom:490.104533pt;}
.ya1{bottom:490.114533pt;}
.y6d{bottom:490.234533pt;}
.y15d{bottom:490.237867pt;}
.yc0{bottom:490.367867pt;}
.yed{bottom:490.381200pt;}
.y248{bottom:494.930400pt;}
.y167{bottom:497.029333pt;}
.y2c8{bottom:497.722933pt;}
.y288{bottom:497.725067pt;}
.y18{bottom:499.032800pt;}
.y12a{bottom:505.679867pt;}
.y218{bottom:505.981200pt;}
.y1b0{bottom:505.987200pt;}
.y49{bottom:506.101200pt;}
.y1e1{bottom:506.104533pt;}
.ya0{bottom:506.114533pt;}
.y6c{bottom:506.234533pt;}
.y15c{bottom:506.237867pt;}
.ybf{bottom:506.367867pt;}
.yec{bottom:506.381200pt;}
.y1d1{bottom:507.603867pt;}
.y247{bottom:508.263733pt;}
.y125{bottom:508.517467pt;}
.y2c7{bottom:511.056267pt;}
.y287{bottom:511.058400pt;}
.y17{bottom:512.366133pt;}
.y11c{bottom:515.331333pt;}
.y12c{bottom:515.792000pt;}
.y174{bottom:518.044000pt;}
.y179{bottom:521.504267pt;}
.y246{bottom:521.597067pt;}
.y1af{bottom:521.987200pt;}
.y48{bottom:522.101200pt;}
.y1e0{bottom:522.104533pt;}
.y9f{bottom:522.114533pt;}
.y6b{bottom:522.234533pt;}
.y15b{bottom:522.237867pt;}
.ybe{bottom:522.367867pt;}
.yeb{bottom:522.381200pt;}
.y2c6{bottom:524.389600pt;}
.y286{bottom:524.391733pt;}
.y16{bottom:525.699467pt;}
.y176{bottom:534.269467pt;}
.y126{bottom:534.490800pt;}
.y245{bottom:534.930400pt;}
.y2c5{bottom:537.722933pt;}
.y285{bottom:537.725067pt;}
.y217{bottom:537.981200pt;}
.y1ae{bottom:537.987200pt;}
.y47{bottom:538.101200pt;}
.y1df{bottom:538.104533pt;}
.y9e{bottom:538.114533pt;}
.y6a{bottom:538.234533pt;}
.y15a{bottom:538.237867pt;}
.ybd{bottom:538.367867pt;}
.yea{bottom:538.381200pt;}
.y15{bottom:539.032800pt;}
.y1d2{bottom:539.369200pt;}
.y11d{bottom:544.451333pt;}
.y16b{bottom:545.458933pt;}
.y244{bottom:548.263733pt;}
.y2c4{bottom:551.056267pt;}
.y284{bottom:551.058400pt;}
.y14{bottom:552.366133pt;}
.y216{bottom:553.981200pt;}
.y1ad{bottom:553.987200pt;}
.y46{bottom:554.101200pt;}
.y1de{bottom:554.104533pt;}
.y9d{bottom:554.114533pt;}
.y69{bottom:554.234533pt;}
.y159{bottom:554.237867pt;}
.ye9{bottom:554.381200pt;}
.y127{bottom:560.336133pt;}
.y243{bottom:561.597067pt;}
.y2c3{bottom:564.389600pt;}
.y283{bottom:564.391733pt;}
.y16c{bottom:564.733600pt;}
.y13{bottom:565.699467pt;}
.y215{bottom:569.981200pt;}
.y1ac{bottom:569.987200pt;}
.y45{bottom:570.101200pt;}
.y1dd{bottom:570.104533pt;}
.y9c{bottom:570.114533pt;}
.y68{bottom:570.234533pt;}
.y158{bottom:570.237867pt;}
.ybc{bottom:570.367867pt;}
.y11e{bottom:573.571333pt;}
.y242{bottom:574.930400pt;}
.y2c2{bottom:577.722933pt;}
.y282{bottom:577.725067pt;}
.y12{bottom:579.032800pt;}
.y16d{bottom:583.762933pt;}
.y214{bottom:585.981200pt;}
.y1ab{bottom:585.987200pt;}
.y44{bottom:586.101200pt;}
.y1dc{bottom:586.104533pt;}
.y9b{bottom:586.114533pt;}
.y157{bottom:586.237867pt;}
.y128{bottom:586.298800pt;}
.ye8{bottom:586.381200pt;}
.y241{bottom:588.263733pt;}
.y2c1{bottom:591.056267pt;}
.y281{bottom:591.058400pt;}
.y11{bottom:592.366133pt;}
.y178{bottom:597.706933pt;}
.y240{bottom:601.597067pt;}
.y213{bottom:601.981200pt;}
.y1aa{bottom:601.987200pt;}
.y43{bottom:602.101200pt;}
.y1db{bottom:602.104533pt;}
.y9a{bottom:602.114533pt;}
.y67{bottom:602.234533pt;}
.y156{bottom:602.237867pt;}
.y11f{bottom:602.680667pt;}
.y16e{bottom:602.909600pt;}
.y2c0{bottom:604.389600pt;}
.y280{bottom:604.391733pt;}
.y10{bottom:605.699467pt;}
.y129{bottom:612.144133pt;}
.y23f{bottom:614.930400pt;}
.y2bf{bottom:617.722933pt;}
.y27f{bottom:617.725067pt;}
.y212{bottom:617.981200pt;}
.y1a9{bottom:617.987200pt;}
.y42{bottom:618.101200pt;}
.y1da{bottom:618.104533pt;}
.y99{bottom:618.114533pt;}
.y198{bottom:618.227200pt;}
.ybb{bottom:618.234533pt;}
.y155{bottom:618.237867pt;}
.ye7{bottom:618.247867pt;}
.y122{bottom:618.403333pt;}
.yf{bottom:619.032800pt;}
.y16f{bottom:622.056267pt;}
.y23e{bottom:628.263733pt;}
.y2be{bottom:631.056267pt;}
.y27e{bottom:631.058400pt;}
.ye{bottom:632.366133pt;}
.y211{bottom:633.981200pt;}
.y1a8{bottom:633.987200pt;}
.y41{bottom:634.101200pt;}
.y1d9{bottom:634.104533pt;}
.y98{bottom:634.114533pt;}
.y197{bottom:634.227200pt;}
.yba{bottom:634.234533pt;}
.y154{bottom:634.237867pt;}
.ye6{bottom:634.247867pt;}
.y170{bottom:641.213600pt;}
.y23d{bottom:641.597067pt;}
.y2bd{bottom:644.389600pt;}
.y27d{bottom:644.391733pt;}
.yd{bottom:645.699467pt;}
.y210{bottom:649.981200pt;}
.y1a7{bottom:649.987200pt;}
.y40{bottom:650.101200pt;}
.y1d8{bottom:650.104533pt;}
.y97{bottom:650.114533pt;}
.y196{bottom:650.227200pt;}
.yb9{bottom:650.234533pt;}
.y153{bottom:650.237867pt;}
.ye5{bottom:650.247867pt;}
.y23c{bottom:654.930400pt;}
.y2bc{bottom:657.722933pt;}
.y27c{bottom:657.725067pt;}
.yc{bottom:659.032800pt;}
.y171{bottom:660.232267pt;}
.y20f{bottom:665.981200pt;}
.y1a6{bottom:665.987200pt;}
.y3f{bottom:666.101200pt;}
.y20c{bottom:666.104533pt;}
.y96{bottom:666.114533pt;}
.y112{bottom:666.224533pt;}
.y195{bottom:666.227200pt;}
.yb8{bottom:666.234533pt;}
.y152{bottom:666.237867pt;}
.ye4{bottom:666.247867pt;}
.y23b{bottom:668.263733pt;}
.y2bb{bottom:671.056267pt;}
.y27b{bottom:671.058400pt;}
.yb{bottom:672.366133pt;}
.y172{bottom:679.378933pt;}
.y23a{bottom:681.597067pt;}
.y20e{bottom:681.981200pt;}
.y1a5{bottom:681.987200pt;}
.y3e{bottom:682.101200pt;}
.y20b{bottom:682.104533pt;}
.y95{bottom:682.114533pt;}
.y111{bottom:682.224533pt;}
.y194{bottom:682.227200pt;}
.yb7{bottom:682.234533pt;}
.y151{bottom:682.237867pt;}
.ye3{bottom:682.247867pt;}
.y2ba{bottom:684.389600pt;}
.y27a{bottom:684.391733pt;}
.ya{bottom:685.699467pt;}
.y239{bottom:694.930400pt;}
.y2b9{bottom:697.722933pt;}
.y279{bottom:697.725067pt;}
.y1a4{bottom:697.987200pt;}
.y3d{bottom:698.101200pt;}
.y20a{bottom:698.104533pt;}
.y94{bottom:698.114533pt;}
.y110{bottom:698.224533pt;}
.y193{bottom:698.227200pt;}
.yb6{bottom:698.234533pt;}
.y150{bottom:698.237867pt;}
.ye2{bottom:698.247867pt;}
.y173{bottom:698.653600pt;}
.y9{bottom:699.032800pt;}
.y238{bottom:708.263733pt;}
.y2b8{bottom:711.056267pt;}
.y278{bottom:711.058400pt;}
.y20d{bottom:713.981200pt;}
.y1a3{bottom:713.987200pt;}
.y3c{bottom:714.101200pt;}
.y209{bottom:714.104533pt;}
.y93{bottom:714.114533pt;}
.y10f{bottom:714.224533pt;}
.y192{bottom:714.227200pt;}
.yb5{bottom:714.234533pt;}
.y14f{bottom:714.237867pt;}
.ye1{bottom:714.247867pt;}
.y237{bottom:721.597067pt;}
.y2b7{bottom:724.389600pt;}
.y277{bottom:724.391733pt;}
.y1a2{bottom:729.987200pt;}
.y3b{bottom:730.101200pt;}
.y208{bottom:730.104533pt;}
.y92{bottom:730.114533pt;}
.y10e{bottom:730.224533pt;}
.y191{bottom:730.227200pt;}
.yb4{bottom:730.234533pt;}
.y14e{bottom:730.237867pt;}
.ye0{bottom:730.247867pt;}
.y236{bottom:734.930400pt;}
.y2b6{bottom:737.722933pt;}
.y276{bottom:737.725067pt;}
.y8{bottom:742.349333pt;}
.y1a1{bottom:745.987200pt;}
.y3a{bottom:746.101200pt;}
.y207{bottom:746.104533pt;}
.y91{bottom:746.114533pt;}
.y10d{bottom:746.224533pt;}
.y190{bottom:746.227200pt;}
.yb3{bottom:746.234533pt;}
.y14d{bottom:746.237867pt;}
.ydf{bottom:746.247867pt;}
.y235{bottom:748.263733pt;}
.y2b5{bottom:751.056267pt;}
.y275{bottom:751.058400pt;}
.y234{bottom:761.597067pt;}
.y1a0{bottom:761.987200pt;}
.y39{bottom:762.101200pt;}
.y206{bottom:762.104533pt;}
.y90{bottom:762.114533pt;}
.y10c{bottom:762.224533pt;}
.yb2{bottom:762.234533pt;}
.y14c{bottom:762.237867pt;}
.yde{bottom:762.247867pt;}
.y2b4{bottom:764.389600pt;}
.y274{bottom:764.391733pt;}
.y7{bottom:773.027467pt;}
.y233{bottom:774.930400pt;}
.y2b3{bottom:777.722933pt;}
.y273{bottom:777.725067pt;}
.y19f{bottom:777.987200pt;}
.y38{bottom:778.101200pt;}
.y205{bottom:778.104533pt;}
.y8f{bottom:778.114533pt;}
.y10b{bottom:778.224533pt;}
.yb1{bottom:778.234533pt;}
.y14b{bottom:778.237867pt;}
.ydd{bottom:778.247867pt;}
.y6{bottom:787.694133pt;}
.y232{bottom:788.263733pt;}
.y2b2{bottom:791.056267pt;}
.y272{bottom:791.058400pt;}
.y37{bottom:794.101200pt;}
.y204{bottom:794.104533pt;}
.y8e{bottom:794.114533pt;}
.y10a{bottom:794.224533pt;}
.yb0{bottom:794.234533pt;}
.y14a{bottom:794.237867pt;}
.ydc{bottom:794.247867pt;}
.y231{bottom:801.597067pt;}
.y2b1{bottom:804.389600pt;}
.y271{bottom:804.391733pt;}
.y5{bottom:804.925600pt;}
.y19e{bottom:809.987200pt;}
.y36{bottom:810.101200pt;}
.y203{bottom:810.104533pt;}
.y8d{bottom:810.114533pt;}
.y109{bottom:810.224533pt;}
.yaf{bottom:810.234533pt;}
.y149{bottom:810.237867pt;}
.ydb{bottom:810.247867pt;}
.y230{bottom:814.930400pt;}
.y2b0{bottom:817.722933pt;}
.y270{bottom:817.725067pt;}
.y35{bottom:826.101200pt;}
.y202{bottom:826.104533pt;}
.y8c{bottom:826.114533pt;}
.y108{bottom:826.224533pt;}
.yae{bottom:826.234533pt;}
.y148{bottom:826.237867pt;}
.yda{bottom:826.247867pt;}
.y22f{bottom:828.263733pt;}
.y4{bottom:829.271733pt;}
.y2af{bottom:831.056267pt;}
.y26f{bottom:831.058400pt;}
.y34{bottom:842.101200pt;}
.y201{bottom:842.104533pt;}
.y8b{bottom:842.114533pt;}
.y107{bottom:842.224533pt;}
.yad{bottom:842.234533pt;}
.y147{bottom:842.237867pt;}
.y2ae{bottom:844.389600pt;}
.y26e{bottom:844.391733pt;}
.y3{bottom:853.277067pt;}
.y2ad{bottom:857.722933pt;}
.y26d{bottom:857.725067pt;}
.y22e{bottom:857.984533pt;}
.y33{bottom:858.101200pt;}
.y200{bottom:858.104533pt;}
.y19d{bottom:858.107200pt;}
.y8a{bottom:858.114533pt;}
.y106{bottom:858.224533pt;}
.y18f{bottom:858.234533pt;}
.yd9{bottom:858.247867pt;}
.y2ac{bottom:871.056267pt;}
.y26c{bottom:871.058400pt;}
.y32{bottom:874.101200pt;}
.y1ff{bottom:874.104533pt;}
.y19c{bottom:874.107200pt;}
.y89{bottom:874.114533pt;}
.yac{bottom:874.234533pt;}
.y146{bottom:874.237867pt;}
.y2{bottom:881.265600pt;}
.y2ab{bottom:884.389600pt;}
.y26b{bottom:884.391733pt;}
.y31{bottom:890.101200pt;}
.y1fe{bottom:890.104533pt;}
.y19b{bottom:890.107200pt;}
.y88{bottom:890.114533pt;}
.y105{bottom:890.224533pt;}
.y2aa{bottom:897.722933pt;}
.y26a{bottom:897.725067pt;}
.y30{bottom:906.101200pt;}
.y1fd{bottom:906.104533pt;}
.y19a{bottom:906.107200pt;}
.y87{bottom:906.114533pt;}
.y2a9{bottom:911.056267pt;}
.y269{bottom:911.058400pt;}
.y2f{bottom:922.101200pt;}
.y104{bottom:922.104533pt;}
.y199{bottom:922.107200pt;}
.y86{bottom:922.114533pt;}
.y2a8{bottom:924.389600pt;}
.y268{bottom:924.391733pt;}
.y2c{bottom:951.795067pt;}
.y66{bottom:965.392400pt;}
.y2b{bottom:965.395067pt;}
.h2{height:27.216146pt;}
.h6{height:31.062500pt;}
.h7{height:31.104167pt;}
.hf{height:32.170833pt;}
.h10{height:32.341729pt;}
.ha{height:33.048177pt;}
.h15{height:33.212367pt;}
.h16{height:33.265167pt;}
.h1a{height:33.293967pt;}
.h1b{height:33.294500pt;}
.h19{height:33.295033pt;}
.h8{height:38.828125pt;}
.h9{height:38.880208pt;}
.h13{height:38.893542pt;}
.hc{height:41.581992pt;}
.h14{height:41.592658pt;}
.hd{height:41.621992pt;}
.hb{height:41.635325pt;}
.h5{height:42.768229pt;}
.h3{height:46.593750pt;}
.h4{height:54.359375pt;}
.h11{height:68.129767pt;}
.he{height:191.809333pt;}
.h1c{height:204.536000pt;}
.h12{height:205.236000pt;}
.h17{height:208.758667pt;}
.h18{height:241.734667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w4{width:300.480000pt;}
.w6{width:300.577333pt;}
.w3{width:396.369333pt;}
.w2{width:556.486667pt;}
.w5{width:566.626667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:9.153333pt;}
.x2d{left:16.827067pt;}
.x28{left:18.846800pt;}
.x17{left:54.884800pt;}
.xb{left:68.031467pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x3d{left:88.827867pt;}
.x2c{left:91.749733pt;}
.x44{left:94.484800pt;}
.xc{left:98.284800pt;}
.x2e{left:103.781733pt;}
.x3f{left:108.461200pt;}
.x3{left:111.494400pt;}
.x3e{left:114.029200pt;}
.x6{left:117.170133pt;}
.x31{left:122.106933pt;}
.x40{left:124.514533pt;}
.x16{left:128.056000pt;}
.x30{left:129.690933pt;}
.x36{left:135.664267pt;}
.x20{left:140.761067pt;}
.x4{left:143.622400pt;}
.x1e{left:152.284267pt;}
.x1d{left:158.214933pt;}
.x1c{left:170.076267pt;}
.x43{left:172.698133pt;}
.x32{left:175.888267pt;}
.x5{left:189.223467pt;}
.x1a{left:190.526400pt;}
.x41{left:200.624267pt;}
.x15{left:206.546933pt;}
.x24{left:208.114667pt;}
.x27{left:226.961467pt;}
.x26{left:233.116133pt;}
.x38{left:247.476800pt;}
.x22{left:254.908667pt;}
.x1b{left:256.393067pt;}
.x1f{left:259.367867pt;}
.x2f{left:292.528400pt;}
.x37{left:310.445600pt;}
.x25{left:361.982800pt;}
.x39{left:383.256133pt;}
.x34{left:392.841867pt;}
.x33{left:397.375200pt;}
.xa{left:404.481333pt;}
.xd{left:406.298133pt;}
.x3c{left:412.571867pt;}
.x35{left:415.177867pt;}
.x12{left:425.184133pt;}
.x7{left:427.090133pt;}
.x45{left:432.692800pt;}
.xe{left:436.538133pt;}
.x21{left:451.011733pt;}
.x13{left:455.436400pt;}
.x8{left:457.330133pt;}
.x18{left:465.374400pt;}
.xf{left:466.911467pt;}
.x2a{left:479.033600pt;}
.x19{left:485.683733pt;}
.x3a{left:502.108933pt;}
.x42{left:526.165333pt;}
.x3b{left:533.948400pt;}
.x23{left:570.097467pt;}
.x11{left:589.770933pt;}
.x2b{left:601.020667pt;}
.x2{left:626.078800pt;}
.x46{left:638.290267pt;}
.x10{left:644.593200pt;}
.x47{left:658.028933pt;}
.x14{left:663.490933pt;}
}




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