
    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_07fb078342108d9e40cfdea0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_518392488e0da0035b9f6331.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.736000;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_1070f1da8f7bff17897e53a1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9b1e4fc39652f9b593cc70f1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_d517af46c36a0a11fc1a2373.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.747000;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_7e7531ee649d84bb356453a0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970000;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_de60e32dfa911b041d0d8c12.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.076000;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_a583f3a69246a527a93655aa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.969000;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_0daeb04b5d8f6a372110b645.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.880000;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_ff77578d038b298a2fc95f74.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.068000;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_d7fc452d8d2233e7f25d980b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.947000;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_ef576a2e411088ba5e9cd7b4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.077000;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_b06be2b6f988e4f37dc307c8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.948000;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_a935388c029af23ed3027b1e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.957000;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_c33d20785535ef75850232be.woff2')format("woff");}.fff{font-family:fff;line-height:0.937000;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_9f8664a744ddfe5acb65f602.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.933000;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_b4fbf1122724ea06d4339db0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.954000;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;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,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);}
.m3{transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-15.984000px;}
.v2{vertical-align:-1.313400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:28.800000px;}
.ls3f{letter-spacing:-5.292000px;}
.ls3d{letter-spacing:-4.896000px;}
.ls38{letter-spacing:-2.580000px;}
.ls2a{letter-spacing:-2.160000px;}
.ls55{letter-spacing:-2.106000px;}
.lsc{letter-spacing:-2.016000px;}
.ls2e{letter-spacing:-1.920000px;}
.ls2c{letter-spacing:-1.740000px;}
.lsb{letter-spacing:-1.680000px;}
.ls43{letter-spacing:-1.620000px;}
.ls1e{letter-spacing:-1.560000px;}
.ls46{letter-spacing:-1.458000px;}
.ls41{letter-spacing:-1.440000px;}
.ls2b{letter-spacing:-1.380000px;}
.ls2d{letter-spacing:-1.320000px;}
.ls53{letter-spacing:-1.296000px;}
.ls4f{letter-spacing:-1.242000px;}
.lsf{letter-spacing:-1.200000px;}
.ls2f{letter-spacing:-1.140000px;}
.ls1c{letter-spacing:-1.080000px;}
.ls24{letter-spacing:-1.026000px;}
.ls31{letter-spacing:-1.020000px;}
.ls26{letter-spacing:-0.960000px;}
.ls45{letter-spacing:-0.918000px;}
.ls1b{letter-spacing:-0.900000px;}
.ls49{letter-spacing:-0.864000px;}
.ls28{letter-spacing:-0.840000px;}
.ls29{letter-spacing:-0.780000px;}
.ls57{letter-spacing:-0.756000px;}
.ls36{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.714000px;}
.ls44{letter-spacing:-0.702000px;}
.ls3e{letter-spacing:-0.648000px;}
.ls3c{letter-spacing:-0.624000px;}
.ls1d{letter-spacing:-0.600000px;}
.lsd{letter-spacing:-0.594000px;}
.ls3b{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.510000px;}
.ls3a{letter-spacing:-0.486000px;}
.lse{letter-spacing:-0.480000px;}
.ls48{letter-spacing:-0.432000px;}
.ls37{letter-spacing:-0.420000px;}
.ls6{letter-spacing:-0.387552px;}
.ls39{letter-spacing:-0.384000px;}
.ls51{letter-spacing:-0.378000px;}
.ls10{letter-spacing:-0.306000px;}
.ls1a{letter-spacing:-0.300000px;}
.ls23{letter-spacing:-0.270000px;}
.ls7{letter-spacing:-0.249144px;}
.ls27{letter-spacing:-0.240000px;}
.ls54{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.193776px;}
.ls22{letter-spacing:-0.162000px;}
.ls9{letter-spacing:-0.138071px;}
.ls5{letter-spacing:-0.063371px;}
.lsa{letter-spacing:-0.024914px;}
.ls4{letter-spacing:0.000000px;}
.ls47{letter-spacing:0.054000px;}
.ls30{letter-spacing:0.156294px;}
.ls15{letter-spacing:0.202446px;}
.ls56{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.242935px;}
.ls52{letter-spacing:0.270000px;}
.ls35{letter-spacing:0.338637px;}
.ls59{letter-spacing:0.378000px;}
.ls4b{letter-spacing:0.432000px;}
.ls20{letter-spacing:0.566849px;}
.ls34{letter-spacing:0.599127px;}
.ls40{letter-spacing:0.600000px;}
.ls32{letter-spacing:0.625176px;}
.ls33{letter-spacing:0.729372px;}
.ls42{letter-spacing:0.756000px;}
.ls17{letter-spacing:0.809784px;}
.ls50{letter-spacing:0.810000px;}
.ls21{letter-spacing:0.850273px;}
.ls4a{letter-spacing:0.891000px;}
.ls18{letter-spacing:0.931252px;}
.ls1f{letter-spacing:0.971741px;}
.ls14{letter-spacing:1.052719px;}
.ls13{letter-spacing:1.133698px;}
.ls4e{letter-spacing:1.144800px;}
.ls16{letter-spacing:1.214676px;}
.ls58{letter-spacing:1.620000px;}
.ls4d{letter-spacing:1.728000px;}
.ls25{letter-spacing:2.622000px;}
.ls4c{letter-spacing:2.862000px;}
.ls1{letter-spacing:4.101212px;}
.ls0{letter-spacing:9.990000px;}
.ls2{letter-spacing:13.008000px;}
.ls3{letter-spacing:16.740000px;}
.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;}
}
.ws6{word-spacing:-28.998000px;}
.ws164{word-spacing:-15.120000px;}
.ws1b5{word-spacing:-13.878000px;}
.ws92{word-spacing:-13.740000px;}
.ws32{word-spacing:-13.620000px;}
.ws134{word-spacing:-13.500000px;}
.ws2e{word-spacing:-13.440000px;}
.ws111{word-spacing:-13.320000px;}
.ws15c{word-spacing:-13.149000px;}
.ws31{word-spacing:-13.140000px;}
.ws162{word-spacing:-13.068000px;}
.ws2f{word-spacing:-13.020000px;}
.ws139{word-spacing:-13.014000px;}
.ws2d{word-spacing:-12.840000px;}
.ws91{word-spacing:-12.780000px;}
.ws15d{word-spacing:-12.690000px;}
.ws1b4{word-spacing:-12.636000px;}
.ws169{word-spacing:-12.582000px;}
.ws165{word-spacing:-12.528000px;}
.ws16a{word-spacing:-12.366000px;}
.ws137{word-spacing:-12.312000px;}
.ws126{word-spacing:-12.300000px;}
.ws2{word-spacing:-12.258000px;}
.ws1b3{word-spacing:-12.096000px;}
.ws30{word-spacing:-12.060000px;}
.ws93{word-spacing:-12.000000px;}
.ws163{word-spacing:-11.988000px;}
.wsfc{word-spacing:-11.826000px;}
.ws94{word-spacing:-11.820000px;}
.ws15f{word-spacing:-11.772000px;}
.ws167{word-spacing:-11.718000px;}
.ws160{word-spacing:-11.664000px;}
.ws1d0{word-spacing:-11.610000px;}
.ws138{word-spacing:-11.502000px;}
.ws136{word-spacing:-11.448000px;}
.ws7{word-spacing:-11.373000px;}
.ws34{word-spacing:-11.340000px;}
.ws1b2{word-spacing:-11.286000px;}
.ws33{word-spacing:-11.255998px;}
.ws161{word-spacing:-11.232000px;}
.wsfe{word-spacing:-11.178000px;}
.wsf9{word-spacing:-11.160000px;}
.ws15e{word-spacing:-11.124000px;}
.ws166{word-spacing:-11.070000px;}
.ws135{word-spacing:-10.746000px;}
.ws168{word-spacing:-10.260000px;}
.wsd2{word-spacing:-7.241622px;}
.ws5{word-spacing:-6.408336px;}
.ws112{word-spacing:-5.520000px;}
.ws1b6{word-spacing:-4.860000px;}
.ws16e{word-spacing:-4.536000px;}
.ws0{word-spacing:-4.184910px;}
.ws103{word-spacing:-3.900000px;}
.ws10c{word-spacing:-3.660000px;}
.ws1b7{word-spacing:-3.510000px;}
.ws12d{word-spacing:-3.240000px;}
.ws100{word-spacing:-3.120000px;}
.ws7e{word-spacing:-2.940000px;}
.ws7d{word-spacing:-2.880000px;}
.ws53{word-spacing:-2.820000px;}
.ws1ac{word-spacing:-2.808000px;}
.ws123{word-spacing:-2.700000px;}
.ws6b{word-spacing:-2.640000px;}
.ws6a{word-spacing:-2.580000px;}
.wse8{word-spacing:-2.460000px;}
.wsc7{word-spacing:-2.400000px;}
.ws80{word-spacing:-2.340000px;}
.ws19a{word-spacing:-2.322000px;}
.wscf{word-spacing:-2.280000px;}
.ws150{word-spacing:-2.268000px;}
.wsea{word-spacing:-2.220000px;}
.ws3f{word-spacing:-2.160000px;}
.ws55{word-spacing:-2.100000px;}
.ws104{word-spacing:-2.040000px;}
.ws16f{word-spacing:-1.998000px;}
.ws13b{word-spacing:-1.980000px;}
.ws140{word-spacing:-1.944000px;}
.wsba{word-spacing:-1.920000px;}
.ws3{word-spacing:-1.868535px;}
.wsff{word-spacing:-1.860000px;}
.ws87{word-spacing:-1.800000px;}
.ws148{word-spacing:-1.782000px;}
.wsb9{word-spacing:-1.740000px;}
.ws48{word-spacing:-1.680000px;}
.ws147{word-spacing:-1.674000px;}
.ws19{word-spacing:-1.632000px;}
.ws68{word-spacing:-1.620000px;}
.ws1d{word-spacing:-1.581000px;}
.ws157{word-spacing:-1.566000px;}
.ws18d{word-spacing:-1.512000px;}
.wsb7{word-spacing:-1.500000px;}
.ws141{word-spacing:-1.458000px;}
.ws65{word-spacing:-1.440000px;}
.ws1b{word-spacing:-1.428000px;}
.ws4{word-spacing:-1.388978px;}
.wsb1{word-spacing:-1.380000px;}
.ws187{word-spacing:-1.350000px;}
.ws83{word-spacing:-1.320000px;}
.ws14f{word-spacing:-1.296000px;}
.ws37{word-spacing:-1.260000px;}
.ws9f{word-spacing:-1.200000px;}
.ws1ce{word-spacing:-1.188000px;}
.wsdc{word-spacing:-1.140000px;}
.ws1af{word-spacing:-1.134000px;}
.ws62{word-spacing:-1.080000px;}
.ws25{word-spacing:-1.020000px;}
.ws1a2{word-spacing:-0.972000px;}
.ws89{word-spacing:-0.971741px;}
.ws8b{word-spacing:-0.931252px;}
.wsb8{word-spacing:-0.900000px;}
.ws8e{word-spacing:-0.850273px;}
.ws66{word-spacing:-0.840000px;}
.ws15{word-spacing:-0.765000px;}
.wse4{word-spacing:-0.729372px;}
.ws43{word-spacing:-0.720000px;}
.ws188{word-spacing:-0.648000px;}
.wse3{word-spacing:-0.625176px;}
.ws2c{word-spacing:-0.612000px;}
.wsf1{word-spacing:-0.600000px;}
.wse5{word-spacing:-0.599127px;}
.ws8a{word-spacing:-0.566849px;}
.ws64{word-spacing:-0.540000px;}
.ws27{word-spacing:-0.510000px;}
.ws13e{word-spacing:-0.486000px;}
.ws63{word-spacing:-0.480000px;}
.ws85{word-spacing:-0.420000px;}
.ws18{word-spacing:-0.408000px;}
.ws130{word-spacing:-0.360000px;}
.wse6{word-spacing:-0.338637px;}
.ws1ab{word-spacing:-0.324000px;}
.ws9d{word-spacing:-0.300000px;}
.ws11{word-spacing:-0.270000px;}
.ws40{word-spacing:-0.240000px;}
.ws8d{word-spacing:-0.202446px;}
.wsa{word-spacing:-0.198068px;}
.ws131{word-spacing:-0.180000px;}
.ws10f{word-spacing:-0.162000px;}
.ws117{word-spacing:-0.120000px;}
.ws1{word-spacing:-0.109206px;}
.ws1d1{word-spacing:-0.108000px;}
.ws2a{word-spacing:-0.102000px;}
.ws82{word-spacing:-0.060000px;}
.ws110{word-spacing:-0.054000px;}
.wsb{word-spacing:-0.024914px;}
.ws8{word-spacing:0.000000px;}
.wsd5{word-spacing:0.052098px;}
.ws12f{word-spacing:0.060000px;}
.ws9{word-spacing:0.063371px;}
.wsc{word-spacing:0.072323px;}
.ws106{word-spacing:0.120000px;}
.ws8f{word-spacing:0.162000px;}
.wsca{word-spacing:0.180000px;}
.ws8c{word-spacing:0.202446px;}
.ws13d{word-spacing:0.216000px;}
.wsde{word-spacing:0.240000px;}
.ws90{word-spacing:0.270000px;}
.ws4d{word-spacing:0.300000px;}
.ws18b{word-spacing:0.324000px;}
.wsd{word-spacing:0.336000px;}
.ws1c{word-spacing:0.357000px;}
.wsbd{word-spacing:0.360000px;}
.wsbe{word-spacing:0.420000px;}
.ws1bd{word-spacing:0.432000px;}
.wsac{word-spacing:0.480000px;}
.ws1ae{word-spacing:0.486000px;}
.ws1a{word-spacing:0.510000px;}
.wscc{word-spacing:0.540000px;}
.ws14{word-spacing:0.561000px;}
.wse{word-spacing:0.594000px;}
.ws5d{word-spacing:0.600000px;}
.ws124{word-spacing:0.624000px;}
.ws158{word-spacing:0.648000px;}
.ws61{word-spacing:0.660000px;}
.ws13c{word-spacing:0.702000px;}
.wsc6{word-spacing:0.720000px;}
.ws18c{word-spacing:0.756000px;}
.wsaf{word-spacing:0.780000px;}
.ws1be{word-spacing:0.810000px;}
.wse9{word-spacing:0.840000px;}
.ws178{word-spacing:0.864000px;}
.ws57{word-spacing:0.900000px;}
.wsa7{word-spacing:0.960000px;}
.ws6c{word-spacing:1.020000px;}
.ws17b{word-spacing:1.026000px;}
.ws99{word-spacing:1.080000px;}
.ws1cd{word-spacing:1.134000px;}
.wsbb{word-spacing:1.140000px;}
.ws1b1{word-spacing:1.188000px;}
.ws79{word-spacing:1.200000px;}
.ws2b{word-spacing:1.224000px;}
.wsc2{word-spacing:1.260000px;}
.wsc9{word-spacing:1.320000px;}
.ws159{word-spacing:1.350000px;}
.ws12c{word-spacing:1.380000px;}
.ws14e{word-spacing:1.404000px;}
.ws10e{word-spacing:1.440000px;}
.ws1cb{word-spacing:1.458000px;}
.wsd9{word-spacing:1.500000px;}
.ws1ad{word-spacing:1.512000px;}
.ws73{word-spacing:1.560000px;}
.ws179{word-spacing:1.566000px;}
.ws22{word-spacing:1.581000px;}
.ws86{word-spacing:1.620000px;}
.wsd3{word-spacing:1.641087px;}
.wsae{word-spacing:1.680000px;}
.ws1b0{word-spacing:1.728000px;}
.wsc1{word-spacing:1.740000px;}
.wsb4{word-spacing:1.800000px;}
.ws151{word-spacing:1.836000px;}
.wsa8{word-spacing:1.860000px;}
.ws3d{word-spacing:1.920000px;}
.ws4f{word-spacing:1.980000px;}
.ws17{word-spacing:1.989000px;}
.ws56{word-spacing:2.040000px;}
.ws108{word-spacing:2.100000px;}
.ws23{word-spacing:2.142000px;}
.ws42{word-spacing:2.160000px;}
.ws10a{word-spacing:2.220000px;}
.ws20{word-spacing:2.244000px;}
.ws19b{word-spacing:2.268000px;}
.wsce{word-spacing:2.280000px;}
.ws28{word-spacing:2.295000px;}
.ws11e{word-spacing:2.340000px;}
.ws10{word-spacing:2.352000px;}
.ws180{word-spacing:2.376000px;}
.ws76{word-spacing:2.400000px;}
.ws146{word-spacing:2.430000px;}
.ws81{word-spacing:2.460000px;}
.wsf{word-spacing:2.496000px;}
.ws71{word-spacing:2.520000px;}
.ws1ba{word-spacing:2.538000px;}
.ws9e{word-spacing:2.580000px;}
.wsb5{word-spacing:2.640000px;}
.ws192{word-spacing:2.646000px;}
.ws26{word-spacing:2.652000px;}
.ws102{word-spacing:2.700000px;}
.ws44{word-spacing:2.820000px;}
.ws21{word-spacing:2.856000px;}
.ws1a5{word-spacing:2.862000px;}
.ws107{word-spacing:2.940000px;}
.wse1{word-spacing:3.000000px;}
.ws1a7{word-spacing:3.024000px;}
.ws41{word-spacing:3.060000px;}
.ws47{word-spacing:3.180000px;}
.ws1b9{word-spacing:3.186000px;}
.ws7a{word-spacing:3.240000px;}
.ws149{word-spacing:3.294000px;}
.ws101{word-spacing:3.300000px;}
.ws1aa{word-spacing:3.348000px;}
.ws109{word-spacing:3.360000px;}
.ws193{word-spacing:3.402000px;}
.ws4e{word-spacing:3.420000px;}
.ws198{word-spacing:3.456000px;}
.wsb6{word-spacing:3.480000px;}
.ws1a4{word-spacing:3.510000px;}
.ws1e{word-spacing:3.519000px;}
.ws74{word-spacing:3.540000px;}
.ws16{word-spacing:3.570000px;}
.wsc3{word-spacing:3.600000px;}
.ws142{word-spacing:3.618000px;}
.wsc0{word-spacing:3.660000px;}
.ws143{word-spacing:3.672000px;}
.wsa5{word-spacing:3.780000px;}
.ws14a{word-spacing:3.834000px;}
.wsd1{word-spacing:3.840000px;}
.ws1b8{word-spacing:3.888000px;}
.wsc4{word-spacing:3.900000px;}
.ws67{word-spacing:3.960000px;}
.ws1bb{word-spacing:3.996000px;}
.wsa4{word-spacing:4.020000px;}
.ws152{word-spacing:4.050000px;}
.ws88{word-spacing:4.080000px;}
.ws177{word-spacing:4.104000px;}
.ws96{word-spacing:4.140000px;}
.ws59{word-spacing:4.200000px;}
.wsda{word-spacing:4.260000px;}
.ws14d{word-spacing:4.266000px;}
.wsa3{word-spacing:4.320000px;}
.ws18e{word-spacing:4.374000px;}
.ws7c{word-spacing:4.380000px;}
.ws1f{word-spacing:4.437000px;}
.ws69{word-spacing:4.440000px;}
.ws18f{word-spacing:4.482000px;}
.ws6e{word-spacing:4.500000px;}
.wsa6{word-spacing:4.560000px;}
.ws60{word-spacing:4.620000px;}
.ws1bc{word-spacing:4.644000px;}
.ws72{word-spacing:4.680000px;}
.wsc5{word-spacing:4.740000px;}
.ws7f{word-spacing:4.800000px;}
.wsb3{word-spacing:4.860000px;}
.ws185{word-spacing:4.914000px;}
.ws52{word-spacing:4.920000px;}
.wsb0{word-spacing:4.980000px;}
.ws3c{word-spacing:5.040000px;}
.ws54{word-spacing:5.220000px;}
.ws197{word-spacing:5.238000px;}
.ws5e{word-spacing:5.280000px;}
.ws155{word-spacing:5.292000px;}
.wsa0{word-spacing:5.340000px;}
.ws156{word-spacing:5.346000px;}
.ws29{word-spacing:5.355000px;}
.ws84{word-spacing:5.400000px;}
.ws13f{word-spacing:5.454000px;}
.wsdf{word-spacing:5.460000px;}
.ws189{word-spacing:5.508000px;}
.wse2{word-spacing:5.520000px;}
.ws18a{word-spacing:5.562000px;}
.ws58{word-spacing:5.580000px;}
.wsdb{word-spacing:5.640000px;}
.ws1cf{word-spacing:5.670000px;}
.ws11a{word-spacing:5.700000px;}
.ws174{word-spacing:5.724000px;}
.ws9b{word-spacing:5.760000px;}
.ws13{word-spacing:5.763000px;}
.ws105{word-spacing:5.820000px;}
.ws46{word-spacing:5.880000px;}
.wsbf{word-spacing:5.940000px;}
.ws196{word-spacing:5.994000px;}
.wsc8{word-spacing:6.000000px;}
.ws1cc{word-spacing:6.048000px;}
.ws11f{word-spacing:6.060000px;}
.ws51{word-spacing:6.120000px;}
.ws154{word-spacing:6.156000px;}
.ws3e{word-spacing:6.180000px;}
.ws153{word-spacing:6.210000px;}
.ws24{word-spacing:6.222000px;}
.wsd0{word-spacing:6.240000px;}
.wsf0{word-spacing:6.300000px;}
.ws1bf{word-spacing:6.318000px;}
.wsa1{word-spacing:6.360000px;}
.ws1a0{word-spacing:6.372000px;}
.ws118{word-spacing:6.420000px;}
.wsef{word-spacing:6.480000px;}
.ws1a9{word-spacing:6.534000px;}
.ws39{word-spacing:6.540000px;}
.ws17f{word-spacing:6.588000px;}
.wsf8{word-spacing:6.600000px;}
.wsbc{word-spacing:6.660000px;}
.ws171{word-spacing:6.696000px;}
.ws12e{word-spacing:6.720000px;}
.ws170{word-spacing:6.750000px;}
.ws49{word-spacing:6.780000px;}
.wsb2{word-spacing:6.840000px;}
.ws1a3{word-spacing:6.858000px;}
.ws13a{word-spacing:6.900000px;}
.ws1c0{word-spacing:6.912000px;}
.ws50{word-spacing:6.960000px;}
.ws12{word-spacing:6.987000px;}
.wse0{word-spacing:7.020000px;}
.ws1ca{word-spacing:7.074000px;}
.ws127{word-spacing:7.080000px;}
.ws1a1{word-spacing:7.128000px;}
.ws38{word-spacing:7.140000px;}
.ws175{word-spacing:7.182000px;}
.ws5c{word-spacing:7.200000px;}
.ws176{word-spacing:7.236000px;}
.wsf6{word-spacing:7.260000px;}
.ws199{word-spacing:7.290000px;}
.ws45{word-spacing:7.320000px;}
.wseb{word-spacing:7.380000px;}
.ws7b{word-spacing:7.440000px;}
.ws14c{word-spacing:7.452000px;}
.ws11c{word-spacing:7.560000px;}
.ws182{word-spacing:7.614000px;}
.ws119{word-spacing:7.620000px;}
.wsed{word-spacing:7.680000px;}
.ws1a8{word-spacing:7.722000px;}
.wsab{word-spacing:7.740000px;}
.ws5f{word-spacing:7.860000px;}
.wsa9{word-spacing:7.920000px;}
.wscb{word-spacing:7.980000px;}
.ws10d{word-spacing:8.040000px;}
.ws77{word-spacing:8.100000px;}
.wsf7{word-spacing:8.160000px;}
.ws14b{word-spacing:8.208000px;}
.ws36{word-spacing:8.220000px;}
.wsad{word-spacing:8.280000px;}
.ws172{word-spacing:8.316000px;}
.ws95{word-spacing:8.340000px;}
.ws5a{word-spacing:8.400000px;}
.ws4c{word-spacing:8.580000px;}
.ws3b{word-spacing:8.700000px;}
.ws122{word-spacing:8.760000px;}
.ws1a6{word-spacing:8.802000px;}
.ws133{word-spacing:8.820000px;}
.ws4b{word-spacing:8.880000px;}
.ws5b{word-spacing:9.060000px;}
.ws1c2{word-spacing:9.072000px;}
.ws10b{word-spacing:9.120000px;}
.ws11d{word-spacing:9.240000px;}
.ws70{word-spacing:9.300000px;}
.ws183{word-spacing:9.342000px;}
.ws3a{word-spacing:9.480000px;}
.wse7{word-spacing:9.540000px;}
.ws1c8{word-spacing:9.558000px;}
.ws12a{word-spacing:9.660000px;}
.ws97{word-spacing:9.720000px;}
.ws75{word-spacing:9.840000px;}
.ws191{word-spacing:9.882000px;}
.wscd{word-spacing:9.900000px;}
.ws184{word-spacing:9.936000px;}
.ws128{word-spacing:9.960000px;}
.ws1c4{word-spacing:9.990000px;}
.ws19f{word-spacing:10.044000px;}
.ws6f{word-spacing:10.080000px;}
.ws1c3{word-spacing:10.098000px;}
.wsf2{word-spacing:10.200000px;}
.ws1c9{word-spacing:10.206000px;}
.ws190{word-spacing:10.314000px;}
.ws121{word-spacing:10.320000px;}
.ws78{word-spacing:10.380000px;}
.ws145{word-spacing:10.422000px;}
.ws98{word-spacing:10.440000px;}
.ws1c1{word-spacing:10.476000px;}
.ws144{word-spacing:10.530000px;}
.wsf3{word-spacing:10.740000px;}
.ws17a{word-spacing:10.746000px;}
.ws17d{word-spacing:10.962000px;}
.ws15b{word-spacing:11.016000px;}
.ws181{word-spacing:11.124000px;}
.wsd7{word-spacing:11.160000px;}
.wsf5{word-spacing:11.220000px;}
.wsec{word-spacing:11.280000px;}
.wsa2{word-spacing:11.460000px;}
.wsdd{word-spacing:11.580000px;}
.ws12b{word-spacing:11.640000px;}
.wsd8{word-spacing:11.700000px;}
.ws1c5{word-spacing:12.096000px;}
.ws194{word-spacing:12.204000px;}
.ws129{word-spacing:12.540000px;}
.wsee{word-spacing:12.720000px;}
.ws9a{word-spacing:13.020000px;}
.ws195{word-spacing:13.122000px;}
.ws125{word-spacing:13.662000px;}
.wsf4{word-spacing:13.740000px;}
.ws19e{word-spacing:14.148000px;}
.ws16c{word-spacing:14.202000px;}
.ws4a{word-spacing:14.340000px;}
.ws173{word-spacing:14.364000px;}
.ws19c{word-spacing:14.526000px;}
.ws1c7{word-spacing:14.580000px;}
.ws11b{word-spacing:14.640000px;}
.ws17c{word-spacing:14.958000px;}
.wsaa{word-spacing:16.080000px;}
.ws132{word-spacing:16.260000px;}
.ws35{word-spacing:16.980000px;}
.ws9c{word-spacing:17.220000px;}
.ws19d{word-spacing:17.442000px;}
.ws6d{word-spacing:18.240000px;}
.ws15a{word-spacing:19.278000px;}
.wsd4{word-spacing:20.828575px;}
.ws1c6{word-spacing:20.898000px;}
.ws17e{word-spacing:21.330000px;}
.ws186{word-spacing:25.596000px;}
.ws16b{word-spacing:34.182000px;}
.wsfb{word-spacing:36.234000px;}
.ws120{word-spacing:40.860000px;}
.ws16d{word-spacing:53.676000px;}
.wsd6{word-spacing:75.131826px;}
.ws114{word-spacing:93.690000px;}
.ws115{word-spacing:112.536000px;}
.ws113{word-spacing:139.752000px;}
.wsfd{word-spacing:177.233400px;}
.ws116{word-spacing:186.786000px;}
.wsfa{word-spacing:229.012800px;}
._10{margin-left:-13.020000px;}
._0{margin-left:-11.676000px;}
._17{margin-left:-9.375725px;}
._22{margin-left:-8.326732px;}
._d{margin-left:-6.991460px;}
._4{margin-left:-5.960898px;}
._7{margin-left:-4.576460px;}
._16{margin-left:-3.446411px;}
._2{margin-left:-2.334362px;}
._1{margin-left:-1.288540px;}
._3{width:1.393200px;}
._e{width:2.570502px;}
._b{width:3.717589px;}
._c{width:5.142306px;}
._a{width:7.188000px;}
._15{width:8.779404px;}
._11{width:9.915340px;}
._6{width:11.037456px;}
._5{width:12.728040px;}
._8{width:14.291525px;}
._12{width:15.422400px;}
._f{width:16.980000px;}
._19{width:35.187000px;}
._1d{width:37.246800px;}
._23{width:44.388000px;}
._1e{width:59.230800px;}
._29{width:69.618362px;}
._27{width:76.734000px;}
._28{width:79.758000px;}
._20{width:92.816105px;}
._1f{width:105.310800px;}
._1a{width:106.704000px;}
._2a{width:139.798540px;}
._26{width:154.193162px;}
._25{width:180.190540px;}
._1b{width:324.220517px;}
._18{width:340.679479px;}
._14{width:395.427160px;}
._13{width:411.426000px;}
._1c{width:549.438487px;}
._9{width:922.317000px;}
._21{width:1045.000540px;}
._24{width:1327.870800px;}
.fc2{color:rgb(23,125,131);}
.fc1{color:rgb(246,137,43);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:6.228600px;}
.fsc{font-size:6.574800px;}
.fsb{font-size:8.304600px;}
.fsa{font-size:9.688800px;}
.fs9{font-size:12.457200px;}
.fs8{font-size:19.377600px;}
.fs4{font-size:21.123600px;}
.fs18{font-size:26.049000px;}
.fs12{font-size:27.984000px;}
.fs7{font-size:33.011400px;}
.fs11{font-size:39.000000px;}
.fs17{font-size:40.489200px;}
.fs1{font-size:42.000000px;}
.fs0{font-size:45.000000px;}
.fs13{font-size:48.000000px;}
.fs14{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs15{font-size:57.000000px;}
.fs16{font-size:60.000000px;}
.fs10{font-size:66.000000px;}
.fs2{font-size:83.698200px;}
.fsf{font-size:84.000000px;}
.fse{font-size:96.000000px;}
.fs5{font-size:108.000000px;}
.fs3{font-size:109.206000px;}
.y0{bottom:0.000000px;}
.y6{bottom:2.155500px;}
.y5{bottom:29.754750px;}
.y2{bottom:39.841050px;}
.y1{bottom:51.023550px;}
.yb2{bottom:56.296500px;}
.y14e{bottom:84.728250px;}
.yae{bottom:96.847950px;}
.y3f{bottom:103.120350px;}
.y32c{bottom:112.435800px;}
.y2af{bottom:112.504950px;}
.y2ed{bottom:112.557300px;}
.y272{bottom:112.647450px;}
.y26c{bottom:112.677450px;}
.y155{bottom:112.688700px;}
.yec{bottom:112.951800px;}
.y7a{bottom:112.951950px;}
.y18d{bottom:112.958700px;}
.y126{bottom:113.041800px;}
.y38c{bottom:113.317350px;}
.y3e{bottom:119.108850px;}
.y201{bottom:120.077100px;}
.y1da{bottom:125.141100px;}
.yb1{bottom:126.002550px;}
.y32b{bottom:128.635800px;}
.y2ec{bottom:128.757300px;}
.y2ae{bottom:128.934450px;}
.y154{bottom:130.343700px;}
.yeb{bottom:130.546800px;}
.y79{bottom:130.546950px;}
.y18c{bottom:130.553700px;}
.y125{bottom:130.636800px;}
.y271{bottom:130.677450px;}
.y26b{bottom:130.917450px;}
.y38b{bottom:135.700350px;}
.y200{bottom:139.584600px;}
.y3d{bottom:143.894850px;}
.y32a{bottom:144.835800px;}
.y2eb{bottom:144.957300px;}
.y2ad{bottom:145.363950px;}
.yb0{bottom:145.510050px;}
.y1d9{bottom:147.524100px;}
.y153{bottom:147.998700px;}
.yea{bottom:148.141800px;}
.y78{bottom:148.141950px;}
.y18b{bottom:148.148700px;}
.y124{bottom:148.231800px;}
.y270{bottom:148.707450px;}
.y26a{bottom:149.157450px;}
.y38a{bottom:151.684350px;}
.y1ff{bottom:155.568600px;}
.y3c{bottom:159.883350px;}
.y329{bottom:161.035800px;}
.y2ea{bottom:161.157300px;}
.yaf{bottom:161.494050px;}
.y2ac{bottom:161.793450px;}
.y1d8{bottom:163.508100px;}
.ye9{bottom:165.736800px;}
.y77{bottom:165.736950px;}
.y18a{bottom:165.743700px;}
.y123{bottom:165.826800px;}
.y26f{bottom:166.737450px;}
.y389{bottom:167.668350px;}
.y1fe{bottom:171.552600px;}
.y3b{bottom:175.871850px;}
.y328{bottom:177.235800px;}
.y2e9{bottom:177.357300px;}
.y2ab{bottom:178.222950px;}
.yad{bottom:179.241000px;}
.y1d7{bottom:179.492100px;}
.y152{bottom:183.248700px;}
.ye8{bottom:183.331800px;}
.y76{bottom:183.331950px;}
.y189{bottom:183.338700px;}
.y122{bottom:183.421800px;}
.y26e{bottom:184.767450px;}
.y269{bottom:184.992450px;}
.yac{bottom:188.069218px;}
.y3a{bottom:191.860350px;}
.y327{bottom:193.435800px;}
.y2e8{bottom:193.557300px;}
.y388{bottom:194.492850px;}
.y2aa{bottom:194.652450px;}
.yab{bottom:200.215978px;}
.ye7{bottom:200.926800px;}
.y75{bottom:200.926950px;}
.y188{bottom:200.933700px;}
.y121{bottom:201.016800px;}
.y26d{bottom:202.797450px;}
.y1d6{bottom:206.316600px;}
.y39{bottom:207.848850px;}
.y326{bottom:209.635800px;}
.y2e7{bottom:209.757300px;}
.y387{bottom:210.476850px;}
.y2a9{bottom:211.081950px;}
.yaa{bottom:212.636040px;}
.ye6{bottom:218.521800px;}
.y74{bottom:218.521950px;}
.y187{bottom:218.528700px;}
.y120{bottom:218.611800px;}
.y229{bottom:218.642850px;}
.y20c{bottom:219.323400px;}
.y268{bottom:220.827450px;}
.y1d5{bottom:222.300600px;}
.y38{bottom:223.837350px;}
.y325{bottom:225.835800px;}
.y2e6{bottom:225.957300px;}
.ya9{bottom:226.139188px;}
.y386{bottom:226.460850px;}
.y151{bottom:226.999350px;}
.y2a8{bottom:227.511450px;}
.ye5{bottom:236.116800px;}
.y73{bottom:236.116950px;}
.y186{bottom:236.123700px;}
.y11f{bottom:236.206800px;}
.y228{bottom:236.237850px;}
.y20b{bottom:236.918400px;}
.ya8{bottom:238.559250px;}
.y37{bottom:239.825850px;}
.y324{bottom:242.035800px;}
.y2e5{bottom:242.157300px;}
.y2a7{bottom:243.940950px;}
.y150{bottom:246.574350px;}
.y1d4{bottom:249.125100px;}
.y385{bottom:253.285350px;}
.ye4{bottom:253.711800px;}
.y72{bottom:253.711950px;}
.y185{bottom:253.718700px;}
.y11e{bottom:253.801800px;}
.y227{bottom:253.832850px;}
.y20a{bottom:254.513400px;}
.y36{bottom:255.814350px;}
.y323{bottom:258.235800px;}
.y2e4{bottom:258.357300px;}
.y2a6{bottom:260.370450px;}
.y14f{bottom:262.625850px;}
.y1d3{bottom:265.109100px;}
.y384{bottom:269.269350px;}
.ye3{bottom:271.306800px;}
.y71{bottom:271.306950px;}
.y184{bottom:271.313700px;}
.y11d{bottom:271.396800px;}
.y226{bottom:271.427850px;}
.y35{bottom:271.802850px;}
.y209{bottom:272.108400px;}
.y322{bottom:274.435800px;}
.y2e3{bottom:274.557300px;}
.ya7{bottom:275.279250px;}
.y2a5{bottom:276.799950px;}
.y267{bottom:277.485900px;}
.y14d{bottom:280.435500px;}
.y383{bottom:285.253350px;}
.y34{bottom:287.791350px;}
.ye2{bottom:288.901800px;}
.y70{bottom:288.901950px;}
.y183{bottom:288.908700px;}
.y11c{bottom:288.991800px;}
.y225{bottom:289.022850px;}
.y208{bottom:289.703400px;}
.y321{bottom:290.635800px;}
.y2e2{bottom:290.757300px;}
.y1d2{bottom:291.933600px;}
.y2a4{bottom:293.229450px;}
.y266{bottom:299.868900px;}
.y33{bottom:303.779850px;}
.ye1{bottom:306.496800px;}
.y6f{bottom:306.496950px;}
.y182{bottom:306.503700px;}
.y11b{bottom:306.586800px;}
.ya6{bottom:306.586950px;}
.y224{bottom:306.617850px;}
.y320{bottom:306.835800px;}
.y2e1{bottom:306.957300px;}
.y207{bottom:307.298400px;}
.y1d1{bottom:307.917600px;}
.y2a3{bottom:309.658950px;}
.y382{bottom:312.077850px;}
.y265{bottom:315.852900px;}
.y32{bottom:319.768350px;}
.y31f{bottom:323.035800px;}
.y2e0{bottom:323.157300px;}
.y1d0{bottom:323.901600px;}
.ye0{bottom:324.091800px;}
.y6e{bottom:324.091950px;}
.y181{bottom:324.098700px;}
.y11a{bottom:324.181800px;}
.ya5{bottom:324.181950px;}
.y223{bottom:324.212850px;}
.y206{bottom:324.893400px;}
.y2a2{bottom:326.088450px;}
.y264{bottom:331.836900px;}
.y31{bottom:335.756850px;}
.y381{bottom:338.902350px;}
.y31e{bottom:339.235800px;}
.y2df{bottom:339.357300px;}
.ydf{bottom:341.686800px;}
.y6d{bottom:341.686950px;}
.y180{bottom:341.693700px;}
.y119{bottom:341.776800px;}
.ya4{bottom:341.776950px;}
.y222{bottom:341.807850px;}
.y2a1{bottom:342.517950px;}
.y25f{bottom:347.807400px;}
.y263{bottom:347.820900px;}
.y1cf{bottom:350.726100px;}
.y30{bottom:351.745350px;}
.y380{bottom:354.886350px;}
.y31d{bottom:355.435800px;}
.y2de{bottom:355.557300px;}
.y2a0{bottom:358.947450px;}
.yde{bottom:359.281800px;}
.y6c{bottom:359.281950px;}
.y17f{bottom:359.288700px;}
.y118{bottom:359.371800px;}
.ya3{bottom:359.371950px;}
.y221{bottom:359.402850px;}
.y25e{bottom:363.791400px;}
.y262{bottom:363.804900px;}
.y1ce{bottom:366.710100px;}
.y31c{bottom:371.635800px;}
.y2dd{bottom:371.757300px;}
.y205{bottom:372.259950px;}
.y29f{bottom:375.376950px;}
.y2f{bottom:376.529550px;}
.ydd{bottom:376.876800px;}
.y6b{bottom:376.876950px;}
.y17e{bottom:376.883700px;}
.y117{bottom:376.966800px;}
.ya2{bottom:376.966950px;}
.y220{bottom:376.997850px;}
.y25d{bottom:379.775400px;}
.y261{bottom:379.788900px;}
.y37f{bottom:381.710850px;}
.y1cd{bottom:382.694100px;}
.y31b{bottom:387.835800px;}
.y2dc{bottom:387.957300px;}
.y204{bottom:391.767450px;}
.y29e{bottom:391.806450px;}
.y14c{bottom:392.191950px;}
.ydc{bottom:394.471800px;}
.y6a{bottom:394.471950px;}
.y17d{bottom:394.478700px;}
.y116{bottom:394.561800px;}
.ya1{bottom:394.561950px;}
.y21f{bottom:394.592850px;}
.y25c{bottom:395.759400px;}
.y260{bottom:395.772900px;}
.y37e{bottom:397.694850px;}
.y31a{bottom:404.035800px;}
.y2db{bottom:404.157300px;}
.y2e{bottom:405.699450px;}
.y203{bottom:407.751450px;}
.y29d{bottom:408.235950px;}
.y1cc{bottom:409.518600px;}
.y14b{bottom:409.846950px;}
.ydb{bottom:412.066800px;}
.y69{bottom:412.066950px;}
.y17c{bottom:412.073700px;}
.y115{bottom:412.156800px;}
.ya0{bottom:412.156950px;}
.y21e{bottom:412.187850px;}
.y37d{bottom:413.678850px;}
.y319{bottom:420.235800px;}
.y2da{bottom:420.357300px;}
.y2d{bottom:421.687950px;}
.y25b{bottom:422.583900px;}
.y202{bottom:423.735450px;}
.y29c{bottom:424.665450px;}
.y1cb{bottom:425.502600px;}
.y14a{bottom:427.501950px;}
.yda{bottom:429.661800px;}
.y68{bottom:429.661950px;}
.y37c{bottom:429.662850px;}
.y17b{bottom:429.668700px;}
.y114{bottom:429.751800px;}
.y9f{bottom:429.751950px;}
.y21d{bottom:429.782850px;}
.y318{bottom:436.435800px;}
.y2d9{bottom:436.557300px;}
.y25a{bottom:438.567900px;}
.y29b{bottom:441.094950px;}
.y1ca{bottom:441.486600px;}
.y2c{bottom:442.075200px;}
.y149{bottom:445.156950px;}
.yd9{bottom:447.256800px;}
.y67{bottom:447.256950px;}
.y17a{bottom:447.263700px;}
.y113{bottom:447.346800px;}
.y9e{bottom:447.346950px;}
.y21c{bottom:447.377850px;}
.y1fd{bottom:450.492150px;}
.y317{bottom:452.635800px;}
.y2d8{bottom:452.757300px;}
.y259{bottom:454.551900px;}
.y37b{bottom:456.487350px;}
.y29a{bottom:457.524450px;}
.y2b{bottom:458.063700px;}
.y148{bottom:462.811950px;}
.yd8{bottom:464.851800px;}
.y66{bottom:464.851950px;}
.y179{bottom:464.858700px;}
.y112{bottom:464.941800px;}
.y9d{bottom:464.941950px;}
.y21b{bottom:464.972850px;}
.y1c9{bottom:468.311100px;}
.y316{bottom:468.835800px;}
.y2d7{bottom:468.957300px;}
.y37a{bottom:472.471350px;}
.y1fc{bottom:472.875150px;}
.y299{bottom:473.953950px;}
.y2a{bottom:474.052200px;}
.y147{bottom:480.466950px;}
.y258{bottom:481.376400px;}
.yd7{bottom:482.446800px;}
.y65{bottom:482.446950px;}
.y111{bottom:482.536800px;}
.y9c{bottom:482.536950px;}
.y21a{bottom:482.567850px;}
.y1c8{bottom:484.295100px;}
.y315{bottom:485.035800px;}
.y2d6{bottom:485.157300px;}
.y379{bottom:488.455350px;}
.y29{bottom:490.040700px;}
.y298{bottom:490.383450px;}
.y257{bottom:497.360400px;}
.y146{bottom:498.121950px;}
.y1fb{bottom:499.699650px;}
.yd6{bottom:500.041800px;}
.y64{bottom:500.041950px;}
.y178{bottom:500.048700px;}
.y110{bottom:500.131800px;}
.y9b{bottom:500.131950px;}
.y219{bottom:500.162850px;}
.y314{bottom:501.235800px;}
.y2d5{bottom:501.357300px;}
.y378{bottom:504.439350px;}
.y28{bottom:506.029200px;}
.y297{bottom:506.812950px;}
.y1c7{bottom:511.119600px;}
.y256{bottom:513.344400px;}
.y145{bottom:515.776950px;}
.y313{bottom:517.435800px;}
.y2d4{bottom:517.557300px;}
.yd5{bottom:517.636800px;}
.y63{bottom:517.636950px;}
.y10f{bottom:517.726800px;}
.y9a{bottom:517.726950px;}
.y218{bottom:517.757850px;}
.y1fa{bottom:518.019150px;}
.y27{bottom:522.017700px;}
.y296{bottom:523.242450px;}
.y1c6{bottom:527.103600px;}
.y255{bottom:529.328400px;}
.y377{bottom:531.263850px;}
.y144{bottom:533.431950px;}
.y312{bottom:533.635800px;}
.y2d3{bottom:533.757300px;}
.yd4{bottom:535.231800px;}
.y62{bottom:535.231950px;}
.y177{bottom:535.238700px;}
.y10e{bottom:535.321800px;}
.y99{bottom:535.321950px;}
.y217{bottom:535.352850px;}
.y1f9{bottom:536.338650px;}
.y26{bottom:538.006200px;}
.y295{bottom:539.671950px;}
.y20{bottom:543.584700px;}
.y254{bottom:545.312400px;}
.y376{bottom:547.247850px;}
.y311{bottom:549.835800px;}
.y2d2{bottom:549.957300px;}
.y143{bottom:551.086950px;}
.yd3{bottom:552.826800px;}
.y61{bottom:552.826950px;}
.y176{bottom:552.833700px;}
.y10d{bottom:552.916800px;}
.y98{bottom:552.916950px;}
.y216{bottom:552.947850px;}
.y1c4{bottom:553.930350px;}
.y1c5{bottom:553.942350px;}
.y25{bottom:553.994700px;}
.y1f8{bottom:554.658150px;}
.y294{bottom:556.101450px;}
.y253{bottom:561.296400px;}
.y1f{bottom:565.173450px;}
.y310{bottom:566.035800px;}
.y2d1{bottom:566.157300px;}
.y1c3{bottom:568.318350px;}
.y142{bottom:568.741950px;}
.y24{bottom:569.983200px;}
.yd2{bottom:570.421800px;}
.y60{bottom:570.421950px;}
.y175{bottom:570.428700px;}
.y10c{bottom:570.511800px;}
.y97{bottom:570.511950px;}
.y215{bottom:570.542850px;}
.y293{bottom:572.530950px;}
.y1f7{bottom:572.977650px;}
.y375{bottom:574.072350px;}
.y30f{bottom:582.235800px;}
.y2d0{bottom:582.357300px;}
.y23{bottom:585.971700px;}
.y141{bottom:586.396950px;}
.y1e{bottom:586.762200px;}
.yd1{bottom:588.016800px;}
.y5f{bottom:588.016950px;}
.y174{bottom:588.023700px;}
.y10b{bottom:588.106800px;}
.y96{bottom:588.106950px;}
.y24f{bottom:588.107400px;}
.y214{bottom:588.137850px;}
.y292{bottom:588.960450px;}
.y374{bottom:590.056350px;}
.y1f6{bottom:591.297150px;}
.y1c2{bottom:595.443150px;}
.y30e{bottom:598.435800px;}
.y2cf{bottom:598.557300px;}
.y22{bottom:601.960200px;}
.y140{bottom:604.051950px;}
.y24e{bottom:604.091400px;}
.y252{bottom:604.104900px;}
.y291{bottom:605.389950px;}
.yd0{bottom:605.611800px;}
.y5e{bottom:605.611950px;}
.y173{bottom:605.618700px;}
.y10a{bottom:605.701800px;}
.y95{bottom:605.701950px;}
.y213{bottom:605.732850px;}
.y373{bottom:606.040350px;}
.y1d{bottom:608.350950px;}
.y1f5{bottom:609.616650px;}
.y1c1{bottom:611.427150px;}
.y30d{bottom:614.635800px;}
.y2ce{bottom:614.757300px;}
.y21{bottom:617.948700px;}
.y24d{bottom:620.075400px;}
.y251{bottom:620.088900px;}
.y1c{bottom:621.142200px;}
.y13f{bottom:621.706950px;}
.y290{bottom:621.819450px;}
.y372{bottom:622.024350px;}
.ycf{bottom:623.206800px;}
.y5d{bottom:623.206950px;}
.y172{bottom:623.213700px;}
.y109{bottom:623.296800px;}
.y94{bottom:623.296950px;}
.y212{bottom:623.327850px;}
.y30c{bottom:630.835800px;}
.y2cd{bottom:630.957300px;}
.y24c{bottom:636.059400px;}
.y250{bottom:636.072900px;}
.y1f4{bottom:636.442650px;}
.y28f{bottom:638.248950px;}
.y13e{bottom:639.361950px;}
.yce{bottom:640.801800px;}
.y5c{bottom:640.801950px;}
.y171{bottom:640.808700px;}
.y108{bottom:640.891800px;}
.y93{bottom:640.891950px;}
.y1b{bottom:642.732900px;}
.y30b{bottom:647.035800px;}
.y2cc{bottom:647.157300px;}
.y371{bottom:648.848850px;}
.y28e{bottom:654.678450px;}
.y1c0{bottom:656.866800px;}
.y1a5{bottom:656.956800px;}
.ycd{bottom:658.396800px;}
.y5b{bottom:658.396950px;}
.y170{bottom:658.403700px;}
.y107{bottom:658.486800px;}
.y92{bottom:658.486950px;}
.y211{bottom:658.517850px;}
.y1f3{bottom:662.170650px;}
.y24b{bottom:662.883900px;}
.y30a{bottom:663.235800px;}
.y2cb{bottom:663.357300px;}
.y370{bottom:664.832850px;}
.y28d{bottom:671.107950px;}
.y1bf{bottom:674.521800px;}
.y1a4{bottom:674.611800px;}
.y13d{bottom:674.611950px;}
.ycc{bottom:675.991800px;}
.y5a{bottom:675.991950px;}
.y16f{bottom:675.998700px;}
.y106{bottom:676.081800px;}
.y91{bottom:676.081950px;}
.y24a{bottom:678.867900px;}
.y309{bottom:679.435800px;}
.y2ca{bottom:679.557300px;}
.y1a{bottom:684.642900px;}
.y28c{bottom:687.537450px;}
.y1f2{bottom:689.298450px;}
.y36f{bottom:691.657350px;}
.y1be{bottom:692.176800px;}
.y1a3{bottom:692.266800px;}
.ycb{bottom:693.586800px;}
.y59{bottom:693.586950px;}
.y16e{bottom:693.593700px;}
.y105{bottom:693.676800px;}
.y90{bottom:693.676950px;}
.y210{bottom:693.715200px;}
.y249{bottom:694.851900px;}
.y308{bottom:695.635800px;}
.y2c9{bottom:695.757300px;}
.y19{bottom:703.026900px;}
.y28b{bottom:703.966950px;}
.y1f1{bottom:705.282450px;}
.y36e{bottom:707.641350px;}
.y1bd{bottom:709.831800px;}
.y1a2{bottom:709.921800px;}
.y248{bottom:710.835900px;}
.yca{bottom:711.181800px;}
.y58{bottom:711.181950px;}
.y16d{bottom:711.188700px;}
.y104{bottom:711.271800px;}
.y8f{bottom:711.271950px;}
.y307{bottom:711.835800px;}
.y2c8{bottom:711.957300px;}
.y20f{bottom:713.222700px;}
.y28a{bottom:720.396450px;}
.y1f0{bottom:721.266450px;}
.y36d{bottom:723.625350px;}
.y247{bottom:726.819900px;}
.y13c{bottom:727.456950px;}
.y1bc{bottom:727.486800px;}
.y1a1{bottom:727.576800px;}
.y306{bottom:728.035800px;}
.y2c7{bottom:728.157300px;}
.yc9{bottom:728.776800px;}
.y57{bottom:728.776950px;}
.y16c{bottom:728.783700px;}
.y103{bottom:728.866800px;}
.y8e{bottom:728.866950px;}
.y20e{bottom:729.206700px;}
.y18{bottom:731.015100px;}
.y343{bottom:733.341300px;}
.y35c{bottom:733.408800px;}
.y289{bottom:736.825950px;}
.y246{bottom:742.803900px;}
.y305{bottom:744.235800px;}
.y2c6{bottom:744.357300px;}
.y13b{bottom:745.111950px;}
.y1bb{bottom:745.141800px;}
.y20d{bottom:745.190700px;}
.y1a0{bottom:745.231800px;}
.yc8{bottom:746.371800px;}
.y56{bottom:746.371950px;}
.y16b{bottom:746.378700px;}
.y102{bottom:746.461800px;}
.y8d{bottom:746.461950px;}
.y342{bottom:749.325300px;}
.y35b{bottom:749.392800px;}
.y17{bottom:749.399100px;}
.y36c{bottom:750.449850px;}
.y288{bottom:753.255450px;}
.y1ef{bottom:754.936950px;}
.y245{bottom:758.787900px;}
.y304{bottom:760.435800px;}
.y2c5{bottom:760.557300px;}
.y13a{bottom:762.766950px;}
.y1ba{bottom:762.796800px;}
.y19f{bottom:762.886800px;}
.yc7{bottom:763.966800px;}
.y55{bottom:763.966950px;}
.y16a{bottom:763.973700px;}
.y101{bottom:764.056800px;}
.y8c{bottom:764.056950px;}
.y341{bottom:765.309300px;}
.y35a{bottom:765.376800px;}
.y16{bottom:765.917550px;}
.y36b{bottom:766.433850px;}
.y287{bottom:769.684950px;}
.y1ee{bottom:772.531950px;}
.y244{bottom:774.771900px;}
.y303{bottom:776.635800px;}
.y2c4{bottom:776.757300px;}
.y139{bottom:780.421950px;}
.y1b9{bottom:780.451800px;}
.y19e{bottom:780.541800px;}
.y340{bottom:781.293300px;}
.y359{bottom:781.360800px;}
.yc6{bottom:781.561800px;}
.y54{bottom:781.561950px;}
.y169{bottom:781.568700px;}
.y100{bottom:781.651800px;}
.y8b{bottom:781.651950px;}
.y36a{bottom:782.417850px;}
.y14{bottom:785.111400px;}
.y286{bottom:786.114450px;}
.y1ed{bottom:790.126950px;}
.y15{bottom:790.361400px;}
.y23f{bottom:790.742400px;}
.y243{bottom:790.755900px;}
.y302{bottom:792.835800px;}
.y2c3{bottom:792.957300px;}
.y33f{bottom:797.277300px;}
.y358{bottom:797.344800px;}
.y138{bottom:798.076950px;}
.y1b8{bottom:798.106800px;}
.y19d{bottom:798.196800px;}
.yc5{bottom:799.156800px;}
.y53{bottom:799.156950px;}
.y168{bottom:799.163700px;}
.yff{bottom:799.246800px;}
.y8a{bottom:799.246950px;}
.y285{bottom:802.543950px;}
.y23e{bottom:806.726400px;}
.y242{bottom:806.739900px;}
.y1ec{bottom:807.721950px;}
.y301{bottom:809.035800px;}
.y2c2{bottom:809.157300px;}
.y369{bottom:809.242350px;}
.y33e{bottom:813.261300px;}
.y357{bottom:813.328800px;}
.y137{bottom:815.731950px;}
.y1b7{bottom:815.761800px;}
.y19c{bottom:815.851800px;}
.yc4{bottom:816.751800px;}
.y52{bottom:816.751950px;}
.y167{bottom:816.758700px;}
.yfe{bottom:816.841800px;}
.y89{bottom:816.841950px;}
.y284{bottom:818.973450px;}
.y13{bottom:821.899950px;}
.y23d{bottom:822.710400px;}
.y241{bottom:822.723900px;}
.y368{bottom:825.226350px;}
.y300{bottom:825.235800px;}
.y1eb{bottom:825.316950px;}
.y2c1{bottom:825.357300px;}
.y33d{bottom:829.245300px;}
.y356{bottom:829.312800px;}
.y136{bottom:833.386950px;}
.y1b6{bottom:833.416800px;}
.y19b{bottom:833.506800px;}
.yc3{bottom:834.346800px;}
.y51{bottom:834.346950px;}
.y166{bottom:834.353700px;}
.yfd{bottom:834.436800px;}
.y88{bottom:834.436950px;}
.y283{bottom:835.402950px;}
.y23c{bottom:838.694400px;}
.y240{bottom:838.707900px;}
.y2ff{bottom:841.435800px;}
.y2c0{bottom:841.557300px;}
.y1ea{bottom:842.911950px;}
.y33c{bottom:845.229300px;}
.y355{bottom:845.296800px;}
.y12{bottom:846.679950px;}
.y135{bottom:851.041950px;}
.y1b5{bottom:851.071800px;}
.y19a{bottom:851.161800px;}
.y282{bottom:851.832450px;}
.yc2{bottom:851.941800px;}
.y50{bottom:851.941950px;}
.y165{bottom:851.948700px;}
.yfc{bottom:852.031800px;}
.y87{bottom:852.031950px;}
.y367{bottom:852.050850px;}
.y2fe{bottom:857.635800px;}
.y2bf{bottom:857.757300px;}
.y1e9{bottom:860.506950px;}
.y33b{bottom:861.213300px;}
.y354{bottom:861.280800px;}
.y23b{bottom:865.518900px;}
.y366{bottom:868.034850px;}
.y281{bottom:868.261950px;}
.y134{bottom:868.696950px;}
.y1b4{bottom:868.726800px;}
.y199{bottom:868.816800px;}
.yc1{bottom:869.536800px;}
.y4f{bottom:869.536950px;}
.y164{bottom:869.543700px;}
.yfb{bottom:869.626800px;}
.y86{bottom:869.626950px;}
.y2fd{bottom:873.835800px;}
.y2be{bottom:873.957300px;}
.y33a{bottom:877.197300px;}
.y353{bottom:877.264800px;}
.y1e8{bottom:878.101950px;}
.y11{bottom:880.254300px;}
.y236{bottom:881.489400px;}
.y23a{bottom:881.502900px;}
.y280{bottom:884.691450px;}
.y133{bottom:886.351950px;}
.y1b3{bottom:886.381800px;}
.y198{bottom:886.471800px;}
.yc0{bottom:887.131800px;}
.y4e{bottom:887.131950px;}
.y163{bottom:887.138700px;}
.yfa{bottom:887.221800px;}
.y85{bottom:887.221950px;}
.y2fc{bottom:890.035800px;}
.y2bd{bottom:890.157300px;}
.y339{bottom:893.181300px;}
.y352{bottom:893.248800px;}
.y365{bottom:894.859350px;}
.y1e7{bottom:895.696950px;}
.y235{bottom:897.473400px;}
.y239{bottom:897.486900px;}
.y27f{bottom:901.120950px;}
.y132{bottom:904.006950px;}
.y1b2{bottom:904.036800px;}
.y197{bottom:904.126800px;}
.ybf{bottom:904.726800px;}
.y4d{bottom:904.726950px;}
.y162{bottom:904.733700px;}
.yf9{bottom:904.816800px;}
.y84{bottom:904.816950px;}
.y10{bottom:905.046300px;}
.y2fb{bottom:906.235800px;}
.y2bc{bottom:906.357300px;}
.y338{bottom:909.165300px;}
.y351{bottom:909.232800px;}
.y364{bottom:910.843350px;}
.y1e6{bottom:913.291950px;}
.y234{bottom:913.457400px;}
.y238{bottom:913.470900px;}
.y27e{bottom:917.550450px;}
.y131{bottom:921.661950px;}
.y1b1{bottom:921.691800px;}
.y196{bottom:921.781800px;}
.ybe{bottom:922.321800px;}
.y4c{bottom:922.321950px;}
.y161{bottom:922.328700px;}
.yf8{bottom:922.411800px;}
.y83{bottom:922.411950px;}
.y2fa{bottom:922.435800px;}
.y2bb{bottom:922.557300px;}
.y337{bottom:925.149300px;}
.y350{bottom:925.216800px;}
.y363{bottom:926.827350px;}
.y233{bottom:929.441400px;}
.y237{bottom:929.454900px;}
.y1e5{bottom:930.886950px;}
.y27d{bottom:933.979950px;}
.y2f9{bottom:938.635800px;}
.y2ba{bottom:938.757300px;}
.y130{bottom:939.316950px;}
.y1b0{bottom:939.346800px;}
.y195{bottom:939.436800px;}
.ybd{bottom:939.916800px;}
.y4b{bottom:939.916950px;}
.y160{bottom:939.923700px;}
.yf7{bottom:940.006800px;}
.y82{bottom:940.006950px;}
.y336{bottom:941.133300px;}
.y34f{bottom:941.200800px;}
.y27c{bottom:950.409450px;}
.y362{bottom:953.651850px;}
.y2f8{bottom:954.835800px;}
.y2b9{bottom:954.957300px;}
.y232{bottom:956.265900px;}
.y12f{bottom:956.971950px;}
.y1af{bottom:957.001800px;}
.y194{bottom:957.091800px;}
.y335{bottom:957.117300px;}
.y34e{bottom:957.184800px;}
.ybc{bottom:957.511800px;}
.y4a{bottom:957.511950px;}
.y15f{bottom:957.518700px;}
.yf6{bottom:957.601800px;}
.y81{bottom:957.601950px;}
.y1e4{bottom:961.831950px;}
.y27b{bottom:966.838950px;}
.y361{bottom:969.635850px;}
.y2f7{bottom:971.035800px;}
.y2b8{bottom:971.157300px;}
.y231{bottom:972.249900px;}
.y334{bottom:973.101300px;}
.y34d{bottom:973.168800px;}
.y12e{bottom:974.626950px;}
.y1ae{bottom:974.656800px;}
.y193{bottom:974.746800px;}
.ybb{bottom:975.106800px;}
.y49{bottom:975.106950px;}
.y15e{bottom:975.113700px;}
.yf5{bottom:975.196800px;}
.y80{bottom:975.196950px;}
.y4{bottom:982.732500px;}
.y27a{bottom:983.268450px;}
.y2f6{bottom:987.235800px;}
.y2b7{bottom:987.357300px;}
.yd{bottom:987.689400px;}
.y333{bottom:989.085300px;}
.y34c{bottom:989.152800px;}
.y12d{bottom:992.281950px;}
.y1ad{bottom:992.311800px;}
.y192{bottom:992.401800px;}
.yba{bottom:992.701800px;}
.y48{bottom:992.701950px;}
.y15d{bottom:992.708700px;}
.y1e3{bottom:992.776950px;}
.yf4{bottom:992.791800px;}
.y7f{bottom:992.791950px;}
.yc{bottom:993.744900px;}
.y3{bottom:994.134000px;}
.y360{bottom:996.460350px;}
.y230{bottom:999.074400px;}
.y279{bottom:999.697950px;}
.y2f5{bottom:1003.435800px;}
.y2b6{bottom:1003.557300px;}
.y332{bottom:1005.069300px;}
.y34b{bottom:1005.136800px;}
.y9{bottom:1009.171050px;}
.y12c{bottom:1009.936950px;}
.y1ac{bottom:1009.966800px;}
.yb9{bottom:1010.296800px;}
.y47{bottom:1010.296950px;}
.y15c{bottom:1010.303700px;}
.y1e2{bottom:1010.371950px;}
.yf3{bottom:1010.386800px;}
.y22f{bottom:1015.058400px;}
.y278{bottom:1016.127450px;}
.y2f4{bottom:1019.635800px;}
.y2b5{bottom:1019.757300px;}
.y331{bottom:1021.053300px;}
.y34a{bottom:1021.120800px;}
.y35f{bottom:1022.432250px;}
.y12b{bottom:1027.591950px;}
.y1ab{bottom:1027.621800px;}
.y191{bottom:1027.651800px;}
.yb8{bottom:1027.891800px;}
.y46{bottom:1027.891950px;}
.y15b{bottom:1027.898700px;}
.y1e1{bottom:1027.966950px;}
.yf2{bottom:1027.981800px;}
.y7e{bottom:1027.981950px;}
.y22e{bottom:1031.042400px;}
.y8{bottom:1031.162550px;}
.y277{bottom:1032.556950px;}
.y2f3{bottom:1035.835800px;}
.y2b4{bottom:1035.957300px;}
.y330{bottom:1037.037300px;}
.y349{bottom:1037.104800px;}
.y12a{bottom:1045.246950px;}
.y1aa{bottom:1045.276800px;}
.yb7{bottom:1045.486800px;}
.y45{bottom:1045.486950px;}
.y15a{bottom:1045.493700px;}
.y1e0{bottom:1045.561950px;}
.yf1{bottom:1045.576800px;}
.y7d{bottom:1045.576950px;}
.y22d{bottom:1047.026400px;}
.y35e{bottom:1048.706550px;}
.y276{bottom:1048.986450px;}
.y2f2{bottom:1052.035800px;}
.y2b3{bottom:1052.157300px;}
.y32f{bottom:1053.021300px;}
.y348{bottom:1053.088800px;}
.y190{bottom:1062.901800px;}
.y129{bottom:1062.901950px;}
.y1a9{bottom:1062.931800px;}
.yb6{bottom:1063.081800px;}
.y44{bottom:1063.081950px;}
.y159{bottom:1063.088700px;}
.y1df{bottom:1063.156950px;}
.yf0{bottom:1063.171800px;}
.y35d{bottom:1064.690550px;}
.y275{bottom:1065.415950px;}
.y2f1{bottom:1068.235800px;}
.y2b2{bottom:1068.357300px;}
.y32e{bottom:1069.005300px;}
.y347{bottom:1069.072800px;}
.y22c{bottom:1073.848500px;}
.y7{bottom:1079.109600px;}
.y18f{bottom:1080.556800px;}
.y128{bottom:1080.556950px;}
.y1a8{bottom:1080.586800px;}
.yb5{bottom:1080.676800px;}
.y43{bottom:1080.676950px;}
.y158{bottom:1080.683700px;}
.y1de{bottom:1080.751950px;}
.yef{bottom:1080.766800px;}
.y274{bottom:1081.845450px;}
.y2f0{bottom:1084.435800px;}
.y2b1{bottom:1084.557300px;}
.y32d{bottom:1084.989300px;}
.y346{bottom:1085.056800px;}
.y18e{bottom:1098.211800px;}
.y127{bottom:1098.211950px;}
.y1a7{bottom:1098.241800px;}
.yb4{bottom:1098.271800px;}
.y1db{bottom:1098.271950px;}
.y157{bottom:1098.278700px;}
.y1dd{bottom:1098.346950px;}
.yee{bottom:1098.361800px;}
.y7c{bottom:1098.361950px;}
.y2ef{bottom:1100.635800px;}
.y2b0{bottom:1100.757300px;}
.y22b{bottom:1100.973300px;}
.y345{bottom:1101.040800px;}
.yf{bottom:1105.733250px;}
.ye{bottom:1108.238850px;}
.yb{bottom:1111.719612px;}
.yb3{bottom:1115.866800px;}
.y42{bottom:1115.866950px;}
.y156{bottom:1115.873700px;}
.y1a6{bottom:1115.896800px;}
.y1dc{bottom:1115.941950px;}
.yed{bottom:1115.956800px;}
.y7b{bottom:1115.956950px;}
.y273{bottom:1116.136800px;}
.y2ee{bottom:1116.835800px;}
.y22a{bottom:1116.957300px;}
.y344{bottom:1117.024800px;}
.ya{bottom:1119.502050px;}
.y40{bottom:1140.267900px;}
.y41{bottom:1170.312450px;}
.he{height:4.434763px;}
.hd{height:6.879048px;}
.hc{height:8.869526px;}
.hb{height:13.796851px;}
.h7{height:16.222925px;}
.h20{height:19.853913px;}
.h13{height:22.896000px;}
.ha{height:23.504117px;}
.h1a{height:29.800051px;}
.h1b{height:29.840540px;}
.h3{height:30.912000px;}
.h2{height:31.500000px;}
.h12{height:31.941000px;}
.h15{height:36.855000px;}
.h1d{height:38.394000px;}
.h14{height:38.880000px;}
.h23{height:39.984000px;}
.h16{height:41.769000px;}
.h25{height:43.740000px;}
.h9{height:44.226000px;}
.h22{height:44.982000px;}
.h1e{height:46.170000px;}
.h17{height:46.683000px;}
.h21{height:48.600000px;}
.h19{height:49.140000px;}
.h18{height:49.980000px;}
.h5{height:52.158000px;}
.h11{height:54.054000px;}
.h6{height:59.626476px;}
.h4{height:61.685573px;}
.h10{height:68.040000px;}
.hf{height:78.624000px;}
.h8{height:88.452000px;}
.h1f{height:90.951000px;}
.h24{height:97.584000px;}
.h1c{height:106.597500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:115.122000px;}
.w3{width:377.325000px;}
.w4{width:382.299000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:1.363050px;}
.x5{left:2.549700px;}
.x4{left:53.149500px;}
.x3{left:55.175100px;}
.x2a{left:57.401550px;}
.x24{left:59.984100px;}
.x28{left:61.781550px;}
.x3b{left:63.048150px;}
.x27{left:72.617550px;}
.x11{left:74.404650px;}
.x37{left:88.698600px;}
.x38{left:95.057100px;}
.x1{left:113.305950px;}
.xc{left:115.006800px;}
.x2{left:118.930950px;}
.x3a{left:130.317000px;}
.x2b{left:142.438050px;}
.x25{left:174.950100px;}
.x3e{left:206.225100px;}
.x6{left:211.350750px;}
.x23{left:222.308100px;}
.x1a{left:256.483650px;}
.xf{left:265.815450px;}
.x21{left:271.184400px;}
.x10{left:276.170550px;}
.x3c{left:306.871650px;}
.x7{left:310.945050px;}
.xd{left:318.967500px;}
.xe{left:323.672850px;}
.x8{left:352.201050px;}
.x3d{left:419.531250px;}
.x26{left:427.273350px;}
.x12{left:457.084650px;}
.x19{left:459.762000px;}
.x33{left:461.338650px;}
.x1f{left:463.219200px;}
.x39{left:467.741550px;}
.x15{left:471.292800px;}
.x13{left:475.894650px;}
.x17{left:476.983050px;}
.x14{left:478.339650px;}
.x18{left:484.890675px;}
.x16{left:492.737550px;}
.x2c{left:503.860050px;}
.x2d{left:508.112550px;}
.x32{left:522.915750px;}
.x34{left:527.627700px;}
.x2f{left:544.029900px;}
.x30{left:545.892900px;}
.x20{left:552.008700px;}
.x29{left:575.261550px;}
.x35{left:576.659700px;}
.x36{left:578.887200px;}
.x31{left:582.627750px;}
.x1e{left:626.245200px;}
.x2e{left:629.241900px;}
.x1d{left:695.930100px;}
.x1c{left:699.048600px;}
.x1b{left:717.617850px;}
.x9{left:743.795550px;}
.xb{left:772.981200px;}
.xa{left:778.128450px;}
@media print{
.v1{vertical-align:-14.208000pt;}
.v2{vertical-align:-1.167467pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:25.600000pt;}
.ls3f{letter-spacing:-4.704000pt;}
.ls3d{letter-spacing:-4.352000pt;}
.ls38{letter-spacing:-2.293333pt;}
.ls2a{letter-spacing:-1.920000pt;}
.ls55{letter-spacing:-1.872000pt;}
.lsc{letter-spacing:-1.792000pt;}
.ls2e{letter-spacing:-1.706667pt;}
.ls2c{letter-spacing:-1.546667pt;}
.lsb{letter-spacing:-1.493333pt;}
.ls43{letter-spacing:-1.440000pt;}
.ls1e{letter-spacing:-1.386667pt;}
.ls46{letter-spacing:-1.296000pt;}
.ls41{letter-spacing:-1.280000pt;}
.ls2b{letter-spacing:-1.226667pt;}
.ls2d{letter-spacing:-1.173333pt;}
.ls53{letter-spacing:-1.152000pt;}
.ls4f{letter-spacing:-1.104000pt;}
.lsf{letter-spacing:-1.066667pt;}
.ls2f{letter-spacing:-1.013333pt;}
.ls1c{letter-spacing:-0.960000pt;}
.ls24{letter-spacing:-0.912000pt;}
.ls31{letter-spacing:-0.906667pt;}
.ls26{letter-spacing:-0.853333pt;}
.ls45{letter-spacing:-0.816000pt;}
.ls1b{letter-spacing:-0.800000pt;}
.ls49{letter-spacing:-0.768000pt;}
.ls28{letter-spacing:-0.746667pt;}
.ls29{letter-spacing:-0.693333pt;}
.ls57{letter-spacing:-0.672000pt;}
.ls36{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.634667pt;}
.ls44{letter-spacing:-0.624000pt;}
.ls3e{letter-spacing:-0.576000pt;}
.ls3c{letter-spacing:-0.554667pt;}
.ls1d{letter-spacing:-0.533333pt;}
.lsd{letter-spacing:-0.528000pt;}
.ls3b{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.453333pt;}
.ls3a{letter-spacing:-0.432000pt;}
.lse{letter-spacing:-0.426667pt;}
.ls48{letter-spacing:-0.384000pt;}
.ls37{letter-spacing:-0.373333pt;}
.ls6{letter-spacing:-0.344491pt;}
.ls39{letter-spacing:-0.341333pt;}
.ls51{letter-spacing:-0.336000pt;}
.ls10{letter-spacing:-0.272000pt;}
.ls1a{letter-spacing:-0.266667pt;}
.ls23{letter-spacing:-0.240000pt;}
.ls7{letter-spacing:-0.221461pt;}
.ls27{letter-spacing:-0.213333pt;}
.ls54{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.172245pt;}
.ls22{letter-spacing:-0.144000pt;}
.ls9{letter-spacing:-0.122730pt;}
.ls5{letter-spacing:-0.056330pt;}
.lsa{letter-spacing:-0.022146pt;}
.ls4{letter-spacing:0.000000pt;}
.ls47{letter-spacing:0.048000pt;}
.ls30{letter-spacing:0.138928pt;}
.ls15{letter-spacing:0.179952pt;}
.ls56{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.215942pt;}
.ls52{letter-spacing:0.240000pt;}
.ls35{letter-spacing:0.301011pt;}
.ls59{letter-spacing:0.336000pt;}
.ls4b{letter-spacing:0.384000pt;}
.ls20{letter-spacing:0.503866pt;}
.ls34{letter-spacing:0.532557pt;}
.ls40{letter-spacing:0.533333pt;}
.ls32{letter-spacing:0.555712pt;}
.ls33{letter-spacing:0.648331pt;}
.ls42{letter-spacing:0.672000pt;}
.ls17{letter-spacing:0.719808pt;}
.ls50{letter-spacing:0.720000pt;}
.ls21{letter-spacing:0.755798pt;}
.ls4a{letter-spacing:0.792000pt;}
.ls18{letter-spacing:0.827779pt;}
.ls1f{letter-spacing:0.863770pt;}
.ls14{letter-spacing:0.935750pt;}
.ls13{letter-spacing:1.007731pt;}
.ls4e{letter-spacing:1.017600pt;}
.ls16{letter-spacing:1.079712pt;}
.ls58{letter-spacing:1.440000pt;}
.ls4d{letter-spacing:1.536000pt;}
.ls25{letter-spacing:2.330667pt;}
.ls4c{letter-spacing:2.544000pt;}
.ls1{letter-spacing:3.645522pt;}
.ls0{letter-spacing:8.880000pt;}
.ls2{letter-spacing:11.562667pt;}
.ls3{letter-spacing:14.880000pt;}
.ws6{word-spacing:-25.776000pt;}
.ws164{word-spacing:-13.440000pt;}
.ws1b5{word-spacing:-12.336000pt;}
.ws92{word-spacing:-12.213333pt;}
.ws32{word-spacing:-12.106667pt;}
.ws134{word-spacing:-12.000000pt;}
.ws2e{word-spacing:-11.946667pt;}
.ws111{word-spacing:-11.840000pt;}
.ws15c{word-spacing:-11.688000pt;}
.ws31{word-spacing:-11.680000pt;}
.ws162{word-spacing:-11.616000pt;}
.ws2f{word-spacing:-11.573333pt;}
.ws139{word-spacing:-11.568000pt;}
.ws2d{word-spacing:-11.413333pt;}
.ws91{word-spacing:-11.360000pt;}
.ws15d{word-spacing:-11.280000pt;}
.ws1b4{word-spacing:-11.232000pt;}
.ws169{word-spacing:-11.184000pt;}
.ws165{word-spacing:-11.136000pt;}
.ws16a{word-spacing:-10.992000pt;}
.ws137{word-spacing:-10.944000pt;}
.ws126{word-spacing:-10.933333pt;}
.ws2{word-spacing:-10.896000pt;}
.ws1b3{word-spacing:-10.752000pt;}
.ws30{word-spacing:-10.720000pt;}
.ws93{word-spacing:-10.666667pt;}
.ws163{word-spacing:-10.656000pt;}
.wsfc{word-spacing:-10.512000pt;}
.ws94{word-spacing:-10.506667pt;}
.ws15f{word-spacing:-10.464000pt;}
.ws167{word-spacing:-10.416000pt;}
.ws160{word-spacing:-10.368000pt;}
.ws1d0{word-spacing:-10.320000pt;}
.ws138{word-spacing:-10.224000pt;}
.ws136{word-spacing:-10.176000pt;}
.ws7{word-spacing:-10.109333pt;}
.ws34{word-spacing:-10.080000pt;}
.ws1b2{word-spacing:-10.032000pt;}
.ws33{word-spacing:-10.005331pt;}
.ws161{word-spacing:-9.984000pt;}
.wsfe{word-spacing:-9.936000pt;}
.wsf9{word-spacing:-9.920000pt;}
.ws15e{word-spacing:-9.888000pt;}
.ws166{word-spacing:-9.840000pt;}
.ws135{word-spacing:-9.552000pt;}
.ws168{word-spacing:-9.120000pt;}
.wsd2{word-spacing:-6.436997pt;}
.ws5{word-spacing:-5.696299pt;}
.ws112{word-spacing:-4.906667pt;}
.ws1b6{word-spacing:-4.320000pt;}
.ws16e{word-spacing:-4.032000pt;}
.ws0{word-spacing:-3.719920pt;}
.ws103{word-spacing:-3.466667pt;}
.ws10c{word-spacing:-3.253333pt;}
.ws1b7{word-spacing:-3.120000pt;}
.ws12d{word-spacing:-2.880000pt;}
.ws100{word-spacing:-2.773333pt;}
.ws7e{word-spacing:-2.613333pt;}
.ws7d{word-spacing:-2.560000pt;}
.ws53{word-spacing:-2.506667pt;}
.ws1ac{word-spacing:-2.496000pt;}
.ws123{word-spacing:-2.400000pt;}
.ws6b{word-spacing:-2.346667pt;}
.ws6a{word-spacing:-2.293333pt;}
.wse8{word-spacing:-2.186667pt;}
.wsc7{word-spacing:-2.133333pt;}
.ws80{word-spacing:-2.080000pt;}
.ws19a{word-spacing:-2.064000pt;}
.wscf{word-spacing:-2.026667pt;}
.ws150{word-spacing:-2.016000pt;}
.wsea{word-spacing:-1.973333pt;}
.ws3f{word-spacing:-1.920000pt;}
.ws55{word-spacing:-1.866667pt;}
.ws104{word-spacing:-1.813333pt;}
.ws16f{word-spacing:-1.776000pt;}
.ws13b{word-spacing:-1.760000pt;}
.ws140{word-spacing:-1.728000pt;}
.wsba{word-spacing:-1.706667pt;}
.ws3{word-spacing:-1.660920pt;}
.wsff{word-spacing:-1.653333pt;}
.ws87{word-spacing:-1.600000pt;}
.ws148{word-spacing:-1.584000pt;}
.wsb9{word-spacing:-1.546667pt;}
.ws48{word-spacing:-1.493333pt;}
.ws147{word-spacing:-1.488000pt;}
.ws19{word-spacing:-1.450667pt;}
.ws68{word-spacing:-1.440000pt;}
.ws1d{word-spacing:-1.405333pt;}
.ws157{word-spacing:-1.392000pt;}
.ws18d{word-spacing:-1.344000pt;}
.wsb7{word-spacing:-1.333333pt;}
.ws141{word-spacing:-1.296000pt;}
.ws65{word-spacing:-1.280000pt;}
.ws1b{word-spacing:-1.269333pt;}
.ws4{word-spacing:-1.234647pt;}
.wsb1{word-spacing:-1.226667pt;}
.ws187{word-spacing:-1.200000pt;}
.ws83{word-spacing:-1.173333pt;}
.ws14f{word-spacing:-1.152000pt;}
.ws37{word-spacing:-1.120000pt;}
.ws9f{word-spacing:-1.066667pt;}
.ws1ce{word-spacing:-1.056000pt;}
.wsdc{word-spacing:-1.013333pt;}
.ws1af{word-spacing:-1.008000pt;}
.ws62{word-spacing:-0.960000pt;}
.ws25{word-spacing:-0.906667pt;}
.ws1a2{word-spacing:-0.864000pt;}
.ws89{word-spacing:-0.863770pt;}
.ws8b{word-spacing:-0.827779pt;}
.wsb8{word-spacing:-0.800000pt;}
.ws8e{word-spacing:-0.755798pt;}
.ws66{word-spacing:-0.746667pt;}
.ws15{word-spacing:-0.680000pt;}
.wse4{word-spacing:-0.648331pt;}
.ws43{word-spacing:-0.640000pt;}
.ws188{word-spacing:-0.576000pt;}
.wse3{word-spacing:-0.555712pt;}
.ws2c{word-spacing:-0.544000pt;}
.wsf1{word-spacing:-0.533333pt;}
.wse5{word-spacing:-0.532557pt;}
.ws8a{word-spacing:-0.503866pt;}
.ws64{word-spacing:-0.480000pt;}
.ws27{word-spacing:-0.453333pt;}
.ws13e{word-spacing:-0.432000pt;}
.ws63{word-spacing:-0.426667pt;}
.ws85{word-spacing:-0.373333pt;}
.ws18{word-spacing:-0.362667pt;}
.ws130{word-spacing:-0.320000pt;}
.wse6{word-spacing:-0.301011pt;}
.ws1ab{word-spacing:-0.288000pt;}
.ws9d{word-spacing:-0.266667pt;}
.ws11{word-spacing:-0.240000pt;}
.ws40{word-spacing:-0.213333pt;}
.ws8d{word-spacing:-0.179952pt;}
.wsa{word-spacing:-0.176061pt;}
.ws131{word-spacing:-0.160000pt;}
.ws10f{word-spacing:-0.144000pt;}
.ws117{word-spacing:-0.106667pt;}
.ws1{word-spacing:-0.097072pt;}
.ws1d1{word-spacing:-0.096000pt;}
.ws2a{word-spacing:-0.090667pt;}
.ws82{word-spacing:-0.053333pt;}
.ws110{word-spacing:-0.048000pt;}
.wsb{word-spacing:-0.022146pt;}
.ws8{word-spacing:0.000000pt;}
.wsd5{word-spacing:0.046309pt;}
.ws12f{word-spacing:0.053333pt;}
.ws9{word-spacing:0.056330pt;}
.wsc{word-spacing:0.064287pt;}
.ws106{word-spacing:0.106667pt;}
.ws8f{word-spacing:0.144000pt;}
.wsca{word-spacing:0.160000pt;}
.ws8c{word-spacing:0.179952pt;}
.ws13d{word-spacing:0.192000pt;}
.wsde{word-spacing:0.213333pt;}
.ws90{word-spacing:0.240000pt;}
.ws4d{word-spacing:0.266667pt;}
.ws18b{word-spacing:0.288000pt;}
.wsd{word-spacing:0.298667pt;}
.ws1c{word-spacing:0.317333pt;}
.wsbd{word-spacing:0.320000pt;}
.wsbe{word-spacing:0.373333pt;}
.ws1bd{word-spacing:0.384000pt;}
.wsac{word-spacing:0.426667pt;}
.ws1ae{word-spacing:0.432000pt;}
.ws1a{word-spacing:0.453333pt;}
.wscc{word-spacing:0.480000pt;}
.ws14{word-spacing:0.498667pt;}
.wse{word-spacing:0.528000pt;}
.ws5d{word-spacing:0.533333pt;}
.ws124{word-spacing:0.554667pt;}
.ws158{word-spacing:0.576000pt;}
.ws61{word-spacing:0.586667pt;}
.ws13c{word-spacing:0.624000pt;}
.wsc6{word-spacing:0.640000pt;}
.ws18c{word-spacing:0.672000pt;}
.wsaf{word-spacing:0.693333pt;}
.ws1be{word-spacing:0.720000pt;}
.wse9{word-spacing:0.746667pt;}
.ws178{word-spacing:0.768000pt;}
.ws57{word-spacing:0.800000pt;}
.wsa7{word-spacing:0.853333pt;}
.ws6c{word-spacing:0.906667pt;}
.ws17b{word-spacing:0.912000pt;}
.ws99{word-spacing:0.960000pt;}
.ws1cd{word-spacing:1.008000pt;}
.wsbb{word-spacing:1.013333pt;}
.ws1b1{word-spacing:1.056000pt;}
.ws79{word-spacing:1.066667pt;}
.ws2b{word-spacing:1.088000pt;}
.wsc2{word-spacing:1.120000pt;}
.wsc9{word-spacing:1.173333pt;}
.ws159{word-spacing:1.200000pt;}
.ws12c{word-spacing:1.226667pt;}
.ws14e{word-spacing:1.248000pt;}
.ws10e{word-spacing:1.280000pt;}
.ws1cb{word-spacing:1.296000pt;}
.wsd9{word-spacing:1.333333pt;}
.ws1ad{word-spacing:1.344000pt;}
.ws73{word-spacing:1.386667pt;}
.ws179{word-spacing:1.392000pt;}
.ws22{word-spacing:1.405333pt;}
.ws86{word-spacing:1.440000pt;}
.wsd3{word-spacing:1.458744pt;}
.wsae{word-spacing:1.493333pt;}
.ws1b0{word-spacing:1.536000pt;}
.wsc1{word-spacing:1.546667pt;}
.wsb4{word-spacing:1.600000pt;}
.ws151{word-spacing:1.632000pt;}
.wsa8{word-spacing:1.653333pt;}
.ws3d{word-spacing:1.706667pt;}
.ws4f{word-spacing:1.760000pt;}
.ws17{word-spacing:1.768000pt;}
.ws56{word-spacing:1.813333pt;}
.ws108{word-spacing:1.866667pt;}
.ws23{word-spacing:1.904000pt;}
.ws42{word-spacing:1.920000pt;}
.ws10a{word-spacing:1.973333pt;}
.ws20{word-spacing:1.994667pt;}
.ws19b{word-spacing:2.016000pt;}
.wsce{word-spacing:2.026667pt;}
.ws28{word-spacing:2.040000pt;}
.ws11e{word-spacing:2.080000pt;}
.ws10{word-spacing:2.090667pt;}
.ws180{word-spacing:2.112000pt;}
.ws76{word-spacing:2.133333pt;}
.ws146{word-spacing:2.160000pt;}
.ws81{word-spacing:2.186667pt;}
.wsf{word-spacing:2.218667pt;}
.ws71{word-spacing:2.240000pt;}
.ws1ba{word-spacing:2.256000pt;}
.ws9e{word-spacing:2.293333pt;}
.wsb5{word-spacing:2.346667pt;}
.ws192{word-spacing:2.352000pt;}
.ws26{word-spacing:2.357333pt;}
.ws102{word-spacing:2.400000pt;}
.ws44{word-spacing:2.506667pt;}
.ws21{word-spacing:2.538667pt;}
.ws1a5{word-spacing:2.544000pt;}
.ws107{word-spacing:2.613333pt;}
.wse1{word-spacing:2.666667pt;}
.ws1a7{word-spacing:2.688000pt;}
.ws41{word-spacing:2.720000pt;}
.ws47{word-spacing:2.826667pt;}
.ws1b9{word-spacing:2.832000pt;}
.ws7a{word-spacing:2.880000pt;}
.ws149{word-spacing:2.928000pt;}
.ws101{word-spacing:2.933333pt;}
.ws1aa{word-spacing:2.976000pt;}
.ws109{word-spacing:2.986667pt;}
.ws193{word-spacing:3.024000pt;}
.ws4e{word-spacing:3.040000pt;}
.ws198{word-spacing:3.072000pt;}
.wsb6{word-spacing:3.093333pt;}
.ws1a4{word-spacing:3.120000pt;}
.ws1e{word-spacing:3.128000pt;}
.ws74{word-spacing:3.146667pt;}
.ws16{word-spacing:3.173333pt;}
.wsc3{word-spacing:3.200000pt;}
.ws142{word-spacing:3.216000pt;}
.wsc0{word-spacing:3.253333pt;}
.ws143{word-spacing:3.264000pt;}
.wsa5{word-spacing:3.360000pt;}
.ws14a{word-spacing:3.408000pt;}
.wsd1{word-spacing:3.413333pt;}
.ws1b8{word-spacing:3.456000pt;}
.wsc4{word-spacing:3.466667pt;}
.ws67{word-spacing:3.520000pt;}
.ws1bb{word-spacing:3.552000pt;}
.wsa4{word-spacing:3.573333pt;}
.ws152{word-spacing:3.600000pt;}
.ws88{word-spacing:3.626667pt;}
.ws177{word-spacing:3.648000pt;}
.ws96{word-spacing:3.680000pt;}
.ws59{word-spacing:3.733333pt;}
.wsda{word-spacing:3.786667pt;}
.ws14d{word-spacing:3.792000pt;}
.wsa3{word-spacing:3.840000pt;}
.ws18e{word-spacing:3.888000pt;}
.ws7c{word-spacing:3.893333pt;}
.ws1f{word-spacing:3.944000pt;}
.ws69{word-spacing:3.946667pt;}
.ws18f{word-spacing:3.984000pt;}
.ws6e{word-spacing:4.000000pt;}
.wsa6{word-spacing:4.053333pt;}
.ws60{word-spacing:4.106667pt;}
.ws1bc{word-spacing:4.128000pt;}
.ws72{word-spacing:4.160000pt;}
.wsc5{word-spacing:4.213333pt;}
.ws7f{word-spacing:4.266667pt;}
.wsb3{word-spacing:4.320000pt;}
.ws185{word-spacing:4.368000pt;}
.ws52{word-spacing:4.373333pt;}
.wsb0{word-spacing:4.426667pt;}
.ws3c{word-spacing:4.480000pt;}
.ws54{word-spacing:4.640000pt;}
.ws197{word-spacing:4.656000pt;}
.ws5e{word-spacing:4.693333pt;}
.ws155{word-spacing:4.704000pt;}
.wsa0{word-spacing:4.746667pt;}
.ws156{word-spacing:4.752000pt;}
.ws29{word-spacing:4.760000pt;}
.ws84{word-spacing:4.800000pt;}
.ws13f{word-spacing:4.848000pt;}
.wsdf{word-spacing:4.853333pt;}
.ws189{word-spacing:4.896000pt;}
.wse2{word-spacing:4.906667pt;}
.ws18a{word-spacing:4.944000pt;}
.ws58{word-spacing:4.960000pt;}
.wsdb{word-spacing:5.013333pt;}
.ws1cf{word-spacing:5.040000pt;}
.ws11a{word-spacing:5.066667pt;}
.ws174{word-spacing:5.088000pt;}
.ws9b{word-spacing:5.120000pt;}
.ws13{word-spacing:5.122667pt;}
.ws105{word-spacing:5.173333pt;}
.ws46{word-spacing:5.226667pt;}
.wsbf{word-spacing:5.280000pt;}
.ws196{word-spacing:5.328000pt;}
.wsc8{word-spacing:5.333333pt;}
.ws1cc{word-spacing:5.376000pt;}
.ws11f{word-spacing:5.386667pt;}
.ws51{word-spacing:5.440000pt;}
.ws154{word-spacing:5.472000pt;}
.ws3e{word-spacing:5.493333pt;}
.ws153{word-spacing:5.520000pt;}
.ws24{word-spacing:5.530667pt;}
.wsd0{word-spacing:5.546667pt;}
.wsf0{word-spacing:5.600000pt;}
.ws1bf{word-spacing:5.616000pt;}
.wsa1{word-spacing:5.653333pt;}
.ws1a0{word-spacing:5.664000pt;}
.ws118{word-spacing:5.706667pt;}
.wsef{word-spacing:5.760000pt;}
.ws1a9{word-spacing:5.808000pt;}
.ws39{word-spacing:5.813333pt;}
.ws17f{word-spacing:5.856000pt;}
.wsf8{word-spacing:5.866667pt;}
.wsbc{word-spacing:5.920000pt;}
.ws171{word-spacing:5.952000pt;}
.ws12e{word-spacing:5.973333pt;}
.ws170{word-spacing:6.000000pt;}
.ws49{word-spacing:6.026667pt;}
.wsb2{word-spacing:6.080000pt;}
.ws1a3{word-spacing:6.096000pt;}
.ws13a{word-spacing:6.133333pt;}
.ws1c0{word-spacing:6.144000pt;}
.ws50{word-spacing:6.186667pt;}
.ws12{word-spacing:6.210667pt;}
.wse0{word-spacing:6.240000pt;}
.ws1ca{word-spacing:6.288000pt;}
.ws127{word-spacing:6.293333pt;}
.ws1a1{word-spacing:6.336000pt;}
.ws38{word-spacing:6.346667pt;}
.ws175{word-spacing:6.384000pt;}
.ws5c{word-spacing:6.400000pt;}
.ws176{word-spacing:6.432000pt;}
.wsf6{word-spacing:6.453333pt;}
.ws199{word-spacing:6.480000pt;}
.ws45{word-spacing:6.506667pt;}
.wseb{word-spacing:6.560000pt;}
.ws7b{word-spacing:6.613333pt;}
.ws14c{word-spacing:6.624000pt;}
.ws11c{word-spacing:6.720000pt;}
.ws182{word-spacing:6.768000pt;}
.ws119{word-spacing:6.773333pt;}
.wsed{word-spacing:6.826667pt;}
.ws1a8{word-spacing:6.864000pt;}
.wsab{word-spacing:6.880000pt;}
.ws5f{word-spacing:6.986667pt;}
.wsa9{word-spacing:7.040000pt;}
.wscb{word-spacing:7.093333pt;}
.ws10d{word-spacing:7.146667pt;}
.ws77{word-spacing:7.200000pt;}
.wsf7{word-spacing:7.253333pt;}
.ws14b{word-spacing:7.296000pt;}
.ws36{word-spacing:7.306667pt;}
.wsad{word-spacing:7.360000pt;}
.ws172{word-spacing:7.392000pt;}
.ws95{word-spacing:7.413333pt;}
.ws5a{word-spacing:7.466667pt;}
.ws4c{word-spacing:7.626667pt;}
.ws3b{word-spacing:7.733333pt;}
.ws122{word-spacing:7.786667pt;}
.ws1a6{word-spacing:7.824000pt;}
.ws133{word-spacing:7.840000pt;}
.ws4b{word-spacing:7.893333pt;}
.ws5b{word-spacing:8.053333pt;}
.ws1c2{word-spacing:8.064000pt;}
.ws10b{word-spacing:8.106667pt;}
.ws11d{word-spacing:8.213333pt;}
.ws70{word-spacing:8.266667pt;}
.ws183{word-spacing:8.304000pt;}
.ws3a{word-spacing:8.426667pt;}
.wse7{word-spacing:8.480000pt;}
.ws1c8{word-spacing:8.496000pt;}
.ws12a{word-spacing:8.586667pt;}
.ws97{word-spacing:8.640000pt;}
.ws75{word-spacing:8.746667pt;}
.ws191{word-spacing:8.784000pt;}
.wscd{word-spacing:8.800000pt;}
.ws184{word-spacing:8.832000pt;}
.ws128{word-spacing:8.853333pt;}
.ws1c4{word-spacing:8.880000pt;}
.ws19f{word-spacing:8.928000pt;}
.ws6f{word-spacing:8.960000pt;}
.ws1c3{word-spacing:8.976000pt;}
.wsf2{word-spacing:9.066667pt;}
.ws1c9{word-spacing:9.072000pt;}
.ws190{word-spacing:9.168000pt;}
.ws121{word-spacing:9.173333pt;}
.ws78{word-spacing:9.226667pt;}
.ws145{word-spacing:9.264000pt;}
.ws98{word-spacing:9.280000pt;}
.ws1c1{word-spacing:9.312000pt;}
.ws144{word-spacing:9.360000pt;}
.wsf3{word-spacing:9.546667pt;}
.ws17a{word-spacing:9.552000pt;}
.ws17d{word-spacing:9.744000pt;}
.ws15b{word-spacing:9.792000pt;}
.ws181{word-spacing:9.888000pt;}
.wsd7{word-spacing:9.920000pt;}
.wsf5{word-spacing:9.973333pt;}
.wsec{word-spacing:10.026667pt;}
.wsa2{word-spacing:10.186667pt;}
.wsdd{word-spacing:10.293333pt;}
.ws12b{word-spacing:10.346667pt;}
.wsd8{word-spacing:10.400000pt;}
.ws1c5{word-spacing:10.752000pt;}
.ws194{word-spacing:10.848000pt;}
.ws129{word-spacing:11.146667pt;}
.wsee{word-spacing:11.306667pt;}
.ws9a{word-spacing:11.573333pt;}
.ws195{word-spacing:11.664000pt;}
.ws125{word-spacing:12.144000pt;}
.wsf4{word-spacing:12.213333pt;}
.ws19e{word-spacing:12.576000pt;}
.ws16c{word-spacing:12.624000pt;}
.ws4a{word-spacing:12.746667pt;}
.ws173{word-spacing:12.768000pt;}
.ws19c{word-spacing:12.912000pt;}
.ws1c7{word-spacing:12.960000pt;}
.ws11b{word-spacing:13.013333pt;}
.ws17c{word-spacing:13.296000pt;}
.wsaa{word-spacing:14.293333pt;}
.ws132{word-spacing:14.453333pt;}
.ws35{word-spacing:15.093333pt;}
.ws9c{word-spacing:15.306667pt;}
.ws19d{word-spacing:15.504000pt;}
.ws6d{word-spacing:16.213333pt;}
.ws15a{word-spacing:17.136000pt;}
.wsd4{word-spacing:18.514289pt;}
.ws1c6{word-spacing:18.576000pt;}
.ws17e{word-spacing:18.960000pt;}
.ws186{word-spacing:22.752000pt;}
.ws16b{word-spacing:30.384000pt;}
.wsfb{word-spacing:32.208000pt;}
.ws120{word-spacing:36.320000pt;}
.ws16d{word-spacing:47.712000pt;}
.wsd6{word-spacing:66.783845pt;}
.ws114{word-spacing:83.280000pt;}
.ws115{word-spacing:100.032000pt;}
.ws113{word-spacing:124.224000pt;}
.wsfd{word-spacing:157.540800pt;}
.ws116{word-spacing:166.032000pt;}
.wsfa{word-spacing:203.566933pt;}
._10{margin-left:-11.573333pt;}
._0{margin-left:-10.378667pt;}
._17{margin-left:-8.333978pt;}
._22{margin-left:-7.401539pt;}
._d{margin-left:-6.214631pt;}
._4{margin-left:-5.298576pt;}
._7{margin-left:-4.067965pt;}
._16{margin-left:-3.063476pt;}
._2{margin-left:-2.074989pt;}
._1{margin-left:-1.145369pt;}
._3{width:1.238400pt;}
._e{width:2.284891pt;}
._b{width:3.304524pt;}
._c{width:4.570939pt;}
._a{width:6.389333pt;}
._15{width:7.803915pt;}
._11{width:8.813635pt;}
._6{width:9.811072pt;}
._5{width:11.313813pt;}
._8{width:12.703578pt;}
._12{width:13.708800pt;}
._f{width:15.093333pt;}
._19{width:31.277333pt;}
._1d{width:33.108267pt;}
._23{width:39.456000pt;}
._1e{width:52.649600pt;}
._29{width:61.882989pt;}
._27{width:68.208000pt;}
._28{width:70.896000pt;}
._20{width:82.503204pt;}
._1f{width:93.609600pt;}
._1a{width:94.848000pt;}
._2a{width:124.265369pt;}
._26{width:137.060589pt;}
._25{width:160.169369pt;}
._1b{width:288.196015pt;}
._18{width:302.826204pt;}
._14{width:351.490809pt;}
._13{width:365.712000pt;}
._1c{width:488.389766pt;}
._9{width:819.837333pt;}
._21{width:928.889369pt;}
._24{width:1180.329600pt;}
.fsd{font-size:5.536533pt;}
.fsc{font-size:5.844267pt;}
.fsb{font-size:7.381867pt;}
.fsa{font-size:8.612267pt;}
.fs9{font-size:11.073067pt;}
.fs8{font-size:17.224533pt;}
.fs4{font-size:18.776533pt;}
.fs18{font-size:23.154667pt;}
.fs12{font-size:24.874667pt;}
.fs7{font-size:29.343467pt;}
.fs11{font-size:34.666667pt;}
.fs17{font-size:35.990400pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:40.000000pt;}
.fs13{font-size:42.666667pt;}
.fs14{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs15{font-size:50.666667pt;}
.fs16{font-size:53.333333pt;}
.fs10{font-size:58.666667pt;}
.fs2{font-size:74.398400pt;}
.fsf{font-size:74.666667pt;}
.fse{font-size:85.333333pt;}
.fs5{font-size:96.000000pt;}
.fs3{font-size:97.072000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:1.916000pt;}
.y5{bottom:26.448667pt;}
.y2{bottom:35.414267pt;}
.y1{bottom:45.354267pt;}
.yb2{bottom:50.041333pt;}
.y14e{bottom:75.314000pt;}
.yae{bottom:86.087067pt;}
.y3f{bottom:91.662533pt;}
.y32c{bottom:99.942933pt;}
.y2af{bottom:100.004400pt;}
.y2ed{bottom:100.050933pt;}
.y272{bottom:100.131067pt;}
.y26c{bottom:100.157733pt;}
.y155{bottom:100.167733pt;}
.yec{bottom:100.401600pt;}
.y7a{bottom:100.401733pt;}
.y18d{bottom:100.407733pt;}
.y126{bottom:100.481600pt;}
.y38c{bottom:100.726533pt;}
.y3e{bottom:105.874533pt;}
.y201{bottom:106.735200pt;}
.y1da{bottom:111.236533pt;}
.yb1{bottom:112.002267pt;}
.y32b{bottom:114.342933pt;}
.y2ec{bottom:114.450933pt;}
.y2ae{bottom:114.608400pt;}
.y154{bottom:115.861067pt;}
.yeb{bottom:116.041600pt;}
.y79{bottom:116.041733pt;}
.y18c{bottom:116.047733pt;}
.y125{bottom:116.121600pt;}
.y271{bottom:116.157733pt;}
.y26b{bottom:116.371067pt;}
.y38b{bottom:120.622533pt;}
.y200{bottom:124.075200pt;}
.y3d{bottom:127.906533pt;}
.y32a{bottom:128.742933pt;}
.y2eb{bottom:128.850933pt;}
.y2ad{bottom:129.212400pt;}
.yb0{bottom:129.342267pt;}
.y1d9{bottom:131.132533pt;}
.y153{bottom:131.554400pt;}
.yea{bottom:131.681600pt;}
.y78{bottom:131.681733pt;}
.y18b{bottom:131.687733pt;}
.y124{bottom:131.761600pt;}
.y270{bottom:132.184400pt;}
.y26a{bottom:132.584400pt;}
.y38a{bottom:134.830533pt;}
.y1ff{bottom:138.283200pt;}
.y3c{bottom:142.118533pt;}
.y329{bottom:143.142933pt;}
.y2ea{bottom:143.250933pt;}
.yaf{bottom:143.550267pt;}
.y2ac{bottom:143.816400pt;}
.y1d8{bottom:145.340533pt;}
.ye9{bottom:147.321600pt;}
.y77{bottom:147.321733pt;}
.y18a{bottom:147.327733pt;}
.y123{bottom:147.401600pt;}
.y26f{bottom:148.211067pt;}
.y389{bottom:149.038533pt;}
.y1fe{bottom:152.491200pt;}
.y3b{bottom:156.330533pt;}
.y328{bottom:157.542933pt;}
.y2e9{bottom:157.650933pt;}
.y2ab{bottom:158.420400pt;}
.yad{bottom:159.325333pt;}
.y1d7{bottom:159.548533pt;}
.y152{bottom:162.887733pt;}
.ye8{bottom:162.961600pt;}
.y76{bottom:162.961733pt;}
.y189{bottom:162.967733pt;}
.y122{bottom:163.041600pt;}
.y26e{bottom:164.237733pt;}
.y269{bottom:164.437733pt;}
.yac{bottom:167.172638pt;}
.y3a{bottom:170.542533pt;}
.y327{bottom:171.942933pt;}
.y2e8{bottom:172.050933pt;}
.y388{bottom:172.882533pt;}
.y2aa{bottom:173.024400pt;}
.yab{bottom:177.969758pt;}
.ye7{bottom:178.601600pt;}
.y75{bottom:178.601733pt;}
.y188{bottom:178.607733pt;}
.y121{bottom:178.681600pt;}
.y26d{bottom:180.264400pt;}
.y1d6{bottom:183.392533pt;}
.y39{bottom:184.754533pt;}
.y326{bottom:186.342933pt;}
.y2e7{bottom:186.450933pt;}
.y387{bottom:187.090533pt;}
.y2a9{bottom:187.628400pt;}
.yaa{bottom:189.009813pt;}
.ye6{bottom:194.241600pt;}
.y74{bottom:194.241733pt;}
.y187{bottom:194.247733pt;}
.y120{bottom:194.321600pt;}
.y229{bottom:194.349200pt;}
.y20c{bottom:194.954133pt;}
.y268{bottom:196.291067pt;}
.y1d5{bottom:197.600533pt;}
.y38{bottom:198.966533pt;}
.y325{bottom:200.742933pt;}
.y2e6{bottom:200.850933pt;}
.ya9{bottom:201.012611pt;}
.y386{bottom:201.298533pt;}
.y151{bottom:201.777200pt;}
.y2a8{bottom:202.232400pt;}
.ye5{bottom:209.881600pt;}
.y73{bottom:209.881733pt;}
.y186{bottom:209.887733pt;}
.y11f{bottom:209.961600pt;}
.y228{bottom:209.989200pt;}
.y20b{bottom:210.594133pt;}
.ya8{bottom:212.052667pt;}
.y37{bottom:213.178533pt;}
.y324{bottom:215.142933pt;}
.y2e5{bottom:215.250933pt;}
.y2a7{bottom:216.836400pt;}
.y150{bottom:219.177200pt;}
.y1d4{bottom:221.444533pt;}
.y385{bottom:225.142533pt;}
.ye4{bottom:225.521600pt;}
.y72{bottom:225.521733pt;}
.y185{bottom:225.527733pt;}
.y11e{bottom:225.601600pt;}
.y227{bottom:225.629200pt;}
.y20a{bottom:226.234133pt;}
.y36{bottom:227.390533pt;}
.y323{bottom:229.542933pt;}
.y2e4{bottom:229.650933pt;}
.y2a6{bottom:231.440400pt;}
.y14f{bottom:233.445200pt;}
.y1d3{bottom:235.652533pt;}
.y384{bottom:239.350533pt;}
.ye3{bottom:241.161600pt;}
.y71{bottom:241.161733pt;}
.y184{bottom:241.167733pt;}
.y11d{bottom:241.241600pt;}
.y226{bottom:241.269200pt;}
.y35{bottom:241.602533pt;}
.y209{bottom:241.874133pt;}
.y322{bottom:243.942933pt;}
.y2e3{bottom:244.050933pt;}
.ya7{bottom:244.692667pt;}
.y2a5{bottom:246.044400pt;}
.y267{bottom:246.654133pt;}
.y14d{bottom:249.276000pt;}
.y383{bottom:253.558533pt;}
.y34{bottom:255.814533pt;}
.ye2{bottom:256.801600pt;}
.y70{bottom:256.801733pt;}
.y183{bottom:256.807733pt;}
.y11c{bottom:256.881600pt;}
.y225{bottom:256.909200pt;}
.y208{bottom:257.514133pt;}
.y321{bottom:258.342933pt;}
.y2e2{bottom:258.450933pt;}
.y1d2{bottom:259.496533pt;}
.y2a4{bottom:260.648400pt;}
.y266{bottom:266.550133pt;}
.y33{bottom:270.026533pt;}
.ye1{bottom:272.441600pt;}
.y6f{bottom:272.441733pt;}
.y182{bottom:272.447733pt;}
.y11b{bottom:272.521600pt;}
.ya6{bottom:272.521733pt;}
.y224{bottom:272.549200pt;}
.y320{bottom:272.742933pt;}
.y2e1{bottom:272.850933pt;}
.y207{bottom:273.154133pt;}
.y1d1{bottom:273.704533pt;}
.y2a3{bottom:275.252400pt;}
.y382{bottom:277.402533pt;}
.y265{bottom:280.758133pt;}
.y32{bottom:284.238533pt;}
.y31f{bottom:287.142933pt;}
.y2e0{bottom:287.250933pt;}
.y1d0{bottom:287.912533pt;}
.ye0{bottom:288.081600pt;}
.y6e{bottom:288.081733pt;}
.y181{bottom:288.087733pt;}
.y11a{bottom:288.161600pt;}
.ya5{bottom:288.161733pt;}
.y223{bottom:288.189200pt;}
.y206{bottom:288.794133pt;}
.y2a2{bottom:289.856400pt;}
.y264{bottom:294.966133pt;}
.y31{bottom:298.450533pt;}
.y381{bottom:301.246533pt;}
.y31e{bottom:301.542933pt;}
.y2df{bottom:301.650933pt;}
.ydf{bottom:303.721600pt;}
.y6d{bottom:303.721733pt;}
.y180{bottom:303.727733pt;}
.y119{bottom:303.801600pt;}
.ya4{bottom:303.801733pt;}
.y222{bottom:303.829200pt;}
.y2a1{bottom:304.460400pt;}
.y25f{bottom:309.162133pt;}
.y263{bottom:309.174133pt;}
.y1cf{bottom:311.756533pt;}
.y30{bottom:312.662533pt;}
.y380{bottom:315.454533pt;}
.y31d{bottom:315.942933pt;}
.y2de{bottom:316.050933pt;}
.y2a0{bottom:319.064400pt;}
.yde{bottom:319.361600pt;}
.y6c{bottom:319.361733pt;}
.y17f{bottom:319.367733pt;}
.y118{bottom:319.441600pt;}
.ya3{bottom:319.441733pt;}
.y221{bottom:319.469200pt;}
.y25e{bottom:323.370133pt;}
.y262{bottom:323.382133pt;}
.y1ce{bottom:325.964533pt;}
.y31c{bottom:330.342933pt;}
.y2dd{bottom:330.450933pt;}
.y205{bottom:330.897733pt;}
.y29f{bottom:333.668400pt;}
.y2f{bottom:334.692933pt;}
.ydd{bottom:335.001600pt;}
.y6b{bottom:335.001733pt;}
.y17e{bottom:335.007733pt;}
.y117{bottom:335.081600pt;}
.ya2{bottom:335.081733pt;}
.y220{bottom:335.109200pt;}
.y25d{bottom:337.578133pt;}
.y261{bottom:337.590133pt;}
.y37f{bottom:339.298533pt;}
.y1cd{bottom:340.172533pt;}
.y31b{bottom:344.742933pt;}
.y2dc{bottom:344.850933pt;}
.y204{bottom:348.237733pt;}
.y29e{bottom:348.272400pt;}
.y14c{bottom:348.615067pt;}
.ydc{bottom:350.641600pt;}
.y6a{bottom:350.641733pt;}
.y17d{bottom:350.647733pt;}
.y116{bottom:350.721600pt;}
.ya1{bottom:350.721733pt;}
.y21f{bottom:350.749200pt;}
.y25c{bottom:351.786133pt;}
.y260{bottom:351.798133pt;}
.y37e{bottom:353.506533pt;}
.y31a{bottom:359.142933pt;}
.y2db{bottom:359.250933pt;}
.y2e{bottom:360.621733pt;}
.y203{bottom:362.445733pt;}
.y29d{bottom:362.876400pt;}
.y1cc{bottom:364.016533pt;}
.y14b{bottom:364.308400pt;}
.ydb{bottom:366.281600pt;}
.y69{bottom:366.281733pt;}
.y17c{bottom:366.287733pt;}
.y115{bottom:366.361600pt;}
.ya0{bottom:366.361733pt;}
.y21e{bottom:366.389200pt;}
.y37d{bottom:367.714533pt;}
.y319{bottom:373.542933pt;}
.y2da{bottom:373.650933pt;}
.y2d{bottom:374.833733pt;}
.y25b{bottom:375.630133pt;}
.y202{bottom:376.653733pt;}
.y29c{bottom:377.480400pt;}
.y1cb{bottom:378.224533pt;}
.y14a{bottom:380.001733pt;}
.yda{bottom:381.921600pt;}
.y68{bottom:381.921733pt;}
.y37c{bottom:381.922533pt;}
.y17b{bottom:381.927733pt;}
.y114{bottom:382.001600pt;}
.y9f{bottom:382.001733pt;}
.y21d{bottom:382.029200pt;}
.y318{bottom:387.942933pt;}
.y2d9{bottom:388.050933pt;}
.y25a{bottom:389.838133pt;}
.y29b{bottom:392.084400pt;}
.y1ca{bottom:392.432533pt;}
.y2c{bottom:392.955733pt;}
.y149{bottom:395.695067pt;}
.yd9{bottom:397.561600pt;}
.y67{bottom:397.561733pt;}
.y17a{bottom:397.567733pt;}
.y113{bottom:397.641600pt;}
.y9e{bottom:397.641733pt;}
.y21c{bottom:397.669200pt;}
.y1fd{bottom:400.437467pt;}
.y317{bottom:402.342933pt;}
.y2d8{bottom:402.450933pt;}
.y259{bottom:404.046133pt;}
.y37b{bottom:405.766533pt;}
.y29a{bottom:406.688400pt;}
.y2b{bottom:407.167733pt;}
.y148{bottom:411.388400pt;}
.yd8{bottom:413.201600pt;}
.y66{bottom:413.201733pt;}
.y179{bottom:413.207733pt;}
.y112{bottom:413.281600pt;}
.y9d{bottom:413.281733pt;}
.y21b{bottom:413.309200pt;}
.y1c9{bottom:416.276533pt;}
.y316{bottom:416.742933pt;}
.y2d7{bottom:416.850933pt;}
.y37a{bottom:419.974533pt;}
.y1fc{bottom:420.333467pt;}
.y299{bottom:421.292400pt;}
.y2a{bottom:421.379733pt;}
.y147{bottom:427.081733pt;}
.y258{bottom:427.890133pt;}
.yd7{bottom:428.841600pt;}
.y65{bottom:428.841733pt;}
.y111{bottom:428.921600pt;}
.y9c{bottom:428.921733pt;}
.y21a{bottom:428.949200pt;}
.y1c8{bottom:430.484533pt;}
.y315{bottom:431.142933pt;}
.y2d6{bottom:431.250933pt;}
.y379{bottom:434.182533pt;}
.y29{bottom:435.591733pt;}
.y298{bottom:435.896400pt;}
.y257{bottom:442.098133pt;}
.y146{bottom:442.775067pt;}
.y1fb{bottom:444.177467pt;}
.yd6{bottom:444.481600pt;}
.y64{bottom:444.481733pt;}
.y178{bottom:444.487733pt;}
.y110{bottom:444.561600pt;}
.y9b{bottom:444.561733pt;}
.y219{bottom:444.589200pt;}
.y314{bottom:445.542933pt;}
.y2d5{bottom:445.650933pt;}
.y378{bottom:448.390533pt;}
.y28{bottom:449.803733pt;}
.y297{bottom:450.500400pt;}
.y1c7{bottom:454.328533pt;}
.y256{bottom:456.306133pt;}
.y145{bottom:458.468400pt;}
.y313{bottom:459.942933pt;}
.y2d4{bottom:460.050933pt;}
.yd5{bottom:460.121600pt;}
.y63{bottom:460.121733pt;}
.y10f{bottom:460.201600pt;}
.y9a{bottom:460.201733pt;}
.y218{bottom:460.229200pt;}
.y1fa{bottom:460.461467pt;}
.y27{bottom:464.015733pt;}
.y296{bottom:465.104400pt;}
.y1c6{bottom:468.536533pt;}
.y255{bottom:470.514133pt;}
.y377{bottom:472.234533pt;}
.y144{bottom:474.161733pt;}
.y312{bottom:474.342933pt;}
.y2d3{bottom:474.450933pt;}
.yd4{bottom:475.761600pt;}
.y62{bottom:475.761733pt;}
.y177{bottom:475.767733pt;}
.y10e{bottom:475.841600pt;}
.y99{bottom:475.841733pt;}
.y217{bottom:475.869200pt;}
.y1f9{bottom:476.745467pt;}
.y26{bottom:478.227733pt;}
.y295{bottom:479.708400pt;}
.y20{bottom:483.186400pt;}
.y254{bottom:484.722133pt;}
.y376{bottom:486.442533pt;}
.y311{bottom:488.742933pt;}
.y2d2{bottom:488.850933pt;}
.y143{bottom:489.855067pt;}
.yd3{bottom:491.401600pt;}
.y61{bottom:491.401733pt;}
.y176{bottom:491.407733pt;}
.y10d{bottom:491.481600pt;}
.y98{bottom:491.481733pt;}
.y216{bottom:491.509200pt;}
.y1c4{bottom:492.382533pt;}
.y1c5{bottom:492.393200pt;}
.y25{bottom:492.439733pt;}
.y1f8{bottom:493.029467pt;}
.y294{bottom:494.312400pt;}
.y253{bottom:498.930133pt;}
.y1f{bottom:502.376400pt;}
.y310{bottom:503.142933pt;}
.y2d1{bottom:503.250933pt;}
.y1c3{bottom:505.171867pt;}
.y142{bottom:505.548400pt;}
.y24{bottom:506.651733pt;}
.yd2{bottom:507.041600pt;}
.y60{bottom:507.041733pt;}
.y175{bottom:507.047733pt;}
.y10c{bottom:507.121600pt;}
.y97{bottom:507.121733pt;}
.y215{bottom:507.149200pt;}
.y293{bottom:508.916400pt;}
.y1f7{bottom:509.313467pt;}
.y375{bottom:510.286533pt;}
.y30f{bottom:517.542933pt;}
.y2d0{bottom:517.650933pt;}
.y23{bottom:520.863733pt;}
.y141{bottom:521.241733pt;}
.y1e{bottom:521.566400pt;}
.yd1{bottom:522.681600pt;}
.y5f{bottom:522.681733pt;}
.y174{bottom:522.687733pt;}
.y10b{bottom:522.761600pt;}
.y96{bottom:522.761733pt;}
.y24f{bottom:522.762133pt;}
.y214{bottom:522.789200pt;}
.y292{bottom:523.520400pt;}
.y374{bottom:524.494533pt;}
.y1f6{bottom:525.597467pt;}
.y1c2{bottom:529.282800pt;}
.y30e{bottom:531.942933pt;}
.y2cf{bottom:532.050933pt;}
.y22{bottom:535.075733pt;}
.y140{bottom:536.935067pt;}
.y24e{bottom:536.970133pt;}
.y252{bottom:536.982133pt;}
.y291{bottom:538.124400pt;}
.yd0{bottom:538.321600pt;}
.y5e{bottom:538.321733pt;}
.y173{bottom:538.327733pt;}
.y10a{bottom:538.401600pt;}
.y95{bottom:538.401733pt;}
.y213{bottom:538.429200pt;}
.y373{bottom:538.702533pt;}
.y1d{bottom:540.756400pt;}
.y1f5{bottom:541.881467pt;}
.y1c1{bottom:543.490800pt;}
.y30d{bottom:546.342933pt;}
.y2ce{bottom:546.450933pt;}
.y21{bottom:549.287733pt;}
.y24d{bottom:551.178133pt;}
.y251{bottom:551.190133pt;}
.y1c{bottom:552.126400pt;}
.y13f{bottom:552.628400pt;}
.y290{bottom:552.728400pt;}
.y372{bottom:552.910533pt;}
.ycf{bottom:553.961600pt;}
.y5d{bottom:553.961733pt;}
.y172{bottom:553.967733pt;}
.y109{bottom:554.041600pt;}
.y94{bottom:554.041733pt;}
.y212{bottom:554.069200pt;}
.y30c{bottom:560.742933pt;}
.y2cd{bottom:560.850933pt;}
.y24c{bottom:565.386133pt;}
.y250{bottom:565.398133pt;}
.y1f4{bottom:565.726800pt;}
.y28f{bottom:567.332400pt;}
.y13e{bottom:568.321733pt;}
.yce{bottom:569.601600pt;}
.y5c{bottom:569.601733pt;}
.y171{bottom:569.607733pt;}
.y108{bottom:569.681600pt;}
.y93{bottom:569.681733pt;}
.y1b{bottom:571.318133pt;}
.y30b{bottom:575.142933pt;}
.y2cc{bottom:575.250933pt;}
.y371{bottom:576.754533pt;}
.y28e{bottom:581.936400pt;}
.y1c0{bottom:583.881600pt;}
.y1a5{bottom:583.961600pt;}
.ycd{bottom:585.241600pt;}
.y5b{bottom:585.241733pt;}
.y170{bottom:585.247733pt;}
.y107{bottom:585.321600pt;}
.y92{bottom:585.321733pt;}
.y211{bottom:585.349200pt;}
.y1f3{bottom:588.596133pt;}
.y24b{bottom:589.230133pt;}
.y30a{bottom:589.542933pt;}
.y2cb{bottom:589.650933pt;}
.y370{bottom:590.962533pt;}
.y28d{bottom:596.540400pt;}
.y1bf{bottom:599.574933pt;}
.y1a4{bottom:599.654933pt;}
.y13d{bottom:599.655067pt;}
.ycc{bottom:600.881600pt;}
.y5a{bottom:600.881733pt;}
.y16f{bottom:600.887733pt;}
.y106{bottom:600.961600pt;}
.y91{bottom:600.961733pt;}
.y24a{bottom:603.438133pt;}
.y309{bottom:603.942933pt;}
.y2ca{bottom:604.050933pt;}
.y1a{bottom:608.571467pt;}
.y28c{bottom:611.144400pt;}
.y1f2{bottom:612.709733pt;}
.y36f{bottom:614.806533pt;}
.y1be{bottom:615.268267pt;}
.y1a3{bottom:615.348267pt;}
.ycb{bottom:616.521600pt;}
.y59{bottom:616.521733pt;}
.y16e{bottom:616.527733pt;}
.y105{bottom:616.601600pt;}
.y90{bottom:616.601733pt;}
.y210{bottom:616.635733pt;}
.y249{bottom:617.646133pt;}
.y308{bottom:618.342933pt;}
.y2c9{bottom:618.450933pt;}
.y19{bottom:624.912800pt;}
.y28b{bottom:625.748400pt;}
.y1f1{bottom:626.917733pt;}
.y36e{bottom:629.014533pt;}
.y1bd{bottom:630.961600pt;}
.y1a2{bottom:631.041600pt;}
.y248{bottom:631.854133pt;}
.yca{bottom:632.161600pt;}
.y58{bottom:632.161733pt;}
.y16d{bottom:632.167733pt;}
.y104{bottom:632.241600pt;}
.y8f{bottom:632.241733pt;}
.y307{bottom:632.742933pt;}
.y2c8{bottom:632.850933pt;}
.y20f{bottom:633.975733pt;}
.y28a{bottom:640.352400pt;}
.y1f0{bottom:641.125733pt;}
.y36d{bottom:643.222533pt;}
.y247{bottom:646.062133pt;}
.y13c{bottom:646.628400pt;}
.y1bc{bottom:646.654933pt;}
.y1a1{bottom:646.734933pt;}
.y306{bottom:647.142933pt;}
.y2c7{bottom:647.250933pt;}
.yc9{bottom:647.801600pt;}
.y57{bottom:647.801733pt;}
.y16c{bottom:647.807733pt;}
.y103{bottom:647.881600pt;}
.y8e{bottom:647.881733pt;}
.y20e{bottom:648.183733pt;}
.y18{bottom:649.791200pt;}
.y343{bottom:651.858933pt;}
.y35c{bottom:651.918933pt;}
.y289{bottom:654.956400pt;}
.y246{bottom:660.270133pt;}
.y305{bottom:661.542933pt;}
.y2c6{bottom:661.650933pt;}
.y13b{bottom:662.321733pt;}
.y1bb{bottom:662.348267pt;}
.y20d{bottom:662.391733pt;}
.y1a0{bottom:662.428267pt;}
.yc8{bottom:663.441600pt;}
.y56{bottom:663.441733pt;}
.y16b{bottom:663.447733pt;}
.y102{bottom:663.521600pt;}
.y8d{bottom:663.521733pt;}
.y342{bottom:666.066933pt;}
.y35b{bottom:666.126933pt;}
.y17{bottom:666.132533pt;}
.y36c{bottom:667.066533pt;}
.y288{bottom:669.560400pt;}
.y1ef{bottom:671.055067pt;}
.y245{bottom:674.478133pt;}
.y304{bottom:675.942933pt;}
.y2c5{bottom:676.050933pt;}
.y13a{bottom:678.015067pt;}
.y1ba{bottom:678.041600pt;}
.y19f{bottom:678.121600pt;}
.yc7{bottom:679.081600pt;}
.y55{bottom:679.081733pt;}
.y16a{bottom:679.087733pt;}
.y101{bottom:679.161600pt;}
.y8c{bottom:679.161733pt;}
.y341{bottom:680.274933pt;}
.y35a{bottom:680.334933pt;}
.y16{bottom:680.815600pt;}
.y36b{bottom:681.274533pt;}
.y287{bottom:684.164400pt;}
.y1ee{bottom:686.695067pt;}
.y244{bottom:688.686133pt;}
.y303{bottom:690.342933pt;}
.y2c4{bottom:690.450933pt;}
.y139{bottom:693.708400pt;}
.y1b9{bottom:693.734933pt;}
.y19e{bottom:693.814933pt;}
.y340{bottom:694.482933pt;}
.y359{bottom:694.542933pt;}
.yc6{bottom:694.721600pt;}
.y54{bottom:694.721733pt;}
.y169{bottom:694.727733pt;}
.y100{bottom:694.801600pt;}
.y8b{bottom:694.801733pt;}
.y36a{bottom:695.482533pt;}
.y14{bottom:697.876800pt;}
.y286{bottom:698.768400pt;}
.y1ed{bottom:702.335067pt;}
.y15{bottom:702.543467pt;}
.y23f{bottom:702.882133pt;}
.y243{bottom:702.894133pt;}
.y302{bottom:704.742933pt;}
.y2c3{bottom:704.850933pt;}
.y33f{bottom:708.690933pt;}
.y358{bottom:708.750933pt;}
.y138{bottom:709.401733pt;}
.y1b8{bottom:709.428267pt;}
.y19d{bottom:709.508267pt;}
.yc5{bottom:710.361600pt;}
.y53{bottom:710.361733pt;}
.y168{bottom:710.367733pt;}
.yff{bottom:710.441600pt;}
.y8a{bottom:710.441733pt;}
.y285{bottom:713.372400pt;}
.y23e{bottom:717.090133pt;}
.y242{bottom:717.102133pt;}
.y1ec{bottom:717.975067pt;}
.y301{bottom:719.142933pt;}
.y2c2{bottom:719.250933pt;}
.y369{bottom:719.326533pt;}
.y33e{bottom:722.898933pt;}
.y357{bottom:722.958933pt;}
.y137{bottom:725.095067pt;}
.y1b7{bottom:725.121600pt;}
.y19c{bottom:725.201600pt;}
.yc4{bottom:726.001600pt;}
.y52{bottom:726.001733pt;}
.y167{bottom:726.007733pt;}
.yfe{bottom:726.081600pt;}
.y89{bottom:726.081733pt;}
.y284{bottom:727.976400pt;}
.y13{bottom:730.577733pt;}
.y23d{bottom:731.298133pt;}
.y241{bottom:731.310133pt;}
.y368{bottom:733.534533pt;}
.y300{bottom:733.542933pt;}
.y1eb{bottom:733.615067pt;}
.y2c1{bottom:733.650933pt;}
.y33d{bottom:737.106933pt;}
.y356{bottom:737.166933pt;}
.y136{bottom:740.788400pt;}
.y1b6{bottom:740.814933pt;}
.y19b{bottom:740.894933pt;}
.yc3{bottom:741.641600pt;}
.y51{bottom:741.641733pt;}
.y166{bottom:741.647733pt;}
.yfd{bottom:741.721600pt;}
.y88{bottom:741.721733pt;}
.y283{bottom:742.580400pt;}
.y23c{bottom:745.506133pt;}
.y240{bottom:745.518133pt;}
.y2ff{bottom:747.942933pt;}
.y2c0{bottom:748.050933pt;}
.y1ea{bottom:749.255067pt;}
.y33c{bottom:751.314933pt;}
.y355{bottom:751.374933pt;}
.y12{bottom:752.604400pt;}
.y135{bottom:756.481733pt;}
.y1b5{bottom:756.508267pt;}
.y19a{bottom:756.588267pt;}
.y282{bottom:757.184400pt;}
.yc2{bottom:757.281600pt;}
.y50{bottom:757.281733pt;}
.y165{bottom:757.287733pt;}
.yfc{bottom:757.361600pt;}
.y87{bottom:757.361733pt;}
.y367{bottom:757.378533pt;}
.y2fe{bottom:762.342933pt;}
.y2bf{bottom:762.450933pt;}
.y1e9{bottom:764.895067pt;}
.y33b{bottom:765.522933pt;}
.y354{bottom:765.582933pt;}
.y23b{bottom:769.350133pt;}
.y366{bottom:771.586533pt;}
.y281{bottom:771.788400pt;}
.y134{bottom:772.175067pt;}
.y1b4{bottom:772.201600pt;}
.y199{bottom:772.281600pt;}
.yc1{bottom:772.921600pt;}
.y4f{bottom:772.921733pt;}
.y164{bottom:772.927733pt;}
.yfb{bottom:773.001600pt;}
.y86{bottom:773.001733pt;}
.y2fd{bottom:776.742933pt;}
.y2be{bottom:776.850933pt;}
.y33a{bottom:779.730933pt;}
.y353{bottom:779.790933pt;}
.y1e8{bottom:780.535067pt;}
.y11{bottom:782.448267pt;}
.y236{bottom:783.546133pt;}
.y23a{bottom:783.558133pt;}
.y280{bottom:786.392400pt;}
.y133{bottom:787.868400pt;}
.y1b3{bottom:787.894933pt;}
.y198{bottom:787.974933pt;}
.yc0{bottom:788.561600pt;}
.y4e{bottom:788.561733pt;}
.y163{bottom:788.567733pt;}
.yfa{bottom:788.641600pt;}
.y85{bottom:788.641733pt;}
.y2fc{bottom:791.142933pt;}
.y2bd{bottom:791.250933pt;}
.y339{bottom:793.938933pt;}
.y352{bottom:793.998933pt;}
.y365{bottom:795.430533pt;}
.y1e7{bottom:796.175067pt;}
.y235{bottom:797.754133pt;}
.y239{bottom:797.766133pt;}
.y27f{bottom:800.996400pt;}
.y132{bottom:803.561733pt;}
.y1b2{bottom:803.588267pt;}
.y197{bottom:803.668267pt;}
.ybf{bottom:804.201600pt;}
.y4d{bottom:804.201733pt;}
.y162{bottom:804.207733pt;}
.yf9{bottom:804.281600pt;}
.y84{bottom:804.281733pt;}
.y10{bottom:804.485600pt;}
.y2fb{bottom:805.542933pt;}
.y2bc{bottom:805.650933pt;}
.y338{bottom:808.146933pt;}
.y351{bottom:808.206933pt;}
.y364{bottom:809.638533pt;}
.y1e6{bottom:811.815067pt;}
.y234{bottom:811.962133pt;}
.y238{bottom:811.974133pt;}
.y27e{bottom:815.600400pt;}
.y131{bottom:819.255067pt;}
.y1b1{bottom:819.281600pt;}
.y196{bottom:819.361600pt;}
.ybe{bottom:819.841600pt;}
.y4c{bottom:819.841733pt;}
.y161{bottom:819.847733pt;}
.yf8{bottom:819.921600pt;}
.y83{bottom:819.921733pt;}
.y2fa{bottom:819.942933pt;}
.y2bb{bottom:820.050933pt;}
.y337{bottom:822.354933pt;}
.y350{bottom:822.414933pt;}
.y363{bottom:823.846533pt;}
.y233{bottom:826.170133pt;}
.y237{bottom:826.182133pt;}
.y1e5{bottom:827.455067pt;}
.y27d{bottom:830.204400pt;}
.y2f9{bottom:834.342933pt;}
.y2ba{bottom:834.450933pt;}
.y130{bottom:834.948400pt;}
.y1b0{bottom:834.974933pt;}
.y195{bottom:835.054933pt;}
.ybd{bottom:835.481600pt;}
.y4b{bottom:835.481733pt;}
.y160{bottom:835.487733pt;}
.yf7{bottom:835.561600pt;}
.y82{bottom:835.561733pt;}
.y336{bottom:836.562933pt;}
.y34f{bottom:836.622933pt;}
.y27c{bottom:844.808400pt;}
.y362{bottom:847.690533pt;}
.y2f8{bottom:848.742933pt;}
.y2b9{bottom:848.850933pt;}
.y232{bottom:850.014133pt;}
.y12f{bottom:850.641733pt;}
.y1af{bottom:850.668267pt;}
.y194{bottom:850.748267pt;}
.y335{bottom:850.770933pt;}
.y34e{bottom:850.830933pt;}
.ybc{bottom:851.121600pt;}
.y4a{bottom:851.121733pt;}
.y15f{bottom:851.127733pt;}
.yf6{bottom:851.201600pt;}
.y81{bottom:851.201733pt;}
.y1e4{bottom:854.961733pt;}
.y27b{bottom:859.412400pt;}
.y361{bottom:861.898533pt;}
.y2f7{bottom:863.142933pt;}
.y2b8{bottom:863.250933pt;}
.y231{bottom:864.222133pt;}
.y334{bottom:864.978933pt;}
.y34d{bottom:865.038933pt;}
.y12e{bottom:866.335067pt;}
.y1ae{bottom:866.361600pt;}
.y193{bottom:866.441600pt;}
.ybb{bottom:866.761600pt;}
.y49{bottom:866.761733pt;}
.y15e{bottom:866.767733pt;}
.yf5{bottom:866.841600pt;}
.y80{bottom:866.841733pt;}
.y4{bottom:873.540000pt;}
.y27a{bottom:874.016400pt;}
.y2f6{bottom:877.542933pt;}
.y2b7{bottom:877.650933pt;}
.yd{bottom:877.946133pt;}
.y333{bottom:879.186933pt;}
.y34c{bottom:879.246933pt;}
.y12d{bottom:882.028400pt;}
.y1ad{bottom:882.054933pt;}
.y192{bottom:882.134933pt;}
.yba{bottom:882.401600pt;}
.y48{bottom:882.401733pt;}
.y15d{bottom:882.407733pt;}
.y1e3{bottom:882.468400pt;}
.yf4{bottom:882.481600pt;}
.y7f{bottom:882.481733pt;}
.yc{bottom:883.328800pt;}
.y3{bottom:883.674667pt;}
.y360{bottom:885.742533pt;}
.y230{bottom:888.066133pt;}
.y279{bottom:888.620400pt;}
.y2f5{bottom:891.942933pt;}
.y2b6{bottom:892.050933pt;}
.y332{bottom:893.394933pt;}
.y34b{bottom:893.454933pt;}
.y9{bottom:897.040933pt;}
.y12c{bottom:897.721733pt;}
.y1ac{bottom:897.748267pt;}
.yb9{bottom:898.041600pt;}
.y47{bottom:898.041733pt;}
.y15c{bottom:898.047733pt;}
.y1e2{bottom:898.108400pt;}
.yf3{bottom:898.121600pt;}
.y22f{bottom:902.274133pt;}
.y278{bottom:903.224400pt;}
.y2f4{bottom:906.342933pt;}
.y2b5{bottom:906.450933pt;}
.y331{bottom:907.602933pt;}
.y34a{bottom:907.662933pt;}
.y35f{bottom:908.828667pt;}
.y12b{bottom:913.415067pt;}
.y1ab{bottom:913.441600pt;}
.y191{bottom:913.468267pt;}
.yb8{bottom:913.681600pt;}
.y46{bottom:913.681733pt;}
.y15b{bottom:913.687733pt;}
.y1e1{bottom:913.748400pt;}
.yf2{bottom:913.761600pt;}
.y7e{bottom:913.761733pt;}
.y22e{bottom:916.482133pt;}
.y8{bottom:916.588933pt;}
.y277{bottom:917.828400pt;}
.y2f3{bottom:920.742933pt;}
.y2b4{bottom:920.850933pt;}
.y330{bottom:921.810933pt;}
.y349{bottom:921.870933pt;}
.y12a{bottom:929.108400pt;}
.y1aa{bottom:929.134933pt;}
.yb7{bottom:929.321600pt;}
.y45{bottom:929.321733pt;}
.y15a{bottom:929.327733pt;}
.y1e0{bottom:929.388400pt;}
.yf1{bottom:929.401600pt;}
.y7d{bottom:929.401733pt;}
.y22d{bottom:930.690133pt;}
.y35e{bottom:932.183600pt;}
.y276{bottom:932.432400pt;}
.y2f2{bottom:935.142933pt;}
.y2b3{bottom:935.250933pt;}
.y32f{bottom:936.018933pt;}
.y348{bottom:936.078933pt;}
.y190{bottom:944.801600pt;}
.y129{bottom:944.801733pt;}
.y1a9{bottom:944.828267pt;}
.yb6{bottom:944.961600pt;}
.y44{bottom:944.961733pt;}
.y159{bottom:944.967733pt;}
.y1df{bottom:945.028400pt;}
.yf0{bottom:945.041600pt;}
.y35d{bottom:946.391600pt;}
.y275{bottom:947.036400pt;}
.y2f1{bottom:949.542933pt;}
.y2b2{bottom:949.650933pt;}
.y32e{bottom:950.226933pt;}
.y347{bottom:950.286933pt;}
.y22c{bottom:954.532000pt;}
.y7{bottom:959.208533pt;}
.y18f{bottom:960.494933pt;}
.y128{bottom:960.495067pt;}
.y1a8{bottom:960.521600pt;}
.yb5{bottom:960.601600pt;}
.y43{bottom:960.601733pt;}
.y158{bottom:960.607733pt;}
.y1de{bottom:960.668400pt;}
.yef{bottom:960.681600pt;}
.y274{bottom:961.640400pt;}
.y2f0{bottom:963.942933pt;}
.y2b1{bottom:964.050933pt;}
.y32d{bottom:964.434933pt;}
.y346{bottom:964.494933pt;}
.y18e{bottom:976.188267pt;}
.y127{bottom:976.188400pt;}
.y1a7{bottom:976.214933pt;}
.yb4{bottom:976.241600pt;}
.y1db{bottom:976.241733pt;}
.y157{bottom:976.247733pt;}
.y1dd{bottom:976.308400pt;}
.yee{bottom:976.321600pt;}
.y7c{bottom:976.321733pt;}
.y2ef{bottom:978.342933pt;}
.y2b0{bottom:978.450933pt;}
.y22b{bottom:978.642933pt;}
.y345{bottom:978.702933pt;}
.yf{bottom:982.874000pt;}
.ye{bottom:985.101200pt;}
.yb{bottom:988.195211pt;}
.yb3{bottom:991.881600pt;}
.y42{bottom:991.881733pt;}
.y156{bottom:991.887733pt;}
.y1a6{bottom:991.908267pt;}
.y1dc{bottom:991.948400pt;}
.yed{bottom:991.961600pt;}
.y7b{bottom:991.961733pt;}
.y273{bottom:992.121600pt;}
.y2ee{bottom:992.742933pt;}
.y22a{bottom:992.850933pt;}
.y344{bottom:992.910933pt;}
.ya{bottom:995.112933pt;}
.y40{bottom:1013.571467pt;}
.y41{bottom:1040.277733pt;}
.he{height:3.942012pt;}
.hd{height:6.114709pt;}
.hc{height:7.884023pt;}
.hb{height:12.263868pt;}
.h7{height:14.420378pt;}
.h20{height:17.647923pt;}
.h13{height:20.352000pt;}
.ha{height:20.892548pt;}
.h1a{height:26.488934pt;}
.h1b{height:26.524925pt;}
.h3{height:27.477333pt;}
.h2{height:28.000000pt;}
.h12{height:28.392000pt;}
.h15{height:32.760000pt;}
.h1d{height:34.128000pt;}
.h14{height:34.560000pt;}
.h23{height:35.541333pt;}
.h16{height:37.128000pt;}
.h25{height:38.880000pt;}
.h9{height:39.312000pt;}
.h22{height:39.984000pt;}
.h1e{height:41.040000pt;}
.h17{height:41.496000pt;}
.h21{height:43.200000pt;}
.h19{height:43.680000pt;}
.h18{height:44.426667pt;}
.h5{height:46.362667pt;}
.h11{height:48.048000pt;}
.h6{height:53.001312pt;}
.h4{height:54.831621pt;}
.h10{height:60.480000pt;}
.hf{height:69.888000pt;}
.h8{height:78.624000pt;}
.h1f{height:80.845333pt;}
.h24{height:86.741333pt;}
.h1c{height:94.753333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:102.330667pt;}
.w3{width:335.400000pt;}
.w4{width:339.821333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:1.211600pt;}
.x5{left:2.266400pt;}
.x4{left:47.244000pt;}
.x3{left:49.044533pt;}
.x2a{left:51.023600pt;}
.x24{left:53.319200pt;}
.x28{left:54.916933pt;}
.x3b{left:56.042800pt;}
.x27{left:64.548933pt;}
.x11{left:66.137467pt;}
.x37{left:78.843200pt;}
.x38{left:84.495200pt;}
.x1{left:100.716400pt;}
.xc{left:102.228267pt;}
.x2{left:105.716400pt;}
.x3a{left:115.837333pt;}
.x2b{left:126.611600pt;}
.x25{left:155.511200pt;}
.x3e{left:183.311200pt;}
.x6{left:187.867333pt;}
.x23{left:197.607200pt;}
.x1a{left:227.985467pt;}
.xf{left:236.280400pt;}
.x21{left:241.052800pt;}
.x10{left:245.484933pt;}
.x3c{left:272.774800pt;}
.x7{left:276.395600pt;}
.xd{left:283.526667pt;}
.xe{left:287.709200pt;}
.x8{left:313.067600pt;}
.x3d{left:372.916667pt;}
.x26{left:379.798533pt;}
.x12{left:406.297467pt;}
.x19{left:408.677333pt;}
.x33{left:410.078800pt;}
.x1f{left:411.750400pt;}
.x39{left:415.770267pt;}
.x15{left:418.926933pt;}
.x13{left:423.017467pt;}
.x17{left:423.984933pt;}
.x14{left:425.190800pt;}
.x18{left:431.013933pt;}
.x16{left:437.988933pt;}
.x2c{left:447.875600pt;}
.x2d{left:451.655600pt;}
.x32{left:464.814000pt;}
.x34{left:469.002400pt;}
.x2f{left:483.582133pt;}
.x30{left:485.238133pt;}
.x20{left:490.674400pt;}
.x29{left:511.343600pt;}
.x35{left:512.586400pt;}
.x36{left:514.566400pt;}
.x31{left:517.891333pt;}
.x1e{left:556.662400pt;}
.x2e{left:559.326133pt;}
.x1d{left:618.604533pt;}
.x1c{left:621.376533pt;}
.x1b{left:637.882533pt;}
.x9{left:661.151600pt;}
.xb{left:687.094400pt;}
.xa{left:691.669733pt;}
}




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