
    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_913a7ae2e7877f74bede7dc5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d4cfcf01f002d3c096f0585a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_55eac52eea28efaed580be36.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002441;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_48b19c2cddbebe87ac4f49c5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_65bab7b26a287026e70665d5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_d404e2c36a1664b4d8ad064f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.831055;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c44b3e795e675feb3bc4bbc8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.835938;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_25127074442534ed79be35bf.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.002441;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_42d2b15935c62c6b72a68d64.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8bca0ba5810c35a860266e81.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.800000;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_15275329af0a51a8eb3d8667.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_8136e744886576e5a27916f1.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_ea1420d1c0ccee938d87939c.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_7a70ae1ecb21f984ee462402.woff2')format("woff");}.fff{font-family:fff;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f4673f8aefb12a4e16cb6f4f.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_9dfc4c80c81f059dba62cd02.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_418d216b6de08ff7c3226293.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_50328f2058b3866721dd7621.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_b67820e0534fee36a2b4dc76.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_182b6daf11c66cd503083fd8.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_9c8248c381c93309cccb2b62.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_8c21e35453525eb05958948d.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_40623b0d8c3acb29d21127e9.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_fb85439150ea58f6dd05e506.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.002441;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_48b01f9a435a048bd796fe88.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.284180;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_4a419b6bd2a099e12d5d72e0.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_3c51df77bb77cd58d25967ff.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_d82fb5873e92344cdea6ae65.woff2')format("woff");}.ff1d{font-family:ff1d;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-102.240000px;}
