
    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_5d54937e6d4f245836c2cc1c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.974000;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_3cb1abc0c78a42329a371ca1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.980469;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_eccbcafe18f431d2113c28fe.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050000;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_a2984443399a78369da03a04.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.979980;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_26711cbe243214afe8ecc8f0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.979980;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_653bc4b219a4744a88aa6054.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040000;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_7976a91b701d9be48336d7cf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.980469;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_ee53314cf00965c099f8c759.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910000;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_8f86b1f4f510b2cf35e4bcbb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6b3dce996b38f2b42589ffab.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910000;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_faf1d0651c3de8bf2d64bfe0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.574000;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_66be8bb7cd6042e2779066dd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.979004;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_ce25fbb46574484f35f0398a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_bb3a694c2fcbfcc8cad85a42.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_ba8a3bfa99917eb883a4c797.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_b12b46bf07a23b63e40d98f7.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.750000;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_fdd37516c3c8ab92feb69cc3.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_2c41fe67e48baeb0b66c19dd.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_9902d10527f2f80ac436dd51.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_f100e1b771fe6e18933b0ad5.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_215b82fea903aad972ff4841.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_0ae4bb1df9b0903b87049872.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_444f0a7bce68400eba70e143.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_954a768c02b7c3218f0a2fc3.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_db838168aa9c22d599f49fdd.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_4ee617d736e3f4fcec3e3f85.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_3041e37efe257443425b8ff4.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_0690dd0566dcead02803bd6d.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.971191;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.000003,-0.250000,0.250000,-0.000003,0,0);-ms-transform:matrix(-0.000003,-0.250000,0.250000,-0.000003,0,0);-webkit-transform:matrix(-0.000003,-0.250000,0.250000,-0.000003,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);}
