
    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_f552d7b084a2423ea44257d4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_540a9f14a753045b1e21c17f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986328;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_2a9affdf4e94e137d10ff08b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927000;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_09a53401cc90664975298716.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919000;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_f7b188c37b3cb92604cfe457.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.838867;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_9ef37c706a2f8691e19591a4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.986816;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_c8a6116f456e6e8e95f6db90.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.975098;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_dfaeb09958ddc90ed6b6affe.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.159668;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_fb0962677854e9b8fbc85b82.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.700000;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_516583dbbcef63e7c8663653.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.986816;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_ee236272ed898d7acf567c66.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.986816;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_064816856c78496917ae54ab.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.917000;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_4b87a19300e587d7d2d0e079.woff2')format("woff");}.fff{font-family:fff;line-height:0.711000;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_e248f6ec42736ca78609efca.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.986816;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_eee17b00bf367807689a3f96.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.142090;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.152206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152206,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.152472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152472,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250389,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250392,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250896,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);}
.v8{vertical-align:-42.768000px;}
.ve{vertical-align:-39.375000px;}
.v6{vertical-align:-18.562800px;}
.v2{vertical-align:-10.080000px;}
.v4{vertical-align:-8.945400px;}
.v1{vertical-align:-4.356000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:7.145400px;}
.v11{vertical-align:14.688000px;}
.vc{vertical-align:15.867000px;}
.v5{vertical-align:18.562200px;}
.vf{vertical-align:24.187800px;}
.va{vertical-align:30.000000px;}
.v7{vertical-align:34.506000px;}
.v9{vertical-align:36.011400px;}
.vd{vertical-align:40.752000px;}
.v10{vertical-align:42.750000px;}
.vb{vertical-align:60.000000px;}
.ls30{letter-spacing:-27.432000px;}
.ls4b{letter-spacing:-7.560000px;}
.ls3d{letter-spacing:-4.224000px;}
.ls35{letter-spacing:-1.392000px;}
.ls33{letter-spacing:-1.350000px;}
.ls10{letter-spacing:-1.296000px;}
.ls38{letter-spacing:-1.200000px;}
.ls66{letter-spacing:-1.104000px;}
.ls34{letter-spacing:-1.080000px;}
.ls39{letter-spacing:-0.960000px;}
.ls36{letter-spacing:-0.810000px;}
.ls59{letter-spacing:-0.702000px;}
.ls5b{letter-spacing:-0.648000px;}
.ls5a{letter-spacing:-0.594000px;}
.ls1d{letter-spacing:-0.540000px;}
.ls1c{letter-spacing:-0.486000px;}
.ls37{letter-spacing:-0.432000px;}
.ls1f{letter-spacing:-0.378000px;}
.ls1e{letter-spacing:-0.324000px;}
.ls12{letter-spacing:-0.270000px;}
.ls17{letter-spacing:-0.216000px;}
.ls2e{letter-spacing:-0.215662px;}
.ls5e{letter-spacing:-0.192000px;}
.ls1a{letter-spacing:-0.162000px;}
.ls60{letter-spacing:-0.144000px;}
.ls18{letter-spacing:-0.108000px;}
.ls3a{letter-spacing:-0.096000px;}
.ls1b{letter-spacing:-0.054000px;}
.ls62{letter-spacing:-0.048000px;}
.ls0{letter-spacing:0.000000px;}
.ls5c{letter-spacing:0.024000px;}
.ls5f{letter-spacing:0.048000px;}
.ls13{letter-spacing:0.054000px;}
.ls65{letter-spacing:0.091200px;}
.ls64{letter-spacing:0.096000px;}
.ls15{letter-spacing:0.108000px;}
.ls3c{letter-spacing:0.150900px;}
.ls4c{letter-spacing:0.161422px;}
.ls2d{letter-spacing:0.161746px;}
.ls19{letter-spacing:0.162000px;}
.ls63{letter-spacing:0.192000px;}
.ls2c{letter-spacing:0.202185px;}
.ls27{letter-spacing:0.202500px;}
.ls1{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.270000px;}
.ls3f{letter-spacing:0.283500px;}
.ls5{letter-spacing:0.315000px;}
.lse{letter-spacing:0.324000px;}
.ls5d{letter-spacing:0.336000px;}
.ls2b{letter-spacing:0.377408px;}
.ls16{letter-spacing:0.378000px;}
.lsf{letter-spacing:0.432000px;}
.ls4e{letter-spacing:0.486000px;}
.ls50{letter-spacing:0.540000px;}
.ls11{letter-spacing:0.549126px;}
.ls61{letter-spacing:0.576000px;}
.lsa{letter-spacing:0.705012px;}
.ls22{letter-spacing:0.810000px;}
.ls4f{letter-spacing:0.972000px;}
.lsd{letter-spacing:1.098246px;}
.lsc{letter-spacing:1.254012px;}
.lsb{letter-spacing:1.384812px;}
.ls29{letter-spacing:1.671377px;}
.ls26{letter-spacing:1.674000px;}
.ls3{letter-spacing:1.969200px;}
.ls8{letter-spacing:1.976400px;}
.ls7{letter-spacing:1.977600px;}
.ls9{letter-spacing:2.039616px;}
.ls2{letter-spacing:2.205000px;}
.ls32{letter-spacing:2.640000px;}
.ls6{letter-spacing:4.171800px;}
.ls4d{letter-spacing:5.610000px;}
.ls41{letter-spacing:7.232700px;}
.ls28{letter-spacing:9.165618px;}
.ls2f{letter-spacing:9.180000px;}
.ls58{letter-spacing:10.854000px;}
.ls25{letter-spacing:21.600000px;}
.ls23{letter-spacing:43.524000px;}
.ls31{letter-spacing:57.186000px;}
.ls55{letter-spacing:77.557500px;}
.ls2a{letter-spacing:80.590941px;}
.ls20{letter-spacing:80.716500px;}
.ls53{letter-spacing:150.376500px;}
.ls54{letter-spacing:160.434000px;}
.ls4a{letter-spacing:165.942000px;}
.ls51{letter-spacing:257.761800px;}
.ls56{letter-spacing:302.076000px;}
.ls57{letter-spacing:384.102000px;}
.ls4{letter-spacing:400.392000px;}
.ls48{letter-spacing:406.053000px;}
.ls47{letter-spacing:406.782000px;}
.ls49{letter-spacing:417.595500px;}
.ls3e{letter-spacing:421.240500px;}
.ls40{letter-spacing:432.580500px;}
.ls21{letter-spacing:624.960000px;}
.ls52{letter-spacing:688.153200px;}
.ls42{letter-spacing:714.982800px;}
.ls46{letter-spacing:740.764200px;}
.ls44{letter-spacing:750.772200px;}
.ls45{letter-spacing:760.779600px;}
.ls43{letter-spacing:770.787600px;}
.ls3b{letter-spacing:935.952000px;}
.ls24{letter-spacing:1104.778800px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd2{word-spacing:-443.718000px;}
.wsce{word-spacing:-432.337500px;}
.wsd1{word-spacing:-428.733000px;}
.wscc{word-spacing:-417.879000px;}
.wscd{word-spacing:-417.150000px;}
.wsfe{word-spacing:-413.748000px;}
.ws107{word-spacing:-302.076000px;}
.wsd8{word-spacing:-195.588000px;}
.ws108{word-spacing:-160.434000px;}
.ws105{word-spacing:-150.376500px;}
.wsf7{word-spacing:-117.457200px;}
.ws101{word-spacing:-23.225400px;}
.wsdb{word-spacing:-22.234500px;}
.ws5{word-spacing:-22.027853px;}
.ws5e{word-spacing:-20.266200px;}
.wsf6{word-spacing:-19.715400px;}
.ws123{word-spacing:-18.216000px;}
.ws6{word-spacing:-16.693430px;}
.ws6f{word-spacing:-15.400800px;}
.wsff{word-spacing:-15.120000px;}
.wsc4{word-spacing:-15.066000px;}
.ws74{word-spacing:-15.012000px;}
.wsdc{word-spacing:-14.958457px;}
.ws117{word-spacing:-14.958000px;}
.ws116{word-spacing:-14.904000px;}
.ws72{word-spacing:-14.850000px;}
.ws60{word-spacing:-14.796000px;}
.ws92{word-spacing:-14.742000px;}
.ws73{word-spacing:-14.634000px;}
.ws75{word-spacing:-14.526000px;}
.wsda{word-spacing:-14.472000px;}
.wse7{word-spacing:-14.025000px;}
.ws91{word-spacing:-13.770000px;}
.ws90{word-spacing:-13.500000px;}
.wsdf{word-spacing:-13.200000px;}
.ws94{word-spacing:-13.152000px;}
.ws131{word-spacing:-13.104000px;}
.ws132{word-spacing:-13.056000px;}
.wsf0{word-spacing:-11.550000px;}
.wsc7{word-spacing:-10.713600px;}
.ws65{word-spacing:-10.696815px;}
.ws1{word-spacing:-10.080000px;}
.ws4{word-spacing:-9.936000px;}
.ws2{word-spacing:-9.864000px;}
.ws63{word-spacing:-6.588000px;}
.wsb{word-spacing:-5.292000px;}
.ws7b{word-spacing:-4.897800px;}
.wse8{word-spacing:-2.805000px;}
.ws19{word-spacing:-2.039616px;}
.ws133{word-spacing:-1.824000px;}
.ws8b{word-spacing:-0.810000px;}
.ws13b{word-spacing:-0.576000px;}
.ws104{word-spacing:-0.540000px;}
.wseb{word-spacing:-0.486000px;}
.wsb6{word-spacing:-0.432000px;}
.ws66{word-spacing:-0.393582px;}
.wsd9{word-spacing:-0.388800px;}
.ws33{word-spacing:-0.378000px;}
.ws12f{word-spacing:-0.336000px;}
.ws2e{word-spacing:-0.324000px;}
.ws25{word-spacing:-0.270000px;}
.ws34{word-spacing:-0.216000px;}
.ws8c{word-spacing:-0.202500px;}
.ws141{word-spacing:-0.192000px;}
.ws39{word-spacing:-0.162000px;}
.ws4f{word-spacing:-0.108000px;}
.ws26{word-spacing:-0.054000px;}
.ws95{word-spacing:-0.048000px;}
.ws3{word-spacing:-0.036000px;}
.ws0{word-spacing:0.000000px;}
.ws13c{word-spacing:0.048000px;}
.ws49{word-spacing:0.054000px;}
.ws145{word-spacing:0.096000px;}
.ws1a{word-spacing:0.108000px;}
.ws136{word-spacing:0.144000px;}
.ws48{word-spacing:0.162000px;}
.ws126{word-spacing:0.192000px;}
.ws80{word-spacing:0.210600px;}
.ws47{word-spacing:0.216000px;}
.ws142{word-spacing:0.240000px;}
.ws2b{word-spacing:0.270000px;}
.ws12{word-spacing:0.294000px;}
.ws24{word-spacing:0.324000px;}
.wsf{word-spacing:0.378000px;}
.ws17{word-spacing:0.420000px;}
.wsb3{word-spacing:0.432000px;}
.wsaf{word-spacing:0.486000px;}
.ws5c{word-spacing:0.540000px;}
.ws144{word-spacing:0.576000px;}
.ws11d{word-spacing:0.648000px;}
.ws115{word-spacing:0.702000px;}
.wsae{word-spacing:0.810000px;}
.ws2c{word-spacing:0.864000px;}
.ws54{word-spacing:0.918000px;}
.ws3c{word-spacing:0.972000px;}
.ws128{word-spacing:1.008000px;}
.wsc5{word-spacing:1.134000px;}
.ws114{word-spacing:1.188000px;}
.ws6b{word-spacing:1.283187px;}
.ws11c{word-spacing:1.350000px;}
.wsf1{word-spacing:1.458000px;}
.wsb5{word-spacing:1.512000px;}
.ws35{word-spacing:1.566000px;}
.ws138{word-spacing:1.584000px;}
.ws111{word-spacing:1.620000px;}
.ws13{word-spacing:1.638000px;}
.ws112{word-spacing:1.674000px;}
.ws120{word-spacing:1.782000px;}
.wse9{word-spacing:1.836000px;}
.ws3f{word-spacing:1.890000px;}
.ws8f{word-spacing:1.944000px;}
.ws9{word-spacing:1.980000px;}
.ws29{word-spacing:1.998000px;}
.ws106{word-spacing:2.052000px;}
.wsc{word-spacing:2.106000px;}
.ws58{word-spacing:2.160000px;}
.ws46{word-spacing:2.214000px;}
.ws137{word-spacing:2.256000px;}
.ws2f{word-spacing:2.268000px;}
.wsa{word-spacing:2.310000px;}
.wsb2{word-spacing:2.322000px;}
.ws37{word-spacing:2.376000px;}
.wsd{word-spacing:2.394000px;}
.wsb1{word-spacing:2.430000px;}
.wse{word-spacing:2.640000px;}
.ws11e{word-spacing:2.646000px;}
.ws9f{word-spacing:2.700000px;}
.ws12b{word-spacing:2.736000px;}
.ws41{word-spacing:2.754000px;}
.ws56{word-spacing:2.805000px;}
.wsa0{word-spacing:2.808000px;}
.ws15{word-spacing:2.856000px;}
.ws85{word-spacing:2.862000px;}
.ws121{word-spacing:2.916000px;}
.ws139{word-spacing:2.928000px;}
.ws20{word-spacing:2.970000px;}
.ws4c{word-spacing:3.024000px;}
.ws18{word-spacing:3.066000px;}
.ws1d{word-spacing:3.078000px;}
.ws3a{word-spacing:3.132000px;}
.ws77{word-spacing:3.148200px;}
.ws12e{word-spacing:3.168000px;}
.ws118{word-spacing:3.186000px;}
.ws59{word-spacing:3.294000px;}
.wsa1{word-spacing:3.300000px;}
.ws12d{word-spacing:3.312000px;}
.ws42{word-spacing:3.348000px;}
.ws5a{word-spacing:3.402000px;}
.ws8{word-spacing:3.492000px;}
.ws50{word-spacing:3.510000px;}
.ws143{word-spacing:3.552000px;}
.ws38{word-spacing:3.564000px;}
.ws16{word-spacing:3.570000px;}
.ws4d{word-spacing:3.618000px;}
.ws125{word-spacing:3.672000px;}
.ws12c{word-spacing:3.696000px;}
.ws40{word-spacing:3.780000px;}
.ws146{word-spacing:3.792000px;}
.ws55{word-spacing:3.888000px;}
.ws9e{word-spacing:3.942000px;}
.ws23{word-spacing:3.960000px;}
.wsc6{word-spacing:3.996000px;}
.ws129{word-spacing:4.032000px;}
.ws10a{word-spacing:4.104000px;}
.ws43{word-spacing:4.212000px;}
.ws7{word-spacing:4.248000px;}
.ws36{word-spacing:4.266000px;}
.ws27{word-spacing:4.320000px;}
.ws8e{word-spacing:4.428000px;}
.ws113{word-spacing:4.482000px;}
.ws3b{word-spacing:4.590000px;}
.ws14{word-spacing:4.620000px;}
.ws5b{word-spacing:4.644000px;}
.ws127{word-spacing:4.656000px;}
.ws119{word-spacing:4.698000px;}
.ws130{word-spacing:4.704000px;}
.ws2a{word-spacing:4.752000px;}
.ws13d{word-spacing:4.800000px;}
.ws57{word-spacing:4.914000px;}
.ws13f{word-spacing:4.944000px;}
.ws11b{word-spacing:4.968000px;}
.ws134{word-spacing:4.992000px;}
.ws10{word-spacing:4.998000px;}
.ws86{word-spacing:5.022000px;}
.ws28{word-spacing:5.076000px;}
.ws140{word-spacing:5.088000px;}
.ws135{word-spacing:5.136000px;}
.ws51{word-spacing:5.184000px;}
.ws12a{word-spacing:5.232000px;}
.ws8d{word-spacing:5.238000px;}
.ws13e{word-spacing:5.280000px;}
.ws1e{word-spacing:5.346000px;}
.wsb4{word-spacing:5.400000px;}
.ws32{word-spacing:5.454000px;}
.wsb0{word-spacing:5.508000px;}
.ws1f{word-spacing:5.562000px;}
.ws3d{word-spacing:5.724000px;}
.ws4a{word-spacing:5.778000px;}
.ws124{word-spacing:5.832000px;}
.ws30{word-spacing:5.886000px;}
.ws1b{word-spacing:5.940000px;}
.ws2d{word-spacing:5.994000px;}
.ws7e{word-spacing:6.026400px;}
.ws31{word-spacing:6.048000px;}
.ws122{word-spacing:6.264000px;}
.ws1c{word-spacing:6.318000px;}
.ws11a{word-spacing:6.480000px;}
.ws44{word-spacing:6.534000px;}
.ws53{word-spacing:6.588000px;}
.ws45{word-spacing:6.696000px;}
.ws3e{word-spacing:6.858000px;}
.ws52{word-spacing:7.020000px;}
.ws4b{word-spacing:7.182000px;}
.ws21{word-spacing:7.344000px;}
.ws4e{word-spacing:7.398000px;}
.wse6{word-spacing:7.560000px;}
.ws11f{word-spacing:7.776000px;}
.wsea{word-spacing:7.938000px;}
.ws13a{word-spacing:8.160000px;}
.ws11{word-spacing:8.358000px;}
.ws84{word-spacing:16.293000px;}
.ws61{word-spacing:16.842600px;}
.ws68{word-spacing:19.307105px;}
.ws6d{word-spacing:19.337400px;}
.ws7f{word-spacing:25.110000px;}
.ws10c{word-spacing:26.589600px;}
.ws67{word-spacing:27.036178px;}
.wsf9{word-spacing:35.699400px;}
.wsa4{word-spacing:44.208000px;}
.ws71{word-spacing:47.444400px;}
.ws6e{word-spacing:47.449800px;}
.wsf5{word-spacing:48.200400px;}
.ws6c{word-spacing:49.623734px;}
.ws79{word-spacing:59.961600px;}
.ws7d{word-spacing:68.288400px;}
.ws6a{word-spacing:69.579946px;}
.ws62{word-spacing:69.688350px;}
.ws110{word-spacing:75.924000px;}
.ws7a{word-spacing:88.295400px;}
.ws81{word-spacing:91.962000px;}
.ws7c{word-spacing:98.242200px;}
.ws78{word-spacing:113.421600px;}
.ws82{word-spacing:115.835400px;}
.wsc8{word-spacing:117.158400px;}
.wsc9{word-spacing:118.659600px;}
.wsa2{word-spacing:123.984000px;}
.ws76{word-spacing:126.954000px;}
.wsa3{word-spacing:134.832000px;}
.ws69{word-spacing:138.626123px;}
.wsc2{word-spacing:141.782400px;}
.wsb9{word-spacing:152.169600px;}
.ws87{word-spacing:177.174000px;}
.wsc3{word-spacing:195.264000px;}
.wsc0{word-spacing:198.580800px;}
.ws70{word-spacing:200.920500px;}
.ws93{word-spacing:207.552000px;}
.ws88{word-spacing:210.006000px;}
.ws103{word-spacing:218.818800px;}
.ws83{word-spacing:219.709800px;}
.wsa6{word-spacing:224.544000px;}
.ws9b{word-spacing:227.616000px;}
.wsc1{word-spacing:239.424000px;}
.wsb8{word-spacing:243.888000px;}
.ws96{word-spacing:261.984000px;}
.ws99{word-spacing:273.408000px;}
.wscb{word-spacing:278.518500px;}
.wsd7{word-spacing:279.493200px;}
.ws9d{word-spacing:281.760000px;}
.wsd4{word-spacing:291.934800px;}
.wsa7{word-spacing:295.593600px;}
.ws9a{word-spacing:297.312000px;}
.ws97{word-spacing:297.988800px;}
.wsd6{word-spacing:301.417200px;}
.ws98{word-spacing:304.368000px;}
.ws8a{word-spacing:306.828000px;}
.wsd5{word-spacing:306.946800px;}
.ws9c{word-spacing:315.120000px;}
.wsfc{word-spacing:319.515600px;}
.wsd0{word-spacing:320.355000px;}
.ws10b{word-spacing:327.888000px;}
.wsd3{word-spacing:336.214800px;}
.wsaa{word-spacing:381.504000px;}
.wscf{word-spacing:387.463500px;}
.wsfa{word-spacing:393.121200px;}
.wsca{word-spacing:396.252000px;}
.wsfd{word-spacing:409.320000px;}
.ws89{word-spacing:417.042000px;}
.wsab{word-spacing:417.696000px;}
.ws100{word-spacing:420.043800px;}
.wsa5{word-spacing:420.672000px;}
.wsad{word-spacing:430.944000px;}
.wsa8{word-spacing:443.995200px;}
.wsac{word-spacing:444.624000px;}
.wsa9{word-spacing:454.665600px;}
.wsf8{word-spacing:470.445900px;}
.wsfb{word-spacing:481.828500px;}
.wsdd{word-spacing:524.832000px;}
.wsbc{word-spacing:562.896000px;}
.ws10d{word-spacing:578.160000px;}
.wsbd{word-spacing:591.264000px;}
.wsbb{word-spacing:611.145600px;}
.wse5{word-spacing:618.864000px;}
.wsba{word-spacing:620.491200px;}
.wsbe{word-spacing:630.192000px;}
.wsec{word-spacing:631.392000px;}
.wsf4{word-spacing:633.321600px;}
.ws109{word-spacing:636.930000px;}
.ws5d{word-spacing:648.835902px;}
.ws64{word-spacing:661.985129px;}
.wse2{word-spacing:663.024000px;}
.wsde{word-spacing:667.488000px;}
.ws102{word-spacing:668.898000px;}
.ws5f{word-spacing:674.892000px;}
.wse0{word-spacing:688.454400px;}
.wse1{word-spacing:713.392200px;}
.ws22{word-spacing:722.104800px;}
.wsb7{word-spacing:725.040000px;}
.wse4{word-spacing:751.190400px;}
.wsf2{word-spacing:761.577600px;}
.wsed{word-spacing:781.593600px;}
.wsef{word-spacing:787.540800px;}
.wse3{word-spacing:788.452800px;}
.ws10f{word-spacing:830.500800px;}
.wsf3{word-spacing:907.776000px;}
.wsbf{word-spacing:915.504000px;}
.ws10e{word-spacing:1552.752000px;}
.wsee{word-spacing:1639.104000px;}
._15{margin-left:-1646.892000px;}
._79{margin-left:-469.218000px;}
._33{margin-left:-276.843000px;}
._3e{margin-left:-185.718000px;}
._75{margin-left:-160.650000px;}
._74{margin-left:-27.901800px;}
._a{margin-left:-26.628000px;}
._3{margin-left:-7.110000px;}
._e{margin-left:-5.238000px;}
._0{margin-left:-4.237800px;}
._4{margin-left:-2.192400px;}
._2{margin-left:-1.170000px;}
._5{width:1.275000px;}
._9{width:2.436000px;}
._8{width:3.742200px;}
._c{width:4.757400px;}
._b{width:5.823600px;}
._1{width:7.250400px;}
._7{width:8.799000px;}
._81{width:10.052400px;}
._42{width:13.839600px;}
._49{width:20.697600px;}
._43{width:22.080000px;}
._48{width:23.349000px;}
._35{width:27.918000px;}
._37{width:29.754000px;}
._14{width:30.931200px;}
._f{width:35.618400px;}
._13{width:37.816200px;}
._57{width:46.176000px;}
._4c{width:47.455200px;}
._2e{width:55.991143px;}
._2f{width:61.497112px;}
._20{width:62.806800px;}
._16{width:63.930600px;}
._7d{width:66.245743px;}
._21{width:70.518600px;}
._32{width:75.751137px;}
._3c{width:78.678000px;}
._1d{width:82.717200px;}
._6{width:84.721800px;}
._51{width:87.552000px;}
._7c{width:88.838491px;}
._1c{width:90.744300px;}
._4b{width:108.181800px;}
._30{width:118.888849px;}
._3b{width:120.992400px;}
._5c{width:123.936000px;}
._31{width:125.730713px;}
._23{width:128.410308px;}
._1e{width:129.940200px;}
._4e{width:133.459231px;}
._11{width:136.117800px;}
._25{width:137.775413px;}
._2d{width:141.743816px;}
._24{width:144.132039px;}
._22{width:146.552369px;}
._5d{width:149.145900px;}
._1a{width:150.182100px;}
._63{width:153.549000px;}
._10{width:154.733400px;}
._47{width:158.115631px;}
._64{width:160.304400px;}
._5a{width:162.249900px;}
._5b{width:163.574400px;}
._5e{width:167.482200px;}
._59{width:169.824000px;}
._41{width:171.741600px;}
._65{width:175.433400px;}
._39{width:177.600600px;}
._29{width:179.921081px;}
._45{width:190.328400px;}
._2b{width:197.172970px;}
._62{width:202.239000px;}
._61{width:207.039631px;}
._7f{width:209.800800px;}
._53{width:210.876000px;}
._36{width:214.784284px;}
._26{width:216.966353px;}
._12{width:221.427000px;}
._2c{width:224.676059px;}
._58{width:226.237800px;}
._1b{width:228.776400px;}
._3a{width:231.390000px;}
._28{width:233.087057px;}
._50{width:242.808000px;}
._7b{width:248.346000px;}
._1f{width:253.410000px;}
._54{width:259.680000px;}
._7e{width:268.180123px;}
._3f{width:277.273800px;}
._60{width:285.552000px;}
._4f{width:290.125800px;}
._27{width:292.278636px;}
._52{width:301.500000px;}
._55{width:310.044000px;}
._6e{width:311.558400px;}
._72{width:318.276000px;}
._73{width:320.790600px;}
._71{width:322.299000px;}
._70{width:326.473200px;}
._6f{width:327.510000px;}
._34{width:331.695000px;}
._38{width:336.940800px;}
._3d{width:339.450000px;}
._19{width:352.147500px;}
._56{width:360.864000px;}
._6d{width:369.025200px;}
._7a{width:384.318000px;}
._68{width:386.815500px;}
._69{width:403.906500px;}
._18{width:419.823000px;}
._2a{width:429.683562px;}
._66{width:436.428000px;}
._67{width:458.743500px;}
._5f{width:460.512000px;}
._6b{width:461.619000px;}
._4a{width:464.580000px;}
._6a{width:467.815500px;}
._6c{width:480.006000px;}
._44{width:489.510000px;}
._4d{width:592.137000px;}
._78{width:694.333800px;}
._76{width:697.536000px;}
._40{width:845.132400px;}
._46{width:876.225600px;}
._d{width:894.661800px;}
._77{width:900.301800px;}
._80{width:1006.776000px;}
._17{width:1171.702800px;}
.fc5{color:rgb(105,62,21);}
.fc7{color:transparent;}
.fc4{color:rgb(150,109,66);}
.fc3{color:rgb(91,50,12);}
.fc2{color:rgb(120,76,33);}
.fc6{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs6{font-size:39.000000px;}
.fs14{font-size:40.355400px;}
.fs13{font-size:40.437000px;}
.fs10{font-size:40.500000px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs8{font-size:50.373600px;}
.fse{font-size:51.000000px;}
.fs15{font-size:53.807400px;}
.fs12{font-size:53.915400px;}
.fsd{font-size:54.000000px;}
.fsb{font-size:54.912600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsc{font-size:66.000000px;}
.fs9{font-size:67.987200px;}
.fsa{font-size:70.602000px;}
.fs0{font-size:72.000000px;}
.fs11{font-size:87.425400px;}
.fsf{font-size:87.562200px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y203{bottom:3.281100px;}
.y29e{bottom:4.171800px;}
.y140{bottom:4.358700px;}
.y147{bottom:4.359300px;}
.y2a2{bottom:4.359450px;}
.y296{bottom:4.359600px;}
.y2c6{bottom:4.359750px;}
.y14b{bottom:4.359900px;}
.y20e{bottom:4.483200px;}
.y13c{bottom:4.493852px;}
.y133{bottom:5.859750px;}
.y255{bottom:6.000450px;}
.y209{bottom:6.000750px;}
.y169{bottom:7.307400px;}
.y131{bottom:8.578500px;}
.y29c{bottom:8.812350px;}
.y20d{bottom:8.920350px;}
.y173{bottom:8.999100px;}
.y141{bottom:8.999250px;}
.y15a{bottom:8.999700px;}
.y146{bottom:8.999850px;}
.y2a3{bottom:9.000000px;}
.y295{bottom:9.000300px;}
.y14c{bottom:9.000600px;}
.y139{bottom:9.120705px;}
.y13b{bottom:9.126900px;}
.y254{bottom:10.453650px;}
.y208{bottom:10.453800px;}
.y132{bottom:10.500450px;}
.y168{bottom:17.999400px;}
.y2b1{bottom:19.503150px;}
.y29d{bottom:24.703050px;}
.y2ad{bottom:25.593150px;}
.y13a{bottom:26.350050px;}
.y16f{bottom:26.625750px;}
.y16a{bottom:26.625900px;}
.y137{bottom:29.064600px;}
.y29b{bottom:29.343600px;}
.y2b0{bottom:30.843150px;}
.y138{bottom:30.983400px;}
.y2ab{bottom:34.074900px;}
.y2aa{bottom:40.311900px;}
.y24{bottom:49.760250px;}
.y2b5{bottom:50.811900px;}
.y2a7{bottom:52.264950px;}
.y23{bottom:61.757250px;}
.y5{bottom:66.525004px;}
.y85{bottom:67.560300px;}
.yb3{bottom:68.341650px;}
.y1fc{bottom:71.249850px;}
.y22{bottom:73.754250px;}
.y253{bottom:74.589000px;}
.y1f3{bottom:75.703050px;}
.y19a{bottom:76.570200px;}
.y1ba{bottom:77.351400px;}
.y256{bottom:80.589450px;}
.y252{bottom:80.607450px;}
.y3d7{bottom:84.440850px;}
.y84{bottom:85.555800px;}
.ye1{bottom:86.041350px;}
.y2f4{bottom:86.326950px;}
.yb2{bottom:86.337150px;}
.y129{bottom:87.694500px;}
.y349{bottom:88.106700px;}
.y3a3{bottom:88.940850px;}
.y2c5{bottom:89.032500px;}
.y2c4{bottom:89.045700px;}
.y308{bottom:92.554650px;}
.y244{bottom:92.564250px;}
.y370{bottom:92.895600px;}
.y10c{bottom:93.228000px;}
.y2c7{bottom:93.392250px;}
.y27e{bottom:94.188600px;}
.y199{bottom:94.565700px;}
.y1b9{bottom:95.346900px;}
.y171{bottom:96.243750px;}
.y172{bottom:96.247500px;}
.y4{bottom:97.125005px;}
.y2c8{bottom:98.032800px;}
.y251{bottom:98.602950px;}
.y1ee{bottom:99.142950px;}
.y25{bottom:100.243950px;}
.y3d6{bottom:100.340850px;}
.y174{bottom:100.605900px;}
.y83{bottom:103.551300px;}
.ye0{bottom:104.036850px;}
.y2f3{bottom:104.322450px;}
.yb1{bottom:104.332650px;}
.y175{bottom:105.246600px;}
.y3a2{bottom:105.440850px;}
.y128{bottom:105.690000px;}
.y348{bottom:106.102200px;}
.y36f{bottom:109.095600px;}
.y2fb{bottom:109.889250px;}
.y307{bottom:110.550150px;}
.y10b{bottom:111.223500px;}
.y27d{bottom:112.184100px;}
.y198{bottom:112.561200px;}
.y243{bottom:114.000000px;}
.y3d5{bottom:116.240850px;}
.y250{bottom:116.598450px;}
.y1ed{bottom:117.138450px;}
.y82{bottom:121.546800px;}
.y3a1{bottom:121.940850px;}
.ydf{bottom:122.032350px;}
.y2f2{bottom:122.317950px;}
.yb0{bottom:122.328150px;}
.y1b8{bottom:122.773200px;}
.y127{bottom:123.685500px;}
.y347{bottom:124.097700px;}
.y36e{bottom:125.295600px;}
.y2fa{bottom:127.884750px;}
.y306{bottom:128.545650px;}
.y27c{bottom:130.179600px;}
.y197{bottom:130.556700px;}
.y3d4{bottom:132.140850px;}
.y242{bottom:133.368000px;}
.y2c3{bottom:134.554200px;}
.y24f{bottom:134.593950px;}
.y1ec{bottom:135.133950px;}
.y10a{bottom:137.724000px;}
.y3a0{bottom:138.440850px;}
.y21{bottom:139.264499px;}
.y81{bottom:139.542300px;}
.yde{bottom:140.027850px;}
.y2f1{bottom:140.313450px;}
.yaf{bottom:140.323650px;}
.y16e{bottom:140.761500px;}
.y16c{bottom:140.768400px;}
.y36d{bottom:141.495600px;}
.y126{bottom:141.681000px;}
.y346{bottom:142.093200px;}
.y1b7{bottom:142.141200px;}
.y54{bottom:143.703450px;}
.y2f9{bottom:145.880250px;}
.y3d3{bottom:148.040850px;}
.y170{bottom:148.070250px;}
.y27b{bottom:148.175100px;}
.y2c2{bottom:152.549700px;}
.y24e{bottom:152.589450px;}
.y241{bottom:152.736000px;}
.y1eb{bottom:153.129450px;}
.y39f{bottom:154.940850px;}
.y196{bottom:157.060650px;}
.y80{bottom:157.537800px;}
.y36c{bottom:157.695600px;}
.ydd{bottom:158.023350px;}
.y2f0{bottom:158.308950px;}
.yae{bottom:158.319150px;}
.y16d{bottom:158.762250px;}
.y125{bottom:159.676500px;}
.y345{bottom:160.088700px;}
.y305{bottom:161.427450px;}
.y1b6{bottom:161.509200px;}
.y53{bottom:161.698950px;}
.y2f8{bottom:163.875750px;}
.y3d2{bottom:163.940850px;}
.y109{bottom:164.224500px;}
.y27a{bottom:166.170600px;}
.y2c1{bottom:170.545200px;}
.y1ea{bottom:171.124950px;}
.y39e{bottom:171.440850px;}
.y23f{bottom:172.104000px;}
.y36b{bottom:173.895600px;}
.y7f{bottom:175.533300px;}
.ydc{bottom:176.018850px;}
.y2ef{bottom:176.304450px;}
.yad{bottom:176.314650px;}
.y124{bottom:177.672000px;}
.y344{bottom:178.084200px;}
.y24d{bottom:179.093400px;}
.y23e{bottom:179.604000px;}
.y52{bottom:179.694450px;}
.y3d1{bottom:179.840850px;}
.y1b5{bottom:180.877200px;}
.y279{bottom:184.166100px;}
.y240{bottom:187.104000px;}
.y39d{bottom:187.940850px;}
.y2c0{bottom:188.540700px;}
.y1e9{bottom:189.120450px;}
.y36a{bottom:190.095600px;}
.y108{bottom:190.725000px;}
.y7e{bottom:193.528800px;}
.ydb{bottom:194.014350px;}
.y167{bottom:194.278500px;}
.y2ee{bottom:194.299950px;}
.yac{bottom:194.310150px;}
.y166{bottom:194.312700px;}
.y123{bottom:195.667500px;}
.y3d0{bottom:196.040850px;}
.y343{bottom:196.079700px;}
.y195{bottom:196.325100px;}
.y2f7{bottom:196.757550px;}
.y18{bottom:196.933500px;}
.y51{bottom:197.689950px;}
.y1b4{bottom:200.245200px;}
.y278{bottom:202.161600px;}
.y39c{bottom:204.440850px;}
.y369{bottom:206.295600px;}
.y23d{bottom:206.472000px;}
.y1e8{bottom:207.133950px;}
.y107{bottom:208.720500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y7d{bottom:211.524300px;}
.y3cf{bottom:211.940850px;}
.yda{bottom:212.009850px;}
.y16b{bottom:212.277900px;}
.y2ed{bottom:212.295450px;}
.yab{bottom:212.305650px;}
.y122{bottom:213.663000px;}
.y342{bottom:214.075200px;}
.y194{bottom:214.320600px;}
.y2bf{bottom:215.044650px;}
.y50{bottom:215.685450px;}
.y24c{bottom:218.375700px;}
.y1b3{bottom:219.613200px;}
.y277{bottom:220.157100px;}
.y39b{bottom:220.940850px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y368{bottom:222.495600px;}
.y1e7{bottom:225.129450px;}
.y23b{bottom:225.840000px;}
.y106{bottom:226.716000px;}
.y3ce{bottom:227.840850px;}
.y7c{bottom:229.519800px;}
.yd9{bottom:230.005350px;}
.y2ec{bottom:230.290950px;}
.yaa{bottom:230.301150px;}
.y121{bottom:231.658500px;}
.y341{bottom:232.070700px;}
.y23a{bottom:233.338200px;}
.y4f{bottom:233.680950px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y24b{bottom:236.371200px;}
.y39a{bottom:237.440850px;}
.y276{bottom:238.152600px;}
.y367{bottom:238.695600px;}
.y1b2{bottom:238.981200px;}
.y23c{bottom:240.840000px;}
.y1e6{bottom:243.124950px;}
.y3cd{bottom:244.040850px;}
.y105{bottom:244.711500px;}
.y7b{bottom:247.366800px;}
.ya9{bottom:248.296650px;}
.y120{bottom:249.654000px;}
.y340{bottom:250.066200px;}
.y193{bottom:251.256150px;}
.y4e{bottom:251.676450px;}
.y165{bottom:253.078200px;}
.y399{bottom:253.940850px;}
.y2be{bottom:254.337900px;}
.y24a{bottom:254.366700px;}
.y366{bottom:254.895600px;}
.y275{bottom:256.148100px;}
.yd8{bottom:256.505850px;}
.y2eb{bottom:256.794900px;}
.y1b1{bottom:258.349200px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y3cc{bottom:259.940850px;}
.y238{bottom:260.206200px;}
.y1e5{bottom:261.120450px;}
.y104{bottom:262.707000px;}
.y7a{bottom:265.213800px;}
.y192{bottom:266.256150px;}
.ya8{bottom:266.292150px;}
.y11f{bottom:267.649500px;}
.y237{bottom:267.704400px;}
.y33f{bottom:268.061700px;}
.y4d{bottom:269.671950px;}
.y398{bottom:270.440850px;}
.y164{bottom:271.073700px;}
.y365{bottom:271.095600px;}
.y2bd{bottom:272.333400px;}
.y249{bottom:272.362200px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y239{bottom:275.206200px;}
.y3cb{bottom:275.840850px;}
.y1b0{bottom:277.717200px;}
.y1e4{bottom:279.115950px;}
.y103{bottom:280.702500px;}
.y274{bottom:282.652050px;}
.yd7{bottom:283.006350px;}
.y79{bottom:283.060800px;}
.ya7{bottom:284.287650px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y191{bottom:285.624150px;}
.y33e{bottom:286.057200px;}
.y397{bottom:286.940850px;}
.y364{bottom:287.295600px;}
.y2ea{bottom:287.550750px;}
.y4c{bottom:287.667450px;}
.y163{bottom:289.069200px;}
.y2bc{bottom:290.328900px;}
.y248{bottom:290.357700px;}
.y3ca{bottom:292.040850px;}
.y11e{bottom:294.153450px;}
.y235{bottom:294.572400px;}
.y1af{bottom:297.085200px;}
.y102{bottom:298.698000px;}
.y190{bottom:300.624150px;}
.y78{bottom:300.907800px;}
.yd6{bottom:301.001850px;}
.y234{bottom:302.070750px;}
.ya6{bottom:302.283150px;}
.y396{bottom:303.440850px;}
.y363{bottom:303.495600px;}
.y33d{bottom:304.052700px;}
.y1e3{bottom:305.619900px;}
.y4b{bottom:305.662950px;}
.y162{bottom:307.064700px;}
.y3c9{bottom:307.940850px;}
.y2bb{bottom:308.324400px;}
.y247{bottom:308.353200px;}
.y236{bottom:309.572400px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y101{bottom:316.693500px;}
.y77{bottom:318.754800px;}
.yd5{bottom:318.997350px;}
.y362{bottom:319.695600px;}
.y395{bottom:319.940850px;}
.ya5{bottom:320.278650px;}
.y18f{bottom:321.516150px;}
.y273{bottom:321.929850px;}
.y33c{bottom:322.048200px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y4a{bottom:323.658450px;}
.y3c8{bottom:323.840850px;}
.y1ae{bottom:324.133200px;}
.y11d{bottom:324.909300px;}
.y161{bottom:325.060200px;}
.y189{bottom:325.884150px;}
.y2ba{bottom:326.319900px;}
.y1e2{bottom:327.059100px;}
.y232{bottom:328.938750px;}
.y2e9{bottom:332.739450px;}
.y100{bottom:334.689000px;}
.y361{bottom:335.895600px;}
.y231{bottom:336.436950px;}
.y394{bottom:336.440850px;}
.y76{bottom:336.601800px;}
.yd4{bottom:336.992850px;}
.ya4{bottom:338.274150px;}
.y272{bottom:339.925350px;}
.y3c7{bottom:340.040850px;}
.y33b{bottom:340.043700px;}
.y188{bottom:340.884150px;}
.y246{bottom:341.234400px;}
.y49{bottom:341.653950px;}
.y18e{bottom:342.408150px;}
.y160{bottom:343.055700px;}
.y233{bottom:343.938750px;}
.y2b9{bottom:344.315400px;}
.y1e1{bottom:346.427100px;}
.yf{bottom:348.133500px;}
.y18d{bottom:349.908150px;}
.y2e8{bottom:350.734950px;}
.y360{bottom:352.095600px;}
.yff{bottom:352.684500px;}
.y393{bottom:352.940850px;}
.y75{bottom:354.448800px;}
.yd3{bottom:354.988350px;}
.y3c6{bottom:355.940850px;}
.ya3{bottom:356.269650px;}
.y271{bottom:357.920850px;}
.y33a{bottom:358.039200px;}
.y48{bottom:359.649450px;}
.y1ad{bottom:359.867250px;}
.y15f{bottom:361.051200px;}
.y2b8{bottom:362.310900px;}
.y22f{bottom:363.304950px;}
.y1e0{bottom:365.795100px;}
.y35f{bottom:368.295600px;}
.y2e7{bottom:368.730450px;}
.y392{bottom:369.440850px;}
.y11c{bottom:370.134150px;}
.yfe{bottom:370.680000px;}
.y22e{bottom:370.803150px;}
.y3c5{bottom:371.840850px;}
.y74{bottom:372.295800px;}
.yd2{bottom:372.983850px;}
.ya2{bottom:374.265150px;}
.y270{bottom:375.916350px;}
.y339{bottom:376.034700px;}
.y18c{bottom:376.776150px;}
.y47{bottom:377.644950px;}
.y230{bottom:378.304950px;}
.y15e{bottom:379.046700px;}
.y2b7{bottom:380.306400px;}
.y35e{bottom:384.495600px;}
.y1de{bottom:385.163100px;}
.y391{bottom:385.940850px;}
.y2e6{bottom:386.725950px;}
.ye{bottom:386.785499px;}
.y3c4{bottom:387.740850px;}
.y11b{bottom:388.129650px;}
.yfd{bottom:388.675500px;}
.y73{bottom:390.142800px;}
.yd1{bottom:390.979350px;}
.ya1{bottom:392.260650px;}
.y1dd{bottom:392.656350px;}
.y26f{bottom:393.911850px;}
.y338{bottom:394.030200px;}
.y18b{bottom:396.144150px;}
.y1ac{bottom:396.454200px;}
.y15d{bottom:397.042200px;}
.y22c{bottom:397.671150px;}
.y2a6{bottom:400.065000px;}
.y1df{bottom:400.163100px;}
.y35d{bottom:400.695600px;}
.y390{bottom:402.440850px;}
.y3c3{bottom:403.640850px;}
.y2b4{bottom:404.237700px;}
.y2e5{bottom:404.721450px;}
.y22b{bottom:405.169500px;}
.y159{bottom:406.038000px;}
.y11a{bottom:406.125150px;}
.yfc{bottom:406.671000px;}
.y72{bottom:407.989800px;}
.yd{bottom:408.044999px;}
.y46{bottom:408.400950px;}
.y2af{bottom:408.872400px;}
.y2b6{bottom:408.876150px;}
.yd0{bottom:408.974850px;}
.ya0{bottom:410.256150px;}
.y15b{bottom:410.397150px;}
.y337{bottom:412.025700px;}
.y22d{bottom:412.671150px;}
.y1ab{bottom:414.449700px;}
.y15c{bottom:415.037700px;}
.y158{bottom:415.042200px;}
.y18a{bottom:415.512150px;}
.y35c{bottom:416.895600px;}
.y38f{bottom:418.940850px;}
.y1db{bottom:419.524350px;}
.y3c2{bottom:419.540850px;}
.y2ae{bottom:419.564400px;}
.y2a5{bottom:419.565000px;}
.y26e{bottom:420.415800px;}
.y2e4{bottom:422.716950px;}
.y119{bottom:424.120650px;}
.yfb{bottom:424.666500px;}
.y71{bottom:425.836800px;}
.y2b3{bottom:426.269700px;}
.ycf{bottom:426.970350px;}
.y1da{bottom:427.024350px;}
.y9f{bottom:428.251650px;}
.y336{bottom:430.021200px;}
.y2ac{bottom:430.908150px;}
.y304{bottom:431.882700px;}
.y229{bottom:432.037500px;}
.y1aa{bottom:432.445200px;}
.y157{bottom:433.037700px;}
.y35b{bottom:433.095600px;}
.y1dc{bottom:434.524350px;}
.y187{bottom:434.880150px;}
.y38e{bottom:435.440850px;}
.y3c1{bottom:435.740850px;}
.y2f6{bottom:438.195300px;}
.y228{bottom:439.535700px;}
.y2e3{bottom:440.712450px;}
.y2a9{bottom:441.318900px;}
.y26d{bottom:441.860400px;}
.y118{bottom:442.116150px;}
.yfa{bottom:442.662000px;}
.y70{bottom:443.683800px;}
.yce{bottom:444.965850px;}
.y2b2{bottom:446.236200px;}
.y9e{bottom:446.247150px;}
.y22a{bottom:447.037500px;}
.y335{bottom:448.016700px;}
.y35a{bottom:449.295600px;}
.y303{bottom:449.878200px;}
.y186{bottom:449.880150px;}
.y1a9{bottom:450.440700px;}
.y2a8{bottom:450.876900px;}
.y3c0{bottom:451.640850px;}
.y38d{bottom:451.940850px;}
.y1d8{bottom:453.892350px;}
.y43{bottom:455.096400px;}
.y156{bottom:459.541650px;}
.y117{bottom:460.111650px;}
.yf9{bottom:460.657500px;}
.y26c{bottom:461.228400px;}
.y1d7{bottom:461.392350px;}
.y6f{bottom:461.530800px;}
.ycd{bottom:462.961350px;}
.y9d{bottom:464.242650px;}
.y183{bottom:464.880150px;}
.y359{bottom:465.495600px;}
.y334{bottom:466.012200px;}
.y226{bottom:466.403700px;}
.y2e2{bottom:467.216550px;}
.y3bf{bottom:467.540850px;}
.y302{bottom:467.873700px;}
.y1a8{bottom:468.436200px;}
.y38c{bottom:468.440850px;}
.y1d9{bottom:468.892350px;}
.y180{bottom:472.380150px;}
.y2a1{bottom:472.584000px;}
.y42{bottom:473.733600px;}
.y225{bottom:473.901900px;}
.y116{bottom:478.107150px;}
.yf8{bottom:478.653000px;}
.y6e{bottom:479.377800px;}
.y182{bottom:479.880150px;}
.y26a{bottom:480.596400px;}
.ycc{bottom:480.956850px;}
.y227{bottom:481.403700px;}
.y2a4{bottom:481.584000px;}
.y2a0{bottom:481.585350px;}
.y358{bottom:481.695600px;}
.y9c{bottom:482.238150px;}
.y3be{bottom:483.440850px;}
.y333{bottom:484.007700px;}
.y38b{bottom:484.940850px;}
.y301{bottom:485.869200px;}
.y1a7{bottom:486.431700px;}
.y17f{bottom:487.380150px;}
.y269{bottom:488.096400px;}
.y1d5{bottom:488.260350px;}
.y2e1{bottom:488.668350px;}
.y181{bottom:494.880150px;}
.y26b{bottom:495.596400px;}
.y1d4{bottom:495.760350px;}
.y41{bottom:495.978600px;}
.y115{bottom:496.102650px;}
.yf7{bottom:496.648500px;}
.y6d{bottom:497.224800px;}
.y357{bottom:497.895600px;}
.y155{bottom:498.806100px;}
.ycb{bottom:498.952350px;}
.y3bd{bottom:499.340850px;}
.y9b{bottom:500.233650px;}
.y223{bottom:500.769900px;}
.y38a{bottom:501.440850px;}
.y332{bottom:502.003200px;}
.yc{bottom:502.864502px;}
.y1d6{bottom:503.260350px;}
.y300{bottom:503.864700px;}
.y1a6{bottom:504.427200px;}
.y29a{bottom:505.596000px;}
.y153{bottom:507.801000px;}
.y2e0{bottom:508.036350px;}
.y222{bottom:508.268100px;}
.y40{bottom:509.481750px;}
.y185{bottom:509.880150px;}
.y356{bottom:514.095600px;}
.y114{bottom:514.098150px;}
.yf6{bottom:514.644000px;}
.y268{bottom:514.964400px;}
.y6c{bottom:515.071800px;}
.y3bc{bottom:515.240850px;}
.y224{bottom:515.769900px;}
.y154{bottom:516.801600px;}
.y152{bottom:516.810600px;}
.yca{bottom:516.947850px;}
.y389{bottom:517.940850px;}
.y9a{bottom:518.229150px;}
.y331{bottom:519.998700px;}
.yb{bottom:520.864502px;}
.y2ff{bottom:521.860200px;}
.y1d2{bottom:522.628350px;}
.y184{bottom:524.880150px;}
.y29f{bottom:525.095850px;}
.y299{bottom:525.105300px;}
.y2de{bottom:527.404350px;}
.y1d1{bottom:530.128350px;}
.y355{bottom:530.295600px;}
.y1a5{bottom:530.931000px;}
.y3bb{bottom:531.140850px;}
.y3d{bottom:531.690600px;}
.y113{bottom:532.093650px;}
.yf5{bottom:532.639500px;}
.y6b{bottom:532.918800px;}
.y388{bottom:534.440850px;}
.y151{bottom:534.806100px;}
.y2dd{bottom:534.904350px;}
.yc9{bottom:534.943350px;}
.y220{bottom:535.136100px;}
.y99{bottom:536.224650px;}
.y267{bottom:537.020400px;}
.y1d3{bottom:537.628350px;}
.y330{bottom:537.994200px;}
.ya{bottom:538.864499px;}
.y2fe{bottom:539.855700px;}
.y2df{bottom:542.404350px;}
.y21f{bottom:542.634450px;}
.y14f{bottom:543.801000px;}
.y17e{bottom:544.248150px;}
.y266{bottom:544.520400px;}
.y3c{bottom:545.193600px;}
.y354{bottom:546.495600px;}
.y3ba{bottom:547.340850px;}
.y112{bottom:550.089150px;}
.y221{bottom:550.136100px;}
.yf4{bottom:550.635000px;}
.y6a{bottom:550.765800px;}
.y387{bottom:550.940850px;}
.y150{bottom:552.801600px;}
.y14e{bottom:552.806100px;}
.yc8{bottom:552.938850px;}
.y298{bottom:553.104300px;}
.y98{bottom:554.220150px;}
.y32f{bottom:555.989700px;}
.y9{bottom:556.864499px;}
.y1cf{bottom:556.996350px;}
.y2fd{bottom:557.851200px;}
.y3b{bottom:558.696600px;}
.y17d{bottom:559.248150px;}
.y1a4{bottom:561.687000px;}
.y14a{bottom:561.801000px;}
.y294{bottom:562.099500px;}
.y353{bottom:562.695600px;}
.y3b9{bottom:563.240850px;}
.y1ce{bottom:564.496350px;}
.y2dc{bottom:565.432350px;}
.y386{bottom:567.440850px;}
.y111{bottom:568.084650px;}
.y69{bottom:568.612800px;}
.yf3{bottom:568.630500px;}
.y179{bottom:568.932150px;}
.y21d{bottom:569.502450px;}
.y14d{bottom:570.801600px;}
.y149{bottom:570.803850px;}
.yc7{bottom:570.934350px;}
.y297{bottom:571.099800px;}
.y293{bottom:571.104300px;}
.y1d0{bottom:571.996350px;}
.y3a{bottom:572.199600px;}
.y97{bottom:572.215650px;}
.y32e{bottom:573.985200px;}
.y264{bottom:575.156400px;}
.y21c{bottom:577.000650px;}
.y17c{bottom:578.616150px;}
.y352{bottom:578.895600px;}
.y3b8{bottom:579.140850px;}
.y263{bottom:582.656400px;}
.y178{bottom:583.932150px;}
.y385{bottom:583.940850px;}
.y2fc{bottom:584.355150px;}
.y21e{bottom:584.502450px;}
.y39{bottom:585.702600px;}
.y110{bottom:586.080150px;}
.y68{bottom:586.459800px;}
.yf2{bottom:586.626000px;}
.y2db{bottom:588.460350px;}
.yc6{bottom:588.929850px;}
.y292{bottom:589.099800px;}
.y265{bottom:590.156400px;}
.y96{bottom:590.211150px;}
.y1cc{bottom:591.364350px;}
.y32d{bottom:591.980700px;}
.y17a{bottom:593.616150px;}
.y3b7{bottom:595.040850px;}
.y2da{bottom:595.960350px;}
.y145{bottom:596.809500px;}
.y1cb{bottom:598.864350px;}
.y38{bottom:599.205600px;}
.y384{bottom:600.440850px;}
.y245{bottom:601.104900px;}
.y21a{bottom:603.868650px;}
.y10f{bottom:604.075650px;}
.y67{bottom:604.306800px;}
.yf1{bottom:604.621500px;}
.y148{bottom:605.809350px;}
.y144{bottom:605.813250px;}
.y1cd{bottom:606.364350px;}
.yc5{bottom:606.925350px;}
.y1a3{bottom:606.930000px;}
.y351{bottom:607.851600px;}
.y95{bottom:608.206650px;}
.y17b{bottom:608.616150px;}
.y32c{bottom:609.976200px;}
.y3b6{bottom:611.240850px;}
.y219{bottom:611.371200px;}
.y37{bottom:612.708600px;}
.y262{bottom:612.728400px;}
.y291{bottom:615.603750px;}
.y383{bottom:616.940850px;}
.y21b{bottom:618.868650px;}
.y31b{bottom:618.936750px;}
.y10e{bottom:622.071150px;}
.y66{bottom:622.153800px;}
.yf0{bottom:622.617000px;}
.y2d8{bottom:622.828350px;}
.yc4{bottom:624.920850px;}
.y1a2{bottom:624.925500px;}
.y1c9{bottom:625.732350px;}
.y94{bottom:626.202150px;}
.y36{bottom:626.211600px;}
.y3b5{bottom:627.140850px;}
.y32b{bottom:627.971700px;}
.y177{bottom:630.108150px;}
.y2d7{bottom:630.328350px;}
.y1c8{bottom:633.232350px;}
.y13f{bottom:633.318000px;}
.y382{bottom:633.440850px;}
.y261{bottom:636.344400px;}
.y290{bottom:637.032300px;}
.y142{bottom:637.676700px;}
.y2d9{bottom:637.828350px;}
.y35{bottom:639.714600px;}
.y65{bottom:640.000800px;}
.y218{bottom:640.363200px;}
.y31a{bottom:640.370100px;}
.yef{bottom:640.612500px;}
.y1ca{bottom:640.732350px;}
.y143{bottom:642.317250px;}
.y13e{bottom:642.320100px;}
.yc3{bottom:642.916350px;}
.y1a1{bottom:642.921000px;}
.y3b4{bottom:643.040850px;}
.y93{bottom:644.197650px;}
.y8{bottom:645.510000px;}
.y32a{bottom:645.967200px;}
.y381{bottom:649.940850px;}
.y350{bottom:653.017800px;}
.y34{bottom:653.217600px;}
.y10d{bottom:654.952950px;}
.y28f{bottom:656.400300px;}
.y64{bottom:657.847800px;}
.yee{bottom:658.608000px;}
.y3b3{bottom:658.940850px;}
.y2d6{bottom:659.320350px;}
.y319{bottom:659.738100px;}
.y176{bottom:660.288900px;}
.yc2{bottom:660.911850px;}
.y1a0{bottom:660.916500px;}
.y92{bottom:662.193150px;}
.y329{bottom:663.962700px;}
.y217{bottom:663.979200px;}
.y1c6{bottom:664.252350px;}
.y136{bottom:666.328500px;}
.y380{bottom:666.440850px;}
.y260{bottom:666.525150px;}
.y33{bottom:666.720600px;}
.y7{bottom:666.771000px;}
.y34f{bottom:671.013300px;}
.y1c5{bottom:671.752350px;}
.y3b2{bottom:674.840850px;}
.y63{bottom:675.694800px;}
.y28d{bottom:675.768300px;}
.yed{bottom:676.603500px;}
.yc1{bottom:678.907350px;}
.y19f{bottom:678.912000px;}
.y318{bottom:679.106100px;}
.y1c7{bottom:679.252350px;}
.y2f5{bottom:679.633200px;}
.y91{bottom:680.188650px;}
.y32{bottom:680.223600px;}
.y328{bottom:681.958200px;}
.y3f{bottom:682.605750px;}
.y2d5{bottom:682.936350px;}
.y37f{bottom:682.940850px;}
.y28c{bottom:683.268300px;}
.y13d{bottom:687.329100px;}
.y135{bottom:687.331950px;}
.y3b1{bottom:690.740850px;}
.y28e{bottom:690.768300px;}
.y62{bottom:693.541800px;}
.y31{bottom:693.726600px;}
.y216{bottom:694.159950px;}
.y3e{bottom:694.566600px;}
.yec{bottom:694.599000px;}
.yc0{bottom:696.902850px;}
.y19e{bottom:696.907500px;}
.y90{bottom:698.184150px;}
.y316{bottom:698.474100px;}
.y37e{bottom:699.440850px;}
.y327{bottom:699.953700px;}
.y34e{bottom:701.769300px;}
.y25f{bottom:703.116450px;}
.y1c4{bottom:704.896350px;}
.y315{bottom:705.974100px;}
.y3b0{bottom:706.940850px;}
.y30{bottom:708.321600px;}
.y28b{bottom:710.136300px;}
.y61{bottom:711.388800px;}
.yeb{bottom:712.594500px;}
.y2d4{bottom:713.117100px;}
.y317{bottom:713.474100px;}
.ybf{bottom:714.898350px;}
.y19d{bottom:714.903000px;}
.y37d{bottom:715.940850px;}
.y8f{bottom:716.179650px;}
.y326{bottom:717.949200px;}
.y25e{bottom:721.111950px;}
.y130{bottom:721.840500px;}
.y3af{bottom:722.840850px;}
.y6{bottom:726.298500px;}
.y1c3{bottom:728.512350px;}
.y60{bottom:729.235800px;}
.yea{bottom:730.590000px;}
.y215{bottom:730.728750px;}
.y134{bottom:732.340950px;}
.y12f{bottom:732.385500px;}
.y37c{bottom:732.440850px;}
.y314{bottom:732.842100px;}
.ybe{bottom:732.893850px;}
.y19c{bottom:732.898500px;}
.y8e{bottom:734.175150px;}
.y2f{bottom:734.617650px;}
.y289{bottom:734.892300px;}
.y325{bottom:735.944700px;}
.y3ae{bottom:738.740850px;}
.y25d{bottom:739.107450px;}
.y288{bottom:739.704300px;}
.y34d{bottom:746.940000px;}
.y5f{bottom:747.082800px;}
.ye9{bottom:748.585500px;}
.y214{bottom:748.724250px;}
.y37b{bottom:748.940850px;}
.y2d3{bottom:749.710800px;}
.y28a{bottom:749.892300px;}
.ybd{bottom:750.889350px;}
.y19b{bottom:750.894000px;}
.y312{bottom:752.210100px;}
.y3{bottom:752.599495px;}
.y324{bottom:753.940200px;}
.y3ad{bottom:754.640850px;}
.y25c{bottom:757.102950px;}
.y2e{bottom:757.519200px;}
.y1c2{bottom:758.692950px;}
.y311{bottom:759.710100px;}
.y8d{bottom:760.679100px;}
.y212{bottom:760.719000px;}
.y5e{bottom:764.929800px;}
.y34c{bottom:764.935500px;}
.y37a{bottom:765.440850px;}
.ye8{bottom:766.581000px;}
.y213{bottom:766.719750px;}
.y211{bottom:766.728750px;}
.y313{bottom:767.210100px;}
.y2d2{bottom:767.706300px;}
.ybc{bottom:768.884850px;}
.y12e{bottom:768.889500px;}
.y3ac{bottom:770.540850px;}
.y323{bottom:771.935700px;}
.y286{bottom:774.648300px;}
.y25b{bottom:775.098450px;}
.y285{bottom:779.460300px;}
.y379{bottom:781.940850px;}
.y5d{bottom:782.776800px;}
.y34b{bottom:782.931000px;}
.y210{bottom:784.724250px;}
.y2d1{bottom:785.701800px;}
.y3ab{bottom:786.440850px;}
.y30f{bottom:786.578100px;}
.ybb{bottom:786.880350px;}
.y12d{bottom:786.885000px;}
.y2d{bottom:786.909300px;}
.y287{bottom:789.648300px;}
.y322{bottom:789.931200px;}
.y8c{bottom:791.435100px;}
.ye7{bottom:793.084950px;}
.y25a{bottom:793.093950px;}
.y30e{bottom:794.078100px;}
.y1c1{bottom:795.275250px;}
.y20c{bottom:798.220500px;}
.y378{bottom:798.440850px;}
.y5c{bottom:800.623800px;}
.y310{bottom:801.578100px;}
.y3aa{bottom:802.640850px;}
.y20f{bottom:802.719750px;}
.y20b{bottom:802.724250px;}
.y2d0{bottom:803.697300px;}
.yba{bottom:804.875850px;}
.y12c{bottom:804.880500px;}
.y2c{bottom:804.911550px;}
.y321{bottom:807.926700px;}
.y259{bottom:811.089450px;}
.y283{bottom:811.176300px;}
.y1c0{bottom:813.270750px;}
.y34a{bottom:813.687000px;}
.y207{bottom:814.719000px;}
.y377{bottom:814.940850px;}
.y282{bottom:817.596300px;}
.y3a9{bottom:818.540850px;}
.y5b{bottom:818.619300px;}
.y20a{bottom:820.719750px;}
.y2cf{bottom:821.692800px;}
.y30c{bottom:822.026100px;}
.yb9{bottom:822.871350px;}
.y12b{bottom:822.876000px;}
.y320{bottom:825.922200px;}
.y284{bottom:826.176300px;}
.y258{bottom:829.084950px;}
.y30b{bottom:829.526100px;}
.y1bf{bottom:831.266250px;}
.y376{bottom:831.440850px;}
.ye6{bottom:832.366500px;}
.y3a8{bottom:834.440850px;}
.y5a{bottom:836.614800px;}
.y8b{bottom:836.619000px;}
.y30d{bottom:837.026100px;}
.y2ce{bottom:839.688300px;}
.y1f2{bottom:840.739500px;}
.yb8{bottom:840.866850px;}
.y12a{bottom:840.871500px;}
.y31f{bottom:843.917700px;}
.y281{bottom:847.668300px;}
.y375{bottom:847.940850px;}
.y1ff{bottom:848.651550px;}
.y205{bottom:848.655600px;}
.y201{bottom:848.661300px;}
.y1be{bottom:849.261750px;}
.y3a7{bottom:850.340850px;}
.y206{bottom:851.239350px;}
.y59{bottom:854.610300px;}
.y8a{bottom:854.614500px;}
.y257{bottom:855.588900px;}
.y2cd{bottom:857.683800px;}
.yb7{bottom:858.862350px;}
.ye5{bottom:858.867000px;}
.y30a{bottom:859.598100px;}
.y31e{bottom:861.913200px;}
.y202{bottom:864.130050px;}
.y1f8{bottom:864.135300px;}
.y1fb{bottom:864.145425px;}
.y374{bottom:864.440850px;}
.y3a6{bottom:866.240850px;}
.y1bd{bottom:867.257250px;}
.y1f1{bottom:868.762350px;}
.y1fe{bottom:868.766550px;}
.y204{bottom:868.770600px;}
.y2b{bottom:871.653600px;}
.y58{bottom:872.605800px;}
.y89{bottom:872.610000px;}
.y200{bottom:873.223800px;}
.y1f7{bottom:873.227550px;}
.y2cc{bottom:875.679300px;}
.yb6{bottom:876.857850px;}
.ye4{bottom:876.862500px;}
.y280{bottom:877.248300px;}
.y2{bottom:879.369000px;}
.y31d{bottom:879.908700px;}
.y373{bottom:880.940850px;}
.y3a5{bottom:882.140850px;}
.y309{bottom:883.214100px;}
.y1bc{bottom:885.252750px;}
.y1f6{bottom:885.742050px;}
.y1fa{bottom:885.752175px;}
.y1f0{bottom:890.375850px;}
.y1fd{bottom:890.380050px;}
.y57{bottom:890.601300px;}
.y88{bottom:890.605500px;}
.y2a{bottom:891.223800px;}
.y1f5{bottom:894.834300px;}
.yb5{bottom:894.853350px;}
.ye3{bottom:894.858000px;}
.y45{bottom:897.035850px;}
.y372{bottom:897.440850px;}
.y3a4{bottom:898.040850px;}
.y2ca{bottom:901.684500px;}
.y1f4{bottom:907.348800px;}
.y1f9{bottom:907.358925px;}
.y56{bottom:908.596800px;}
.y87{bottom:908.601000px;}
.y29{bottom:910.645800px;}
.y31c{bottom:910.664700px;}
.y2c9{bottom:910.680000px;}
.y2cb{bottom:910.684800px;}
.y1bb{bottom:911.756700px;}
.y1ef{bottom:911.989350px;}
.yb4{bottom:912.848850px;}
.ye2{bottom:912.853500px;}
.y27f{bottom:913.394850px;}
.y371{bottom:913.940850px;}
.y44{bottom:916.378950px;}
.y28{bottom:928.800300px;}
.y27{bottom:946.954800px;}
.y55{bottom:949.519500px;}
.y86{bottom:951.755850px;}
.y1{bottom:966.726000px;}
.y26{bottom:975.454650px;}
.h41{height:20.925000px;}
.h3f{height:22.500000px;}
.h2f{height:23.998500px;}
.h2d{height:24.000000px;}
.he{height:25.560000px;}
.hc{height:25.596000px;}
.h20{height:27.000000px;}
.ha{height:27.035156px;}
.h12{height:27.173016px;}
.hd{height:27.729000px;}
.h1c{height:28.854600px;}
.h14{height:29.400000px;}
.h42{height:30.305960px;}
.h28{height:30.367239px;}
.h2a{height:30.406729px;}
.h3e{height:30.414551px;}
.h24{height:30.454102px;}
.hb{height:31.541016px;}
.h11{height:31.582031px;}
.h44{height:32.100886px;}
.h7{height:32.130000px;}
.h16{height:33.275391px;}
.h34{height:36.046875px;}
.h37{height:36.093750px;}
.h23{height:37.434814px;}
.h40{height:37.513916px;}
.h1b{height:37.800000px;}
.h10{height:37.829393px;}
.h3b{height:38.299805px;}
.h1f{height:38.349609px;}
.h15{height:38.820689px;}
.h13{height:38.821289px;}
.h43{height:40.460643px;}
.h2b{height:40.541854px;}
.h19{height:40.552734px;}
.h1e{height:40.605469px;}
.h30{height:42.000000px;}
.h35{height:44.367188px;}
.h3a{height:44.414062px;}
.hf{height:44.850586px;}
.h4b{height:45.001500px;}
.h1d{height:45.117188px;}
.h6{height:45.900000px;}
.h33{height:47.140137px;}
.h48{height:47.143137px;}
.h25{height:47.925000px;}
.h3{height:48.195000px;}
.h18{height:49.628906px;}
.h29{height:49.834889px;}
.h1a{height:49.913086px;}
.h27{height:49.940192px;}
.h2c{height:50.007155px;}
.h22{height:50.018555px;}
.h50{height:50.734875px;}
.h17{height:51.186450px;}
.h2{height:55.080000px;}
.h45{height:66.036675px;}
.h36{height:66.046875px;}
.h47{height:66.053475px;}
.h46{height:66.054075px;}
.h2e{height:68.475286px;}
.h4d{height:69.000000px;}
.h49{height:70.366875px;}
.h3c{height:72.902156px;}
.h38{height:74.367188px;}
.h4a{height:76.798875px;}
.h5{height:78.030000px;}
.h26{height:80.979484px;}
.h21{height:81.106198px;}
.h4c{height:83.302734px;}
.h4e{height:83.305734px;}
.h31{height:84.419086px;}
.h4f{height:85.966955px;}
.h32{height:86.029955px;}
.h3d{height:88.500000px;}
.h39{height:96.046875px;}
.h4{height:119.055004px;}
.h8{height:1020.472500px;}
.h9{height:1020.750000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.wb{width:34.500000px;}
.w9{width:39.000000px;}
.w15{width:40.500000px;}
.w14{width:42.000000px;}
.w16{width:42.001500px;}
.w17{width:43.500000px;}
.wd{width:50.998500px;}
.w13{width:52.500000px;}
.w12{width:54.000000px;}
.wc{width:55.500000px;}
.w18{width:79.500000px;}
.wa{width:94.500000px;}
.w10{width:181.501500px;}
.we{width:250.498500px;}
.wf{width:271.500000px;}
.w7{width:306.000000px;}
.w19{width:312.000000px;}
.w1a{width:336.000000px;}
.w8{width:358.174500px;}
.w6{width:409.500000px;}
.w5{width:425.925000px;}
.w1b{width:462.001500px;}
.w11{width:543.000000px;}
.w2{width:637.794021px;}
.w4{width:714.000000px;}
.w3{width:714.330000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:2.155650px;}
.x6b{left:3.609300px;}
.x36{left:6.187800px;}
.x89{left:10.827450px;}
.x8e{left:12.797700px;}
.x8b{left:14.436900px;}
.x31{left:24.984000px;}
.x1d{left:27.196050px;}
.x88{left:28.264950px;}
.x17{left:29.525850px;}
.x2b{left:32.015400px;}
.x1b{left:34.118850px;}
.x13{left:38.524350px;}
.x25{left:41.063400px;}
.x34{left:45.656550px;}
.x6a{left:47.389800px;}
.x95{left:51.797700px;}
.x20{left:54.515550px;}
.x26{left:59.016450px;}
.x8a{left:62.108700px;}
.x39{left:71.007300px;}
.x9d{left:72.562350px;}
.x10{left:76.535400px;}
.x45{left:81.344400px;}
.x5{left:85.433550px;}
.x44{left:86.732400px;}
.xc{left:89.291400px;}
.x3d{left:90.749850px;}
.xe{left:93.561150px;}
.x11{left:97.797900px;}
.x61{left:98.867550px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x9c{left:110.062350px;}
.x5f{left:114.530550px;}
.x48{left:123.952050px;}
.x5c{left:126.101850px;}
.x28{left:127.476000px;}
.x60{left:129.151050px;}
.x9b{left:130.417500px;}
.x7a{left:133.917000px;}
.x93{left:135.277650px;}
.x63{left:140.686350px;}
.x5e{left:144.055050px;}
.x62{left:145.789350px;}
.x12{left:148.455000px;}
.x14{left:157.144050px;}
.x1a{left:159.749850px;}
.x29{left:166.678800px;}
.x46{left:169.856400px;}
.x5d{left:171.703050px;}
.x15{left:175.093950px;}
.x1c{left:177.703050px;}
.x24{left:180.865500px;}
.x4b{left:182.700450px;}
.x97{left:184.914000px;}
.x7b{left:188.041650px;}
.x69{left:190.074000px;}
.x4a{left:193.704450px;}
.x87{left:196.914000px;}
.x98{left:200.952450px;}
.x4{left:203.484001px;}
.x1f{left:208.417500px;}
.x6c{left:220.109850px;}
.x7c{left:222.492000px;}
.x3c{left:225.667500px;}
.x40{left:228.245550px;}
.x22{left:233.401650px;}
.x38{left:236.167500px;}
.x8c{left:237.194550px;}
.x99{left:240.694650px;}
.xf{left:243.485550px;}
.x58{left:253.790850px;}
.x3e{left:255.479850px;}
.x3b{left:256.558050px;}
.xd{left:259.366650px;}
.x4c{left:260.676450px;}
.x8d{left:262.162500px;}
.x49{left:266.112450px;}
.x41{left:270.667500px;}
.x43{left:272.823600px;}
.x7d{left:275.117100px;}
.x6d{left:277.647000px;}
.x90{left:283.257150px;}
.x2d{left:287.959500px;}
.x33{left:292.510500px;}
.x96{left:293.616450px;}
.x21{left:299.624850px;}
.x92{left:305.197950px;}
.x8f{left:307.444650px;}
.x3f{left:312.017850px;}
.x6e{left:318.148350px;}
.x2e{left:322.661850px;}
.x94{left:323.893650px;}
.x35{left:326.026500px;}
.x55{left:331.764450px;}
.x4d{left:334.764450px;}
.x57{left:336.036450px;}
.x4e{left:338.652450px;}
.x80{left:340.488600px;}
.x37{left:343.510800px;}
.x81{left:346.056600px;}
.x77{left:348.992550px;}
.x7e{left:351.107700px;}
.x42{left:355.511100px;}
.x6f{left:367.917600px;}
.x70{left:375.687000px;}
.x91{left:386.616450px;}
.x2a{left:393.875550px;}
.x47{left:396.104400px;}
.x86{left:411.021450px;}
.x59{left:412.742850px;}
.x4f{left:413.784450px;}
.x50{left:416.628450px;}
.x16{left:420.160200px;}
.x71{left:423.957000px;}
.x67{left:452.823000px;}
.x3{left:454.959000px;}
.x65{left:464.586300px;}
.x72{left:467.456100px;}
.xb{left:473.984550px;}
.x73{left:475.225500px;}
.x66{left:481.227000px;}
.x2f{left:483.646500px;}
.x3a{left:486.667350px;}
.x56{left:488.760450px;}
.x5a{left:490.718850px;}
.x51{left:491.760450px;}
.x52{left:494.604450px;}
.x6{left:497.533050px;}
.x85{left:508.080600px;}
.x64{left:510.430050px;}
.x84{left:512.844600px;}
.x23{left:514.417350px;}
.x82{left:516.084600px;}
.x74{left:517.225350px;}
.x83{left:518.928600px;}
.x9a{left:520.913400px;}
.x9f{left:522.188550px;}
.x7f{left:523.547700px;}
.x75{left:524.994000px;}
.x79{left:526.057200px;}
.x78{left:527.820600px;}
.x27{left:539.041650px;}
.xa{left:563.182050px;}
.x1e{left:566.167350px;}
.x5b{left:568.694850px;}
.x53{left:569.736450px;}
.x54{left:572.580450px;}
.x19{left:574.379850px;}
.x8{left:584.524800px;}
.x30{left:588.549000px;}
.x9e{left:592.417350px;}
.x76{left:595.795500px;}
.x9{left:599.062050px;}
.x7{left:607.027800px;}
.x32{left:623.251200px;}
.x68{left:626.149800px;}
.x2c{left:637.795350px;}
@media print{
.v8{vertical-align:-38.016000pt;}
.ve{vertical-align:-35.000000pt;}
.v6{vertical-align:-16.500267pt;}
.v2{vertical-align:-8.960000pt;}
.v4{vertical-align:-7.951467pt;}
.v1{vertical-align:-3.872000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:6.351467pt;}
.v11{vertical-align:13.056000pt;}
.vc{vertical-align:14.104000pt;}
.v5{vertical-align:16.499733pt;}
.vf{vertical-align:21.500267pt;}
.va{vertical-align:26.666667pt;}
.v7{vertical-align:30.672000pt;}
.v9{vertical-align:32.010133pt;}
.vd{vertical-align:36.224000pt;}
.v10{vertical-align:38.000000pt;}
.vb{vertical-align:53.333333pt;}
.ls30{letter-spacing:-24.384000pt;}
.ls4b{letter-spacing:-6.720000pt;}
.ls3d{letter-spacing:-3.754667pt;}
.ls35{letter-spacing:-1.237333pt;}
.ls33{letter-spacing:-1.200000pt;}
.ls10{letter-spacing:-1.152000pt;}
.ls38{letter-spacing:-1.066667pt;}
.ls66{letter-spacing:-0.981333pt;}
.ls34{letter-spacing:-0.960000pt;}
.ls39{letter-spacing:-0.853333pt;}
.ls36{letter-spacing:-0.720000pt;}
.ls59{letter-spacing:-0.624000pt;}
.ls5b{letter-spacing:-0.576000pt;}
.ls5a{letter-spacing:-0.528000pt;}
.ls1d{letter-spacing:-0.480000pt;}
.ls1c{letter-spacing:-0.432000pt;}
.ls37{letter-spacing:-0.384000pt;}
.ls1f{letter-spacing:-0.336000pt;}
.ls1e{letter-spacing:-0.288000pt;}
.ls12{letter-spacing:-0.240000pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls2e{letter-spacing:-0.191699pt;}
.ls5e{letter-spacing:-0.170667pt;}
.ls1a{letter-spacing:-0.144000pt;}
.ls60{letter-spacing:-0.128000pt;}
.ls18{letter-spacing:-0.096000pt;}
.ls3a{letter-spacing:-0.085333pt;}
.ls1b{letter-spacing:-0.048000pt;}
.ls62{letter-spacing:-0.042667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5c{letter-spacing:0.021333pt;}
.ls5f{letter-spacing:0.042667pt;}
.ls13{letter-spacing:0.048000pt;}
.ls65{letter-spacing:0.081067pt;}
.ls64{letter-spacing:0.085333pt;}
.ls15{letter-spacing:0.096000pt;}
.ls3c{letter-spacing:0.134133pt;}
.ls4c{letter-spacing:0.143486pt;}
.ls2d{letter-spacing:0.143774pt;}
.ls19{letter-spacing:0.144000pt;}
.ls63{letter-spacing:0.170667pt;}
.ls2c{letter-spacing:0.179720pt;}
.ls27{letter-spacing:0.180000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.240000pt;}
.ls3f{letter-spacing:0.252000pt;}
.ls5{letter-spacing:0.280000pt;}
.lse{letter-spacing:0.288000pt;}
.ls5d{letter-spacing:0.298667pt;}
.ls2b{letter-spacing:0.335474pt;}
.ls16{letter-spacing:0.336000pt;}
.lsf{letter-spacing:0.384000pt;}
.ls4e{letter-spacing:0.432000pt;}
.ls50{letter-spacing:0.480000pt;}
.ls11{letter-spacing:0.488112pt;}
.ls61{letter-spacing:0.512000pt;}
.lsa{letter-spacing:0.626677pt;}
.ls22{letter-spacing:0.720000pt;}
.ls4f{letter-spacing:0.864000pt;}
.lsd{letter-spacing:0.976219pt;}
.lsc{letter-spacing:1.114677pt;}
.lsb{letter-spacing:1.230944pt;}
.ls29{letter-spacing:1.485669pt;}
.ls26{letter-spacing:1.488000pt;}
.ls3{letter-spacing:1.750400pt;}
.ls8{letter-spacing:1.756800pt;}
.ls7{letter-spacing:1.757867pt;}
.ls9{letter-spacing:1.812992pt;}
.ls2{letter-spacing:1.960000pt;}
.ls32{letter-spacing:2.346667pt;}
.ls6{letter-spacing:3.708267pt;}
.ls4d{letter-spacing:4.986667pt;}
.ls41{letter-spacing:6.429067pt;}
.ls28{letter-spacing:8.147216pt;}
.ls2f{letter-spacing:8.160000pt;}
.ls58{letter-spacing:9.648000pt;}
.ls25{letter-spacing:19.200000pt;}
.ls23{letter-spacing:38.688000pt;}
.ls31{letter-spacing:50.832000pt;}
.ls55{letter-spacing:68.940000pt;}
.ls2a{letter-spacing:71.636392pt;}
.ls20{letter-spacing:71.748000pt;}
.ls53{letter-spacing:133.668000pt;}
.ls54{letter-spacing:142.608000pt;}
.ls4a{letter-spacing:147.504000pt;}
.ls51{letter-spacing:229.121600pt;}
.ls56{letter-spacing:268.512000pt;}
.ls57{letter-spacing:341.424000pt;}
.ls4{letter-spacing:355.904000pt;}
.ls48{letter-spacing:360.936000pt;}
.ls47{letter-spacing:361.584000pt;}
.ls49{letter-spacing:371.196000pt;}
.ls3e{letter-spacing:374.436000pt;}
.ls40{letter-spacing:384.516000pt;}
.ls21{letter-spacing:555.520000pt;}
.ls52{letter-spacing:611.691733pt;}
.ls42{letter-spacing:635.540267pt;}
.ls46{letter-spacing:658.457067pt;}
.ls44{letter-spacing:667.353067pt;}
.ls45{letter-spacing:676.248533pt;}
.ls43{letter-spacing:685.144533pt;}
.ls3b{letter-spacing:831.957333pt;}
.ls24{letter-spacing:982.025600pt;}
.wsd2{word-spacing:-394.416000pt;}
.wsce{word-spacing:-384.300000pt;}
.wsd1{word-spacing:-381.096000pt;}
.wscc{word-spacing:-371.448000pt;}
.wscd{word-spacing:-370.800000pt;}
.wsfe{word-spacing:-367.776000pt;}
.ws107{word-spacing:-268.512000pt;}
.wsd8{word-spacing:-173.856000pt;}
.ws108{word-spacing:-142.608000pt;}
.ws105{word-spacing:-133.668000pt;}
.wsf7{word-spacing:-104.406400pt;}
.ws101{word-spacing:-20.644800pt;}
.wsdb{word-spacing:-19.764000pt;}
.ws5{word-spacing:-19.580314pt;}
.ws5e{word-spacing:-18.014400pt;}
.wsf6{word-spacing:-17.524800pt;}
.ws123{word-spacing:-16.192000pt;}
.ws6{word-spacing:-14.838605pt;}
.ws6f{word-spacing:-13.689600pt;}
.wsff{word-spacing:-13.440000pt;}
.wsc4{word-spacing:-13.392000pt;}
.ws74{word-spacing:-13.344000pt;}
.wsdc{word-spacing:-13.296406pt;}
.ws117{word-spacing:-13.296000pt;}
.ws116{word-spacing:-13.248000pt;}
.ws72{word-spacing:-13.200000pt;}
.ws60{word-spacing:-13.152000pt;}
.ws92{word-spacing:-13.104000pt;}
.ws73{word-spacing:-13.008000pt;}
.ws75{word-spacing:-12.912000pt;}
.wsda{word-spacing:-12.864000pt;}
.wse7{word-spacing:-12.466667pt;}
.ws91{word-spacing:-12.240000pt;}
.ws90{word-spacing:-12.000000pt;}
.wsdf{word-spacing:-11.733333pt;}
.ws94{word-spacing:-11.690667pt;}
.ws131{word-spacing:-11.648000pt;}
.ws132{word-spacing:-11.605333pt;}
.wsf0{word-spacing:-10.266667pt;}
.wsc7{word-spacing:-9.523200pt;}
.ws65{word-spacing:-9.508280pt;}
.ws1{word-spacing:-8.960000pt;}
.ws4{word-spacing:-8.832000pt;}
.ws2{word-spacing:-8.768000pt;}
.ws63{word-spacing:-5.856000pt;}
.wsb{word-spacing:-4.704000pt;}
.ws7b{word-spacing:-4.353600pt;}
.wse8{word-spacing:-2.493333pt;}
.ws19{word-spacing:-1.812992pt;}
.ws133{word-spacing:-1.621333pt;}
.ws8b{word-spacing:-0.720000pt;}
.ws13b{word-spacing:-0.512000pt;}
.ws104{word-spacing:-0.480000pt;}
.wseb{word-spacing:-0.432000pt;}
.wsb6{word-spacing:-0.384000pt;}
.ws66{word-spacing:-0.349851pt;}
.wsd9{word-spacing:-0.345600pt;}
.ws33{word-spacing:-0.336000pt;}
.ws12f{word-spacing:-0.298667pt;}
.ws2e{word-spacing:-0.288000pt;}
.ws25{word-spacing:-0.240000pt;}
.ws34{word-spacing:-0.192000pt;}
.ws8c{word-spacing:-0.180000pt;}
.ws141{word-spacing:-0.170667pt;}
.ws39{word-spacing:-0.144000pt;}
.ws4f{word-spacing:-0.096000pt;}
.ws26{word-spacing:-0.048000pt;}
.ws95{word-spacing:-0.042667pt;}
.ws3{word-spacing:-0.032000pt;}
.ws0{word-spacing:0.000000pt;}
.ws13c{word-spacing:0.042667pt;}
.ws49{word-spacing:0.048000pt;}
.ws145{word-spacing:0.085333pt;}
.ws1a{word-spacing:0.096000pt;}
.ws136{word-spacing:0.128000pt;}
.ws48{word-spacing:0.144000pt;}
.ws126{word-spacing:0.170667pt;}
.ws80{word-spacing:0.187200pt;}
.ws47{word-spacing:0.192000pt;}
.ws142{word-spacing:0.213333pt;}
.ws2b{word-spacing:0.240000pt;}
.ws12{word-spacing:0.261333pt;}
.ws24{word-spacing:0.288000pt;}
.wsf{word-spacing:0.336000pt;}
.ws17{word-spacing:0.373333pt;}
.wsb3{word-spacing:0.384000pt;}
.wsaf{word-spacing:0.432000pt;}
.ws5c{word-spacing:0.480000pt;}
.ws144{word-spacing:0.512000pt;}
.ws11d{word-spacing:0.576000pt;}
.ws115{word-spacing:0.624000pt;}
.wsae{word-spacing:0.720000pt;}
.ws2c{word-spacing:0.768000pt;}
.ws54{word-spacing:0.816000pt;}
.ws3c{word-spacing:0.864000pt;}
.ws128{word-spacing:0.896000pt;}
.wsc5{word-spacing:1.008000pt;}
.ws114{word-spacing:1.056000pt;}
.ws6b{word-spacing:1.140610pt;}
.ws11c{word-spacing:1.200000pt;}
.wsf1{word-spacing:1.296000pt;}
.wsb5{word-spacing:1.344000pt;}
.ws35{word-spacing:1.392000pt;}
.ws138{word-spacing:1.408000pt;}
.ws111{word-spacing:1.440000pt;}
.ws13{word-spacing:1.456000pt;}
.ws112{word-spacing:1.488000pt;}
.ws120{word-spacing:1.584000pt;}
.wse9{word-spacing:1.632000pt;}
.ws3f{word-spacing:1.680000pt;}
.ws8f{word-spacing:1.728000pt;}
.ws9{word-spacing:1.760000pt;}
.ws29{word-spacing:1.776000pt;}
.ws106{word-spacing:1.824000pt;}
.wsc{word-spacing:1.872000pt;}
.ws58{word-spacing:1.920000pt;}
.ws46{word-spacing:1.968000pt;}
.ws137{word-spacing:2.005333pt;}
.ws2f{word-spacing:2.016000pt;}
.wsa{word-spacing:2.053333pt;}
.wsb2{word-spacing:2.064000pt;}
.ws37{word-spacing:2.112000pt;}
.wsd{word-spacing:2.128000pt;}
.wsb1{word-spacing:2.160000pt;}
.wse{word-spacing:2.346667pt;}
.ws11e{word-spacing:2.352000pt;}
.ws9f{word-spacing:2.400000pt;}
.ws12b{word-spacing:2.432000pt;}
.ws41{word-spacing:2.448000pt;}
.ws56{word-spacing:2.493333pt;}
.wsa0{word-spacing:2.496000pt;}
.ws15{word-spacing:2.538667pt;}
.ws85{word-spacing:2.544000pt;}
.ws121{word-spacing:2.592000pt;}
.ws139{word-spacing:2.602667pt;}
.ws20{word-spacing:2.640000pt;}
.ws4c{word-spacing:2.688000pt;}
.ws18{word-spacing:2.725333pt;}
.ws1d{word-spacing:2.736000pt;}
.ws3a{word-spacing:2.784000pt;}
.ws77{word-spacing:2.798400pt;}
.ws12e{word-spacing:2.816000pt;}
.ws118{word-spacing:2.832000pt;}
.ws59{word-spacing:2.928000pt;}
.wsa1{word-spacing:2.933333pt;}
.ws12d{word-spacing:2.944000pt;}
.ws42{word-spacing:2.976000pt;}
.ws5a{word-spacing:3.024000pt;}
.ws8{word-spacing:3.104000pt;}
.ws50{word-spacing:3.120000pt;}
.ws143{word-spacing:3.157333pt;}
.ws38{word-spacing:3.168000pt;}
.ws16{word-spacing:3.173333pt;}
.ws4d{word-spacing:3.216000pt;}
.ws125{word-spacing:3.264000pt;}
.ws12c{word-spacing:3.285333pt;}
.ws40{word-spacing:3.360000pt;}
.ws146{word-spacing:3.370667pt;}
.ws55{word-spacing:3.456000pt;}
.ws9e{word-spacing:3.504000pt;}
.ws23{word-spacing:3.520000pt;}
.wsc6{word-spacing:3.552000pt;}
.ws129{word-spacing:3.584000pt;}
.ws10a{word-spacing:3.648000pt;}
.ws43{word-spacing:3.744000pt;}
.ws7{word-spacing:3.776000pt;}
.ws36{word-spacing:3.792000pt;}
.ws27{word-spacing:3.840000pt;}
.ws8e{word-spacing:3.936000pt;}
.ws113{word-spacing:3.984000pt;}
.ws3b{word-spacing:4.080000pt;}
.ws14{word-spacing:4.106667pt;}
.ws5b{word-spacing:4.128000pt;}
.ws127{word-spacing:4.138667pt;}
.ws119{word-spacing:4.176000pt;}
.ws130{word-spacing:4.181333pt;}
.ws2a{word-spacing:4.224000pt;}
.ws13d{word-spacing:4.266667pt;}
.ws57{word-spacing:4.368000pt;}
.ws13f{word-spacing:4.394667pt;}
.ws11b{word-spacing:4.416000pt;}
.ws134{word-spacing:4.437333pt;}
.ws10{word-spacing:4.442667pt;}
.ws86{word-spacing:4.464000pt;}
.ws28{word-spacing:4.512000pt;}
.ws140{word-spacing:4.522667pt;}
.ws135{word-spacing:4.565333pt;}
.ws51{word-spacing:4.608000pt;}
.ws12a{word-spacing:4.650667pt;}
.ws8d{word-spacing:4.656000pt;}
.ws13e{word-spacing:4.693333pt;}
.ws1e{word-spacing:4.752000pt;}
.wsb4{word-spacing:4.800000pt;}
.ws32{word-spacing:4.848000pt;}
.wsb0{word-spacing:4.896000pt;}
.ws1f{word-spacing:4.944000pt;}
.ws3d{word-spacing:5.088000pt;}
.ws4a{word-spacing:5.136000pt;}
.ws124{word-spacing:5.184000pt;}
.ws30{word-spacing:5.232000pt;}
.ws1b{word-spacing:5.280000pt;}
.ws2d{word-spacing:5.328000pt;}
.ws7e{word-spacing:5.356800pt;}
.ws31{word-spacing:5.376000pt;}
.ws122{word-spacing:5.568000pt;}
.ws1c{word-spacing:5.616000pt;}
.ws11a{word-spacing:5.760000pt;}
.ws44{word-spacing:5.808000pt;}
.ws53{word-spacing:5.856000pt;}
.ws45{word-spacing:5.952000pt;}
.ws3e{word-spacing:6.096000pt;}
.ws52{word-spacing:6.240000pt;}
.ws4b{word-spacing:6.384000pt;}
.ws21{word-spacing:6.528000pt;}
.ws4e{word-spacing:6.576000pt;}
.wse6{word-spacing:6.720000pt;}
.ws11f{word-spacing:6.912000pt;}
.wsea{word-spacing:7.056000pt;}
.ws13a{word-spacing:7.253333pt;}
.ws11{word-spacing:7.429333pt;}
.ws84{word-spacing:14.482667pt;}
.ws61{word-spacing:14.971200pt;}
.ws68{word-spacing:17.161871pt;}
.ws6d{word-spacing:17.188800pt;}
.ws7f{word-spacing:22.320000pt;}
.ws10c{word-spacing:23.635200pt;}
.ws67{word-spacing:24.032158pt;}
.wsf9{word-spacing:31.732800pt;}
.wsa4{word-spacing:39.296000pt;}
.ws71{word-spacing:42.172800pt;}
.ws6e{word-spacing:42.177600pt;}
.wsf5{word-spacing:42.844800pt;}
.ws6c{word-spacing:44.109986pt;}
.ws79{word-spacing:53.299200pt;}
.ws7d{word-spacing:60.700800pt;}
.ws6a{word-spacing:61.848841pt;}
.ws62{word-spacing:61.945200pt;}
.ws110{word-spacing:67.488000pt;}
.ws7a{word-spacing:78.484800pt;}
.ws81{word-spacing:81.744000pt;}
.ws7c{word-spacing:87.326400pt;}
.ws78{word-spacing:100.819200pt;}
.ws82{word-spacing:102.964800pt;}
.wsc8{word-spacing:104.140800pt;}
.wsc9{word-spacing:105.475200pt;}
.wsa2{word-spacing:110.208000pt;}
.ws76{word-spacing:112.848000pt;}
.wsa3{word-spacing:119.850667pt;}
.ws69{word-spacing:123.223221pt;}
.wsc2{word-spacing:126.028800pt;}
.wsb9{word-spacing:135.261867pt;}
.ws87{word-spacing:157.488000pt;}
.wsc3{word-spacing:173.568000pt;}
.wsc0{word-spacing:176.516267pt;}
.ws70{word-spacing:178.596000pt;}
.ws93{word-spacing:184.490667pt;}
.ws88{word-spacing:186.672000pt;}
.ws103{word-spacing:194.505600pt;}
.ws83{word-spacing:195.297600pt;}
.wsa6{word-spacing:199.594667pt;}
.ws9b{word-spacing:202.325333pt;}
.wsc1{word-spacing:212.821333pt;}
.wsb8{word-spacing:216.789333pt;}
.ws96{word-spacing:232.874667pt;}
.ws99{word-spacing:243.029333pt;}
.wscb{word-spacing:247.572000pt;}
.wsd7{word-spacing:248.438400pt;}
.ws9d{word-spacing:250.453333pt;}
.wsd4{word-spacing:259.497600pt;}
.wsa7{word-spacing:262.749867pt;}
.ws9a{word-spacing:264.277333pt;}
.ws97{word-spacing:264.878933pt;}
.wsd6{word-spacing:267.926400pt;}
.ws98{word-spacing:270.549333pt;}
.ws8a{word-spacing:272.736000pt;}
.wsd5{word-spacing:272.841600pt;}
.ws9c{word-spacing:280.106667pt;}
.wsfc{word-spacing:284.013867pt;}
.wsd0{word-spacing:284.760000pt;}
.ws10b{word-spacing:291.456000pt;}
.wsd3{word-spacing:298.857600pt;}
.wsaa{word-spacing:339.114667pt;}
.wscf{word-spacing:344.412000pt;}
.wsfa{word-spacing:349.441067pt;}
.wsca{word-spacing:352.224000pt;}
.wsfd{word-spacing:363.840000pt;}
.ws89{word-spacing:370.704000pt;}
.wsab{word-spacing:371.285333pt;}
.ws100{word-spacing:373.372267pt;}
.wsa5{word-spacing:373.930667pt;}
.wsad{word-spacing:383.061333pt;}
.wsa8{word-spacing:394.662400pt;}
.wsac{word-spacing:395.221333pt;}
.wsa9{word-spacing:404.147200pt;}
.wsf8{word-spacing:418.174133pt;}
.wsfb{word-spacing:428.292000pt;}
.wsdd{word-spacing:466.517333pt;}
.wsbc{word-spacing:500.352000pt;}
.ws10d{word-spacing:513.920000pt;}
.wsbd{word-spacing:525.568000pt;}
.wsbb{word-spacing:543.240533pt;}
.wse5{word-spacing:550.101333pt;}
.wsba{word-spacing:551.547733pt;}
.wsbe{word-spacing:560.170667pt;}
.wsec{word-spacing:561.237333pt;}
.wsf4{word-spacing:562.952533pt;}
.ws109{word-spacing:566.160000pt;}
.ws5d{word-spacing:576.743024pt;}
.ws64{word-spacing:588.431226pt;}
.wse2{word-spacing:589.354667pt;}
.wsde{word-spacing:593.322667pt;}
.ws102{word-spacing:594.576000pt;}
.ws5f{word-spacing:599.904000pt;}
.wse0{word-spacing:611.959467pt;}
.wse1{word-spacing:634.126400pt;}
.ws22{word-spacing:641.870933pt;}
.wsb7{word-spacing:644.480000pt;}
.wse4{word-spacing:667.724800pt;}
.wsf2{word-spacing:676.957867pt;}
.wsed{word-spacing:694.749867pt;}
.wsef{word-spacing:700.036267pt;}
.wse3{word-spacing:700.846933pt;}
.ws10f{word-spacing:738.222933pt;}
.wsf3{word-spacing:806.912000pt;}
.wsbf{word-spacing:813.781333pt;}
.ws10e{word-spacing:1380.224000pt;}
.wsee{word-spacing:1456.981333pt;}
._15{margin-left:-1463.904000pt;}
._79{margin-left:-417.082667pt;}
._33{margin-left:-246.082667pt;}
._3e{margin-left:-165.082667pt;}
._75{margin-left:-142.800000pt;}
._74{margin-left:-24.801600pt;}
._a{margin-left:-23.669333pt;}
._3{margin-left:-6.320000pt;}
._e{margin-left:-4.656000pt;}
._0{margin-left:-3.766933pt;}
._4{margin-left:-1.948800pt;}
._2{margin-left:-1.040000pt;}
._5{width:1.133333pt;}
._9{width:2.165333pt;}
._8{width:3.326400pt;}
._c{width:4.228800pt;}
._b{width:5.176533pt;}
._1{width:6.444800pt;}
._7{width:7.821333pt;}
._81{width:8.935467pt;}
._42{width:12.301867pt;}
._49{width:18.397867pt;}
._43{width:19.626667pt;}
._48{width:20.754667pt;}
._35{width:24.816000pt;}
._37{width:26.448000pt;}
._14{width:27.494400pt;}
._f{width:31.660800pt;}
._13{width:33.614400pt;}
._57{width:41.045333pt;}
._4c{width:42.182400pt;}
._2e{width:49.769905pt;}
._2f{width:54.664099pt;}
._20{width:55.828267pt;}
._16{width:56.827200pt;}
._7d{width:58.885105pt;}
._21{width:62.683200pt;}
._32{width:67.334344pt;}
._3c{width:69.936000pt;}
._1d{width:73.526400pt;}
._6{width:75.308267pt;}
._51{width:77.824000pt;}
._7c{width:78.967547pt;}
._1c{width:80.661600pt;}
._4b{width:96.161600pt;}
._30{width:105.678976pt;}
._3b{width:107.548800pt;}
._5c{width:110.165333pt;}
._31{width:111.760634pt;}
._23{width:114.142496pt;}
._1e{width:115.502400pt;}
._4e{width:118.630428pt;}
._11{width:120.993600pt;}
._25{width:122.467034pt;}
._2d{width:125.994503pt;}
._24{width:128.117368pt;}
._22{width:130.268772pt;}
._5d{width:132.574133pt;}
._1a{width:133.495200pt;}
._63{width:136.488000pt;}
._10{width:137.540800pt;}
._47{width:140.547228pt;}
._64{width:142.492800pt;}
._5a{width:144.222133pt;}
._5b{width:145.399467pt;}
._5e{width:148.873067pt;}
._59{width:150.954667pt;}
._41{width:152.659200pt;}
._65{width:155.940800pt;}
._39{width:157.867200pt;}
._29{width:159.929850pt;}
._45{width:169.180800pt;}
._2b{width:175.264862pt;}
._62{width:179.768000pt;}
._61{width:184.035228pt;}
._7f{width:186.489600pt;}
._53{width:187.445333pt;}
._36{width:190.919364pt;}
._26{width:192.858980pt;}
._12{width:196.824000pt;}
._2c{width:199.712053pt;}
._58{width:201.100267pt;}
._1b{width:203.356800pt;}
._3a{width:205.680000pt;}
._28{width:207.188495pt;}
._50{width:215.829333pt;}
._7b{width:220.752000pt;}
._1f{width:225.253333pt;}
._54{width:230.826667pt;}
._7e{width:238.382331pt;}
._3f{width:246.465600pt;}
._60{width:253.824000pt;}
._4f{width:257.889600pt;}
._27{width:259.803232pt;}
._52{width:268.000000pt;}
._55{width:275.594667pt;}
._6e{width:276.940800pt;}
._72{width:282.912000pt;}
._73{width:285.147200pt;}
._71{width:286.488000pt;}
._70{width:290.198400pt;}
._6f{width:291.120000pt;}
._34{width:294.840000pt;}
._38{width:299.502933pt;}
._3d{width:301.733333pt;}
._19{width:313.020000pt;}
._56{width:320.768000pt;}
._6d{width:328.022400pt;}
._7a{width:341.616000pt;}
._68{width:343.836000pt;}
._69{width:359.028000pt;}
._18{width:373.176000pt;}
._2a{width:381.940944pt;}
._66{width:387.936000pt;}
._67{width:407.772000pt;}
._5f{width:409.344000pt;}
._6b{width:410.328000pt;}
._4a{width:412.960000pt;}
._6a{width:415.836000pt;}
._6c{width:426.672000pt;}
._44{width:435.120000pt;}
._4d{width:526.344000pt;}
._78{width:617.185600pt;}
._76{width:620.032000pt;}
._40{width:751.228800pt;}
._46{width:778.867200pt;}
._d{width:795.254933pt;}
._77{width:800.268267pt;}
._80{width:894.912000pt;}
._17{width:1041.513600pt;}
.fs5{font-size:32.000000pt;}
.fs6{font-size:34.666667pt;}
.fs14{font-size:35.871467pt;}
.fs13{font-size:35.944000pt;}
.fs10{font-size:36.000000pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs8{font-size:44.776533pt;}
.fse{font-size:45.333333pt;}
.fs15{font-size:47.828800pt;}
.fs12{font-size:47.924800pt;}
.fsd{font-size:48.000000pt;}
.fsb{font-size:48.811200pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsc{font-size:58.666667pt;}
.fs9{font-size:60.433067pt;}
.fsa{font-size:62.757333pt;}
.fs0{font-size:64.000000pt;}
.fs11{font-size:77.711467pt;}
.fsf{font-size:77.833067pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y203{bottom:2.916533pt;}
.y29e{bottom:3.708267pt;}
.y140{bottom:3.874400pt;}
.y147{bottom:3.874933pt;}
.y2a2{bottom:3.875067pt;}
.y296{bottom:3.875200pt;}
.y2c6{bottom:3.875333pt;}
.y14b{bottom:3.875467pt;}
.y20e{bottom:3.985067pt;}
.y13c{bottom:3.994535pt;}
.y133{bottom:5.208667pt;}
.y255{bottom:5.333733pt;}
.y209{bottom:5.334000pt;}
.y169{bottom:6.495467pt;}
.y131{bottom:7.625333pt;}
.y29c{bottom:7.833200pt;}
.y20d{bottom:7.929200pt;}
.y173{bottom:7.999200pt;}
.y141{bottom:7.999333pt;}
.y15a{bottom:7.999733pt;}
.y146{bottom:7.999867pt;}
.y2a3{bottom:8.000000pt;}
.y295{bottom:8.000267pt;}
.y14c{bottom:8.000533pt;}
.y139{bottom:8.107294pt;}
.y13b{bottom:8.112800pt;}
.y254{bottom:9.292133pt;}
.y208{bottom:9.292267pt;}
.y132{bottom:9.333733pt;}
.y168{bottom:15.999467pt;}
.y2b1{bottom:17.336133pt;}
.y29d{bottom:21.958267pt;}
.y2ad{bottom:22.749467pt;}
.y13a{bottom:23.422267pt;}
.y16f{bottom:23.667333pt;}
.y16a{bottom:23.667467pt;}
.y137{bottom:25.835200pt;}
.y29b{bottom:26.083200pt;}
.y2b0{bottom:27.416133pt;}
.y138{bottom:27.540800pt;}
.y2ab{bottom:30.288800pt;}
.y2aa{bottom:35.832800pt;}
.y24{bottom:44.231333pt;}
.y2b5{bottom:45.166133pt;}
.y2a7{bottom:46.457733pt;}
.y23{bottom:54.895333pt;}
.y5{bottom:59.133337pt;}
.y85{bottom:60.053600pt;}
.yb3{bottom:60.748133pt;}
.y1fc{bottom:63.333200pt;}
.y22{bottom:65.559333pt;}
.y253{bottom:66.301333pt;}
.y1f3{bottom:67.291600pt;}
.y19a{bottom:68.062400pt;}
.y1ba{bottom:68.756800pt;}
.y256{bottom:71.635067pt;}
.y252{bottom:71.651067pt;}
.y3d7{bottom:75.058533pt;}
.y84{bottom:76.049600pt;}
.ye1{bottom:76.481200pt;}
.y2f4{bottom:76.735067pt;}
.yb2{bottom:76.744133pt;}
.y129{bottom:77.950667pt;}
.y349{bottom:78.317067pt;}
.y3a3{bottom:79.058533pt;}
.y2c5{bottom:79.140000pt;}
.y2c4{bottom:79.151733pt;}
.y308{bottom:82.270800pt;}
.y244{bottom:82.279333pt;}
.y370{bottom:82.573867pt;}
.y10c{bottom:82.869333pt;}
.y2c7{bottom:83.015333pt;}
.y27e{bottom:83.723200pt;}
.y199{bottom:84.058400pt;}
.y1b9{bottom:84.752800pt;}
.y171{bottom:85.550000pt;}
.y172{bottom:85.553333pt;}
.y4{bottom:86.333337pt;}
.y2c8{bottom:87.140267pt;}
.y251{bottom:87.647067pt;}
.y1ee{bottom:88.127067pt;}
.y25{bottom:89.105733pt;}
.y3d6{bottom:89.191867pt;}
.y174{bottom:89.427467pt;}
.y83{bottom:92.045600pt;}
.ye0{bottom:92.477200pt;}
.y2f3{bottom:92.731067pt;}
.yb1{bottom:92.740133pt;}
.y175{bottom:93.552533pt;}
.y3a2{bottom:93.725200pt;}
.y128{bottom:93.946667pt;}
.y348{bottom:94.313067pt;}
.y36f{bottom:96.973867pt;}
.y2fb{bottom:97.679333pt;}
.y307{bottom:98.266800pt;}
.y10b{bottom:98.865333pt;}
.y27d{bottom:99.719200pt;}
.y198{bottom:100.054400pt;}
.y243{bottom:101.333333pt;}
.y3d5{bottom:103.325200pt;}
.y250{bottom:103.643067pt;}
.y1ed{bottom:104.123067pt;}
.y82{bottom:108.041600pt;}
.y3a1{bottom:108.391867pt;}
.ydf{bottom:108.473200pt;}
.y2f2{bottom:108.727067pt;}
.yb0{bottom:108.736133pt;}
.y1b8{bottom:109.131733pt;}
.y127{bottom:109.942667pt;}
.y347{bottom:110.309067pt;}
.y36e{bottom:111.373867pt;}
.y2fa{bottom:113.675333pt;}
.y306{bottom:114.262800pt;}
.y27c{bottom:115.715200pt;}
.y197{bottom:116.050400pt;}
.y3d4{bottom:117.458533pt;}
.y242{bottom:118.549333pt;}
.y2c3{bottom:119.603733pt;}
.y24f{bottom:119.639067pt;}
.y1ec{bottom:120.119067pt;}
.y10a{bottom:122.421333pt;}
.y3a0{bottom:123.058533pt;}
.y21{bottom:123.790666pt;}
.y81{bottom:124.037600pt;}
.yde{bottom:124.469200pt;}
.y2f1{bottom:124.723067pt;}
.yaf{bottom:124.732133pt;}
.y16e{bottom:125.121333pt;}
.y16c{bottom:125.127467pt;}
.y36d{bottom:125.773867pt;}
.y126{bottom:125.938667pt;}
.y346{bottom:126.305067pt;}
.y1b7{bottom:126.347733pt;}
.y54{bottom:127.736400pt;}
.y2f9{bottom:129.671333pt;}
.y3d3{bottom:131.591867pt;}
.y170{bottom:131.618000pt;}
.y27b{bottom:131.711200pt;}
.y2c2{bottom:135.599733pt;}
.y24e{bottom:135.635067pt;}
.y241{bottom:135.765333pt;}
.y1eb{bottom:136.115067pt;}
.y39f{bottom:137.725200pt;}
.y196{bottom:139.609467pt;}
.y80{bottom:140.033600pt;}
.y36c{bottom:140.173867pt;}
.ydd{bottom:140.465200pt;}
.y2f0{bottom:140.719067pt;}
.yae{bottom:140.728133pt;}
.y16d{bottom:141.122000pt;}
.y125{bottom:141.934667pt;}
.y345{bottom:142.301067pt;}
.y305{bottom:143.491067pt;}
.y1b6{bottom:143.563733pt;}
.y53{bottom:143.732400pt;}
.y2f8{bottom:145.667333pt;}
.y3d2{bottom:145.725200pt;}
.y109{bottom:145.977333pt;}
.y27a{bottom:147.707200pt;}
.y2c1{bottom:151.595733pt;}
.y1ea{bottom:152.111067pt;}
.y39e{bottom:152.391867pt;}
.y23f{bottom:152.981333pt;}
.y36b{bottom:154.573867pt;}
.y7f{bottom:156.029600pt;}
.ydc{bottom:156.461200pt;}
.y2ef{bottom:156.715067pt;}
.yad{bottom:156.724133pt;}
.y124{bottom:157.930667pt;}
.y344{bottom:158.297067pt;}
.y24d{bottom:159.194133pt;}
.y23e{bottom:159.648000pt;}
.y52{bottom:159.728400pt;}
.y3d1{bottom:159.858533pt;}
.y1b5{bottom:160.779733pt;}
.y279{bottom:163.703200pt;}
.y240{bottom:166.314667pt;}
.y39d{bottom:167.058533pt;}
.y2c0{bottom:167.591733pt;}
.y1e9{bottom:168.107067pt;}
.y36a{bottom:168.973867pt;}
.y108{bottom:169.533333pt;}
.y7e{bottom:172.025600pt;}
.ydb{bottom:172.457200pt;}
.y167{bottom:172.692000pt;}
.y2ee{bottom:172.711067pt;}
.yac{bottom:172.720133pt;}
.y166{bottom:172.722400pt;}
.y123{bottom:173.926667pt;}
.y3d0{bottom:174.258533pt;}
.y343{bottom:174.293067pt;}
.y195{bottom:174.511200pt;}
.y2f7{bottom:174.895600pt;}
.y18{bottom:175.052000pt;}
.y51{bottom:175.724400pt;}
.y1b4{bottom:177.995733pt;}
.y278{bottom:179.699200pt;}
.y39c{bottom:181.725200pt;}
.y369{bottom:183.373867pt;}
.y23d{bottom:183.530667pt;}
.y1e8{bottom:184.119067pt;}
.y107{bottom:185.529333pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y7d{bottom:188.021600pt;}
.y3cf{bottom:188.391867pt;}
.yda{bottom:188.453200pt;}
.y16b{bottom:188.691467pt;}
.y2ed{bottom:188.707067pt;}
.yab{bottom:188.716133pt;}
.y122{bottom:189.922667pt;}
.y342{bottom:190.289067pt;}
.y194{bottom:190.507200pt;}
.y2bf{bottom:191.150800pt;}
.y50{bottom:191.720400pt;}
.y24c{bottom:194.111733pt;}
.y1b3{bottom:195.211733pt;}
.y277{bottom:195.695200pt;}
.y39b{bottom:196.391867pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y368{bottom:197.773867pt;}
.y1e7{bottom:200.115067pt;}
.y23b{bottom:200.746667pt;}
.y106{bottom:201.525333pt;}
.y3ce{bottom:202.525200pt;}
.y7c{bottom:204.017600pt;}
.yd9{bottom:204.449200pt;}
.y2ec{bottom:204.703067pt;}
.yaa{bottom:204.712133pt;}
.y121{bottom:205.918667pt;}
.y341{bottom:206.285067pt;}
.y23a{bottom:207.411733pt;}
.y4f{bottom:207.716400pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y24b{bottom:210.107733pt;}
.y39a{bottom:211.058533pt;}
.y276{bottom:211.691200pt;}
.y367{bottom:212.173867pt;}
.y1b2{bottom:212.427733pt;}
.y23c{bottom:214.080000pt;}
.y1e6{bottom:216.111067pt;}
.y3cd{bottom:216.925200pt;}
.y105{bottom:217.521333pt;}
.y7b{bottom:219.881600pt;}
.ya9{bottom:220.708133pt;}
.y120{bottom:221.914667pt;}
.y340{bottom:222.281067pt;}
.y193{bottom:223.338800pt;}
.y4e{bottom:223.712400pt;}
.y165{bottom:224.958400pt;}
.y399{bottom:225.725200pt;}
.y2be{bottom:226.078133pt;}
.y24a{bottom:226.103733pt;}
.y366{bottom:226.573867pt;}
.y275{bottom:227.687200pt;}
.yd8{bottom:228.005200pt;}
.y2eb{bottom:228.262133pt;}
.y1b1{bottom:229.643733pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y3cc{bottom:231.058533pt;}
.y238{bottom:231.294400pt;}
.y1e5{bottom:232.107067pt;}
.y104{bottom:233.517333pt;}
.y7a{bottom:235.745600pt;}
.y192{bottom:236.672133pt;}
.ya8{bottom:236.704133pt;}
.y11f{bottom:237.910667pt;}
.y237{bottom:237.959467pt;}
.y33f{bottom:238.277067pt;}
.y4d{bottom:239.708400pt;}
.y398{bottom:240.391867pt;}
.y164{bottom:240.954400pt;}
.y365{bottom:240.973867pt;}
.y2bd{bottom:242.074133pt;}
.y249{bottom:242.099733pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y239{bottom:244.627733pt;}
.y3cb{bottom:245.191867pt;}
.y1b0{bottom:246.859733pt;}
.y1e4{bottom:248.103067pt;}
.y103{bottom:249.513333pt;}
.y274{bottom:251.246267pt;}
.yd7{bottom:251.561200pt;}
.y79{bottom:251.609600pt;}
.ya7{bottom:252.700133pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y191{bottom:253.888133pt;}
.y33e{bottom:254.273067pt;}
.y397{bottom:255.058533pt;}
.y364{bottom:255.373867pt;}
.y2ea{bottom:255.600667pt;}
.y4c{bottom:255.704400pt;}
.y163{bottom:256.950400pt;}
.y2bc{bottom:258.070133pt;}
.y248{bottom:258.095733pt;}
.y3ca{bottom:259.591867pt;}
.y11e{bottom:261.469733pt;}
.y235{bottom:261.842133pt;}
.y1af{bottom:264.075733pt;}
.y102{bottom:265.509333pt;}
.y190{bottom:267.221467pt;}
.y78{bottom:267.473600pt;}
.yd6{bottom:267.557200pt;}
.y234{bottom:268.507333pt;}
.ya6{bottom:268.696133pt;}
.y396{bottom:269.725200pt;}
.y363{bottom:269.773867pt;}
.y33d{bottom:270.269067pt;}
.y1e3{bottom:271.662133pt;}
.y4b{bottom:271.700400pt;}
.y162{bottom:272.946400pt;}
.y3c9{bottom:273.725200pt;}
.y2bb{bottom:274.066133pt;}
.y247{bottom:274.091733pt;}
.y236{bottom:275.175467pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y101{bottom:281.505333pt;}
.y77{bottom:283.337600pt;}
.yd5{bottom:283.553200pt;}
.y362{bottom:284.173867pt;}
.y395{bottom:284.391867pt;}
.ya5{bottom:284.692133pt;}
.y18f{bottom:285.792133pt;}
.y273{bottom:286.159867pt;}
.y33c{bottom:286.265067pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y4a{bottom:287.696400pt;}
.y3c8{bottom:287.858533pt;}
.y1ae{bottom:288.118400pt;}
.y11d{bottom:288.808267pt;}
.y161{bottom:288.942400pt;}
.y189{bottom:289.674800pt;}
.y2ba{bottom:290.062133pt;}
.y1e2{bottom:290.719200pt;}
.y232{bottom:292.390000pt;}
.y2e9{bottom:295.768400pt;}
.y100{bottom:297.501333pt;}
.y361{bottom:298.573867pt;}
.y231{bottom:299.055067pt;}
.y394{bottom:299.058533pt;}
.y76{bottom:299.201600pt;}
.yd4{bottom:299.549200pt;}
.ya4{bottom:300.688133pt;}
.y272{bottom:302.155867pt;}
.y3c7{bottom:302.258533pt;}
.y33b{bottom:302.261067pt;}
.y188{bottom:303.008133pt;}
.y246{bottom:303.319467pt;}
.y49{bottom:303.692400pt;}
.y18e{bottom:304.362800pt;}
.y160{bottom:304.938400pt;}
.y233{bottom:305.723333pt;}
.y2b9{bottom:306.058133pt;}
.y1e1{bottom:307.935200pt;}
.yf{bottom:309.452000pt;}
.y18d{bottom:311.029467pt;}
.y2e8{bottom:311.764400pt;}
.y360{bottom:312.973867pt;}
.yff{bottom:313.497333pt;}
.y393{bottom:313.725200pt;}
.y75{bottom:315.065600pt;}
.yd3{bottom:315.545200pt;}
.y3c6{bottom:316.391867pt;}
.ya3{bottom:316.684133pt;}
.y271{bottom:318.151867pt;}
.y33a{bottom:318.257067pt;}
.y48{bottom:319.688400pt;}
.y1ad{bottom:319.882000pt;}
.y15f{bottom:320.934400pt;}
.y2b8{bottom:322.054133pt;}
.y22f{bottom:322.937733pt;}
.y1e0{bottom:325.151200pt;}
.y35f{bottom:327.373867pt;}
.y2e7{bottom:327.760400pt;}
.y392{bottom:328.391867pt;}
.y11c{bottom:329.008133pt;}
.yfe{bottom:329.493333pt;}
.y22e{bottom:329.602800pt;}
.y3c5{bottom:330.525200pt;}
.y74{bottom:330.929600pt;}
.yd2{bottom:331.541200pt;}
.ya2{bottom:332.680133pt;}
.y270{bottom:334.147867pt;}
.y339{bottom:334.253067pt;}
.y18c{bottom:334.912133pt;}
.y47{bottom:335.684400pt;}
.y230{bottom:336.271067pt;}
.y15e{bottom:336.930400pt;}
.y2b7{bottom:338.050133pt;}
.y35e{bottom:341.773867pt;}
.y1de{bottom:342.367200pt;}
.y391{bottom:343.058533pt;}
.y2e6{bottom:343.756400pt;}
.ye{bottom:343.809333pt;}
.y3c4{bottom:344.658533pt;}
.y11b{bottom:345.004133pt;}
.yfd{bottom:345.489333pt;}
.y73{bottom:346.793600pt;}
.yd1{bottom:347.537200pt;}
.ya1{bottom:348.676133pt;}
.y1dd{bottom:349.027867pt;}
.y26f{bottom:350.143867pt;}
.y338{bottom:350.249067pt;}
.y18b{bottom:352.128133pt;}
.y1ac{bottom:352.403733pt;}
.y15d{bottom:352.926400pt;}
.y22c{bottom:353.485467pt;}
.y2a6{bottom:355.613333pt;}
.y1df{bottom:355.700533pt;}
.y35d{bottom:356.173867pt;}
.y390{bottom:357.725200pt;}
.y3c3{bottom:358.791867pt;}
.y2b4{bottom:359.322400pt;}
.y2e5{bottom:359.752400pt;}
.y22b{bottom:360.150667pt;}
.y159{bottom:360.922667pt;}
.y11a{bottom:361.000133pt;}
.yfc{bottom:361.485333pt;}
.y72{bottom:362.657600pt;}
.yd{bottom:362.706666pt;}
.y46{bottom:363.023067pt;}
.y2af{bottom:363.442133pt;}
.y2b6{bottom:363.445467pt;}
.yd0{bottom:363.533200pt;}
.ya0{bottom:364.672133pt;}
.y15b{bottom:364.797467pt;}
.y337{bottom:366.245067pt;}
.y22d{bottom:366.818800pt;}
.y1ab{bottom:368.399733pt;}
.y15c{bottom:368.922400pt;}
.y158{bottom:368.926400pt;}
.y18a{bottom:369.344133pt;}
.y35c{bottom:370.573867pt;}
.y38f{bottom:372.391867pt;}
.y1db{bottom:372.910533pt;}
.y3c2{bottom:372.925200pt;}
.y2ae{bottom:372.946133pt;}
.y2a5{bottom:372.946667pt;}
.y26e{bottom:373.702933pt;}
.y2e4{bottom:375.748400pt;}
.y119{bottom:376.996133pt;}
.yfb{bottom:377.481333pt;}
.y71{bottom:378.521600pt;}
.y2b3{bottom:378.906400pt;}
.ycf{bottom:379.529200pt;}
.y1da{bottom:379.577200pt;}
.y9f{bottom:380.668133pt;}
.y336{bottom:382.241067pt;}
.y2ac{bottom:383.029467pt;}
.y304{bottom:383.895733pt;}
.y229{bottom:384.033333pt;}
.y1aa{bottom:384.395733pt;}
.y157{bottom:384.922400pt;}
.y35b{bottom:384.973867pt;}
.y1dc{bottom:386.243867pt;}
.y187{bottom:386.560133pt;}
.y38e{bottom:387.058533pt;}
.y3c1{bottom:387.325200pt;}
.y2f6{bottom:389.506933pt;}
.y228{bottom:390.698400pt;}
.y2e3{bottom:391.744400pt;}
.y2a9{bottom:392.283467pt;}
.y26d{bottom:392.764800pt;}
.y118{bottom:392.992133pt;}
.yfa{bottom:393.477333pt;}
.y70{bottom:394.385600pt;}
.yce{bottom:395.525200pt;}
.y2b2{bottom:396.654400pt;}
.y9e{bottom:396.664133pt;}
.y22a{bottom:397.366667pt;}
.y335{bottom:398.237067pt;}
.y35a{bottom:399.373867pt;}
.y303{bottom:399.891733pt;}
.y186{bottom:399.893467pt;}
.y1a9{bottom:400.391733pt;}
.y2a8{bottom:400.779467pt;}
.y3c0{bottom:401.458533pt;}
.y38d{bottom:401.725200pt;}
.y1d8{bottom:403.459867pt;}
.y43{bottom:404.530133pt;}
.y156{bottom:408.481467pt;}
.y117{bottom:408.988133pt;}
.yf9{bottom:409.473333pt;}
.y26c{bottom:409.980800pt;}
.y1d7{bottom:410.126533pt;}
.y6f{bottom:410.249600pt;}
.ycd{bottom:411.521200pt;}
.y9d{bottom:412.660133pt;}
.y183{bottom:413.226800pt;}
.y359{bottom:413.773867pt;}
.y334{bottom:414.233067pt;}
.y226{bottom:414.581067pt;}
.y2e2{bottom:415.303600pt;}
.y3bf{bottom:415.591867pt;}
.y302{bottom:415.887733pt;}
.y1a8{bottom:416.387733pt;}
.y38c{bottom:416.391867pt;}
.y1d9{bottom:416.793200pt;}
.y180{bottom:419.893467pt;}
.y2a1{bottom:420.074667pt;}
.y42{bottom:421.096533pt;}
.y225{bottom:421.246133pt;}
.y116{bottom:424.984133pt;}
.yf8{bottom:425.469333pt;}
.y6e{bottom:426.113600pt;}
.y182{bottom:426.560133pt;}
.y26a{bottom:427.196800pt;}
.ycc{bottom:427.517200pt;}
.y227{bottom:427.914400pt;}
.y2a4{bottom:428.074667pt;}
.y2a0{bottom:428.075867pt;}
.y358{bottom:428.173867pt;}
.y9c{bottom:428.656133pt;}
.y3be{bottom:429.725200pt;}
.y333{bottom:430.229067pt;}
.y38b{bottom:431.058533pt;}
.y301{bottom:431.883733pt;}
.y1a7{bottom:432.383733pt;}
.y17f{bottom:433.226800pt;}
.y269{bottom:433.863467pt;}
.y1d5{bottom:434.009200pt;}
.y2e1{bottom:434.371867pt;}
.y181{bottom:439.893467pt;}
.y26b{bottom:440.530133pt;}
.y1d4{bottom:440.675867pt;}
.y41{bottom:440.869867pt;}
.y115{bottom:440.980133pt;}
.yf7{bottom:441.465333pt;}
.y6d{bottom:441.977600pt;}
.y357{bottom:442.573867pt;}
.y155{bottom:443.383200pt;}
.ycb{bottom:443.513200pt;}
.y3bd{bottom:443.858533pt;}
.y9b{bottom:444.652133pt;}
.y223{bottom:445.128800pt;}
.y38a{bottom:445.725200pt;}
.y332{bottom:446.225067pt;}
.yc{bottom:446.990669pt;}
.y1d6{bottom:447.342533pt;}
.y300{bottom:447.879733pt;}
.y1a6{bottom:448.379733pt;}
.y29a{bottom:449.418667pt;}
.y153{bottom:451.378667pt;}
.y2e0{bottom:451.587867pt;}
.y222{bottom:451.793867pt;}
.y40{bottom:452.872667pt;}
.y185{bottom:453.226800pt;}
.y356{bottom:456.973867pt;}
.y114{bottom:456.976133pt;}
.yf6{bottom:457.461333pt;}
.y268{bottom:457.746133pt;}
.y6c{bottom:457.841600pt;}
.y3bc{bottom:457.991867pt;}
.y224{bottom:458.462133pt;}
.y154{bottom:459.379200pt;}
.y152{bottom:459.387200pt;}
.yca{bottom:459.509200pt;}
.y389{bottom:460.391867pt;}
.y9a{bottom:460.648133pt;}
.y331{bottom:462.221067pt;}
.yb{bottom:462.990669pt;}
.y2ff{bottom:463.875733pt;}
.y1d2{bottom:464.558533pt;}
.y184{bottom:466.560133pt;}
.y29f{bottom:466.751867pt;}
.y299{bottom:466.760267pt;}
.y2de{bottom:468.803867pt;}
.y1d1{bottom:471.225200pt;}
.y355{bottom:471.373867pt;}
.y1a5{bottom:471.938667pt;}
.y3bb{bottom:472.125200pt;}
.y3d{bottom:472.613867pt;}
.y113{bottom:472.972133pt;}
.yf5{bottom:473.457333pt;}
.y6b{bottom:473.705600pt;}
.y388{bottom:475.058533pt;}
.y151{bottom:475.383200pt;}
.y2dd{bottom:475.470533pt;}
.yc9{bottom:475.505200pt;}
.y220{bottom:475.676533pt;}
.y99{bottom:476.644133pt;}
.y267{bottom:477.351467pt;}
.y1d3{bottom:477.891867pt;}
.y330{bottom:478.217067pt;}
.ya{bottom:478.990666pt;}
.y2fe{bottom:479.871733pt;}
.y2df{bottom:482.137200pt;}
.y21f{bottom:482.341733pt;}
.y14f{bottom:483.378667pt;}
.y17e{bottom:483.776133pt;}
.y266{bottom:484.018133pt;}
.y3c{bottom:484.616533pt;}
.y354{bottom:485.773867pt;}
.y3ba{bottom:486.525200pt;}
.y112{bottom:488.968133pt;}
.y221{bottom:489.009867pt;}
.yf4{bottom:489.453333pt;}
.y6a{bottom:489.569600pt;}
.y387{bottom:489.725200pt;}
.y150{bottom:491.379200pt;}
.y14e{bottom:491.383200pt;}
.yc8{bottom:491.501200pt;}
.y298{bottom:491.648267pt;}
.y98{bottom:492.640133pt;}
.y32f{bottom:494.213067pt;}
.y9{bottom:494.990666pt;}
.y1cf{bottom:495.107867pt;}
.y2fd{bottom:495.867733pt;}
.y3b{bottom:496.619200pt;}
.y17d{bottom:497.109467pt;}
.y1a4{bottom:499.277333pt;}
.y14a{bottom:499.378667pt;}
.y294{bottom:499.644000pt;}
.y353{bottom:500.173867pt;}
.y3b9{bottom:500.658533pt;}
.y1ce{bottom:501.774533pt;}
.y2dc{bottom:502.606533pt;}
.y386{bottom:504.391867pt;}
.y111{bottom:504.964133pt;}
.y69{bottom:505.433600pt;}
.yf3{bottom:505.449333pt;}
.y179{bottom:505.717467pt;}
.y21d{bottom:506.224400pt;}
.y14d{bottom:507.379200pt;}
.y149{bottom:507.381200pt;}
.yc7{bottom:507.497200pt;}
.y297{bottom:507.644267pt;}
.y293{bottom:507.648267pt;}
.y1d0{bottom:508.441200pt;}
.y3a{bottom:508.621867pt;}
.y97{bottom:508.636133pt;}
.y32e{bottom:510.209067pt;}
.y264{bottom:511.250133pt;}
.y21c{bottom:512.889467pt;}
.y17c{bottom:514.325467pt;}
.y352{bottom:514.573867pt;}
.y3b8{bottom:514.791867pt;}
.y263{bottom:517.916800pt;}
.y178{bottom:519.050800pt;}
.y385{bottom:519.058533pt;}
.y2fc{bottom:519.426800pt;}
.y21e{bottom:519.557733pt;}
.y39{bottom:520.624533pt;}
.y110{bottom:520.960133pt;}
.y68{bottom:521.297600pt;}
.yf2{bottom:521.445333pt;}
.y2db{bottom:523.075867pt;}
.yc6{bottom:523.493200pt;}
.y292{bottom:523.644267pt;}
.y265{bottom:524.583467pt;}
.y96{bottom:524.632133pt;}
.y1cc{bottom:525.657200pt;}
.y32d{bottom:526.205067pt;}
.y17a{bottom:527.658800pt;}
.y3b7{bottom:528.925200pt;}
.y2da{bottom:529.742533pt;}
.y145{bottom:530.497333pt;}
.y1cb{bottom:532.323867pt;}
.y38{bottom:532.627200pt;}
.y384{bottom:533.725200pt;}
.y245{bottom:534.315467pt;}
.y21a{bottom:536.772133pt;}
.y10f{bottom:536.956133pt;}
.y67{bottom:537.161600pt;}
.yf1{bottom:537.441333pt;}
.y148{bottom:538.497200pt;}
.y144{bottom:538.500667pt;}
.y1cd{bottom:538.990533pt;}
.yc5{bottom:539.489200pt;}
.y1a3{bottom:539.493333pt;}
.y351{bottom:540.312533pt;}
.y95{bottom:540.628133pt;}
.y17b{bottom:540.992133pt;}
.y32c{bottom:542.201067pt;}
.y3b6{bottom:543.325200pt;}
.y219{bottom:543.441067pt;}
.y37{bottom:544.629867pt;}
.y262{bottom:544.647467pt;}
.y291{bottom:547.203333pt;}
.y383{bottom:548.391867pt;}
.y21b{bottom:550.105467pt;}
.y31b{bottom:550.166000pt;}
.y10e{bottom:552.952133pt;}
.y66{bottom:553.025600pt;}
.yf0{bottom:553.437333pt;}
.y2d8{bottom:553.625200pt;}
.yc4{bottom:555.485200pt;}
.y1a2{bottom:555.489333pt;}
.y1c9{bottom:556.206533pt;}
.y94{bottom:556.624133pt;}
.y36{bottom:556.632533pt;}
.y3b5{bottom:557.458533pt;}
.y32b{bottom:558.197067pt;}
.y177{bottom:560.096133pt;}
.y2d7{bottom:560.291867pt;}
.y1c8{bottom:562.873200pt;}
.y13f{bottom:562.949333pt;}
.y382{bottom:563.058533pt;}
.y261{bottom:565.639467pt;}
.y290{bottom:566.250933pt;}
.y142{bottom:566.823733pt;}
.y2d9{bottom:566.958533pt;}
.y35{bottom:568.635200pt;}
.y65{bottom:568.889600pt;}
.y218{bottom:569.211733pt;}
.y31a{bottom:569.217867pt;}
.yef{bottom:569.433333pt;}
.y1ca{bottom:569.539867pt;}
.y143{bottom:570.948667pt;}
.y13e{bottom:570.951200pt;}
.yc3{bottom:571.481200pt;}
.y1a1{bottom:571.485333pt;}
.y3b4{bottom:571.591867pt;}
.y93{bottom:572.620133pt;}
.y8{bottom:573.786667pt;}
.y32a{bottom:574.193067pt;}
.y381{bottom:577.725200pt;}
.y350{bottom:580.460267pt;}
.y34{bottom:580.637867pt;}
.y10d{bottom:582.180400pt;}
.y28f{bottom:583.466933pt;}
.y64{bottom:584.753600pt;}
.yee{bottom:585.429333pt;}
.y3b3{bottom:585.725200pt;}
.y2d6{bottom:586.062533pt;}
.y319{bottom:586.433867pt;}
.y176{bottom:586.923467pt;}
.yc2{bottom:587.477200pt;}
.y1a0{bottom:587.481333pt;}
.y92{bottom:588.616133pt;}
.y329{bottom:590.189067pt;}
.y217{bottom:590.203733pt;}
.y1c6{bottom:590.446533pt;}
.y136{bottom:592.292000pt;}
.y380{bottom:592.391867pt;}
.y260{bottom:592.466800pt;}
.y33{bottom:592.640533pt;}
.y7{bottom:592.685334pt;}
.y34f{bottom:596.456267pt;}
.y1c5{bottom:597.113200pt;}
.y3b2{bottom:599.858533pt;}
.y63{bottom:600.617600pt;}
.y28d{bottom:600.682933pt;}
.yed{bottom:601.425333pt;}
.yc1{bottom:603.473200pt;}
.y19f{bottom:603.477333pt;}
.y318{bottom:603.649867pt;}
.y1c7{bottom:603.779867pt;}
.y2f5{bottom:604.118400pt;}
.y91{bottom:604.612133pt;}
.y32{bottom:604.643200pt;}
.y328{bottom:606.185067pt;}
.y3f{bottom:606.760667pt;}
.y2d5{bottom:607.054533pt;}
.y37f{bottom:607.058533pt;}
.y28c{bottom:607.349600pt;}
.y13d{bottom:610.959200pt;}
.y135{bottom:610.961733pt;}
.y3b1{bottom:613.991867pt;}
.y28e{bottom:614.016267pt;}
.y62{bottom:616.481600pt;}
.y31{bottom:616.645867pt;}
.y216{bottom:617.031067pt;}
.y3e{bottom:617.392533pt;}
.yec{bottom:617.421333pt;}
.yc0{bottom:619.469200pt;}
.y19e{bottom:619.473333pt;}
.y90{bottom:620.608133pt;}
.y316{bottom:620.865867pt;}
.y37e{bottom:621.725200pt;}
.y327{bottom:622.181067pt;}
.y34e{bottom:623.794933pt;}
.y25f{bottom:624.992400pt;}
.y1c4{bottom:626.574533pt;}
.y315{bottom:627.532533pt;}
.y3b0{bottom:628.391867pt;}
.y30{bottom:629.619200pt;}
.y28b{bottom:631.232267pt;}
.y61{bottom:632.345600pt;}
.yeb{bottom:633.417333pt;}
.y2d4{bottom:633.881867pt;}
.y317{bottom:634.199200pt;}
.ybf{bottom:635.465200pt;}
.y19d{bottom:635.469333pt;}
.y37d{bottom:636.391867pt;}
.y8f{bottom:636.604133pt;}
.y326{bottom:638.177067pt;}
.y25e{bottom:640.988400pt;}
.y130{bottom:641.636000pt;}
.y3af{bottom:642.525200pt;}
.y6{bottom:645.598667pt;}
.y1c3{bottom:647.566533pt;}
.y60{bottom:648.209600pt;}
.yea{bottom:649.413333pt;}
.y215{bottom:649.536667pt;}
.y134{bottom:650.969733pt;}
.y12f{bottom:651.009333pt;}
.y37c{bottom:651.058533pt;}
.y314{bottom:651.415200pt;}
.ybe{bottom:651.461200pt;}
.y19c{bottom:651.465333pt;}
.y8e{bottom:652.600133pt;}
.y2f{bottom:652.993467pt;}
.y289{bottom:653.237600pt;}
.y325{bottom:654.173067pt;}
.y3ae{bottom:656.658533pt;}
.y25d{bottom:656.984400pt;}
.y288{bottom:657.514933pt;}
.y34d{bottom:663.946667pt;}
.y5f{bottom:664.073600pt;}
.ye9{bottom:665.409333pt;}
.y214{bottom:665.532667pt;}
.y37b{bottom:665.725200pt;}
.y2d3{bottom:666.409600pt;}
.y28a{bottom:666.570933pt;}
.ybd{bottom:667.457200pt;}
.y19b{bottom:667.461333pt;}
.y312{bottom:668.631200pt;}
.y3{bottom:668.977329pt;}
.y324{bottom:670.169067pt;}
.y3ad{bottom:670.791867pt;}
.y25c{bottom:672.980400pt;}
.y2e{bottom:673.350400pt;}
.y1c2{bottom:674.393733pt;}
.y311{bottom:675.297867pt;}
.y8d{bottom:676.159200pt;}
.y212{bottom:676.194667pt;}
.y5e{bottom:679.937600pt;}
.y34c{bottom:679.942667pt;}
.y37a{bottom:680.391867pt;}
.ye8{bottom:681.405333pt;}
.y213{bottom:681.528667pt;}
.y211{bottom:681.536667pt;}
.y313{bottom:681.964533pt;}
.y2d2{bottom:682.405600pt;}
.ybc{bottom:683.453200pt;}
.y12e{bottom:683.457333pt;}
.y3ac{bottom:684.925200pt;}
.y323{bottom:686.165067pt;}
.y286{bottom:688.576267pt;}
.y25b{bottom:688.976400pt;}
.y285{bottom:692.853600pt;}
.y379{bottom:695.058533pt;}
.y5d{bottom:695.801600pt;}
.y34b{bottom:695.938667pt;}
.y210{bottom:697.532667pt;}
.y2d1{bottom:698.401600pt;}
.y3ab{bottom:699.058533pt;}
.y30f{bottom:699.180533pt;}
.ybb{bottom:699.449200pt;}
.y12d{bottom:699.453333pt;}
.y2d{bottom:699.474933pt;}
.y287{bottom:701.909600pt;}
.y322{bottom:702.161067pt;}
.y8c{bottom:703.497867pt;}
.ye7{bottom:704.964400pt;}
.y25a{bottom:704.972400pt;}
.y30e{bottom:705.847200pt;}
.y1c1{bottom:706.911333pt;}
.y20c{bottom:709.529333pt;}
.y378{bottom:709.725200pt;}
.y5c{bottom:711.665600pt;}
.y310{bottom:712.513867pt;}
.y3aa{bottom:713.458533pt;}
.y20f{bottom:713.528667pt;}
.y20b{bottom:713.532667pt;}
.y2d0{bottom:714.397600pt;}
.yba{bottom:715.445200pt;}
.y12c{bottom:715.449333pt;}
.y2c{bottom:715.476933pt;}
.y321{bottom:718.157067pt;}
.y259{bottom:720.968400pt;}
.y283{bottom:721.045600pt;}
.y1c0{bottom:722.907333pt;}
.y34a{bottom:723.277333pt;}
.y207{bottom:724.194667pt;}
.y377{bottom:724.391867pt;}
.y282{bottom:726.752267pt;}
.y3a9{bottom:727.591867pt;}
.y5b{bottom:727.661600pt;}
.y20a{bottom:729.528667pt;}
.y2cf{bottom:730.393600pt;}
.y30c{bottom:730.689867pt;}
.yb9{bottom:731.441200pt;}
.y12b{bottom:731.445333pt;}
.y320{bottom:734.153067pt;}
.y284{bottom:734.378933pt;}
.y258{bottom:736.964400pt;}
.y30b{bottom:737.356533pt;}
.y1bf{bottom:738.903333pt;}
.y376{bottom:739.058533pt;}
.ye6{bottom:739.881333pt;}
.y3a8{bottom:741.725200pt;}
.y5a{bottom:743.657600pt;}
.y8b{bottom:743.661333pt;}
.y30d{bottom:744.023200pt;}
.y2ce{bottom:746.389600pt;}
.y1f2{bottom:747.324000pt;}
.yb8{bottom:747.437200pt;}
.y12a{bottom:747.441333pt;}
.y31f{bottom:750.149067pt;}
.y281{bottom:753.482933pt;}
.y375{bottom:753.725200pt;}
.y1ff{bottom:754.356933pt;}
.y205{bottom:754.360533pt;}
.y201{bottom:754.365600pt;}
.y1be{bottom:754.899333pt;}
.y3a7{bottom:755.858533pt;}
.y206{bottom:756.657200pt;}
.y59{bottom:759.653600pt;}
.y8a{bottom:759.657333pt;}
.y257{bottom:760.523467pt;}
.y2cd{bottom:762.385600pt;}
.yb7{bottom:763.433200pt;}
.ye5{bottom:763.437333pt;}
.y30a{bottom:764.087200pt;}
.y31e{bottom:766.145067pt;}
.y202{bottom:768.115600pt;}
.y1f8{bottom:768.120267pt;}
.y1fb{bottom:768.129267pt;}
.y374{bottom:768.391867pt;}
.y3a6{bottom:769.991867pt;}
.y1bd{bottom:770.895333pt;}
.y1f1{bottom:772.233200pt;}
.y1fe{bottom:772.236933pt;}
.y204{bottom:772.240533pt;}
.y2b{bottom:774.803200pt;}
.y58{bottom:775.649600pt;}
.y89{bottom:775.653333pt;}
.y200{bottom:776.198933pt;}
.y1f7{bottom:776.202267pt;}
.y2cc{bottom:778.381600pt;}
.yb6{bottom:779.429200pt;}
.ye4{bottom:779.433333pt;}
.y280{bottom:779.776267pt;}
.y2{bottom:781.661334pt;}
.y31d{bottom:782.141067pt;}
.y373{bottom:783.058533pt;}
.y3a5{bottom:784.125200pt;}
.y309{bottom:785.079200pt;}
.y1bc{bottom:786.891333pt;}
.y1f6{bottom:787.326267pt;}
.y1fa{bottom:787.335267pt;}
.y1f0{bottom:791.445200pt;}
.y1fd{bottom:791.448933pt;}
.y57{bottom:791.645600pt;}
.y88{bottom:791.649333pt;}
.y2a{bottom:792.198933pt;}
.y1f5{bottom:795.408267pt;}
.yb5{bottom:795.425200pt;}
.ye3{bottom:795.429333pt;}
.y45{bottom:797.365200pt;}
.y372{bottom:797.725200pt;}
.y3a4{bottom:798.258533pt;}
.y2ca{bottom:801.497333pt;}
.y1f4{bottom:806.532267pt;}
.y1f9{bottom:806.541267pt;}
.y56{bottom:807.641600pt;}
.y87{bottom:807.645333pt;}
.y29{bottom:809.462933pt;}
.y31c{bottom:809.479733pt;}
.y2c9{bottom:809.493333pt;}
.y2cb{bottom:809.497600pt;}
.y1bb{bottom:810.450400pt;}
.y1ef{bottom:810.657200pt;}
.yb4{bottom:811.421200pt;}
.ye2{bottom:811.425333pt;}
.y27f{bottom:811.906533pt;}
.y371{bottom:812.391867pt;}
.y44{bottom:814.559067pt;}
.y28{bottom:825.600267pt;}
.y27{bottom:841.737600pt;}
.y55{bottom:844.017333pt;}
.y86{bottom:846.005200pt;}
.y1{bottom:859.312000pt;}
.y26{bottom:867.070800pt;}
.h41{height:18.600000pt;}
.h3f{height:20.000000pt;}
.h2f{height:21.332000pt;}
.h2d{height:21.333333pt;}
.he{height:22.720000pt;}
.hc{height:22.752000pt;}
.h20{height:24.000000pt;}
.ha{height:24.031250pt;}
.h12{height:24.153792pt;}
.hd{height:24.648000pt;}
.h1c{height:25.648533pt;}
.h14{height:26.133333pt;}
.h42{height:26.938631pt;}
.h28{height:26.993102pt;}
.h2a{height:27.028203pt;}
.h3e{height:27.035156pt;}
.h24{height:27.070312pt;}
.hb{height:28.036458pt;}
.h11{height:28.072917pt;}
.h44{height:28.534121pt;}
.h7{height:28.560000pt;}
.h16{height:29.578125pt;}
.h34{height:32.041667pt;}
.h37{height:32.083333pt;}
.h23{height:33.275391pt;}
.h40{height:33.345703pt;}
.h1b{height:33.600000pt;}
.h10{height:33.626127pt;}
.h3b{height:34.044271pt;}
.h1f{height:34.088542pt;}
.h15{height:34.507279pt;}
.h13{height:34.507812pt;}
.h43{height:35.965016pt;}
.h2b{height:36.037203pt;}
.h19{height:36.046875pt;}
.h1e{height:36.093750pt;}
.h30{height:37.333333pt;}
.h35{height:39.437500pt;}
.h3a{height:39.479167pt;}
.hf{height:39.867188pt;}
.h4b{height:40.001333pt;}
.h1d{height:40.104167pt;}
.h6{height:40.800000pt;}
.h33{height:41.902344pt;}
.h48{height:41.905010pt;}
.h25{height:42.600000pt;}
.h3{height:42.840000pt;}
.h18{height:44.114583pt;}
.h29{height:44.297679pt;}
.h1a{height:44.367188pt;}
.h27{height:44.391282pt;}
.h2c{height:44.450804pt;}
.h22{height:44.460938pt;}
.h50{height:45.097667pt;}
.h17{height:45.499067pt;}
.h2{height:48.960000pt;}
.h45{height:58.699267pt;}
.h36{height:58.708333pt;}
.h47{height:58.714200pt;}
.h46{height:58.714733pt;}
.h2e{height:60.866921pt;}
.h4d{height:61.333333pt;}
.h49{height:62.548333pt;}
.h3c{height:64.801917pt;}
.h38{height:66.104167pt;}
.h4a{height:68.265667pt;}
.h5{height:69.360000pt;}
.h26{height:71.981764pt;}
.h21{height:72.094398pt;}
.h4c{height:74.046875pt;}
.h4e{height:74.049542pt;}
.h31{height:75.039187pt;}
.h4f{height:76.415071pt;}
.h32{height:76.471071pt;}
.h3d{height:78.666667pt;}
.h39{height:85.375000pt;}
.h4{height:105.826671pt;}
.h8{height:907.086667pt;}
.h9{height:907.333333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.wb{width:30.666667pt;}
.w9{width:34.666667pt;}
.w15{width:36.000000pt;}
.w14{width:37.333333pt;}
.w16{width:37.334667pt;}
.w17{width:38.666667pt;}
.wd{width:45.332000pt;}
.w13{width:46.666667pt;}
.w12{width:48.000000pt;}
.wc{width:49.333333pt;}
.w18{width:70.666667pt;}
.wa{width:84.000000pt;}
.w10{width:161.334667pt;}
.we{width:222.665333pt;}
.wf{width:241.333333pt;}
.w7{width:272.000000pt;}
.w19{width:277.333333pt;}
.w1a{width:298.666667pt;}
.w8{width:318.377333pt;}
.w6{width:364.000000pt;}
.w5{width:378.600000pt;}
.w1b{width:410.668000pt;}
.w11{width:482.666667pt;}
.w2{width:566.928019pt;}
.w4{width:634.666667pt;}
.w3{width:634.960000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:1.916133pt;}
.x6b{left:3.208267pt;}
.x36{left:5.500267pt;}
.x89{left:9.624400pt;}
.x8e{left:11.375733pt;}
.x8b{left:12.832800pt;}
.x31{left:22.208000pt;}
.x1d{left:24.174267pt;}
.x88{left:25.124400pt;}
.x17{left:26.245200pt;}
.x2b{left:28.458133pt;}
.x1b{left:30.327867pt;}
.x13{left:34.243867pt;}
.x25{left:36.500800pt;}
.x34{left:40.583600pt;}
.x6a{left:42.124267pt;}
.x95{left:46.042400pt;}
.x20{left:48.458267pt;}
.x26{left:52.459067pt;}
.x8a{left:55.207733pt;}
.x39{left:63.117600pt;}
.x9d{left:64.499867pt;}
.x10{left:68.031467pt;}
.x45{left:72.306133pt;}
.x5{left:75.940933pt;}
.x44{left:77.095467pt;}
.xc{left:79.370133pt;}
.x3d{left:80.666533pt;}
.xe{left:83.165467pt;}
.x11{left:86.931467pt;}
.x61{left:87.882267pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x9c{left:97.833200pt;}
.x5f{left:101.804933pt;}
.x48{left:110.179600pt;}
.x5c{left:112.090533pt;}
.x28{left:113.312000pt;}
.x60{left:114.800933pt;}
.x9b{left:115.926667pt;}
.x7a{left:119.037333pt;}
.x93{left:120.246800pt;}
.x63{left:125.054533pt;}
.x5e{left:128.048933pt;}
.x62{left:129.590533pt;}
.x12{left:131.960000pt;}
.x14{left:139.683600pt;}
.x1a{left:141.999867pt;}
.x29{left:148.158933pt;}
.x46{left:150.983467pt;}
.x5d{left:152.624933pt;}
.x15{left:155.639067pt;}
.x1c{left:157.958267pt;}
.x24{left:160.769333pt;}
.x4b{left:162.400400pt;}
.x97{left:164.368000pt;}
.x7b{left:167.148133pt;}
.x69{left:168.954667pt;}
.x4a{left:172.181733pt;}
.x87{left:175.034667pt;}
.x98{left:178.624400pt;}
.x4{left:180.874667pt;}
.x1f{left:185.260000pt;}
.x6c{left:195.653200pt;}
.x7c{left:197.770667pt;}
.x3c{left:200.593333pt;}
.x40{left:202.884933pt;}
.x22{left:207.468133pt;}
.x38{left:209.926667pt;}
.x8c{left:210.839600pt;}
.x99{left:213.950800pt;}
.xf{left:216.431600pt;}
.x58{left:225.591867pt;}
.x3e{left:227.093200pt;}
.x3b{left:228.051600pt;}
.xd{left:230.548133pt;}
.x4c{left:231.712400pt;}
.x8d{left:233.033333pt;}
.x49{left:236.544400pt;}
.x41{left:240.593333pt;}
.x43{left:242.509867pt;}
.x7d{left:244.548533pt;}
.x6d{left:246.797333pt;}
.x90{left:251.784133pt;}
.x2d{left:255.964000pt;}
.x33{left:260.009333pt;}
.x96{left:260.992400pt;}
.x21{left:266.333200pt;}
.x92{left:271.287067pt;}
.x8f{left:273.284133pt;}
.x3f{left:277.349200pt;}
.x6e{left:282.798533pt;}
.x2e{left:286.810533pt;}
.x94{left:287.905467pt;}
.x35{left:289.801333pt;}
.x55{left:294.901733pt;}
.x4d{left:297.568400pt;}
.x57{left:298.699067pt;}
.x4e{left:301.024400pt;}
.x80{left:302.656533pt;}
.x37{left:305.342933pt;}
.x81{left:307.605867pt;}
.x77{left:310.215600pt;}
.x7e{left:312.095733pt;}
.x42{left:316.009867pt;}
.x6f{left:327.037867pt;}
.x70{left:333.944000pt;}
.x91{left:343.659067pt;}
.x2a{left:350.111600pt;}
.x47{left:352.092800pt;}
.x86{left:365.352400pt;}
.x59{left:366.882533pt;}
.x4f{left:367.808400pt;}
.x50{left:370.336400pt;}
.x16{left:373.475733pt;}
.x71{left:376.850667pt;}
.x67{left:402.509333pt;}
.x3{left:404.408000pt;}
.x65{left:412.965600pt;}
.x72{left:415.516533pt;}
.xb{left:421.319600pt;}
.x73{left:422.422667pt;}
.x66{left:427.757333pt;}
.x2f{left:429.908000pt;}
.x3a{left:432.593200pt;}
.x56{left:434.453733pt;}
.x5a{left:436.194533pt;}
.x51{left:437.120400pt;}
.x52{left:439.648400pt;}
.x6{left:442.251600pt;}
.x85{left:451.627200pt;}
.x64{left:453.715600pt;}
.x84{left:455.861867pt;}
.x23{left:457.259867pt;}
.x82{left:458.741867pt;}
.x74{left:459.755867pt;}
.x83{left:461.269867pt;}
.x9a{left:463.034133pt;}
.x9f{left:464.167600pt;}
.x7f{left:465.375733pt;}
.x75{left:466.661333pt;}
.x79{left:467.606400pt;}
.x78{left:469.173867pt;}
.x27{left:479.148133pt;}
.xa{left:500.606267pt;}
.x1e{left:503.259867pt;}
.x5b{left:505.506533pt;}
.x53{left:506.432400pt;}
.x54{left:508.960400pt;}
.x19{left:510.559867pt;}
.x8{left:519.577600pt;}
.x30{left:523.154667pt;}
.x9e{left:526.593200pt;}
.x76{left:529.596000pt;}
.x9{left:532.499600pt;}
.x7{left:539.580267pt;}
.x32{left:554.001067pt;}
.x68{left:556.577600pt;}
.x2c{left:566.929200pt;}
}




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