.v7{vertical-align:-52.907400px;}
.v8{vertical-align:-38.734920px;}
.v3{vertical-align:-20.880000px;}
.v6{vertical-align:-6.559560px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:14.400000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:24.120000px;}
.vb{vertical-align:35.640000px;}
.v5{vertical-align:39.960000px;}
.va{vertical-align:71.280000px;}
.ls87{letter-spacing:-1.188000px;}
.ls17{letter-spacing:-0.576000px;}
.ls1a{letter-spacing:-0.479520px;}
.ls64{letter-spacing:-0.432000px;}
.ls56{letter-spacing:-0.420840px;}
.ls4{letter-spacing:-0.360000px;}
.ls53{letter-spacing:-0.300600px;}
.ls16{letter-spacing:-0.288000px;}
.ls55{letter-spacing:-0.240480px;}
.ls7{letter-spacing:-0.234360px;}
.ls5d{letter-spacing:-0.216000px;}
.ls47{letter-spacing:-0.180360px;}
.ls5{letter-spacing:-0.180000px;}
.ls88{letter-spacing:-0.162000px;}
.ls18{letter-spacing:-0.144000px;}
.ls80{letter-spacing:-0.143640px;}
.ls36{letter-spacing:-0.120240px;}
.ls82{letter-spacing:-0.108000px;}
.ls73{letter-spacing:-0.096120px;}
.ls81{letter-spacing:-0.095760px;}
.ls1c{letter-spacing:-0.083880px;}
.ls8{letter-spacing:-0.078120px;}
.ls27{letter-spacing:-0.072000px;}
.ls54{letter-spacing:-0.060120px;}
.ls46{letter-spacing:-0.038880px;}
.ls2{letter-spacing:0.000000px;}
.ls84{letter-spacing:0.018000px;}
.ls2d{letter-spacing:0.018720px;}
.ls83{letter-spacing:0.054000px;}
.ls2f{letter-spacing:0.060120px;}
.lsc{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.078120px;}
.ls19{letter-spacing:0.083880px;}
.ls3{letter-spacing:0.090000px;}
.ls7c{letter-spacing:0.095760px;}
.ls26{letter-spacing:0.096120px;}
.ls89{letter-spacing:0.108000px;}
.ls4c{letter-spacing:0.120240px;}
.ls51{letter-spacing:0.129600px;}
.ls22{letter-spacing:0.136800px;}
.ls4f{letter-spacing:0.140040px;}
.lsf{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.156240px;}
.ls1b{letter-spacing:0.167760px;}
.ls0{letter-spacing:0.180000px;}
.ls2e{letter-spacing:0.180360px;}
.ls25{letter-spacing:0.273600px;}
.ls3a{letter-spacing:0.288000px;}
.ls75{letter-spacing:0.482400px;}
.ls2a{letter-spacing:0.504000px;}
.ls5b{letter-spacing:0.864000px;}
.ls3c{letter-spacing:1.224000px;}
.ls10{letter-spacing:1.800000px;}
.ls11{letter-spacing:1.821600px;}
.ls2c{letter-spacing:1.944000px;}
.ls62{letter-spacing:2.304000px;}
.ls72{letter-spacing:2.649600px;}
.ls42{letter-spacing:2.664000px;}
.ls8a{letter-spacing:3.024000px;}
.ls66{letter-spacing:3.063600px;}
.ls5a{letter-spacing:3.384000px;}
.ls32{letter-spacing:3.744000px;}
.ls63{letter-spacing:4.104000px;}
.ls79{letter-spacing:4.456800px;}
.ls4b{letter-spacing:4.464000px;}
.ls38{letter-spacing:4.809600px;}
.ls30{letter-spacing:4.824000px;}
.ls76{letter-spacing:5.184000px;}
.ls35{letter-spacing:5.904000px;}
.ls5f{letter-spacing:6.249600px;}
.ls74{letter-spacing:6.256800px;}
.lsa{letter-spacing:6.480000px;}
.ls7a{letter-spacing:6.984000px;}
.ls7f{letter-spacing:7.182000px;}
.ls15{letter-spacing:7.200000px;}
.lsb{letter-spacing:7.560000px;}
.ls3e{letter-spacing:8.064000px;}
.ls14{letter-spacing:8.287200px;}
.ls41{letter-spacing:8.424000px;}
.ls12{letter-spacing:8.647200px;}
.ls68{letter-spacing:8.769600px;}
.ls67{letter-spacing:8.784000px;}
.ls60{letter-spacing:9.009360px;}
.ls61{letter-spacing:9.136800px;}
.ls45{letter-spacing:9.144000px;}
.ls3d{letter-spacing:9.482400px;}
.ls49{letter-spacing:9.496800px;}
.ls43{letter-spacing:9.504000px;}
.ls20{letter-spacing:9.856800px;}
.lse{letter-spacing:10.087200px;}
.ls48{letter-spacing:10.224000px;}
.ls23{letter-spacing:10.584000px;}
.ls7e{letter-spacing:10.916640px;}
.ls3f{letter-spacing:11.289600px;}
.ls77{letter-spacing:11.664000px;}
.ls7d{letter-spacing:11.835720px;}
.ls71{letter-spacing:12.024000px;}
.ls13{letter-spacing:12.240000px;}
.ls28{letter-spacing:12.384000px;}
.ls4a{letter-spacing:13.104000px;}
.ls2b{letter-spacing:14.176800px;}
.ls9{letter-spacing:14.400000px;}
.ls39{letter-spacing:14.544000px;}
.ls1d{letter-spacing:14.904000px;}
.ls21{letter-spacing:15.264000px;}
.ls78{letter-spacing:15.984000px;}
.ls69{letter-spacing:16.329600px;}
.ls6a{letter-spacing:16.344000px;}
.ls6b{letter-spacing:16.704000px;}
.ls6d{letter-spacing:17.064000px;}
.ls58{letter-spacing:17.424000px;}
.ls34{letter-spacing:18.129600px;}
.ls33{letter-spacing:18.136800px;}
.ls29{letter-spacing:18.504000px;}
.ls3b{letter-spacing:19.576800px;}
.ls6c{letter-spacing:19.584000px;}
.ls65{letter-spacing:20.289600px;}
.ls1e{letter-spacing:20.304000px;}
.ls5e{letter-spacing:21.024000px;}
.ls31{letter-spacing:21.384000px;}
.ls70{letter-spacing:21.744000px;}
.ls6e{letter-spacing:22.464000px;}
.ls6f{letter-spacing:22.824000px;}
.ls37{letter-spacing:23.544000px;}
.ls8c{letter-spacing:25.344000px;}
.ls44{letter-spacing:26.424000px;}
.ls1f{letter-spacing:27.864000px;}
.lsd{letter-spacing:28.800000px;}
.ls5c{letter-spacing:33.976800px;}
.ls52{letter-spacing:45.144000px;}
.ls40{letter-spacing:47.656800px;}
.ls24{letter-spacing:48.744000px;}
.ls8b{letter-spacing:63.864000px;}
.ls59{letter-spacing:87.984000px;}
.ls86{letter-spacing:110.970000px;}
.ls85{letter-spacing:158.490000px;}
.ls57{letter-spacing:192.384000px;}
.ls4e{letter-spacing:214.748640px;}
.ls4d{letter-spacing:354.828240px;}
.ls7b{letter-spacing:448.638120px;}
.ls50{letter-spacing:458.835840px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf0{word-spacing:-26.817480px;}
.wsba{word-spacing:-26.721360px;}
.ws38{word-spacing:-26.613360px;}
.ws1{word-spacing:-22.500000px;}
.ws0{word-spacing:-22.320000px;}
.wsc0{word-spacing:-20.304000px;}
.ws54{word-spacing:-20.160000px;}
.ws55{word-spacing:-20.016000px;}
.ws3f{word-spacing:-19.944000px;}
.ws85{word-spacing:-19.872000px;}
.ws2{word-spacing:-19.686240px;}
.ws3a{word-spacing:-19.040760px;}
.ws39{word-spacing:-18.956880px;}
.ws3b{word-spacing:-18.873000px;}
.wsf{word-spacing:-18.144000px;}
.wsd{word-spacing:-18.072000px;}
.wse{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.424000px;}
.wsb3{word-spacing:-16.893720px;}
.ws94{word-spacing:-16.833600px;}
.ws57{word-spacing:-16.773480px;}
.ws58{word-spacing:-16.713360px;}
.ws97{word-spacing:-16.653240px;}
.ws95{word-spacing:-16.593120px;}
.ws98{word-spacing:-16.472880px;}
.ws96{word-spacing:-16.412760px;}
.ws99{word-spacing:-16.292520px;}
.wsdc{word-spacing:-15.876000px;}
.wsc8{word-spacing:-15.150240px;}
.wsea{word-spacing:-15.030000px;}
.wsdb{word-spacing:-14.904000px;}
.wsdd{word-spacing:-14.850000px;}
.wseb{word-spacing:-14.849640px;}
.wsc7{word-spacing:-14.789520px;}
.wsda{word-spacing:-13.824000px;}
.ws8d{word-spacing:-13.310640px;}
.ws56{word-spacing:-10.808640px;}
.ws8e{word-spacing:-10.769760px;}
.wscb{word-spacing:-10.677240px;}
.wse9{word-spacing:-9.720000px;}
.wsd1{word-spacing:-4.464000px;}
.wsd0{word-spacing:-4.104000px;}
.ws18{word-spacing:-3.672000px;}
.ws17{word-spacing:-3.600000px;}
.ws33{word-spacing:-3.384000px;}
.ws2e{word-spacing:-3.312000px;}
.ws2f{word-spacing:-3.240000px;}
.ws1f{word-spacing:-2.592000px;}
.wsd4{word-spacing:-2.304000px;}
.ws1c{word-spacing:-2.232000px;}
.ws26{word-spacing:-2.160000px;}
.ws1d{word-spacing:-1.800000px;}
.ws1e{word-spacing:-1.440000px;}
.wsec{word-spacing:-1.224000px;}
.wsbd{word-spacing:-0.864000px;}
.ws20{word-spacing:-0.792000px;}
.wsb{word-spacing:-0.624960px;}
.ws9d{word-spacing:-0.541080px;}
.ws37{word-spacing:-0.504000px;}
.ws19{word-spacing:-0.432000px;}
.wsee{word-spacing:-0.420840px;}
.wsbc{word-spacing:-0.384480px;}
.wsd9{word-spacing:-0.378000px;}
.wsd2{word-spacing:-0.360720px;}
.ws5{word-spacing:-0.360000px;}
.wsc1{word-spacing:-0.288000px;}
.ws40{word-spacing:-0.192240px;}
.ws67{word-spacing:-0.180360px;}
.ws8{word-spacing:-0.180000px;}
.ws9{word-spacing:-0.156240px;}
.ws22{word-spacing:-0.144000px;}
.ws9c{word-spacing:-0.120240px;}
.wse8{word-spacing:-0.108000px;}
.wscf{word-spacing:-0.096120px;}
.ws3d{word-spacing:-0.083880px;}
.ws15{word-spacing:-0.072000px;}
.ws6e{word-spacing:-0.060120px;}
.ws3{word-spacing:0.000000px;}
.ws46{word-spacing:0.072000px;}
.wsc{word-spacing:0.078120px;}
.ws3c{word-spacing:0.083880px;}
.ws4{word-spacing:0.090000px;}
.wsbb{word-spacing:0.096120px;}
.wse3{word-spacing:0.108000px;}
.ws6f{word-spacing:0.120240px;}
.wsd7{word-spacing:0.143640px;}
.ws68{word-spacing:0.144000px;}
.wsd8{word-spacing:0.162000px;}
.ws3e{word-spacing:0.167760px;}
.ws7{word-spacing:0.180000px;}
.ws93{word-spacing:0.180360px;}
.ws49{word-spacing:0.216000px;}
.wsa{word-spacing:0.234360px;}
.wsed{word-spacing:0.240480px;}
.wse4{word-spacing:0.270000px;}
.ws21{word-spacing:0.288000px;}
.wsb5{word-spacing:0.300600px;}
.ws6{word-spacing:0.360000px;}
.wsd3{word-spacing:0.420840px;}
.wsd5{word-spacing:0.430920px;}
.wsb2{word-spacing:0.432000px;}
.wsd6{word-spacing:0.478800px;}
.wse5{word-spacing:0.486000px;}
.ws45{word-spacing:0.576000px;}
.wse7{word-spacing:0.594000px;}
.wse2{word-spacing:0.864000px;}
.ws47{word-spacing:0.936000px;}
.wsc5{word-spacing:1.080000px;}
.wse1{word-spacing:1.188000px;}
.ws62{word-spacing:1.296000px;}
.ws89{word-spacing:1.368000px;}
.ws41{word-spacing:1.656000px;}
.wse6{word-spacing:1.674000px;}
.ws28{word-spacing:1.728000px;}
.ws27{word-spacing:1.800000px;}
.ws66{word-spacing:2.016000px;}
.ws1b{word-spacing:2.088000px;}
.wsc2{word-spacing:2.304000px;}
.ws7b{word-spacing:2.376000px;}
.ws87{word-spacing:2.736000px;}
.ws4f{word-spacing:3.096000px;}
.ws7e{word-spacing:3.456000px;}
.ws50{word-spacing:3.816000px;}
.ws4e{word-spacing:4.176000px;}
.ws86{word-spacing:4.536000px;}
.ws69{word-spacing:4.896000px;}
.ws92{word-spacing:5.256000px;}
.wsac{word-spacing:5.544000px;}
.ws6c{word-spacing:5.616000px;}
.ws13{word-spacing:5.976000px;}
.ws5b{word-spacing:6.336000px;}
.ws14{word-spacing:6.408000px;}
.wsc6{word-spacing:6.624000px;}
.ws48{word-spacing:6.696000px;}
.wsb4{word-spacing:6.768000px;}
.ws36{word-spacing:7.056000px;}
.ws35{word-spacing:7.200000px;}
.ws4b{word-spacing:7.416000px;}
.wsab{word-spacing:7.776000px;}
.ws1a{word-spacing:7.848000px;}
.ws30{word-spacing:8.136000px;}
.ws31{word-spacing:8.208000px;}
.ws32{word-spacing:8.280000px;}
.ws2b{word-spacing:8.496000px;}
.ws2a{word-spacing:8.568000px;}
.ws29{word-spacing:8.640000px;}
.ws7c{word-spacing:8.856000px;}
.ws81{word-spacing:9.216000px;}
.ws59{word-spacing:9.576000px;}
.ws4c{word-spacing:9.936000px;}
.ws25{word-spacing:10.008000px;}
.ws24{word-spacing:10.080000px;}
.ws51{word-spacing:10.296000px;}
.ws5c{word-spacing:10.656000px;}
.ws82{word-spacing:11.016000px;}
.ws65{word-spacing:11.376000px;}
.ws72{word-spacing:11.736000px;}
.ws2c{word-spacing:12.024000px;}
.ws4a{word-spacing:12.096000px;}
.ws2d{word-spacing:12.240000px;}
.ws5a{word-spacing:12.456000px;}
.ws12{word-spacing:12.528000px;}
.ws8b{word-spacing:12.816000px;}
.ws9b{word-spacing:13.176000px;}
.ws6a{word-spacing:13.536000px;}
.ws9a{word-spacing:13.896000px;}
.ws5f{word-spacing:14.256000px;}
.ws11{word-spacing:14.328000px;}
.wsb1{word-spacing:14.400000px;}
.ws42{word-spacing:14.616000px;}
.ws16{word-spacing:14.688000px;}
.ws4d{word-spacing:14.976000px;}
.wsaa{word-spacing:15.336000px;}
.wsa3{word-spacing:15.696000px;}
.ws34{word-spacing:16.200000px;}
.ws64{word-spacing:16.416000px;}
.ws7a{word-spacing:16.776000px;}
.ws6d{word-spacing:17.136000px;}
.ws6b{word-spacing:17.496000px;}
.ws7d{word-spacing:17.856000px;}
.ws71{word-spacing:18.216000px;}
.ws44{word-spacing:18.576000px;}
.ws5d{word-spacing:18.936000px;}
.wsa9{word-spacing:19.296000px;}
.ws88{word-spacing:19.656000px;}
.ws8f{word-spacing:20.016000px;}
.ws43{word-spacing:20.376000px;}
.ws8a{word-spacing:20.736000px;}
.wsaf{word-spacing:21.096000px;}
.ws70{word-spacing:21.456000px;}
.ws9e{word-spacing:21.816000px;}
.ws79{word-spacing:22.176000px;}
.ws63{word-spacing:22.536000px;}
.ws7f{word-spacing:23.256000px;}
.ws74{word-spacing:23.616000px;}
.ws90{word-spacing:23.976000px;}
.ws61{word-spacing:24.120000px;}
.ws60{word-spacing:24.336000px;}
.wsc4{word-spacing:25.416000px;}
.ws8c{word-spacing:26.136000px;}
.ws77{word-spacing:26.496000px;}
.ws83{word-spacing:27.216000px;}
.ws76{word-spacing:27.576000px;}
.wsa4{word-spacing:27.936000px;}
.ws23{word-spacing:28.728000px;}
.ws5e{word-spacing:30.456000px;}
.wsad{word-spacing:31.176000px;}
.wsa1{word-spacing:32.616000px;}
.ws75{word-spacing:33.696000px;}
.wsa6{word-spacing:33.840000px;}
.wsa5{word-spacing:34.056000px;}
.ws73{word-spacing:34.416000px;}
.ws80{word-spacing:34.776000px;}
.ws84{word-spacing:34.848000px;}
.ws52{word-spacing:35.136000px;}
.wsbe{word-spacing:36.576000px;}
.wsb8{word-spacing:37.656000px;}
.wsbf{word-spacing:38.016000px;}
.wsb0{word-spacing:38.736000px;}
.ws9f{word-spacing:39.456000px;}
.wsae{word-spacing:40.896000px;}
.wsef{word-spacing:42.336000px;}
.wsa7{word-spacing:43.416000px;}
.wsa0{word-spacing:45.216000px;}
.wsc3{word-spacing:47.016000px;}
.ws91{word-spacing:47.376000px;}
.wsb9{word-spacing:48.096000px;}
.ws53{word-spacing:48.816000px;}
.wsa8{word-spacing:50.256000px;}
.ws78{word-spacing:52.056000px;}
.wsa2{word-spacing:61.416000px;}
.wsc9{word-spacing:92.686104px;}
.wsb6{word-spacing:99.936000px;}
.wsb7{word-spacing:100.296000px;}
.wsca{word-spacing:142.672824px;}
.wscc{word-spacing:143.007984px;}
.wsce{word-spacing:161.352000px;}
.wscd{word-spacing:210.276000px;}
.wsde{word-spacing:342.214200px;}
.wsdf{word-spacing:355.806000px;}
.wse0{word-spacing:358.830000px;}
._b{margin-left:-16.710912px;}
._8{margin-left:-14.679000px;}
._6{margin-left:-13.253040px;}
._7{margin-left:-11.407680px;}
._c{margin-left:-8.700480px;}
._9{margin-left:-6.207120px;}
._1a{margin-left:-4.790952px;}
._5{margin-left:-3.744000px;}
._a{margin-left:-2.661120px;}
._0{margin-left:-1.449000px;}
._1{width:1.351476px;}
._11{width:3.184524px;}
._12{width:5.056524px;}
._f{width:6.624000px;}
._19{width:7.711200px;}
._3{width:9.576000px;}
._16{width:10.888524px;}
._4{width:12.312000px;}
._15{width:14.073048px;}
._d{width:15.856524px;}
._13{width:17.512524px;}
._10{width:18.825048px;}
._17{width:21.472524px;}
._21{width:25.072524px;}
._2{width:27.873000px;}
._14{width:31.408524px;}
._18{width:36.232524px;}
._e{width:64.008000px;}
._1b{width:153.800136px;}
._1c{width:199.332000px;}
._1e{width:205.200000px;}
._1d{width:211.212000px;}
._1f{width:376.363800px;}
._20{width:384.696000px;}
.fc3{color:transparent;}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:32.040000px;}
.fsa{font-size:38.880000px;}
.fsd{font-size:42.120000px;}
.fs8{font-size:47.880000px;}
.fsc{font-size:54.000000px;}
.fs9{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:78.120000px;}
.fs7{font-size:83.880000px;}
.fs1{font-size:90.000000px;}
.fs3{font-size:96.120000px;}
.fs0{font-size:108.000000px;}
.fs6{font-size:119.880000px;}
.y0{bottom:0.000000px;}
.y14b{bottom:5.040000px;}
.y157{bottom:5.130000px;}
.y2f6{bottom:5.310000px;}
.y2f2{bottom:5.400000px;}
.y2f4{bottom:5.490000px;}
.y2cd{bottom:5.850000px;}
.y2ca{bottom:5.940000px;}
.y2ce{bottom:6.030000px;}
.y2cb{bottom:6.120000px;}
.y279{bottom:7.560000px;}
.y27c{bottom:7.740000px;}
.y159{bottom:22.320000px;}
.y14d{bottom:24.030000px;}
.y2c7{bottom:25.740000px;}
.y2f1{bottom:41.130000px;}
.y306{bottom:41.220000px;}
.y15e{bottom:43.110000px;}
.y245{bottom:57.150000px;}
.y92{bottom:57.240000px;}
.y154{bottom:62.100000px;}
.y244{bottom:77.850000px;}
.y91{bottom:77.940000px;}
.ycb{bottom:109.791180px;}
.yb1{bottom:109.795680px;}
.y286{bottom:112.230000px;}
.y243{bottom:113.130000px;}
.y10a{bottom:113.850000px;}
.y18a{bottom:115.020000px;}
.y31b{bottom:123.300000px;}
.y90{bottom:124.830000px;}
.y2db{bottom:126.720000px;}
.yca{bottom:126.985500px;}
.y1a3{bottom:127.710000px;}
.y51{bottom:128.970000px;}
.y285{bottom:129.240000px;}
.y242{bottom:130.230000px;}
.y2b6{bottom:130.770000px;}
.yb0{bottom:132.210000px;}
.y109{bottom:137.610000px;}
.y31a{bottom:140.310000px;}
.yaf{bottom:144.265500px;}
.y16d{bottom:144.900000px;}
.y2b5{bottom:147.870000px;}
.yc9{bottom:149.490000px;}
.y50{bottom:149.670000px;}
.y8f{bottom:150.300000px;}
.y2da{bottom:150.570000px;}
.y20f{bottom:157.500000px;}
.y1a2{bottom:160.290000px;}
.y108{bottom:161.460000px;}
.y148{bottom:161.545680px;}
.yc8{bottom:161.550000px;}
.ye6{bottom:162.180000px;}
.y329{bottom:164.344800px;}
.yae{bottom:166.770000px;}
.y16c{bottom:169.200000px;}
.y4f{bottom:170.370000px;}
.y189{bottom:170.460000px;}
.y8e{bottom:174.150000px;}
.y2d9{bottom:174.330000px;}
.y1e8{bottom:178.735500px;}
.yb2{bottom:179.460000px;}
.y20e{bottom:181.260000px;}
.y1a1{bottom:182.790000px;}
.y147{bottom:183.960000px;}
.y107{bottom:185.220000px;}
.y327{bottom:185.338800px;}
.y16b{bottom:192.960000px;}
.y4e{bottom:194.040000px;}
.y188{bottom:195.930000px;}
.y149{bottom:196.650000px;}
.y8d{bottom:197.910000px;}
.y2d8{bottom:198.180000px;}
.y129{bottom:200.880000px;}
.y1e7{bottom:201.240000px;}
.ye5{bottom:202.765680px;}
.y31e{bottom:202.875300px;}
.y20d{bottom:205.110000px;}
.y1a0{bottom:205.200000px;}
.yc7{bottom:205.560000px;}
.y1b8{bottom:205.650000px;}
.yad{bottom:205.920000px;}
.y1d2{bottom:207.810000px;}
.y25{bottom:208.620000px;}
.y106{bottom:209.070000px;}
.y119{bottom:211.230000px;}
.y1fc{bottom:213.291180px;}
.y1e9{bottom:213.930000px;}
.y128{bottom:214.920000px;}
.y16a{bottom:216.810000px;}
.y4d{bottom:217.890000px;}
.y26a{bottom:219.330000px;}
.y187{bottom:219.780000px;}
.ye4{bottom:219.960000px;}
.y340{bottom:220.680000px;}
.y2d7{bottom:220.770000px;}
.yac{bottom:221.580000px;}
.y8c{bottom:221.760000px;}
.y328{bottom:222.659700px;}
.y146{bottom:224.280000px;}
.y31f{bottom:225.136800px;}
.yc6{bottom:226.260000px;}
.y19f{bottom:227.610000px;}
.y24{bottom:228.420000px;}
.y20c{bottom:228.870000px;}
.y1b7{bottom:229.410000px;}
.y1fb{bottom:230.485500px;}
.y1d1{bottom:231.660000px;}
.y105{bottom:232.830000px;}
.y118{bottom:235.080000px;}
.ye3{bottom:235.710000px;}
.y2d6{bottom:237.870000px;}
.y169{bottom:240.570000px;}
.y1e6{bottom:241.020000px;}
.y4c{bottom:241.650000px;}
.y269{bottom:243.180000px;}
.y186{bottom:243.540000px;}
.y33f{bottom:244.530000px;}
.y8b{bottom:245.520000px;}
.y320{bottom:247.398300px;}
.y337{bottom:247.680000px;}
.y23{bottom:249.399090px;}
.y145{bottom:249.750000px;}
.y19e{bottom:250.020000px;}
.yc5{bottom:251.730000px;}
.y20b{bottom:252.720000px;}
.y1fa{bottom:252.990000px;}
.y1b6{bottom:253.260000px;}
.y31d{bottom:254.963430px;}
.y1d0{bottom:255.420000px;}
.y104{bottom:256.680000px;}
.y117{bottom:258.840000px;}
.y2ee{bottom:261.765150px;}
.y168{bottom:264.420000px;}
.y1e5{bottom:264.780000px;}
.y4b{bottom:265.410000px;}
.y1fd{bottom:265.680000px;}
.y268{bottom:266.940000px;}
.y185{bottom:267.390000px;}
.y33e{bottom:268.290000px;}
.y8a{bottom:269.370000px;}
.y31c{bottom:269.638650px;}
.y321{bottom:269.659800px;}
.y336{bottom:271.530000px;}
.y22{bottom:271.800000px;}
.y19d{bottom:272.430000px;}
.y144{bottom:275.310000px;}
.y20a{bottom:275.315310px;}
.yc4{bottom:275.580000px;}
.y1b5{bottom:277.020000px;}
.y1cf{bottom:279.270000px;}
.y103{bottom:280.440000px;}
.y116{bottom:281.250000px;}
.y2ec{bottom:282.759150px;}
.y1e4{bottom:288.630000px;}
.y4a{bottom:289.260000px;}
.y167{bottom:289.890000px;}
.y267{bottom:290.790000px;}
.y322{bottom:291.921300px;}
.y33d{bottom:292.140000px;}
.y184{bottom:292.860000px;}
.y89{bottom:293.130000px;}
.y21{bottom:293.940000px;}
.y209{bottom:295.200000px;}
.y335{bottom:295.290000px;}
.y19c{bottom:298.080000px;}
.y2a7{bottom:298.530000px;}
.y143{bottom:299.070000px;}
.yc3{bottom:299.340000px;}
.y2e4{bottom:300.295650px;}
.y1b4{bottom:300.780000px;}
.y115{bottom:303.030000px;}
.y277{bottom:303.125490px;}
.y102{bottom:304.290000px;}
.y1f9{bottom:304.470000px;}
.y1ce{bottom:304.650000px;}
.y29b{bottom:307.530000px;}
.y208{bottom:312.210000px;}
.y1e3{bottom:312.390000px;}
.y49{bottom:313.020000px;}
.y323{bottom:314.182800px;}
.y266{bottom:314.550000px;}
.y20{bottom:314.640000px;}
.y166{bottom:315.450000px;}
.y33c{bottom:315.900000px;}
.y114{bottom:317.070000px;}
.y183{bottom:318.420000px;}
.y88{bottom:318.690000px;}
.y334{bottom:319.140000px;}
.y2a6{bottom:322.380000px;}
.y142{bottom:322.920000px;}
.yc2{bottom:323.190000px;}
.y19b{bottom:323.550000px;}
.y1b3{bottom:324.630000px;}
.y1cd{bottom:324.805500px;}
.y256{bottom:327.690000px;}
.y101{bottom:328.050000px;}
.y1f8{bottom:329.940000px;}
.y29a{bottom:331.290000px;}
.y1f{bottom:335.340000px;}
.y1e2{bottom:336.240000px;}
.y324{bottom:336.444300px;}
.y48{bottom:336.870000px;}
.y2e5{bottom:338.284650px;}
.y265{bottom:338.310000px;}
.y165{bottom:339.300000px;}
.y33b{bottom:339.840000px;}
.y276{bottom:340.020000px;}
.y1cc{bottom:342.090000px;}
.y182{bottom:342.180000px;}
.y333{bottom:342.900000px;}
.y87{bottom:344.160000px;}
.y2a5{bottom:346.140000px;}
.y2e1{bottom:346.379400px;}
.y141{bottom:346.680000px;}
.yc1{bottom:346.950000px;}
.y19a{bottom:347.400000px;}
.y1b2{bottom:348.390000px;}
.y255{bottom:351.540000px;}
.y1f7{bottom:351.720000px;}
.y100{bottom:351.900000px;}
.y299{bottom:355.140000px;}
.y1cb{bottom:356.040000px;}
.y1e{bottom:356.319540px;}
.y325{bottom:358.705800px;}
.y1e1{bottom:360.000000px;}
.y47{bottom:360.630000px;}
.y264{bottom:362.160000px;}
.y33a{bottom:362.340000px;}
.y241{bottom:362.610000px;}
.y164{bottom:363.060000px;}
.y181{bottom:366.030000px;}
.y332{bottom:366.750000px;}
.y1f6{bottom:367.380000px;}
.y86{bottom:369.720000px;}
.y2a4{bottom:369.990000px;}
.y140{bottom:370.530000px;}
.yc0{bottom:370.800000px;}
.y199{bottom:371.160000px;}
.y1b1{bottom:373.860000px;}
.y254{bottom:375.300000px;}
.yff{bottom:375.660000px;}
.y2e6{bottom:376.273650px;}
.y298{bottom:378.900000px;}
.y339{bottom:379.440000px;}
.y326{bottom:380.967300px;}
.y2ed{bottom:381.162000px;}
.y1d{bottom:383.310000px;}
.y1e0{bottom:383.850000px;}
.y46{bottom:384.480000px;}
.y263{bottom:384.750000px;}
.y240{bottom:386.370000px;}
.y163{bottom:386.910000px;}
.y180{bottom:389.790000px;}
.y331{bottom:390.510000px;}
.y2b4{bottom:393.390000px;}
.y85{bottom:393.480000px;}
.y2a3{bottom:393.750000px;}
.y13f{bottom:394.290000px;}
.y198{bottom:395.010000px;}
.ybf{bottom:396.270000px;}
.y253{bottom:399.150000px;}
.yfe{bottom:399.510000px;}
.y319{bottom:401.310000px;}
.y262{bottom:401.850000px;}
.y297{bottom:402.750000px;}
.y1c{bottom:406.522620px;}
.y1df{bottom:407.610000px;}
.y45{bottom:408.240000px;}
.y23f{bottom:410.220000px;}
.y162{bottom:410.670000px;}
.y17f{bottom:413.640000px;}
.y2e0{bottom:413.997930px;}
.y2e7{bottom:414.262650px;}
.y330{bottom:414.360000px;}
.y2e3{bottom:415.758480px;}
.y2b3{bottom:417.240000px;}
.y84{bottom:417.330000px;}
.y284{bottom:417.600000px;}
.y13e{bottom:418.140000px;}
.y197{bottom:418.770000px;}
.y318{bottom:419.220000px;}
.ybe{bottom:421.830000px;}
.y252{bottom:422.910000px;}
.yfd{bottom:423.270000px;}
.y296{bottom:426.510000px;}
.y2e2{bottom:430.433700px;}
.y44{bottom:432.090000px;}
.y161{bottom:433.080000px;}
.y1de{bottom:433.170000px;}
.y23e{bottom:433.980000px;}
.y1b{bottom:434.157120px;}
.y317{bottom:437.040000px;}
.y17e{bottom:437.400000px;}
.y32f{bottom:438.120000px;}
.y2b2{bottom:441.000000px;}
.y83{bottom:441.090000px;}
.y283{bottom:441.360000px;}
.y13d{bottom:441.900000px;}
.y196{bottom:442.620000px;}
.y251{bottom:445.590000px;}
.ybd{bottom:445.680000px;}
.yfc{bottom:447.120000px;}
.y295{bottom:449.190000px;}
.y2e8{bottom:452.251650px;}
.y160{bottom:454.860000px;}
.y43{bottom:455.850000px;}
.y1dd{bottom:456.930000px;}
.y23d{bottom:457.830000px;}
.y17d{bottom:461.250000px;}
.y1a{bottom:461.695500px;}
.y32e{bottom:461.970000px;}
.y250{bottom:462.600000px;}
.y2b1{bottom:463.680000px;}
.y282{bottom:465.210000px;}
.y13c{bottom:465.750000px;}
.y294{bottom:466.200000px;}
.y195{bottom:466.380000px;}
.y82{bottom:466.650000px;}
.ybc{bottom:469.440000px;}
.yfb{bottom:470.880000px;}
.y15d{bottom:471.240000px;}
.y316{bottom:472.770000px;}
.y2df{bottom:474.590070px;}
.y42{bottom:479.700000px;}
.y2b0{bottom:480.690000px;}
.y1dc{bottom:480.780000px;}
.y23c{bottom:481.590000px;}
.y32d{bottom:485.730000px;}
.y15c{bottom:486.625500px;}
.y66{bottom:486.720000px;}
.y27b{bottom:487.530000px;}
.y281{bottom:488.970000px;}
.y19{bottom:489.330000px;}
.y13b{bottom:489.510000px;}
.y127{bottom:489.690000px;}
.y194{bottom:490.230000px;}
.y2e9{bottom:490.240650px;}
.y81{bottom:490.500000px;}
.y315{bottom:490.590000px;}
.ybb{bottom:493.290000px;}
.yfa{bottom:494.730000px;}
.y15f{bottom:495.360000px;}
.y41{bottom:503.460000px;}
.y15b{bottom:503.910000px;}
.y1db{bottom:504.540000px;}
.y23b{bottom:505.440000px;}
.y314{bottom:508.410000px;}
.y32c{bottom:509.580000px;}
.y17c{bottom:510.570000px;}
.y280{bottom:511.560000px;}
.y13a{bottom:513.360000px;}
.y126{bottom:513.540000px;}
.y193{bottom:513.990000px;}
.y80{bottom:514.260000px;}
.y18{bottom:516.600000px;}
.yba{bottom:517.050000px;}
.y34b{bottom:517.410000px;}
.y2de{bottom:517.897530px;}
.yf9{bottom:518.490000px;}
.y65{bottom:518.580000px;}
.y275{bottom:521.640000px;}
.y313{bottom:526.320000px;}
.y40{bottom:527.310000px;}
.y2ea{bottom:528.229650px;}
.y27f{bottom:528.660000px;}
.y23a{bottom:529.200000px;}
.y1da{bottom:530.010000px;}
.y158{bottom:530.640000px;}
.y32b{bottom:532.170000px;}
.y17b{bottom:534.330000px;}
.y139{bottom:537.120000px;}
.y125{bottom:537.300000px;}
.y34a{bottom:537.385680px;}
.y192{bottom:537.840000px;}
.y7f{bottom:538.020000px;}
.y113{bottom:538.290000px;}
.yb9{bottom:540.900000px;}
.y2dd{bottom:541.071450px;}
.yf8{bottom:542.340000px;}
.y17{bottom:542.430000px;}
.y217{bottom:542.431890px;}
.y64{bottom:542.610000px;}
.y312{bottom:544.140000px;}
.y15a{bottom:544.410000px;}
.y207{bottom:548.820000px;}
.y32a{bottom:549.180000px;}
.y3f{bottom:551.070000px;}
.y1d9{bottom:551.875680px;}
.y239{bottom:553.050000px;}
.y349{bottom:554.580000px;}
.y17a{bottom:558.180000px;}
.y138{bottom:560.970000px;}
.y124{bottom:561.150000px;}
.y191{bottom:561.600000px;}
.y7e{bottom:561.870000px;}
.y311{bottom:562.050000px;}
.y112{bottom:562.140000px;}
.yab{bottom:563.310000px;}
.y216{bottom:564.026760px;}
.yb8{bottom:564.660000px;}
.y1b0{bottom:566.100000px;}
.y2eb{bottom:566.218650px;}
.yf7{bottom:567.810000px;}
.y16{bottom:568.530000px;}
.y1d8{bottom:569.070000px;}
.y153{bottom:569.340000px;}
.y206{bottom:572.670000px;}
.y2dc{bottom:572.911650px;}
.y63{bottom:574.468560px;}
.y3e{bottom:574.920000px;}
.y238{bottom:576.810000px;}
.y310{bottom:579.870000px;}
.y215{bottom:580.680000px;}
.y179{bottom:581.940000px;}
.y1d7{bottom:583.020000px;}
.y137{bottom:584.730000px;}
.y123{bottom:584.910000px;}
.y190{bottom:585.450000px;}
.y111{bottom:585.900000px;}
.ye2{bottom:586.440000px;}
.y2d5{bottom:586.620000px;}
.yaa{bottom:587.160000px;}
.y7d{bottom:587.430000px;}
.yb7{bottom:588.420000px;}
.y1af{bottom:589.950000px;}
.yf6{bottom:591.660000px;}
.y156{bottom:593.467110px;}
.y15{bottom:594.180000px;}
.y152{bottom:594.265680px;}
.y205{bottom:596.430000px;}
.y30f{bottom:597.690000px;}
.y3d{bottom:598.680000px;}
.y237{bottom:600.570000px;}
.y1ca{bottom:603.270000px;}
.y178{bottom:605.790000px;}
.y2d4{bottom:606.420000px;}
.y136{bottom:608.580000px;}
.y122{bottom:608.760000px;}
.y18f{bottom:609.210000px;}
.y62{bottom:609.572340px;}
.y110{bottom:609.750000px;}
.ye1{bottom:610.290000px;}
.ya9{bottom:610.920000px;}
.y151{bottom:611.460000px;}
.y155{bottom:612.450000px;}
.y7c{bottom:612.900000px;}
.y1ae{bottom:613.710000px;}
.yf5{bottom:615.420000px;}
.y30e{bottom:615.600000px;}
.y14{bottom:620.100000px;}
.y204{bottom:620.280000px;}
.y3c{bottom:622.530000px;}
.y236{bottom:624.420000px;}
.y2d3{bottom:626.220000px;}
.y1c9{bottom:627.120000px;}
.y121{bottom:629.550000px;}
.yb6{bottom:632.610000px;}
.y18e{bottom:633.060000px;}
.y30d{bottom:633.420000px;}
.y10f{bottom:633.510000px;}
.ye0{bottom:634.050000px;}
.ya8{bottom:634.770000px;}
.y1f5{bottom:634.950000px;}
.y7b{bottom:636.750000px;}
.y1ad{bottom:637.470000px;}
.yf4{bottom:639.270000px;}
.y203{bottom:644.040000px;}
.y61{bottom:644.760000px;}
.y13{bottom:646.110000px;}
.y3b{bottom:646.290000px;}
.y14f{bottom:647.730000px;}
.y235{bottom:648.090000px;}
.yb5{bottom:648.360000px;}
.y120{bottom:649.440000px;}
.y1c8{bottom:650.880000px;}
.y30c{bottom:651.240000px;}
.y261{bottom:651.870000px;}
.y18d{bottom:656.820000px;}
.y10e{bottom:657.360000px;}
.ya7{bottom:658.530000px;}
.y1f4{bottom:658.710000px;}
.ydf{bottom:659.610000px;}
.y7a{bottom:660.510000px;}
.y1ac{bottom:661.320000px;}
.y150{bottom:662.400000px;}
.yf3{bottom:663.030000px;}
.y11f{bottom:663.480000px;}
.y278{bottom:665.010000px;}
.y2d2{bottom:665.910000px;}
.y202{bottom:666.720000px;}
.y60{bottom:668.790000px;}
.y234{bottom:668.970000px;}
.y30b{bottom:669.150000px;}
.y27a{bottom:669.510000px;}
.y3a{bottom:670.140000px;}
.y12{bottom:671.760000px;}
.y1c7{bottom:674.730000px;}
.y260{bottom:675.720000px;}
.y177{bottom:678.870000px;}
.y10d{bottom:679.135680px;}
.y18c{bottom:680.670000px;}
.ya6{bottom:682.380000px;}
.y1f3{bottom:682.560000px;}
.y79{bottom:682.920000px;}
.yde{bottom:683.370000px;}
.y201{bottom:683.730000px;}
.y1ab{bottom:685.080000px;}
.yf2{bottom:685.530000px;}
.y2d1{bottom:685.800000px;}
.y30a{bottom:686.970000px;}
.y14c{bottom:688.140000px;}
.y233{bottom:692.730000px;}
.y39{bottom:693.900000px;}
.y10c{bottom:696.330000px;}
.y11{bottom:697.860000px;}
.y1c6{bottom:698.490000px;}
.y24f{bottom:699.210000px;}
.y25f{bottom:699.480000px;}
.y5f{bottom:700.648560px;}
.y14e{bottom:702.810000px;}
.y176{bottom:704.430000px;}
.y309{bottom:704.790000px;}
.y78{bottom:705.240000px;}
.y2d0{bottom:705.600000px;}
.ya5{bottom:706.140000px;}
.y1f2{bottom:706.320000px;}
.y135{bottom:707.220000px;}
.y274{bottom:707.310000px;}
.yf1{bottom:707.850000px;}
.ydd{bottom:708.930000px;}
.y10b{bottom:710.280000px;}
.y232{bottom:716.490000px;}
.y38{bottom:717.750000px;}
.y1c5{bottom:722.340000px;}
.y308{bottom:722.700000px;}
.y24e{bottom:723.060000px;}
.y25e{bottom:723.330000px;}
.y10{bottom:724.590000px;}
.y2cf{bottom:725.400000px;}
.y77{bottom:727.830000px;}
.y175{bottom:728.280000px;}
.y14a{bottom:730.080000px;}
.y134{bottom:730.980000px;}
.y273{bottom:731.070000px;}
.ya4{bottom:731.700000px;}
.y1f1{bottom:731.880000px;}
.y1aa{bottom:732.690000px;}
.yf0{bottom:733.410000px;}
.ydc{bottom:734.490000px;}
.y338{bottom:735.210000px;}
.y5e{bottom:735.752340px;}
.y221{bottom:736.200000px;}
.y231{bottom:740.340000px;}
.y305{bottom:741.240000px;}
.y37{bottom:741.510000px;}
.y2af{bottom:742.860000px;}
.y2cc{bottom:745.290000px;}
.y1c4{bottom:746.100000px;}
.y24d{bottom:746.820000px;}
.y25d{bottom:747.090000px;}
.y174{bottom:752.040000px;}
.y76{bottom:753.300000px;}
.y133{bottom:754.830000px;}
.y272{bottom:754.920000px;}
.ya3{bottom:755.460000px;}
.yf{bottom:755.640000px;}
.y1a9{bottom:756.540000px;}
.yef{bottom:757.260000px;}
.ydb{bottom:758.250000px;}
.y293{bottom:759.060000px;}
.y220{bottom:759.960000px;}
.y230{bottom:764.100000px;}
.y304{bottom:764.550000px;}
.y2c9{bottom:765.090000px;}
.y36{bottom:765.360000px;}
.y2ae{bottom:766.620000px;}
.y214{bottom:770.400000px;}
.y24c{bottom:770.670000px;}
.y5d{bottom:770.940000px;}
.y1c3{bottom:771.660000px;}
.y307{bottom:773.460000px;}
.y2a2{bottom:774.180000px;}
.y173{bottom:775.890000px;}
.y2b9{bottom:776.970000px;}
.y75{bottom:777.150000px;}
.y18b{bottom:777.600000px;}
.y132{bottom:778.590000px;}
.y271{bottom:778.680000px;}
.ya2{bottom:779.310000px;}
.y1f0{bottom:779.490000px;}
.yee{bottom:781.020000px;}
.y1a8{bottom:782.010000px;}
.yda{bottom:782.100000px;}
.y292{bottom:782.820000px;}
.y21f{bottom:783.810000px;}
.y2c6{bottom:785.700000px;}
.ye{bottom:786.690000px;}
.y22f{bottom:787.950000px;}
.y35{bottom:789.120000px;}
.y2ad{bottom:790.470000px;}
.y2c8{bottom:791.550000px;}
.y2b8{bottom:793.980000px;}
.y213{bottom:794.250000px;}
.y24b{bottom:794.430000px;}
.y25c{bottom:794.700000px;}
.y5c{bottom:794.970000px;}
.y1c2{bottom:795.420000px;}
.y2a1{bottom:798.030000px;}
.y74{bottom:800.910000px;}
.y172{bottom:801.360000px;}
.y2c5{bottom:801.540000px;}
.y303{bottom:801.900000px;}
.y270{bottom:802.530000px;}
.ya1{bottom:803.070000px;}
.y1ef{bottom:803.250000px;}
.y131{bottom:804.150000px;}
.yed{bottom:804.780000px;}
.yd9{bottom:805.860000px;}
.y291{bottom:806.580000px;}
.y1a7{bottom:807.570000px;}
.y22e{bottom:811.710000px;}
.y34{bottom:812.880000px;}
.y2ac{bottom:814.230000px;}
.yd{bottom:816.660000px;}
.y212{bottom:818.010000px;}
.y24a{bottom:818.280000px;}
.y25b{bottom:818.550000px;}
.y1c1{bottom:819.270000px;}
.y2a0{bottom:821.790000px;}
.y73{bottom:824.760000px;}
.y302{bottom:825.750000px;}
.y26f{bottom:826.290000px;}
.y5b{bottom:826.830000px;}
.ya0{bottom:826.920000px;}
.y1ee{bottom:827.100000px;}
.y130{bottom:827.910000px;}
.yec{bottom:828.630000px;}
.yd8{bottom:829.620000px;}
.y1d6{bottom:830.340000px;}
.y290{bottom:830.430000px;}
.y1a6{bottom:831.420000px;}
.y2c4{bottom:832.410000px;}
.y348{bottom:833.580000px;}
.y22d{bottom:835.560000px;}
.y33{bottom:836.730000px;}
.y2ab{bottom:838.080000px;}
.y211{bottom:840.605310px;}
.y249{bottom:842.040000px;}
.y25a{bottom:842.310000px;}
.yc{bottom:842.580000px;}
.y1c0{bottom:843.030000px;}
.y29f{bottom:845.640000px;}
.y301{bottom:849.510000px;}
.y26e{bottom:850.140000px;}
.y72{bottom:850.230000px;}
.y9f{bottom:850.680000px;}
.y5a{bottom:850.860000px;}
.yeb{bottom:852.390000px;}
.y1ed{bottom:852.570000px;}
.y12f{bottom:853.380000px;}
.yd7{bottom:853.470000px;}
.y1d5{bottom:854.190000px;}
.y1a5{bottom:855.180000px;}
.y2c3{bottom:856.260000px;}
.y347{bottom:857.340000px;}
.y22c{bottom:859.320000px;}
.y32{bottom:860.490000px;}
.y2aa{bottom:861.840000px;}
.y34d{bottom:865.710000px;}
.y248{bottom:865.890000px;}
.y259{bottom:866.160000px;}
.y1bf{bottom:866.880000px;}
.y29e{bottom:869.400000px;}
.y300{bottom:873.270000px;}
.y26d{bottom:873.900000px;}
.y1ec{bottom:874.357110px;}
.y9e{bottom:874.530000px;}
.y71{bottom:875.790000px;}
.yea{bottom:876.240000px;}
.yd6{bottom:877.230000px;}
.y210{bottom:877.500000px;}
.y1d4{bottom:877.950000px;}
.y28f{bottom:878.040000px;}
.y12e{bottom:879.030000px;}
.y2c2{bottom:880.020000px;}
.y346{bottom:881.100000px;}
.y59{bottom:882.635580px;}
.y22b{bottom:883.170000px;}
.y31{bottom:884.340000px;}
.y2a9{bottom:884.520000px;}
.yb{bottom:886.410000px;}
.y258{bottom:888.750000px;}
.y247{bottom:889.650000px;}
.y1be{bottom:890.640000px;}
.y29d{bottom:892.080000px;}
.y1eb{bottom:893.340000px;}
.y2ff{bottom:894.150000px;}
.y26c{bottom:896.580000px;}
.y9d{bottom:898.290000px;}
.y70{bottom:899.550000px;}
.yb4{bottom:900.000000px;}
.y2a8{bottom:901.530000px;}
.y1d3{bottom:901.800000px;}
.yd5{bottom:902.790000px;}
.y2c1{bottom:903.870000px;}
.y345{bottom:904.950000px;}
.y257{bottom:905.760000px;}
.y22a{bottom:906.930000px;}
.y34c{bottom:907.110000px;}
.y30{bottom:908.100000px;}
.y1ea{bottom:909.000000px;}
.y29c{bottom:909.090000px;}
.y2fe{bottom:909.810000px;}
.ya{bottom:912.330000px;}
.y26b{bottom:913.590000px;}
.y1bd{bottom:914.490000px;}
.y58{bottom:917.823240px;}
.y200{bottom:920.430000px;}
.y9c{bottom:922.140000px;}
.y6f{bottom:923.400000px;}
.y2fd{bottom:923.760000px;}
.yb3{bottom:923.850000px;}
.y11e{bottom:925.560000px;}
.y28e{bottom:925.650000px;}
.y12d{bottom:926.640000px;}
.y2c0{bottom:927.630000px;}
.yd4{bottom:928.350000px;}
.y344{bottom:928.710000px;}
.y246{bottom:929.340000px;}
.y229{bottom:930.780000px;}
.y2f{bottom:931.950000px;}
.y9{bottom:939.240000px;}
.y1bc{bottom:939.960000px;}
.y2fc{bottom:941.670000px;}
.y1ff{bottom:944.190000px;}
.y171{bottom:945.900000px;}
.y6e{bottom:947.160000px;}
.y9b{bottom:947.610000px;}
.y11d{bottom:949.410000px;}
.y12c{bottom:950.400000px;}
.y2bf{bottom:951.480000px;}
.y1a4{bottom:952.020000px;}
.y343{bottom:952.560000px;}
.y57{bottom:953.010900px;}
.yd3{bottom:953.820000px;}
.y228{bottom:954.540000px;}
.y2e{bottom:955.710000px;}
.y2fb{bottom:959.490000px;}
.y1bb{bottom:962.460000px;}
.y1fe{bottom:967.950000px;}
.y27e{bottom:968.580000px;}
.y170{bottom:969.750000px;}
.y8{bottom:970.290000px;}
.y6d{bottom:971.010000px;}
.y9a{bottom:971.460000px;}
.y11c{bottom:973.170000px;}
.y28d{bottom:973.260000px;}
.y21e{bottom:974.250000px;}
.y2be{bottom:975.240000px;}
.y12b{bottom:975.960000px;}
.y342{bottom:976.320000px;}
.y2fa{bottom:977.310000px;}
.yd2{bottom:977.670000px;}
.y227{bottom:978.390000px;}
.y2d{bottom:979.560000px;}
.y1ba{bottom:982.440000px;}
.y27d{bottom:985.590000px;}
.y56{bottom:988.198560px;}
.y16f{bottom:993.510000px;}
.y6c{bottom:994.770000px;}
.y99{bottom:995.220000px;}
.y1b9{bottom:996.390000px;}
.y11b{bottom:996.930000px;}
.y28c{bottom:997.020000px;}
.y341{bottom:997.110000px;}
.y21d{bottom:998.010000px;}
.y2bd{bottom:999.090000px;}
.y7{bottom:1001.340000px;}
.yd1{bottom:1001.430000px;}
.y226{bottom:1002.150000px;}
.y2c{bottom:1003.320000px;}
.y2f9{bottom:1013.040000px;}
.y16e{bottom:1017.360000px;}
.y6b{bottom:1018.620000px;}
.y98{bottom:1019.070000px;}
.y11a{bottom:1020.780000px;}
.y28b{bottom:1020.870000px;}
.y21c{bottom:1021.860000px;}
.y2bc{bottom:1022.850000px;}
.y55{bottom:1023.302340px;}
.yd0{bottom:1025.280000px;}
.y225{bottom:1026.000000px;}
.y2b{bottom:1027.170000px;}
.y2f8{bottom:1030.860000px;}
.y6{bottom:1032.390000px;}
.y6a{bottom:1042.380000px;}
.y97{bottom:1042.830000px;}
.ye9{bottom:1044.540000px;}
.y28a{bottom:1044.630000px;}
.y21b{bottom:1045.620000px;}
.y2bb{bottom:1046.700000px;}
.y2f7{bottom:1048.770000px;}
.ycf{bottom:1049.040000px;}
.y224{bottom:1049.760000px;}
.y2a{bottom:1050.930000px;}
.y54{bottom:1058.490000px;}
.y5{bottom:1063.440000px;}
.y69{bottom:1066.230000px;}
.y2f5{bottom:1066.590000px;}
.y96{bottom:1066.680000px;}
.ye8{bottom:1068.390000px;}
.y289{bottom:1068.480000px;}
.y21a{bottom:1069.470000px;}
.y2ba{bottom:1070.370000px;}
.yce{bottom:1072.890000px;}
.y223{bottom:1073.610000px;}
.y29{bottom:1074.780000px;}
.y53{bottom:1082.520000px;}
.y2f3{bottom:1084.410000px;}
.y68{bottom:1089.450000px;}
.y219{bottom:1090.350000px;}
.y95{bottom:1090.440000px;}
.ye7{bottom:1092.150000px;}
.y288{bottom:1092.240000px;}
.y222{bottom:1094.400000px;}
.y4{bottom:1094.490000px;}
.ycd{bottom:1096.650000px;}
.y28{bottom:1098.540000px;}
.y2f0{bottom:1103.040000px;}
.y52{bottom:1109.970000px;}
.y94{bottom:1116.000000px;}
.y67{bottom:1116.090000px;}
.y218{bottom:1116.180000px;}
.ycc{bottom:1119.060000px;}
.y12a{bottom:1119.150000px;}
.y27{bottom:1119.330000px;}
.y2ef{bottom:1126.350000px;}
.y287{bottom:1126.800000px;}
.y3{bottom:1138.140000px;}
.y93{bottom:1139.760000px;}
.y2b7{bottom:1139.850000px;}
.y26{bottom:1140.030000px;}
.y2{bottom:1168.560000px;}
.y1{bottom:1195.200000px;}
.h29{height:17.820000px;}
.h28{height:17.908500px;}
.h2a{height:17.910000px;}
.h20{height:19.798500px;}
.h21{height:19.800000px;}
.h22{height:19.890000px;}
.h1e{height:19.891500px;}
.h13{height:20.700000px;}
.h19{height:24.300000px;}
.h1b{height:24.388500px;}
.h1a{height:24.390000px;}
.h16{height:37.980000px;}
.h2f{height:38.158594px;}
.h23{height:39.486973px;}
.h14{height:39.690000px;}
.h24{height:40.823613px;}
.h10{height:41.823281px;}
.h2b{height:43.929844px;}
.h25{height:44.534180px;}
.h27{height:53.548500px;}
.h2c{height:53.640000px;}
.h9{height:54.331699px;}
.h26{height:56.320312px;}
.h17{height:58.678500px;}
.h1f{height:59.004492px;}
.h1c{height:60.589687px;}
.hf{height:62.703281px;}
.h18{height:62.716241px;}
.h12{height:62.721281px;}
.hd{height:67.104000px;}
.hb{height:69.176426px;}
.h8{height:70.664062px;}
.he{height:75.093750px;}
.h11{height:75.111750px;}
.h7{height:76.670508px;}
.h15{height:77.671500px;}
.h3{height:88.330078px;}
.h4{height:90.703125px;}
.h2e{height:91.960313px;}
.h6{height:94.336523px;}
.ha{height:98.865879px;}
.hc{height:100.250156px;}
.h1d{height:100.549687px;}
.h2{height:105.996094px;}
.h5{height:108.843750px;}
.h2d{height:127.600313px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:34.020000px;}
.w6{width:34.108500px;}
.w8{width:34.110000px;}
.w11{width:106.380000px;}
.w10{width:111.240000px;}
.we{width:114.568500px;}
.w14{width:116.820000px;}
.wf{width:127.170000px;}
.wd{width:130.230000px;}
.w12{width:138.150000px;}
.w5{width:148.140000px;}
.wa{width:148.500000px;}
.w13{width:148.770000px;}
.wc{width:154.170000px;}
.w3{width:169.290000px;}
.w4{width:211.861500px;}
.wb{width:233.010000px;}
.w9{width:255.150000px;}
.w2{width:892.936500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x36{left:8.730000px;}
.x59{left:10.800000px;}
.x8b{left:13.410000px;}
.x93{left:16.470000px;}
.xa0{left:18.720000px;}
.x75{left:21.600000px;}
.x8d{left:23.130000px;}
.x94{left:25.110000px;}
.x90{left:27.270000px;}
.x8f{left:28.440000px;}
.x9f{left:29.880000px;}
.x29{left:31.140000px;}
.x77{left:32.220000px;}
.x89{left:34.740000px;}
.x6f{left:35.820000px;}
.x2d{left:37.440000px;}
.x2b{left:38.700000px;}
.x85{left:40.320000px;}
.x9e{left:41.490000px;}
.x9b{left:42.840000px;}
.x9d{left:44.370000px;}
.x26{left:45.810000px;}
.x35{left:48.600000px;}
.x32{left:50.310000px;}
.x27{left:51.660000px;}
.x2a{left:55.440000px;}
.x92{left:57.870000px;}
.x30{left:60.390000px;}
.x3b{left:70.020000px;}
.x39{left:74.520000px;}
.x74{left:86.040000px;}
.x72{left:89.820000px;}
.x70{left:102.150000px;}
.x15{left:106.380000px;}
.x73{left:107.730000px;}
.x76{left:110.250000px;}
.x13{left:127.620000px;}
.x16{left:133.380000px;}
.x58{left:142.110000px;}
.x12{left:148.860000px;}
.x2{left:152.550000px;}
.xa8{left:154.620000px;}
.xa5{left:156.137250px;}
.x3d{left:159.300000px;}
.x17{left:160.380000px;}
.x82{left:167.609400px;}
.x83{left:169.095600px;}
.x7{left:172.170000px;}
.x6d{left:175.680000px;}
.x14{left:180.716040px;}
.xe{left:186.030000px;}
.x95{left:188.460000px;}
.x5e{left:189.720000px;}
.x2f{left:197.280000px;}
.x60{left:208.890000px;}
.x52{left:213.120000px;}
.x38{left:215.190000px;}
.x61{left:232.110000px;}
.x4e{left:235.624860px;}
.x21{left:237.510000px;}
.x22{left:241.200000px;}
.x25{left:249.120000px;}
.x5{left:250.290000px;}
.x84{left:255.150000px;}
.x6{left:256.230000px;}
.x1c{left:261.180000px;}
.x1f{left:263.250000px;}
.x96{left:264.510000px;}
.x40{left:265.590000px;}
.xf{left:267.570000px;}
.x65{left:268.920000px;}
.x46{left:270.990000px;}
.x44{left:273.060000px;}
.x6e{left:276.480000px;}
.x42{left:279.360000px;}
.x1a{left:284.130000px;}
.x49{left:286.200000px;}
.x86{left:288.360000px;}
.x6b{left:298.890000px;}
.x57{left:301.040370px;}
.x67{left:303.480000px;}
.x81{left:304.904400px;}
.x79{left:311.850000px;}
.x69{left:313.560000px;}
.x50{left:314.730000px;}
.xc{left:317.250000px;}
.x3c{left:322.200000px;}
.x11{left:323.632980px;}
.x3{left:332.190000px;}
.x6c{left:336.870000px;}
.x5a{left:339.030000px;}
.xd{left:340.740000px;}
.x10{left:345.780000px;}
.xa{left:351.900000px;}
.xa6{left:353.220150px;}
.x4c{left:355.050000px;}
.x2e{left:359.550000px;}
.x9a{left:361.530000px;}
.x98{left:374.400000px;}
.x7f{left:376.809900px;}
.x97{left:386.820000px;}
.x2c{left:394.470000px;}
.xb{left:405.990000px;}
.x87{left:409.320000px;}
.x9{left:410.400000px;}
.x31{left:411.570000px;}
.x3a{left:419.490000px;}
.x37{left:420.570000px;}
.x80{left:427.033140px;}
.xa4{left:434.142750px;}
.x3e{left:436.500000px;}
.x8{left:438.750000px;}
.x18{left:441.450000px;}
.x7a{left:442.456080px;}
.x1d{left:446.490000px;}
.x5c{left:449.280000px;}
.x88{left:450.450000px;}
.x62{left:457.110000px;}
.x4{left:473.130000px;}
.x1{left:479.610000px;}
.x9c{left:499.770000px;}
.x99{left:514.165500px;}
.xa2{left:526.127550px;}
.x71{left:531.630000px;}
.x7b{left:536.157240px;}
.x8a{left:539.550000px;}
.x5b{left:558.360000px;}
.x68{left:560.340000px;}
.x28{left:563.760000px;}
.x8c{left:572.850000px;}
.x53{left:575.910000px;}
.xa3{left:577.428090px;}
.x3f{left:584.910000px;}
.x34{left:586.523430px;}
.x20{left:596.610000px;}
.x7c{left:598.616700px;}
.x19{left:600.570000px;}
.x54{left:610.740000px;}
.x33{left:612.360000px;}
.x6a{left:620.280000px;}
.x64{left:621.990000px;}
.x4f{left:625.410000px;}
.x66{left:627.750000px;}
.x1b{left:630.990000px;}
.xa7{left:641.700000px;}
.x5f{left:649.530000px;}
.x51{left:652.410000px;}
.x91{left:654.120000px;}
.x4a{left:659.520000px;}
.x5d{left:661.770000px;}
.x7d{left:664.140480px;}
.x8e{left:668.430000px;}
.x24{left:677.070000px;}
.x41{left:678.240000px;}
.x7e{left:695.370210px;}
.x4b{left:697.320000px;}
.x43{left:701.100000px;}
.x47{left:707.490000px;}
.xa9{left:710.370000px;}
.x56{left:714.240000px;}
.x23{left:716.490000px;}
.x63{left:717.660000px;}
.x4d{left:729.180000px;}
.x45{left:731.070000px;}
.x55{left:752.310000px;}
.x48{left:758.340000px;}
.x78{left:763.740000px;}
.xa1{left:766.620000px;}
.x1e{left:785.880000px;}
@media print{
.v4{vertical-align:-90.880000pt;}
.v7{vertical-align:-47.028800pt;}
.v8{vertical-align:-34.431040pt;}
.v3{vertical-align:-18.560000pt;}
.v6{vertical-align:-5.830720pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:12.800000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.440000pt;}
.vb{vertical-align:31.680000pt;}
.v5{vertical-align:35.520000pt;}
.va{vertical-align:63.360000pt;}
.ls87{letter-spacing:-1.056000pt;}
.ls17{letter-spacing:-0.512000pt;}
.ls1a{letter-spacing:-0.426240pt;}
.ls64{letter-spacing:-0.384000pt;}
.ls56{letter-spacing:-0.374080pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls53{letter-spacing:-0.267200pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls55{letter-spacing:-0.213760pt;}
.ls7{letter-spacing:-0.208320pt;}
.ls5d{letter-spacing:-0.192000pt;}
.ls47{letter-spacing:-0.160320pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls88{letter-spacing:-0.144000pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls80{letter-spacing:-0.127680pt;}
.ls36{letter-spacing:-0.106880pt;}
.ls82{letter-spacing:-0.096000pt;}
.ls73{letter-spacing:-0.085440pt;}
.ls81{letter-spacing:-0.085120pt;}
.ls1c{letter-spacing:-0.074560pt;}
.ls8{letter-spacing:-0.069440pt;}
.ls27{letter-spacing:-0.064000pt;}
.ls54{letter-spacing:-0.053440pt;}
.ls46{letter-spacing:-0.034560pt;}
.ls2{letter-spacing:0.000000pt;}
.ls84{letter-spacing:0.016000pt;}
.ls2d{letter-spacing:0.016640pt;}
.ls83{letter-spacing:0.048000pt;}
.ls2f{letter-spacing:0.053440pt;}
.lsc{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.069440pt;}
.ls19{letter-spacing:0.074560pt;}
.ls3{letter-spacing:0.080000pt;}
.ls7c{letter-spacing:0.085120pt;}
.ls26{letter-spacing:0.085440pt;}
.ls89{letter-spacing:0.096000pt;}
.ls4c{letter-spacing:0.106880pt;}
.ls51{letter-spacing:0.115200pt;}
.ls22{letter-spacing:0.121600pt;}
.ls4f{letter-spacing:0.124480pt;}
.lsf{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.138880pt;}
.ls1b{letter-spacing:0.149120pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2e{letter-spacing:0.160320pt;}
.ls25{letter-spacing:0.243200pt;}
.ls3a{letter-spacing:0.256000pt;}
.ls75{letter-spacing:0.428800pt;}
.ls2a{letter-spacing:0.448000pt;}
.ls5b{letter-spacing:0.768000pt;}
.ls3c{letter-spacing:1.088000pt;}
.ls10{letter-spacing:1.600000pt;}
.ls11{letter-spacing:1.619200pt;}
.ls2c{letter-spacing:1.728000pt;}
.ls62{letter-spacing:2.048000pt;}
.ls72{letter-spacing:2.355200pt;}
.ls42{letter-spacing:2.368000pt;}
.ls8a{letter-spacing:2.688000pt;}
.ls66{letter-spacing:2.723200pt;}
.ls5a{letter-spacing:3.008000pt;}
.ls32{letter-spacing:3.328000pt;}
.ls63{letter-spacing:3.648000pt;}
.ls79{letter-spacing:3.961600pt;}
.ls4b{letter-spacing:3.968000pt;}
.ls38{letter-spacing:4.275200pt;}
.ls30{letter-spacing:4.288000pt;}
.ls76{letter-spacing:4.608000pt;}
.ls35{letter-spacing:5.248000pt;}
.ls5f{letter-spacing:5.555200pt;}
.ls74{letter-spacing:5.561600pt;}
.lsa{letter-spacing:5.760000pt;}
.ls7a{letter-spacing:6.208000pt;}
.ls7f{letter-spacing:6.384000pt;}
.ls15{letter-spacing:6.400000pt;}
.lsb{letter-spacing:6.720000pt;}
.ls3e{letter-spacing:7.168000pt;}
.ls14{letter-spacing:7.366400pt;}
.ls41{letter-spacing:7.488000pt;}
.ls12{letter-spacing:7.686400pt;}
.ls68{letter-spacing:7.795200pt;}
.ls67{letter-spacing:7.808000pt;}
.ls60{letter-spacing:8.008320pt;}
.ls61{letter-spacing:8.121600pt;}
.ls45{letter-spacing:8.128000pt;}
.ls3d{letter-spacing:8.428800pt;}
.ls49{letter-spacing:8.441600pt;}
.ls43{letter-spacing:8.448000pt;}
.ls20{letter-spacing:8.761600pt;}
.lse{letter-spacing:8.966400pt;}
.ls48{letter-spacing:9.088000pt;}
.ls23{letter-spacing:9.408000pt;}
.ls7e{letter-spacing:9.703680pt;}
.ls3f{letter-spacing:10.035200pt;}
.ls77{letter-spacing:10.368000pt;}
.ls7d{letter-spacing:10.520640pt;}
.ls71{letter-spacing:10.688000pt;}
.ls13{letter-spacing:10.880000pt;}
.ls28{letter-spacing:11.008000pt;}
.ls4a{letter-spacing:11.648000pt;}
.ls2b{letter-spacing:12.601600pt;}
.ls9{letter-spacing:12.800000pt;}
.ls39{letter-spacing:12.928000pt;}
.ls1d{letter-spacing:13.248000pt;}
.ls21{letter-spacing:13.568000pt;}
.ls78{letter-spacing:14.208000pt;}
.ls69{letter-spacing:14.515200pt;}
.ls6a{letter-spacing:14.528000pt;}
.ls6b{letter-spacing:14.848000pt;}
.ls6d{letter-spacing:15.168000pt;}
.ls58{letter-spacing:15.488000pt;}
.ls34{letter-spacing:16.115200pt;}
.ls33{letter-spacing:16.121600pt;}
.ls29{letter-spacing:16.448000pt;}
.ls3b{letter-spacing:17.401600pt;}
.ls6c{letter-spacing:17.408000pt;}
.ls65{letter-spacing:18.035200pt;}
.ls1e{letter-spacing:18.048000pt;}
.ls5e{letter-spacing:18.688000pt;}
.ls31{letter-spacing:19.008000pt;}
.ls70{letter-spacing:19.328000pt;}
.ls6e{letter-spacing:19.968000pt;}
.ls6f{letter-spacing:20.288000pt;}
.ls37{letter-spacing:20.928000pt;}
.ls8c{letter-spacing:22.528000pt;}
.ls44{letter-spacing:23.488000pt;}
.ls1f{letter-spacing:24.768000pt;}
.lsd{letter-spacing:25.600000pt;}
.ls5c{letter-spacing:30.201600pt;}
.ls52{letter-spacing:40.128000pt;}
.ls40{letter-spacing:42.361600pt;}
.ls24{letter-spacing:43.328000pt;}
.ls8b{letter-spacing:56.768000pt;}
.ls59{letter-spacing:78.208000pt;}
.ls86{letter-spacing:98.640000pt;}
.ls85{letter-spacing:140.880000pt;}
.ls57{letter-spacing:171.008000pt;}
.ls4e{letter-spacing:190.887680pt;}
.ls4d{letter-spacing:315.402880pt;}
.ls7b{letter-spacing:398.789440pt;}
.ls50{letter-spacing:407.854080pt;}
.wsf0{word-spacing:-23.837760pt;}
.wsba{word-spacing:-23.752320pt;}
.ws38{word-spacing:-23.656320pt;}
.ws1{word-spacing:-20.000000pt;}
.ws0{word-spacing:-19.840000pt;}
.wsc0{word-spacing:-18.048000pt;}
.ws54{word-spacing:-17.920000pt;}
.ws55{word-spacing:-17.792000pt;}
.ws3f{word-spacing:-17.728000pt;}
.ws85{word-spacing:-17.664000pt;}
.ws2{word-spacing:-17.498880pt;}
.ws3a{word-spacing:-16.925120pt;}
.ws39{word-spacing:-16.850560pt;}
.ws3b{word-spacing:-16.776000pt;}
.wsf{word-spacing:-16.128000pt;}
.wsd{word-spacing:-16.064000pt;}
.wse{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.488000pt;}
.wsb3{word-spacing:-15.016640pt;}
.ws94{word-spacing:-14.963200pt;}
.ws57{word-spacing:-14.909760pt;}
.ws58{word-spacing:-14.856320pt;}
.ws97{word-spacing:-14.802880pt;}
.ws95{word-spacing:-14.749440pt;}
.ws98{word-spacing:-14.642560pt;}
.ws96{word-spacing:-14.589120pt;}
.ws99{word-spacing:-14.482240pt;}
.wsdc{word-spacing:-14.112000pt;}
.wsc8{word-spacing:-13.466880pt;}
.wsea{word-spacing:-13.360000pt;}
.wsdb{word-spacing:-13.248000pt;}
.wsdd{word-spacing:-13.200000pt;}
.wseb{word-spacing:-13.199680pt;}
.wsc7{word-spacing:-13.146240pt;}
.wsda{word-spacing:-12.288000pt;}
.ws8d{word-spacing:-11.831680pt;}
.ws56{word-spacing:-9.607680pt;}
.ws8e{word-spacing:-9.573120pt;}
.wscb{word-spacing:-9.490880pt;}
.wse9{word-spacing:-8.640000pt;}
.wsd1{word-spacing:-3.968000pt;}
.wsd0{word-spacing:-3.648000pt;}
.ws18{word-spacing:-3.264000pt;}
.ws17{word-spacing:-3.200000pt;}
.ws33{word-spacing:-3.008000pt;}
.ws2e{word-spacing:-2.944000pt;}
.ws2f{word-spacing:-2.880000pt;}
.ws1f{word-spacing:-2.304000pt;}
.wsd4{word-spacing:-2.048000pt;}
.ws1c{word-spacing:-1.984000pt;}
.ws26{word-spacing:-1.920000pt;}
.ws1d{word-spacing:-1.600000pt;}
.ws1e{word-spacing:-1.280000pt;}
.wsec{word-spacing:-1.088000pt;}
.wsbd{word-spacing:-0.768000pt;}
.ws20{word-spacing:-0.704000pt;}
.wsb{word-spacing:-0.555520pt;}
.ws9d{word-spacing:-0.480960pt;}
.ws37{word-spacing:-0.448000pt;}
.ws19{word-spacing:-0.384000pt;}
.wsee{word-spacing:-0.374080pt;}
.wsbc{word-spacing:-0.341760pt;}
.wsd9{word-spacing:-0.336000pt;}
.wsd2{word-spacing:-0.320640pt;}
.ws5{word-spacing:-0.320000pt;}
.wsc1{word-spacing:-0.256000pt;}
.ws40{word-spacing:-0.170880pt;}
.ws67{word-spacing:-0.160320pt;}
.ws8{word-spacing:-0.160000pt;}
.ws9{word-spacing:-0.138880pt;}
.ws22{word-spacing:-0.128000pt;}
.ws9c{word-spacing:-0.106880pt;}
.wse8{word-spacing:-0.096000pt;}
.wscf{word-spacing:-0.085440pt;}
.ws3d{word-spacing:-0.074560pt;}
.ws15{word-spacing:-0.064000pt;}
.ws6e{word-spacing:-0.053440pt;}
.ws3{word-spacing:0.000000pt;}
.ws46{word-spacing:0.064000pt;}
.wsc{word-spacing:0.069440pt;}
.ws3c{word-spacing:0.074560pt;}
.ws4{word-spacing:0.080000pt;}
.wsbb{word-spacing:0.085440pt;}
.wse3{word-spacing:0.096000pt;}
.ws6f{word-spacing:0.106880pt;}
.wsd7{word-spacing:0.127680pt;}
.ws68{word-spacing:0.128000pt;}
.wsd8{word-spacing:0.144000pt;}
.ws3e{word-spacing:0.149120pt;}
.ws7{word-spacing:0.160000pt;}
.ws93{word-spacing:0.160320pt;}
.ws49{word-spacing:0.192000pt;}
.wsa{word-spacing:0.208320pt;}
.wsed{word-spacing:0.213760pt;}
.wse4{word-spacing:0.240000pt;}
.ws21{word-spacing:0.256000pt;}
.wsb5{word-spacing:0.267200pt;}
.ws6{word-spacing:0.320000pt;}
.wsd3{word-spacing:0.374080pt;}
.wsd5{word-spacing:0.383040pt;}
.wsb2{word-spacing:0.384000pt;}
.wsd6{word-spacing:0.425600pt;}
.wse5{word-spacing:0.432000pt;}
.ws45{word-spacing:0.512000pt;}
.wse7{word-spacing:0.528000pt;}
.wse2{word-spacing:0.768000pt;}
.ws47{word-spacing:0.832000pt;}
.wsc5{word-spacing:0.960000pt;}
.wse1{word-spacing:1.056000pt;}
.ws62{word-spacing:1.152000pt;}
.ws89{word-spacing:1.216000pt;}
.ws41{word-spacing:1.472000pt;}
.wse6{word-spacing:1.488000pt;}
.ws28{word-spacing:1.536000pt;}
.ws27{word-spacing:1.600000pt;}
.ws66{word-spacing:1.792000pt;}
.ws1b{word-spacing:1.856000pt;}
.wsc2{word-spacing:2.048000pt;}
.ws7b{word-spacing:2.112000pt;}
.ws87{word-spacing:2.432000pt;}
.ws4f{word-spacing:2.752000pt;}
.ws7e{word-spacing:3.072000pt;}
.ws50{word-spacing:3.392000pt;}
.ws4e{word-spacing:3.712000pt;}
.ws86{word-spacing:4.032000pt;}
.ws69{word-spacing:4.352000pt;}
.ws92{word-spacing:4.672000pt;}
.wsac{word-spacing:4.928000pt;}
.ws6c{word-spacing:4.992000pt;}
.ws13{word-spacing:5.312000pt;}
.ws5b{word-spacing:5.632000pt;}
.ws14{word-spacing:5.696000pt;}
.wsc6{word-spacing:5.888000pt;}
.ws48{word-spacing:5.952000pt;}
.wsb4{word-spacing:6.016000pt;}
.ws36{word-spacing:6.272000pt;}
.ws35{word-spacing:6.400000pt;}
.ws4b{word-spacing:6.592000pt;}
.wsab{word-spacing:6.912000pt;}
.ws1a{word-spacing:6.976000pt;}
.ws30{word-spacing:7.232000pt;}
.ws31{word-spacing:7.296000pt;}
.ws32{word-spacing:7.360000pt;}
.ws2b{word-spacing:7.552000pt;}
.ws2a{word-spacing:7.616000pt;}
.ws29{word-spacing:7.680000pt;}
.ws7c{word-spacing:7.872000pt;}
.ws81{word-spacing:8.192000pt;}
.ws59{word-spacing:8.512000pt;}
.ws4c{word-spacing:8.832000pt;}
.ws25{word-spacing:8.896000pt;}
.ws24{word-spacing:8.960000pt;}
.ws51{word-spacing:9.152000pt;}
.ws5c{word-spacing:9.472000pt;}
.ws82{word-spacing:9.792000pt;}
.ws65{word-spacing:10.112000pt;}
.ws72{word-spacing:10.432000pt;}
.ws2c{word-spacing:10.688000pt;}
.ws4a{word-spacing:10.752000pt;}
.ws2d{word-spacing:10.880000pt;}
.ws5a{word-spacing:11.072000pt;}
.ws12{word-spacing:11.136000pt;}
.ws8b{word-spacing:11.392000pt;}
.ws9b{word-spacing:11.712000pt;}
.ws6a{word-spacing:12.032000pt;}
.ws9a{word-spacing:12.352000pt;}
.ws5f{word-spacing:12.672000pt;}
.ws11{word-spacing:12.736000pt;}
.wsb1{word-spacing:12.800000pt;}
.ws42{word-spacing:12.992000pt;}
.ws16{word-spacing:13.056000pt;}
.ws4d{word-spacing:13.312000pt;}
.wsaa{word-spacing:13.632000pt;}
.wsa3{word-spacing:13.952000pt;}
.ws34{word-spacing:14.400000pt;}
.ws64{word-spacing:14.592000pt;}
.ws7a{word-spacing:14.912000pt;}
.ws6d{word-spacing:15.232000pt;}
.ws6b{word-spacing:15.552000pt;}
.ws7d{word-spacing:15.872000pt;}
.ws71{word-spacing:16.192000pt;}
.ws44{word-spacing:16.512000pt;}
.ws5d{word-spacing:16.832000pt;}
.wsa9{word-spacing:17.152000pt;}
.ws88{word-spacing:17.472000pt;}
.ws8f{word-spacing:17.792000pt;}
.ws43{word-spacing:18.112000pt;}
.ws8a{word-spacing:18.432000pt;}
.wsaf{word-spacing:18.752000pt;}
.ws70{word-spacing:19.072000pt;}
.ws9e{word-spacing:19.392000pt;}
.ws79{word-spacing:19.712000pt;}
.ws63{word-spacing:20.032000pt;}
.ws7f{word-spacing:20.672000pt;}
.ws74{word-spacing:20.992000pt;}
.ws90{word-spacing:21.312000pt;}
.ws61{word-spacing:21.440000pt;}
.ws60{word-spacing:21.632000pt;}
.wsc4{word-spacing:22.592000pt;}
.ws8c{word-spacing:23.232000pt;}
.ws77{word-spacing:23.552000pt;}
.ws83{word-spacing:24.192000pt;}
.ws76{word-spacing:24.512000pt;}
.wsa4{word-spacing:24.832000pt;}
.ws23{word-spacing:25.536000pt;}
.ws5e{word-spacing:27.072000pt;}
.wsad{word-spacing:27.712000pt;}
.wsa1{word-spacing:28.992000pt;}
.ws75{word-spacing:29.952000pt;}
.wsa6{word-spacing:30.080000pt;}
.wsa5{word-spacing:30.272000pt;}
.ws73{word-spacing:30.592000pt;}
.ws80{word-spacing:30.912000pt;}
.ws84{word-spacing:30.976000pt;}
.ws52{word-spacing:31.232000pt;}
.wsbe{word-spacing:32.512000pt;}
.wsb8{word-spacing:33.472000pt;}
.wsbf{word-spacing:33.792000pt;}
.wsb0{word-spacing:34.432000pt;}
.ws9f{word-spacing:35.072000pt;}
.wsae{word-spacing:36.352000pt;}
.wsef{word-spacing:37.632000pt;}
.wsa7{word-spacing:38.592000pt;}
.wsa0{word-spacing:40.192000pt;}
.wsc3{word-spacing:41.792000pt;}
.ws91{word-spacing:42.112000pt;}
.wsb9{word-spacing:42.752000pt;}
.ws53{word-spacing:43.392000pt;}
.wsa8{word-spacing:44.672000pt;}
.ws78{word-spacing:46.272000pt;}
.wsa2{word-spacing:54.592000pt;}
.wsc9{word-spacing:82.387648pt;}
.wsb6{word-spacing:88.832000pt;}
.wsb7{word-spacing:89.152000pt;}
.wsca{word-spacing:126.820288pt;}
.wscc{word-spacing:127.118208pt;}
.wsce{word-spacing:143.424000pt;}
.wscd{word-spacing:186.912000pt;}
.wsde{word-spacing:304.190400pt;}
.wsdf{word-spacing:316.272000pt;}
.wse0{word-spacing:318.960000pt;}
._b{margin-left:-14.854144pt;}
._8{margin-left:-13.048000pt;}
._6{margin-left:-11.780480pt;}
._7{margin-left:-10.140160pt;}
._c{margin-left:-7.733760pt;}
._9{margin-left:-5.517440pt;}
._1a{margin-left:-4.258624pt;}
._5{margin-left:-3.328000pt;}
._a{margin-left:-2.365440pt;}
._0{margin-left:-1.288000pt;}
._1{width:1.201312pt;}
._11{width:2.830688pt;}
._12{width:4.494688pt;}
._f{width:5.888000pt;}
._19{width:6.854400pt;}
._3{width:8.512000pt;}
._16{width:9.678688pt;}
._4{width:10.944000pt;}
._15{width:12.509376pt;}
._d{width:14.094688pt;}
._13{width:15.566688pt;}
._10{width:16.733376pt;}
._17{width:19.086688pt;}
._21{width:22.286688pt;}
._2{width:24.776000pt;}
._14{width:27.918688pt;}
._18{width:32.206688pt;}
._e{width:56.896000pt;}
._1b{width:136.711232pt;}
._1c{width:177.184000pt;}
._1e{width:182.400000pt;}
._1d{width:187.744000pt;}
._1f{width:334.545600pt;}
._20{width:341.952000pt;}
.fsb{font-size:28.480000pt;}
.fsa{font-size:34.560000pt;}
.fsd{font-size:37.440000pt;}
.fs8{font-size:42.560000pt;}
.fsc{font-size:48.000000pt;}
.fs9{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:69.440000pt;}
.fs7{font-size:74.560000pt;}
.fs1{font-size:80.000000pt;}
.fs3{font-size:85.440000pt;}
.fs0{font-size:96.000000pt;}
.fs6{font-size:106.560000pt;}
.y0{bottom:0.000000pt;}
.y14b{bottom:4.480000pt;}
.y157{bottom:4.560000pt;}
.y2f6{bottom:4.720000pt;}
.y2f2{bottom:4.800000pt;}
.y2f4{bottom:4.880000pt;}
.y2cd{bottom:5.200000pt;}
.y2ca{bottom:5.280000pt;}
.y2ce{bottom:5.360000pt;}
.y2cb{bottom:5.440000pt;}
.y279{bottom:6.720000pt;}
.y27c{bottom:6.880000pt;}
.y159{bottom:19.840000pt;}
.y14d{bottom:21.360000pt;}
.y2c7{bottom:22.880000pt;}
.y2f1{bottom:36.560000pt;}
.y306{bottom:36.640000pt;}
.y15e{bottom:38.320000pt;}
.y245{bottom:50.800000pt;}
.y92{bottom:50.880000pt;}
.y154{bottom:55.200000pt;}
.y244{bottom:69.200000pt;}
.y91{bottom:69.280000pt;}
.ycb{bottom:97.592160pt;}
.yb1{bottom:97.596160pt;}
.y286{bottom:99.760000pt;}
.y243{bottom:100.560000pt;}
.y10a{bottom:101.200000pt;}
.y18a{bottom:102.240000pt;}
.y31b{bottom:109.600000pt;}
.y90{bottom:110.960000pt;}
.y2db{bottom:112.640000pt;}
.yca{bottom:112.876000pt;}
.y1a3{bottom:113.520000pt;}
.y51{bottom:114.640000pt;}
.y285{bottom:114.880000pt;}
.y242{bottom:115.760000pt;}
.y2b6{bottom:116.240000pt;}
.yb0{bottom:117.520000pt;}
.y109{bottom:122.320000pt;}
.y31a{bottom:124.720000pt;}
.yaf{bottom:128.236000pt;}
.y16d{bottom:128.800000pt;}
.y2b5{bottom:131.440000pt;}
.yc9{bottom:132.880000pt;}
.y50{bottom:133.040000pt;}
.y8f{bottom:133.600000pt;}
.y2da{bottom:133.840000pt;}
.y20f{bottom:140.000000pt;}
.y1a2{bottom:142.480000pt;}
.y108{bottom:143.520000pt;}
.y148{bottom:143.596160pt;}
.yc8{bottom:143.600000pt;}
.ye6{bottom:144.160000pt;}
.y329{bottom:146.084267pt;}
.yae{bottom:148.240000pt;}
.y16c{bottom:150.400000pt;}
.y4f{bottom:151.440000pt;}
.y189{bottom:151.520000pt;}
.y8e{bottom:154.800000pt;}
.y2d9{bottom:154.960000pt;}
.y1e8{bottom:158.876000pt;}
.yb2{bottom:159.520000pt;}
.y20e{bottom:161.120000pt;}
.y1a1{bottom:162.480000pt;}
.y147{bottom:163.520000pt;}
.y107{bottom:164.640000pt;}
.y327{bottom:164.745600pt;}
.y16b{bottom:171.520000pt;}
.y4e{bottom:172.480000pt;}
.y188{bottom:174.160000pt;}
.y149{bottom:174.800000pt;}
.y8d{bottom:175.920000pt;}
.y2d8{bottom:176.160000pt;}
.y129{bottom:178.560000pt;}
.y1e7{bottom:178.880000pt;}
.ye5{bottom:180.236160pt;}
.y31e{bottom:180.333600pt;}
.y20d{bottom:182.320000pt;}
.y1a0{bottom:182.400000pt;}
.yc7{bottom:182.720000pt;}
.y1b8{bottom:182.800000pt;}
.yad{bottom:183.040000pt;}
.y1d2{bottom:184.720000pt;}
.y25{bottom:185.440000pt;}
.y106{bottom:185.840000pt;}
.y119{bottom:187.760000pt;}
.y1fc{bottom:189.592160pt;}
.y1e9{bottom:190.160000pt;}
.y128{bottom:191.040000pt;}
.y16a{bottom:192.720000pt;}
.y4d{bottom:193.680000pt;}
.y26a{bottom:194.960000pt;}
.y187{bottom:195.360000pt;}
.ye4{bottom:195.520000pt;}
.y340{bottom:196.160000pt;}
.y2d7{bottom:196.240000pt;}
.yac{bottom:196.960000pt;}
.y8c{bottom:197.120000pt;}
.y328{bottom:197.919733pt;}
.y146{bottom:199.360000pt;}
.y31f{bottom:200.121600pt;}
.yc6{bottom:201.120000pt;}
.y19f{bottom:202.320000pt;}
.y24{bottom:203.040000pt;}
.y20c{bottom:203.440000pt;}
.y1b7{bottom:203.920000pt;}
.y1fb{bottom:204.876000pt;}
.y1d1{bottom:205.920000pt;}
.y105{bottom:206.960000pt;}
.y118{bottom:208.960000pt;}
.ye3{bottom:209.520000pt;}
.y2d6{bottom:211.440000pt;}
.y169{bottom:213.840000pt;}
.y1e6{bottom:214.240000pt;}
.y4c{bottom:214.800000pt;}
.y269{bottom:216.160000pt;}
.y186{bottom:216.480000pt;}
.y33f{bottom:217.360000pt;}
.y8b{bottom:218.240000pt;}
.y320{bottom:219.909600pt;}
.y337{bottom:220.160000pt;}
.y23{bottom:221.688080pt;}
.y145{bottom:222.000000pt;}
.y19e{bottom:222.240000pt;}
.yc5{bottom:223.760000pt;}
.y20b{bottom:224.640000pt;}
.y1fa{bottom:224.880000pt;}
.y1b6{bottom:225.120000pt;}
.y31d{bottom:226.634160pt;}
.y1d0{bottom:227.040000pt;}
.y104{bottom:228.160000pt;}
.y117{bottom:230.080000pt;}
.y2ee{bottom:232.680133pt;}
.y168{bottom:235.040000pt;}
.y1e5{bottom:235.360000pt;}
.y4b{bottom:235.920000pt;}
.y1fd{bottom:236.160000pt;}
.y268{bottom:237.280000pt;}
.y185{bottom:237.680000pt;}
.y33e{bottom:238.480000pt;}
.y8a{bottom:239.440000pt;}
.y31c{bottom:239.678800pt;}
.y321{bottom:239.697600pt;}
.y336{bottom:241.360000pt;}
.y22{bottom:241.600000pt;}
.y19d{bottom:242.160000pt;}
.y144{bottom:244.720000pt;}
.y20a{bottom:244.724720pt;}
.yc4{bottom:244.960000pt;}
.y1b5{bottom:246.240000pt;}
.y1cf{bottom:248.240000pt;}
.y103{bottom:249.280000pt;}
.y116{bottom:250.000000pt;}
.y2ec{bottom:251.341467pt;}
.y1e4{bottom:256.560000pt;}
.y4a{bottom:257.120000pt;}
.y167{bottom:257.680000pt;}
.y267{bottom:258.480000pt;}
.y322{bottom:259.485600pt;}
.y33d{bottom:259.680000pt;}
.y184{bottom:260.320000pt;}
.y89{bottom:260.560000pt;}
.y21{bottom:261.280000pt;}
.y209{bottom:262.400000pt;}
.y335{bottom:262.480000pt;}
.y19c{bottom:264.960000pt;}
.y2a7{bottom:265.360000pt;}
.y143{bottom:265.840000pt;}
.yc3{bottom:266.080000pt;}
.y2e4{bottom:266.929467pt;}
.y1b4{bottom:267.360000pt;}
.y115{bottom:269.360000pt;}
.y277{bottom:269.444880pt;}
.y102{bottom:270.480000pt;}
.y1f9{bottom:270.640000pt;}
.y1ce{bottom:270.800000pt;}
.y29b{bottom:273.360000pt;}
.y208{bottom:277.520000pt;}
.y1e3{bottom:277.680000pt;}
.y49{bottom:278.240000pt;}
.y323{bottom:279.273600pt;}
.y266{bottom:279.600000pt;}
.y20{bottom:279.680000pt;}
.y166{bottom:280.400000pt;}
.y33c{bottom:280.800000pt;}
.y114{bottom:281.840000pt;}
.y183{bottom:283.040000pt;}
.y88{bottom:283.280000pt;}
.y334{bottom:283.680000pt;}
.y2a6{bottom:286.560000pt;}
.y142{bottom:287.040000pt;}
.yc2{bottom:287.280000pt;}
.y19b{bottom:287.600000pt;}
.y1b3{bottom:288.560000pt;}
.y1cd{bottom:288.716000pt;}
.y256{bottom:291.280000pt;}
.y101{bottom:291.600000pt;}
.y1f8{bottom:293.280000pt;}
.y29a{bottom:294.480000pt;}
.y1f{bottom:298.080000pt;}
.y1e2{bottom:298.880000pt;}
.y324{bottom:299.061600pt;}
.y48{bottom:299.440000pt;}
.y2e5{bottom:300.697467pt;}
.y265{bottom:300.720000pt;}
.y165{bottom:301.600000pt;}
.y33b{bottom:302.080000pt;}
.y276{bottom:302.240000pt;}
.y1cc{bottom:304.080000pt;}
.y182{bottom:304.160000pt;}
.y333{bottom:304.800000pt;}
.y87{bottom:305.920000pt;}
.y2a5{bottom:307.680000pt;}
.y2e1{bottom:307.892800pt;}
.y141{bottom:308.160000pt;}
.yc1{bottom:308.400000pt;}
.y19a{bottom:308.800000pt;}
.y1b2{bottom:309.680000pt;}
.y255{bottom:312.480000pt;}
.y1f7{bottom:312.640000pt;}
.y100{bottom:312.800000pt;}
.y299{bottom:315.680000pt;}
.y1cb{bottom:316.480000pt;}
.y1e{bottom:316.728480pt;}
.y325{bottom:318.849600pt;}
.y1e1{bottom:320.000000pt;}
.y47{bottom:320.560000pt;}
.y264{bottom:321.920000pt;}
.y33a{bottom:322.080000pt;}
.y241{bottom:322.320000pt;}
.y164{bottom:322.720000pt;}
.y181{bottom:325.360000pt;}
.y332{bottom:326.000000pt;}
.y1f6{bottom:326.560000pt;}
.y86{bottom:328.640000pt;}
.y2a4{bottom:328.880000pt;}
.y140{bottom:329.360000pt;}
.yc0{bottom:329.600000pt;}
.y199{bottom:329.920000pt;}
.y1b1{bottom:332.320000pt;}
.y254{bottom:333.600000pt;}
.yff{bottom:333.920000pt;}
.y2e6{bottom:334.465467pt;}
.y298{bottom:336.800000pt;}
.y339{bottom:337.280000pt;}
.y326{bottom:338.637600pt;}
.y2ed{bottom:338.810667pt;}
.y1d{bottom:340.720000pt;}
.y1e0{bottom:341.200000pt;}
.y46{bottom:341.760000pt;}
.y263{bottom:342.000000pt;}
.y240{bottom:343.440000pt;}
.y163{bottom:343.920000pt;}
.y180{bottom:346.480000pt;}
.y331{bottom:347.120000pt;}
.y2b4{bottom:349.680000pt;}
.y85{bottom:349.760000pt;}
.y2a3{bottom:350.000000pt;}
.y13f{bottom:350.480000pt;}
.y198{bottom:351.120000pt;}
.ybf{bottom:352.240000pt;}
.y253{bottom:354.800000pt;}
.yfe{bottom:355.120000pt;}
.y319{bottom:356.720000pt;}
.y262{bottom:357.200000pt;}
.y297{bottom:358.000000pt;}
.y1c{bottom:361.353440pt;}
.y1df{bottom:362.320000pt;}
.y45{bottom:362.880000pt;}
.y23f{bottom:364.640000pt;}
.y162{bottom:365.040000pt;}
.y17f{bottom:367.680000pt;}
.y2e0{bottom:367.998160pt;}
.y2e7{bottom:368.233467pt;}
.y330{bottom:368.320000pt;}
.y2e3{bottom:369.563093pt;}
.y2b3{bottom:370.880000pt;}
.y84{bottom:370.960000pt;}
.y284{bottom:371.200000pt;}
.y13e{bottom:371.680000pt;}
.y197{bottom:372.240000pt;}
.y318{bottom:372.640000pt;}
.ybe{bottom:374.960000pt;}
.y252{bottom:375.920000pt;}
.yfd{bottom:376.240000pt;}
.y296{bottom:379.120000pt;}
.y2e2{bottom:382.607733pt;}
.y44{bottom:384.080000pt;}
.y161{bottom:384.960000pt;}
.y1de{bottom:385.040000pt;}
.y23e{bottom:385.760000pt;}
.y1b{bottom:385.917440pt;}
.y317{bottom:388.480000pt;}
.y17e{bottom:388.800000pt;}
.y32f{bottom:389.440000pt;}
.y2b2{bottom:392.000000pt;}
.y83{bottom:392.080000pt;}
.y283{bottom:392.320000pt;}
.y13d{bottom:392.800000pt;}
.y196{bottom:393.440000pt;}
.y251{bottom:396.080000pt;}
.ybd{bottom:396.160000pt;}
.yfc{bottom:397.440000pt;}
.y295{bottom:399.280000pt;}
.y2e8{bottom:402.001467pt;}
.y160{bottom:404.320000pt;}
.y43{bottom:405.200000pt;}
.y1dd{bottom:406.160000pt;}
.y23d{bottom:406.960000pt;}
.y17d{bottom:410.000000pt;}
.y1a{bottom:410.396000pt;}
.y32e{bottom:410.640000pt;}
.y250{bottom:411.200000pt;}
.y2b1{bottom:412.160000pt;}
.y282{bottom:413.520000pt;}
.y13c{bottom:414.000000pt;}
.y294{bottom:414.400000pt;}
.y195{bottom:414.560000pt;}
.y82{bottom:414.800000pt;}
.ybc{bottom:417.280000pt;}
.yfb{bottom:418.560000pt;}
.y15d{bottom:418.880000pt;}
.y316{bottom:420.240000pt;}
.y2df{bottom:421.857840pt;}
.y42{bottom:426.400000pt;}
.y2b0{bottom:427.280000pt;}
.y1dc{bottom:427.360000pt;}
.y23c{bottom:428.080000pt;}
.y32d{bottom:431.760000pt;}
.y15c{bottom:432.556000pt;}
.y66{bottom:432.640000pt;}
.y27b{bottom:433.360000pt;}
.y281{bottom:434.640000pt;}
.y19{bottom:434.960000pt;}
.y13b{bottom:435.120000pt;}
.y127{bottom:435.280000pt;}
.y194{bottom:435.760000pt;}
.y2e9{bottom:435.769467pt;}
.y81{bottom:436.000000pt;}
.y315{bottom:436.080000pt;}
.ybb{bottom:438.480000pt;}
.yfa{bottom:439.760000pt;}
.y15f{bottom:440.320000pt;}
.y41{bottom:447.520000pt;}
.y15b{bottom:447.920000pt;}
.y1db{bottom:448.480000pt;}
.y23b{bottom:449.280000pt;}
.y314{bottom:451.920000pt;}
.y32c{bottom:452.960000pt;}
.y17c{bottom:453.840000pt;}
.y280{bottom:454.720000pt;}
.y13a{bottom:456.320000pt;}
.y126{bottom:456.480000pt;}
.y193{bottom:456.880000pt;}
.y80{bottom:457.120000pt;}
.y18{bottom:459.200000pt;}
.yba{bottom:459.600000pt;}
.y34b{bottom:459.920000pt;}
.y2de{bottom:460.353360pt;}
.yf9{bottom:460.880000pt;}
.y65{bottom:460.960000pt;}
.y275{bottom:463.680000pt;}
.y313{bottom:467.840000pt;}
.y40{bottom:468.720000pt;}
.y2ea{bottom:469.537467pt;}
.y27f{bottom:469.920000pt;}
.y23a{bottom:470.400000pt;}
.y1da{bottom:471.120000pt;}
.y158{bottom:471.680000pt;}
.y32b{bottom:473.040000pt;}
.y17b{bottom:474.960000pt;}
.y139{bottom:477.440000pt;}
.y125{bottom:477.600000pt;}
.y34a{bottom:477.676160pt;}
.y192{bottom:478.080000pt;}
.y7f{bottom:478.240000pt;}
.y113{bottom:478.480000pt;}
.yb9{bottom:480.800000pt;}
.y2dd{bottom:480.952400pt;}
.yf8{bottom:482.080000pt;}
.y17{bottom:482.160000pt;}
.y217{bottom:482.161680pt;}
.y64{bottom:482.320000pt;}
.y312{bottom:483.680000pt;}
.y15a{bottom:483.920000pt;}
.y207{bottom:487.840000pt;}
.y32a{bottom:488.160000pt;}
.y3f{bottom:489.840000pt;}
.y1d9{bottom:490.556160pt;}
.y239{bottom:491.600000pt;}
.y349{bottom:492.960000pt;}
.y17a{bottom:496.160000pt;}
.y138{bottom:498.640000pt;}
.y124{bottom:498.800000pt;}
.y191{bottom:499.200000pt;}
.y7e{bottom:499.440000pt;}
.y311{bottom:499.600000pt;}
.y112{bottom:499.680000pt;}
.yab{bottom:500.720000pt;}
.y216{bottom:501.357120pt;}
.yb8{bottom:501.920000pt;}
.y1b0{bottom:503.200000pt;}
.y2eb{bottom:503.305467pt;}
.yf7{bottom:504.720000pt;}
.y16{bottom:505.360000pt;}
.y1d8{bottom:505.840000pt;}
.y153{bottom:506.080000pt;}
.y206{bottom:509.040000pt;}
.y2dc{bottom:509.254800pt;}
.y63{bottom:510.638720pt;}
.y3e{bottom:511.040000pt;}
.y238{bottom:512.720000pt;}
.y310{bottom:515.440000pt;}
.y215{bottom:516.160000pt;}
.y179{bottom:517.280000pt;}
.y1d7{bottom:518.240000pt;}
.y137{bottom:519.760000pt;}
.y123{bottom:519.920000pt;}
.y190{bottom:520.400000pt;}
.y111{bottom:520.800000pt;}
.ye2{bottom:521.280000pt;}
.y2d5{bottom:521.440000pt;}
.yaa{bottom:521.920000pt;}
.y7d{bottom:522.160000pt;}
.yb7{bottom:523.040000pt;}
.y1af{bottom:524.400000pt;}
.yf6{bottom:525.920000pt;}
.y156{bottom:527.526320pt;}
.y15{bottom:528.160000pt;}
.y152{bottom:528.236160pt;}
.y205{bottom:530.160000pt;}
.y30f{bottom:531.280000pt;}
.y3d{bottom:532.160000pt;}
.y237{bottom:533.840000pt;}
.y1ca{bottom:536.240000pt;}
.y178{bottom:538.480000pt;}
.y2d4{bottom:539.040000pt;}
.y136{bottom:540.960000pt;}
.y122{bottom:541.120000pt;}
.y18f{bottom:541.520000pt;}
.y62{bottom:541.842080pt;}
.y110{bottom:542.000000pt;}
.ye1{bottom:542.480000pt;}
.ya9{bottom:543.040000pt;}
.y151{bottom:543.520000pt;}
.y155{bottom:544.400000pt;}
.y7c{bottom:544.800000pt;}
.y1ae{bottom:545.520000pt;}
.yf5{bottom:547.040000pt;}
.y30e{bottom:547.200000pt;}
.y14{bottom:551.200000pt;}
.y204{bottom:551.360000pt;}
.y3c{bottom:553.360000pt;}
.y236{bottom:555.040000pt;}
.y2d3{bottom:556.640000pt;}
.y1c9{bottom:557.440000pt;}
.y121{bottom:559.600000pt;}
.yb6{bottom:562.320000pt;}
.y18e{bottom:562.720000pt;}
.y30d{bottom:563.040000pt;}
.y10f{bottom:563.120000pt;}
.ye0{bottom:563.600000pt;}
.ya8{bottom:564.240000pt;}
.y1f5{bottom:564.400000pt;}
.y7b{bottom:566.000000pt;}
.y1ad{bottom:566.640000pt;}
.yf4{bottom:568.240000pt;}
.y203{bottom:572.480000pt;}
.y61{bottom:573.120000pt;}
.y13{bottom:574.320000pt;}
.y3b{bottom:574.480000pt;}
.y14f{bottom:575.760000pt;}
.y235{bottom:576.080000pt;}
.yb5{bottom:576.320000pt;}
.y120{bottom:577.280000pt;}
.y1c8{bottom:578.560000pt;}
.y30c{bottom:578.880000pt;}
.y261{bottom:579.440000pt;}
.y18d{bottom:583.840000pt;}
.y10e{bottom:584.320000pt;}
.ya7{bottom:585.360000pt;}
.y1f4{bottom:585.520000pt;}
.ydf{bottom:586.320000pt;}
.y7a{bottom:587.120000pt;}
.y1ac{bottom:587.840000pt;}
.y150{bottom:588.800000pt;}
.yf3{bottom:589.360000pt;}
.y11f{bottom:589.760000pt;}
.y278{bottom:591.120000pt;}
.y2d2{bottom:591.920000pt;}
.y202{bottom:592.640000pt;}
.y60{bottom:594.480000pt;}
.y234{bottom:594.640000pt;}
.y30b{bottom:594.800000pt;}
.y27a{bottom:595.120000pt;}
.y3a{bottom:595.680000pt;}
.y12{bottom:597.120000pt;}
.y1c7{bottom:599.760000pt;}
.y260{bottom:600.640000pt;}
.y177{bottom:603.440000pt;}
.y10d{bottom:603.676160pt;}
.y18c{bottom:605.040000pt;}
.ya6{bottom:606.560000pt;}
.y1f3{bottom:606.720000pt;}
.y79{bottom:607.040000pt;}
.yde{bottom:607.440000pt;}
.y201{bottom:607.760000pt;}
.y1ab{bottom:608.960000pt;}
.yf2{bottom:609.360000pt;}
.y2d1{bottom:609.600000pt;}
.y30a{bottom:610.640000pt;}
.y14c{bottom:611.680000pt;}
.y233{bottom:615.760000pt;}
.y39{bottom:616.800000pt;}
.y10c{bottom:618.960000pt;}
.y11{bottom:620.320000pt;}
.y1c6{bottom:620.880000pt;}
.y24f{bottom:621.520000pt;}
.y25f{bottom:621.760000pt;}
.y5f{bottom:622.798720pt;}
.y14e{bottom:624.720000pt;}
.y176{bottom:626.160000pt;}
.y309{bottom:626.480000pt;}
.y78{bottom:626.880000pt;}
.y2d0{bottom:627.200000pt;}
.ya5{bottom:627.680000pt;}
.y1f2{bottom:627.840000pt;}
.y135{bottom:628.640000pt;}
.y274{bottom:628.720000pt;}
.yf1{bottom:629.200000pt;}
.ydd{bottom:630.160000pt;}
.y10b{bottom:631.360000pt;}
.y232{bottom:636.880000pt;}
.y38{bottom:638.000000pt;}
.y1c5{bottom:642.080000pt;}
.y308{bottom:642.400000pt;}
.y24e{bottom:642.720000pt;}
.y25e{bottom:642.960000pt;}
.y10{bottom:644.080000pt;}
.y2cf{bottom:644.800000pt;}
.y77{bottom:646.960000pt;}
.y175{bottom:647.360000pt;}
.y14a{bottom:648.960000pt;}
.y134{bottom:649.760000pt;}
.y273{bottom:649.840000pt;}
.ya4{bottom:650.400000pt;}
.y1f1{bottom:650.560000pt;}
.y1aa{bottom:651.280000pt;}
.yf0{bottom:651.920000pt;}
.ydc{bottom:652.880000pt;}
.y338{bottom:653.520000pt;}
.y5e{bottom:654.002080pt;}
.y221{bottom:654.400000pt;}
.y231{bottom:658.080000pt;}
.y305{bottom:658.880000pt;}
.y37{bottom:659.120000pt;}
.y2af{bottom:660.320000pt;}
.y2cc{bottom:662.480000pt;}
.y1c4{bottom:663.200000pt;}
.y24d{bottom:663.840000pt;}
.y25d{bottom:664.080000pt;}
.y174{bottom:668.480000pt;}
.y76{bottom:669.600000pt;}
.y133{bottom:670.960000pt;}
.y272{bottom:671.040000pt;}
.ya3{bottom:671.520000pt;}
.yf{bottom:671.680000pt;}
.y1a9{bottom:672.480000pt;}
.yef{bottom:673.120000pt;}
.ydb{bottom:674.000000pt;}
.y293{bottom:674.720000pt;}
.y220{bottom:675.520000pt;}
.y230{bottom:679.200000pt;}
.y304{bottom:679.600000pt;}
.y2c9{bottom:680.080000pt;}
.y36{bottom:680.320000pt;}
.y2ae{bottom:681.440000pt;}
.y214{bottom:684.800000pt;}
.y24c{bottom:685.040000pt;}
.y5d{bottom:685.280000pt;}
.y1c3{bottom:685.920000pt;}
.y307{bottom:687.520000pt;}
.y2a2{bottom:688.160000pt;}
.y173{bottom:689.680000pt;}
.y2b9{bottom:690.640000pt;}
.y75{bottom:690.800000pt;}
.y18b{bottom:691.200000pt;}
.y132{bottom:692.080000pt;}
.y271{bottom:692.160000pt;}
.ya2{bottom:692.720000pt;}
.y1f0{bottom:692.880000pt;}
.yee{bottom:694.240000pt;}
.y1a8{bottom:695.120000pt;}
.yda{bottom:695.200000pt;}
.y292{bottom:695.840000pt;}
.y21f{bottom:696.720000pt;}
.y2c6{bottom:698.400000pt;}
.ye{bottom:699.280000pt;}
.y22f{bottom:700.400000pt;}
.y35{bottom:701.440000pt;}
.y2ad{bottom:702.640000pt;}
.y2c8{bottom:703.600000pt;}
.y2b8{bottom:705.760000pt;}
.y213{bottom:706.000000pt;}
.y24b{bottom:706.160000pt;}
.y25c{bottom:706.400000pt;}
.y5c{bottom:706.640000pt;}
.y1c2{bottom:707.040000pt;}
.y2a1{bottom:709.360000pt;}
.y74{bottom:711.920000pt;}
.y172{bottom:712.320000pt;}
.y2c5{bottom:712.480000pt;}
.y303{bottom:712.800000pt;}
.y270{bottom:713.360000pt;}
.ya1{bottom:713.840000pt;}
.y1ef{bottom:714.000000pt;}
.y131{bottom:714.800000pt;}
.yed{bottom:715.360000pt;}
.yd9{bottom:716.320000pt;}
.y291{bottom:716.960000pt;}
.y1a7{bottom:717.840000pt;}
.y22e{bottom:721.520000pt;}
.y34{bottom:722.560000pt;}
.y2ac{bottom:723.760000pt;}
.yd{bottom:725.920000pt;}
.y212{bottom:727.120000pt;}
.y24a{bottom:727.360000pt;}
.y25b{bottom:727.600000pt;}
.y1c1{bottom:728.240000pt;}
.y2a0{bottom:730.480000pt;}
.y73{bottom:733.120000pt;}
.y302{bottom:734.000000pt;}
.y26f{bottom:734.480000pt;}
.y5b{bottom:734.960000pt;}
.ya0{bottom:735.040000pt;}
.y1ee{bottom:735.200000pt;}
.y130{bottom:735.920000pt;}
.yec{bottom:736.560000pt;}
.yd8{bottom:737.440000pt;}
.y1d6{bottom:738.080000pt;}
.y290{bottom:738.160000pt;}
.y1a6{bottom:739.040000pt;}
.y2c4{bottom:739.920000pt;}
.y348{bottom:740.960000pt;}
.y22d{bottom:742.720000pt;}
.y33{bottom:743.760000pt;}
.y2ab{bottom:744.960000pt;}
.y211{bottom:747.204720pt;}
.y249{bottom:748.480000pt;}
.y25a{bottom:748.720000pt;}
.yc{bottom:748.960000pt;}
.y1c0{bottom:749.360000pt;}
.y29f{bottom:751.680000pt;}
.y301{bottom:755.120000pt;}
.y26e{bottom:755.680000pt;}
.y72{bottom:755.760000pt;}
.y9f{bottom:756.160000pt;}
.y5a{bottom:756.320000pt;}
.yeb{bottom:757.680000pt;}
.y1ed{bottom:757.840000pt;}
.y12f{bottom:758.560000pt;}
.yd7{bottom:758.640000pt;}
.y1d5{bottom:759.280000pt;}
.y1a5{bottom:760.160000pt;}
.y2c3{bottom:761.120000pt;}
.y347{bottom:762.080000pt;}
.y22c{bottom:763.840000pt;}
.y32{bottom:764.880000pt;}
.y2aa{bottom:766.080000pt;}
.y34d{bottom:769.520000pt;}
.y248{bottom:769.680000pt;}
.y259{bottom:769.920000pt;}
.y1bf{bottom:770.560000pt;}
.y29e{bottom:772.800000pt;}
.y300{bottom:776.240000pt;}
.y26d{bottom:776.800000pt;}
.y1ec{bottom:777.206320pt;}
.y9e{bottom:777.360000pt;}
.y71{bottom:778.480000pt;}
.yea{bottom:778.880000pt;}
.yd6{bottom:779.760000pt;}
.y210{bottom:780.000000pt;}
.y1d4{bottom:780.400000pt;}
.y28f{bottom:780.480000pt;}
.y12e{bottom:781.360000pt;}
.y2c2{bottom:782.240000pt;}
.y346{bottom:783.200000pt;}
.y59{bottom:784.564960pt;}
.y22b{bottom:785.040000pt;}
.y31{bottom:786.080000pt;}
.y2a9{bottom:786.240000pt;}
.yb{bottom:787.920000pt;}
.y258{bottom:790.000000pt;}
.y247{bottom:790.800000pt;}
.y1be{bottom:791.680000pt;}
.y29d{bottom:792.960000pt;}
.y1eb{bottom:794.080000pt;}
.y2ff{bottom:794.800000pt;}
.y26c{bottom:796.960000pt;}
.y9d{bottom:798.480000pt;}
.y70{bottom:799.600000pt;}
.yb4{bottom:800.000000pt;}
.y2a8{bottom:801.360000pt;}
.y1d3{bottom:801.600000pt;}
.yd5{bottom:802.480000pt;}
.y2c1{bottom:803.440000pt;}
.y345{bottom:804.400000pt;}
.y257{bottom:805.120000pt;}
.y22a{bottom:806.160000pt;}
.y34c{bottom:806.320000pt;}
.y30{bottom:807.200000pt;}
.y1ea{bottom:808.000000pt;}
.y29c{bottom:808.080000pt;}
.y2fe{bottom:808.720000pt;}
.ya{bottom:810.960000pt;}
.y26b{bottom:812.080000pt;}
.y1bd{bottom:812.880000pt;}
.y58{bottom:815.842880pt;}
.y200{bottom:818.160000pt;}
.y9c{bottom:819.680000pt;}
.y6f{bottom:820.800000pt;}
.y2fd{bottom:821.120000pt;}
.yb3{bottom:821.200000pt;}
.y11e{bottom:822.720000pt;}
.y28e{bottom:822.800000pt;}
.y12d{bottom:823.680000pt;}
.y2c0{bottom:824.560000pt;}
.yd4{bottom:825.200000pt;}
.y344{bottom:825.520000pt;}
.y246{bottom:826.080000pt;}
.y229{bottom:827.360000pt;}
.y2f{bottom:828.400000pt;}
.y9{bottom:834.880000pt;}
.y1bc{bottom:835.520000pt;}
.y2fc{bottom:837.040000pt;}
.y1ff{bottom:839.280000pt;}
.y171{bottom:840.800000pt;}
.y6e{bottom:841.920000pt;}
.y9b{bottom:842.320000pt;}
.y11d{bottom:843.920000pt;}
.y12c{bottom:844.800000pt;}
.y2bf{bottom:845.760000pt;}
.y1a4{bottom:846.240000pt;}
.y343{bottom:846.720000pt;}
.y57{bottom:847.120800pt;}
.yd3{bottom:847.840000pt;}
.y228{bottom:848.480000pt;}
.y2e{bottom:849.520000pt;}
.y2fb{bottom:852.880000pt;}
.y1bb{bottom:855.520000pt;}
.y1fe{bottom:860.400000pt;}
.y27e{bottom:860.960000pt;}
.y170{bottom:862.000000pt;}
.y8{bottom:862.480000pt;}
.y6d{bottom:863.120000pt;}
.y9a{bottom:863.520000pt;}
.y11c{bottom:865.040000pt;}
.y28d{bottom:865.120000pt;}
.y21e{bottom:866.000000pt;}
.y2be{bottom:866.880000pt;}
.y12b{bottom:867.520000pt;}
.y342{bottom:867.840000pt;}
.y2fa{bottom:868.720000pt;}
.yd2{bottom:869.040000pt;}
.y227{bottom:869.680000pt;}
.y2d{bottom:870.720000pt;}
.y1ba{bottom:873.280000pt;}
.y27d{bottom:876.080000pt;}
.y56{bottom:878.398720pt;}
.y16f{bottom:883.120000pt;}
.y6c{bottom:884.240000pt;}
.y99{bottom:884.640000pt;}
.y1b9{bottom:885.680000pt;}
.y11b{bottom:886.160000pt;}
.y28c{bottom:886.240000pt;}
.y341{bottom:886.320000pt;}
.y21d{bottom:887.120000pt;}
.y2bd{bottom:888.080000pt;}
.y7{bottom:890.080000pt;}
.yd1{bottom:890.160000pt;}
.y226{bottom:890.800000pt;}
.y2c{bottom:891.840000pt;}
.y2f9{bottom:900.480000pt;}
.y16e{bottom:904.320000pt;}
.y6b{bottom:905.440000pt;}
.y98{bottom:905.840000pt;}
.y11a{bottom:907.360000pt;}
.y28b{bottom:907.440000pt;}
.y21c{bottom:908.320000pt;}
.y2bc{bottom:909.200000pt;}
.y55{bottom:909.602080pt;}
.yd0{bottom:911.360000pt;}
.y225{bottom:912.000000pt;}
.y2b{bottom:913.040000pt;}
.y2f8{bottom:916.320000pt;}
.y6{bottom:917.680000pt;}
.y6a{bottom:926.560000pt;}
.y97{bottom:926.960000pt;}
.ye9{bottom:928.480000pt;}
.y28a{bottom:928.560000pt;}
.y21b{bottom:929.440000pt;}
.y2bb{bottom:930.400000pt;}
.y2f7{bottom:932.240000pt;}
.ycf{bottom:932.480000pt;}
.y224{bottom:933.120000pt;}
.y2a{bottom:934.160000pt;}
.y54{bottom:940.880000pt;}
.y5{bottom:945.280000pt;}
.y69{bottom:947.760000pt;}
.y2f5{bottom:948.080000pt;}
.y96{bottom:948.160000pt;}
.ye8{bottom:949.680000pt;}
.y289{bottom:949.760000pt;}
.y21a{bottom:950.640000pt;}
.y2ba{bottom:951.440000pt;}
.yce{bottom:953.680000pt;}
.y223{bottom:954.320000pt;}
.y29{bottom:955.360000pt;}
.y53{bottom:962.240000pt;}
.y2f3{bottom:963.920000pt;}
.y68{bottom:968.400000pt;}
.y219{bottom:969.200000pt;}
.y95{bottom:969.280000pt;}
.ye7{bottom:970.800000pt;}
.y288{bottom:970.880000pt;}
.y222{bottom:972.800000pt;}
.y4{bottom:972.880000pt;}
.ycd{bottom:974.800000pt;}
.y28{bottom:976.480000pt;}
.y2f0{bottom:980.480000pt;}
.y52{bottom:986.640000pt;}
.y94{bottom:992.000000pt;}
.y67{bottom:992.080000pt;}
.y218{bottom:992.160000pt;}
.ycc{bottom:994.720000pt;}
.y12a{bottom:994.800000pt;}
.y27{bottom:994.960000pt;}
.y2ef{bottom:1001.200000pt;}
.y287{bottom:1001.600000pt;}
.y3{bottom:1011.680000pt;}
.y93{bottom:1013.120000pt;}
.y2b7{bottom:1013.200000pt;}
.y26{bottom:1013.360000pt;}
.y2{bottom:1038.720000pt;}
.y1{bottom:1062.400000pt;}
.h29{height:15.840000pt;}
.h28{height:15.918667pt;}
.h2a{height:15.920000pt;}
.h20{height:17.598667pt;}
.h21{height:17.600000pt;}
.h22{height:17.680000pt;}
.h1e{height:17.681333pt;}
.h13{height:18.400000pt;}
.h19{height:21.600000pt;}
.h1b{height:21.678667pt;}
.h1a{height:21.680000pt;}
.h16{height:33.760000pt;}
.h2f{height:33.918750pt;}
.h23{height:35.099531pt;}
.h14{height:35.280000pt;}
.h24{height:36.287656pt;}
.h10{height:37.176250pt;}
.h2b{height:39.048750pt;}
.h25{height:39.585938pt;}
.h27{height:47.598667pt;}
.h2c{height:47.680000pt;}
.h9{height:48.294844pt;}
.h26{height:50.062500pt;}
.h17{height:52.158667pt;}
.h1f{height:52.448437pt;}
.h1c{height:53.857500pt;}
.hf{height:55.736250pt;}
.h18{height:55.747770pt;}
.h12{height:55.752250pt;}
.hd{height:59.648000pt;}
.hb{height:61.490156pt;}
.h8{height:62.812500pt;}
.he{height:66.750000pt;}
.h11{height:66.766000pt;}
.h7{height:68.151562pt;}
.h15{height:69.041333pt;}
.h3{height:78.515625pt;}
.h4{height:80.625000pt;}
.h2e{height:81.742500pt;}
.h6{height:83.854687pt;}
.ha{height:87.880781pt;}
.hc{height:89.111250pt;}
.h1d{height:89.377500pt;}
.h2{height:94.218750pt;}
.h5{height:96.750000pt;}
.h2d{height:113.422500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:30.240000pt;}
.w6{width:30.318667pt;}
.w8{width:30.320000pt;}
.w11{width:94.560000pt;}
.w10{width:98.880000pt;}
.we{width:101.838667pt;}
.w14{width:103.840000pt;}
.wf{width:113.040000pt;}
.wd{width:115.760000pt;}
.w12{width:122.800000pt;}
.w5{width:131.680000pt;}
.wa{width:132.000000pt;}
.w13{width:132.240000pt;}
.wc{width:137.040000pt;}
.w3{width:150.480000pt;}
.w4{width:188.321333pt;}
.wb{width:207.120000pt;}
.w9{width:226.800000pt;}
.w2{width:793.721333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x36{left:7.760000pt;}
.x59{left:9.600000pt;}
.x8b{left:11.920000pt;}
.x93{left:14.640000pt;}
.xa0{left:16.640000pt;}
.x75{left:19.200000pt;}
.x8d{left:20.560000pt;}
.x94{left:22.320000pt;}
.x90{left:24.240000pt;}
.x8f{left:25.280000pt;}
.x9f{left:26.560000pt;}
.x29{left:27.680000pt;}
.x77{left:28.640000pt;}
.x89{left:30.880000pt;}
.x6f{left:31.840000pt;}
.x2d{left:33.280000pt;}
.x2b{left:34.400000pt;}
.x85{left:35.840000pt;}
.x9e{left:36.880000pt;}
.x9b{left:38.080000pt;}
.x9d{left:39.440000pt;}
.x26{left:40.720000pt;}
.x35{left:43.200000pt;}
.x32{left:44.720000pt;}
.x27{left:45.920000pt;}
.x2a{left:49.280000pt;}
.x92{left:51.440000pt;}
.x30{left:53.680000pt;}
.x3b{left:62.240000pt;}
.x39{left:66.240000pt;}
.x74{left:76.480000pt;}
.x72{left:79.840000pt;}
.x70{left:90.800000pt;}
.x15{left:94.560000pt;}
.x73{left:95.760000pt;}
.x76{left:98.000000pt;}
.x13{left:113.440000pt;}
.x16{left:118.560000pt;}
.x58{left:126.320000pt;}
.x12{left:132.320000pt;}
.x2{left:135.600000pt;}
.xa8{left:137.440000pt;}
.xa5{left:138.788667pt;}
.x3d{left:141.600000pt;}
.x17{left:142.560000pt;}
.x82{left:148.986133pt;}
.x83{left:150.307200pt;}
.x7{left:153.040000pt;}
.x6d{left:156.160000pt;}
.x14{left:160.636480pt;}
.xe{left:165.360000pt;}
.x95{left:167.520000pt;}
.x5e{left:168.640000pt;}
.x2f{left:175.360000pt;}
.x60{left:185.680000pt;}
.x52{left:189.440000pt;}
.x38{left:191.280000pt;}
.x61{left:206.320000pt;}
.x4e{left:209.444320pt;}
.x21{left:211.120000pt;}
.x22{left:214.400000pt;}
.x25{left:221.440000pt;}
.x5{left:222.480000pt;}
.x84{left:226.800000pt;}
.x6{left:227.760000pt;}
.x1c{left:232.160000pt;}
.x1f{left:234.000000pt;}
.x96{left:235.120000pt;}
.x40{left:236.080000pt;}
.xf{left:237.840000pt;}
.x65{left:239.040000pt;}
.x46{left:240.880000pt;}
.x44{left:242.720000pt;}
.x6e{left:245.760000pt;}
.x42{left:248.320000pt;}
.x1a{left:252.560000pt;}
.x49{left:254.400000pt;}
.x86{left:256.320000pt;}
.x6b{left:265.680000pt;}
.x57{left:267.591440pt;}
.x67{left:269.760000pt;}
.x81{left:271.026133pt;}
.x79{left:277.200000pt;}
.x69{left:278.720000pt;}
.x50{left:279.760000pt;}
.xc{left:282.000000pt;}
.x3c{left:286.400000pt;}
.x11{left:287.673760pt;}
.x3{left:295.280000pt;}
.x6c{left:299.440000pt;}
.x5a{left:301.360000pt;}
.xd{left:302.880000pt;}
.x10{left:307.360000pt;}
.xa{left:312.800000pt;}
.xa6{left:313.973467pt;}
.x4c{left:315.600000pt;}
.x2e{left:319.600000pt;}
.x9a{left:321.360000pt;}
.x98{left:332.800000pt;}
.x7f{left:334.942133pt;}
.x97{left:343.840000pt;}
.x2c{left:350.640000pt;}
.xb{left:360.880000pt;}
.x87{left:363.840000pt;}
.x9{left:364.800000pt;}
.x31{left:365.840000pt;}
.x3a{left:372.880000pt;}
.x37{left:373.840000pt;}
.x80{left:379.585013pt;}
.xa4{left:385.904667pt;}
.x3e{left:388.000000pt;}
.x8{left:390.000000pt;}
.x18{left:392.400000pt;}
.x7a{left:393.294293pt;}
.x1d{left:396.880000pt;}
.x5c{left:399.360000pt;}
.x88{left:400.400000pt;}
.x62{left:406.320000pt;}
.x4{left:420.560000pt;}
.x1{left:426.320000pt;}
.x9c{left:444.240000pt;}
.x99{left:457.036000pt;}
.xa2{left:467.668933pt;}
.x71{left:472.560000pt;}
.x7b{left:476.584213pt;}
.x8a{left:479.600000pt;}
.x5b{left:496.320000pt;}
.x68{left:498.080000pt;}
.x28{left:501.120000pt;}
.x8c{left:509.200000pt;}
.x53{left:511.920000pt;}
.xa3{left:513.269413pt;}
.x3f{left:519.920000pt;}
.x34{left:521.354160pt;}
.x20{left:530.320000pt;}
.x7c{left:532.103733pt;}
.x19{left:533.840000pt;}
.x54{left:542.880000pt;}
.x33{left:544.320000pt;}
.x6a{left:551.360000pt;}
.x64{left:552.880000pt;}
.x4f{left:555.920000pt;}
.x66{left:558.000000pt;}
.x1b{left:560.880000pt;}
.xa7{left:570.400000pt;}
.x5f{left:577.360000pt;}
.x51{left:579.920000pt;}
.x91{left:581.440000pt;}
.x4a{left:586.240000pt;}
.x5d{left:588.240000pt;}
.x7d{left:590.347093pt;}
.x8e{left:594.160000pt;}
.x24{left:601.840000pt;}
.x41{left:602.880000pt;}
.x7e{left:618.106853pt;}
.x4b{left:619.840000pt;}
.x43{left:623.200000pt;}
.x47{left:628.880000pt;}
.xa9{left:631.440000pt;}
.x56{left:634.880000pt;}
.x23{left:636.880000pt;}
.x63{left:637.920000pt;}
.x4d{left:648.160000pt;}
.x45{left:649.840000pt;}
.x55{left:668.720000pt;}
.x48{left:674.080000pt;}
.x78{left:678.880000pt;}
.xa1{left:681.440000pt;}
.x1e{left:698.560000pt;}
}




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