.m4{transform:matrix(0.250000,-0.000004,0.000004,0.250000,0,0);-ms-transform:matrix(0.250000,-0.000004,0.000004,0.250000,0,0);-webkit-transform:matrix(0.250000,-0.000004,0.000004,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);}
.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);}
.va{vertical-align:-32.256000px;}
.v6{vertical-align:-19.980000px;}
.v3{vertical-align:-15.984000px;}
.v8{vertical-align:-11.304897px;}
.v9{vertical-align:-10.116000px;}
.vc{vertical-align:-4.200000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:4.200000px;}
.v7{vertical-align:12.736200px;}
.v4{vertical-align:15.984000px;}
.v5{vertical-align:19.980600px;}
.v2{vertical-align:21.978000px;}
.v1{vertical-align:41.104200px;}
.ls48{letter-spacing:-2.664000px;}
.ls34{letter-spacing:-1.380000px;}
.ls77{letter-spacing:-1.248000px;}
.ls35{letter-spacing:-0.960000px;}
.ls3e{letter-spacing:-0.840000px;}
.ls6f{letter-spacing:-0.816000px;}
.ls72{letter-spacing:-0.768000px;}
.ls5b{letter-spacing:-0.720000px;}
.ls75{letter-spacing:-0.672000px;}
.ls74{letter-spacing:-0.624000px;}
.ls58{letter-spacing:-0.600000px;}
.ls8e{letter-spacing:-0.576000px;}
.ls29{letter-spacing:-0.540000px;}
.ls78{letter-spacing:-0.528000px;}
.ls26{letter-spacing:-0.480000px;}
.ls9{letter-spacing:-0.432000px;}
.ls28{letter-spacing:-0.420000px;}
.ls71{letter-spacing:-0.384000px;}
.ls30{letter-spacing:-0.360000px;}
.ls59{letter-spacing:-0.349800px;}
.ls70{letter-spacing:-0.336000px;}
.lse{letter-spacing:-0.324000px;}
.ls27{letter-spacing:-0.300000px;}
.ls76{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.270000px;}
.ls2a{letter-spacing:-0.240000px;}
.ls7c{letter-spacing:-0.192000px;}
.ls31{letter-spacing:-0.180000px;}
.ls7a{letter-spacing:-0.144000px;}
.ls24{letter-spacing:-0.120000px;}
.lsc{letter-spacing:-0.108000px;}
.ls73{letter-spacing:-0.096000px;}
.ls53{letter-spacing:-0.069960px;}
.ls25{letter-spacing:-0.060000px;}
.ls79{letter-spacing:-0.048000px;}
.ls5f{letter-spacing:-0.034980px;}
.lsa{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.000600px;}
.ls54{letter-spacing:0.009600px;}
.ls33{letter-spacing:0.010200px;}
.ls7d{letter-spacing:0.011400px;}
.ls5c{letter-spacing:0.034800px;}
.ls60{letter-spacing:0.034980px;}
.ls67{letter-spacing:0.048000px;}
.ls1c{letter-spacing:0.049800px;}
.ls1b{letter-spacing:0.050400px;}
.ls1a{letter-spacing:0.060000px;}
.ls6e{letter-spacing:0.096000px;}
.ls45{letter-spacing:0.119400px;}
.ls10{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.133800px;}
.ls6{letter-spacing:0.134400px;}
.ls5{letter-spacing:0.135000px;}
.ls6b{letter-spacing:0.144000px;}
.ls39{letter-spacing:0.150000px;}
.ls3a{letter-spacing:0.151200px;}
.ls18{letter-spacing:0.180000px;}
.ls8b{letter-spacing:0.192000px;}
.ls62{letter-spacing:0.209880px;}
.ls22{letter-spacing:0.240000px;}
.ls88{letter-spacing:0.288000px;}
.ls55{letter-spacing:0.300000px;}
.ls4{letter-spacing:0.324000px;}
.ls68{letter-spacing:0.336000px;}
.lsf{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.378000px;}
.ls8c{letter-spacing:0.384000px;}
.ls64{letter-spacing:0.384780px;}
.ls43{letter-spacing:0.414000px;}
.ls14{letter-spacing:0.420000px;}
.ls8{letter-spacing:0.432000px;}
.ls50{letter-spacing:0.441000px;}
.ls44{letter-spacing:0.450000px;}
.ls4a{letter-spacing:0.480000px;}
.ls2c{letter-spacing:0.510000px;}
.ls69{letter-spacing:0.528000px;}
.ls13{letter-spacing:0.540000px;}
.ls63{letter-spacing:0.559680px;}
.ls49{letter-spacing:0.581400px;}
.ls61{letter-spacing:0.594660px;}
.ls15{letter-spacing:0.600000px;}
.ls46{letter-spacing:0.660000px;}
.ls6a{letter-spacing:0.672000px;}
.ls2f{letter-spacing:0.780000px;}
.ls42{letter-spacing:0.810000px;}
.ls89{letter-spacing:0.816000px;}
.ls1e{letter-spacing:0.840000px;}
.ls17{letter-spacing:0.900000px;}
.ls52{letter-spacing:0.909480px;}
.ls12{letter-spacing:0.913800px;}
.ls3f{letter-spacing:0.960000px;}
.ls41{letter-spacing:0.970200px;}
.ls40{letter-spacing:0.970800px;}
.ls23{letter-spacing:1.020000px;}
.ls8a{letter-spacing:1.056000px;}
.ls2b{letter-spacing:1.080000px;}
.ls5a{letter-spacing:1.084380px;}
.ls51{letter-spacing:1.140000px;}
.ls6d{letter-spacing:1.152000px;}
.ls2{letter-spacing:1.166400px;}
.ls21{letter-spacing:1.200000px;}
.ls1d{letter-spacing:1.320000px;}
.ls20{letter-spacing:1.380000px;}
.ls65{letter-spacing:1.440000px;}
.ls7b{letter-spacing:1.488000px;}
.ls16{letter-spacing:1.500000px;}
.ls11{letter-spacing:1.560000px;}
.ls2e{letter-spacing:1.620000px;}
.ls4b{letter-spacing:1.680000px;}
.ls4c{letter-spacing:1.689000px;}
.ls1f{letter-spacing:1.740000px;}
.ls6c{letter-spacing:1.824000px;}
.ls56{letter-spacing:1.860000px;}
.ls66{letter-spacing:1.920000px;}
.ls3{letter-spacing:2.016000px;}
.ls2d{letter-spacing:2.040000px;}
.ls5e{letter-spacing:2.130000px;}
.ls8d{letter-spacing:2.256000px;}
.ls4d{letter-spacing:2.340000px;}
.ls4e{letter-spacing:2.350200px;}
.ls4f{letter-spacing:2.350800px;}
.ls5d{letter-spacing:2.520000px;}
.ls19{letter-spacing:2.760000px;}
.ls1{letter-spacing:2.772000px;}
.ls0{letter-spacing:12.480000px;}
.ls7e{letter-spacing:57.813000px;}
.ls3c{letter-spacing:134.208000px;}
.ls36{letter-spacing:136.404000px;}
.ls82{letter-spacing:150.906600px;}
.ls57{letter-spacing:151.056000px;}
.ls81{letter-spacing:176.852400px;}
.ls80{letter-spacing:190.422600px;}
.ls7f{letter-spacing:200.406600px;}
.ls84{letter-spacing:200.922600px;}
.ls83{letter-spacing:224.899200px;}
.ls86{letter-spacing:246.101400px;}
.ls85{letter-spacing:299.336400px;}
.ls87{letter-spacing:430.261800px;}
.ls3b{letter-spacing:442.728000px;}
.ls47{letter-spacing:900.036000px;}
.ls37{letter-spacing:1237.032000px;}
.ls3d{letter-spacing:1240.344000px;}
.ls38{letter-spacing:1245.024000px;}
.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;}
}
.ws8b{word-spacing:-1240.344000px;}
.ws98{word-spacing:-900.036000px;}
.ws77{word-spacing:-463.752000px;}
.wsb5{word-spacing:-199.056000px;}
.ws78{word-spacing:-155.232000px;}
.wsbb{word-spacing:-151.056000px;}
.ws8a{word-spacing:-136.404000px;}
.ws7c{word-spacing:-48.000000px;}
.ws2b{word-spacing:-23.352000px;}
.ws76{word-spacing:-21.024000px;}
.ws93{word-spacing:-18.360000px;}
.wsa2{word-spacing:-17.340000px;}
.ws1{word-spacing:-17.280000px;}
.wsa3{word-spacing:-16.560000px;}
.ws97{word-spacing:-15.960000px;}
.ws5{word-spacing:-15.390000px;}
.wsc6{word-spacing:-15.060000px;}
.ws9{word-spacing:-15.012000px;}
.ws2d{word-spacing:-15.000000px;}
.ws6{word-spacing:-14.904000px;}
.ws88{word-spacing:-14.520000px;}
.wsb8{word-spacing:-14.400000px;}
.ws89{word-spacing:-14.160000px;}
.ws7{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.344000px;}
.wsa{word-spacing:-12.000000px;}
.wse4{word-spacing:-11.856000px;}
.ws6e{word-spacing:-11.676000px;}
.wse3{word-spacing:-11.568000px;}
.ws0{word-spacing:-11.556000px;}
.ws2a{word-spacing:-11.520000px;}
.ws4{word-spacing:-10.696884px;}
.ws6f{word-spacing:-10.500000px;}
.wsba{word-spacing:-9.829380px;}
.wsa4{word-spacing:-9.654480px;}
.wsc8{word-spacing:-9.339660px;}
.wsca{word-spacing:-9.304680px;}
.wscb{word-spacing:-9.129780px;}
.wsc9{word-spacing:-8.954880px;}
.wsc7{word-spacing:-8.779980px;}
.ws2c{word-spacing:-8.745000px;}
.wsc5{word-spacing:-8.710020px;}
.wsa5{word-spacing:-8.675040px;}
.ws2{word-spacing:-8.640000px;}
.wsb9{word-spacing:-8.395200px;}
.ws3{word-spacing:-8.340000px;}
.ws6c{word-spacing:-7.779552px;}
.ws74{word-spacing:-6.840000px;}
.ws11{word-spacing:-6.000000px;}
.ws75{word-spacing:-4.740000px;}
.ws8e{word-spacing:-4.140000px;}
.wse6{word-spacing:-3.984000px;}
.wseb{word-spacing:-3.888000px;}
.wsb1{word-spacing:-3.840000px;}
.ws30{word-spacing:-3.780000px;}
.ws4d{word-spacing:-3.720000px;}
.wsfa{word-spacing:-3.696000px;}
.ws3e{word-spacing:-3.660000px;}
.wse{word-spacing:-3.600000px;}
.ws5d{word-spacing:-3.540000px;}
.ws8d{word-spacing:-3.480000px;}
.ws137{word-spacing:-3.456000px;}
.wsa7{word-spacing:-3.420000px;}
.ws16{word-spacing:-3.402000px;}
.wsb3{word-spacing:-3.360000px;}
.ws17{word-spacing:-3.348000px;}
.wsf1{word-spacing:-3.264000px;}
.ws41{word-spacing:-3.240000px;}
.wsfe{word-spacing:-3.216000px;}
.wscf{word-spacing:-3.180000px;}
.wsef{word-spacing:-3.072000px;}
.ws32{word-spacing:-3.060000px;}
.wse7{word-spacing:-3.024000px;}
.ws40{word-spacing:-3.000000px;}
.wse9{word-spacing:-2.976000px;}
.ws70{word-spacing:-2.940000px;}
.ws5c{word-spacing:-2.760000px;}
.ws109{word-spacing:-2.736000px;}
.wsab{word-spacing:-2.700000px;}
.ws4f{word-spacing:-2.580000px;}
.wsd8{word-spacing:-2.460000px;}
.ws101{word-spacing:-2.448000px;}
.ws132{word-spacing:-2.400000px;}
.ws3f{word-spacing:-2.340000px;}
.ws116{word-spacing:-2.304000px;}
.wsdd{word-spacing:-2.280000px;}
.wsb4{word-spacing:-2.160000px;}
.ws18{word-spacing:-2.052000px;}
.wsdc{word-spacing:-2.040000px;}
.wsf{word-spacing:-2.016000px;}
.wsc3{word-spacing:-1.980000px;}
.ws24{word-spacing:-1.890000px;}
.ws45{word-spacing:-1.860000px;}
.wsbc{word-spacing:-1.848000px;}
.ws58{word-spacing:-1.800000px;}
.ws3a{word-spacing:-1.740000px;}
.ws73{word-spacing:-1.680000px;}
.wsdf{word-spacing:-1.560000px;}
.wsfc{word-spacing:-1.536000px;}
.ws69{word-spacing:-1.500000px;}
.wsd3{word-spacing:-1.440000px;}
.ws10c{word-spacing:-1.392000px;}
.ws44{word-spacing:-1.320000px;}
.ws1a{word-spacing:-1.296000px;}
.wsc{word-spacing:-1.260000px;}
.ws112{word-spacing:-1.248000px;}
.ws49{word-spacing:-1.200000px;}
.ws133{word-spacing:-1.152000px;}
.ws4a{word-spacing:-1.140000px;}
.ws29{word-spacing:-1.134000px;}
.ws10a{word-spacing:-1.104000px;}
.wsaf{word-spacing:-1.080000px;}
.wsa8{word-spacing:-0.900000px;}
.wsee{word-spacing:-0.816000px;}
.wsa1{word-spacing:-0.780000px;}
.wsd0{word-spacing:-0.660000px;}
.ws35{word-spacing:-0.600000px;}
.wsf0{word-spacing:-0.480000px;}
.wsbd{word-spacing:-0.462000px;}
.ws111{word-spacing:-0.432000px;}
.ws48{word-spacing:-0.420000px;}
.wsed{word-spacing:-0.384000px;}
.ws3d{word-spacing:-0.360000px;}
.ws4e{word-spacing:-0.300000px;}
.ws12f{word-spacing:-0.288000px;}
.ws100{word-spacing:-0.240000px;}
.ws134{word-spacing:-0.192000px;}
.ws1b{word-spacing:-0.162000px;}
.wsf8{word-spacing:-0.144000px;}
.ws90{word-spacing:-0.120000px;}
.ws10{word-spacing:-0.096000px;}
.ws33{word-spacing:-0.060000px;}
.ws8{word-spacing:-0.054000px;}
.ws6b{word-spacing:-0.048000px;}
.wsd{word-spacing:0.000000px;}
.wsae{word-spacing:0.060000px;}
.ws117{word-spacing:0.096000px;}
.ws1e{word-spacing:0.108000px;}
.ws10b{word-spacing:0.144000px;}
.ws42{word-spacing:0.180000px;}
.ws12e{word-spacing:0.240000px;}
.ws115{word-spacing:0.288000px;}
.wsd7{word-spacing:0.300000px;}
.ws110{word-spacing:0.336000px;}
.ws71{word-spacing:0.360000px;}
.wsf7{word-spacing:0.384000px;}
.ws8f{word-spacing:0.420000px;}
.ws105{word-spacing:0.528000px;}
.wscc{word-spacing:0.540000px;}
.wscd{word-spacing:0.600000px;}
.ws34{word-spacing:0.660000px;}
.wsd9{word-spacing:0.780000px;}
.wsb2{word-spacing:0.840000px;}
.ws43{word-spacing:0.900000px;}
.ws107{word-spacing:0.912000px;}
.wsbe{word-spacing:0.924000px;}
.ws28{word-spacing:0.972000px;}
.ws64{word-spacing:1.020000px;}
.ws57{word-spacing:1.080000px;}
.ws135{word-spacing:1.152000px;}
.ws1c{word-spacing:1.188000px;}
.ws15{word-spacing:1.242000px;}
.ws138{word-spacing:1.248000px;}
.wsb0{word-spacing:1.260000px;}
.wsff{word-spacing:1.296000px;}
.wsc0{word-spacing:1.380000px;}
.ws4c{word-spacing:1.440000px;}
.wsf9{word-spacing:1.488000px;}
.ws21{word-spacing:1.620000px;}
.wsbf{word-spacing:1.722000px;}
.ws19{word-spacing:1.728000px;}
.wsf6{word-spacing:1.776000px;}
.ws53{word-spacing:1.800000px;}
.wsec{word-spacing:1.824000px;}
.wsa6{word-spacing:1.860000px;}
.ws22{word-spacing:1.890000px;}
.wsac{word-spacing:1.920000px;}
.ws9a{word-spacing:1.974000px;}
.ws63{word-spacing:1.980000px;}
.ws61{word-spacing:2.040000px;}
.ws10d{word-spacing:2.064000px;}
.ws9c{word-spacing:2.100000px;}
.wsd5{word-spacing:2.160000px;}
.ws108{word-spacing:2.256000px;}
.ws99{word-spacing:2.310000px;}
.ws23{word-spacing:2.322000px;}
.wse5{word-spacing:2.340000px;}
.wsf4{word-spacing:2.352000px;}
.wsaa{word-spacing:2.400000px;}
.wse8{word-spacing:2.448000px;}
.wsce{word-spacing:2.460000px;}
.ws65{word-spacing:2.520000px;}
.wse2{word-spacing:2.640000px;}
.ws8c{word-spacing:2.760000px;}
.ws56{word-spacing:2.820000px;}
.wsa9{word-spacing:2.880000px;}
.ws31{word-spacing:2.940000px;}
.ws26{word-spacing:2.970000px;}
.ws131{word-spacing:2.976000px;}
.wse1{word-spacing:3.000000px;}
.ws5e{word-spacing:3.120000px;}
.ws9b{word-spacing:3.150000px;}
.wsf3{word-spacing:3.168000px;}
.ws66{word-spacing:3.180000px;}
.wsf2{word-spacing:3.216000px;}
.ws54{word-spacing:3.300000px;}
.ws10f{word-spacing:3.312000px;}
.wsf5{word-spacing:3.360000px;}
.ws130{word-spacing:3.456000px;}
.ws9e{word-spacing:3.480000px;}
.wsea{word-spacing:3.504000px;}
.ws114{word-spacing:3.552000px;}
.ws9f{word-spacing:3.660000px;}
.wsd4{word-spacing:3.720000px;}
.wsfb{word-spacing:3.744000px;}
.wsc4{word-spacing:3.780000px;}
.ws39{word-spacing:3.840000px;}
.ws102{word-spacing:3.888000px;}
.ws36{word-spacing:3.900000px;}
.ws113{word-spacing:3.936000px;}
.ws1d{word-spacing:3.942000px;}
.wsdb{word-spacing:3.960000px;}
.wsc2{word-spacing:4.020000px;}
.ws50{word-spacing:4.200000px;}
.wsd6{word-spacing:4.320000px;}
.ws20{word-spacing:4.482000px;}
.ws5a{word-spacing:4.500000px;}
.ws3c{word-spacing:4.560000px;}
.ws68{word-spacing:4.620000px;}
.ws1f{word-spacing:4.644000px;}
.ws10e{word-spacing:4.656000px;}
.ws136{word-spacing:4.848000px;}
.ws27{word-spacing:4.860000px;}
.ws103{word-spacing:4.896000px;}
.ws67{word-spacing:4.920000px;}
.wse0{word-spacing:4.980000px;}
.wsd2{word-spacing:5.100000px;}
.ws106{word-spacing:5.136000px;}
.ws7b{word-spacing:5.148000px;}
.ws60{word-spacing:5.220000px;}
.ws52{word-spacing:5.280000px;}
.ws6a{word-spacing:5.340000px;}
.wsde{word-spacing:5.400000px;}
.ws4b{word-spacing:5.520000px;}
.ws46{word-spacing:5.580000px;}
.ws72{word-spacing:5.640000px;}
.wsfd{word-spacing:5.664000px;}
.ws14{word-spacing:5.670000px;}
.ws2f{word-spacing:5.880000px;}
.ws104{word-spacing:5.904000px;}
.ws59{word-spacing:5.940000px;}
.ws5b{word-spacing:6.000000px;}
.ws51{word-spacing:6.060000px;}
.wsda{word-spacing:6.120000px;}
.ws13{word-spacing:6.318000px;}
.wsc1{word-spacing:6.360000px;}
.ws25{word-spacing:6.588000px;}
.ws38{word-spacing:6.600000px;}
.ws62{word-spacing:6.660000px;}
.ws5f{word-spacing:6.720000px;}
.ws12{word-spacing:6.750000px;}
.wsd1{word-spacing:6.780000px;}
.ws7f{word-spacing:6.948000px;}
.wsa0{word-spacing:7.020000px;}
.ws55{word-spacing:7.080000px;}
.wsad{word-spacing:7.140000px;}
.ws9d{word-spacing:7.200000px;}
.ws37{word-spacing:7.320000px;}
.ws3b{word-spacing:7.440000px;}
.ws2e{word-spacing:7.500000px;}
.ws47{word-spacing:7.560000px;}
.ws86{word-spacing:12.492000px;}
.ws7e{word-spacing:13.968000px;}
.ws84{word-spacing:26.424000px;}
.ws95{word-spacing:32.328000px;}
.ws87{word-spacing:38.016000px;}
.ws94{word-spacing:38.700000px;}
.ws85{word-spacing:38.844000px;}
.ws126{word-spacing:41.370000px;}
.ws118{word-spacing:42.054000px;}
.ws12d{word-spacing:50.261400px;}
.ws91{word-spacing:59.663797px;}
.ws7a{word-spacing:59.724000px;}
.wsb7{word-spacing:71.376000px;}
.ws129{word-spacing:80.666448px;}
.ws11e{word-spacing:89.370000px;}
.ws120{word-spacing:100.026600px;}
.ws83{word-spacing:100.944000px;}
.ws11c{word-spacing:110.538600px;}
.ws81{word-spacing:115.380000px;}
.ws11f{word-spacing:118.997400px;}
.ws124{word-spacing:118.998000px;}
.ws11d{word-spacing:129.509400px;}
.ws12b{word-spacing:131.274600px;}
.ws12a{word-spacing:134.033448px;}
.ws11a{word-spacing:134.538600px;}
.ws79{word-spacing:144.659092px;}
.ws82{word-spacing:144.659692px;}
.wsb6{word-spacing:147.648000px;}
.ws92{word-spacing:148.716000px;}
.ws119{word-spacing:165.786600px;}
.ws125{word-spacing:170.572848px;}
.ws6d{word-spacing:180.706200px;}
.ws12c{word-spacing:193.096248px;}
.ws123{word-spacing:208.757400px;}
.ws128{word-spacing:219.135048px;}
.ws121{word-spacing:221.619648px;}
.ws127{word-spacing:223.179000px;}
.ws96{word-spacing:296.316000px;}
.ws122{word-spacing:325.915800px;}
.ws11b{word-spacing:332.053800px;}
.ws80{word-spacing:428.220000px;}
.ws7d{word-spacing:800.640000px;}
._2d{margin-left:-1089.888000px;}
._14{margin-left:-308.484000px;}
._2a{margin-left:-224.592000px;}
._29{margin-left:-211.200000px;}
._2c{margin-left:-197.904000px;}
._1a{margin-left:-176.436000px;}
._13{margin-left:-174.276000px;}
._21{margin-left:-161.421318px;}
._22{margin-left:-160.020000px;}
._17{margin-left:-156.648000px;}
._23{margin-left:-152.532000px;}
._39{margin-left:-19.488000px;}
._36{margin-left:-18.432000px;}
._37{margin-left:-16.896000px;}
._32{margin-left:-15.216000px;}
._33{margin-left:-13.776000px;}
._28{margin-left:-12.591600px;}
._1f{margin-left:-11.280000px;}
._7{margin-left:-9.913200px;}
._34{margin-left:-8.544000px;}
._9{margin-left:-7.321200px;}
._6{margin-left:-6.274800px;}
._3{margin-left:-4.927200px;}
._0{margin-left:-3.600000px;}
._b{margin-left:-2.520000px;}
._1{margin-left:-1.440000px;}
._2{width:1.225200px;}
._8{width:2.229318px;}
._5{width:3.574800px;}
._2e{width:5.185200px;}
._a{width:6.408000px;}
._27{width:9.399000px;}
._31{width:10.953000px;}
._35{width:12.879600px;}
._38{width:14.064000px;}
._30{width:15.264000px;}
._2f{width:16.800000px;}
._18{width:38.736000px;}
._1e{width:44.856000px;}
._19{width:47.988000px;}
._3c{width:52.133400px;}
._3e{width:54.768600px;}
._16{width:56.196000px;}
._4f{width:60.754200px;}
._4a{width:61.767600px;}
._1c{width:63.468000px;}
._41{width:92.928600px;}
._1d{width:95.220000px;}
._4e{width:105.880800px;}
._40{width:111.408600px;}
._4d{width:114.135600px;}
._3b{width:125.083200px;}
._26{width:133.974000px;}
._3f{width:136.852200px;}
._4b{width:142.852200px;}
._4c{width:144.641400px;}
._45{width:147.882600px;}
._43{width:155.376600px;}
._42{width:160.816800px;}
._44{width:165.991200px;}
._47{width:167.098800px;}
._25{width:168.966000px;}
._49{width:178.513800px;}
._20{width:179.748000px;}
._12{width:188.430000px;}
._50{width:189.992400px;}
._48{width:191.715600px;}
._46{width:203.131200px;}
._3d{width:285.339600px;}
._2b{width:313.440000px;}
._24{width:362.742000px;}
._e{width:438.006000px;}
._1b{width:468.324000px;}
._11{width:484.086000px;}
._10{width:515.622000px;}
._f{width:541.158000px;}
._d{width:543.462000px;}
._15{width:607.968000px;}
._3a{width:614.763600px;}
._c{width:1473.753600px;}
._4{width:2631.559800px;}
.fc6{color:rgb(16,15,13);}
.fc5{color:transparent;}
.fc3{color:rgb(123,121,121);}
.fc2{color:rgb(185,183,184);}
.fc1{color:rgb(68,132,179);}
.fc4{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fse{font-size:5.644440px;}
.fs11{font-size:20.988000px;}
.fs12{font-size:24.000000px;}
.fs9{font-size:27.984000px;}
.fs4{font-size:30.000000px;}
.fs10{font-size:34.980000px;}
.fs0{font-size:36.000000px;}
.fs8{font-size:38.478000px;}
.fs3{font-size:42.000000px;}
.fsd{font-size:45.155520px;}
.fs1{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fsc{font-size:63.171579px;}
.fs7{font-size:66.000000px;}
.fsf{font-size:67.733280px;}
.fs2{font-size:72.000000px;}
.fsb{font-size:84.000000px;}
.fs6{font-size:144.000000px;}
.y55{bottom:-16.860648px;}
.y0{bottom:0.000000px;}
.y54{bottom:1.728610px;}
.y164{bottom:4.515750px;}
.y1db{bottom:4.517400px;}
.y28a{bottom:5.645400px;}
.y9{bottom:16.377750px;}
.y8{bottom:29.877750px;}
.y4{bottom:32.352000px;}
.y58{bottom:38.085000px;}
.y3{bottom:42.102000px;}
.yf{bottom:47.875200px;}
.y5a{bottom:48.361200px;}
.y56{bottom:50.359050px;}
.y2{bottom:51.852000px;}
.y57{bottom:53.543100px;}
.y1{bottom:61.602000px;}
.yb{bottom:63.285150px;}
.y5{bottom:75.559050px;}
.ya{bottom:78.743100px;}
.y50{bottom:80.009937px;}
.y330{bottom:87.855150px;}
.y334{bottom:93.855150px;}
.y176{bottom:96.152250px;}
.y12a{bottom:98.270400px;}
.y341{bottom:104.813850px;}
.y2a7{bottom:108.465150px;}
.y21d{bottom:108.480000px;}
.y22c{bottom:108.505650px;}
.y12d{bottom:118.996500px;}
.y125{bottom:119.459250px;}
.y2e1{bottom:119.838300px;}
.y323{bottom:119.850000px;}
.y346{bottom:122.817000px;}
.y2a6{bottom:129.465150px;}
.ye1{bottom:129.480000px;}
.y88{bottom:129.490650px;}
.y22b{bottom:129.505650px;}
.yb5{bottom:129.519750px;}
.y43{bottom:133.179150px;}
.y48{bottom:133.200000px;}
.y345{bottom:134.817000px;}
.y2e0{bottom:134.838300px;}
.y322{bottom:134.895750px;}
.y17b{bottom:135.665250px;}
.y124{bottom:135.959250px;}
.y15b{bottom:139.680750px;}
.y344{bottom:146.817000px;}
.y15a{bottom:146.880750px;}
.y47{bottom:147.450000px;}
.y2df{bottom:149.838300px;}
.y321{bottom:149.941350px;}
.y2a5{bottom:150.465150px;}
.y21c{bottom:150.480000px;}
.y87{bottom:150.490650px;}
.y22a{bottom:150.505650px;}
.yb4{bottom:150.519750px;}
.y171{bottom:151.808250px;}
.y170{bottom:151.844250px;}
.y129{bottom:152.412750px;}
.y123{bottom:152.459250px;}
.y42{bottom:152.679150px;}
.y159{bottom:154.080750px;}
.y343{bottom:158.817000px;}
.y163{bottom:161.159250px;}
.y174{bottom:161.339250px;}
.y46{bottom:161.700000px;}
.y2de{bottom:164.838300px;}
.y320{bottom:164.986950px;}
.y165{bottom:167.045400px;}
.y16b{bottom:167.054400px;}
.yd9{bottom:168.797400px;}
.y122{bottom:168.959250px;}
.y342{bottom:170.817000px;}
.y2a4{bottom:171.465150px;}
.y21b{bottom:171.480000px;}
.y86{bottom:171.490650px;}
.y229{bottom:171.505650px;}
.yb3{bottom:171.519750px;}
.y41{bottom:172.179150px;}
.y45{bottom:175.950000px;}
.yd3{bottom:175.997400px;}
.y2dd{bottom:179.838300px;}
.y31f{bottom:180.032550px;}
.y16a{bottom:181.634400px;}
.yd8{bottom:183.197400px;}
.y121{bottom:185.459250px;}
.y166{bottom:188.294400px;}
.y17d{bottom:189.966750px;}
.y44{bottom:190.200000px;}
.yd2{bottom:190.397400px;}
.y173{bottom:190.427250px;}
.y340{bottom:191.488500px;}
.y40{bottom:191.679150px;}
.y33b{bottom:192.073950px;}
.y2a3{bottom:192.465150px;}
.y21a{bottom:192.480000px;}
.y85{bottom:192.490650px;}
.y228{bottom:192.505650px;}
.yb2{bottom:192.519750px;}
.y162{bottom:194.828250px;}
.y2dc{bottom:194.838300px;}
.y31e{bottom:195.078300px;}
.yd7{bottom:197.597400px;}
.y17c{bottom:200.766750px;}
.y128{bottom:201.912750px;}
.y120{bottom:201.959250px;}
.y2db{bottom:209.838300px;}
.y31d{bottom:210.123900px;}
.y3f{bottom:211.179150px;}
.y347{bottom:212.595150px;}
.y2a2{bottom:213.465150px;}
.y259{bottom:213.480000px;}
.y227{bottom:213.505650px;}
.yb1{bottom:213.519750px;}
.y33f{bottom:217.455150px;}
.y11f{bottom:218.459250px;}
.y172{bottom:219.551250px;}
.y2da{bottom:224.838300px;}
.y31c{bottom:225.169500px;}
.y17f{bottom:226.217250px;}
.y161{bottom:228.497250px;}
.y180{bottom:229.214250px;}
.y3e{bottom:230.679150px;}
.y335{bottom:231.975300px;}
.y2a1{bottom:234.465150px;}
.y219{bottom:234.480000px;}
.y84{bottom:234.490650px;}
.y226{bottom:234.505650px;}
.y11e{bottom:234.959250px;}
.y17e{bottom:237.017250px;}
.y15e{bottom:238.112250px;}
.y2d9{bottom:239.838300px;}
.y31b{bottom:240.215250px;}
.y175{bottom:248.603250px;}
.y3d{bottom:250.179150px;}
.y127{bottom:251.412750px;}
.y11d{bottom:251.419800px;}
.y126{bottom:251.459250px;}
.y2d8{bottom:254.838300px;}
.y31a{bottom:255.260850px;}
.y2a0{bottom:255.465150px;}
.y218{bottom:255.480000px;}
.y83{bottom:255.490650px;}
.y225{bottom:255.505650px;}
.yb0{bottom:255.519750px;}
.y169{bottom:256.856400px;}
.y160{bottom:262.166250px;}
.y167{bottom:263.795400px;}
.y183{bottom:267.455250px;}
.y3c{bottom:269.679150px;}
.y2d7{bottom:269.838300px;}
.y319{bottom:270.306450px;}
.yd6{bottom:271.808400px;}
.y118{bottom:272.760900px;}
.y29f{bottom:276.465150px;}
.y217{bottom:276.480000px;}
.y82{bottom:276.490650px;}
.y224{bottom:276.505650px;}
.yaf{bottom:276.519750px;}
.y177{bottom:277.688250px;}
.y336{bottom:284.154000px;}
.y168{bottom:284.621400px;}
.y2d6{bottom:284.838300px;}
.y318{bottom:285.352050px;}
.yd5{bottom:286.208400px;}
.y3b{bottom:289.179150px;}
.y117{bottom:289.260900px;}
.y27f{bottom:293.255400px;}
.y15f{bottom:295.835250px;}
.y29e{bottom:297.465150px;}
.y258{bottom:297.480000px;}
.y81{bottom:297.490650px;}
.y269{bottom:297.505650px;}
.yae{bottom:297.519750px;}
.y16f{bottom:297.956250px;}
.y2d5{bottom:299.838300px;}
.y317{bottom:300.397800px;}
.yd4{bottom:300.608400px;}
.y1df{bottom:305.297400px;}
.y11c{bottom:305.714400px;}
.y116{bottom:305.760900px;}
.y178{bottom:306.776250px;}
.y3a{bottom:308.679150px;}
.y16e{bottom:308.756250px;}
.y2d4{bottom:314.838300px;}
.y316{bottom:315.443550px;}
.y223{bottom:315.730650px;}
.y29d{bottom:318.465150px;}
.y216{bottom:318.480000px;}
.y80{bottom:318.490650px;}
.y268{bottom:318.505650px;}
.yad{bottom:318.519750px;}
.y115{bottom:322.260900px;}
.y39{bottom:328.179150px;}
.y15d{bottom:329.499750px;}
.y2d3{bottom:329.838300px;}
.y315{bottom:330.489000px;}
.y12e{bottom:332.684250px;}
.y16d{bottom:333.956250px;}
.y179{bottom:335.864250px;}
.y222{bottom:336.730650px;}
.y114{bottom:338.760900px;}
.y182{bottom:338.780250px;}
.y29c{bottom:339.465150px;}
.y215{bottom:339.480000px;}
.y7f{bottom:339.490650px;}
.y267{bottom:339.505650px;}
.yac{bottom:339.519750px;}
.y16c{bottom:344.756250px;}
.y2d2{bottom:344.838300px;}
.y314{bottom:345.534750px;}
.y26e{bottom:345.645900px;}
.y38{bottom:347.679150px;}
.y181{bottom:349.580250px;}
.y11b{bottom:355.214400px;}
.y113{bottom:355.260900px;}
.y221{bottom:357.730650px;}
.y2d1{bottom:359.838300px;}
.y29b{bottom:360.465150px;}
.y214{bottom:360.480000px;}
.y7e{bottom:360.490650px;}
.y266{bottom:360.505650px;}
.yab{bottom:360.519750px;}
.y313{bottom:360.580350px;}
.y15c{bottom:363.168750px;}
.y17a{bottom:364.952250px;}
.ye0{bottom:368.009400px;}
.y112{bottom:371.760900px;}
.y2d0{bottom:374.838300px;}
.ydc{bottom:375.209700px;}
.y312{bottom:375.626100px;}
.y220{bottom:378.730650px;}
.y29a{bottom:381.465150px;}
.y213{bottom:381.480000px;}
.y7d{bottom:381.490650px;}
.y265{bottom:381.505650px;}
.yaa{bottom:381.519750px;}
.ydf{bottom:382.409400px;}
.y1af{bottom:387.156750px;}
.y111{bottom:388.260900px;}
.ydb{bottom:389.609700px;}
.y2cf{bottom:389.838300px;}
.y311{bottom:390.671700px;}
.y1f1{bottom:391.836900px;}
.y37{bottom:393.429150px;}
.yde{bottom:396.809400px;}
.y21f{bottom:399.730650px;}
.y299{bottom:402.465150px;}
.y212{bottom:402.480000px;}
.y7c{bottom:402.490650px;}
.y264{bottom:402.505650px;}
.ya9{bottom:402.519750px;}
.yda{bottom:404.009700px;}
.y11a{bottom:404.714400px;}
.y110{bottom:404.721450px;}
.y119{bottom:404.760900px;}
.y2ce{bottom:404.838300px;}
.y310{bottom:405.717300px;}
.ydd{bottom:411.209400px;}
.y36{bottom:412.929150px;}
.y337{bottom:414.600900px;}
.y52{bottom:418.592870px;}
.y2cd{bottom:419.838300px;}
.y21e{bottom:420.730650px;}
.y30f{bottom:420.762900px;}
.y298{bottom:423.465150px;}
.y211{bottom:423.480000px;}
.y7b{bottom:423.490650px;}
.y263{bottom:423.505650px;}
.ya8{bottom:423.519750px;}
.y153{bottom:424.437750px;}
.y10c{bottom:426.062400px;}
.y35{bottom:432.429150px;}
.y2cc{bottom:434.838300px;}
.y138{bottom:435.539250px;}
.y30e{bottom:435.808650px;}
.y150{bottom:440.719466px;}
.y152{bottom:440.721106px;}
.y149{bottom:440.753801px;}
.y10b{bottom:442.562400px;}
.y297{bottom:444.465150px;}
.y257{bottom:444.480000px;}
.y7a{bottom:444.490650px;}
.ya7{bottom:444.519750px;}
.y2cb{bottom:449.838300px;}
.y30d{bottom:450.854250px;}
.y14f{bottom:451.518389px;}
.y151{bottom:451.520042px;}
.y148{bottom:451.553839px;}
.y12c{bottom:451.682250px;}
.y12b{bottom:451.718250px;}
.y34{bottom:451.929150px;}
.y10f{bottom:459.015900px;}
.y10a{bottom:459.062400px;}
.y146{bottom:460.841333px;}
.y131{bottom:461.208750px;}
.y262{bottom:462.730650px;}
.y2ca{bottom:464.838300px;}
.y296{bottom:465.465150px;}
.y256{bottom:465.480000px;}
.ya6{bottom:465.519750px;}
.y30c{bottom:465.899850px;}
.y14a{bottom:467.438953px;}
.y210{bottom:470.720400px;}
.y33{bottom:471.429150px;}
.y109{bottom:475.562400px;}
.y14d{bottom:477.664053px;}
.y2c9{bottom:479.838300px;}
.y30b{bottom:480.945600px;}
.yd1{bottom:481.634100px;}
.y261{bottom:483.730650px;}
.y20f{bottom:484.220400px;}
.y295{bottom:486.465150px;}
.y255{bottom:486.480000px;}
.y79{bottom:486.490650px;}
.ya5{bottom:486.519750px;}
.y14c{bottom:487.547706px;}
.y13a{bottom:489.840750px;}
.y130{bottom:490.296750px;}
.y32{bottom:490.929150px;}
.y108{bottom:492.062400px;}
.y147{bottom:493.574250px;}
.y2c8{bottom:494.838300px;}
.y30a{bottom:495.991200px;}
.yd0{bottom:496.034100px;}
.y20e{bottom:497.720400px;}
.y139{bottom:500.640750px;}
.y260{bottom:504.730650px;}
.y278{bottom:505.250550px;}
.y280{bottom:505.255050px;}
.y294{bottom:507.465150px;}
.y254{bottom:507.480000px;}
.y78{bottom:507.490650px;}
.ya4{bottom:507.519750px;}
.y10e{bottom:508.515900px;}
.y107{bottom:508.562400px;}
.y2c7{bottom:509.838300px;}
.y31{bottom:510.429150px;}
.y309{bottom:511.036800px;}
.y20d{bottom:511.220400px;}
.y291{bottom:514.611150px;}
.y133{bottom:515.022750px;}
.y12f{bottom:519.420750px;}
.y20c{bottom:524.720400px;}
.y2c6{bottom:524.838300px;}
.y106{bottom:525.062400px;}
.y25f{bottom:525.730650px;}
.y308{bottom:526.082550px;}
.y13c{bottom:526.091250px;}
.y145{bottom:526.307250px;}
.y338{bottom:526.631700px;}
.y290{bottom:528.111150px;}
.y293{bottom:528.465150px;}
.y253{bottom:528.480000px;}
.y77{bottom:528.490650px;}
.ya3{bottom:528.519750px;}
.y13d{bottom:529.088400px;}
.y30{bottom:529.929150px;}
.y154{bottom:534.714750px;}
.y13b{bottom:536.891250px;}
.y2c5{bottom:539.838300px;}
.y307{bottom:541.128150px;}
.y103{bottom:541.522950px;}
.y105{bottom:541.562400px;}
.y28f{bottom:541.611150px;}
.y1da{bottom:545.433000px;}
.y21{bottom:545.688000px;}
.y25e{bottom:546.730650px;}
.y132{bottom:548.481750px;}
.y20b{bottom:549.106650px;}
.y1f8{bottom:549.349050px;}
.y2f{bottom:549.429150px;}
.y292{bottom:549.465150px;}
.y252{bottom:549.480000px;}
.y76{bottom:549.490650px;}
.ya2{bottom:549.519750px;}
.y2c4{bottom:554.838300px;}
.y28e{bottom:555.111150px;}
.y306{bottom:556.173750px;}
.y10d{bottom:558.015900px;}
.y102{bottom:558.022950px;}
.y104{bottom:558.062400px;}
.y144{bottom:559.040250px;}
.y20{bottom:559.938000px;}
.y1d9{bottom:566.166204px;}
.y140{bottom:567.329250px;}
.y25d{bottom:567.730650px;}
.y28d{bottom:568.611150px;}
.y2e{bottom:568.929150px;}
.y2c3{bottom:569.838300px;}
.ycd{bottom:570.465150px;}
.y251{bottom:570.480000px;}
.y75{bottom:570.490650px;}
.ya1{bottom:570.519750px;}
.y305{bottom:571.219500px;}
.y1f{bottom:574.188000px;}
.y134{bottom:577.562250px;}
.yfd{bottom:579.364050px;}
.y14b{bottom:580.868113px;}
.y2c2{bottom:584.838300px;}
.y304{bottom:586.265100px;}
.y1c0{bottom:586.656817px;}
.y1d8{bottom:586.668409px;}
.y2d{bottom:588.429150px;}
.y1e{bottom:588.438000px;}
.y25c{bottom:588.730650px;}
.y26d{bottom:589.077000px;}
.y1c4{bottom:590.130900px;}
.ycc{bottom:591.465150px;}
.y250{bottom:591.480000px;}
.y74{bottom:591.490650px;}
.ya0{bottom:591.519750px;}
.y143{bottom:591.773250px;}
.y158{bottom:592.598250px;}
.y339{bottom:594.157050px;}
.yfc{bottom:595.864050px;}
.y1bf{bottom:597.924445px;}
.y1d7{bottom:597.936341px;}
.y2c1{bottom:599.838300px;}
.y303{bottom:601.310700px;}
.y1d{bottom:602.688000px;}
.y157{bottom:603.398250px;}
.y135{bottom:606.650250px;}
.y2c{bottom:607.929150px;}
.y1be{bottom:609.183446px;}
.y1d6{bottom:609.204410px;}
.y25b{bottom:609.730650px;}
.y1dc{bottom:611.822400px;}
.y101{bottom:612.317550px;}
.yfb{bottom:612.364050px;}
.ycb{bottom:612.465150px;}
.y24f{bottom:612.480000px;}
.y73{bottom:612.490650px;}
.y9f{bottom:612.519750px;}
.y2c0{bottom:614.838300px;}
.y28b{bottom:616.085400px;}
.y302{bottom:616.356450px;}
.y1c{bottom:616.938000px;}
.y1bd{bottom:620.451445px;}
.y1d5{bottom:620.472294px;}
.y142{bottom:624.506250px;}
.y156{bottom:627.098250px;}
.y2b{bottom:627.429150px;}
.y53{bottom:628.159638px;}
.yfa{bottom:628.864050px;}
.y289{bottom:629.786400px;}
.y2bf{bottom:629.838300px;}
.y25a{bottom:630.730650px;}
.y301{bottom:631.402050px;}
.y1bc{bottom:631.719446px;}
.y1d4{bottom:631.740339px;}
.yca{bottom:633.465150px;}
.y24e{bottom:633.480000px;}
.y72{bottom:633.490650px;}
.y9e{bottom:633.519750px;}
.y1b{bottom:635.184000px;}
.y136{bottom:635.738250px;}
.y155{bottom:637.898250px;}
.y13f{bottom:638.654250px;}
.y1bb{bottom:642.987445px;}
.y1d3{bottom:642.999297px;}
.y2be{bottom:644.838300px;}
.yf9{bottom:645.364050px;}
.y300{bottom:646.447650px;}
.y2a{bottom:646.929150px;}
.y13e{bottom:649.454250px;}
.y14e{bottom:650.914562px;}
.y1ba{bottom:654.255445px;}
.y1d2{bottom:654.267411px;}
.yc9{bottom:654.465150px;}
.y71{bottom:654.490650px;}
.y9d{bottom:654.519750px;}
.y1a{bottom:655.938000px;}
.y141{bottom:657.239250px;}
.y2bd{bottom:659.838300px;}
.y288{bottom:661.394400px;}
.y2ff{bottom:661.493250px;}
.y100{bottom:661.817550px;}
.yf8{bottom:661.864050px;}
.y331{bottom:663.217200px;}
.y137{bottom:664.826250px;}
.y1b9{bottom:665.523529px;}
.y1d1{bottom:665.535410px;}
.y29{bottom:666.429150px;}
.y1ae{bottom:667.020750px;}
.y284{bottom:668.471400px;}
.y2bc{bottom:674.838300px;}
.yc8{bottom:675.465150px;}
.y70{bottom:675.490650px;}
.y9c{bottom:675.519750px;}
.y2fe{bottom:676.539000px;}
.y1b8{bottom:676.782696px;}
.y1d0{bottom:676.797208px;}
.y19{bottom:676.938000px;}
.y373{bottom:677.817150px;}
.yf7{bottom:678.364050px;}
.y363{bottom:678.865650px;}
.y28{bottom:685.929150px;}
.y1b7{bottom:688.050696px;}
.y1cf{bottom:688.062461px;}
.y285{bottom:688.466400px;}
.y2bb{bottom:689.838300px;}
.y2fd{bottom:691.584600px;}
.y1c3{bottom:692.130900px;}
.y372{bottom:692.817150px;}
.y287{bottom:693.002400px;}
.y24d{bottom:693.563100px;}
.y362{bottom:693.865650px;}
.yf6{bottom:694.864050px;}
.yc7{bottom:696.465150px;}
.y6f{bottom:696.490650px;}
.y9b{bottom:696.519750px;}
.y18{bottom:697.938000px;}
.y1b6{bottom:699.318612px;}
.y1ce{bottom:699.330406px;}
.y18d{bottom:703.251750px;}
.y2ba{bottom:704.838300px;}
.y27{bottom:705.429150px;}
.y2fc{bottom:706.630350px;}
.y371{bottom:707.817150px;}
.y361{bottom:708.865650px;}
.y1b5{bottom:710.586612px;}
.y1cd{bottom:710.598294px;}
.yff{bottom:711.317550px;}
.yf5{bottom:711.324600px;}
.yfe{bottom:711.364050px;}
.y1c8{bottom:713.417550px;}
.y1a1{bottom:714.164250px;}
.y18c{bottom:714.651750px;}
.y248{bottom:714.751950px;}
.yc6{bottom:717.465150px;}
.y6e{bottom:717.490650px;}
.y9a{bottom:717.519750px;}
.y17{bottom:718.938000px;}
.y2b9{bottom:719.838300px;}
.y2fb{bottom:721.675950px;}
.y1b4{bottom:721.854612px;}
.y1cc{bottom:721.857463px;}
.y370{bottom:722.817150px;}
.y360{bottom:723.865650px;}
.y1c7{bottom:724.217550px;}
.y286{bottom:724.610400px;}
.y26{bottom:724.929150px;}
.y1a0{bottom:725.564250px;}
.y18b{bottom:730.945153px;}
.y186{bottom:730.978446px;}
.y247{bottom:731.251950px;}
.yf0{bottom:732.665550px;}
.y1b3{bottom:733.122612px;}
.y1cb{bottom:733.125344px;}
.y2b8{bottom:734.838300px;}
.y1c6{bottom:735.017550px;}
.y2fa{bottom:736.721550px;}
.y36f{bottom:737.817150px;}
.yc5{bottom:738.465150px;}
.y6d{bottom:738.490650px;}
.y99{bottom:738.519750px;}
.y35f{bottom:738.865650px;}
.y16{bottom:739.938000px;}
.y18a{bottom:741.743106px;}
.y185{bottom:741.778325px;}
.y19f{bottom:741.935250px;}
.y1b2{bottom:744.390612px;}
.y1ca{bottom:744.393298px;}
.y25{bottom:744.429150px;}
.y1c5{bottom:745.817550px;}
.y24c{bottom:747.705450px;}
.y246{bottom:747.751950px;}
.yef{bottom:749.165550px;}
.y2b7{bottom:749.838300px;}
.y184{bottom:751.065750px;}
.y19e{bottom:751.439250px;}
.y2f9{bottom:751.767150px;}
.y36e{bottom:752.817150px;}
.y1c2{bottom:753.080550px;}
.y35e{bottom:753.865650px;}
.y1c9{bottom:755.652576px;}
.y1b1{bottom:755.658612px;}
.y283{bottom:756.201900px;}
.y187{bottom:757.663542px;}
.yc4{bottom:759.465150px;}
.y6c{bottom:759.490650px;}
.y98{bottom:759.519750px;}
.y15{bottom:760.938000px;}
.y24{bottom:763.929150px;}
.y245{bottom:764.251950px;}
.y2b6{bottom:764.838300px;}
.y1a8{bottom:765.200250px;}
.yf4{bottom:765.619050px;}
.yee{bottom:765.665550px;}
.y2f8{bottom:766.812900px;}
.y1c1{bottom:766.882410px;}
.y1b0{bottom:766.917900px;}
.y36d{bottom:767.817150px;}
.y35d{bottom:768.865650px;}
.y1a2{bottom:772.733250px;}
.y33a{bottom:776.782650px;}
.y2b5{bottom:779.838300px;}
.yc3{bottom:780.465150px;}
.y6b{bottom:780.490650px;}
.y97{bottom:780.519750px;}
.y244{bottom:780.751950px;}
.y2f7{bottom:781.858500px;}
.y14{bottom:781.938000px;}
.yed{bottom:782.165550px;}
.y36c{bottom:782.817150px;}
.y23{bottom:783.429150px;}
.y35c{bottom:783.865650px;}
.y282{bottom:787.809900px;}
.y193{bottom:788.923650px;}
.y20a{bottom:789.266400px;}
.y19c{bottom:790.816950px;}
.y19d{bottom:791.474250px;}
.y2b4{bottom:794.838300px;}
.y188{bottom:795.743942px;}
.y2f6{bottom:796.904100px;}
.y24b{bottom:797.205450px;}
.y243{bottom:797.251950px;}
.y36b{bottom:797.817150px;}
.yec{bottom:798.665550px;}
.y35b{bottom:798.865650px;}
.yc2{bottom:801.465150px;}
.y6a{bottom:801.490650px;}
.y96{bottom:801.519750px;}
.y22{bottom:802.929150px;}
.y13{bottom:802.938000px;}
.y2b3{bottom:809.838300px;}
.y2f5{bottom:811.949850px;}
.y36a{bottom:812.817150px;}
.y242{bottom:813.751950px;}
.y35a{bottom:813.865650px;}
.yf3{bottom:815.119050px;}
.yeb{bottom:815.165550px;}
.y281{bottom:819.417900px;}
.y28c{bottom:819.678900px;}
.y18e{bottom:821.250750px;}
.yc1{bottom:822.465150px;}
.y69{bottom:822.490650px;}
.y95{bottom:822.519750px;}
.y2b2{bottom:824.838300px;}
.y1f0{bottom:826.639050px;}
.y192{bottom:826.786650px;}
.y2f4{bottom:826.995450px;}
.y1a3{bottom:827.480250px;}
.y369{bottom:827.817150px;}
.y359{bottom:828.865650px;}
.y19b{bottom:830.191950px;}
.y241{bottom:830.251950px;}
.yea{bottom:831.665550px;}
.y33d{bottom:833.565450px;}
.y1e6{bottom:834.588900px;}
.y2b1{bottom:839.838300px;}
.y2f3{bottom:842.041050px;}
.y368{bottom:842.817150px;}
.y276{bottom:842.972400px;}
.ycf{bottom:843.465150px;}
.y68{bottom:843.490650px;}
.y94{bottom:843.519750px;}
.y358{bottom:843.865650px;}
.y203{bottom:844.529400px;}
.y1ab{bottom:844.888950px;}
.y24a{bottom:846.705450px;}
.y240{bottom:846.712500px;}
.y249{bottom:846.751950px;}
.ye9{bottom:848.165550px;}
.y1de{bottom:850.731900px;}
.y1dd{bottom:850.767900px;}
.y1f2{bottom:851.729400px;}
.y2b0{bottom:854.838300px;}
.y7{bottom:856.725000px;}
.y1ac{bottom:857.032500px;}
.y2f2{bottom:857.086800px;}
.y367{bottom:857.817150px;}
.y1ad{bottom:858.560550px;}
.y357{bottom:858.865650px;}
.y1e2{bottom:860.253750px;}
.y1f3{bottom:860.514900px;}
.y275{bottom:860.972400px;}
.yc0{bottom:864.465150px;}
.y67{bottom:864.490650px;}
.y93{bottom:864.519750px;}
.yf2{bottom:864.619050px;}
.ye8{bottom:864.626100px;}
.y191{bottom:864.649650px;}
.yf1{bottom:864.665550px;}
.y23b{bottom:868.053450px;}
.y1ff{bottom:869.512650px;}
.y19a{bottom:869.557950px;}
.y2af{bottom:869.838300px;}
.y2f1{bottom:872.132400px;}
.y366{bottom:872.817150px;}
.y1e8{bottom:873.140400px;}
.y356{bottom:873.865650px;}
.y202{bottom:874.678650px;}
.y1e3{bottom:875.054400px;}
.y197{bottom:876.706200px;}
.y200{bottom:877.198650px;}
.y27e{bottom:882.333900px;}
.y277{bottom:882.335400px;}
.y274{bottom:882.349950px;}
.y1fe{bottom:882.355650px;}
.y1e7{bottom:883.940400px;}
.y23a{bottom:884.553450px;}
.y2ae{bottom:884.838300px;}
.ye7{bottom:884.917200px;}
.ybf{bottom:885.465150px;}
.y66{bottom:885.490650px;}
.y1aa{bottom:886.798950px;}
.y2f0{bottom:887.178000px;}
.y196{bottom:887.506200px;}
.y365{bottom:887.817150px;}
.y355{bottom:888.865650px;}
.y201{bottom:890.239650px;}
.y332{bottom:890.348100px;}
.y273{bottom:894.061950px;}
.y1fd{bottom:895.477650px;}
.y1a9{bottom:897.598950px;}
.y2ad{bottom:899.838300px;}
.y1fb{bottom:900.445650px;}
.y23f{bottom:901.006950px;}
.y239{bottom:901.053450px;}
.y2ef{bottom:902.223600px;}
.y190{bottom:902.512650px;}
.y364{bottom:902.817150px;}
.y354{bottom:903.865650px;}
.y1ea{bottom:904.890900px;}
.ybe{bottom:906.465150px;}
.y65{bottom:906.490650px;}
.y92{bottom:906.519750px;}
.y1eb{bottom:907.888050px;}
.ye6{bottom:908.208150px;}
.y199{bottom:908.923950px;}
.y189{bottom:909.639665px;}
.y1fc{bottom:910.570650px;}
.y1f4{bottom:910.995900px;}
.y2ac{bottom:914.838300px;}
.y1e9{bottom:915.690900px;}
.y195{bottom:915.707700px;}
.y2ee{bottom:917.269350px;}
.y238{bottom:917.553450px;}
.y32e{bottom:917.817150px;}
.y353{bottom:918.865650px;}
.y1e1{bottom:919.446750px;}
.y272{bottom:925.993950px;}
.y194{bottom:926.507700px;}
.ybd{bottom:927.465150px;}
.y12{bottom:927.477000px;}
.y64{bottom:927.490650px;}
.y91{bottom:927.519750px;}
.y2ed{bottom:932.314950px;}
.y32d{bottom:932.817150px;}
.y352{bottom:933.865650px;}
.y237{bottom:934.053450px;}
.y27c{bottom:934.722900px;}
.y1a4{bottom:935.381250px;}
.y1e4{bottom:937.070580px;}
.y1ef{bottom:940.374900px;}
.y18f{bottom:940.375650px;}
.y33c{bottom:944.061600px;}
.y1a5{bottom:944.084250px;}
.y2ec{bottom:947.360550px;}
.y32c{bottom:947.817150px;}
.y198{bottom:948.289950px;}
.ybc{bottom:948.465150px;}
.y63{bottom:948.490650px;}
.y90{bottom:948.519750px;}
.y351{bottom:948.865650px;}
.y23e{bottom:950.506950px;}
.y236{bottom:950.553450px;}
.y1a7{bottom:951.167250px;}
.y2ab{bottom:954.490650px;}
.y27d{bottom:954.717900px;}
.y271{bottom:957.925950px;}
.y1a6{bottom:960.356250px;}
.ye4{bottom:960.465150px;}
.y26f{bottom:960.969000px;}
.y1f5{bottom:961.476900px;}
.y2eb{bottom:962.406300px;}
.y32b{bottom:962.817150px;}
.y350{bottom:963.865650px;}
.y235{bottom:967.053450px;}
.ybb{bottom:969.465150px;}
.y11{bottom:969.477000px;}
.y62{bottom:969.490650px;}
.y8f{bottom:969.519750px;}
.y2aa{bottom:975.490650px;}
.y2ea{bottom:977.451900px;}
.y32a{bottom:977.817150px;}
.y1e0{bottom:978.666750px;}
.y34f{bottom:978.865650px;}
.y206{bottom:980.477400px;}
.ye3{bottom:981.465150px;}
.y234{bottom:983.553450px;}
.y1fa{bottom:988.105650px;}
.y270{bottom:989.857950px;}
.yce{bottom:990.465150px;}
.y61{bottom:990.490650px;}
.y8e{bottom:990.519750px;}
.y2e9{bottom:992.497500px;}
.y207{bottom:992.622300px;}
.y329{bottom:992.817150px;}
.y34e{bottom:993.865650px;}
.y2a9{bottom:996.490650px;}
.y333{bottom:997.774950px;}
.y23d{bottom:1000.006950px;}
.y233{bottom:1000.014000px;}
.y23c{bottom:1000.053450px;}
.ye2{bottom:1002.465150px;}
.y2e8{bottom:1007.543100px;}
.y328{bottom:1007.817150px;}
.y34d{bottom:1008.865650px;}
.y1ee{bottom:1009.880700px;}
.yba{bottom:1011.465150px;}
.y10{bottom:1011.477000px;}
.y60{bottom:1011.490650px;}
.y8d{bottom:1011.519750px;}
.y1f6{bottom:1011.966900px;}
.y2a8{bottom:1017.490650px;}
.y231{bottom:1021.355100px;}
.y26c{bottom:1021.792950px;}
.y27b{bottom:1021.803450px;}
.y2e7{bottom:1022.588850px;}
.y327{bottom:1022.817150px;}
.ye5{bottom:1023.465150px;}
.y34c{bottom:1023.865650px;}
.y208{bottom:1031.665050px;}
.y205{bottom:1031.668800px;}
.yb9{bottom:1032.465150px;}
.y5f{bottom:1032.490650px;}
.y8c{bottom:1032.519750px;}
.y2e6{bottom:1037.634450px;}
.y1ed{bottom:1037.704650px;}
.y1e5{bottom:1037.817150px;}
.y230{bottom:1037.855100px;}
.y34b{bottom:1038.865650px;}
.y33e{bottom:1040.745600px;}
.y209{bottom:1043.806050px;}
.y204{bottom:1043.809800px;}
.y1ec{bottom:1048.504650px;}
.yc{bottom:1051.861200px;}
.y2e5{bottom:1052.680050px;}
.y1f9{bottom:1052.761650px;}
.y326{bottom:1052.817150px;}
.yb8{bottom:1053.465150px;}
.y5e{bottom:1053.490650px;}
.y8b{bottom:1053.519750px;}
.y26b{bottom:1053.724950px;}
.y27a{bottom:1053.735450px;}
.y34a{bottom:1053.865650px;}
.y22f{bottom:1054.315650px;}
.y232{bottom:1054.355100px;}
.ye{bottom:1056.291750px;}
.y1f7{bottom:1062.447900px;}
.y2e4{bottom:1067.725800px;}
.y325{bottom:1067.817150px;}
.y349{bottom:1068.865650px;}
.y51{bottom:1071.158350px;}
.yb7{bottom:1074.465150px;}
.y5d{bottom:1074.490650px;}
.y8a{bottom:1074.519750px;}
.y22e{bottom:1074.606600px;}
.y4f{bottom:1081.392000px;}
.y2e3{bottom:1082.771400px;}
.y324{bottom:1082.817150px;}
.y348{bottom:1083.865650px;}
.y279{bottom:1085.667450px;}
.y26a{bottom:1085.668950px;}
.yd{bottom:1089.735150px;}
.yb6{bottom:1095.465150px;}
.y32f{bottom:1095.480000px;}
.y5c{bottom:1095.490650px;}
.y89{bottom:1095.519750px;}
.y4e{bottom:1096.392000px;}
.y2e2{bottom:1097.817150px;}
.y22d{bottom:1097.897700px;}
.y6{bottom:1107.795150px;}
.y4d{bottom:1111.392000px;}
.y4c{bottom:1126.392000px;}
.y59{bottom:1133.730150px;}
.y5b{bottom:1133.733900px;}
.y4b{bottom:1141.392000px;}
.y4a{bottom:1156.392000px;}
.y49{bottom:1171.392000px;}
.h17{height:5.886975px;}
.h22{height:15.290086px;}
.h23{height:17.484375px;}
.hd{height:20.988000px;}
.h6{height:22.500000px;}
.h21{height:25.769531px;}
.h1{height:26.208000px;}
.h1f{height:26.226562px;}
.ha{height:27.000000px;}
.h9{height:28.080000px;}
.h5{height:31.500000px;}
.h12{height:33.312000px;}
.h1d{height:34.945312px;}
.h2{height:36.000000px;}
.h2c{height:36.157200px;}
.h1e{height:36.157800px;}
.he{height:36.972000px;}
.h4{height:37.132500px;}
.h19{height:37.440000px;}
.h10{height:37.476000px;}
.h2a{height:40.042200px;}
.h2d{height:40.042800px;}
.h2b{height:40.200000px;}
.hf{height:40.500000px;}
.h1a{height:41.640000px;}
.h24{height:42.066563px;}
.h28{height:43.681641px;}
.h29{height:44.255520px;}
.h1c{height:44.256120px;}
.h1b{height:44.256720px;}
.h8{height:45.000000px;}
.h16{height:47.095796px;}
.hc{height:50.836500px;}
.h25{height:52.417969px;}
.h2e{height:54.000000px;}
.h3{height:56.160000px;}
.h11{height:63.000000px;}
.h14{height:65.885983px;}
.h18{height:70.643694px;}
.h7{height:86.104200px;}
.hb{height:108.000000px;}
.h27{height:520.699500px;}
.h26{height:564.792000px;}
.h20{height:874.005000px;}
.h13{height:1107.989461px;}
.h15{height:1187.999398px;}
.h0{height:1188.000000px;}
.w1{width:505.500000px;}
.w5{width:638.835000px;}
.w4{width:639.837000px;}
.w6{width:685.470000px;}
.w2{width:783.427602px;}
.w3{width:840.005561px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7d{left:2.112900px;}
.xd{left:4.000497px;}
.xb{left:7.984972px;}
.x62{left:10.296900px;}
.xab{left:12.916650px;}
.xc{left:19.984962px;}
.x9{left:39.000000px;}
.x12{left:80.775000px;}
.x31{left:87.150000px;}
.xb8{left:90.102300px;}
.xdd{left:95.775000px;}
.x13{left:102.034800px;}
.xaa{left:103.765500px;}
.x3{left:106.275000px;}
.xa7{left:112.650000px;}
.xd4{left:118.690950px;}
.x7{left:122.925000px;}
.xa{left:126.840572px;}
.xb9{left:129.893400px;}
.x10{left:134.775000px;}
.xa8{left:143.948700px;}
.x98{left:145.975500px;}
.xa9{left:150.620700px;}
.x36{left:151.831500px;}
.x7e{left:154.806450px;}
.xac{left:157.294500px;}
.x73{left:166.876800px;}
.x4b{left:168.551100px;}
.x71{left:173.259900px;}
.x3f{left:176.009400px;}
.x72{left:178.263900px;}
.x40{left:181.016673px;}
.x97{left:182.136000px;}
.x74{left:183.270600px;}
.xd5{left:185.742600px;}
.x99{left:188.505900px;}
.x67{left:194.514300px;}
.x9a{left:199.287900px;}
.x7c{left:201.239400px;}
.xd6{left:202.283550px;}
.x4c{left:207.989400px;}
.x42{left:209.079008px;}
.x41{left:211.328828px;}
.x61{left:216.766800px;}
.x43{left:218.204563px;}
.x77{left:219.259650px;}
.x96{left:221.324250px;}
.x9b{left:224.739900px;}
.x26{left:226.810500px;}
.x4a{left:231.049350px;}
.xa0{left:233.950800px;}
.xd7{left:235.283550px;}
.xa1{left:237.286800px;}
.x27{left:244.486500px;}
.xd8{left:251.824650px;}
.xba{left:252.975450px;}
.x78{left:254.305650px;}
.x60{left:255.907800px;}
.x9d{left:257.841900px;}
.x75{left:260.076750px;}
.x63{left:261.446400px;}
.xa2{left:263.986800px;}
.x9c{left:266.751900px;}
.x7b{left:268.012650px;}
.x32{left:269.887500px;}
.x76{left:283.080750px;}
.x45{left:284.192393px;}
.xbb{left:286.016400px;}
.xa3{left:287.350800px;}
.x79{left:290.008650px;}
.x8b{left:293.296350px;}
.x9e{left:294.588900px;}
.xa5{left:301.360350px;}
.xbc{left:302.516400px;}
.x1e{left:303.901650px;}
.x8c{left:305.173350px;}
.x47{left:308.952009px;}
.x1f{left:313.237650px;}
.x46{left:314.744505px;}
.x82{left:317.500540px;}
.xbd{left:319.016400px;}
.x80{left:322.503038px;}
.xa6{left:324.764850px;}
.x7a{left:326.233650px;}
.x81{left:327.508164px;}
.x2{left:331.725000px;}
.x83{left:334.763854px;}
.x7f{left:339.764850px;}
.xad{left:340.867800px;}
.x48{left:343.511829px;}
.xb7{left:344.680800px;}
.x64{left:345.965100px;}
.x44{left:347.802673px;}
.xb4{left:349.299450px;}
.xa4{left:351.199350px;}
.xb5{left:353.947800px;}
.x65{left:358.464600px;}
.xb6{left:360.619800px;}
.x8a{left:363.703374px;}
.x66{left:364.964100px;}
.x29{left:366.985500px;}
.xbe{left:368.557500px;}
.x84{left:370.391851px;}
.x2a{left:372.985500px;}
.x9f{left:374.463900px;}
.x28{left:376.981500px;}
.x89{left:380.389186px;}
.x20{left:381.985500px;}
.x21{left:384.001500px;}
.x2b{left:385.321500px;}
.x22{left:387.661500px;}
.x1{left:394.864200px;}
.xbf{left:401.557500px;}
.x49{left:407.376009px;}
.x85{left:411.075030px;}
.xc0{left:418.057500px;}
.xc1{left:434.598450px;}
.x1a{left:442.393500px;}
.x1b{left:450.733500px;}
.x33{left:452.625000px;}
.x14{left:456.900000px;}
.x8f{left:463.195350px;}
.xaf{left:465.181800px;}
.xc2{left:468.649950px;}
.x15{left:478.159800px;}
.x19{left:482.400000px;}
.xc6{left:484.099950px;}
.x8e{left:485.479350px;}
.xd9{left:487.030950px;}
.xae{left:492.448950px;}
.x88{left:498.838350px;}
.x37{left:501.195600px;}
.xdb{left:502.480950px;}
.x2c{left:503.820000px;}
.xb0{left:505.794300px;}
.xb1{left:506.850300px;}
.x1d{left:508.816500px;}
.x6f{left:510.717600px;}
.x5a{left:514.190100px;}
.x70{left:515.721600px;}
.xc7{left:517.099950px;}
.xc3{left:518.110500px;}
.x1c{left:519.484500px;}
.x68{left:520.728600px;}
.x90{left:522.676350px;}
.x94{left:525.614850px;}
.x3d{left:533.582100px;}
.xc4{left:534.610500px;}
.xda{left:536.530950px;}
.x4d{left:537.779100px;}
.x5b{left:540.747600px;}
.xc8{left:550.099950px;}
.xc5{left:551.110500px;}
.x86{left:553.478850px;}
.x35{left:555.288600px;}
.x87{left:556.727850px;}
.x6d{left:560.091600px;}
.x52{left:561.767100px;}
.x53{left:566.771100px;}
.x69{left:568.239490px;}
.x8d{left:570.475350px;}
.x23{left:576.906000px;}
.x24{left:583.230000px;}
.x25{left:588.234000px;}
.xdc{left:589.796100px;}
.x34{left:593.889600px;}
.x38{left:600.513600px;}
.x6b{left:602.088755px;}
.x54{left:606.221100px;}
.xb2{left:608.569950px;}
.x55{left:611.225100px;}
.xc9{left:617.191050px;}
.xe{left:619.439690px;}
.x6e{left:622.767600px;}
.x5c{left:627.039600px;}
.x56{left:628.445100px;}
.x2f{left:630.970500px;}
.x57{left:633.449100px;}
.x6{left:635.771700px;}
.x5{left:642.415350px;}
.x2e{left:646.318500px;}
.xcb{left:649.182000px;}
.x2d{left:650.314500px;}
.x6a{left:652.244855px;}
.xf{left:655.660500px;}
.x30{left:660.322500px;}
.xcc{left:665.682000px;}
.xca{left:666.732000px;}
.xb3{left:668.787450px;}
.x91{left:670.355850px;}
.x5d{left:671.625600px;}
.x58{left:672.815100px;}
.x92{left:674.605350px;}
.x59{left:677.903100px;}
.x39{left:680.681100px;}
.xcd{left:682.182000px;}
.x93{left:684.023850px;}
.x95{left:693.653850px;}
.x50{left:695.033100px;}
.x5e{left:696.384600px;}
.x3a{left:697.530600px;}
.xce{left:698.682000px;}
.x51{left:700.121100px;}
.x3b{left:704.031600px;}
.x3c{left:706.949100px;}
.xcf{left:715.182000px;}
.x3e{left:716.579100px;}
.x5f{left:718.191600px;}
.x4f{left:722.345100px;}
.x6c{left:724.893935px;}
.xd0{left:731.682000px;}
.x16{left:737.154600px;}
.x4e{left:739.481100px;}
.x4{left:745.084350px;}
.xd1{left:749.273100px;}
.x11{left:750.297900px;}
.xd2{left:765.773100px;}
.x18{left:772.443750px;}
.xd3{left:782.273100px;}
.x17{left:812.395950px;}
.x8{left:945.000000px;}
@media print{
.va{vertical-align:-28.672000pt;}
.v6{vertical-align:-17.760000pt;}
.v3{vertical-align:-14.208000pt;}
.v8{vertical-align:-10.048797pt;}
.v9{vertical-align:-8.992000pt;}
.vc{vertical-align:-3.733333pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:3.733333pt;}
.v7{vertical-align:11.321067pt;}
.v4{vertical-align:14.208000pt;}
.v5{vertical-align:17.760533pt;}
.v2{vertical-align:19.536000pt;}
.v1{vertical-align:36.537067pt;}
.ls48{letter-spacing:-2.368000pt;}
.ls34{letter-spacing:-1.226667pt;}
.ls77{letter-spacing:-1.109333pt;}
.ls35{letter-spacing:-0.853333pt;}
.ls3e{letter-spacing:-0.746667pt;}
.ls6f{letter-spacing:-0.725333pt;}
.ls72{letter-spacing:-0.682667pt;}
.ls5b{letter-spacing:-0.640000pt;}
.ls75{letter-spacing:-0.597333pt;}
.ls74{letter-spacing:-0.554667pt;}
.ls58{letter-spacing:-0.533333pt;}
.ls8e{letter-spacing:-0.512000pt;}
.ls29{letter-spacing:-0.480000pt;}
.ls78{letter-spacing:-0.469333pt;}
.ls26{letter-spacing:-0.426667pt;}
.ls9{letter-spacing:-0.384000pt;}
.ls28{letter-spacing:-0.373333pt;}
.ls71{letter-spacing:-0.341333pt;}
.ls30{letter-spacing:-0.320000pt;}
.ls59{letter-spacing:-0.310933pt;}
.ls70{letter-spacing:-0.298667pt;}
.lse{letter-spacing:-0.288000pt;}
.ls27{letter-spacing:-0.266667pt;}
.ls76{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.240000pt;}
.ls2a{letter-spacing:-0.213333pt;}
.ls7c{letter-spacing:-0.170667pt;}
.ls31{letter-spacing:-0.160000pt;}
.ls7a{letter-spacing:-0.128000pt;}
.ls24{letter-spacing:-0.106667pt;}
.lsc{letter-spacing:-0.096000pt;}
.ls73{letter-spacing:-0.085333pt;}
.ls53{letter-spacing:-0.062187pt;}
.ls25{letter-spacing:-0.053333pt;}
.ls79{letter-spacing:-0.042667pt;}
.ls5f{letter-spacing:-0.031093pt;}
.lsa{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.000533pt;}
.ls54{letter-spacing:0.008533pt;}
.ls33{letter-spacing:0.009067pt;}
.ls7d{letter-spacing:0.010133pt;}
.ls5c{letter-spacing:0.030933pt;}
.ls60{letter-spacing:0.031093pt;}
.ls67{letter-spacing:0.042667pt;}
.ls1c{letter-spacing:0.044267pt;}
.ls1b{letter-spacing:0.044800pt;}
.ls1a{letter-spacing:0.053333pt;}
.ls6e{letter-spacing:0.085333pt;}
.ls45{letter-spacing:0.106133pt;}
.ls10{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.118933pt;}
.ls6{letter-spacing:0.119467pt;}
.ls5{letter-spacing:0.120000pt;}
.ls6b{letter-spacing:0.128000pt;}
.ls39{letter-spacing:0.133333pt;}
.ls3a{letter-spacing:0.134400pt;}
.ls18{letter-spacing:0.160000pt;}
.ls8b{letter-spacing:0.170667pt;}
.ls62{letter-spacing:0.186560pt;}
.ls22{letter-spacing:0.213333pt;}
.ls88{letter-spacing:0.256000pt;}
.ls55{letter-spacing:0.266667pt;}
.ls4{letter-spacing:0.288000pt;}
.ls68{letter-spacing:0.298667pt;}
.lsf{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.336000pt;}
.ls8c{letter-spacing:0.341333pt;}
.ls64{letter-spacing:0.342027pt;}
.ls43{letter-spacing:0.368000pt;}
.ls14{letter-spacing:0.373333pt;}
.ls8{letter-spacing:0.384000pt;}
.ls50{letter-spacing:0.392000pt;}
.ls44{letter-spacing:0.400000pt;}
.ls4a{letter-spacing:0.426667pt;}
.ls2c{letter-spacing:0.453333pt;}
.ls69{letter-spacing:0.469333pt;}
.ls13{letter-spacing:0.480000pt;}
.ls63{letter-spacing:0.497493pt;}
.ls49{letter-spacing:0.516800pt;}
.ls61{letter-spacing:0.528587pt;}
.ls15{letter-spacing:0.533333pt;}
.ls46{letter-spacing:0.586667pt;}
.ls6a{letter-spacing:0.597333pt;}
.ls2f{letter-spacing:0.693333pt;}
.ls42{letter-spacing:0.720000pt;}
.ls89{letter-spacing:0.725333pt;}
.ls1e{letter-spacing:0.746667pt;}
.ls17{letter-spacing:0.800000pt;}
.ls52{letter-spacing:0.808427pt;}
.ls12{letter-spacing:0.812267pt;}
.ls3f{letter-spacing:0.853333pt;}
.ls41{letter-spacing:0.862400pt;}
.ls40{letter-spacing:0.862933pt;}
.ls23{letter-spacing:0.906667pt;}
.ls8a{letter-spacing:0.938667pt;}
.ls2b{letter-spacing:0.960000pt;}
.ls5a{letter-spacing:0.963893pt;}
.ls51{letter-spacing:1.013333pt;}
.ls6d{letter-spacing:1.024000pt;}
.ls2{letter-spacing:1.036800pt;}
.ls21{letter-spacing:1.066667pt;}
.ls1d{letter-spacing:1.173333pt;}
.ls20{letter-spacing:1.226667pt;}
.ls65{letter-spacing:1.280000pt;}
.ls7b{letter-spacing:1.322667pt;}
.ls16{letter-spacing:1.333333pt;}
.ls11{letter-spacing:1.386667pt;}
.ls2e{letter-spacing:1.440000pt;}
.ls4b{letter-spacing:1.493333pt;}
.ls4c{letter-spacing:1.501333pt;}
.ls1f{letter-spacing:1.546667pt;}
.ls6c{letter-spacing:1.621333pt;}
.ls56{letter-spacing:1.653333pt;}
.ls66{letter-spacing:1.706667pt;}
.ls3{letter-spacing:1.792000pt;}
.ls2d{letter-spacing:1.813333pt;}
.ls5e{letter-spacing:1.893333pt;}
.ls8d{letter-spacing:2.005333pt;}
.ls4d{letter-spacing:2.080000pt;}
.ls4e{letter-spacing:2.089067pt;}
.ls4f{letter-spacing:2.089600pt;}
.ls5d{letter-spacing:2.240000pt;}
.ls19{letter-spacing:2.453333pt;}
.ls1{letter-spacing:2.464000pt;}
.ls0{letter-spacing:11.093333pt;}
.ls7e{letter-spacing:51.389333pt;}
.ls3c{letter-spacing:119.296000pt;}
.ls36{letter-spacing:121.248000pt;}
.ls82{letter-spacing:134.139200pt;}
.ls57{letter-spacing:134.272000pt;}
.ls81{letter-spacing:157.202133pt;}
.ls80{letter-spacing:169.264533pt;}
.ls7f{letter-spacing:178.139200pt;}
.ls84{letter-spacing:178.597867pt;}
.ls83{letter-spacing:199.910400pt;}
.ls86{letter-spacing:218.756800pt;}
.ls85{letter-spacing:266.076800pt;}
.ls87{letter-spacing:382.454933pt;}
.ls3b{letter-spacing:393.536000pt;}
.ls47{letter-spacing:800.032000pt;}
.ls37{letter-spacing:1099.584000pt;}
.ls3d{letter-spacing:1102.528000pt;}
.ls38{letter-spacing:1106.688000pt;}
.ws8b{word-spacing:-1102.528000pt;}
.ws98{word-spacing:-800.032000pt;}
.ws77{word-spacing:-412.224000pt;}
.wsb5{word-spacing:-176.938667pt;}
.ws78{word-spacing:-137.984000pt;}
.wsbb{word-spacing:-134.272000pt;}
.ws8a{word-spacing:-121.248000pt;}
.ws7c{word-spacing:-42.666667pt;}
.ws2b{word-spacing:-20.757333pt;}
.ws76{word-spacing:-18.688000pt;}
.ws93{word-spacing:-16.320000pt;}
.wsa2{word-spacing:-15.413333pt;}
.ws1{word-spacing:-15.360000pt;}
.wsa3{word-spacing:-14.720000pt;}
.ws97{word-spacing:-14.186667pt;}
.ws5{word-spacing:-13.680000pt;}
.wsc6{word-spacing:-13.386667pt;}
.ws9{word-spacing:-13.344000pt;}
.ws2d{word-spacing:-13.333333pt;}
.ws6{word-spacing:-13.248000pt;}
.ws88{word-spacing:-12.906667pt;}
.wsb8{word-spacing:-12.800000pt;}
.ws89{word-spacing:-12.586667pt;}
.ws7{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.861333pt;}
.wsa{word-spacing:-10.666667pt;}
.wse4{word-spacing:-10.538667pt;}
.ws6e{word-spacing:-10.378667pt;}
.wse3{word-spacing:-10.282667pt;}
.ws0{word-spacing:-10.272000pt;}
.ws2a{word-spacing:-10.240000pt;}
.ws4{word-spacing:-9.508341pt;}
.ws6f{word-spacing:-9.333333pt;}
.wsba{word-spacing:-8.737227pt;}
.wsa4{word-spacing:-8.581760pt;}
.wsc8{word-spacing:-8.301920pt;}
.wsca{word-spacing:-8.270827pt;}
.wscb{word-spacing:-8.115360pt;}
.wsc9{word-spacing:-7.959893pt;}
.wsc7{word-spacing:-7.804427pt;}
.ws2c{word-spacing:-7.773333pt;}
.wsc5{word-spacing:-7.742240pt;}
.wsa5{word-spacing:-7.711147pt;}
.ws2{word-spacing:-7.680000pt;}
.wsb9{word-spacing:-7.462400pt;}
.ws3{word-spacing:-7.413333pt;}
.ws6c{word-spacing:-6.915157pt;}
.ws74{word-spacing:-6.080000pt;}
.ws11{word-spacing:-5.333333pt;}
.ws75{word-spacing:-4.213333pt;}
.ws8e{word-spacing:-3.680000pt;}
.wse6{word-spacing:-3.541333pt;}
.wseb{word-spacing:-3.456000pt;}
.wsb1{word-spacing:-3.413333pt;}
.ws30{word-spacing:-3.360000pt;}
.ws4d{word-spacing:-3.306667pt;}
.wsfa{word-spacing:-3.285333pt;}
.ws3e{word-spacing:-3.253333pt;}
.wse{word-spacing:-3.200000pt;}
.ws5d{word-spacing:-3.146667pt;}
.ws8d{word-spacing:-3.093333pt;}
.ws137{word-spacing:-3.072000pt;}
.wsa7{word-spacing:-3.040000pt;}
.ws16{word-spacing:-3.024000pt;}
.wsb3{word-spacing:-2.986667pt;}
.ws17{word-spacing:-2.976000pt;}
.wsf1{word-spacing:-2.901333pt;}
.ws41{word-spacing:-2.880000pt;}
.wsfe{word-spacing:-2.858667pt;}
.wscf{word-spacing:-2.826667pt;}
.wsef{word-spacing:-2.730667pt;}
.ws32{word-spacing:-2.720000pt;}
.wse7{word-spacing:-2.688000pt;}
.ws40{word-spacing:-2.666667pt;}
.wse9{word-spacing:-2.645333pt;}
.ws70{word-spacing:-2.613333pt;}
.ws5c{word-spacing:-2.453333pt;}
.ws109{word-spacing:-2.432000pt;}
.wsab{word-spacing:-2.400000pt;}
.ws4f{word-spacing:-2.293333pt;}
.wsd8{word-spacing:-2.186667pt;}
.ws101{word-spacing:-2.176000pt;}
.ws132{word-spacing:-2.133333pt;}
.ws3f{word-spacing:-2.080000pt;}
.ws116{word-spacing:-2.048000pt;}
.wsdd{word-spacing:-2.026667pt;}
.wsb4{word-spacing:-1.920000pt;}
.ws18{word-spacing:-1.824000pt;}
.wsdc{word-spacing:-1.813333pt;}
.wsf{word-spacing:-1.792000pt;}
.wsc3{word-spacing:-1.760000pt;}
.ws24{word-spacing:-1.680000pt;}
.ws45{word-spacing:-1.653333pt;}
.wsbc{word-spacing:-1.642667pt;}
.ws58{word-spacing:-1.600000pt;}
.ws3a{word-spacing:-1.546667pt;}
.ws73{word-spacing:-1.493333pt;}
.wsdf{word-spacing:-1.386667pt;}
.wsfc{word-spacing:-1.365333pt;}
.ws69{word-spacing:-1.333333pt;}
.wsd3{word-spacing:-1.280000pt;}
.ws10c{word-spacing:-1.237333pt;}
.ws44{word-spacing:-1.173333pt;}
.ws1a{word-spacing:-1.152000pt;}
.wsc{word-spacing:-1.120000pt;}
.ws112{word-spacing:-1.109333pt;}
.ws49{word-spacing:-1.066667pt;}
.ws133{word-spacing:-1.024000pt;}
.ws4a{word-spacing:-1.013333pt;}
.ws29{word-spacing:-1.008000pt;}
.ws10a{word-spacing:-0.981333pt;}
.wsaf{word-spacing:-0.960000pt;}
.wsa8{word-spacing:-0.800000pt;}
.wsee{word-spacing:-0.725333pt;}
.wsa1{word-spacing:-0.693333pt;}
.wsd0{word-spacing:-0.586667pt;}
.ws35{word-spacing:-0.533333pt;}
.wsf0{word-spacing:-0.426667pt;}
.wsbd{word-spacing:-0.410667pt;}
.ws111{word-spacing:-0.384000pt;}
.ws48{word-spacing:-0.373333pt;}
.wsed{word-spacing:-0.341333pt;}
.ws3d{word-spacing:-0.320000pt;}
.ws4e{word-spacing:-0.266667pt;}
.ws12f{word-spacing:-0.256000pt;}
.ws100{word-spacing:-0.213333pt;}
.ws134{word-spacing:-0.170667pt;}
.ws1b{word-spacing:-0.144000pt;}
.wsf8{word-spacing:-0.128000pt;}
.ws90{word-spacing:-0.106667pt;}
.ws10{word-spacing:-0.085333pt;}
.ws33{word-spacing:-0.053333pt;}
.ws8{word-spacing:-0.048000pt;}
.ws6b{word-spacing:-0.042667pt;}
.wsd{word-spacing:0.000000pt;}
.wsae{word-spacing:0.053333pt;}
.ws117{word-spacing:0.085333pt;}
.ws1e{word-spacing:0.096000pt;}
.ws10b{word-spacing:0.128000pt;}
.ws42{word-spacing:0.160000pt;}
.ws12e{word-spacing:0.213333pt;}
.ws115{word-spacing:0.256000pt;}
.wsd7{word-spacing:0.266667pt;}
.ws110{word-spacing:0.298667pt;}
.ws71{word-spacing:0.320000pt;}
.wsf7{word-spacing:0.341333pt;}
.ws8f{word-spacing:0.373333pt;}
.ws105{word-spacing:0.469333pt;}
.wscc{word-spacing:0.480000pt;}
.wscd{word-spacing:0.533333pt;}
.ws34{word-spacing:0.586667pt;}
.wsd9{word-spacing:0.693333pt;}
.wsb2{word-spacing:0.746667pt;}
.ws43{word-spacing:0.800000pt;}
.ws107{word-spacing:0.810667pt;}
.wsbe{word-spacing:0.821333pt;}
.ws28{word-spacing:0.864000pt;}
.ws64{word-spacing:0.906667pt;}
.ws57{word-spacing:0.960000pt;}
.ws135{word-spacing:1.024000pt;}
.ws1c{word-spacing:1.056000pt;}
.ws15{word-spacing:1.104000pt;}
.ws138{word-spacing:1.109333pt;}
.wsb0{word-spacing:1.120000pt;}
.wsff{word-spacing:1.152000pt;}
.wsc0{word-spacing:1.226667pt;}
.ws4c{word-spacing:1.280000pt;}
.wsf9{word-spacing:1.322667pt;}
.ws21{word-spacing:1.440000pt;}
.wsbf{word-spacing:1.530667pt;}
.ws19{word-spacing:1.536000pt;}
.wsf6{word-spacing:1.578667pt;}
.ws53{word-spacing:1.600000pt;}
.wsec{word-spacing:1.621333pt;}
.wsa6{word-spacing:1.653333pt;}
.ws22{word-spacing:1.680000pt;}
.wsac{word-spacing:1.706667pt;}
.ws9a{word-spacing:1.754667pt;}
.ws63{word-spacing:1.760000pt;}
.ws61{word-spacing:1.813333pt;}
.ws10d{word-spacing:1.834667pt;}
.ws9c{word-spacing:1.866667pt;}
.wsd5{word-spacing:1.920000pt;}
.ws108{word-spacing:2.005333pt;}
.ws99{word-spacing:2.053333pt;}
.ws23{word-spacing:2.064000pt;}
.wse5{word-spacing:2.080000pt;}
.wsf4{word-spacing:2.090667pt;}
.wsaa{word-spacing:2.133333pt;}
.wse8{word-spacing:2.176000pt;}
.wsce{word-spacing:2.186667pt;}
.ws65{word-spacing:2.240000pt;}
.wse2{word-spacing:2.346667pt;}
.ws8c{word-spacing:2.453333pt;}
.ws56{word-spacing:2.506667pt;}
.wsa9{word-spacing:2.560000pt;}
.ws31{word-spacing:2.613333pt;}
.ws26{word-spacing:2.640000pt;}
.ws131{word-spacing:2.645333pt;}
.wse1{word-spacing:2.666667pt;}
.ws5e{word-spacing:2.773333pt;}
.ws9b{word-spacing:2.800000pt;}
.wsf3{word-spacing:2.816000pt;}
.ws66{word-spacing:2.826667pt;}
.wsf2{word-spacing:2.858667pt;}
.ws54{word-spacing:2.933333pt;}
.ws10f{word-spacing:2.944000pt;}
.wsf5{word-spacing:2.986667pt;}
.ws130{word-spacing:3.072000pt;}
.ws9e{word-spacing:3.093333pt;}
.wsea{word-spacing:3.114667pt;}
.ws114{word-spacing:3.157333pt;}
.ws9f{word-spacing:3.253333pt;}
.wsd4{word-spacing:3.306667pt;}
.wsfb{word-spacing:3.328000pt;}
.wsc4{word-spacing:3.360000pt;}
.ws39{word-spacing:3.413333pt;}
.ws102{word-spacing:3.456000pt;}
.ws36{word-spacing:3.466667pt;}
.ws113{word-spacing:3.498667pt;}
.ws1d{word-spacing:3.504000pt;}
.wsdb{word-spacing:3.520000pt;}
.wsc2{word-spacing:3.573333pt;}
.ws50{word-spacing:3.733333pt;}
.wsd6{word-spacing:3.840000pt;}
.ws20{word-spacing:3.984000pt;}
.ws5a{word-spacing:4.000000pt;}
.ws3c{word-spacing:4.053333pt;}
.ws68{word-spacing:4.106667pt;}
.ws1f{word-spacing:4.128000pt;}
.ws10e{word-spacing:4.138667pt;}
.ws136{word-spacing:4.309333pt;}
.ws27{word-spacing:4.320000pt;}
.ws103{word-spacing:4.352000pt;}
.ws67{word-spacing:4.373333pt;}
.wse0{word-spacing:4.426667pt;}
.wsd2{word-spacing:4.533333pt;}
.ws106{word-spacing:4.565333pt;}
.ws7b{word-spacing:4.576000pt;}
.ws60{word-spacing:4.640000pt;}
.ws52{word-spacing:4.693333pt;}
.ws6a{word-spacing:4.746667pt;}
.wsde{word-spacing:4.800000pt;}
.ws4b{word-spacing:4.906667pt;}
.ws46{word-spacing:4.960000pt;}
.ws72{word-spacing:5.013333pt;}
.wsfd{word-spacing:5.034667pt;}
.ws14{word-spacing:5.040000pt;}
.ws2f{word-spacing:5.226667pt;}
.ws104{word-spacing:5.248000pt;}
.ws59{word-spacing:5.280000pt;}
.ws5b{word-spacing:5.333333pt;}
.ws51{word-spacing:5.386667pt;}
.wsda{word-spacing:5.440000pt;}
.ws13{word-spacing:5.616000pt;}
.wsc1{word-spacing:5.653333pt;}
.ws25{word-spacing:5.856000pt;}
.ws38{word-spacing:5.866667pt;}
.ws62{word-spacing:5.920000pt;}
.ws5f{word-spacing:5.973333pt;}
.ws12{word-spacing:6.000000pt;}
.wsd1{word-spacing:6.026667pt;}
.ws7f{word-spacing:6.176000pt;}
.wsa0{word-spacing:6.240000pt;}
.ws55{word-spacing:6.293333pt;}
.wsad{word-spacing:6.346667pt;}
.ws9d{word-spacing:6.400000pt;}
.ws37{word-spacing:6.506667pt;}
.ws3b{word-spacing:6.613333pt;}
.ws2e{word-spacing:6.666667pt;}
.ws47{word-spacing:6.720000pt;}
.ws86{word-spacing:11.104000pt;}
.ws7e{word-spacing:12.416000pt;}
.ws84{word-spacing:23.488000pt;}
.ws95{word-spacing:28.736000pt;}
.ws87{word-spacing:33.792000pt;}
.ws94{word-spacing:34.400000pt;}
.ws85{word-spacing:34.528000pt;}
.ws126{word-spacing:36.773333pt;}
.ws118{word-spacing:37.381333pt;}
.ws12d{word-spacing:44.676800pt;}
.ws91{word-spacing:53.034487pt;}
.ws7a{word-spacing:53.088000pt;}
.wsb7{word-spacing:63.445333pt;}
.ws129{word-spacing:71.703509pt;}
.ws11e{word-spacing:79.440000pt;}
.ws120{word-spacing:88.912533pt;}
.ws83{word-spacing:89.728000pt;}
.ws11c{word-spacing:98.256533pt;}
.ws81{word-spacing:102.560000pt;}
.ws11f{word-spacing:105.775467pt;}
.ws124{word-spacing:105.776000pt;}
.ws11d{word-spacing:115.119467pt;}
.ws12b{word-spacing:116.688533pt;}
.ws12a{word-spacing:119.140843pt;}
.ws11a{word-spacing:119.589867pt;}
.ws79{word-spacing:128.585859pt;}
.ws82{word-spacing:128.586393pt;}
.wsb6{word-spacing:131.242667pt;}
.ws92{word-spacing:132.192000pt;}
.ws119{word-spacing:147.365867pt;}
.ws125{word-spacing:151.620309pt;}
.ws6d{word-spacing:160.627733pt;}
.ws12c{word-spacing:171.641109pt;}
.ws123{word-spacing:185.562133pt;}
.ws128{word-spacing:194.786709pt;}
.ws121{word-spacing:196.995243pt;}
.ws127{word-spacing:198.381333pt;}
.ws96{word-spacing:263.392000pt;}
.ws122{word-spacing:289.702933pt;}
.ws11b{word-spacing:295.158933pt;}
.ws80{word-spacing:380.640000pt;}
.ws7d{word-spacing:711.680000pt;}
._2d{margin-left:-968.789333pt;}
._14{margin-left:-274.208000pt;}
._2a{margin-left:-199.637333pt;}
._29{margin-left:-187.733333pt;}
._2c{margin-left:-175.914667pt;}
._1a{margin-left:-156.832000pt;}
._13{margin-left:-154.912000pt;}
._21{margin-left:-143.485616pt;}
._22{margin-left:-142.240000pt;}
._17{margin-left:-139.242667pt;}
._23{margin-left:-135.584000pt;}
._39{margin-left:-17.322667pt;}
._36{margin-left:-16.384000pt;}
._37{margin-left:-15.018667pt;}
._32{margin-left:-13.525333pt;}
._33{margin-left:-12.245333pt;}
._28{margin-left:-11.192533pt;}
._1f{margin-left:-10.026667pt;}
._7{margin-left:-8.811733pt;}
._34{margin-left:-7.594667pt;}
._9{margin-left:-6.507733pt;}
._6{margin-left:-5.577600pt;}
._3{margin-left:-4.379733pt;}
._0{margin-left:-3.200000pt;}
._b{margin-left:-2.240000pt;}
._1{margin-left:-1.280000pt;}
._2{width:1.089067pt;}
._8{width:1.981616pt;}
._5{width:3.177600pt;}
._2e{width:4.609067pt;}
._a{width:5.696000pt;}
._27{width:8.354667pt;}
._31{width:9.736000pt;}
._35{width:11.448533pt;}
._38{width:12.501333pt;}
._30{width:13.568000pt;}
._2f{width:14.933333pt;}
._18{width:34.432000pt;}
._1e{width:39.872000pt;}
._19{width:42.656000pt;}
._3c{width:46.340800pt;}
._3e{width:48.683200pt;}
._16{width:49.952000pt;}
._4f{width:54.003733pt;}
._4a{width:54.904533pt;}
._1c{width:56.416000pt;}
._41{width:82.603200pt;}
._1d{width:84.640000pt;}
._4e{width:94.116267pt;}
._40{width:99.029867pt;}
._4d{width:101.453867pt;}
._3b{width:111.185067pt;}
._26{width:119.088000pt;}
._3f{width:121.646400pt;}
._4b{width:126.979733pt;}
._4c{width:128.570133pt;}
._45{width:131.451200pt;}
._43{width:138.112533pt;}
._42{width:142.948267pt;}
._44{width:147.547733pt;}
._47{width:148.532267pt;}
._25{width:150.192000pt;}
._49{width:158.678933pt;}
._20{width:159.776000pt;}
._12{width:167.493333pt;}
._50{width:168.882133pt;}
._48{width:170.413867pt;}
._46{width:180.561067pt;}
._3d{width:253.635200pt;}
._2b{width:278.613333pt;}
._24{width:322.437333pt;}
._e{width:389.338667pt;}
._1b{width:416.288000pt;}
._11{width:430.298667pt;}
._10{width:458.330667pt;}
._f{width:481.029333pt;}
._d{width:483.077333pt;}
._15{width:540.416000pt;}
._3a{width:546.456533pt;}
._c{width:1310.003200pt;}
._4{width:2339.164267pt;}
.fse{font-size:5.017280pt;}
.fs11{font-size:18.656000pt;}
.fs12{font-size:21.333333pt;}
.fs9{font-size:24.874667pt;}
.fs4{font-size:26.666667pt;}
.fs10{font-size:31.093333pt;}
.fs0{font-size:32.000000pt;}
.fs8{font-size:34.202667pt;}
.fs3{font-size:37.333333pt;}
.fsd{font-size:40.138240pt;}
.fs1{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fsc{font-size:56.152515pt;}
.fs7{font-size:58.666667pt;}
.fsf{font-size:60.207360pt;}
.fs2{font-size:64.000000pt;}
.fsb{font-size:74.666667pt;}
.fs6{font-size:128.000000pt;}
.y55{bottom:-14.987243pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:1.536542pt;}
.y164{bottom:4.014000pt;}
.y1db{bottom:4.015467pt;}
.y28a{bottom:5.018133pt;}
.y9{bottom:14.558000pt;}
.y8{bottom:26.558000pt;}
.y4{bottom:28.757333pt;}
.y58{bottom:33.853333pt;}
.y3{bottom:37.424000pt;}
.yf{bottom:42.555733pt;}
.y5a{bottom:42.987733pt;}
.y56{bottom:44.763600pt;}
.y2{bottom:46.090667pt;}
.y57{bottom:47.593867pt;}
.y1{bottom:54.757333pt;}
.yb{bottom:56.253467pt;}
.y5{bottom:67.163600pt;}
.ya{bottom:69.993867pt;}
.y50{bottom:71.119944pt;}
.y330{bottom:78.093467pt;}
.y334{bottom:83.426800pt;}
.y176{bottom:85.468667pt;}
.y12a{bottom:87.351467pt;}
.y341{bottom:93.167867pt;}
.y2a7{bottom:96.413467pt;}
.y21d{bottom:96.426667pt;}
.y22c{bottom:96.449467pt;}
.y12d{bottom:105.774667pt;}
.y125{bottom:106.186000pt;}
.y2e1{bottom:106.522933pt;}
.y323{bottom:106.533333pt;}
.y346{bottom:109.170667pt;}
.y2a6{bottom:115.080133pt;}
.ye1{bottom:115.093333pt;}
.y88{bottom:115.102800pt;}
.y22b{bottom:115.116133pt;}
.yb5{bottom:115.128667pt;}
.y43{bottom:118.381467pt;}
.y48{bottom:118.400000pt;}
.y345{bottom:119.837333pt;}
.y2e0{bottom:119.856267pt;}
.y322{bottom:119.907333pt;}
.y17b{bottom:120.591333pt;}
.y124{bottom:120.852667pt;}
.y15b{bottom:124.160667pt;}
.y344{bottom:130.504000pt;}
.y15a{bottom:130.560667pt;}
.y47{bottom:131.066667pt;}
.y2df{bottom:133.189600pt;}
.y321{bottom:133.281200pt;}
.y2a5{bottom:133.746800pt;}
.y21c{bottom:133.760000pt;}
.y87{bottom:133.769467pt;}
.y22a{bottom:133.782800pt;}
.yb4{bottom:133.795333pt;}
.y171{bottom:134.940667pt;}
.y170{bottom:134.972667pt;}
.y129{bottom:135.478000pt;}
.y123{bottom:135.519333pt;}
.y42{bottom:135.714800pt;}
.y159{bottom:136.960667pt;}
.y343{bottom:141.170667pt;}
.y163{bottom:143.252667pt;}
.y174{bottom:143.412667pt;}
.y46{bottom:143.733333pt;}
.y2de{bottom:146.522933pt;}
.y320{bottom:146.655067pt;}
.y165{bottom:148.484800pt;}
.y16b{bottom:148.492800pt;}
.yd9{bottom:150.042133pt;}
.y122{bottom:150.186000pt;}
.y342{bottom:151.837333pt;}
.y2a4{bottom:152.413467pt;}
.y21b{bottom:152.426667pt;}
.y86{bottom:152.436133pt;}
.y229{bottom:152.449467pt;}
.yb3{bottom:152.462000pt;}
.y41{bottom:153.048133pt;}
.y45{bottom:156.400000pt;}
.yd3{bottom:156.442133pt;}
.y2dd{bottom:159.856267pt;}
.y31f{bottom:160.028933pt;}
.y16a{bottom:161.452800pt;}
.yd8{bottom:162.842133pt;}
.y121{bottom:164.852667pt;}
.y166{bottom:167.372800pt;}
.y17d{bottom:168.859333pt;}
.y44{bottom:169.066667pt;}
.yd2{bottom:169.242133pt;}
.y173{bottom:169.268667pt;}
.y340{bottom:170.212000pt;}
.y40{bottom:170.381467pt;}
.y33b{bottom:170.732400pt;}
.y2a3{bottom:171.080133pt;}
.y21a{bottom:171.093333pt;}
.y85{bottom:171.102800pt;}
.y228{bottom:171.116133pt;}
.yb2{bottom:171.128667pt;}
.y162{bottom:173.180667pt;}
.y2dc{bottom:173.189600pt;}
.y31e{bottom:173.402933pt;}
.yd7{bottom:175.642133pt;}
.y17c{bottom:178.459333pt;}
.y128{bottom:179.478000pt;}
.y120{bottom:179.519333pt;}
.y2db{bottom:186.522933pt;}
.y31d{bottom:186.776800pt;}
.y3f{bottom:187.714800pt;}
.y347{bottom:188.973467pt;}
.y2a2{bottom:189.746800pt;}
.y259{bottom:189.760000pt;}
.y227{bottom:189.782800pt;}
.yb1{bottom:189.795333pt;}
.y33f{bottom:193.293467pt;}
.y11f{bottom:194.186000pt;}
.y172{bottom:195.156667pt;}
.y2da{bottom:199.856267pt;}
.y31c{bottom:200.150667pt;}
.y17f{bottom:201.082000pt;}
.y161{bottom:203.108667pt;}
.y180{bottom:203.746000pt;}
.y3e{bottom:205.048133pt;}
.y335{bottom:206.200267pt;}
.y2a1{bottom:208.413467pt;}
.y219{bottom:208.426667pt;}
.y84{bottom:208.436133pt;}
.y226{bottom:208.449467pt;}
.y11e{bottom:208.852667pt;}
.y17e{bottom:210.682000pt;}
.y15e{bottom:211.655333pt;}
.y2d9{bottom:213.189600pt;}
.y31b{bottom:213.524667pt;}
.y175{bottom:220.980667pt;}
.y3d{bottom:222.381467pt;}
.y127{bottom:223.478000pt;}
.y11d{bottom:223.484267pt;}
.y126{bottom:223.519333pt;}
.y2d8{bottom:226.522933pt;}
.y31a{bottom:226.898533pt;}
.y2a0{bottom:227.080133pt;}
.y218{bottom:227.093333pt;}
.y83{bottom:227.102800pt;}
.y225{bottom:227.116133pt;}
.yb0{bottom:227.128667pt;}
.y169{bottom:228.316800pt;}
.y160{bottom:233.036667pt;}
.y167{bottom:234.484800pt;}
.y183{bottom:237.738000pt;}
.y3c{bottom:239.714800pt;}
.y2d7{bottom:239.856267pt;}
.y319{bottom:240.272400pt;}
.yd6{bottom:241.607467pt;}
.y118{bottom:242.454133pt;}
.y29f{bottom:245.746800pt;}
.y217{bottom:245.760000pt;}
.y82{bottom:245.769467pt;}
.y224{bottom:245.782800pt;}
.yaf{bottom:245.795333pt;}
.y177{bottom:246.834000pt;}
.y336{bottom:252.581333pt;}
.y168{bottom:252.996800pt;}
.y2d6{bottom:253.189600pt;}
.y318{bottom:253.646267pt;}
.yd5{bottom:254.407467pt;}
.y3b{bottom:257.048133pt;}
.y117{bottom:257.120800pt;}
.y27f{bottom:260.671467pt;}
.y15f{bottom:262.964667pt;}
.y29e{bottom:264.413467pt;}
.y258{bottom:264.426667pt;}
.y81{bottom:264.436133pt;}
.y269{bottom:264.449467pt;}
.yae{bottom:264.462000pt;}
.y16f{bottom:264.850000pt;}
.y2d5{bottom:266.522933pt;}
.y317{bottom:267.020267pt;}
.yd4{bottom:267.207467pt;}
.y1df{bottom:271.375467pt;}
.y11c{bottom:271.746133pt;}
.y116{bottom:271.787467pt;}
.y178{bottom:272.690000pt;}
.y3a{bottom:274.381467pt;}
.y16e{bottom:274.450000pt;}
.y2d4{bottom:279.856267pt;}
.y316{bottom:280.394267pt;}
.y223{bottom:280.649467pt;}
.y29d{bottom:283.080133pt;}
.y216{bottom:283.093333pt;}
.y80{bottom:283.102800pt;}
.y268{bottom:283.116133pt;}
.yad{bottom:283.128667pt;}
.y115{bottom:286.454133pt;}
.y39{bottom:291.714800pt;}
.y15d{bottom:292.888667pt;}
.y2d3{bottom:293.189600pt;}
.y315{bottom:293.768000pt;}
.y12e{bottom:295.719333pt;}
.y16d{bottom:296.850000pt;}
.y179{bottom:298.546000pt;}
.y222{bottom:299.316133pt;}
.y114{bottom:301.120800pt;}
.y182{bottom:301.138000pt;}
.y29c{bottom:301.746800pt;}
.y215{bottom:301.760000pt;}
.y7f{bottom:301.769467pt;}
.y267{bottom:301.782800pt;}
.yac{bottom:301.795333pt;}
.y16c{bottom:306.450000pt;}
.y2d2{bottom:306.522933pt;}
.y314{bottom:307.142000pt;}
.y26e{bottom:307.240800pt;}
.y38{bottom:309.048133pt;}
.y181{bottom:310.738000pt;}
.y11b{bottom:315.746133pt;}
.y113{bottom:315.787467pt;}
.y221{bottom:317.982800pt;}
.y2d1{bottom:319.856267pt;}
.y29b{bottom:320.413467pt;}
.y214{bottom:320.426667pt;}
.y7e{bottom:320.436133pt;}
.y266{bottom:320.449467pt;}
.yab{bottom:320.462000pt;}
.y313{bottom:320.515867pt;}
.y15c{bottom:322.816667pt;}
.y17a{bottom:324.402000pt;}
.ye0{bottom:327.119467pt;}
.y112{bottom:330.454133pt;}
.y2d0{bottom:333.189600pt;}
.ydc{bottom:333.519733pt;}
.y312{bottom:333.889867pt;}
.y220{bottom:336.649467pt;}
.y29a{bottom:339.080133pt;}
.y213{bottom:339.093333pt;}
.y7d{bottom:339.102800pt;}
.y265{bottom:339.116133pt;}
.yaa{bottom:339.128667pt;}
.ydf{bottom:339.919467pt;}
.y1af{bottom:344.139333pt;}
.y111{bottom:345.120800pt;}
.ydb{bottom:346.319733pt;}
.y2cf{bottom:346.522933pt;}
.y311{bottom:347.263733pt;}
.y1f1{bottom:348.299467pt;}
.y37{bottom:349.714800pt;}
.yde{bottom:352.719467pt;}
.y21f{bottom:355.316133pt;}
.y299{bottom:357.746800pt;}
.y212{bottom:357.760000pt;}
.y7c{bottom:357.769467pt;}
.y264{bottom:357.782800pt;}
.ya9{bottom:357.795333pt;}
.yda{bottom:359.119733pt;}
.y11a{bottom:359.746133pt;}
.y110{bottom:359.752400pt;}
.y119{bottom:359.787467pt;}
.y2ce{bottom:359.856267pt;}
.y310{bottom:360.637600pt;}
.ydd{bottom:365.519467pt;}
.y36{bottom:367.048133pt;}
.y337{bottom:368.534133pt;}
.y52{bottom:372.082551pt;}
.y2cd{bottom:373.189600pt;}
.y21e{bottom:373.982800pt;}
.y30f{bottom:374.011467pt;}
.y298{bottom:376.413467pt;}
.y211{bottom:376.426667pt;}
.y7b{bottom:376.436133pt;}
.y263{bottom:376.449467pt;}
.ya8{bottom:376.462000pt;}
.y153{bottom:377.278000pt;}
.y10c{bottom:378.722133pt;}
.y35{bottom:384.381467pt;}
.y2cc{bottom:386.522933pt;}
.y138{bottom:387.146000pt;}
.y30e{bottom:387.385467pt;}
.y150{bottom:391.750636pt;}
.y152{bottom:391.752094pt;}
.y149{bottom:391.781157pt;}
.y10b{bottom:393.388800pt;}
.y297{bottom:395.080133pt;}
.y257{bottom:395.093333pt;}
.y7a{bottom:395.102800pt;}
.ya7{bottom:395.128667pt;}
.y2cb{bottom:399.856267pt;}
.y30d{bottom:400.759333pt;}
.y14f{bottom:401.349679pt;}
.y151{bottom:401.351148pt;}
.y148{bottom:401.381190pt;}
.y12c{bottom:401.495333pt;}
.y12b{bottom:401.527333pt;}
.y34{bottom:401.714800pt;}
.y10f{bottom:408.014133pt;}
.y10a{bottom:408.055467pt;}
.y146{bottom:409.636741pt;}
.y131{bottom:409.963333pt;}
.y262{bottom:411.316133pt;}
.y2ca{bottom:413.189600pt;}
.y296{bottom:413.746800pt;}
.y256{bottom:413.760000pt;}
.ya6{bottom:413.795333pt;}
.y30c{bottom:414.133200pt;}
.y14a{bottom:415.501292pt;}
.y210{bottom:418.418133pt;}
.y33{bottom:419.048133pt;}
.y109{bottom:422.722133pt;}
.y14d{bottom:424.590269pt;}
.y2c9{bottom:426.522933pt;}
.y30b{bottom:427.507200pt;}
.yd1{bottom:428.119200pt;}
.y261{bottom:429.982800pt;}
.y20f{bottom:430.418133pt;}
.y295{bottom:432.413467pt;}
.y255{bottom:432.426667pt;}
.y79{bottom:432.436133pt;}
.ya5{bottom:432.462000pt;}
.y14c{bottom:433.375739pt;}
.y13a{bottom:435.414000pt;}
.y130{bottom:435.819333pt;}
.y32{bottom:436.381467pt;}
.y108{bottom:437.388800pt;}
.y147{bottom:438.732667pt;}
.y2c8{bottom:439.856267pt;}
.y30a{bottom:440.881067pt;}
.yd0{bottom:440.919200pt;}
.y20e{bottom:442.418133pt;}
.y139{bottom:445.014000pt;}
.y260{bottom:448.649467pt;}
.y278{bottom:449.111600pt;}
.y280{bottom:449.115600pt;}
.y294{bottom:451.080133pt;}
.y254{bottom:451.093333pt;}
.y78{bottom:451.102800pt;}
.ya4{bottom:451.128667pt;}
.y10e{bottom:452.014133pt;}
.y107{bottom:452.055467pt;}
.y2c7{bottom:453.189600pt;}
.y31{bottom:453.714800pt;}
.y309{bottom:454.254933pt;}
.y20d{bottom:454.418133pt;}
.y291{bottom:457.432133pt;}
.y133{bottom:457.798000pt;}
.y12f{bottom:461.707333pt;}
.y20c{bottom:466.418133pt;}
.y2c6{bottom:466.522933pt;}
.y106{bottom:466.722133pt;}
.y25f{bottom:467.316133pt;}
.y308{bottom:467.628933pt;}
.y13c{bottom:467.636667pt;}
.y145{bottom:467.828667pt;}
.y338{bottom:468.117067pt;}
.y290{bottom:469.432133pt;}
.y293{bottom:469.746800pt;}
.y253{bottom:469.760000pt;}
.y77{bottom:469.769467pt;}
.ya3{bottom:469.795333pt;}
.y13d{bottom:470.300800pt;}
.y30{bottom:471.048133pt;}
.y154{bottom:475.302000pt;}
.y13b{bottom:477.236667pt;}
.y2c5{bottom:479.856267pt;}
.y307{bottom:481.002800pt;}
.y103{bottom:481.353733pt;}
.y105{bottom:481.388800pt;}
.y28f{bottom:481.432133pt;}
.y1da{bottom:484.829333pt;}
.y21{bottom:485.056000pt;}
.y25e{bottom:485.982800pt;}
.y132{bottom:487.539333pt;}
.y20b{bottom:488.094800pt;}
.y1f8{bottom:488.310267pt;}
.y2f{bottom:488.381467pt;}
.y292{bottom:488.413467pt;}
.y252{bottom:488.426667pt;}
.y76{bottom:488.436133pt;}
.ya2{bottom:488.462000pt;}
.y2c4{bottom:493.189600pt;}
.y28e{bottom:493.432133pt;}
.y306{bottom:494.376667pt;}
.y10d{bottom:496.014133pt;}
.y102{bottom:496.020400pt;}
.y104{bottom:496.055467pt;}
.y144{bottom:496.924667pt;}
.y20{bottom:497.722667pt;}
.y1d9{bottom:503.258848pt;}
.y140{bottom:504.292667pt;}
.y25d{bottom:504.649467pt;}
.y28d{bottom:505.432133pt;}
.y2e{bottom:505.714800pt;}
.y2c3{bottom:506.522933pt;}
.ycd{bottom:507.080133pt;}
.y251{bottom:507.093333pt;}
.y75{bottom:507.102800pt;}
.ya1{bottom:507.128667pt;}
.y305{bottom:507.750667pt;}
.y1f{bottom:510.389333pt;}
.y134{bottom:513.388667pt;}
.yfd{bottom:514.990267pt;}
.y14b{bottom:516.327212pt;}
.y2c2{bottom:519.856267pt;}
.y304{bottom:521.124533pt;}
.y1c0{bottom:521.472726pt;}
.y1d8{bottom:521.483031pt;}
.y2d{bottom:523.048133pt;}
.y1e{bottom:523.056000pt;}
.y25c{bottom:523.316133pt;}
.y26d{bottom:523.624000pt;}
.y1c4{bottom:524.560800pt;}
.ycc{bottom:525.746800pt;}
.y250{bottom:525.760000pt;}
.y74{bottom:525.769467pt;}
.ya0{bottom:525.795333pt;}
.y143{bottom:526.020667pt;}
.y158{bottom:526.754000pt;}
.y339{bottom:528.139600pt;}
.yfc{bottom:529.656933pt;}
.y1bf{bottom:531.488396pt;}
.y1d7{bottom:531.498970pt;}
.y2c1{bottom:533.189600pt;}
.y303{bottom:534.498400pt;}
.y1d{bottom:535.722667pt;}
.y157{bottom:536.354000pt;}
.y135{bottom:539.244667pt;}
.y2c{bottom:540.381467pt;}
.y1be{bottom:541.496396pt;}
.y1d6{bottom:541.515031pt;}
.y25b{bottom:541.982800pt;}
.y1dc{bottom:543.842133pt;}
.y101{bottom:544.282267pt;}
.yfb{bottom:544.323600pt;}
.ycb{bottom:544.413467pt;}
.y24f{bottom:544.426667pt;}
.y73{bottom:544.436133pt;}
.y9f{bottom:544.462000pt;}
.y2c0{bottom:546.522933pt;}
.y28b{bottom:547.631467pt;}
.y302{bottom:547.872400pt;}
.y1c{bottom:548.389333pt;}
.y1bd{bottom:551.512396pt;}
.y1d5{bottom:551.530928pt;}
.y142{bottom:555.116667pt;}
.y156{bottom:557.420667pt;}
.y2b{bottom:557.714800pt;}
.y53{bottom:558.364123pt;}
.yfa{bottom:558.990267pt;}
.y289{bottom:559.810133pt;}
.y2bf{bottom:559.856267pt;}
.y25a{bottom:560.649467pt;}
.y301{bottom:561.246267pt;}
.y1bc{bottom:561.528396pt;}
.y1d4{bottom:561.546968pt;}
.yca{bottom:563.080133pt;}
.y24e{bottom:563.093333pt;}
.y72{bottom:563.102800pt;}
.y9e{bottom:563.128667pt;}
.y1b{bottom:564.608000pt;}
.y136{bottom:565.100667pt;}
.y155{bottom:567.020667pt;}
.y13f{bottom:567.692667pt;}
.y1bb{bottom:571.544396pt;}
.y1d3{bottom:571.554931pt;}
.y2be{bottom:573.189600pt;}
.yf9{bottom:573.656933pt;}
.y300{bottom:574.620133pt;}
.y2a{bottom:575.048133pt;}
.y13e{bottom:577.292667pt;}
.y14e{bottom:578.590722pt;}
.y1ba{bottom:581.560396pt;}
.y1d2{bottom:581.571032pt;}
.yc9{bottom:581.746800pt;}
.y71{bottom:581.769467pt;}
.y9d{bottom:581.795333pt;}
.y1a{bottom:583.056000pt;}
.y141{bottom:584.212667pt;}
.y2bd{bottom:586.522933pt;}
.y288{bottom:587.906133pt;}
.y2ff{bottom:587.994000pt;}
.y100{bottom:588.282267pt;}
.yf8{bottom:588.323600pt;}
.y331{bottom:589.526400pt;}
.y137{bottom:590.956667pt;}
.y1b9{bottom:591.576470pt;}
.y1d1{bottom:591.587031pt;}
.y29{bottom:592.381467pt;}
.y1ae{bottom:592.907333pt;}
.y284{bottom:594.196800pt;}
.y2bc{bottom:599.856267pt;}
.yc8{bottom:600.413467pt;}
.y70{bottom:600.436133pt;}
.y9c{bottom:600.462000pt;}
.y2fe{bottom:601.368000pt;}
.y1b8{bottom:601.584618pt;}
.y1d0{bottom:601.597519pt;}
.y19{bottom:601.722667pt;}
.y373{bottom:602.504133pt;}
.yf7{bottom:602.990267pt;}
.y363{bottom:603.436133pt;}
.y28{bottom:609.714800pt;}
.y1b7{bottom:611.600618pt;}
.y1cf{bottom:611.611077pt;}
.y285{bottom:611.970133pt;}
.y2bb{bottom:613.189600pt;}
.y2fd{bottom:614.741867pt;}
.y1c3{bottom:615.227467pt;}
.y372{bottom:615.837467pt;}
.y287{bottom:616.002133pt;}
.y24d{bottom:616.500533pt;}
.y362{bottom:616.769467pt;}
.yf6{bottom:617.656933pt;}
.yc7{bottom:619.080133pt;}
.y6f{bottom:619.102800pt;}
.y9b{bottom:619.128667pt;}
.y18{bottom:620.389333pt;}
.y1b6{bottom:621.616544pt;}
.y1ce{bottom:621.627028pt;}
.y18d{bottom:625.112667pt;}
.y2ba{bottom:626.522933pt;}
.y27{bottom:627.048133pt;}
.y2fc{bottom:628.115867pt;}
.y371{bottom:629.170800pt;}
.y361{bottom:630.102800pt;}
.y1b5{bottom:631.632544pt;}
.y1cd{bottom:631.642928pt;}
.yff{bottom:632.282267pt;}
.yf5{bottom:632.288533pt;}
.yfe{bottom:632.323600pt;}
.y1c8{bottom:634.148933pt;}
.y1a1{bottom:634.812667pt;}
.y18c{bottom:635.246000pt;}
.y248{bottom:635.335067pt;}
.yc6{bottom:637.746800pt;}
.y6e{bottom:637.769467pt;}
.y9a{bottom:637.795333pt;}
.y17{bottom:639.056000pt;}
.y2b9{bottom:639.856267pt;}
.y2fb{bottom:641.489733pt;}
.y1b4{bottom:641.648544pt;}
.y1cc{bottom:641.651079pt;}
.y370{bottom:642.504133pt;}
.y360{bottom:643.436133pt;}
.y1c7{bottom:643.748933pt;}
.y286{bottom:644.098133pt;}
.y26{bottom:644.381467pt;}
.y1a0{bottom:644.946000pt;}
.y18b{bottom:649.729025pt;}
.y186{bottom:649.758619pt;}
.y247{bottom:650.001733pt;}
.yf0{bottom:651.258267pt;}
.y1b3{bottom:651.664544pt;}
.y1cb{bottom:651.666972pt;}
.y2b8{bottom:653.189600pt;}
.y1c6{bottom:653.348933pt;}
.y2fa{bottom:654.863600pt;}
.y36f{bottom:655.837467pt;}
.yc5{bottom:656.413467pt;}
.y6d{bottom:656.436133pt;}
.y99{bottom:656.462000pt;}
.y35f{bottom:656.769467pt;}
.y16{bottom:657.722667pt;}
.y18a{bottom:659.327205pt;}
.y185{bottom:659.358511pt;}
.y19f{bottom:659.498000pt;}
.y1b2{bottom:661.680544pt;}
.y1ca{bottom:661.682931pt;}
.y25{bottom:661.714800pt;}
.y1c5{bottom:662.948933pt;}
.y24c{bottom:664.627067pt;}
.y246{bottom:664.668400pt;}
.yef{bottom:665.924933pt;}
.y2b7{bottom:666.522933pt;}
.y184{bottom:667.614000pt;}
.y19e{bottom:667.946000pt;}
.y2f9{bottom:668.237467pt;}
.y36e{bottom:669.170800pt;}
.y1c2{bottom:669.404933pt;}
.y35e{bottom:670.102800pt;}
.y1c9{bottom:671.691179pt;}
.y1b1{bottom:671.696544pt;}
.y283{bottom:672.179467pt;}
.y187{bottom:673.478704pt;}
.yc4{bottom:675.080133pt;}
.y6c{bottom:675.102800pt;}
.y98{bottom:675.128667pt;}
.y15{bottom:676.389333pt;}
.y24{bottom:679.048133pt;}
.y245{bottom:679.335067pt;}
.y2b6{bottom:679.856267pt;}
.y1a8{bottom:680.178000pt;}
.yf4{bottom:680.550267pt;}
.yee{bottom:680.591600pt;}
.y2f8{bottom:681.611467pt;}
.y1c1{bottom:681.673254pt;}
.y1b0{bottom:681.704800pt;}
.y36d{bottom:682.504133pt;}
.y35d{bottom:683.436133pt;}
.y1a2{bottom:686.874000pt;}
.y33a{bottom:690.473467pt;}
.y2b5{bottom:693.189600pt;}
.yc3{bottom:693.746800pt;}
.y6b{bottom:693.769467pt;}
.y97{bottom:693.795333pt;}
.y244{bottom:694.001733pt;}
.y2f7{bottom:694.985333pt;}
.y14{bottom:695.056000pt;}
.yed{bottom:695.258267pt;}
.y36c{bottom:695.837467pt;}
.y23{bottom:696.381467pt;}
.y35c{bottom:696.769467pt;}
.y282{bottom:700.275467pt;}
.y193{bottom:701.265467pt;}
.y20a{bottom:701.570133pt;}
.y19c{bottom:702.948400pt;}
.y19d{bottom:703.532667pt;}
.y2b4{bottom:706.522933pt;}
.y188{bottom:707.327948pt;}
.y2f6{bottom:708.359200pt;}
.y24b{bottom:708.627067pt;}
.y243{bottom:708.668400pt;}
.y36b{bottom:709.170800pt;}
.yec{bottom:709.924933pt;}
.y35b{bottom:710.102800pt;}
.yc2{bottom:712.413467pt;}
.y6a{bottom:712.436133pt;}
.y96{bottom:712.462000pt;}
.y22{bottom:713.714800pt;}
.y13{bottom:713.722667pt;}
.y2b3{bottom:719.856267pt;}
.y2f5{bottom:721.733200pt;}
.y36a{bottom:722.504133pt;}
.y242{bottom:723.335067pt;}
.y35a{bottom:723.436133pt;}
.yf3{bottom:724.550267pt;}
.yeb{bottom:724.591600pt;}
.y281{bottom:728.371467pt;}
.y28c{bottom:728.603467pt;}
.y18e{bottom:730.000667pt;}
.yc1{bottom:731.080133pt;}
.y69{bottom:731.102800pt;}
.y95{bottom:731.128667pt;}
.y2b2{bottom:733.189600pt;}
.y1f0{bottom:734.790267pt;}
.y192{bottom:734.921467pt;}
.y2f4{bottom:735.107067pt;}
.y1a3{bottom:735.538000pt;}
.y369{bottom:735.837467pt;}
.y359{bottom:736.769467pt;}
.y19b{bottom:737.948400pt;}
.y241{bottom:738.001733pt;}
.yea{bottom:739.258267pt;}
.y33d{bottom:740.947067pt;}
.y1e6{bottom:741.856800pt;}
.y2b1{bottom:746.522933pt;}
.y2f3{bottom:748.480933pt;}
.y368{bottom:749.170800pt;}
.y276{bottom:749.308800pt;}
.ycf{bottom:749.746800pt;}
.y68{bottom:749.769467pt;}
.y94{bottom:749.795333pt;}
.y358{bottom:750.102800pt;}
.y203{bottom:750.692800pt;}
.y1ab{bottom:751.012400pt;}
.y24a{bottom:752.627067pt;}
.y240{bottom:752.633333pt;}
.y249{bottom:752.668400pt;}
.ye9{bottom:753.924933pt;}
.y1de{bottom:756.206133pt;}
.y1dd{bottom:756.238133pt;}
.y1f2{bottom:757.092800pt;}
.y2b0{bottom:759.856267pt;}
.y7{bottom:761.533333pt;}
.y1ac{bottom:761.806667pt;}
.y2f2{bottom:761.854933pt;}
.y367{bottom:762.504133pt;}
.y1ad{bottom:763.164933pt;}
.y357{bottom:763.436133pt;}
.y1e2{bottom:764.670000pt;}
.y1f3{bottom:764.902133pt;}
.y275{bottom:765.308800pt;}
.yc0{bottom:768.413467pt;}
.y67{bottom:768.436133pt;}
.y93{bottom:768.462000pt;}
.yf2{bottom:768.550267pt;}
.ye8{bottom:768.556533pt;}
.y191{bottom:768.577467pt;}
.yf1{bottom:768.591600pt;}
.y23b{bottom:771.603067pt;}
.y1ff{bottom:772.900133pt;}
.y19a{bottom:772.940400pt;}
.y2af{bottom:773.189600pt;}
.y2f1{bottom:775.228800pt;}
.y366{bottom:775.837467pt;}
.y1e8{bottom:776.124800pt;}
.y356{bottom:776.769467pt;}
.y202{bottom:777.492133pt;}
.y1e3{bottom:777.826133pt;}
.y197{bottom:779.294400pt;}
.y200{bottom:779.732133pt;}
.y27e{bottom:784.296800pt;}
.y277{bottom:784.298133pt;}
.y274{bottom:784.311067pt;}
.y1fe{bottom:784.316133pt;}
.y1e7{bottom:785.724800pt;}
.y23a{bottom:786.269733pt;}
.y2ae{bottom:786.522933pt;}
.ye7{bottom:786.593067pt;}
.ybf{bottom:787.080133pt;}
.y66{bottom:787.102800pt;}
.y1aa{bottom:788.265733pt;}
.y2f0{bottom:788.602667pt;}
.y196{bottom:788.894400pt;}
.y365{bottom:789.170800pt;}
.y355{bottom:790.102800pt;}
.y201{bottom:791.324133pt;}
.y332{bottom:791.420533pt;}
.y273{bottom:794.721733pt;}
.y1fd{bottom:795.980133pt;}
.y1a9{bottom:797.865733pt;}
.y2ad{bottom:799.856267pt;}
.y1fb{bottom:800.396133pt;}
.y23f{bottom:800.895067pt;}
.y239{bottom:800.936400pt;}
.y2ef{bottom:801.976533pt;}
.y190{bottom:802.233467pt;}
.y364{bottom:802.504133pt;}
.y354{bottom:803.436133pt;}
.y1ea{bottom:804.347467pt;}
.ybe{bottom:805.746800pt;}
.y65{bottom:805.769467pt;}
.y92{bottom:805.795333pt;}
.y1eb{bottom:807.011600pt;}
.ye6{bottom:807.296133pt;}
.y199{bottom:807.932400pt;}
.y189{bottom:808.568591pt;}
.y1fc{bottom:809.396133pt;}
.y1f4{bottom:809.774133pt;}
.y2ac{bottom:813.189600pt;}
.y1e9{bottom:813.947467pt;}
.y195{bottom:813.962400pt;}
.y2ee{bottom:815.350533pt;}
.y238{bottom:815.603067pt;}
.y32e{bottom:815.837467pt;}
.y353{bottom:816.769467pt;}
.y1e1{bottom:817.286000pt;}
.y272{bottom:823.105733pt;}
.y194{bottom:823.562400pt;}
.ybd{bottom:824.413467pt;}
.y12{bottom:824.424000pt;}
.y64{bottom:824.436133pt;}
.y91{bottom:824.462000pt;}
.y2ed{bottom:828.724400pt;}
.y32d{bottom:829.170800pt;}
.y352{bottom:830.102800pt;}
.y237{bottom:830.269733pt;}
.y27c{bottom:830.864800pt;}
.y1a4{bottom:831.450000pt;}
.y1e4{bottom:832.951627pt;}
.y1ef{bottom:835.888800pt;}
.y18f{bottom:835.889467pt;}
.y33c{bottom:839.165867pt;}
.y1a5{bottom:839.186000pt;}
.y2ec{bottom:842.098267pt;}
.y32c{bottom:842.504133pt;}
.y198{bottom:842.924400pt;}
.ybc{bottom:843.080133pt;}
.y63{bottom:843.102800pt;}
.y90{bottom:843.128667pt;}
.y351{bottom:843.436133pt;}
.y23e{bottom:844.895067pt;}
.y236{bottom:844.936400pt;}
.y1a7{bottom:845.482000pt;}
.y2ab{bottom:848.436133pt;}
.y27d{bottom:848.638133pt;}
.y271{bottom:851.489733pt;}
.y1a6{bottom:853.650000pt;}
.ye4{bottom:853.746800pt;}
.y26f{bottom:854.194667pt;}
.y1f5{bottom:854.646133pt;}
.y2eb{bottom:855.472267pt;}
.y32b{bottom:855.837467pt;}
.y350{bottom:856.769467pt;}
.y235{bottom:859.603067pt;}
.ybb{bottom:861.746800pt;}
.y11{bottom:861.757333pt;}
.y62{bottom:861.769467pt;}
.y8f{bottom:861.795333pt;}
.y2aa{bottom:867.102800pt;}
.y2ea{bottom:868.846133pt;}
.y32a{bottom:869.170800pt;}
.y1e0{bottom:869.926000pt;}
.y34f{bottom:870.102800pt;}
.y206{bottom:871.535467pt;}
.ye3{bottom:872.413467pt;}
.y234{bottom:874.269733pt;}
.y1fa{bottom:878.316133pt;}
.y270{bottom:879.873733pt;}
.yce{bottom:880.413467pt;}
.y61{bottom:880.436133pt;}
.y8e{bottom:880.462000pt;}
.y2e9{bottom:882.220000pt;}
.y207{bottom:882.330933pt;}
.y329{bottom:882.504133pt;}
.y34e{bottom:883.436133pt;}
.y2a9{bottom:885.769467pt;}
.y333{bottom:886.911067pt;}
.y23d{bottom:888.895067pt;}
.y233{bottom:888.901333pt;}
.y23c{bottom:888.936400pt;}
.ye2{bottom:891.080133pt;}
.y2e8{bottom:895.593867pt;}
.y328{bottom:895.837467pt;}
.y34d{bottom:896.769467pt;}
.y1ee{bottom:897.671733pt;}
.yba{bottom:899.080133pt;}
.y10{bottom:899.090667pt;}
.y60{bottom:899.102800pt;}
.y8d{bottom:899.128667pt;}
.y1f6{bottom:899.526133pt;}
.y2a8{bottom:904.436133pt;}
.y231{bottom:907.871200pt;}
.y26c{bottom:908.260400pt;}
.y27b{bottom:908.269733pt;}
.y2e7{bottom:908.967867pt;}
.y327{bottom:909.170800pt;}
.ye5{bottom:909.746800pt;}
.y34c{bottom:910.102800pt;}
.y208{bottom:917.035600pt;}
.y205{bottom:917.038933pt;}
.yb9{bottom:917.746800pt;}
.y5f{bottom:917.769467pt;}
.y8c{bottom:917.795333pt;}
.y2e6{bottom:922.341733pt;}
.y1ed{bottom:922.404133pt;}
.y1e5{bottom:922.504133pt;}
.y230{bottom:922.537867pt;}
.y34b{bottom:923.436133pt;}
.y33e{bottom:925.107200pt;}
.y209{bottom:927.827600pt;}
.y204{bottom:927.830933pt;}
.y1ec{bottom:932.004133pt;}
.yc{bottom:934.987733pt;}
.y2e5{bottom:935.715600pt;}
.y1f9{bottom:935.788133pt;}
.y326{bottom:935.837467pt;}
.yb8{bottom:936.413467pt;}
.y5e{bottom:936.436133pt;}
.y8b{bottom:936.462000pt;}
.y26b{bottom:936.644400pt;}
.y27a{bottom:936.653733pt;}
.y34a{bottom:936.769467pt;}
.y22f{bottom:937.169467pt;}
.y232{bottom:937.204533pt;}
.ye{bottom:938.926000pt;}
.y1f7{bottom:944.398133pt;}
.y2e4{bottom:949.089600pt;}
.y325{bottom:949.170800pt;}
.y349{bottom:950.102800pt;}
.y51{bottom:952.140756pt;}
.yb7{bottom:955.080133pt;}
.y5d{bottom:955.102800pt;}
.y8a{bottom:955.128667pt;}
.y22e{bottom:955.205867pt;}
.y4f{bottom:961.237333pt;}
.y2e3{bottom:962.463467pt;}
.y324{bottom:962.504133pt;}
.y348{bottom:963.436133pt;}
.y279{bottom:965.037733pt;}
.y26a{bottom:965.039067pt;}
.yd{bottom:968.653467pt;}
.yb6{bottom:973.746800pt;}
.y32f{bottom:973.760000pt;}
.y5c{bottom:973.769467pt;}
.y89{bottom:973.795333pt;}
.y4e{bottom:974.570667pt;}
.y2e2{bottom:975.837467pt;}
.y22d{bottom:975.909067pt;}
.y6{bottom:984.706800pt;}
.y4d{bottom:987.904000pt;}
.y4c{bottom:1001.237333pt;}
.y59{bottom:1007.760133pt;}
.y5b{bottom:1007.763467pt;}
.y4b{bottom:1014.570667pt;}
.y4a{bottom:1027.904000pt;}
.y49{bottom:1041.237333pt;}
.h17{height:5.232866pt;}
.h22{height:13.591187pt;}
.h23{height:15.541667pt;}
.hd{height:18.656000pt;}
.h6{height:20.000000pt;}
.h21{height:22.906250pt;}
.h1{height:23.296000pt;}
.h1f{height:23.312500pt;}
.ha{height:24.000000pt;}
.h9{height:24.960000pt;}
.h5{height:28.000000pt;}
.h12{height:29.610667pt;}
.h1d{height:31.062500pt;}
.h2{height:32.000000pt;}
.h2c{height:32.139733pt;}
.h1e{height:32.140267pt;}
.he{height:32.864000pt;}
.h4{height:33.006667pt;}
.h19{height:33.280000pt;}
.h10{height:33.312000pt;}
.h2a{height:35.593067pt;}
.h2d{height:35.593600pt;}
.h2b{height:35.733333pt;}
.hf{height:36.000000pt;}
.h1a{height:37.013333pt;}
.h24{height:37.392500pt;}
.h28{height:38.828125pt;}
.h29{height:39.338240pt;}
.h1c{height:39.338773pt;}
.h1b{height:39.339307pt;}
.h8{height:40.000000pt;}
.h16{height:41.862930pt;}
.hc{height:45.188000pt;}
.h25{height:46.593750pt;}
.h2e{height:48.000000pt;}
.h3{height:49.920000pt;}
.h11{height:56.000000pt;}
.h14{height:58.565318pt;}
.h18{height:62.794395pt;}
.h7{height:76.537067pt;}
.hb{height:96.000000pt;}
.h27{height:462.844000pt;}
.h26{height:502.037333pt;}
.h20{height:776.893333pt;}
.h13{height:984.879521pt;}
.h15{height:1055.999465pt;}
.h0{height:1056.000000pt;}
.w1{width:449.333333pt;}
.w5{width:567.853333pt;}
.w4{width:568.744000pt;}
.w6{width:609.306667pt;}
.w2{width:696.380091pt;}
.w3{width:746.671610pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7d{left:1.878133pt;}
.xd{left:3.555997pt;}
.xb{left:7.097753pt;}
.x62{left:9.152800pt;}
.xab{left:11.481467pt;}
.xc{left:17.764411pt;}
.x9{left:34.666667pt;}
.x12{left:71.800000pt;}
.x31{left:77.466667pt;}
.xb8{left:80.090933pt;}
.xdd{left:85.133333pt;}
.x13{left:90.697600pt;}
.xaa{left:92.236000pt;}
.x3{left:94.466667pt;}
.xa7{left:100.133333pt;}
.xd4{left:105.503067pt;}
.x7{left:109.266667pt;}
.xa{left:112.747176pt;}
.xb9{left:115.460800pt;}
.x10{left:119.800000pt;}
.xa8{left:127.954400pt;}
.x98{left:129.756000pt;}
.xa9{left:133.885067pt;}
.x36{left:134.961333pt;}
.x7e{left:137.605733pt;}
.xac{left:139.817333pt;}
.x73{left:148.334933pt;}
.x4b{left:149.823200pt;}
.x71{left:154.008800pt;}
.x3f{left:156.452800pt;}
.x72{left:158.456800pt;}
.x40{left:160.903710pt;}
.x97{left:161.898667pt;}
.x74{left:162.907200pt;}
.xd5{left:165.104533pt;}
.x99{left:167.560800pt;}
.x67{left:172.901600pt;}
.x9a{left:177.144800pt;}
.x7c{left:178.879467pt;}
.xd6{left:179.807600pt;}
.x4c{left:184.879467pt;}
.x42{left:185.848007pt;}
.x41{left:187.847847pt;}
.x61{left:192.681600pt;}
.x43{left:193.959612pt;}
.x77{left:194.897467pt;}
.x96{left:196.732667pt;}
.x9b{left:199.768800pt;}
.x26{left:201.609333pt;}
.x4a{left:205.377200pt;}
.xa0{left:207.956267pt;}
.xd7{left:209.140933pt;}
.xa1{left:210.921600pt;}
.x27{left:217.321333pt;}
.xd8{left:223.844133pt;}
.xba{left:224.867067pt;}
.x78{left:226.049467pt;}
.x60{left:227.473600pt;}
.x9d{left:229.192800pt;}
.x75{left:231.179333pt;}
.x63{left:232.396800pt;}
.xa2{left:234.654933pt;}
.x9c{left:237.112800pt;}
.x7b{left:238.233467pt;}
.x32{left:239.900000pt;}
.x76{left:251.627333pt;}
.x45{left:252.615460pt;}
.xbb{left:254.236800pt;}
.xa3{left:255.422933pt;}
.x79{left:257.785467pt;}
.x8b{left:260.707867pt;}
.x9e{left:261.856800pt;}
.xa5{left:267.875867pt;}
.xbc{left:268.903467pt;}
.x1e{left:270.134800pt;}
.x8c{left:271.265200pt;}
.x47{left:274.624008pt;}
.x1f{left:278.433467pt;}
.x46{left:279.772894pt;}
.x82{left:282.222702pt;}
.xbd{left:283.570133pt;}
.x80{left:286.669367pt;}
.xa6{left:288.679867pt;}
.x7a{left:289.985467pt;}
.x81{left:291.118368pt;}
.x2{left:294.866667pt;}
.x83{left:297.567871pt;}
.x7f{left:302.013200pt;}
.xad{left:302.993600pt;}
.x48{left:305.343848pt;}
.xb7{left:306.382933pt;}
.x64{left:307.524533pt;}
.x44{left:309.157931pt;}
.xb4{left:310.488400pt;}
.xa4{left:312.177200pt;}
.xb5{left:314.620267pt;}
.x65{left:318.635200pt;}
.xb6{left:320.550933pt;}
.x8a{left:323.291888pt;}
.x66{left:324.412533pt;}
.x29{left:326.209333pt;}
.xbe{left:327.606667pt;}
.x84{left:329.237201pt;}
.x2a{left:331.542667pt;}
.x9f{left:332.856800pt;}
.x28{left:335.094667pt;}
.x89{left:338.123721pt;}
.x20{left:339.542667pt;}
.x21{left:341.334667pt;}
.x2b{left:342.508000pt;}
.x22{left:344.588000pt;}
.x1{left:350.990400pt;}
.xbf{left:356.940000pt;}
.x49{left:362.112008pt;}
.x85{left:365.400027pt;}
.xc0{left:371.606667pt;}
.xc1{left:386.309733pt;}
.x1a{left:393.238667pt;}
.x1b{left:400.652000pt;}
.x33{left:402.333333pt;}
.x14{left:406.133333pt;}
.x8f{left:411.729200pt;}
.xaf{left:413.494933pt;}
.xc2{left:416.577733pt;}
.x15{left:425.030933pt;}
.x19{left:428.800000pt;}
.xc6{left:430.311067pt;}
.x8e{left:431.537200pt;}
.xd9{left:432.916400pt;}
.xae{left:437.732400pt;}
.x88{left:443.411867pt;}
.x37{left:445.507200pt;}
.xdb{left:446.649733pt;}
.x2c{left:447.840000pt;}
.xb0{left:449.594933pt;}
.xb1{left:450.533600pt;}
.x1d{left:452.281333pt;}
.x6f{left:453.971200pt;}
.x5a{left:457.057867pt;}
.x70{left:458.419200pt;}
.xc7{left:459.644400pt;}
.xc3{left:460.542667pt;}
.x1c{left:461.764000pt;}
.x68{left:462.869867pt;}
.x90{left:464.601200pt;}
.x94{left:467.213200pt;}
.x3d{left:474.295200pt;}
.xc4{left:475.209333pt;}
.xda{left:476.916400pt;}
.x4d{left:478.025867pt;}
.x5b{left:480.664533pt;}
.xc8{left:488.977733pt;}
.xc5{left:489.876000pt;}
.x86{left:491.981200pt;}
.x35{left:493.589867pt;}
.x87{left:494.869200pt;}
.x6d{left:497.859200pt;}
.x52{left:499.348533pt;}
.x53{left:503.796533pt;}
.x69{left:505.101769pt;}
.x8d{left:507.089200pt;}
.x23{left:512.805333pt;}
.x24{left:518.426667pt;}
.x25{left:522.874667pt;}
.xdc{left:524.263200pt;}
.x34{left:527.901867pt;}
.x38{left:533.789867pt;}
.x6b{left:535.190005pt;}
.x54{left:538.863200pt;}
.xb2{left:540.951067pt;}
.x55{left:543.311200pt;}
.xc9{left:548.614267pt;}
.xe{left:550.613057pt;}
.x6e{left:553.571200pt;}
.x5c{left:557.368533pt;}
.x56{left:558.617867pt;}
.x2f{left:560.862667pt;}
.x57{left:563.065867pt;}
.x6{left:565.130400pt;}
.x5{left:571.035867pt;}
.x2e{left:574.505333pt;}
.xcb{left:577.050667pt;}
.x2d{left:578.057333pt;}
.x6a{left:579.773205pt;}
.xf{left:582.809333pt;}
.x30{left:586.953333pt;}
.xcc{left:591.717333pt;}
.xca{left:592.650667pt;}
.xb3{left:594.477733pt;}
.x91{left:595.871867pt;}
.x5d{left:597.000533pt;}
.x58{left:598.057867pt;}
.x92{left:599.649200pt;}
.x59{left:602.580533pt;}
.x39{left:605.049867pt;}
.xcd{left:606.384000pt;}
.x93{left:608.021200pt;}
.x95{left:616.581200pt;}
.x50{left:617.807200pt;}
.x5e{left:619.008533pt;}
.x3a{left:620.027200pt;}
.xce{left:621.050667pt;}
.x51{left:622.329867pt;}
.x3b{left:625.805867pt;}
.x3c{left:628.399200pt;}
.xcf{left:635.717333pt;}
.x3e{left:636.959200pt;}
.x5f{left:638.392533pt;}
.x4f{left:642.084533pt;}
.x6c{left:644.350165pt;}
.xd0{left:650.384000pt;}
.x16{left:655.248533pt;}
.x4e{left:657.316533pt;}
.x4{left:662.297200pt;}
.xd1{left:666.020533pt;}
.x11{left:666.931467pt;}
.xd2{left:680.687200pt;}
.x18{left:686.616667pt;}
.xd3{left:695.353867pt;}
.x17{left:722.129733pt;}
.x8{left:840.000000pt;}
}




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