
    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_737f3d8e40a707815c1f31fb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.102051;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_7d80d6ce28d9b6e699216512.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a8b187a7af822d97740ab43c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.102051;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_1dcf624a62becedda25e1264.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_bed573736d8afca1bc047650.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6c5ba8c505defcf5738a6c5c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.947754;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_1f81ab6753fc8340db77490d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.947754;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_3a16dd5377eb2cda6f4eb10b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.107422;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_ea0d414fe6ad7b44fe254ed9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.901855;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_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.783691;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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.682617;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_1a2a3e1f827d25c091313d1d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.774902;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_89c857a0b4ca7772c54e53e8.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.172852;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_f7d7a6f381147f3997e6d94a.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f6cb547c3b9c5212b9b76f10.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.202148;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_e077753adfab5a5e31000160.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_8efc7cf0d6099c078d3e5d03.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_9d1fa2126ca3ae94a08a0a70.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_3003be49db17cc718a1f4fe0.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_17edd1391ce1463b7a60118e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.937988;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.180848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180848,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.230763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230763,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247629,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);}
.m9{transform:matrix(0.253928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253928,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.259163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259163,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.262896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262896,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.277178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277178,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.278521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278521,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-125.280000px;}
.v1{vertical-align:-124.020000px;}
.v3{vertical-align:-120.960000px;}
.v4{vertical-align:-89.280000px;}
.v6{vertical-align:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:24.480000px;}
.ls29{letter-spacing:-2.347936px;}
.ls2a{letter-spacing:-2.070000px;}
.ls3f{letter-spacing:-1.781492px;}
.ls3d{letter-spacing:-1.584000px;}
.ls2d{letter-spacing:-1.502119px;}
.ls1d{letter-spacing:-1.440000px;}
.ls31{letter-spacing:-1.391379px;}
.ls33{letter-spacing:-1.328501px;}
.ls28{letter-spacing:-1.296000px;}
.ls9{letter-spacing:-1.152000px;}
.ls32{letter-spacing:-1.148875px;}
.ls34{letter-spacing:-0.992099px;}
.ls30{letter-spacing:-0.936000px;}
.ls2f{letter-spacing:-0.792000px;}
.ls2c{letter-spacing:-0.648000px;}
.ls2e{letter-spacing:-0.636000px;}
.ls35{letter-spacing:-0.504000px;}
.lsf{letter-spacing:-0.501000px;}
.lse{letter-spacing:-0.363000px;}
.ls27{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.108000px;}
.ls20{letter-spacing:-0.034560px;}
.ls23{letter-spacing:-0.025920px;}
.ls4{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.017280px;}
.lsa{letter-spacing:0.144000px;}
.ls3e{letter-spacing:0.198356px;}
.ls8{letter-spacing:0.216000px;}
.ls3a{letter-spacing:0.264000px;}
.ls6{letter-spacing:0.288000px;}
.ls1f{letter-spacing:0.432000px;}
.ls3c{letter-spacing:0.468000px;}
.ls22{letter-spacing:0.504000px;}
.ls2b{letter-spacing:0.648000px;}
.ls2{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.938880px;}
.ls13{letter-spacing:1.296000px;}
.ls10{letter-spacing:1.584000px;}
.ls1{letter-spacing:2.172000px;}
.ls15{letter-spacing:3.024000px;}
.ls1b{letter-spacing:4.464000px;}
.ls37{letter-spacing:8.784000px;}
.ls16{letter-spacing:11.664000px;}
.ls38{letter-spacing:13.104000px;}
.ls12{letter-spacing:20.304000px;}
.ls1c{letter-spacing:23.184000px;}
.ls39{letter-spacing:27.504000px;}
.ls21{letter-spacing:27.516000px;}
.ls24{letter-spacing:29.064000px;}
.ls3b{letter-spacing:30.384000px;}
.ls1a{letter-spacing:31.824000px;}
.ls7{letter-spacing:33.264000px;}
.ls25{letter-spacing:37.584000px;}
.ls26{letter-spacing:49.284000px;}
.lsb{letter-spacing:51.996000px;}
.ls17{letter-spacing:54.864000px;}
.ls11{letter-spacing:54.876000px;}
.ls19{letter-spacing:55.186560px;}
.ls18{letter-spacing:63.826560px;}
.lsc{letter-spacing:72.144000px;}
.ls36{letter-spacing:108.300000px;}
.ls3{letter-spacing:470.076000px;}
.lsd{letter-spacing:806.880000px;}
.ls0{letter-spacing:1249.416000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(153,0,51),0 0.015em rgb(153,0,51),0.015em 0 rgb(153,0,51),0 -0.015em  rgb(153,0,51);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(153,0,51);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-72.000000px;}
.wsc{word-spacing:-60.480000px;}
.ws93{word-spacing:-54.720000px;}
.ws0{word-spacing:-27.000000px;}
.ws6{word-spacing:-26.458440px;}
.ws10{word-spacing:-21.634560px;}
.ws11{word-spacing:-21.591360px;}
.wsf{word-spacing:-21.582720px;}
.wsa{word-spacing:-21.312000px;}
.ws12{word-spacing:-20.520000px;}
.ws2{word-spacing:-20.304000px;}
.ws9{word-spacing:-20.232000px;}
.ws5{word-spacing:-20.160000px;}
.ws4{word-spacing:-20.016000px;}
.ws90{word-spacing:-19.872000px;}
.ws8f{word-spacing:-19.512000px;}
.ws91{word-spacing:-19.080000px;}
.ws3{word-spacing:-18.864000px;}
.ws13{word-spacing:-18.720000px;}
.wse{word-spacing:-18.576000px;}
.ws92{word-spacing:-18.432000px;}
.ws94{word-spacing:-13.785735px;}
.ws7{word-spacing:-13.210560px;}
.ws1f{word-spacing:-13.142160px;}
.ws8{word-spacing:-12.709560px;}
.ws20{word-spacing:-12.399264px;}
.ws1d{word-spacing:-12.366720px;}
.ws42{word-spacing:-10.188050px;}
.ws5d{word-spacing:-8.412370px;}
.ws22{word-spacing:-8.213789px;}
.ws26{word-spacing:-7.890979px;}
.wsd{word-spacing:-0.060480px;}
.ws1{word-spacing:0.000000px;}
.ws50{word-spacing:48.515769px;}
.ws25{word-spacing:63.555360px;}
.ws43{word-spacing:71.241037px;}
.ws21{word-spacing:81.305280px;}
.ws46{word-spacing:85.868225px;}
.ws53{word-spacing:90.770750px;}
.ws4f{word-spacing:93.260474px;}
.ws28{word-spacing:95.174596px;}
.ws51{word-spacing:98.172490px;}
.ws44{word-spacing:103.172653px;}
.ws52{word-spacing:105.581246px;}
.ws45{word-spacing:105.590737px;}
.ws49{word-spacing:105.610050px;}
.ws4d{word-spacing:106.689514px;}
.ws55{word-spacing:107.898556px;}
.ws4a{word-spacing:115.532052px;}
.ws57{word-spacing:115.718166px;}
.ws19{word-spacing:116.536839px;}
.ws5c{word-spacing:117.001654px;}
.ws54{word-spacing:123.022268px;}
.ws5e{word-spacing:125.555580px;}
.ws16{word-spacing:130.337254px;}
.ws18{word-spacing:133.878958px;}
.ws4e{word-spacing:135.149911px;}
.ws35{word-spacing:136.721642px;}
.ws34{word-spacing:136.835191px;}
.ws47{word-spacing:137.889300px;}
.ws56{word-spacing:140.121269px;}
.ws58{word-spacing:140.475588px;}
.ws15{word-spacing:140.820277px;}
.ws1c{word-spacing:142.181288px;}
.ws5b{word-spacing:142.838539px;}
.ws4c{word-spacing:150.299622px;}
.ws5a{word-spacing:152.737018px;}
.ws4b{word-spacing:152.754928px;}
.ws48{word-spacing:155.211638px;}
.ws1b{word-spacing:156.298955px;}
.ws1e{word-spacing:165.135360px;}
.ws7d{word-spacing:168.131392px;}
.ws82{word-spacing:169.260689px;}
.ws3c{word-spacing:170.030567px;}
.ws41{word-spacing:171.584972px;}
.ws8a{word-spacing:173.536979px;}
.ws70{word-spacing:175.675124px;}
.ws38{word-spacing:176.001100px;}
.ws7c{word-spacing:176.764936px;}
.ws79{word-spacing:180.036939px;}
.ws14{word-spacing:182.934056px;}
.ws2b{word-spacing:185.057056px;}
.ws36{word-spacing:187.963858px;}
.ws7b{word-spacing:188.503993px;}
.ws29{word-spacing:191.020793px;}
.ws1a{word-spacing:193.415915px;}
.ws2f{word-spacing:196.993026px;}
.ws59{word-spacing:198.264806px;}
.ws6c{word-spacing:199.194718px;}
.ws40{word-spacing:199.976793px;}
.ws37{word-spacing:202.933772px;}
.ws2c{word-spacing:202.978852px;}
.ws23{word-spacing:203.533308px;}
.ws2e{word-spacing:205.967318px;}
.ws5f{word-spacing:206.764179px;}
.ws32{word-spacing:207.274634px;}
.ws3b{word-spacing:208.680606px;}
.ws3a{word-spacing:208.738880px;}
.ws61{word-spacing:208.901113px;}
.ws2a{word-spacing:208.942589px;}
.ws67{word-spacing:209.942460px;}
.ws62{word-spacing:209.970969px;}
.ws24{word-spacing:212.925181px;}
.ws73{word-spacing:214.218750px;}
.ws75{word-spacing:214.247259px;}
.ws17{word-spacing:214.472804px;}
.ws2d{word-spacing:214.961601px;}
.ws7f{word-spacing:217.480990px;}
.ws69{word-spacing:218.495040px;}
.ws3e{word-spacing:219.043878px;}
.ws63{word-spacing:219.627331px;}
.ws68{word-spacing:220.661694px;}
.ws6b{word-spacing:222.771330px;}
.ws30{word-spacing:223.980973px;}
.ws60{word-spacing:226.042977px;}
.ws6f{word-spacing:226.058443px;}
.ws27{word-spacing:227.782626px;}
.ws6d{word-spacing:228.195377px;}
.ws88{word-spacing:228.230228px;}
.ws6e{word-spacing:229.214274px;}
.ws84{word-spacing:229.271291px;}
.ws8e{word-spacing:229.338571px;}
.ws39{word-spacing:229.953606px;}
.ws80{word-spacing:232.487418px;}
.ws7a{word-spacing:233.490564px;}
.ws8d{word-spacing:233.547581px;}
.ws81{word-spacing:234.608885px;}
.ws87{word-spacing:235.685726px;}
.ws77{word-spacing:239.962016px;}
.ws33{word-spacing:241.742441px;}
.ws64{word-spacing:243.220905px;}
.ws7e{word-spacing:245.293552px;}
.ws66{word-spacing:245.309018px;}
.ws74{word-spacing:245.405448px;}
.ws89{word-spacing:247.542381px;}
.ws3d{word-spacing:248.092305px;}
.ws85{word-spacing:249.374558px;}
.ws8c{word-spacing:249.582885px;}
.ws72{word-spacing:256.025828px;}
.ws8b{word-spacing:258.130618px;}
.ws86{word-spacing:258.291335px;}
.ws76{word-spacing:259.062778px;}
.ws31{word-spacing:259.989992px;}
.ws83{word-spacing:260.106834px;}
.ws6a{word-spacing:260.267551px;}
.ws71{word-spacing:260.284229px;}
.ws3f{word-spacing:262.941874px;}
.ws65{word-spacing:263.481611px;}
.ws78{word-spacing:272.948747px;}
._27{margin-left:-17.580000px;}
._25{margin-left:-16.308000px;}
._3c{margin-left:-15.002880px;}
._23{margin-left:-13.404000px;}
._28{margin-left:-11.940000px;}
._24{margin-left:-10.644000px;}
._26{margin-left:-8.232000px;}
._22{margin-left:-6.672000px;}
._13{margin-left:-5.112000px;}
._12{margin-left:-3.636000px;}
._7{margin-left:-2.304000px;}
._0{margin-left:-1.188000px;}
._1{width:1.080000px;}
._d{width:2.088000px;}
._2{width:3.096000px;}
._2f{width:4.128000px;}
._a{width:5.184000px;}
._8{width:6.192000px;}
._9{width:7.704000px;}
._18{width:8.772000px;}
._4{width:9.864000px;}
._5{width:10.944000px;}
._6{width:12.840000px;}
._e{width:13.968000px;}
._10{width:14.976000px;}
._f{width:16.776000px;}
._1c{width:17.892000px;}
._1b{width:18.900000px;}
._c{width:21.960000px;}
._b{width:23.508000px;}
._1f{width:24.660000px;}
._1e{width:25.740000px;}
._1d{width:27.000000px;}
._20{width:28.668000px;}
._2e{width:30.420000px;}
._17{width:31.884000px;}
._16{width:33.540000px;}
._15{width:35.376000px;}
._14{width:36.708000px;}
._2d{width:38.376000px;}
._31{width:39.672000px;}
._32{width:40.788000px;}
._34{width:42.192000px;}
._35{width:44.088000px;}
._38{width:45.792000px;}
._3e{width:47.664000px;}
._3f{width:48.744000px;}
._29{width:50.112000px;}
._2a{width:51.408000px;}
._33{width:52.764000px;}
._3b{width:54.864000px;}
._37{width:59.544000px;}
._36{width:60.840000px;}
._2b{width:62.784000px;}
._3d{width:64.092000px;}
._2c{width:65.100000px;}
._30{width:66.708000px;}
._42{width:69.399688px;}
._39{width:70.992000px;}
._3a{width:73.032000px;}
._115{width:75.356032px;}
._19{width:77.832000px;}
._d5{width:79.414031px;}
._1a{width:81.096000px;}
._43{width:82.315503px;}
._d6{width:84.478120px;}
._44{width:85.864267px;}
._de{width:87.898059px;}
._da{width:89.535505px;}
._e3{width:90.648373px;}
._db{width:92.043795px;}
._b1{width:94.024337px;}
._d4{width:95.092124px;}
._d9{width:96.211494px;}
._4f{width:97.956672px;}
._d2{width:100.055804px;}
._d7{width:101.697825px;}
._e2{width:102.859476px;}
._c5{width:103.965567px;}
._ae{width:106.261409px;}
._b3{width:107.469486px;}
._d8{width:108.522820px;}
._41{width:110.304000px;}
._b5{width:112.564899px;}
._40{width:114.348000px;}
._af{width:115.808261px;}
._d3{width:117.092671px;}
._aa{width:118.118208px;}
._b8{width:119.130396px;}
._114{width:120.149961px;}
._b2{width:121.889050px;}
._ab{width:124.259425px;}
._b4{width:125.381486px;}
._51{width:127.416944px;}
._e4{width:128.901704px;}
._a9{width:130.256747px;}
._dd{width:131.260105px;}
._c2{width:133.429549px;}
._80{width:134.438606px;}
._b9{width:136.926801px;}
._e5{width:138.444388px;}
._7f{width:139.710026px;}
._e8{width:140.756599px;}
._a8{width:142.107495px;}
._b7{width:143.289642px;}
._116{width:144.582995px;}
._c6{width:145.656445px;}
._ad{width:148.000393px;}
._b6{width:149.286964px;}
._c8{width:150.470735px;}
._45{width:152.093352px;}
._df{width:153.262722px;}
._dc{width:154.967182px;}
._11a{width:156.084269px;}
._c4{width:157.397324px;}
._ac{width:159.047908px;}
._c3{width:160.347489px;}
._bb{width:161.372729px;}
._b0{width:162.892746px;}
._e1{width:163.934270px;}
._58{width:165.011973px;}
._c9{width:166.821840px;}
._54{width:168.078622px;}
._cc{width:169.242766px;}
._bd{width:170.288929px;}
._e0{width:172.090070px;}
._4a{width:174.031674px;}
._ba{width:175.991133px;}
._65{width:177.748919px;}
._c7{width:180.598998px;}
._55{width:182.551833px;}
._4b{width:184.454499px;}
._83{width:185.707704px;}
._9a{width:187.177461px;}
._ca{width:188.177828px;}
._52{width:189.286705px;}
._5d{width:191.453853px;}
._90{width:193.176452px;}
._4d{width:194.381157px;}
._bf{width:195.836576px;}
._cd{width:197.009466px;}
._5e{width:198.953830px;}
._c0{width:200.384145px;}
._48{width:201.394629px;}
._63{width:203.757628px;}
._89{width:205.033170px;}
._c1{width:206.903130px;}
._bc{width:208.940994px;}
._e7{width:210.108353px;}
._5a{width:211.761312px;}
._74{width:213.491509px;}
._4c{width:215.426575px;}
._e6{width:217.551903px;}
._88{width:218.875634px;}
._4e{width:220.746240px;}
._81{width:223.622687px;}
._60{width:225.579380px;}
._d1{width:226.847173px;}
._9d{width:229.427094px;}
._47{width:231.062559px;}
._ee{width:234.325995px;}
._8d{width:235.673605px;}
._118{width:238.179751px;}
._49{width:240.613352px;}
._8c{width:243.048715px;}
._be{width:244.159453px;}
._cb{width:245.261811px;}
._d0{width:246.441623px;}
._7a{width:247.764519px;}
._cf{width:253.221215px;}
._10d{width:255.297666px;}
._f1{width:256.438961px;}
._12b{width:261.422287px;}
._ce{width:262.973189px;}
._119{width:266.930232px;}
._117{width:267.972877px;}
._f3{width:269.269968px;}
._107{width:275.966893px;}
._a4{width:279.895169px;}
._f5{width:281.834152px;}
._ef{width:288.108598px;}
._109{width:289.902211px;}
._eb{width:291.341052px;}
._113{width:293.723731px;}
._130{width:295.426885px;}
._ed{width:300.650760px;}
._f6{width:303.554653px;}
._fc{width:310.157660px;}
._f8{width:312.570008px;}
._104{width:316.800494px;}
._10f{width:327.341885px;}
._f7{width:340.136154px;}
._fa{width:341.597791px;}
._110{width:347.374727px;}
._46{width:358.707283px;}
._124{width:406.920908px;}
._ff{width:438.076404px;}
._106{width:481.554812px;}
._a3{width:558.052117px;}
._120{width:579.702547px;}
._f4{width:600.712353px;}
._11f{width:606.593640px;}
._f2{width:612.936366px;}
._9b{width:621.641422px;}
._a2{width:663.962501px;}
._79{width:670.637562px;}
._112{width:695.316326px;}
._133{width:725.150005px;}
._92{width:730.871445px;}
._6f{width:751.280977px;}
._7e{width:753.652987px;}
._98{width:762.734590px;}
._10b{width:782.810595px;}
._78{width:787.049235px;}
._50{width:820.741190px;}
._e9{width:836.465308px;}
._8a{width:864.416093px;}
._67{width:865.519128px;}
._87{width:873.988230px;}
._131{width:878.764480px;}
._6d{width:898.243285px;}
._108{width:924.592864px;}
._a7{width:925.833918px;}
._111{width:927.370903px;}
._12a{width:944.042206px;}
._132{width:956.409445px;}
._10e{width:965.491345px;}
._5c{width:990.015418px;}
._12f{width:994.054573px;}
._5b{width:999.852649px;}
._105{width:1059.652073px;}
._7d{width:1063.446045px;}
._99{width:1090.350764px;}
._a5{width:1093.073832px;}
._129{width:1095.731469px;}
._a6{width:1097.304502px;}
._10c{width:1102.881589px;}
._f0{width:1109.015113px;}
._a1{width:1122.753355px;}
._71{width:1129.944913px;}
._11e{width:1144.645049px;}
._12d{width:1160.352372px;}
._11d{width:1184.745877px;}
._f9{width:1200.645066px;}
._97{width:1203.997083px;}
._103{width:1209.587039px;}
._86{width:1215.833523px;}
._85{width:1225.104956px;}
._9e{width:1226.626465px;}
._7b{width:1228.057688px;}
._6e{width:1239.306324px;}
._7c{width:1240.744744px;}
._101{width:1248.426953px;}
._122{width:1255.878466px;}
._77{width:1258.533437px;}
._a0{width:1271.174949px;}
._128{width:1275.194396px;}
._ec{width:1278.658776px;}
._8e{width:1288.784518px;}
._fd{width:1295.365417px;}
._fb{width:1311.073490px;}
._96{width:1315.732122px;}
._fe{width:1317.002690px;}
._126{width:1318.253781px;}
._84{width:1333.615589px;}
._6c{width:1342.028106px;}
._94{width:1343.558542px;}
._ea{width:1351.893410px;}
._8f{width:1357.290471px;}
._10a{width:1360.943857px;}
._100{width:1363.430737px;}
._72{width:1368.024189px;}
._59{width:1370.179166px;}
._76{width:1381.902994px;}
._73{width:1384.275956px;}
._57{width:1385.818186px;}
._123{width:1388.762830px;}
._93{width:1391.609262px;}
._91{width:1394.608078px;}
._82{width:1399.051979px;}
._9f{width:1400.783816px;}
._125{width:1404.852565px;}
._9c{width:1412.405562px;}
._12e{width:1413.507513px;}
._8b{width:1422.466394px;}
._3{width:1425.012000px;}
._102{width:1429.466185px;}
._11c{width:1431.438446px;}
._12c{width:1435.343658px;}
._11b{width:1445.994912px;}
._135{width:1449.531734px;}
._61{width:1451.210487px;}
._121{width:1454.040556px;}
._6b{width:1459.717298px;}
._95{width:1464.155196px;}
._56{width:1490.629843px;}
._69{width:1496.115109px;}
._64{width:1514.104205px;}
._127{width:1515.287425px;}
._62{width:1523.633458px;}
._134{width:1531.250589px;}
._66{width:1541.890496px;}
._68{width:1550.831182px;}
._53{width:1558.510133px;}
._75{width:1563.003173px;}
._70{width:1574.917734px;}
._5f{width:1587.957929px;}
._6a{width:1627.755594px;}
._11{width:1952.808000px;}
._21{width:2201.367840px;}
.fc7{color:transparent;}
.fc3{color:rgb(47,84,150);}
.fc2{color:rgb(153,0,51);}
.fc8{color:rgb(89,89,89);}
.fc6{color:rgb(33,33,33);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(154,0,64);}
.fs13{font-size:25.729011px;}
.fs14{font-size:27.867156px;}
.fs12{font-size:32.143446px;}
.fse{font-size:34.915835px;}
.fsd{font-size:36.344198px;}
.fs10{font-size:37.222877px;}
.fsf{font-size:45.079868px;}
.fs11{font-size:47.220394px;}
.fs6{font-size:47.520000px;}
.fs15{font-size:49.588974px;}
.fsb{font-size:52.875154px;}
.fsa{font-size:54.720000px;}
.fsc{font-size:54.864000px;}
.fs8{font-size:60.480000px;}
.fs7{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs5{font-size:83.520000px;}
.fs4{font-size:96.480000px;}
.fs0{font-size:108.000000px;}
.fs1{font-size:155.520000px;}
.fs2{font-size:288.144000px;}
.y0{bottom:0.000000px;}
.y2d4{bottom:2.476024px;}
.y2d6{bottom:2.476026px;}
.y33f{bottom:2.672710px;}
.y97{bottom:2.880000px;}
.y268{bottom:2.922583px;}
.y29d{bottom:2.998661px;}
.y217{bottom:3.042142px;}
.y2d2{bottom:3.088179px;}
.y29b{bottom:3.740030px;}
.y403{bottom:3.866039px;}
.y312{bottom:3.924109px;}
.y1bf{bottom:4.425681px;}
.y9a{bottom:8.280000px;}
.y95{bottom:9.720000px;}
.y1de{bottom:12.954000px;}
.y33e{bottom:13.381324px;}
.y267{bottom:14.535543px;}
.y216{bottom:15.130174px;}
.y2d1{bottom:15.489175px;}
.y1dc{bottom:17.250000px;}
.y1f0{bottom:17.280000px;}
.y1cc{bottom:17.490000px;}
.y1cf{bottom:18.000000px;}
.y29a{bottom:18.758623px;}
.y311{bottom:19.655620px;}
.y402{bottom:20.129470px;}
.y1be{bottom:22.011561px;}
.y33d{bottom:24.089867px;}
.y266{bottom:26.167703px;}
.y215{bottom:27.238191px;}
.y2d0{bottom:27.889923px;}
.y98{bottom:28.080000px;}
.y99{bottom:28.440000px;}
.y1ce{bottom:33.480000px;}
.y299{bottom:33.776916px;}
.y33c{bottom:34.798410px;}
.y310{bottom:35.387026px;}
.y401{bottom:36.392798px;}
.y265{bottom:37.799864px;}
.y214{bottom:39.346208px;}
.y1bd{bottom:39.626907px;}
.y2cf{bottom:40.270037px;}
.y235{bottom:43.665000px;}
.y33b{bottom:45.506953px;}
.y1cb{bottom:47.370000px;}
.y298{bottom:48.770220px;}
.y264{bottom:49.432024px;}
.y30f{bottom:51.118433px;}
.y213{bottom:51.454225px;}
.y231{bottom:51.735000px;}
.y400{bottom:52.656125px;}
.y2ce{bottom:52.670784px;}
.y96{bottom:54.720000px;}
.y233{bottom:55.725000px;}
.y33a{bottom:56.215495px;}
.y242{bottom:56.415000px;}
.y80{bottom:56.880000px;}
.y1bc{bottom:57.242253px;}
.y227{bottom:59.655000px;}
.y263{bottom:61.064184px;}
.y212{bottom:63.562242px;}
.y297{bottom:63.788513px;}
.y1c3{bottom:64.950000px;}
.y2cd{bottom:65.071533px;}
.y236{bottom:65.490000px;}
.y30e{bottom:66.849839px;}
.y339{bottom:66.924038px;}
.y22e{bottom:67.425000px;}
.y22f{bottom:68.865000px;}
.y3ff{bottom:68.919453px;}
.y237{bottom:69.945000px;}
.y244{bottom:70.740000px;}
.y240{bottom:71.310000px;}
.y262{bottom:72.696344px;}
.y230{bottom:73.650000px;}
.y1bb{bottom:74.857599px;}
.y211{bottom:75.670259px;}
.y22d{bottom:76.530000px;}
.y23a{bottom:76.935000px;}
.y2cc{bottom:77.472280px;}
.y338{bottom:77.631868px;}
.y296{bottom:78.806806px;}
.y23e{bottom:79.890000px;}
.y229{bottom:80.460000px;}
.y23f{bottom:81.750000px;}
.y23d{bottom:82.365000px;}
.y30d{bottom:82.581245px;}
.y23b{bottom:82.650000px;}
.y226{bottom:83.520000px;}
.y261{bottom:84.324634px;}
.y239{bottom:84.495000px;}
.y1c4{bottom:84.990000px;}
.y3fe{bottom:85.182781px;}
.y228{bottom:86.610000px;}
.y23c{bottom:87.120000px;}
.y210{bottom:87.774246px;}
.y241{bottom:88.200000px;}
.y337{bottom:88.322593px;}
.y22c{bottom:88.410000px;}
.y2cb{bottom:89.871377px;}
.y1ba{bottom:92.472944px;}
.y295{bottom:93.825099px;}
.y260{bottom:95.960665px;}
.y30c{bottom:98.312652px;}
.y336{bottom:99.034700px;}
.y20f{bottom:99.886293px;}
.y3fd{bottom:101.446108px;}
.y2ca{bottom:102.276251px;}
.y22a{bottom:102.570000px;}
.y238{bottom:104.550000px;}
.y1c5{bottom:105.045000px;}
.y234{bottom:106.635000px;}
.y25f{bottom:107.573470px;}
.y294{bottom:108.841393px;}
.y335{bottom:109.739679px;}
.y2a7{bottom:110.556000px;}
.y20e{bottom:111.974163px;}
.ydd{bottom:112.356000px;}
.y3a0{bottom:113.436000px;}
.y30b{bottom:114.040917px;}
.y2c9{bottom:114.672872px;}
.y118{bottom:114.876000px;}
.y386{bottom:117.036000px;}
.y3fc{bottom:117.678507px;}
.y1c1{bottom:119.196000px;}
.y25e{bottom:119.201760px;}
.y3a9{bottom:119.556000px;}
.y15b{bottom:120.276000px;}
.y334{bottom:120.451785px;}
.y354{bottom:122.796000px;}
.y21d{bottom:123.156000px;}
.y243{bottom:123.735000px;}
.y293{bottom:123.864684px;}
.y20d{bottom:124.078151px;}
.y2a6{bottom:124.236000px;}
.y1c6{bottom:125.130000px;}
.y3b0{bottom:125.316000px;}
.y42{bottom:126.756000px;}
.y2c8{bottom:127.077747px;}
.y34e{bottom:127.116000px;}
.y3df{bottom:128.916000px;}
.y30a{bottom:129.746148px;}
.y19f{bottom:130.716000px;}
.y25d{bottom:130.837791px;}
.y333{bottom:131.156764px;}
.ybb{bottom:131.436000px;}
.y12d{bottom:131.796000px;}
.y1a{bottom:132.876000px;}
.y39b{bottom:133.596000px;}
.y3fb{bottom:133.946990px;}
.y102{bottom:133.956000px;}
.y39f{bottom:134.316000px;}
.y1c0{bottom:134.676000px;}
.y20c{bottom:136.190197px;}
.y1dd{bottom:137.556000px;}
.y2a5{bottom:138.276000px;}
.y18e{bottom:138.636000px;}
.y292{bottom:138.877979px;}
.y278{bottom:138.996000px;}
.y2c7{bottom:139.457861px;}
.y2ef{bottom:140.436000px;}
.y332{bottom:141.868871px;}
.y25c{bottom:142.466080px;}
.ydc{bottom:143.316000px;}
.y3b6{bottom:143.676000px;}
.y1c7{bottom:145.185000px;}
.y309{bottom:145.482789px;}
.y117{bottom:145.836000px;}
.y3af{bottom:146.196000px;}
.y34d{bottom:147.636000px;}
.y385{bottom:147.996000px;}
.y20b{bottom:148.294185px;}
.y3de{bottom:149.796000px;}
.y3fa{bottom:150.205163px;}
.y15a{bottom:151.230000px;}
.y2c6{bottom:151.854482px;}
.y2a4{bottom:151.950000px;}
.y331{bottom:152.573850px;}
.y3b3{bottom:153.390000px;}
.y353{bottom:153.750000px;}
.y291{bottom:153.901270px;}
.y25b{bottom:154.102111px;}
.y21c{bottom:154.470000px;}
.y39e{bottom:154.830000px;}
.y1d1{bottom:155.415000px;}
.y10f{bottom:156.270000px;}
.y170{bottom:156.990000px;}
.y41{bottom:157.710000px;}
.y1b9{bottom:157.883495px;}
.y31a{bottom:159.510000px;}
.y20a{bottom:160.406231px;}
.y3a8{bottom:160.950000px;}
.y308{bottom:161.208961px;}
.y19e{bottom:161.670000px;}
.yba{bottom:162.390000px;}
.y12c{bottom:162.750000px;}
.y330{bottom:163.285956px;}
.y19{bottom:163.830000px;}
.y3b5{bottom:164.190000px;}
.y2c5{bottom:164.259356px;}
.y101{bottom:164.910000px;}
.y1c8{bottom:165.240000px;}
.y2a3{bottom:165.630000px;}
.y25a{bottom:165.730401px;}
.y3f9{bottom:166.473645px;}
.y3ae{bottom:166.710000px;}
.y290{bottom:168.894574px;}
.y18d{bottom:169.950000px;}
.y3dd{bottom:170.310000px;}
.y1d2{bottom:171.570000px;}
.y2ee{bottom:171.750000px;}
.y209{bottom:172.510219px;}
.y1d0{bottom:173.880000px;}
.y3b2{bottom:173.910000px;}
.y32f{bottom:173.976681px;}
.ydb{bottom:174.630000px;}
.y39d{bottom:175.710000px;}
.y415{bottom:176.430000px;}
.y2c4{bottom:176.655977px;}
.y116{bottom:176.790000px;}
.y307{bottom:176.945602px;}
.y259{bottom:177.366432px;}
.y384{bottom:178.950000px;}
.y2a2{bottom:179.670000px;}
.y34c{bottom:181.830000px;}
.y159{bottom:182.190000px;}
.y3f8{bottom:182.731818px;}
.y1e5{bottom:183.705000px;}
.y28f{bottom:183.907869px;}
.y145{bottom:184.350000px;}
.y208{bottom:184.622265px;}
.y32e{bottom:184.681661px;}
.y352{bottom:185.070000px;}
.y1c9{bottom:185.295000px;}
.y21b{bottom:185.430000px;}
.y10e{bottom:187.230000px;}
.y3ad{bottom:187.590000px;}
.y1d3{bottom:187.710000px;}
.y16f{bottom:188.310000px;}
.y40{bottom:188.670000px;}
.y258{bottom:188.994721px;}
.y2c3{bottom:189.060852px;}
.y36c{bottom:190.110000px;}
.y319{bottom:190.470000px;}
.y3dc{bottom:191.190000px;}
.y306{bottom:192.671773px;}
.y19d{bottom:192.990000px;}
.yb9{bottom:193.350000px;}
.y12b{bottom:193.710000px;}
.y18{bottom:194.430000px;}
.y232{bottom:194.685000px;}
.y22b{bottom:194.730000px;}
.yf1{bottom:194.790000px;}
.y32d{bottom:195.393767px;}
.y100{bottom:195.870000px;}
.y39c{bottom:196.230000px;}
.y207{bottom:196.726253px;}
.y1e6{bottom:197.280000px;}
.y414{bottom:197.310000px;}
.y28e{bottom:198.931160px;}
.y3f7{bottom:199.000301px;}
.y21f{bottom:199.230000px;}
.y257{bottom:200.607527px;}
.y18c{bottom:200.910000px;}
.y2c2{bottom:201.457474px;}
.y3a7{bottom:202.350000px;}
.y2ed{bottom:202.710000px;}
.y1d4{bottom:203.865000px;}
.y3ac{bottom:204.510000px;}
.y1ca{bottom:205.350000px;}
.yda{bottom:205.590000px;}
.y32c{bottom:206.098746px;}
.y2a1{bottom:207.030000px;}
.y115{bottom:208.110000px;}
.y305{bottom:208.408415px;}
.y206{bottom:208.814124px;}
.y34b{bottom:209.550000px;}
.y1e7{bottom:210.810000px;}
.y3b1{bottom:211.755000px;}
.y256{bottom:212.243558px;}
.y158{bottom:213.195000px;}
.y2c1{bottom:213.862349px;}
.y28d{bottom:213.944455px;}
.y3f6{bottom:215.237854px;}
.y144{bottom:215.715000px;}
.y351{bottom:216.075000px;}
.y21a{bottom:216.435000px;}
.y32b{bottom:216.810853px;}
.y5b{bottom:217.155000px;}
.y413{bottom:217.875000px;}
.y10d{bottom:218.235000px;}
.y7e{bottom:218.595000px;}
.y16e{bottom:219.315000px;}
.y3f{bottom:219.675000px;}
.y1d5{bottom:220.035000px;}
.y2a0{bottom:220.755000px;}
.y205{bottom:220.926170px;}
.y36b{bottom:221.115000px;}
.y318{bottom:221.835000px;}
.y383{bottom:222.195000px;}
.y3b4{bottom:222.555000px;}
.y34a{bottom:223.275000px;}
.y255{bottom:223.871847px;}
.y19c{bottom:223.995000px;}
.y304{bottom:224.134586px;}
.yb8{bottom:224.355000px;}
.y1e8{bottom:224.385000px;}
.y220{bottom:224.490000px;}
.y12a{bottom:224.715000px;}
.yf0{bottom:225.795000px;}
.y2c0{bottom:226.242463px;}
.yff{bottom:226.875000px;}
.y32a{bottom:227.515832px;}
.y3c5{bottom:228.675000px;}
.y28c{bottom:228.967746px;}
.y3f5{bottom:231.496027px;}
.y18b{bottom:231.915000px;}
.y277{bottom:232.275000px;}
.y3db{bottom:232.635000px;}
.y204{bottom:233.030158px;}
.y2ec{bottom:233.715000px;}
.y254{bottom:235.507878px;}
.y1d6{bottom:236.190000px;}
.yd9{bottom:236.595000px;}
.y349{bottom:237.315000px;}
.y5a{bottom:237.675000px;}
.y1e9{bottom:237.930000px;}
.y329{bottom:238.227938px;}
.y2bf{bottom:238.639083px;}
.y412{bottom:238.755000px;}
.y7d{bottom:239.115000px;}
.y303{bottom:239.871227px;}
.y29f{bottom:242.355000px;}
.y27a{bottom:242.475000px;}
.y28b{bottom:243.981041px;}
.y157{bottom:244.515000px;}
.y203{bottom:245.142204px;}
.y143{bottom:246.675000px;}
.y350{bottom:247.035000px;}
.y253{bottom:247.136168px;}
.y3f4{bottom:247.764510px;}
.y328{bottom:248.932917px;}
.y10c{bottom:249.555000px;}
.y221{bottom:249.810000px;}
.y16d{bottom:250.275000px;}
.y3e{bottom:250.995000px;}
.y2be{bottom:251.043958px;}
.y219{bottom:251.355000px;}
.y1ea{bottom:251.490000px;}
.y36a{bottom:252.075000px;}
.y1d7{bottom:252.360000px;}
.y317{bottom:252.795000px;}
.y382{bottom:253.155000px;}
.y19b{bottom:254.955000px;}
.y302{bottom:255.597398px;}
.yb7{bottom:255.675000px;}
.y17{bottom:256.035000px;}
.yef{bottom:256.755000px;}
.y202{bottom:257.246192px;}
.y39a{bottom:257.835000px;}
.yfe{bottom:258.195000px;}
.y59{bottom:258.555000px;}
.y252{bottom:258.772199px;}
.y28a{bottom:259.004332px;}
.y411{bottom:259.275000px;}
.y327{bottom:259.623642px;}
.y7c{bottom:259.635000px;}
.y18a{bottom:262.875000px;}
.y276{bottom:263.235000px;}
.y2bd{bottom:263.440579px;}
.y3f3{bottom:264.022683px;}
.y348{bottom:264.675000px;}
.y1eb{bottom:265.035000px;}
.y218{bottom:266.835000px;}
.yd8{bottom:267.555000px;}
.y1d8{bottom:268.530000px;}
.y2eb{bottom:268.995000px;}
.y201{bottom:269.358238px;}
.y114{bottom:270.075000px;}
.y326{bottom:270.335749px;}
.y251{bottom:270.400488px;}
.y301{bottom:271.334040px;}
.y289{bottom:273.997636px;}
.y3da{bottom:274.035000px;}
.y222{bottom:275.070000px;}
.y156{bottom:275.475000px;}
.y2bc{bottom:275.845454px;}
.y142{bottom:277.635000px;}
.y34f{bottom:277.995000px;}
.y1ec{bottom:278.610000px;}
.y347{bottom:278.715000px;}
.y58{bottom:279.075000px;}
.y1f5{bottom:279.532870px;}
.y410{bottom:280.155000px;}
.y3f2{bottom:280.291165px;}
.y10b{bottom:280.515000px;}
.y7b{bottom:280.875000px;}
.y325{bottom:281.040728px;}
.y16c{bottom:281.235000px;}
.y200{bottom:281.462226px;}
.y3d{bottom:281.955000px;}
.y250{bottom:282.013294px;}
.y1b8{bottom:282.315000px;}
.y369{bottom:283.035000px;}
.y316{bottom:283.755000px;}
.y381{bottom:284.115000px;}
.y1d9{bottom:284.685000px;}
.y19a{bottom:285.915000px;}
.yb6{bottom:286.635000px;}
.y16{bottom:286.995000px;}
.y300{bottom:287.060211px;}
.y2ea{bottom:287.355000px;}
.yee{bottom:288.075000px;}
.y2bb{bottom:288.242075px;}
.y288{bottom:289.010932px;}
.yfd{bottom:289.155000px;}
.y3c4{bottom:290.595000px;}
.y324{bottom:291.752834px;}
.y1ed{bottom:292.140000px;}
.y346{bottom:292.395000px;}
.y1ff{bottom:293.550096px;}
.y24f{bottom:293.649325px;}
.y189{bottom:294.195000px;}
.y3d9{bottom:294.555000px;}
.y3f1{bottom:296.549338px;}
.yd7{bottom:298.875000px;}
.y57{bottom:299.955000px;}
.y223{bottom:300.345000px;}
.y2ba{bottom:300.646949px;}
.y40f{bottom:300.675000px;}
.y1da{bottom:300.810000px;}
.y113{bottom:301.035000px;}
.y7a{bottom:301.395000px;}
.y323{bottom:302.457813px;}
.y2ff{bottom:302.765442px;}
.y287{bottom:304.034222px;}
.y24e{bottom:305.277614px;}
.y1fe{bottom:305.662143px;}
.y1ee{bottom:305.715000px;}
.y345{bottom:306.075000px;}
.y155{bottom:306.435000px;}
.y141{bottom:308.595000px;}
.y1b7{bottom:309.315000px;}
.y10a{bottom:311.475000px;}
.y16b{bottom:312.195000px;}
.y3f0{bottom:312.817821px;}
.y3c{bottom:312.915000px;}
.y2b9{bottom:313.043570px;}
.y322{bottom:313.169920px;}
.y368{bottom:314.355000px;}
.y2e9{bottom:314.715000px;}
.y380{bottom:315.075000px;}
.y3d8{bottom:315.435000px;}
.y24d{bottom:316.913645px;}
.y1db{bottom:316.980000px;}
.y199{bottom:317.235000px;}
.yb5{bottom:317.595000px;}
.y1fd{bottom:317.766130px;}
.y15{bottom:317.955000px;}
.y2fe{bottom:318.502083px;}
.yed{bottom:319.035000px;}
.y286{bottom:319.047518px;}
.y1ef{bottom:319.245000px;}
.yfc{bottom:320.115000px;}
.y56{bottom:320.475000px;}
.y40e{bottom:321.555000px;}
.y79{bottom:322.275000px;}
.y321{bottom:323.874899px;}
.y188{bottom:325.155000px;}
.y2b8{bottom:325.423684px;}
.y224{bottom:325.650000px;}
.y24c{bottom:328.541935px;}
.y2e8{bottom:328.755000px;}
.y3ef{bottom:329.055374px;}
.yd6{bottom:329.835000px;}
.y1fc{bottom:329.878177px;}
.y112{bottom:331.995000px;}
.y1e3{bottom:332.355000px;}
.y344{bottom:333.825000px;}
.y285{bottom:334.070808px;}
.y2fd{bottom:334.228255px;}
.y320{bottom:334.587005px;}
.y3d7{bottom:335.985000px;}
.y154{bottom:337.425000px;}
.y2b7{bottom:337.828559px;}
.y140{bottom:339.585000px;}
.y24b{bottom:340.177966px;}
.y1b6{bottom:340.305000px;}
.y55{bottom:341.385000px;}
.y1fb{bottom:341.982164px;}
.y40d{bottom:342.105000px;}
.y109{bottom:342.465000px;}
.y78{bottom:342.825000px;}
.y16a{bottom:343.545000px;}
.y3b{bottom:343.905000px;}
.y31f{bottom:345.277730px;}
.y3ee{bottom:345.313547px;}
.y367{bottom:345.345000px;}
.y315{bottom:346.065000px;}
.y37f{bottom:346.425000px;}
.y343{bottom:347.505000px;}
.y198{bottom:348.225000px;}
.yb4{bottom:348.585000px;}
.y14{bottom:348.945000px;}
.y284{bottom:349.084104px;}
.y2fc{bottom:349.964896px;}
.yec{bottom:350.025000px;}
.y2b6{bottom:350.225180px;}
.y225{bottom:350.925000px;}
.yfb{bottom:351.105000px;}
.y24a{bottom:351.806255px;}
.y3c3{bottom:352.905000px;}
.y1fa{bottom:354.094211px;}
.y31e{bottom:355.982710px;}
.y187{bottom:356.145000px;}
.y275{bottom:356.505000px;}
.y3d6{bottom:356.865000px;}
.y153{bottom:358.665000px;}
.yd5{bottom:360.825000px;}
.y342{bottom:361.185000px;}
.y3ed{bottom:361.582030px;}
.y54{bottom:361.905000px;}
.y2b5{bottom:362.630055px;}
.y40c{bottom:362.985000px;}
.y111{bottom:363.345000px;}
.y249{bottom:363.442286px;}
.y77{bottom:363.705000px;}
.y283{bottom:364.107394px;}
.y2fb{bottom:365.691067px;}
.y1f9{bottom:366.198199px;}
.y2e7{bottom:370.185000px;}
.y13f{bottom:370.905000px;}
.y1b5{bottom:371.265000px;}
.y108{bottom:373.425000px;}
.y169{bottom:374.505000px;}
.y2b4{bottom:375.026676px;}
.y248{bottom:375.055092px;}
.y3a{bottom:375.225000px;}
.y366{bottom:376.305000px;}
.y314{bottom:377.025000px;}
.y37e{bottom:377.385000px;}
.y3ec{bottom:377.840203px;}
.y1f8{bottom:378.310245px;}
.y282{bottom:379.120690px;}
.y197{bottom:379.185000px;}
.yb3{bottom:379.905000px;}
.y13{bottom:380.265000px;}
.yeb{bottom:380.985000px;}
.y2fa{bottom:381.427709px;}
.y399{bottom:382.065000px;}
.yfa{bottom:382.425000px;}
.y40b{bottom:383.505000px;}
.y2e6{bottom:383.865000px;}
.y76{bottom:384.225000px;}
.y247{bottom:386.683381px;}
.y186{bottom:387.105000px;}
.y2b3{bottom:387.431550px;}
.y274{bottom:387.465000px;}
.y341{bottom:388.905000px;}
.y1f7{bottom:390.398115px;}
.yd4{bottom:393.225000px;}
.y3eb{bottom:394.108685px;}
.y281{bottom:394.113994px;}
.y110{bottom:394.305000px;}
.y2f9{bottom:397.153880px;}
.y2e5{bottom:397.545000px;}
.y3d5{bottom:398.265000px;}
.y2b2{bottom:399.828174px;}
.y13e{bottom:401.865000px;}
.y1b4{bottom:402.225000px;}
.y1f6{bottom:402.502103px;}
.y340{bottom:402.585000px;}
.y313{bottom:404.025000px;}
.y2f1{bottom:404.100000px;}
.y40a{bottom:404.385000px;}
.y107{bottom:404.745000px;}
.y75{bottom:405.105000px;}
.y168{bottom:405.465000px;}
.y39{bottom:406.185000px;}
.y365{bottom:407.265000px;}
.y37d{bottom:408.345000px;}
.y280{bottom:409.137285px;}
.y196{bottom:410.145000px;}
.y3ea{bottom:410.366858px;}
.yb2{bottom:410.865000px;}
.y12{bottom:411.225000px;}
.y2e4{bottom:411.585000px;}
.y152{bottom:411.945000px;}
.yea{bottom:412.305000px;}
.y2f8{bottom:412.890521px;}
.yf9{bottom:413.385000px;}
.y53{bottom:414.105000px;}
.y31d{bottom:414.154176px;}
.y3c2{bottom:414.825000px;}
.y185{bottom:418.425000px;}
.y3d4{bottom:418.785000px;}
.y27f{bottom:424.150580px;}
.yd3{bottom:424.185000px;}
.y409{bottom:424.905000px;}
.y106{bottom:425.265000px;}
.y74{bottom:425.625000px;}
.y3e9{bottom:426.635340px;}
.y2f7{bottom:428.616693px;}
.y1b3{bottom:433.185000px;}
.y3c1{bottom:435.705000px;}
.y167{bottom:436.425000px;}
.y38{bottom:437.145000px;}
.y364{bottom:438.585000px;}
.y2e3{bottom:438.945000px;}
.y27e{bottom:439.173871px;}
.y184{bottom:439.305000px;}
.y37c{bottom:439.665000px;}
.y195{bottom:441.465000px;}
.yb1{bottom:441.825000px;}
.y11{bottom:442.185000px;}
.y3e8{bottom:442.872894px;}
.ye9{bottom:443.265000px;}
.yf8{bottom:444.345000px;}
.y2f6{bottom:444.353334px;}
.y52{bottom:445.065000px;}
.y408{bottom:445.785000px;}
.y73{bottom:446.505000px;}
.y273{bottom:449.385000px;}
.y2e2{bottom:452.985000px;}
.y13d{bottom:454.065000px;}
.y27d{bottom:454.187166px;}
.yd2{bottom:455.145000px;}
.y105{bottom:456.225000px;}
.y1e2{bottom:456.585000px;}
.y3e7{bottom:459.131067px;}
.y183{bottom:459.870000px;}
.y2f5{bottom:460.079505px;}
.y3d3{bottom:460.230000px;}
.y1b2{bottom:464.550000px;}
.y94{bottom:465.630000px;}
.y407{bottom:466.350000px;}
.y2e1{bottom:466.710000px;}
.y166{bottom:467.790000px;}
.y37{bottom:468.150000px;}
.y27c{bottom:469.210457px;}
.y363{bottom:469.590000px;}
.y37b{bottom:471.750000px;}
.y194{bottom:472.470000px;}
.yb0{bottom:472.830000px;}
.y10{bottom:473.190000px;}
.ye8{bottom:474.270000px;}
.yf7{bottom:475.350000px;}
.y3e6{bottom:475.399550px;}
.y2f4{bottom:475.784736px;}
.y51{bottom:476.070000px;}
.y72{bottom:477.150000px;}
.y2e0{bottom:480.390000px;}
.y272{bottom:480.750000px;}
.y3d2{bottom:481.110000px;}
.y27b{bottom:484.223752px;}
.yd1{bottom:486.150000px;}
.y13c{bottom:486.510000px;}
.y406{bottom:487.230000px;}
.y104{bottom:487.590000px;}
.y2f3{bottom:491.521378px;}
.y3e5{bottom:491.657722px;}
.y2df{bottom:494.430000px;}
.y1b1{bottom:495.510000px;}
.y93{bottom:496.590000px;}
.y3c0{bottom:497.670000px;}
.y165{bottom:498.750000px;}
.y36{bottom:499.470000px;}
.y362{bottom:500.550000px;}
.y3d1{bottom:501.630000px;}
.y37a{bottom:502.710000px;}
.y193{bottom:503.430000px;}
.yaf{bottom:504.150000px;}
.yf{bottom:504.510000px;}
.ye7{bottom:505.230000px;}
.y398{bottom:506.310000px;}
.y2f2{bottom:507.247549px;}
.y50{bottom:507.390000px;}
.y405{bottom:507.750000px;}
.y3e4{bottom:507.926205px;}
.y71{bottom:508.110000px;}
.y271{bottom:511.710000px;}
.yd0{bottom:517.470000px;}
.yf6{bottom:518.550000px;}
.y3d0{bottom:522.510000px;}
.y182{bottom:523.590000px;}
.y3e3{bottom:524.184378px;}
.y92{bottom:525.750000px;}
.y1b0{bottom:526.470000px;}
.y35{bottom:528.270000px;}
.y164{bottom:529.710000px;}
.y2b1{bottom:529.725000px;}
.y361{bottom:531.510000px;}
.y379{bottom:534.030000px;}
.y192{bottom:534.390000px;}
.yae{bottom:535.110000px;}
.y129{bottom:535.470000px;}
.ye6{bottom:536.190000px;}
.y397{bottom:537.630000px;}
.y4f{bottom:538.350000px;}
.y70{bottom:539.070000px;}
.y3e2{bottom:540.421932px;}
.y270{bottom:542.670000px;}
.y3cf{bottom:543.030000px;}
.y404{bottom:545.190000px;}
.y3e0{bottom:545.255097px;}
.ycf{bottom:548.430000px;}
.y34{bottom:549.150000px;}
.yf5{bottom:549.510000px;}
.y91{bottom:553.830000px;}
.y181{bottom:554.910000px;}
.y3e1{bottom:556.690414px;}
.y1af{bottom:557.430000px;}
.y3bf{bottom:559.950000px;}
.ye{bottom:560.310000px;}
.y163{bottom:560.670000px;}
.y360{bottom:562.830000px;}
.y3ce{bottom:563.910000px;}
.y378{bottom:564.990000px;}
.y191{bottom:565.710000px;}
.yad{bottom:566.070000px;}
.ye5{bottom:567.510000px;}
.y396{bottom:568.590000px;}
.y4e{bottom:569.310000px;}
.y33{bottom:569.670000px;}
.y6f{bottom:570.390000px;}
.y13b{bottom:571.830000px;}
.y26f{bottom:573.630000px;}
.yce{bottom:579.390000px;}
.yf4{bottom:580.470000px;}
.y1e1{bottom:580.830000px;}
.y90{bottom:581.940000px;}
.y3cd{bottom:584.460000px;}
.y180{bottom:585.900000px;}
.y190{bottom:586.620000px;}
.y128{bottom:587.340000px;}
.y1ae{bottom:588.780000px;}
.y32{bottom:590.220000px;}
.y162{bottom:592.020000px;}
.y35f{bottom:593.820000px;}
.y377{bottom:595.980000px;}
.yac{bottom:597.060000px;}
.ye4{bottom:598.500000px;}
.y395{bottom:599.580000px;}
.y4d{bottom:600.300000px;}
.y6e{bottom:601.380000px;}
.y13a{bottom:602.820000px;}
.y26e{bottom:604.980000px;}
.y3cc{bottom:605.340000px;}
.y18f{bottom:607.140000px;}
.y8f{bottom:610.020000px;}
.ycd{bottom:610.380000px;}
.y31{bottom:611.100000px;}
.yf3{bottom:611.820000px;}
.y17f{bottom:617.940000px;}
.y127{bottom:618.660000px;}
.y1ad{bottom:619.740000px;}
.y3be{bottom:621.900000px;}
.y161{bottom:622.980000px;}
.y35e{bottom:624.780000px;}
.y3cb{bottom:625.860000px;}
.yd{bottom:626.580000px;}
.y376{bottom:627.300000px;}
.yab{bottom:628.020000px;}
.ye3{bottom:629.460000px;}
.y394{bottom:630.540000px;}
.y30{bottom:631.620000px;}
.y6d{bottom:632.340000px;}
.y26d{bottom:635.940000px;}
.y8e{bottom:638.460000px;}
.y151{bottom:640.260000px;}
.ycc{bottom:641.700000px;}
.yf2{bottom:642.780000px;}
.y1cd{bottom:643.500000px;}
.y3ca{bottom:646.740000px;}
.y17e{bottom:649.260000px;}
.y126{bottom:649.620000px;}
.y1ac{bottom:650.700000px;}
.y2f{bottom:652.500000px;}
.y160{bottom:653.940000px;}
.y139{bottom:655.020000px;}
.y35d{bottom:655.740000px;}
.yaa{bottom:659.340000px;}
.y393{bottom:661.860000px;}
.y4c{bottom:662.580000px;}
.y6c{bottom:663.300000px;}
.y8d{bottom:666.540000px;}
.y26c{bottom:666.900000px;}
.y3c9{bottom:667.260000px;}
.ye2{bottom:672.660000px;}
.y2e{bottom:673.020000px;}
.ycb{bottom:673.740000px;}
.y125{bottom:680.580000px;}
.y17d{bottom:681.300000px;}
.y1ab{bottom:681.660000px;}
.y3bd{bottom:684.180000px;}
.y15f{bottom:684.900000px;}
.y35c{bottom:686.700000px;}
.y138{bottom:687.420000px;}
.ya9{bottom:690.300000px;}
.yc{bottom:692.820000px;}
.y4b{bottom:693.540000px;}
.y2d{bottom:693.900000px;}
.y6b{bottom:694.620000px;}
.y1c2{bottom:696.600000px;}
.y26b{bottom:701.820000px;}
.ye1{bottom:703.620000px;}
.yca{bottom:704.700000px;}
.y1e0{bottom:705.060000px;}
.y15e{bottom:705.810000px;}
.y1f4{bottom:709.770000px;}
.y124{bottom:711.570000px;}
.y17c{bottom:712.650000px;}
.y1aa{bottom:713.010000px;}
.y2c{bottom:714.450000px;}
.y26a{bottom:717.330000px;}
.y35b{bottom:719.130000px;}
.y137{bottom:719.490000px;}
.ya8{bottom:721.290000px;}
.y8c{bottom:723.090000px;}
.y392{bottom:723.810000px;}
.y4a{bottom:724.530000px;}
.y150{bottom:724.890000px;}
.y1f3{bottom:725.250000px;}
.y6a{bottom:725.610000px;}
.y246{bottom:729.907560px;}
.y269{bottom:729.930000px;}
.y3c8{bottom:732.810000px;}
.ye0{bottom:734.610000px;}
.y2b{bottom:735.330000px;}
.yc9{bottom:736.050000px;}
.y29e{bottom:738.693395px;}
.y1f2{bottom:740.730000px;}
.y15d{bottom:741.450000px;}
.y123{bottom:742.890000px;}
.y1a9{bottom:743.970000px;}
.y17b{bottom:744.690000px;}
.y3c7{bottom:745.770000px;}
.y3bc{bottom:746.130000px;}
.y8b{bottom:751.170000px;}
.y35a{bottom:751.530000px;}
.ya7{bottom:752.250000px;}
.y375{bottom:752.610000px;}
.y29c{bottom:753.716686px;}
.y391{bottom:754.770000px;}
.y2a{bottom:755.850000px;}
.y69{bottom:756.570000px;}
.yb{bottom:759.450000px;}
.ydf{bottom:765.930000px;}
.yc8{bottom:767.010000px;}
.y1f1{bottom:771.330000px;}
.y136{bottom:772.770000px;}
.y122{bottom:773.850000px;}
.y1a8{bottom:774.930000px;}
.y17a{bottom:775.650000px;}
.y29{bottom:776.730000px;}
.y14f{bottom:777.090000px;}
.y8a{bottom:779.250000px;}
.y359{bottom:782.490000px;}
.ya6{bottom:783.570000px;}
.y21e{bottom:785.160000px;}
.y390{bottom:786.090000px;}
.y49{bottom:786.810000px;}
.y68{bottom:787.530000px;}
.y179{bottom:796.530000px;}
.yde{bottom:796.890000px;}
.y28{bottom:797.250000px;}
.yc7{bottom:797.970000px;}
.y1df{bottom:801.930000px;}
.y279{bottom:802.290000px;}
.y135{bottom:803.730000px;}
.y121{bottom:804.810000px;}
.y1a7{bottom:805.890000px;}
.y89{bottom:807.690000px;}
.y14e{bottom:808.050000px;}
.y3bb{bottom:808.410000px;}
.y31c{bottom:812.730000px;}
.y358{bottom:813.810000px;}
.ya5{bottom:814.530000px;}
.y374{bottom:815.610000px;}
.y1e4{bottom:816.840000px;}
.y38f{bottom:817.050000px;}
.y48{bottom:817.770000px;}
.y27{bottom:818.130000px;}
.y67{bottom:818.850000px;}
.y15c{bottom:824.610000px;}
.yc6{bottom:828.930000px;}
.y31b{bottom:829.335000px;}
.ya{bottom:831.855000px;}
.y178{bottom:832.215000px;}
.y134{bottom:834.735000px;}
.y88{bottom:835.815000px;}
.y120{bottom:836.175000px;}
.y1a6{bottom:837.255000px;}
.y26{bottom:838.695000px;}
.y14d{bottom:839.055000px;}
.y357{bottom:844.815000px;}
.ya4{bottom:845.535000px;}
.y373{bottom:846.975000px;}
.y38e{bottom:848.055000px;}
.y47{bottom:848.775000px;}
.y66{bottom:849.855000px;}
.y25{bottom:859.575000px;}
.yc5{bottom:860.295000px;}
.y9{bottom:862.815000px;}
.y177{bottom:863.175000px;}
.y87{bottom:863.895000px;}
.y133{bottom:865.695000px;}
.y1a5{bottom:868.215000px;}
.y14c{bottom:870.375000px;}
.y356{bottom:875.775000px;}
.ya3{bottom:876.495000px;}
.y372{bottom:877.935000px;}
.y38d{bottom:879.015000px;}
.y24{bottom:880.095000px;}
.y65{bottom:880.815000px;}
.y11f{bottom:889.095000px;}
.yc4{bottom:891.255000px;}
.y86{bottom:892.335000px;}
.y8{bottom:894.135000px;}
.y176{bottom:894.495000px;}
.y1a4{bottom:899.175000px;}
.y23{bottom:900.975000px;}
.y14b{bottom:901.335000px;}
.ya2{bottom:907.815000px;}
.y371{bottom:908.895000px;}
.y38c{bottom:910.335000px;}
.y46{bottom:911.055000px;}
.y64{bottom:911.775000px;}
.y355{bottom:917.535000px;}
.y132{bottom:917.895000px;}
.y11e{bottom:920.055000px;}
.y85{bottom:920.415000px;}
.y22{bottom:921.495000px;}
.yc3{bottom:922.215000px;}
.y7{bottom:925.095000px;}
.y175{bottom:926.535000px;}
.y1a3{bottom:930.135000px;}
.y14a{bottom:932.295000px;}
.y3ba{bottom:932.655000px;}
.ya1{bottom:938.775000px;}
.y2da{bottom:939.457265px;}
.y2db{bottom:939.457273px;}
.y2dc{bottom:939.457281px;}
.y2dd{bottom:939.457290px;}
.y2de{bottom:939.457299px;}
.y370{bottom:939.855000px;}
.y38b{bottom:941.295000px;}
.y45{bottom:942.015000px;}
.y21{bottom:942.375000px;}
.y63{bottom:943.095000px;}
.y84{bottom:948.495000px;}
.y131{bottom:948.855000px;}
.y11d{bottom:951.375000px;}
.y2d3{bottom:951.862140px;}
.y2d5{bottom:951.862147px;}
.y2d9{bottom:951.862156px;}
.y2d8{bottom:951.862165px;}
.y2d7{bottom:951.862173px;}
.yc2{bottom:953.205000px;}
.y6{bottom:956.085000px;}
.y2f0{bottom:957.525000px;}
.y174{bottom:957.885000px;}
.y1a2{bottom:961.485000px;}
.y20{bottom:962.925000px;}
.y149{bottom:963.285000px;}
.ya0{bottom:969.765000px;}
.y36f{bottom:971.205000px;}
.y38a{bottom:972.285000px;}
.y44{bottom:973.005000px;}
.y62{bottom:974.085000px;}
.y83{bottom:976.965000px;}
.y130{bottom:980.205000px;}
.y11c{bottom:982.365000px;}
.y1f{bottom:983.805000px;}
.yc1{bottom:984.525000px;}
.y3a6{bottom:986.325000px;}
.y5{bottom:987.045000px;}
.y173{bottom:988.845000px;}
.y103{bottom:990.645000px;}
.y1a1{bottom:992.445000px;}
.y148{bottom:994.245000px;}
.y3b9{bottom:994.605000px;}
.y2b0{bottom:997.845000px;}
.y9f{bottom:1000.725000px;}
.y36e{bottom:1002.165000px;}
.y389{bottom:1003.245000px;}
.y1e{bottom:1004.325000px;}
.y61{bottom:1005.045000px;}
.y3a5{bottom:1006.845000px;}
.y11b{bottom:1013.325000px;}
.y2af{bottom:1014.045000px;}
.yc0{bottom:1015.485000px;}
.y4{bottom:1018.365000px;}
.y172{bottom:1020.885000px;}
.y12f{bottom:1021.965000px;}
.y1a0{bottom:1023.405000px;}
.y1d{bottom:1025.205000px;}
.y147{bottom:1025.565000px;}
.y3a4{bottom:1028.085000px;}
.y9e{bottom:1032.045000px;}
.y82{bottom:1033.125000px;}
.y388{bottom:1034.565000px;}
.y43{bottom:1035.285000px;}
.y60{bottom:1036.005000px;}
.y171{bottom:1041.765000px;}
.y11a{bottom:1044.645000px;}
.ybf{bottom:1046.445000px;}
.y1c{bottom:1047.885000px;}
.y2ae{bottom:1048.605000px;}
.y3{bottom:1049.325000px;}
.y146{bottom:1056.525000px;}
.y3b8{bottom:1056.885000px;}
.y5f{bottom:1057.245000px;}
.y2ad{bottom:1062.645000px;}
.y9d{bottom:1063.005000px;}
.y36d{bottom:1064.445000px;}
.y387{bottom:1065.525000px;}
.y3a3{bottom:1070.925000px;}
.y2ac{bottom:1076.325000px;}
.ybe{bottom:1077.450000px;}
.y5e{bottom:1077.810000px;}
.y2{bottom:1079.970000px;}
.y12e{bottom:1082.490000px;}
.y9c{bottom:1085.730000px;}
.y2ab{bottom:1090.050000px;}
.y3b7{bottom:1098.330000px;}
.y3ab{bottom:1098.690000px;}
.y5d{bottom:1100.490000px;}
.y119{bottom:1103.730000px;}
.y2aa{bottom:1104.090000px;}
.ybd{bottom:1108.770000px;}
.y1b{bottom:1110.210000px;}
.y1{bottom:1110.570000px;}
.y3a2{bottom:1113.090000px;}
.y9b{bottom:1115.970000px;}
.y2a9{bottom:1117.770000px;}
.y3aa{bottom:1118.850000px;}
.y3c6{bottom:1119.210000px;}
.y5c{bottom:1131.450000px;}
.y81{bottom:1133.970000px;}
.ybc{bottom:1139.730000px;}
.y3a1{bottom:1140.090000px;}
.y245{bottom:1144.050000px;}
.y2a8{bottom:1145.490000px;}
.y7f{bottom:1193.370000px;}
.h27{height:11.781750px;}
.h28{height:11.781751px;}
.h22{height:14.268628px;}
.ha{height:22.320000px;}
.h18{height:25.560000px;}
.h2e{height:28.533900px;}
.h2d{height:32.912503px;}
.h1e{height:35.751224px;}
.h25{height:37.022949px;}
.h1b{height:37.213761px;}
.h26{height:38.113463px;}
.h23{height:42.484922px;}
.hc{height:43.560000px;}
.h20{height:44.837740px;}
.h16{height:46.080000px;}
.h21{height:46.158439px;}
.h2b{height:48.350179px;}
.he{height:49.561875px;}
.hd{height:49.605469px;}
.h32{height:51.719750px;}
.h30{height:53.677969px;}
.h12{height:54.140233px;}
.h14{height:54.426094px;}
.h15{height:54.569320px;}
.h10{height:57.071250px;}
.h29{height:69.086250px;}
.h8{height:70.664062px;}
.h7{height:75.093750px;}
.hf{height:81.101250px;}
.hb{height:81.970312px;}
.h2f{height:87.108750px;}
.h2{height:99.878906px;}
.h9{height:100.625625px;}
.h11{height:105.692075px;}
.h3{height:105.996094px;}
.h6{height:112.640625px;}
.h4{height:143.825625px;}
.h13{height:226.080000px;}
.h5{height:266.476922px;}
.h17{height:338.040000px;}
.h19{height:339.840000px;}
.h2c{height:364.553720px;}
.h1c{height:371.520000px;}
.h1d{height:395.416030px;}
.h1a{height:411.591993px;}
.h24{height:433.916199px;}
.h2a{height:519.055710px;}
.h1f{height:525.507015px;}
.h31{height:569.087645px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:18.000000px;}
.w3{width:49.716000px;}
.w10{width:90.094390px;}
.w13{width:92.805899px;}
.w12{width:94.432804px;}
.w14{width:97.158774px;}
.w11{width:103.131323px;}
.w16{width:104.253986px;}
.w18{width:111.422967px;}
.w17{width:117.281395px;}
.w19{width:118.600626px;}
.w1a{width:123.157181px;}
.w6{width:355.320000px;}
.w7{width:355.500000px;}
.w15{width:630.106510px;}
.w1d{width:630.953388px;}
.w8{width:634.320000px;}
.we{width:634.425459px;}
.wf{width:634.492997px;}
.w9{width:634.605000px;}
.wb{width:635.171412px;}
.wa{width:637.920000px;}
.w1c{width:639.576504px;}
.w4{width:641.160000px;}
.w1b{width:645.829627px;}
.wc{width:649.080000px;}
.w5{width:651.017488px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1f{left:1.946279px;}
.x58{left:3.905619px;}
.x5a{left:9.113111px;}
.x11{left:10.872000px;}
.x4f{left:12.491016px;}
.x2d{left:14.010000px;}
.x59{left:15.644173px;}
.x21{left:16.740000px;}
.x17{left:18.000000px;}
.x60{left:19.545453px;}
.x4c{left:21.167843px;}
.x4d{left:22.252447px;}
.x24{left:23.685000px;}
.x4b{left:24.963955px;}
.x4e{left:26.048559px;}
.x68{left:27.164809px;}
.xf{left:28.440000px;}
.x69{left:30.422414px;}
.x53{left:36.370368px;}
.x55{left:38.539575px;}
.x56{left:40.166480px;}
.x61{left:41.698991px;}
.x54{left:42.881604px;}
.x5c{left:44.958013px;}
.x62{left:48.212695px;}
.x63{left:51.484736px;}
.x57{left:57.998440px;}
.x4a{left:72.719044px;}
.x29{left:83.235000px;}
.x22{left:95.010000px;}
.x2a{left:100.830000px;}
.x67{left:105.423346px;}
.x1e{left:116.971393px;}
.x2b{left:118.440000px;}
.x10{left:121.680000px;}
.x5{left:127.475987px;}
.x1d{left:128.578140px;}
.x23{left:130.680000px;}
.x6{left:135.791987px;}
.x8{left:137.591987px;}
.xd{left:145.511987px;}
.x6b{left:148.751987px;}
.x12{left:154.514987px;}
.x18{left:159.554987px;}
.x65{left:171.254785px;}
.x48{left:174.717802px;}
.x5b{left:180.395948px;}
.x1a{left:181.514987px;}
.x6a{left:183.674987px;}
.x19{left:186.554987px;}
.x27{left:188.155183px;}
.x13{left:191.594987px;}
.x9{left:205.274987px;}
.x2f{left:206.490000px;}
.x15{left:208.514987px;}
.x14{left:218.624987px;}
.x30{left:224.100000px;}
.x16{left:235.544987px;}
.x31{left:241.710000px;}
.x7{left:248.504987px;}
.x26{left:257.505000px;}
.x32{left:259.305000px;}
.x25{left:263.670000px;}
.x2c{left:267.120000px;}
.x2e{left:284.760000px;}
.x34{left:294.510000px;}
.x47{left:309.960000px;}
.x35{left:312.150000px;}
.x4{left:329.549987px;}
.x1{left:338.909987px;}
.x36{left:347.370000px;}
.x37{left:364.965000px;}
.x38{left:382.575000px;}
.xb{left:384.659987px;}
.x33{left:390.600000px;}
.x39{left:400.170000px;}
.x5f{left:403.237542px;}
.x3a{left:417.780000px;}
.x3b{left:435.390000px;}
.xa{left:442.259987px;}
.x3c{left:452.985000px;}
.x28{left:462.605364px;}
.x3d{left:470.595000px;}
.x51{left:483.665839px;}
.x3e{left:488.235000px;}
.x1b{left:493.769987px;}
.x1c{left:495.929987px;}
.x3f{left:505.830000px;}
.x40{left:523.440000px;}
.x2{left:525.089987px;}
.x5e{left:527.045660px;}
.x41{left:541.050000px;}
.x42{left:558.645000px;}
.x43{left:576.255000px;}
.x52{left:581.366915px;}
.x3{left:585.254987px;}
.x45{left:611.460000px;}
.x46{left:629.070000px;}
.x5d{left:646.297222px;}
.x50{left:672.003607px;}
.x44{left:707.400000px;}
.x6e{left:745.169987px;}
.x6d{left:746.249987px;}
.x64{left:758.489987px;}
.x6f{left:759.569987px;}
.x49{left:762.809987px;}
.x6c{left:764.249987px;}
.xc{left:765.689987px;}
.xe{left:767.850000px;}
.x66{left:774.329987px;}
.x20{left:779.729987px;}
@media print{
.v2{vertical-align:-111.360000pt;}
.v1{vertical-align:-110.240000pt;}
.v3{vertical-align:-107.520000pt;}
.v4{vertical-align:-79.360000pt;}
.v6{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:21.760000pt;}
.ls29{letter-spacing:-2.087055pt;}
.ls2a{letter-spacing:-1.840000pt;}
.ls3f{letter-spacing:-1.583548pt;}
.ls3d{letter-spacing:-1.408000pt;}
.ls2d{letter-spacing:-1.335217pt;}
.ls1d{letter-spacing:-1.280000pt;}
.ls31{letter-spacing:-1.236781pt;}
.ls33{letter-spacing:-1.180890pt;}
.ls28{letter-spacing:-1.152000pt;}
.ls9{letter-spacing:-1.024000pt;}
.ls32{letter-spacing:-1.021222pt;}
.ls34{letter-spacing:-0.881866pt;}
.ls30{letter-spacing:-0.832000pt;}
.ls2f{letter-spacing:-0.704000pt;}
.ls2c{letter-spacing:-0.576000pt;}
.ls2e{letter-spacing:-0.565333pt;}
.ls35{letter-spacing:-0.448000pt;}
.lsf{letter-spacing:-0.445333pt;}
.lse{letter-spacing:-0.322667pt;}
.ls27{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.096000pt;}
.ls20{letter-spacing:-0.030720pt;}
.ls23{letter-spacing:-0.023040pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.015360pt;}
.lsa{letter-spacing:0.128000pt;}
.ls3e{letter-spacing:0.176316pt;}
.ls8{letter-spacing:0.192000pt;}
.ls3a{letter-spacing:0.234667pt;}
.ls6{letter-spacing:0.256000pt;}
.ls1f{letter-spacing:0.384000pt;}
.ls3c{letter-spacing:0.416000pt;}
.ls22{letter-spacing:0.448000pt;}
.ls2b{letter-spacing:0.576000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.834560pt;}
.ls13{letter-spacing:1.152000pt;}
.ls10{letter-spacing:1.408000pt;}
.ls1{letter-spacing:1.930667pt;}
.ls15{letter-spacing:2.688000pt;}
.ls1b{letter-spacing:3.968000pt;}
.ls37{letter-spacing:7.808000pt;}
.ls16{letter-spacing:10.368000pt;}
.ls38{letter-spacing:11.648000pt;}
.ls12{letter-spacing:18.048000pt;}
.ls1c{letter-spacing:20.608000pt;}
.ls39{letter-spacing:24.448000pt;}
.ls21{letter-spacing:24.458667pt;}
.ls24{letter-spacing:25.834667pt;}
.ls3b{letter-spacing:27.008000pt;}
.ls1a{letter-spacing:28.288000pt;}
.ls7{letter-spacing:29.568000pt;}
.ls25{letter-spacing:33.408000pt;}
.ls26{letter-spacing:43.808000pt;}
.lsb{letter-spacing:46.218667pt;}
.ls17{letter-spacing:48.768000pt;}
.ls11{letter-spacing:48.778667pt;}
.ls19{letter-spacing:49.054720pt;}
.ls18{letter-spacing:56.734720pt;}
.lsc{letter-spacing:64.128000pt;}
.ls36{letter-spacing:96.266667pt;}
.ls3{letter-spacing:417.845333pt;}
.lsd{letter-spacing:717.226667pt;}
.ls0{letter-spacing:1110.592000pt;}
.wsb{word-spacing:-64.000000pt;}
.wsc{word-spacing:-53.760000pt;}
.ws93{word-spacing:-48.640000pt;}
.ws0{word-spacing:-24.000000pt;}
.ws6{word-spacing:-23.518613pt;}
.ws10{word-spacing:-19.230720pt;}
.ws11{word-spacing:-19.192320pt;}
.wsf{word-spacing:-19.184640pt;}
.wsa{word-spacing:-18.944000pt;}
.ws12{word-spacing:-18.240000pt;}
.ws2{word-spacing:-18.048000pt;}
.ws9{word-spacing:-17.984000pt;}
.ws5{word-spacing:-17.920000pt;}
.ws4{word-spacing:-17.792000pt;}
.ws90{word-spacing:-17.664000pt;}
.ws8f{word-spacing:-17.344000pt;}
.ws91{word-spacing:-16.960000pt;}
.ws3{word-spacing:-16.768000pt;}
.ws13{word-spacing:-16.640000pt;}
.wse{word-spacing:-16.512000pt;}
.ws92{word-spacing:-16.384000pt;}
.ws94{word-spacing:-12.253986pt;}
.ws7{word-spacing:-11.742720pt;}
.ws1f{word-spacing:-11.681920pt;}
.ws8{word-spacing:-11.297387pt;}
.ws20{word-spacing:-11.021568pt;}
.ws1d{word-spacing:-10.992640pt;}
.ws42{word-spacing:-9.056045pt;}
.ws5d{word-spacing:-7.477662pt;}
.ws22{word-spacing:-7.301145pt;}
.ws26{word-spacing:-7.014203pt;}
.wsd{word-spacing:-0.053760pt;}
.ws1{word-spacing:0.000000pt;}
.ws50{word-spacing:43.125128pt;}
.ws25{word-spacing:56.493653pt;}
.ws43{word-spacing:63.325367pt;}
.ws21{word-spacing:72.271360pt;}
.ws46{word-spacing:76.327311pt;}
.ws53{word-spacing:80.685111pt;}
.ws4f{word-spacing:82.898199pt;}
.ws28{word-spacing:84.599641pt;}
.ws51{word-spacing:87.264436pt;}
.ws44{word-spacing:91.709025pt;}
.ws52{word-spacing:93.849996pt;}
.ws45{word-spacing:93.858433pt;}
.ws49{word-spacing:93.875600pt;}
.ws4d{word-spacing:94.835123pt;}
.ws55{word-spacing:95.909827pt;}
.ws4a{word-spacing:102.695157pt;}
.ws57{word-spacing:102.860592pt;}
.ws19{word-spacing:103.588301pt;}
.ws5c{word-spacing:104.001470pt;}
.ws54{word-spacing:109.353127pt;}
.ws5e{word-spacing:111.604960pt;}
.ws16{word-spacing:115.855337pt;}
.ws18{word-spacing:119.003518pt;}
.ws4e{word-spacing:120.133254pt;}
.ws35{word-spacing:121.530348pt;}
.ws34{word-spacing:121.631281pt;}
.ws47{word-spacing:122.568267pt;}
.ws56{word-spacing:124.552239pt;}
.ws58{word-spacing:124.867190pt;}
.ws15{word-spacing:125.173580pt;}
.ws1c{word-spacing:126.383368pt;}
.ws5b{word-spacing:126.967591pt;}
.ws4c{word-spacing:133.599664pt;}
.ws5a{word-spacing:135.766239pt;}
.ws4b{word-spacing:135.782159pt;}
.ws48{word-spacing:137.965901pt;}
.ws1b{word-spacing:138.932404pt;}
.ws1e{word-spacing:146.786987pt;}
.ws7d{word-spacing:149.450126pt;}
.ws82{word-spacing:150.453945pt;}
.ws3c{word-spacing:151.138281pt;}
.ws41{word-spacing:152.519975pt;}
.ws8a{word-spacing:154.255092pt;}
.ws70{word-spacing:156.155665pt;}
.ws38{word-spacing:156.445422pt;}
.ws7c{word-spacing:157.124388pt;}
.ws79{word-spacing:160.032835pt;}
.ws14{word-spacing:162.608050pt;}
.ws2b{word-spacing:164.495161pt;}
.ws36{word-spacing:167.078985pt;}
.ws7b{word-spacing:167.559105pt;}
.ws29{word-spacing:169.796260pt;}
.ws1a{word-spacing:171.925258pt;}
.ws2f{word-spacing:175.104912pt;}
.ws59{word-spacing:176.235383pt;}
.ws6c{word-spacing:177.061972pt;}
.ws40{word-spacing:177.757149pt;}
.ws37{word-spacing:180.385576pt;}
.ws2c{word-spacing:180.425647pt;}
.ws23{word-spacing:180.918496pt;}
.ws2e{word-spacing:183.082060pt;}
.ws5f{word-spacing:183.790382pt;}
.ws32{word-spacing:184.244119pt;}
.ws3b{word-spacing:185.493872pt;}
.ws3a{word-spacing:185.545671pt;}
.ws61{word-spacing:185.689878pt;}
.ws2a{word-spacing:185.726746pt;}
.ws67{word-spacing:186.615520pt;}
.ws62{word-spacing:186.640861pt;}
.ws24{word-spacing:189.266827pt;}
.ws73{word-spacing:190.416667pt;}
.ws75{word-spacing:190.442008pt;}
.ws17{word-spacing:190.642493pt;}
.ws2d{word-spacing:191.076979pt;}
.ws7f{word-spacing:193.316435pt;}
.ws69{word-spacing:194.217814pt;}
.ws3e{word-spacing:194.705669pt;}
.ws63{word-spacing:195.224294pt;}
.ws68{word-spacing:196.143728pt;}
.ws6b{word-spacing:198.018960pt;}
.ws30{word-spacing:199.094198pt;}
.ws60{word-spacing:200.927091pt;}
.ws6f{word-spacing:200.940838pt;}
.ws27{word-spacing:202.473446pt;}
.ws6d{word-spacing:202.840335pt;}
.ws88{word-spacing:202.871314pt;}
.ws6e{word-spacing:203.746021pt;}
.ws84{word-spacing:203.796703pt;}
.ws8e{word-spacing:203.856508pt;}
.ws39{word-spacing:204.403205pt;}
.ws80{word-spacing:206.655482pt;}
.ws7a{word-spacing:207.547168pt;}
.ws8d{word-spacing:207.597850pt;}
.ws81{word-spacing:208.541231pt;}
.ws87{word-spacing:209.498423pt;}
.ws77{word-spacing:213.299570pt;}
.ws33{word-spacing:214.882170pt;}
.ws64{word-spacing:216.196360pt;}
.ws7e{word-spacing:218.038713pt;}
.ws66{word-spacing:218.052460pt;}
.ws74{word-spacing:218.138176pt;}
.ws89{word-spacing:220.037672pt;}
.ws3d{word-spacing:220.526494pt;}
.ws85{word-spacing:221.666274pt;}
.ws8c{word-spacing:221.851453pt;}
.ws72{word-spacing:227.578514pt;}
.ws8b{word-spacing:229.449438pt;}
.ws86{word-spacing:229.592298pt;}
.ws76{word-spacing:230.278025pt;}
.ws31{word-spacing:231.102215pt;}
.ws83{word-spacing:231.206075pt;}
.ws6a{word-spacing:231.348935pt;}
.ws71{word-spacing:231.363759pt;}
.ws3f{word-spacing:233.726110pt;}
.ws65{word-spacing:234.205876pt;}
.ws78{word-spacing:242.621108pt;}
._27{margin-left:-15.626667pt;}
._25{margin-left:-14.496000pt;}
._3c{margin-left:-13.335893pt;}
._23{margin-left:-11.914667pt;}
._28{margin-left:-10.613333pt;}
._24{margin-left:-9.461333pt;}
._26{margin-left:-7.317333pt;}
._22{margin-left:-5.930667pt;}
._13{margin-left:-4.544000pt;}
._12{margin-left:-3.232000pt;}
._7{margin-left:-2.048000pt;}
._0{margin-left:-1.056000pt;}
._1{width:0.960000pt;}
._d{width:1.856000pt;}
._2{width:2.752000pt;}
._2f{width:3.669333pt;}
._a{width:4.608000pt;}
._8{width:5.504000pt;}
._9{width:6.848000pt;}
._18{width:7.797333pt;}
._4{width:8.768000pt;}
._5{width:9.728000pt;}
._6{width:11.413333pt;}
._e{width:12.416000pt;}
._10{width:13.312000pt;}
._f{width:14.912000pt;}
._1c{width:15.904000pt;}
._1b{width:16.800000pt;}
._c{width:19.520000pt;}
._b{width:20.896000pt;}
._1f{width:21.920000pt;}
._1e{width:22.880000pt;}
._1d{width:24.000000pt;}
._20{width:25.482667pt;}
._2e{width:27.040000pt;}
._17{width:28.341333pt;}
._16{width:29.813333pt;}
._15{width:31.445333pt;}
._14{width:32.629333pt;}
._2d{width:34.112000pt;}
._31{width:35.264000pt;}
._32{width:36.256000pt;}
._34{width:37.504000pt;}
._35{width:39.189333pt;}
._38{width:40.704000pt;}
._3e{width:42.368000pt;}
._3f{width:43.328000pt;}
._29{width:44.544000pt;}
._2a{width:45.696000pt;}
._33{width:46.901333pt;}
._3b{width:48.768000pt;}
._37{width:52.928000pt;}
._36{width:54.080000pt;}
._2b{width:55.808000pt;}
._3d{width:56.970667pt;}
._2c{width:57.866667pt;}
._30{width:59.296000pt;}
._42{width:61.688611pt;}
._39{width:63.104000pt;}
._3a{width:64.917333pt;}
._115{width:66.983139pt;}
._19{width:69.184000pt;}
._d5{width:70.590250pt;}
._1a{width:72.085333pt;}
._43{width:73.169336pt;}
._d6{width:75.091662pt;}
._44{width:76.323793pt;}
._de{width:78.131608pt;}
._da{width:79.587116pt;}
._e3{width:80.576332pt;}
._db{width:81.816707pt;}
._b1{width:83.577188pt;}
._d4{width:84.526332pt;}
._d9{width:85.521328pt;}
._4f{width:87.072597pt;}
._d2{width:88.938492pt;}
._d7{width:90.398067pt;}
._e2{width:91.430646pt;}
._c5{width:92.413837pt;}
._ae{width:94.454586pt;}
._b3{width:95.528432pt;}
._d8{width:96.464729pt;}
._41{width:98.048000pt;}
._b5{width:100.057688pt;}
._40{width:101.642667pt;}
._af{width:102.940677pt;}
._d3{width:104.082374pt;}
._aa{width:104.993963pt;}
._b8{width:105.893685pt;}
._114{width:106.799966pt;}
._b2{width:108.345822pt;}
._ab{width:110.452822pt;}
._b4{width:111.450210pt;}
._51{width:113.259505pt;}
._e4{width:114.579292pt;}
._a9{width:115.783775pt;}
._dd{width:116.675648pt;}
._c2{width:118.604044pt;}
._80{width:119.500983pt;}
._b9{width:121.712712pt;}
._e5{width:123.061678pt;}
._7f{width:124.186690pt;}
._e8{width:125.116977pt;}
._a8{width:126.317773pt;}
._b7{width:127.368571pt;}
._116{width:128.518218pt;}
._c6{width:129.472396pt;}
._ad{width:131.555905pt;}
._b6{width:132.699523pt;}
._c8{width:133.751765pt;}
._45{width:135.194090pt;}
._df{width:136.233530pt;}
._dc{width:137.748606pt;}
._11a{width:138.741572pt;}
._c4{width:139.908732pt;}
._ac{width:141.375919pt;}
._c3{width:142.531101pt;}
._bb{width:143.442426pt;}
._b0{width:144.793552pt;}
._e1{width:145.719351pt;}
._58{width:146.677310pt;}
._c9{width:148.286080pt;}
._54{width:149.403220pt;}
._cc{width:150.438014pt;}
._bd{width:151.367937pt;}
._e0{width:152.968951pt;}
._4a{width:154.694822pt;}
._ba{width:156.436563pt;}
._65{width:157.999039pt;}
._c7{width:160.532443pt;}
._55{width:162.268296pt;}
._4b{width:163.959554pt;}
._83{width:165.073514pt;}
._9a{width:166.379965pt;}
._ca{width:167.269180pt;}
._52{width:168.254849pt;}
._5d{width:170.181202pt;}
._90{width:171.712402pt;}
._4d{width:172.783251pt;}
._bf{width:174.076957pt;}
._cd{width:175.119525pt;}
._5e{width:176.847849pt;}
._c0{width:178.119240pt;}
._48{width:179.017448pt;}
._63{width:181.117891pt;}
._89{width:182.251707pt;}
._c1{width:183.913894pt;}
._bc{width:185.725328pt;}
._e7{width:186.762980pt;}
._5a{width:188.232277pt;}
._74{width:189.770230pt;}
._4c{width:191.490289pt;}
._e6{width:193.379470pt;}
._88{width:194.556119pt;}
._4e{width:196.218880pt;}
._81{width:198.775722pt;}
._60{width:200.515004pt;}
._d1{width:201.641931pt;}
._9d{width:203.935195pt;}
._47{width:205.388941pt;}
._ee{width:208.289774pt;}
._8d{width:209.487649pt;}
._118{width:211.715334pt;}
._49{width:213.878535pt;}
._8c{width:216.043302pt;}
._be{width:217.030625pt;}
._cb{width:218.010499pt;}
._d0{width:219.059220pt;}
._7a{width:220.235128pt;}
._cf{width:225.085524pt;}
._10d{width:226.931259pt;}
._f1{width:227.945743pt;}
._12b{width:232.375366pt;}
._ce{width:233.753945pt;}
._119{width:237.271317pt;}
._117{width:238.198113pt;}
._f3{width:239.351082pt;}
._107{width:245.303905pt;}
._a4{width:248.795706pt;}
._f5{width:250.519246pt;}
._ef{width:256.096532pt;}
._109{width:257.690854pt;}
._eb{width:258.969824pt;}
._113{width:261.087761pt;}
._130{width:262.601675pt;}
._ed{width:267.245120pt;}
._f6{width:269.826359pt;}
._fc{width:275.695697pt;}
._f8{width:277.840007pt;}
._104{width:281.600439pt;}
._10f{width:290.970565pt;}
._f7{width:302.343248pt;}
._fa{width:303.642481pt;}
._110{width:308.777535pt;}
._46{width:318.850918pt;}
._124{width:361.707474pt;}
._ff{width:389.401248pt;}
._106{width:428.048721pt;}
._a3{width:496.046327pt;}
._120{width:515.291153pt;}
._f4{width:533.966536pt;}
._11f{width:539.194347pt;}
._f2{width:544.832326pt;}
._9b{width:552.570153pt;}
._a2{width:590.188890pt;}
._79{width:596.122278pt;}
._112{width:618.058957pt;}
._133{width:644.577782pt;}
._92{width:649.663507pt;}
._6f{width:667.805313pt;}
._7e{width:669.913766pt;}
._98{width:677.986302pt;}
._10b{width:695.831640pt;}
._78{width:699.599320pt;}
._50{width:729.547724pt;}
._e9{width:743.524718pt;}
._8a{width:768.369860pt;}
._67{width:769.350336pt;}
._87{width:776.878427pt;}
._131{width:781.123982pt;}
._6d{width:798.438475pt;}
._108{width:821.860324pt;}
._a7{width:822.963483pt;}
._111{width:824.329692pt;}
._12a{width:839.148628pt;}
._132{width:850.141729pt;}
._10e{width:858.214529pt;}
._5c{width:880.013705pt;}
._12f{width:883.604065pt;}
._5b{width:888.757910pt;}
._105{width:941.912954pt;}
._7d{width:945.285374pt;}
._99{width:969.200679pt;}
._a5{width:971.621184pt;}
._129{width:973.983528pt;}
._a6{width:975.381780pt;}
._10c{width:980.339191pt;}
._f0{width:985.791212pt;}
._a1{width:998.002982pt;}
._71{width:1004.395478pt;}
._11e{width:1017.462266pt;}
._12d{width:1031.424331pt;}
._11d{width:1053.107446pt;}
._f9{width:1067.240058pt;}
._97{width:1070.219629pt;}
._103{width:1075.188479pt;}
._86{width:1080.740909pt;}
._85{width:1088.982183pt;}
._9e{width:1090.334635pt;}
._7b{width:1091.606833pt;}
._6e{width:1101.605621pt;}
._7c{width:1102.884217pt;}
._101{width:1109.712847pt;}
._122{width:1116.336414pt;}
._77{width:1118.696388pt;}
._a0{width:1129.933288pt;}
._128{width:1133.506130pt;}
._ec{width:1136.585579pt;}
._8e{width:1145.586238pt;}
._fd{width:1151.435926pt;}
._fb{width:1165.398658pt;}
._96{width:1169.539664pt;}
._fe{width:1170.669057pt;}
._126{width:1171.781138pt;}
._84{width:1185.436079pt;}
._6c{width:1192.913872pt;}
._94{width:1194.274259pt;}
._ea{width:1201.683031pt;}
._8f{width:1206.480419pt;}
._10a{width:1209.727873pt;}
._100{width:1211.938433pt;}
._72{width:1216.021501pt;}
._59{width:1217.937037pt;}
._76{width:1228.358217pt;}
._73{width:1230.467517pt;}
._57{width:1231.838387pt;}
._123{width:1234.455849pt;}
._93{width:1236.986011pt;}
._91{width:1239.651625pt;}
._82{width:1243.601759pt;}
._9f{width:1245.141170pt;}
._125{width:1248.757836pt;}
._9c{width:1255.471611pt;}
._12e{width:1256.451122pt;}
._8b{width:1264.414572pt;}
._3{width:1266.677333pt;}
._102{width:1270.636609pt;}
._11c{width:1272.389729pt;}
._12c{width:1275.861030pt;}
._11b{width:1285.328811pt;}
._135{width:1288.472653pt;}
._61{width:1289.964877pt;}
._121{width:1292.480495pt;}
._6b{width:1297.526487pt;}
._95{width:1301.471285pt;}
._56{width:1325.004305pt;}
._69{width:1329.880097pt;}
._64{width:1345.870404pt;}
._127{width:1346.922156pt;}
._62{width:1354.340852pt;}
._134{width:1361.111634pt;}
._66{width:1370.569329pt;}
._68{width:1378.516606pt;}
._53{width:1385.342341pt;}
._75{width:1389.336154pt;}
._70{width:1399.926874pt;}
._5f{width:1411.518159pt;}
._6a{width:1446.893862pt;}
._11{width:1735.829333pt;}
._21{width:1956.771413pt;}
.fs13{font-size:22.870232pt;}
.fs14{font-size:24.770806pt;}
.fs12{font-size:28.571952pt;}
.fse{font-size:31.036298pt;}
.fsd{font-size:32.305953pt;}
.fs10{font-size:33.087002pt;}
.fsf{font-size:40.070994pt;}
.fs11{font-size:41.973684pt;}
.fs6{font-size:42.240000pt;}
.fs15{font-size:44.079088pt;}
.fsb{font-size:47.000137pt;}
.fsa{font-size:48.640000pt;}
.fsc{font-size:48.768000pt;}
.fs8{font-size:53.760000pt;}
.fs7{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs5{font-size:74.240000pt;}
.fs4{font-size:85.760000pt;}
.fs0{font-size:96.000000pt;}
.fs1{font-size:138.240000pt;}
.fs2{font-size:256.128000pt;}
.y0{bottom:0.000000pt;}
.y2d4{bottom:2.200910pt;}
.y2d6{bottom:2.200912pt;}
.y33f{bottom:2.375742pt;}
.y97{bottom:2.560000pt;}
.y268{bottom:2.597851pt;}
.y29d{bottom:2.665476pt;}
.y217{bottom:2.704126pt;}
.y2d2{bottom:2.745048pt;}
.y29b{bottom:3.324471pt;}
.y403{bottom:3.436479pt;}
.y312{bottom:3.488097pt;}
.y1bf{bottom:3.933939pt;}
.y9a{bottom:7.360000pt;}
.y95{bottom:8.640000pt;}
.y1de{bottom:11.514667pt;}
.y33e{bottom:11.894510pt;}
.y267{bottom:12.920483pt;}
.y216{bottom:13.449043pt;}
.y2d1{bottom:13.768155pt;}
.y1dc{bottom:15.333333pt;}
.y1f0{bottom:15.360000pt;}
.y1cc{bottom:15.546667pt;}
.y1cf{bottom:16.000000pt;}
.y29a{bottom:16.674331pt;}
.y311{bottom:17.471662pt;}
.y402{bottom:17.892862pt;}
.y1be{bottom:19.565832pt;}
.y33d{bottom:21.413215pt;}
.y266{bottom:23.260181pt;}
.y215{bottom:24.211725pt;}
.y2d0{bottom:24.791042pt;}
.y98{bottom:24.960000pt;}
.y99{bottom:25.280000pt;}
.y1ce{bottom:29.760000pt;}
.y299{bottom:30.023925pt;}
.y33c{bottom:30.931920pt;}
.y310{bottom:31.455135pt;}
.y401{bottom:32.349154pt;}
.y265{bottom:33.599879pt;}
.y214{bottom:34.974407pt;}
.y1bd{bottom:35.223917pt;}
.y2cf{bottom:35.795588pt;}
.y235{bottom:38.813333pt;}
.y33b{bottom:40.450625pt;}
.y1cb{bottom:42.106667pt;}
.y298{bottom:43.351307pt;}
.y264{bottom:43.939577pt;}
.y30f{bottom:45.438607pt;}
.y213{bottom:45.737089pt;}
.y231{bottom:45.986667pt;}
.y400{bottom:46.805445pt;}
.y2ce{bottom:46.818475pt;}
.y96{bottom:48.640000pt;}
.y233{bottom:49.533333pt;}
.y33a{bottom:49.969329pt;}
.y242{bottom:50.146667pt;}
.y80{bottom:50.560000pt;}
.y1bc{bottom:50.882003pt;}
.y227{bottom:53.026667pt;}
.y263{bottom:54.279275pt;}
.y212{bottom:56.499770pt;}
.y297{bottom:56.700900pt;}
.y1c3{bottom:57.733333pt;}
.y2cd{bottom:57.841362pt;}
.y236{bottom:58.213333pt;}
.y30e{bottom:59.422079pt;}
.y339{bottom:59.488034pt;}
.y22e{bottom:59.933333pt;}
.y22f{bottom:61.213333pt;}
.y3ff{bottom:61.261736pt;}
.y237{bottom:62.173333pt;}
.y244{bottom:62.880000pt;}
.y240{bottom:63.386667pt;}
.y262{bottom:64.618973pt;}
.y230{bottom:65.466667pt;}
.y1bb{bottom:66.540088pt;}
.y211{bottom:67.262452pt;}
.y22d{bottom:68.026667pt;}
.y23a{bottom:68.386667pt;}
.y2cc{bottom:68.864249pt;}
.y338{bottom:69.006105pt;}
.y296{bottom:70.050494pt;}
.y23e{bottom:71.013333pt;}
.y229{bottom:71.520000pt;}
.y23f{bottom:72.666667pt;}
.y23d{bottom:73.213333pt;}
.y30d{bottom:73.405551pt;}
.y23b{bottom:73.466667pt;}
.y226{bottom:74.240000pt;}
.y261{bottom:74.955230pt;}
.y239{bottom:75.106667pt;}
.y1c4{bottom:75.546667pt;}
.y3fe{bottom:75.718027pt;}
.y228{bottom:76.986667pt;}
.y23c{bottom:77.440000pt;}
.y210{bottom:78.021552pt;}
.y241{bottom:78.400000pt;}
.y337{bottom:78.508972pt;}
.y22c{bottom:78.586667pt;}
.y2cb{bottom:79.885669pt;}
.y1ba{bottom:82.198173pt;}
.y295{bottom:83.400088pt;}
.y260{bottom:85.298369pt;}
.y30c{bottom:87.389024pt;}
.y336{bottom:88.030844pt;}
.y20f{bottom:88.787816pt;}
.y3fd{bottom:90.174319pt;}
.y2ca{bottom:90.912223pt;}
.y22a{bottom:91.173333pt;}
.y238{bottom:92.933333pt;}
.y1c5{bottom:93.373333pt;}
.y234{bottom:94.786667pt;}
.y25f{bottom:95.620863pt;}
.y294{bottom:96.747905pt;}
.y335{bottom:97.546381pt;}
.y2a7{bottom:98.272000pt;}
.y20e{bottom:99.532590pt;}
.ydd{bottom:99.872000pt;}
.y3a0{bottom:100.832000pt;}
.y30b{bottom:101.369704pt;}
.y2c9{bottom:101.931442pt;}
.y118{bottom:102.112000pt;}
.y386{bottom:104.032000pt;}
.y3fc{bottom:104.603118pt;}
.y1c1{bottom:105.952000pt;}
.y25e{bottom:105.957120pt;}
.y3a9{bottom:106.272000pt;}
.y15b{bottom:106.912000pt;}
.y334{bottom:107.068254pt;}
.y354{bottom:109.152000pt;}
.y21d{bottom:109.472000pt;}
.y243{bottom:109.986667pt;}
.y293{bottom:110.101941pt;}
.y20d{bottom:110.291690pt;}
.y2a6{bottom:110.432000pt;}
.y1c6{bottom:111.226667pt;}
.y3b0{bottom:111.392000pt;}
.y42{bottom:112.672000pt;}
.y2c8{bottom:112.957997pt;}
.y34e{bottom:112.992000pt;}
.y3df{bottom:114.592000pt;}
.y30a{bottom:115.329909pt;}
.y19f{bottom:116.192000pt;}
.y25d{bottom:116.300259pt;}
.y333{bottom:116.583791pt;}
.ybb{bottom:116.832000pt;}
.y12d{bottom:117.152000pt;}
.y1a{bottom:118.112000pt;}
.y39b{bottom:118.752000pt;}
.y3fb{bottom:119.063991pt;}
.y102{bottom:119.072000pt;}
.y39f{bottom:119.392000pt;}
.y1c0{bottom:119.712000pt;}
.y20c{bottom:121.057953pt;}
.y1dd{bottom:122.272000pt;}
.y2a5{bottom:122.912000pt;}
.y18e{bottom:123.232000pt;}
.y292{bottom:123.447092pt;}
.y278{bottom:123.552000pt;}
.y2c7{bottom:123.962543pt;}
.y2ef{bottom:124.832000pt;}
.y332{bottom:126.105663pt;}
.y25c{bottom:126.636516pt;}
.ydc{bottom:127.392000pt;}
.y3b6{bottom:127.712000pt;}
.y1c7{bottom:129.053333pt;}
.y309{bottom:129.318035pt;}
.y117{bottom:129.632000pt;}
.y3af{bottom:129.952000pt;}
.y34d{bottom:131.232000pt;}
.y385{bottom:131.552000pt;}
.y20b{bottom:131.817053pt;}
.y3de{bottom:133.152000pt;}
.y3fa{bottom:133.515700pt;}
.y15a{bottom:134.426667pt;}
.y2c6{bottom:134.981761pt;}
.y2a4{bottom:135.066667pt;}
.y331{bottom:135.621200pt;}
.y3b3{bottom:136.346667pt;}
.y353{bottom:136.666667pt;}
.y291{bottom:136.801129pt;}
.y25b{bottom:136.979655pt;}
.y21c{bottom:137.306667pt;}
.y39e{bottom:137.626667pt;}
.y1d1{bottom:138.146667pt;}
.y10f{bottom:138.906667pt;}
.y170{bottom:139.546667pt;}
.y41{bottom:140.186667pt;}
.y1b9{bottom:140.340884pt;}
.y31a{bottom:141.786667pt;}
.y20a{bottom:142.583317pt;}
.y3a8{bottom:143.066667pt;}
.y308{bottom:143.296854pt;}
.y19e{bottom:143.706667pt;}
.yba{bottom:144.346667pt;}
.y12c{bottom:144.666667pt;}
.y330{bottom:145.143072pt;}
.y19{bottom:145.626667pt;}
.y3b5{bottom:145.946667pt;}
.y2c5{bottom:146.008317pt;}
.y101{bottom:146.586667pt;}
.y1c8{bottom:146.880000pt;}
.y2a3{bottom:147.226667pt;}
.y25a{bottom:147.315912pt;}
.y3f9{bottom:147.976574pt;}
.y3ae{bottom:148.186667pt;}
.y290{bottom:150.128510pt;}
.y18d{bottom:151.066667pt;}
.y3dd{bottom:151.386667pt;}
.y1d2{bottom:152.506667pt;}
.y2ee{bottom:152.666667pt;}
.y209{bottom:153.342417pt;}
.y1d0{bottom:154.560000pt;}
.y3b2{bottom:154.586667pt;}
.y32f{bottom:154.645939pt;}
.ydb{bottom:155.226667pt;}
.y39d{bottom:156.186667pt;}
.y415{bottom:156.826667pt;}
.y2c4{bottom:157.027535pt;}
.y116{bottom:157.146667pt;}
.y307{bottom:157.284979pt;}
.y259{bottom:157.659051pt;}
.y384{bottom:159.066667pt;}
.y2a2{bottom:159.706667pt;}
.y34c{bottom:161.626667pt;}
.y159{bottom:161.946667pt;}
.y3f8{bottom:162.428283pt;}
.y1e5{bottom:163.293333pt;}
.y28f{bottom:163.473661pt;}
.y145{bottom:163.866667pt;}
.y208{bottom:164.108680pt;}
.y32e{bottom:164.161476pt;}
.y352{bottom:164.506667pt;}
.y1c9{bottom:164.706667pt;}
.y21b{bottom:164.826667pt;}
.y10e{bottom:166.426667pt;}
.y3ad{bottom:166.746667pt;}
.y1d3{bottom:166.853333pt;}
.y16f{bottom:167.386667pt;}
.y40{bottom:167.706667pt;}
.y258{bottom:167.995308pt;}
.y2c3{bottom:168.054090pt;}
.y36c{bottom:168.986667pt;}
.y319{bottom:169.306667pt;}
.y3dc{bottom:169.946667pt;}
.y306{bottom:171.263798pt;}
.y19d{bottom:171.546667pt;}
.yb9{bottom:171.866667pt;}
.y12b{bottom:172.186667pt;}
.y18{bottom:172.826667pt;}
.y232{bottom:173.053333pt;}
.y22b{bottom:173.093333pt;}
.yf1{bottom:173.146667pt;}
.y32d{bottom:173.683348pt;}
.y100{bottom:174.106667pt;}
.y39c{bottom:174.426667pt;}
.y207{bottom:174.867781pt;}
.y1e6{bottom:175.360000pt;}
.y414{bottom:175.386667pt;}
.y28e{bottom:176.827698pt;}
.y3f7{bottom:176.889156pt;}
.y21f{bottom:177.093333pt;}
.y257{bottom:178.317802pt;}
.y18c{bottom:178.586667pt;}
.y2c2{bottom:179.073310pt;}
.y3a7{bottom:179.866667pt;}
.y2ed{bottom:180.186667pt;}
.y1d4{bottom:181.213333pt;}
.y3ac{bottom:181.786667pt;}
.y1ca{bottom:182.533333pt;}
.yda{bottom:182.746667pt;}
.y32c{bottom:183.198885pt;}
.y2a1{bottom:184.026667pt;}
.y115{bottom:184.986667pt;}
.y305{bottom:185.251924pt;}
.y206{bottom:185.612554pt;}
.y34b{bottom:186.266667pt;}
.y1e7{bottom:187.386667pt;}
.y3b1{bottom:188.226667pt;}
.y256{bottom:188.660940pt;}
.y158{bottom:189.506667pt;}
.y2c1{bottom:190.099865pt;}
.y28d{bottom:190.172849pt;}
.y3f6{bottom:191.322537pt;}
.y144{bottom:191.746667pt;}
.y351{bottom:192.066667pt;}
.y21a{bottom:192.386667pt;}
.y32b{bottom:192.720758pt;}
.y5b{bottom:193.026667pt;}
.y413{bottom:193.666667pt;}
.y10d{bottom:193.986667pt;}
.y7e{bottom:194.306667pt;}
.y16e{bottom:194.946667pt;}
.y3f{bottom:195.266667pt;}
.y1d5{bottom:195.586667pt;}
.y2a0{bottom:196.226667pt;}
.y205{bottom:196.378818pt;}
.y36b{bottom:196.546667pt;}
.y318{bottom:197.186667pt;}
.y383{bottom:197.506667pt;}
.y3b4{bottom:197.826667pt;}
.y34a{bottom:198.466667pt;}
.y255{bottom:198.997198pt;}
.y19c{bottom:199.106667pt;}
.y304{bottom:199.230743pt;}
.yb8{bottom:199.426667pt;}
.y1e8{bottom:199.453333pt;}
.y220{bottom:199.546667pt;}
.y12a{bottom:199.746667pt;}
.yf0{bottom:200.706667pt;}
.y2c0{bottom:201.104411pt;}
.yff{bottom:201.666667pt;}
.y32a{bottom:202.236295pt;}
.y3c5{bottom:203.266667pt;}
.y28c{bottom:203.526885pt;}
.y3f5{bottom:205.774247pt;}
.y18b{bottom:206.146667pt;}
.y277{bottom:206.466667pt;}
.y3db{bottom:206.786667pt;}
.y204{bottom:207.137918pt;}
.y2ec{bottom:207.746667pt;}
.y254{bottom:209.340336pt;}
.y1d6{bottom:209.946667pt;}
.yd9{bottom:210.306667pt;}
.y349{bottom:210.946667pt;}
.y5a{bottom:211.266667pt;}
.y1e9{bottom:211.493333pt;}
.y329{bottom:211.758167pt;}
.y2bf{bottom:212.123630pt;}
.y412{bottom:212.226667pt;}
.y7d{bottom:212.546667pt;}
.y303{bottom:213.218869pt;}
.y29f{bottom:215.426667pt;}
.y27a{bottom:215.533333pt;}
.y28b{bottom:216.872037pt;}
.y157{bottom:217.346667pt;}
.y203{bottom:217.904181pt;}
.y143{bottom:219.266667pt;}
.y350{bottom:219.586667pt;}
.y253{bottom:219.676594pt;}
.y3f4{bottom:220.235120pt;}
.y328{bottom:221.273704pt;}
.y10c{bottom:221.826667pt;}
.y221{bottom:222.053333pt;}
.y16d{bottom:222.466667pt;}
.y3e{bottom:223.106667pt;}
.y2be{bottom:223.150185pt;}
.y219{bottom:223.426667pt;}
.y1ea{bottom:223.546667pt;}
.y36a{bottom:224.066667pt;}
.y1d7{bottom:224.320000pt;}
.y317{bottom:224.706667pt;}
.y382{bottom:225.026667pt;}
.y19b{bottom:226.626667pt;}
.y302{bottom:227.197688pt;}
.yb7{bottom:227.266667pt;}
.y17{bottom:227.586667pt;}
.yef{bottom:228.226667pt;}
.y202{bottom:228.663282pt;}
.y39a{bottom:229.186667pt;}
.yfe{bottom:229.506667pt;}
.y59{bottom:229.826667pt;}
.y252{bottom:230.019732pt;}
.y28a{bottom:230.226073pt;}
.y411{bottom:230.466667pt;}
.y327{bottom:230.776571pt;}
.y7c{bottom:230.786667pt;}
.y18a{bottom:233.666667pt;}
.y276{bottom:233.986667pt;}
.y2bd{bottom:234.169404pt;}
.y3f3{bottom:234.686829pt;}
.y348{bottom:235.266667pt;}
.y1eb{bottom:235.586667pt;}
.y218{bottom:237.186667pt;}
.yd8{bottom:237.826667pt;}
.y1d8{bottom:238.693333pt;}
.y2eb{bottom:239.106667pt;}
.y201{bottom:239.429545pt;}
.y114{bottom:240.066667pt;}
.y326{bottom:240.298443pt;}
.y251{bottom:240.355990pt;}
.y301{bottom:241.185813pt;}
.y289{bottom:243.553454pt;}
.y3da{bottom:243.586667pt;}
.y222{bottom:244.506667pt;}
.y156{bottom:244.866667pt;}
.y2bc{bottom:245.195959pt;}
.y142{bottom:246.786667pt;}
.y34f{bottom:247.106667pt;}
.y1ec{bottom:247.653333pt;}
.y347{bottom:247.746667pt;}
.y58{bottom:248.066667pt;}
.y1f5{bottom:248.473662pt;}
.y410{bottom:249.026667pt;}
.y3f2{bottom:249.147702pt;}
.y10b{bottom:249.346667pt;}
.y7b{bottom:249.666667pt;}
.y325{bottom:249.813980pt;}
.y16c{bottom:249.986667pt;}
.y200{bottom:250.188645pt;}
.y3d{bottom:250.626667pt;}
.y250{bottom:250.678483pt;}
.y1b8{bottom:250.946667pt;}
.y369{bottom:251.586667pt;}
.y316{bottom:252.226667pt;}
.y381{bottom:252.546667pt;}
.y1d9{bottom:253.053333pt;}
.y19a{bottom:254.146667pt;}
.yb6{bottom:254.786667pt;}
.y16{bottom:255.106667pt;}
.y300{bottom:255.164632pt;}
.y2ea{bottom:255.426667pt;}
.yee{bottom:256.066667pt;}
.y2bb{bottom:256.215178pt;}
.y288{bottom:256.898606pt;}
.yfd{bottom:257.026667pt;}
.y3c4{bottom:258.306667pt;}
.y324{bottom:259.335853pt;}
.y1ed{bottom:259.680000pt;}
.y346{bottom:259.906667pt;}
.y1ff{bottom:260.933419pt;}
.y24f{bottom:261.021622pt;}
.y189{bottom:261.506667pt;}
.y3d9{bottom:261.826667pt;}
.y3f1{bottom:263.599412pt;}
.yd7{bottom:265.666667pt;}
.y57{bottom:266.626667pt;}
.y223{bottom:266.973333pt;}
.y2ba{bottom:267.241733pt;}
.y40f{bottom:267.266667pt;}
.y1da{bottom:267.386667pt;}
.y113{bottom:267.586667pt;}
.y7a{bottom:267.906667pt;}
.y323{bottom:268.851390pt;}
.y2ff{bottom:269.124837pt;}
.y287{bottom:270.252642pt;}
.y24e{bottom:271.357879pt;}
.y1fe{bottom:271.699682pt;}
.y1ee{bottom:271.746667pt;}
.y345{bottom:272.066667pt;}
.y155{bottom:272.386667pt;}
.y141{bottom:274.306667pt;}
.y1b7{bottom:274.946667pt;}
.y10a{bottom:276.866667pt;}
.y16b{bottom:277.506667pt;}
.y3f0{bottom:278.060285pt;}
.y3c{bottom:278.146667pt;}
.y2b9{bottom:278.260951pt;}
.y322{bottom:278.373262pt;}
.y368{bottom:279.426667pt;}
.y2e9{bottom:279.746667pt;}
.y380{bottom:280.066667pt;}
.y3d8{bottom:280.386667pt;}
.y24d{bottom:281.701018pt;}
.y1db{bottom:281.760000pt;}
.y199{bottom:281.986667pt;}
.yb5{bottom:282.306667pt;}
.y1fd{bottom:282.458783pt;}
.y15{bottom:282.626667pt;}
.y2fe{bottom:283.112963pt;}
.yed{bottom:283.586667pt;}
.y286{bottom:283.597793pt;}
.y1ef{bottom:283.773333pt;}
.yfc{bottom:284.546667pt;}
.y56{bottom:284.866667pt;}
.y40e{bottom:285.826667pt;}
.y79{bottom:286.466667pt;}
.y321{bottom:287.888799pt;}
.y188{bottom:289.026667pt;}
.y2b8{bottom:289.265497pt;}
.y224{bottom:289.466667pt;}
.y24c{bottom:292.037275pt;}
.y2e8{bottom:292.226667pt;}
.y3ef{bottom:292.493666pt;}
.yd6{bottom:293.186667pt;}
.y1fc{bottom:293.225046pt;}
.y112{bottom:295.106667pt;}
.y1e3{bottom:295.426667pt;}
.y344{bottom:296.733333pt;}
.y285{bottom:296.951830pt;}
.y2fd{bottom:297.091782pt;}
.y320{bottom:297.410672pt;}
.y3d7{bottom:298.653333pt;}
.y154{bottom:299.933333pt;}
.y2b7{bottom:300.292052pt;}
.y140{bottom:301.853333pt;}
.y24b{bottom:302.380414pt;}
.y1b6{bottom:302.493333pt;}
.y55{bottom:303.453333pt;}
.y1fb{bottom:303.984146pt;}
.y40d{bottom:304.093333pt;}
.y109{bottom:304.413333pt;}
.y78{bottom:304.733333pt;}
.y16a{bottom:305.373333pt;}
.y3b{bottom:305.693333pt;}
.y31f{bottom:306.913538pt;}
.y3ee{bottom:306.945375pt;}
.y367{bottom:306.973333pt;}
.y315{bottom:307.613333pt;}
.y37f{bottom:307.933333pt;}
.y343{bottom:308.893333pt;}
.y198{bottom:309.533333pt;}
.yb4{bottom:309.853333pt;}
.y14{bottom:310.173333pt;}
.y284{bottom:310.296981pt;}
.y2fc{bottom:311.079908pt;}
.yec{bottom:311.133333pt;}
.y2b6{bottom:311.311271pt;}
.y225{bottom:311.933333pt;}
.yfb{bottom:312.093333pt;}
.y24a{bottom:312.716671pt;}
.y3c3{bottom:313.693333pt;}
.y1fa{bottom:314.750410pt;}
.y31e{bottom:316.429075pt;}
.y187{bottom:316.573333pt;}
.y275{bottom:316.893333pt;}
.y3d6{bottom:317.213333pt;}
.y153{bottom:318.813333pt;}
.yd5{bottom:320.733333pt;}
.y342{bottom:321.053333pt;}
.y3ed{bottom:321.406249pt;}
.y54{bottom:321.693333pt;}
.y2b5{bottom:322.337826pt;}
.y40c{bottom:322.653333pt;}
.y111{bottom:322.973333pt;}
.y249{bottom:323.059810pt;}
.y77{bottom:323.293333pt;}
.y283{bottom:323.651017pt;}
.y2fb{bottom:325.058727pt;}
.y1f9{bottom:325.509510pt;}
.y2e7{bottom:329.053333pt;}
.y13f{bottom:329.693333pt;}
.y1b5{bottom:330.013333pt;}
.y108{bottom:331.933333pt;}
.y169{bottom:332.893333pt;}
.y2b4{bottom:333.357045pt;}
.y248{bottom:333.382304pt;}
.y3a{bottom:333.533333pt;}
.y366{bottom:334.493333pt;}
.y314{bottom:335.133333pt;}
.y37e{bottom:335.453333pt;}
.y3ec{bottom:335.857958pt;}
.y1f8{bottom:336.275773pt;}
.y282{bottom:336.996169pt;}
.y197{bottom:337.053333pt;}
.yb3{bottom:337.693333pt;}
.y13{bottom:338.013333pt;}
.yeb{bottom:338.653333pt;}
.y2fa{bottom:339.046852pt;}
.y399{bottom:339.613333pt;}
.yfa{bottom:339.933333pt;}
.y40b{bottom:340.893333pt;}
.y2e6{bottom:341.213333pt;}
.y76{bottom:341.533333pt;}
.y247{bottom:343.718561pt;}
.y186{bottom:344.093333pt;}
.y2b3{bottom:344.383600pt;}
.y274{bottom:344.413333pt;}
.y341{bottom:345.693333pt;}
.y1f7{bottom:347.020547pt;}
.yd4{bottom:349.533333pt;}
.y3eb{bottom:350.318831pt;}
.y281{bottom:350.323550pt;}
.y110{bottom:350.493333pt;}
.y2f9{bottom:353.025671pt;}
.y2e5{bottom:353.373333pt;}
.y3d5{bottom:354.013333pt;}
.y2b2{bottom:355.402821pt;}
.y13e{bottom:357.213333pt;}
.y1b4{bottom:357.533333pt;}
.y1f6{bottom:357.779647pt;}
.y340{bottom:357.853333pt;}
.y313{bottom:359.133333pt;}
.y2f1{bottom:359.200000pt;}
.y40a{bottom:359.453333pt;}
.y107{bottom:359.773333pt;}
.y75{bottom:360.093333pt;}
.y168{bottom:360.413333pt;}
.y39{bottom:361.053333pt;}
.y365{bottom:362.013333pt;}
.y37d{bottom:362.973333pt;}
.y280{bottom:363.677586pt;}
.y196{bottom:364.573333pt;}
.y3ea{bottom:364.770540pt;}
.yb2{bottom:365.213333pt;}
.y12{bottom:365.533333pt;}
.y2e4{bottom:365.853333pt;}
.y152{bottom:366.173333pt;}
.yea{bottom:366.493333pt;}
.y2f8{bottom:367.013797pt;}
.yf9{bottom:367.453333pt;}
.y53{bottom:368.093333pt;}
.y31d{bottom:368.137045pt;}
.y3c2{bottom:368.733333pt;}
.y185{bottom:371.933333pt;}
.y3d4{bottom:372.253333pt;}
.y27f{bottom:377.022738pt;}
.yd3{bottom:377.053333pt;}
.y409{bottom:377.693333pt;}
.y106{bottom:378.013333pt;}
.y74{bottom:378.333333pt;}
.y3e9{bottom:379.231414pt;}
.y2f7{bottom:380.992616pt;}
.y1b3{bottom:385.053333pt;}
.y3c1{bottom:387.293333pt;}
.y167{bottom:387.933333pt;}
.y38{bottom:388.573333pt;}
.y364{bottom:389.853333pt;}
.y2e3{bottom:390.173333pt;}
.y27e{bottom:390.376774pt;}
.y184{bottom:390.493333pt;}
.y37c{bottom:390.813333pt;}
.y195{bottom:392.413333pt;}
.yb1{bottom:392.733333pt;}
.y11{bottom:393.053333pt;}
.y3e8{bottom:393.664795pt;}
.ye9{bottom:394.013333pt;}
.yf8{bottom:394.973333pt;}
.y2f6{bottom:394.980741pt;}
.y52{bottom:395.613333pt;}
.y408{bottom:396.253333pt;}
.y73{bottom:396.893333pt;}
.y273{bottom:399.453333pt;}
.y2e2{bottom:402.653333pt;}
.y13d{bottom:403.613333pt;}
.y27d{bottom:403.721925pt;}
.yd2{bottom:404.573333pt;}
.y105{bottom:405.533333pt;}
.y1e2{bottom:405.853333pt;}
.y3e7{bottom:408.116504pt;}
.y183{bottom:408.773333pt;}
.y2f5{bottom:408.959560pt;}
.y3d3{bottom:409.093333pt;}
.y1b2{bottom:412.933333pt;}
.y94{bottom:413.893333pt;}
.y407{bottom:414.533333pt;}
.y2e1{bottom:414.853333pt;}
.y166{bottom:415.813333pt;}
.y37{bottom:416.133333pt;}
.y27c{bottom:417.075962pt;}
.y363{bottom:417.413333pt;}
.y37b{bottom:419.333333pt;}
.y194{bottom:419.973333pt;}
.yb0{bottom:420.293333pt;}
.y10{bottom:420.613333pt;}
.ye8{bottom:421.573333pt;}
.yf7{bottom:422.533333pt;}
.y3e6{bottom:422.577377pt;}
.y2f4{bottom:422.919766pt;}
.y51{bottom:423.173333pt;}
.y72{bottom:424.133333pt;}
.y2e0{bottom:427.013333pt;}
.y272{bottom:427.333333pt;}
.y3d2{bottom:427.653333pt;}
.y27b{bottom:430.421113pt;}
.yd1{bottom:432.133333pt;}
.y13c{bottom:432.453333pt;}
.y406{bottom:433.093333pt;}
.y104{bottom:433.413333pt;}
.y2f3{bottom:436.907891pt;}
.y3e5{bottom:437.029087pt;}
.y2df{bottom:439.493333pt;}
.y1b1{bottom:440.453333pt;}
.y93{bottom:441.413333pt;}
.y3c0{bottom:442.373333pt;}
.y165{bottom:443.333333pt;}
.y36{bottom:443.973333pt;}
.y362{bottom:444.933333pt;}
.y3d1{bottom:445.893333pt;}
.y37a{bottom:446.853333pt;}
.y193{bottom:447.493333pt;}
.yaf{bottom:448.133333pt;}
.yf{bottom:448.453333pt;}
.ye7{bottom:449.093333pt;}
.y398{bottom:450.053333pt;}
.y2f2{bottom:450.886710pt;}
.y50{bottom:451.013333pt;}
.y405{bottom:451.333333pt;}
.y3e4{bottom:451.489960pt;}
.y71{bottom:451.653333pt;}
.y271{bottom:454.853333pt;}
.yd0{bottom:459.973333pt;}
.yf6{bottom:460.933333pt;}
.y3d0{bottom:464.453333pt;}
.y182{bottom:465.413333pt;}
.y3e3{bottom:465.941669pt;}
.y92{bottom:467.333333pt;}
.y1b0{bottom:467.973333pt;}
.y35{bottom:469.573333pt;}
.y164{bottom:470.853333pt;}
.y2b1{bottom:470.866667pt;}
.y361{bottom:472.453333pt;}
.y379{bottom:474.693333pt;}
.y192{bottom:475.013333pt;}
.yae{bottom:475.653333pt;}
.y129{bottom:475.973333pt;}
.ye6{bottom:476.613333pt;}
.y397{bottom:477.893333pt;}
.y4f{bottom:478.533333pt;}
.y70{bottom:479.173333pt;}
.y3e2{bottom:480.375050pt;}
.y270{bottom:482.373333pt;}
.y3cf{bottom:482.693333pt;}
.y404{bottom:484.613333pt;}
.y3e0{bottom:484.671197pt;}
.ycf{bottom:487.493333pt;}
.y34{bottom:488.133333pt;}
.yf5{bottom:488.453333pt;}
.y91{bottom:492.293333pt;}
.y181{bottom:493.253333pt;}
.y3e1{bottom:494.835924pt;}
.y1af{bottom:495.493333pt;}
.y3bf{bottom:497.733333pt;}
.ye{bottom:498.053333pt;}
.y163{bottom:498.373333pt;}
.y360{bottom:500.293333pt;}
.y3ce{bottom:501.253333pt;}
.y378{bottom:502.213333pt;}
.y191{bottom:502.853333pt;}
.yad{bottom:503.173333pt;}
.ye5{bottom:504.453333pt;}
.y396{bottom:505.413333pt;}
.y4e{bottom:506.053333pt;}
.y33{bottom:506.373333pt;}
.y6f{bottom:507.013333pt;}
.y13b{bottom:508.293333pt;}
.y26f{bottom:509.893333pt;}
.yce{bottom:515.013333pt;}
.yf4{bottom:515.973333pt;}
.y1e1{bottom:516.293333pt;}
.y90{bottom:517.280000pt;}
.y3cd{bottom:519.520000pt;}
.y180{bottom:520.800000pt;}
.y190{bottom:521.440000pt;}
.y128{bottom:522.080000pt;}
.y1ae{bottom:523.360000pt;}
.y32{bottom:524.640000pt;}
.y162{bottom:526.240000pt;}
.y35f{bottom:527.840000pt;}
.y377{bottom:529.760000pt;}
.yac{bottom:530.720000pt;}
.ye4{bottom:532.000000pt;}
.y395{bottom:532.960000pt;}
.y4d{bottom:533.600000pt;}
.y6e{bottom:534.560000pt;}
.y13a{bottom:535.840000pt;}
.y26e{bottom:537.760000pt;}
.y3cc{bottom:538.080000pt;}
.y18f{bottom:539.680000pt;}
.y8f{bottom:542.240000pt;}
.ycd{bottom:542.560000pt;}
.y31{bottom:543.200000pt;}
.yf3{bottom:543.840000pt;}
.y17f{bottom:549.280000pt;}
.y127{bottom:549.920000pt;}
.y1ad{bottom:550.880000pt;}
.y3be{bottom:552.800000pt;}
.y161{bottom:553.760000pt;}
.y35e{bottom:555.360000pt;}
.y3cb{bottom:556.320000pt;}
.yd{bottom:556.960000pt;}
.y376{bottom:557.600000pt;}
.yab{bottom:558.240000pt;}
.ye3{bottom:559.520000pt;}
.y394{bottom:560.480000pt;}
.y30{bottom:561.440000pt;}
.y6d{bottom:562.080000pt;}
.y26d{bottom:565.280000pt;}
.y8e{bottom:567.520000pt;}
.y151{bottom:569.120000pt;}
.ycc{bottom:570.400000pt;}
.yf2{bottom:571.360000pt;}
.y1cd{bottom:572.000000pt;}
.y3ca{bottom:574.880000pt;}
.y17e{bottom:577.120000pt;}
.y126{bottom:577.440000pt;}
.y1ac{bottom:578.400000pt;}
.y2f{bottom:580.000000pt;}
.y160{bottom:581.280000pt;}
.y139{bottom:582.240000pt;}
.y35d{bottom:582.880000pt;}
.yaa{bottom:586.080000pt;}
.y393{bottom:588.320000pt;}
.y4c{bottom:588.960000pt;}
.y6c{bottom:589.600000pt;}
.y8d{bottom:592.480000pt;}
.y26c{bottom:592.800000pt;}
.y3c9{bottom:593.120000pt;}
.ye2{bottom:597.920000pt;}
.y2e{bottom:598.240000pt;}
.ycb{bottom:598.880000pt;}
.y125{bottom:604.960000pt;}
.y17d{bottom:605.600000pt;}
.y1ab{bottom:605.920000pt;}
.y3bd{bottom:608.160000pt;}
.y15f{bottom:608.800000pt;}
.y35c{bottom:610.400000pt;}
.y138{bottom:611.040000pt;}
.ya9{bottom:613.600000pt;}
.yc{bottom:615.840000pt;}
.y4b{bottom:616.480000pt;}
.y2d{bottom:616.800000pt;}
.y6b{bottom:617.440000pt;}
.y1c2{bottom:619.200000pt;}
.y26b{bottom:623.840000pt;}
.ye1{bottom:625.440000pt;}
.yca{bottom:626.400000pt;}
.y1e0{bottom:626.720000pt;}
.y15e{bottom:627.386667pt;}
.y1f4{bottom:630.906667pt;}
.y124{bottom:632.506667pt;}
.y17c{bottom:633.466667pt;}
.y1aa{bottom:633.786667pt;}
.y2c{bottom:635.066667pt;}
.y26a{bottom:637.626667pt;}
.y35b{bottom:639.226667pt;}
.y137{bottom:639.546667pt;}
.ya8{bottom:641.146667pt;}
.y8c{bottom:642.746667pt;}
.y392{bottom:643.386667pt;}
.y4a{bottom:644.026667pt;}
.y150{bottom:644.346667pt;}
.y1f3{bottom:644.666667pt;}
.y6a{bottom:644.986667pt;}
.y246{bottom:648.806720pt;}
.y269{bottom:648.826667pt;}
.y3c8{bottom:651.386667pt;}
.ye0{bottom:652.986667pt;}
.y2b{bottom:653.626667pt;}
.yc9{bottom:654.266667pt;}
.y29e{bottom:656.616351pt;}
.y1f2{bottom:658.426667pt;}
.y15d{bottom:659.066667pt;}
.y123{bottom:660.346667pt;}
.y1a9{bottom:661.306667pt;}
.y17b{bottom:661.946667pt;}
.y3c7{bottom:662.906667pt;}
.y3bc{bottom:663.226667pt;}
.y8b{bottom:667.706667pt;}
.y35a{bottom:668.026667pt;}
.ya7{bottom:668.666667pt;}
.y375{bottom:668.986667pt;}
.y29c{bottom:669.970388pt;}
.y391{bottom:670.906667pt;}
.y2a{bottom:671.866667pt;}
.y69{bottom:672.506667pt;}
.yb{bottom:675.066667pt;}
.ydf{bottom:680.826667pt;}
.yc8{bottom:681.786667pt;}
.y1f1{bottom:685.626667pt;}
.y136{bottom:686.906667pt;}
.y122{bottom:687.866667pt;}
.y1a8{bottom:688.826667pt;}
.y17a{bottom:689.466667pt;}
.y29{bottom:690.426667pt;}
.y14f{bottom:690.746667pt;}
.y8a{bottom:692.666667pt;}
.y359{bottom:695.546667pt;}
.ya6{bottom:696.506667pt;}
.y21e{bottom:697.920000pt;}
.y390{bottom:698.746667pt;}
.y49{bottom:699.386667pt;}
.y68{bottom:700.026667pt;}
.y179{bottom:708.026667pt;}
.yde{bottom:708.346667pt;}
.y28{bottom:708.666667pt;}
.yc7{bottom:709.306667pt;}
.y1df{bottom:712.826667pt;}
.y279{bottom:713.146667pt;}
.y135{bottom:714.426667pt;}
.y121{bottom:715.386667pt;}
.y1a7{bottom:716.346667pt;}
.y89{bottom:717.946667pt;}
.y14e{bottom:718.266667pt;}
.y3bb{bottom:718.586667pt;}
.y31c{bottom:722.426667pt;}
.y358{bottom:723.386667pt;}
.ya5{bottom:724.026667pt;}
.y374{bottom:724.986667pt;}
.y1e4{bottom:726.080000pt;}
.y38f{bottom:726.266667pt;}
.y48{bottom:726.906667pt;}
.y27{bottom:727.226667pt;}
.y67{bottom:727.866667pt;}
.y15c{bottom:732.986667pt;}
.yc6{bottom:736.826667pt;}
.y31b{bottom:737.186667pt;}
.ya{bottom:739.426667pt;}
.y178{bottom:739.746667pt;}
.y134{bottom:741.986667pt;}
.y88{bottom:742.946667pt;}
.y120{bottom:743.266667pt;}
.y1a6{bottom:744.226667pt;}
.y26{bottom:745.506667pt;}
.y14d{bottom:745.826667pt;}
.y357{bottom:750.946667pt;}
.ya4{bottom:751.586667pt;}
.y373{bottom:752.866667pt;}
.y38e{bottom:753.826667pt;}
.y47{bottom:754.466667pt;}
.y66{bottom:755.426667pt;}
.y25{bottom:764.066667pt;}
.yc5{bottom:764.706667pt;}
.y9{bottom:766.946667pt;}
.y177{bottom:767.266667pt;}
.y87{bottom:767.906667pt;}
.y133{bottom:769.506667pt;}
.y1a5{bottom:771.746667pt;}
.y14c{bottom:773.666667pt;}
.y356{bottom:778.466667pt;}
.ya3{bottom:779.106667pt;}
.y372{bottom:780.386667pt;}
.y38d{bottom:781.346667pt;}
.y24{bottom:782.306667pt;}
.y65{bottom:782.946667pt;}
.y11f{bottom:790.306667pt;}
.yc4{bottom:792.226667pt;}
.y86{bottom:793.186667pt;}
.y8{bottom:794.786667pt;}
.y176{bottom:795.106667pt;}
.y1a4{bottom:799.266667pt;}
.y23{bottom:800.866667pt;}
.y14b{bottom:801.186667pt;}
.ya2{bottom:806.946667pt;}
.y371{bottom:807.906667pt;}
.y38c{bottom:809.186667pt;}
.y46{bottom:809.826667pt;}
.y64{bottom:810.466667pt;}
.y355{bottom:815.586667pt;}
.y132{bottom:815.906667pt;}
.y11e{bottom:817.826667pt;}
.y85{bottom:818.146667pt;}
.y22{bottom:819.106667pt;}
.yc3{bottom:819.746667pt;}
.y7{bottom:822.306667pt;}
.y175{bottom:823.586667pt;}
.y1a3{bottom:826.786667pt;}
.y14a{bottom:828.706667pt;}
.y3ba{bottom:829.026667pt;}
.ya1{bottom:834.466667pt;}
.y2da{bottom:835.073124pt;}
.y2db{bottom:835.073131pt;}
.y2dc{bottom:835.073139pt;}
.y2dd{bottom:835.073147pt;}
.y2de{bottom:835.073155pt;}
.y370{bottom:835.426667pt;}
.y38b{bottom:836.706667pt;}
.y45{bottom:837.346667pt;}
.y21{bottom:837.666667pt;}
.y63{bottom:838.306667pt;}
.y84{bottom:843.106667pt;}
.y131{bottom:843.426667pt;}
.y11d{bottom:845.666667pt;}
.y2d3{bottom:846.099680pt;}
.y2d5{bottom:846.099686pt;}
.y2d9{bottom:846.099694pt;}
.y2d8{bottom:846.099702pt;}
.y2d7{bottom:846.099710pt;}
.yc2{bottom:847.293333pt;}
.y6{bottom:849.853333pt;}
.y2f0{bottom:851.133333pt;}
.y174{bottom:851.453333pt;}
.y1a2{bottom:854.653333pt;}
.y20{bottom:855.933333pt;}
.y149{bottom:856.253333pt;}
.ya0{bottom:862.013333pt;}
.y36f{bottom:863.293333pt;}
.y38a{bottom:864.253333pt;}
.y44{bottom:864.893333pt;}
.y62{bottom:865.853333pt;}
.y83{bottom:868.413333pt;}
.y130{bottom:871.293333pt;}
.y11c{bottom:873.213333pt;}
.y1f{bottom:874.493333pt;}
.yc1{bottom:875.133333pt;}
.y3a6{bottom:876.733333pt;}
.y5{bottom:877.373333pt;}
.y173{bottom:878.973333pt;}
.y103{bottom:880.573333pt;}
.y1a1{bottom:882.173333pt;}
.y148{bottom:883.773333pt;}
.y3b9{bottom:884.093333pt;}
.y2b0{bottom:886.973333pt;}
.y9f{bottom:889.533333pt;}
.y36e{bottom:890.813333pt;}
.y389{bottom:891.773333pt;}
.y1e{bottom:892.733333pt;}
.y61{bottom:893.373333pt;}
.y3a5{bottom:894.973333pt;}
.y11b{bottom:900.733333pt;}
.y2af{bottom:901.373333pt;}
.yc0{bottom:902.653333pt;}
.y4{bottom:905.213333pt;}
.y172{bottom:907.453333pt;}
.y12f{bottom:908.413333pt;}
.y1a0{bottom:909.693333pt;}
.y1d{bottom:911.293333pt;}
.y147{bottom:911.613333pt;}
.y3a4{bottom:913.853333pt;}
.y9e{bottom:917.373333pt;}
.y82{bottom:918.333333pt;}
.y388{bottom:919.613333pt;}
.y43{bottom:920.253333pt;}
.y60{bottom:920.893333pt;}
.y171{bottom:926.013333pt;}
.y11a{bottom:928.573333pt;}
.ybf{bottom:930.173333pt;}
.y1c{bottom:931.453333pt;}
.y2ae{bottom:932.093333pt;}
.y3{bottom:932.733333pt;}
.y146{bottom:939.133333pt;}
.y3b8{bottom:939.453333pt;}
.y5f{bottom:939.773333pt;}
.y2ad{bottom:944.573333pt;}
.y9d{bottom:944.893333pt;}
.y36d{bottom:946.173333pt;}
.y387{bottom:947.133333pt;}
.y3a3{bottom:951.933333pt;}
.y2ac{bottom:956.733333pt;}
.ybe{bottom:957.733333pt;}
.y5e{bottom:958.053333pt;}
.y2{bottom:959.973333pt;}
.y12e{bottom:962.213333pt;}
.y9c{bottom:965.093333pt;}
.y2ab{bottom:968.933333pt;}
.y3b7{bottom:976.293333pt;}
.y3ab{bottom:976.613333pt;}
.y5d{bottom:978.213333pt;}
.y119{bottom:981.093333pt;}
.y2aa{bottom:981.413333pt;}
.ybd{bottom:985.573333pt;}
.y1b{bottom:986.853333pt;}
.y1{bottom:987.173333pt;}
.y3a2{bottom:989.413333pt;}
.y9b{bottom:991.973333pt;}
.y2a9{bottom:993.573333pt;}
.y3aa{bottom:994.533333pt;}
.y3c6{bottom:994.853333pt;}
.y5c{bottom:1005.733333pt;}
.y81{bottom:1007.973333pt;}
.ybc{bottom:1013.093333pt;}
.y3a1{bottom:1013.413333pt;}
.y245{bottom:1016.933333pt;}
.y2a8{bottom:1018.213333pt;}
.y7f{bottom:1060.773333pt;}
.h27{height:10.472666pt;}
.h28{height:10.472667pt;}
.h22{height:12.683225pt;}
.ha{height:19.840000pt;}
.h18{height:22.720000pt;}
.h2e{height:25.363466pt;}
.h2d{height:29.255559pt;}
.h1e{height:31.778866pt;}
.h25{height:32.909288pt;}
.h1b{height:33.078899pt;}
.h26{height:33.878634pt;}
.h23{height:37.764375pt;}
.hc{height:38.720000pt;}
.h20{height:39.855769pt;}
.h16{height:40.960000pt;}
.h21{height:41.029724pt;}
.h2b{height:42.977937pt;}
.he{height:44.055000pt;}
.hd{height:44.093750pt;}
.h32{height:45.973111pt;}
.h30{height:47.713750pt;}
.h12{height:48.124652pt;}
.h14{height:48.378750pt;}
.h15{height:48.506062pt;}
.h10{height:50.730000pt;}
.h29{height:61.410000pt;}
.h8{height:62.812500pt;}
.h7{height:66.750000pt;}
.hf{height:72.090000pt;}
.hb{height:72.862500pt;}
.h2f{height:77.430000pt;}
.h2{height:88.781250pt;}
.h9{height:89.445000pt;}
.h11{height:93.948511pt;}
.h3{height:94.218750pt;}
.h6{height:100.125000pt;}
.h4{height:127.845000pt;}
.h13{height:200.960000pt;}
.h5{height:236.868375pt;}
.h17{height:300.480000pt;}
.h19{height:302.080000pt;}
.h2c{height:324.047751pt;}
.h1c{height:330.240000pt;}
.h1d{height:351.480915pt;}
.h1a{height:365.859549pt;}
.h24{height:385.703288pt;}
.h2a{height:461.382853pt;}
.h1f{height:467.117346pt;}
.h31{height:505.855685pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:16.000000pt;}
.w3{width:44.192000pt;}
.w10{width:80.083902pt;}
.w13{width:82.494132pt;}
.w12{width:83.940270pt;}
.w14{width:86.363355pt;}
.w11{width:91.672287pt;}
.w16{width:92.670210pt;}
.w18{width:99.042637pt;}
.w17{width:104.250129pt;}
.w19{width:105.422779pt;}
.w1a{width:109.473050pt;}
.w6{width:315.840000pt;}
.w7{width:316.000000pt;}
.w15{width:560.094675pt;}
.w1d{width:560.847456pt;}
.w8{width:563.840000pt;}
.we{width:563.933742pt;}
.wf{width:563.993775pt;}
.w9{width:564.093333pt;}
.wb{width:564.596811pt;}
.wa{width:567.040000pt;}
.w1c{width:568.512448pt;}
.w4{width:569.920000pt;}
.w1b{width:574.070780pt;}
.wc{width:576.960000pt;}
.w5{width:578.682212pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1f{left:1.730026pt;}
.x58{left:3.471661pt;}
.x5a{left:8.100543pt;}
.x11{left:9.664000pt;}
.x4f{left:11.103125pt;}
.x2d{left:12.453333pt;}
.x59{left:13.905932pt;}
.x21{left:14.880000pt;}
.x17{left:16.000000pt;}
.x60{left:17.373736pt;}
.x4c{left:18.815861pt;}
.x4d{left:19.779953pt;}
.x24{left:21.053333pt;}
.x4b{left:22.190182pt;}
.x4e{left:23.154274pt;}
.x68{left:24.146496pt;}
.xf{left:25.280000pt;}
.x69{left:27.042146pt;}
.x53{left:32.329216pt;}
.x55{left:34.257400pt;}
.x56{left:35.703538pt;}
.x61{left:37.065770pt;}
.x54{left:38.116981pt;}
.x5c{left:39.962678pt;}
.x62{left:42.855729pt;}
.x63{left:45.764210pt;}
.x57{left:51.554169pt;}
.x4a{left:64.639150pt;}
.x29{left:73.986667pt;}
.x22{left:84.453333pt;}
.x2a{left:89.626667pt;}
.x67{left:93.709641pt;}
.x1e{left:103.974571pt;}
.x2b{left:105.280000pt;}
.x10{left:108.160000pt;}
.x5{left:113.311988pt;}
.x1d{left:114.291680pt;}
.x23{left:116.160000pt;}
.x6{left:120.703988pt;}
.x8{left:122.303988pt;}
.xd{left:129.343988pt;}
.x6b{left:132.223988pt;}
.x12{left:137.346655pt;}
.x18{left:141.826655pt;}
.x65{left:152.226475pt;}
.x48{left:155.304713pt;}
.x5b{left:160.351954pt;}
.x1a{left:161.346655pt;}
.x6a{left:163.266655pt;}
.x19{left:165.826655pt;}
.x27{left:167.249052pt;}
.x13{left:170.306655pt;}
.x9{left:182.466655pt;}
.x2f{left:183.546667pt;}
.x15{left:185.346655pt;}
.x14{left:194.333322pt;}
.x30{left:199.200000pt;}
.x16{left:209.373322pt;}
.x31{left:214.853333pt;}
.x7{left:220.893322pt;}
.x26{left:228.893333pt;}
.x32{left:230.493333pt;}
.x25{left:234.373333pt;}
.x2c{left:237.440000pt;}
.x2e{left:253.120000pt;}
.x34{left:261.786667pt;}
.x47{left:275.520000pt;}
.x35{left:277.466667pt;}
.x4{left:292.933322pt;}
.x1{left:301.253322pt;}
.x36{left:308.773333pt;}
.x37{left:324.413333pt;}
.x38{left:340.066667pt;}
.xb{left:341.919988pt;}
.x33{left:347.200000pt;}
.x39{left:355.706667pt;}
.x5f{left:358.433370pt;}
.x3a{left:371.360000pt;}
.x3b{left:387.013333pt;}
.xa{left:393.119988pt;}
.x3c{left:402.653333pt;}
.x28{left:411.204768pt;}
.x3d{left:418.306667pt;}
.x51{left:429.925191pt;}
.x3e{left:433.986667pt;}
.x1b{left:438.906655pt;}
.x1c{left:440.826655pt;}
.x3f{left:449.626667pt;}
.x40{left:465.280000pt;}
.x2{left:466.746655pt;}
.x5e{left:468.485031pt;}
.x41{left:480.933333pt;}
.x42{left:496.573333pt;}
.x43{left:512.226667pt;}
.x52{left:516.770591pt;}
.x3{left:520.226655pt;}
.x45{left:543.520000pt;}
.x46{left:559.173333pt;}
.x5d{left:574.486420pt;}
.x50{left:597.336540pt;}
.x44{left:628.800000pt;}
.x6e{left:662.373322pt;}
.x6d{left:663.333322pt;}
.x64{left:674.213322pt;}
.x6f{left:675.173322pt;}
.x49{left:678.053322pt;}
.x6c{left:679.333322pt;}
.xc{left:680.613322pt;}
.xe{left:682.533333pt;}
.x66{left:688.293322pt;}
.x20{left:693.093322pt;}
}




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